Ejemplo n.º 1
0
        private void setColors()
        {
            if (_colorStyle == XColorStyle.Blue)
                _colors = new XBlue();
            else if (_colorStyle == XColorStyle.Red)
                _colors = new XRed();

            this.BackColor = _colors.getBackgroundColor();
            this.ForeColor = _colors.getForeColor();
            this.FlatAppearance.BorderColor = _colors.getBorderColor();
            this.FlatAppearance.MouseOverBackColor = _colors.getHoverColor();
            this.FlatAppearance.MouseDownBackColor = _colors.getBorderColor();
        }
Ejemplo n.º 2
0
        public XButton()
        {
            _colors = new XBlue();
            SetStyle(ControlStyles.AllPaintingInWmPaint
                    | ControlStyles.UserPaint
                    | ControlStyles.OptimizedDoubleBuffer
                    | ControlStyles.ResizeRedraw, true);

            this.FlatStyle = FlatStyle.Flat;
            this.FlatAppearance.BorderSize = 1;
            setColors();
            this.Font = new System.Drawing.Font("Segoe UI", 8F);

            this.Anchor = AnchorStyles.Top | AnchorStyles.Right;
        }
Ejemplo n.º 3
0
 get { return new XSolidBrush(XColors.AliceBlue, true); }
Ejemplo n.º 4
0
 get { return new XPen(XColors.AliceBlue, 1, true); }
Ejemplo n.º 5
0
 private void setStyle()
 {
     if (_colorStyle == XColorStyle.Blue)
         _colors = new XBlue();
     else if (_colorStyle == XColorStyle.Red)
         _colors = new XRed();
     //             this.TabBackgroundColor = _colors.getBackgroundColor();
     //             this.SelectedTabBackroundColor = _colors.getTabBGColor();
     //             this.BackgroundColor = _colors.getBackgroundColor();
     //             this.TabForeColor = _colors.getForeColor();
 }
Ejemplo n.º 6
0
        private void setColors()
        {
            if (_colorStyle == XColorStyle.Blue)
                _colors = new XBlue();
            else if (_colorStyle == XColorStyle.Red)
                _colors = new XRed();

            this.BackColor = _colors.getBackgroundColor();
            this.ForeColor = _colors.getForeColor();
        }