public TableBoxDecoration()
        {
            FieldBackgroundColor = new AutoColor();
            FieldTextColor       = new AutoColor();

            Border      = new Border();
            BorderColor = new AutoColor();

            TextFont = new AutoFont();

            HorizontalLinesVisible = true;
            VerticalLinesVisible   = true;

            HeaderBackgroundColor = new AutoColor();
            HeaderTextColor       = new AutoColor();

            FooterBackgroundColor = new AutoColor();
            FooterTextColor       = new AutoColor();

            SelectionBackgroundColor = new AutoColor();
            SelectionTextColor       = new AutoColor();

            InterlacingColor = new AutoColor();

            HeaderTextFont = new AutoFont();
            FooterTextFont = new AutoFont();
        }
Exemplo n.º 2
0
        public SplitterDecoration()
        {
            BackgroundColor = new AutoColor();

            Border      = new Border();
            BorderColor = new AutoColor();
        }
Exemplo n.º 3
0
 public AutoFreeDrawGame(Form form, ImageBox canvas, ImageBox video, ImageBox videoGrey, TableLayoutPanel panel) : base(form, canvas, videoGrey, panel)
 {
     AutoColor                 = new AutoColor(video);
     AutoColor.IsActive        = true;
     AutoColor.OnColorCapture += this.OnColorCapture;
     Detectables.Clear();
     UpdatePrompt(TextHowTo);
 }
        public GroupBoxDecoration()
        {
            TextColor = new AutoColor();

            Border      = new Border();
            BorderColor = new AutoColor();

            TextFont = new AutoFont();
        }
        public TableBoxColumnDecoration()
        {
            HorizontalAlign = HorizontalTextAlignment.Auto;

            BackgroundColor = new AutoColor();
            TextColor       = new AutoColor();

            TextFont = new AutoFont();

            Picture = new EmptyPicture();
        }
Exemplo n.º 6
0
        public CommandBarDecoration()
        {
            BackgroundColor = new AutoColor();

            ButtonBackgroundColor = new AutoColor();
            ButtonTextColor       = new AutoColor();

            Border      = new Border();
            BorderColor = new AutoColor();

            TextFont = new AutoFont();
        }
        public PictureBoxDecoration()
        {
            BackgroundColor = new AutoColor();
            TextColor       = new AutoColor();

            Border      = new Border();
            BorderColor = new AutoColor();

            TextFont = new AutoFont();

            Picture     = new EmptyPicture();
            PictureSize = PictureSize.RealSize;
        }
        public RadioButtonDecoration()
        {
            TextAlignment = new TextAlignment
            {
                Horizontal = HorizontalTextAlignment.Left,
                Vertical   = VerticalTextAlignment.Center,
            };

            BackgroundColor = new AutoColor();
            TextColor       = new AutoColor();

            Border      = new Border();
            BorderColor = new AutoColor();

            TextFont = new AutoFont();
        }
        public ButtonDecoration()
        {
            TextAlignment = new TextAlignment
            {
                Horizontal = HorizontalTextAlignment.Center,
                Vertical   = VerticalTextAlignment.Center,
            };

            BackgroundColor = new AutoColor();
            TextColor       = new AutoColor();

            BorderColor = new AutoColor();

            TextFont = new AutoFont();

            PicturePosition = ButtonPicturePosition.Left;
            Picture         = new EmptyPicture();
            PictureSize     = PictureSize.AutoSize;
        }
        public TextBoxDecoration()
        {
            TextAlignment = new TextAlignment
            {
                Horizontal = HorizontalTextAlignment.Auto,
                Vertical   = VerticalTextAlignment.Top,
            };

            FieldBackgroundColor = new AutoColor();
            FieldTextColor       = new AutoColor();

            ButtonBackgroundColor = new AutoColor();
            ButtonTextColor       = new AutoColor();

            Border      = new Border();
            BorderColor = new AutoColor();

            TextFont = new AutoFont();

            Picture             = new EmptyPicture();
            ChoiceButtonPicture = new EmptyPicture();
        }