コード例 #1
0
ファイル: IMenustrip.cs プロジェクト: skyformat99/PowerSystem
 public void Apply(IMenustrip Import)
 {
     this._menuBackInh     = Import._menuBackInh;
     this._menuBackTop     = Import._menuBackTop;
     this._menuBackBottom  = Import._menuBackBottom;
     this._menuBorderDark  = Import._menuBorderDark;
     this._menuBorderLight = Import._menuBorderLight;
     this._menuBackBlend   = Import._menuBackBlend;
     this._buttons         = Import._buttons;
 }
コード例 #2
0
 public EasyRender()
 {
     this._tsManager     = new IToolstrip();
     this._btnManager    = new IButton();
     this._dBtnManager   = new IDropDownButton();
     this._tsCtrlManager = new IToolstripControls();
     this._pManager      = new IPanel();
     this._sBtnManager   = new ISplitButton();
     this._sBarManager   = new IStatusBar();
     this._mnuManager    = new IMenustrip();
 }
コード例 #3
0
ファイル: IMenustrip.cs プロジェクト: skyformat99/PowerSystem
 public IMenustrip(IMenustrip Import)
 {
     this._buttons = new IButton();
     this.DefaultBlending();
     this.Apply(Import);
 }