示例#1
0
        public SuperTabColorTable()
        {
            _Background = new SuperTabLinearGradientColorTable();
            _Background.ColorTableChanged += SctColorTableChanged;

            _ControlBoxDefault = new SuperTabControlBoxStateColorTable();
            _ControlBoxDefault.ColorTableChanged += SctColorTableChanged;

            _ControlBoxMouseOver = new SuperTabControlBoxStateColorTable();
            _ControlBoxMouseOver.ColorTableChanged += SctColorTableChanged;

            _ControlBoxPressed = new SuperTabControlBoxStateColorTable();
            _ControlBoxPressed.ColorTableChanged += SctColorTableChanged;
        }
示例#2
0
        public object Clone()
        {
            SuperTabControlBoxStateColorTable sct = new SuperTabControlBoxStateColorTable();

            sct.Background = Background;
            sct.Border = Border;
            sct.Image = Image;

            return (sct);
        }
示例#3
0
 public void ResetControlBoxMouseOver()
 {
     ControlBoxMouseOver = new SuperTabControlBoxStateColorTable();
 }
示例#4
0
 public void ResetControlBoxPressed()
 {
     ControlBoxPressed = new SuperTabControlBoxStateColorTable();
 }
示例#5
0
 public void ResetControlBoxDefault()
 {
     ControlBoxDefault = new SuperTabControlBoxStateColorTable();
 }