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

            Apply(Import);
        }
示例#2
0
        /// <summary>
        /// Imports the settings from a previous or pre-defined IToolstrip and applies it to the current
        /// </summary>
        /// <param name="Import">The IToolstrip to import the settings from</param>
        public void Apply(IToolstrip Import)
        {
            _backTop = Import._borderTop;
            _backBottom = Import._borderBottom;
            _backAngle = Import._borderAngle;
            _backBlend = Import._backBlend;

            _borderTop = Import._borderTop;
            _borderBottom = Import._borderBottom;
            _borderAngle = Import._borderAngle;
            _borderBlend = Import._borderBlend;

            _curve = Import._curve;
        }
示例#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();
 }