示例#1
0
        /// <summary>
        /// Creates a new IMenustrip class for customization
        /// </summary>
        /// <param name="Import">The IMenustrip to import the settings from</param>
        public IMenustrip(IMenustrip Import)
        {
            _buttons = new IButton();

            DefaultBlending();

            Apply(Import);
        }
示例#2
0
 /// <summary>
 /// Imports the settings from a previous or pre-defined IMenustrip and applies it to the current
 /// </summary>
 /// <param name="Import">The IMenustrip to import the settings from</param>
 public void Apply(IMenustrip Import)
 {
     _menuBackInh = Import._menuBackInh;
     _menuBackTop = Import._menuBackTop;
     _menuBackBottom = Import._menuBackBottom;
     _menuBorderDark = Import._menuBorderDark;
     _menuBorderLight = Import._menuBorderLight;
     _menuBackBlend = Import._menuBackBlend;
     _buttons = Import._buttons;
 }
示例#3
0
 /// <summary>
 /// Creates a new EasyRender class for modifications
 /// </summary>
 public EasyRender()
 {
     _tsManager = new IToolstrip();
     _btnManager = new IButton();
     _dBtnManager = new IDropDownButton();
     _tsCtrlManager = new IToolstripControls();
     _pManager = new IPanel();
     _sBtnManager = new ISplitButton();
     _sBarManager = new IStatusBar();
     _mnuManager = new IMenustrip();
 }