Пример #1
0
        private void updateTextBoxWithState(TextBoxExt textBox, ThreadState state)
        {
            switch (state)
            {
            case ThreadState.Running:
                textBox.Text      = "alive";
                textBox.BackColor = Color.Aquamarine;
                break;

            case ThreadState.Aborted:
                textBox.Text      = "aborted";
                textBox.BackColor = Color.LightSalmon;
                break;

            case ThreadState.Stopped:
                textBox.Text      = "stopped";
                textBox.BackColor = Color.LightSalmon;
                break;

            case ThreadState.Suspended:
                textBox.Text      = "ignore";
                textBox.BackColor = Color.Yellow;
                break;

            case ThreadState.SuspendRequested:
                textBox.Text      = "wait for ignore";
                textBox.BackColor = Color.Yellow;
                break;
            }
        }
Пример #2
0
        public Form1()
        {
            InitializeComponent();
            try
            {
                System.Drawing.Icon ico = new System.Drawing.Icon(GetIconFile(@"common\Images\Grid\Icon\sficon.ico"));
                this.Icon = ico;
            }
            catch { }

            data = new OrderInfoCollection();
            sfDataGrid1.DataSource = data.OrdersListDetails;
            GridSettings();

            #region TitleBarControl Customizations
            this.Style.TitleBar.Height = 38;
            this.CenterToScreen();
            this.MinimumSize              = this.Size;
            panel                         = new FlowLayoutPanel();
            panel.Size                    = new System.Drawing.Size(1061, 24);
            titleLabel                    = new Label();
            titleLabel.Location           = new Point(3, 3);
            titleLabel.Size               = new Size(470, 25);
            titleLabel.Font               = new Font("Segeo UI", 13, FontStyle.Regular);
            titleLabel.Text               = "Searching";
            titleLabel.ForeColor          = Color.FromArgb(78, 77, 77);
            searchBox                     = new TextBoxExt();
            searchBox.Text                = "Quick Search";
            searchBox.ForeColor           = SystemColors.GrayText;
            searchBox.Leave              += SearchBox_Leave;
            searchBox.Enter              += SearchBox_Enter;
            searchBox.Size                = new System.Drawing.Size(276, 26);
            searchBox.BorderStyle         = BorderStyle.FixedSingle;
            searchBox.BorderColor         = ColorTranslator.FromHtml("#0AA2E6");
            searchBox.KeyUp              += SearchBox_KeyUp;
            searchBox.Anchor              = AnchorStyles.Right;
            this.Style.TitleBar.BackColor = Color.White;
            button                        = new SfButton();
            button.Size                   = new System.Drawing.Size(30, 21);
#if NETCORE
            button.Image = Image.FromFile("../../../Images/search.png");
#else
            button.Image = Image.FromFile("../../Images/search.png");
#endif
            button.BackColor = Color.White;
            button.Style.FocusedBackColor = Color.White;
            button.Style.HoverBackColor   = Color.White;
            button.Style.PressedBackColor = Color.White;
            button.Style.FocusedBorder    = Pens.White;
            button.Style.Border           = Pens.White;
            button.Style.PressedBorder    = Pens.White;
            button.Style.HoverBorder      = Pens.White;
            button.Width = 29;
            panel.Controls.Add(titleLabel);
            panel.Controls.Add(button);
            panel.Controls.Add(searchBox);
            this.TitleBarTextControl = panel;
            titleLabel.MouseDown    += TitleLabel_MouseDown;
            #endregion
        }
Пример #3
0
        //Cria um novo TextBoxExt
        private TextBoxExt novoTextBox()
        {
            TextBoxExt txt = new TextBoxExt();

            this.tabResidencial.Controls.Add(txt);
            txt.Size = new Size(197, 20);
            return(txt);
        }
Пример #4
0
 private void UpdateScriptPreview(TextBoxExt textBox, Bootstrap.Expr expr, string defValue)
 {
     if (expr != null && expr.Valid)
     {
         textBox.Text = expr.Decompile();
     }
     else
     {
         textBox.Text = defValue;
     }
 }
        public ComboBoxCheckListExt()
        {
            _checkedListBox = new CheckListBoxExt()
            {
                BorderStyle       = BorderStyle.None,
                Font              = this.Font,
                Dock              = DockStyle.Fill,
                CheckOnClick      = true,
                IntegralHeight    = false,
                FormattingEnabled = true
            };

            ToolStripDropDown.VisibleChanged += ToolStripDropDown_VisibleChanged;

            _checkedListBox.ItemCheck += checkedList_ItemCheck;
            _checkedListBox.MouseDown += _checkedListBox_MouseDown;
            _checkedListBox.MouseUp   += _checkedListBox_MouseUp;
            _checkedListBox.KeyDown   += _checkedListBox_KeyDown;
            _checkedListBox.KeyUp     += _checkedListBox_KeyUp;

            _txtSearch = new TextBoxExt {
                Anchor = AnchorStyles.Left | AnchorStyles.Right, Delay = 500
            };
            _txtSearch.TextUpdateDelayed += txtSearch_TextUpdateDelayed;

            this.TextUpdate += comboBoxCheckListExt_TextUpdate;

            TableLayoutPanel panel = new TableLayoutPanel();

            panel.Dock = DockStyle.Fill;
            panel.Controls.Add(_txtSearch, 0, 0);
            panel.Controls.Add(_checkedListBox, 0, 1);
            panel.RowStyles.Add(new RowStyle(SizeType.AutoSize));
            panel.RowStyles.Add(new RowStyle(SizeType.Percent, 100F));

            _toolStripHost = new ToolStripControlHost(panel)
            {
                AutoSize = false
            };
            ToolStripDropDown.Items.Add(_toolStripHost);
        }
Пример #6
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm));
     this.toolTip1             = new System.Windows.Forms.ToolTip(this.components);
     this.imageList1           = new System.Windows.Forms.ImageList(this.components);
     this.splashControl1       = new Syncfusion.Windows.Forms.Tools.SplashControl();
     this.pictureBox1          = new System.Windows.Forms.PictureBox();
     this.button6              = new System.Windows.Forms.Button();
     this.tabControlAdv1       = new Syncfusion.Windows.Forms.Tools.TabControlAdv();
     this.tabPageAdv1          = new Syncfusion.Windows.Forms.Tools.TabPageAdv();
     this.textBox5             = new Syncfusion.Windows.Forms.Tools.TextBoxExt();
     this.imageList2           = new System.Windows.Forms.ImageList(this.components);
     this.mainFrameBarManager1 = new Syncfusion.Windows.Forms.Tools.XPMenus.MainFrameBarManager(this);
     this.bar1           = new Syncfusion.Windows.Forms.Tools.XPMenus.Bar(this.mainFrameBarManager1, "menu");
     this.parentBarItem1 = new Syncfusion.Windows.Forms.Tools.XPMenus.ParentBarItem();
     this.barItem1       = new Syncfusion.Windows.Forms.Tools.XPMenus.BarItem();
     this.parentBarItem2 = new Syncfusion.Windows.Forms.Tools.XPMenus.ParentBarItem();
     this.barItem2       = new Syncfusion.Windows.Forms.Tools.XPMenus.BarItem();
     this.gradientPanel1 = new Syncfusion.Windows.Forms.Tools.GradientPanel();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tabControlAdv1)).BeginInit();
     this.tabControlAdv1.SuspendLayout();
     this.tabPageAdv1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.textBox5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.mainFrameBarManager1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gradientPanel1)).BeginInit();
     this.gradientPanel1.SuspendLayout();
     this.SuspendLayout();
     //
     // imageList1
     //
     this.imageList1.ImageStream      = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
     this.imageList1.TransparentColor = System.Drawing.Color.Transparent;
     this.imageList1.Images.SetKeyName(0, "");
     this.imageList1.Images.SetKeyName(1, "");
     this.imageList1.Images.SetKeyName(2, "");
     //
     // splashControl1
     //
     this.splashControl1.DesktopAlignment     = Syncfusion.Windows.Forms.Tools.SplashAlignment.RightBottom;
     this.splashControl1.HostForm             = this;
     this.splashControl1.SplashImage          = ((System.Drawing.Image)(resources.GetObject("splashControl1.SplashImage")));
     this.splashControl1.TimerInterval        = 3000;
     this.splashControl1.UseCustomSplashPanel = true;
     this.splashControl1.BeforeSplash        += new System.ComponentModel.CancelEventHandler(this.splashControl1_BeforeSplash);
     this.splashControl1.SplashDisplayed     += new System.EventHandler(this.splashControl1_SplashDisplayed);
     this.splashControl1.SplashClosed        += new System.EventHandler(this.splashControl1_SplashClosed);
     //
     // pictureBox1
     //
     this.pictureBox1.Image    = ((System.Drawing.Image)(resources.GetObject("pictureBox1.Image")));
     this.pictureBox1.Location = new System.Drawing.Point(222, 56);
     this.pictureBox1.Name     = "pictureBox1";
     this.pictureBox1.Size     = new System.Drawing.Size(450, 252);
     this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.CenterImage;
     this.pictureBox1.TabIndex = 5;
     this.pictureBox1.TabStop  = false;
     //
     // button6
     //
     this.button6.BackColor  = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(200)))), ((int)(((byte)(219)))));
     this.button6.FlatStyle  = System.Windows.Forms.FlatStyle.Popup;
     this.button6.ImageAlign = System.Drawing.ContentAlignment.TopLeft;
     this.button6.ImageIndex = 2;
     this.button6.Location   = new System.Drawing.Point(392, 334);
     this.button6.Name       = "button6";
     this.button6.Size       = new System.Drawing.Size(151, 40);
     this.button6.TabIndex   = 4;
     this.button6.Text       = "Click to Show Splash Screen";
     this.button6.UseVisualStyleBackColor = false;
     this.button6.Click += new System.EventHandler(this.button6_Click);
     //
     // tabControlAdv1
     //
     this.tabControlAdv1.BackColor = System.Drawing.Color.White;
     this.tabControlAdv1.Controls.Add(this.tabPageAdv1);
     this.tabControlAdv1.Dock                  = System.Windows.Forms.DockStyle.Fill;
     this.tabControlAdv1.ImageList             = this.imageList2;
     this.tabControlAdv1.Location              = new System.Drawing.Point(0, 0);
     this.tabControlAdv1.Name                  = "tabControlAdv1";
     this.tabControlAdv1.Size                  = new System.Drawing.Size(857, 486);
     this.tabControlAdv1.TabIndex              = 6;
     this.tabControlAdv1.TabStyle              = typeof(Syncfusion.Windows.Forms.Tools.TabRendererMetro);
     this.tabControlAdv1.SelectedIndexChanged += new System.EventHandler(this.tabControlAdv1_SelectedIndexChanged);
     //
     // tabPageAdv1
     //
     this.tabPageAdv1.Controls.Add(this.textBox5);
     this.tabPageAdv1.Controls.Add(this.pictureBox1);
     this.tabPageAdv1.Controls.Add(this.button6);
     this.tabPageAdv1.Image           = null;
     this.tabPageAdv1.ImageIndex      = 0;
     this.tabPageAdv1.ImageSize       = new System.Drawing.Size(16, 16);
     this.tabPageAdv1.Location        = new System.Drawing.Point(1, 25);
     this.tabPageAdv1.Name            = "tabPageAdv1";
     this.tabPageAdv1.Padding         = new System.Windows.Forms.Padding(10);
     this.tabPageAdv1.ShowCloseButton = true;
     this.tabPageAdv1.Size            = new System.Drawing.Size(854, 459);
     this.tabPageAdv1.TabIndex        = 1;
     this.tabPageAdv1.Text            = "Show Splash";
     this.tabPageAdv1.ThemesEnabled   = false;
     //
     // textBox5
     //
     this.textBox5.Cursor     = System.Windows.Forms.Cursors.IBeam;
     this.textBox5.Dock       = System.Windows.Forms.DockStyle.Bottom;
     this.textBox5.ForeColor  = System.Drawing.Color.FromArgb(((int)(((byte)(103)))), ((int)(((byte)(110)))), ((int)(((byte)(154)))));
     this.textBox5.Location   = new System.Drawing.Point(10, 396);
     this.textBox5.Metrocolor = System.Drawing.Color.Empty;
     this.textBox5.Multiline  = true;
     this.textBox5.Name       = "textBox5";
     this.textBox5.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
     this.textBox5.Size       = new System.Drawing.Size(834, 53);
     this.textBox5.Style      = Syncfusion.Windows.Forms.Tools.TextBoxExt.theme.Default;
     this.textBox5.TabIndex   = 4;
     //
     // imageList2
     //
     this.imageList2.ImageStream      = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList2.ImageStream")));
     this.imageList2.TransparentColor = System.Drawing.Color.Transparent;
     this.imageList2.Images.SetKeyName(0, "");
     this.imageList2.Images.SetKeyName(1, "");
     //
     // mainFrameBarManager1
     //
     this.mainFrameBarManager1.BarPositionInfo = ((System.IO.MemoryStream)(resources.GetObject("mainFrameBarManager1.BarPositionInfo")));
     this.mainFrameBarManager1.Bars.Add(this.bar1);
     this.mainFrameBarManager1.Categories.Add("File");
     this.mainFrameBarManager1.Categories.Add("Help");
     this.mainFrameBarManager1.CurrentBaseFormType = "Syncfusion.Windows.Forms.MetroForm";
     this.mainFrameBarManager1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.mainFrameBarManager1.Form = this;
     this.mainFrameBarManager1.Items.AddRange(new Syncfusion.Windows.Forms.Tools.XPMenus.BarItem[] {
         this.parentBarItem1,
         this.barItem1,
         this.parentBarItem2,
         this.barItem2
     });
     this.mainFrameBarManager1.ResetCustomization = false;
     this.mainFrameBarManager1.Style = Syncfusion.Windows.Forms.VisualStyle.Metro;
     //
     // bar1
     //
     this.bar1.BarName  = "menu";
     this.bar1.BarStyle = ((Syncfusion.Windows.Forms.Tools.XPMenus.BarStyle)((((Syncfusion.Windows.Forms.Tools.XPMenus.BarStyle.AllowQuickCustomizing | Syncfusion.Windows.Forms.Tools.XPMenus.BarStyle.IsMainMenu)
                                                                               | Syncfusion.Windows.Forms.Tools.XPMenus.BarStyle.Visible)
                                                                              | Syncfusion.Windows.Forms.Tools.XPMenus.BarStyle.DrawDragBorder)));
     this.bar1.Caption = "menu";
     this.bar1.Items.AddRange(new Syncfusion.Windows.Forms.Tools.XPMenus.BarItem[] {
         this.parentBarItem1,
         this.parentBarItem2
     });
     this.bar1.Manager = this.mainFrameBarManager1;
     //
     // parentBarItem1
     //
     this.parentBarItem1.BarName       = "parentBarItem1";
     this.parentBarItem1.CategoryIndex = 0;
     this.parentBarItem1.ID            = "BarItem";
     this.parentBarItem1.Items.AddRange(new Syncfusion.Windows.Forms.Tools.XPMenus.BarItem[] {
         this.barItem1
     });
     this.parentBarItem1.MetroColor         = System.Drawing.Color.LightSkyBlue;
     this.parentBarItem1.ShowToolTipInPopUp = false;
     this.parentBarItem1.SizeToFit          = true;
     this.parentBarItem1.Text = "&File";
     //
     // barItem1
     //
     this.barItem1.BarName            = "barItem1";
     this.barItem1.CategoryIndex      = 0;
     this.barItem1.ID                 = "BarItem_1";
     this.barItem1.ShowToolTipInPopUp = false;
     this.barItem1.SizeToFit          = true;
     this.barItem1.Text               = "&Exit";
     this.barItem1.Click             += new System.EventHandler(this.barItem1_Click);
     //
     // parentBarItem2
     //
     this.parentBarItem2.BarName       = "parentBarItem2";
     this.parentBarItem2.CategoryIndex = 1;
     this.parentBarItem2.ID            = "BarItem_2";
     this.parentBarItem2.Items.AddRange(new Syncfusion.Windows.Forms.Tools.XPMenus.BarItem[] {
         this.barItem2
     });
     this.parentBarItem2.MetroColor         = System.Drawing.Color.LightSkyBlue;
     this.parentBarItem2.ShowToolTipInPopUp = false;
     this.parentBarItem2.SizeToFit          = true;
     this.parentBarItem2.Text = "&Help";
     //
     // barItem2
     //
     this.barItem2.BarName            = "barItem2";
     this.barItem2.CategoryIndex      = 1;
     this.barItem2.ID                 = "BarItem_3";
     this.barItem2.ShowToolTipInPopUp = false;
     this.barItem2.SizeToFit          = true;
     this.barItem2.Text               = "&About";
     this.barItem2.Click             += new System.EventHandler(this.barItem2_Click);
     //
     // gradientPanel1
     //
     this.gradientPanel1.BorderColor = System.Drawing.Color.Gray;
     this.gradientPanel1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.gradientPanel1.Controls.Add(this.tabControlAdv1);
     this.gradientPanel1.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.gradientPanel1.Location = new System.Drawing.Point(15, 44);
     this.gradientPanel1.Name     = "gradientPanel1";
     this.gradientPanel1.Size     = new System.Drawing.Size(859, 488);
     this.gradientPanel1.TabIndex = 12;
     //
     // MainForm
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 15);
     this.BackColor         = System.Drawing.Color.White;
     this.ClientSize        = new System.Drawing.Size(889, 547);
     this.Controls.Add(this.gradientPanel1);
     this.Font          = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Icon          = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MinimumSize   = new System.Drawing.Size(901, 584);
     this.Name          = "MainForm";
     this.Padding       = new System.Windows.Forms.Padding(15);
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text          = "Splash Control";
     this.Load         += new System.EventHandler(this.MainForm_Load);
     this.Resize       += new System.EventHandler(this.MainForm_Resize);
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tabControlAdv1)).EndInit();
     this.tabControlAdv1.ResumeLayout(false);
     this.tabPageAdv1.ResumeLayout(false);
     this.tabPageAdv1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.textBox5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.mainFrameBarManager1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gradientPanel1)).EndInit();
     this.gradientPanel1.ResumeLayout(false);
     this.ResumeLayout(false);
 }
        public Form1()
        {
            InitializeComponent();
            try
            {
                System.Drawing.Icon ico = new System.Drawing.Icon(GetIconFile(@"common\Images\Grid\Icon\sficon.ico"));
                this.Icon = ico;
            }
            catch { }

            data = new OrderInfoCollection();
            sfDataGrid1.DataSource = data.OrdersListDetails;
            GridSettings();
            this.Padding        = new Padding(0, this.Style.TitleBar.Height, 0, 0);
            this.IsMdiContainer = true;

            // Use the [AttachToMdiContainer](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Tools.Windows~Syncfusion.Windows.Forms.Tools.TabbedMDIManager~AttachToMdiContainer.html) function only when the `AttachedTo` property of TabbedMDIManager is not set to Form1.

            this.tabbedMDIManager.AttachToMdiContainer(this);
            this.tabbedMDIManager.TabStyle = typeof(Syncfusion.Windows.Forms.Tools.TabRendererOffice2016Colorful);

            Form form = new Form();

            form.MdiParent = this;
            form.Text      = "Tab1";
            form.Show();

            Form form1 = new Form();

            form1.Text      = "Tab2";
            form1.MdiParent = this;
            form1.Show();

            #region TitleBarControl Customizations
            this.Style.TitleBar.Height = 38;
            this.CenterToScreen();
            this.MinimumSize = this.Size;
            panel            = new FlowLayoutPanel();
            panel.Size       = new System.Drawing.Size(1061, 24);

            titleLabel          = new Label();
            titleLabel.Location = new Point(3, 3);
            titleLabel.Font     = new Font("Segeo UI", 13, FontStyle.Regular);
            titleLabel.Text     = "Label1";

            titleLabel1          = new Label();
            titleLabel1.Location = new Point(3, 3);
            titleLabel1.Font     = new Font("Segeo UI", 13, FontStyle.Regular);
            titleLabel1.Text     = "label2";

            titleLabel2          = new Label();
            titleLabel2.Location = new Point(3, 3);
            titleLabel2.Font     = new Font("Segeo UI", 13, FontStyle.Regular);
            titleLabel2.Text     = "Label3";

            searchBox                     = new TextBoxExt();
            searchBox.Text                = "Quick Search";
            searchBox.ForeColor           = SystemColors.GrayText;
            searchBox.Leave              += SearchBox_Leave;
            searchBox.Enter              += SearchBox_Enter;
            searchBox.Size                = new System.Drawing.Size(276, 26);
            searchBox.BorderStyle         = BorderStyle.FixedSingle;
            searchBox.BorderColor         = ColorTranslator.FromHtml("#0AA2E6");
            searchBox.KeyUp              += SearchBox_KeyUp;
            searchBox.Anchor              = AnchorStyles.Right;
            this.Style.TitleBar.BackColor = Color.White;

            // added the Image via button control
            button      = new SfButton();
            button.Size = new System.Drawing.Size(30, 21);
#if NETCORE
            button.Image = Image.FromFile("../../../Images/search.png");
#else
            button.Image = Image.FromFile("../../Images/search.png");
#endif
            button.BackColor = Color.White;
            button.Style.FocusedBackColor = Color.White;
            button.Style.HoverBackColor   = Color.White;
            button.Style.PressedBackColor = Color.White;
            button.Style.FocusedBorder    = Pens.White;
            button.Style.Border           = Pens.White;
            button.Style.PressedBorder    = Pens.White;
            button.Style.HoverBorder      = Pens.White;
            button.Width  = 29;
            button1       = new SfButton();
            button1.Size  = new System.Drawing.Size(30, 21);
            button1.Width = 50;
            button1.Text  = "Button";

            panel.Controls.Add(titleLabel);
            panel.Controls.Add(titleLabel1);
            panel.Controls.Add(titleLabel2);
            panel.Controls.Add(button);
            panel.Controls.Add(searchBox);
            panel.Controls.Add(button1);

            this.TitleBarTextControl = panel;

            titleLabel.MouseDown += TitleLabel_MouseDown;
            #endregion
        }
Пример #8
0
 //Cria um novo TextBoxExt
 private TextBoxExt novoTextBox()
 {
     TextBoxExt txt = new TextBoxExt();
     this.tabResidencial.Controls.Add(txt);
     txt.Size = new Size(197, 20);
     return txt;
 }
Пример #9
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components   = new System.ComponentModel.Container();
     this.label2       = new System.Windows.Forms.Label();
     this.txtaddedItem = new Syncfusion.Windows.Forms.Tools.TextBoxExt();
     this.btnOK        = new Syncfusion.Windows.Forms.ButtonAdv();
     this.BtnCancel    = new Syncfusion.Windows.Forms.ButtonAdv();
     ((System.ComponentModel.ISupportInitialize)(this.txtaddedItem)).BeginInit();
     this.SuspendLayout();
     //
     // label2
     //
     this.label2.Location = new System.Drawing.Point(16, 24);
     this.label2.Name     = "label2";
     this.label2.Size     = new System.Drawing.Size(72, 16);
     this.label2.TabIndex = 2;
     this.label2.Text     = "Add Item";
     //
     // txtaddedItem
     //
     this.txtaddedItem.BorderColor = System.Drawing.Color.Silver;
     this.txtaddedItem.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.txtaddedItem.Cursor      = System.Windows.Forms.Cursors.IBeam;
     this.txtaddedItem.Location    = new System.Drawing.Point(96, 22);
     this.txtaddedItem.Metrocolor  = System.Drawing.Color.Silver;
     this.txtaddedItem.Name        = "txtaddedItem";
     this.txtaddedItem.Size        = new System.Drawing.Size(192, 22);
     this.txtaddedItem.Style       = Syncfusion.Windows.Forms.Tools.TextBoxExt.theme.Metro;
     this.txtaddedItem.TabIndex    = 4;
     //
     // btnOK
     //
     this.btnOK.Appearance     = Syncfusion.Windows.Forms.ButtonAppearance.Metro;
     this.btnOK.BackColor      = System.Drawing.Color.FromArgb(((int)(((byte)(17)))), ((int)(((byte)(158)))), ((int)(((byte)(218)))));
     this.btnOK.DialogResult   = System.Windows.Forms.DialogResult.OK;
     this.btnOK.Location       = new System.Drawing.Point(40, 64);
     this.btnOK.Name           = "btnOK";
     this.btnOK.Size           = new System.Drawing.Size(75, 23);
     this.btnOK.TabIndex       = 5;
     this.btnOK.Text           = "Add";
     this.btnOK.UseVisualStyle = true;
     //
     // BtnCancel
     //
     this.BtnCancel.Appearance     = Syncfusion.Windows.Forms.ButtonAppearance.Metro;
     this.BtnCancel.BackColor      = System.Drawing.Color.FromArgb(((int)(((byte)(17)))), ((int)(((byte)(158)))), ((int)(((byte)(218)))));
     this.BtnCancel.DialogResult   = System.Windows.Forms.DialogResult.Cancel;
     this.BtnCancel.Location       = new System.Drawing.Point(192, 64);
     this.BtnCancel.Name           = "BtnCancel";
     this.BtnCancel.Size           = new System.Drawing.Size(75, 23);
     this.BtnCancel.TabIndex       = 6;
     this.BtnCancel.Text           = "Cancel";
     this.BtnCancel.UseVisualStyle = true;
     this.BtnCancel.Click         += new System.EventHandler(this.BtnCancel_Click);
     //
     // AddToHistoryDlg
     //
     this.AcceptButton      = this.btnOK;
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 15);
     this.CancelButton      = this.BtnCancel;
     this.ClientSize        = new System.Drawing.Size(312, 102);
     this.Controls.Add(this.BtnCancel);
     this.Controls.Add(this.btnOK);
     this.Controls.Add(this.txtaddedItem);
     this.Controls.Add(this.label2);
     this.Font          = new System.Drawing.Font("Segoe UI", 8.25F);
     this.MaximizeBox   = false;
     this.Name          = "AddToHistoryDlg";
     this.ShowIcon      = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text          = "History";
     ((System.ComponentModel.ISupportInitialize)(this.txtaddedItem)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Пример #10
0
        public void Customization()
        {
            this.MetroColor               = Color.White;
            this.BorderColor              = ColorTranslator.FromHtml("#0aa2e6");
            this.BorderThickness          = 2;
            this.CaptionAlign             = System.Windows.Forms.HorizontalAlignment.Left;
            this.CaptionFont              = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.CaptionForeColor         = System.Drawing.Color.FromArgb(((int)(((byte)(68)))), ((int)(((byte)(68)))), ((int)(((byte)(68)))));
            this.CaptionVerticalAlignment = Syncfusion.Windows.Forms.VerticalAlignment.Bottom;
            this.GroupBar1.VisualStyle    = VisualStyle.Office2016White;
            this.GroupBar1.Size           = new Size(300, 276);
            this.groupView1.Style         = Syncfusion.Windows.Forms.Appearance.Office2016;
            this.dockingManager1.ShowMetroCaptionDottedLines = false;
            this.textbox = new TextBoxExt();
            this.panel1.Controls.Add(textbox);
            this.textbox.Dock        = DockStyle.Fill;
            this.textbox.BorderColor = Color.Black;
            this.textbox.Multiline   = true;
            this.textbox.Font        = new System.Drawing.Font("Segoe UI", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.textbox.Text        = "Vestibulum duis integer diam mi libero felis, sollicitudin id dictum etiam blandit lacus, ac condimentum magna dictumst interdum et, nam commodo mi habitasse enim fringilla nunc, amet aliquam sapien per tortor luctus. Conubia voluptates at nunc, congue lectus" +
                                       " malesuada nulla. Rutrum quo morbi, feugiat sed mi turpis, ac cursus integer ornare dolor. Purus dui in et tincidunt, sed eros pede adipiscing tellus, est suscipit nulla, arcu nec fringilla vel aliquam, mollis lorem rerum hac vestibulum ante nullam. Volutpat a lectus, lorem pulvinar"
                                       + " quis. Lobortis vehicula in imperdiet orci urna.Lorem ipsum dolor sit amet, lacus amet amet ultricies. Quisque mi venenatis morbi libero, orci dis, mi ut et class porta, massa ligula magna enim, aliquam orci vestibulum tempus.Turpis facilisis vitae consequat, cum a a, turpis dui conse"
                                       + "quat massa in dolor per, felis non amet.Auctor eleifend in omnis elit vestibulum, donec non elementum tellus est mauris, id aliquam, at lacus, arcu pretium proin lacus dolor et. Eu tortor, vel ultrices amet dignissim mauris vehicula. Lorem tortor neque, purus taciti quis id. Elementum integer orci accumsan minim phasellus vel." +
                                       "\r\n\r\n" + "Vestibulum duis integer diam mi libero felis, sollicitudin id dictum etiam blandit lacus, ac condimentum magna dictumst interdum et, nam commodo mi habitasse enim fringilla nunc, amet aliquam sapien per tortor luctus. Conubia voluptates at nunc, congue lectus" +
                                       " malesuada nulla. Rutrum quo morbi, feugiat sed mi turpis, ac cursus integer ornare dolor. Purus dui in et tincidunt, sed eros pede adipiscing tellus, est suscipit nulla, arcu nec fringilla vel aliquam, mollis lorem rerum hac vestibulum ante nullam. Volutpat a lectus, lorem pulvinar"
                                       + " quis. Lobortis vehicula in imperdiet orci urna.Lorem ipsum dolor sit amet, lacus amet amet ultricies. Quisque mi venenatis morbi libero, orci dis, mi ut et class porta, massa ligula magna enim, aliquam orci vestibulum tempus.Turpis facilisis vitae consequat, cum a a, turpis dui conse"
                                       + "quat massa in dolor per, felis non amet.Auctor eleifend in omnis elit vestibulum, donec non elementum tellus est mauris, id aliquam, at lacus, arcu pretium proin lacus dolor et. Eu tortor, vel ultrices amet dignissim mauris vehicula. Lorem tortor neque, purus taciti quis id. Elementum integer orci accumsan minim phasellus vel." +
                                       "\r\n\r\n" + "Vestibulum duis integer diam mi libero felis, sollicitudin id dictum etiam blandit lacus, ac condimentum magna dictumst interdum et, nam commodo mi habitasse enim fringilla nunc, amet aliquam sapien per tortor luctus. Conubia voluptates at nunc, congue lectus" +
                                       " malesuada nulla. Rutrum quo morbi, feugiat sed mi turpis, ac cursus integer ornare dolor. Purus dui in et tincidunt, sed eros pede adipiscing tellus, est suscipit nulla, arcu nec fringilla vel aliquam, mollis lorem rerum hac vestibulum ante nullam. Volutpat a lectus, lorem pulvinar"
                                       + " quis. Lobortis vehicula in imperdiet orci urna.Lorem ipsum dolor sit amet, lacus amet amet ultricies. Quisque mi venenatis morbi libero, orci dis, mi ut et class porta, massa ligula magna enim, aliquam orci vestibulum tempus.Turpis facilisis vitae consequat, cum a a, turpis dui conse"
                                       + "quat massa in dolor per, felis non amet.Auctor eleifend in omnis elit vestibulum, donec non elementum tellus est mauris, id aliquam, at lacus, arcu pretium proin lacus dolor et. Eu tortor, vel ultrices amet dignissim mauris vehicula. Lorem tortor neque, purus taciti quis id. Elementum integer orci accumsan minim phasellus vel." +
                                       "\r\n\r\n" + "Vestibulum duis integer diam mi libero felis, sollicitudin id dictum etiam blandit lacus, ac condimentum magna dictumst interdum et, nam commodo mi habitasse enim fringilla nunc, amet aliquam sapien per tortor luctus. Conubia voluptates at nunc, congue lectus" +
                                       " malesuada nulla. Rutrum quo morbi, feugiat sed mi turpis, ac cursus integer ornare dolor. Purus dui in et tincidunt, sed eros pede adipiscing tellus, est suscipit nulla, arcu nec fringilla vel aliquam, mollis lorem rerum hac vestibulum ante nullam. Volutpat a lectus, lorem pulvinar"
                                       + " quis. Lobortis vehicula in imperdiet orci urna.Lorem ipsum dolor sit amet, lacus amet amet ultricies. Quisque mi venenatis morbi libero, orci dis, mi ut et class porta, massa ligula magna enim, aliquam orci vestibulum tempus.Turpis facilisis vitae consequat, cum a a, turpis dui conse"
                                       + "quat massa in dolor per, felis non amet.Auctor eleifend in omnis elit vestibulum, donec non elementum tellus est mauris, id aliquam, at lacus, arcu pretium proin lacus dolor et. Eu tortor, vel ultrices amet dignissim mauris vehicula. Lorem tortor neque, purus taciti quis id. Elementum integer orci accumsan minim phasellus vel." +
                                       "\r\n\r\n" + "Vestibulum duis integer diam mi libero felis, sollicitudin id dictum etiam blandit lacus, ac condimentum magna dictumst interdum et, nam commodo mi habitasse enim fringilla nunc, amet aliquam sapien per tortor luctus. Conubia voluptates at nunc, congue lectus" +
                                       " malesuada nulla. Rutrum quo morbi, feugiat sed mi turpis, ac cursus integer ornare dolor. Purus dui in et tincidunt, sed eros pede adipiscing tellus, est suscipit nulla, arcu nec fringilla vel aliquam, mollis lorem rerum hac vestibulum ante nullam. Volutpat a lectus, lorem pulvinar"
                                       + " quis. Lobortis vehicula in imperdiet orci urna.Lorem ipsum dolor sit amet, lacus amet amet ultricies. Quisque mi venenatis morbi libero, orci dis, mi ut et class porta, massa ligula magna enim, aliquam orci vestibulum tempus.Turpis facilisis vitae consequat, cum a a, turpis dui conse"
                                       + "quat massa in dolor per, felis non amet.Auctor eleifend in omnis elit vestibulum, donec non elementum tellus est mauris, id aliquam, at lacus, arcu pretium proin lacus dolor et. Eu tortor, vel ultrices amet dignissim mauris vehicula. Lorem tortor neque, purus taciti quis id. Elementum integer orci accumsan minim phasellus vel." +
                                       "\r\n\r\n" + "Vestibulum duis integer diam mi libero felis, sollicitudin id dictum etiam blandit lacus, ac condimentum magna dictumst interdum et, nam commodo mi habitasse enim fringilla nunc, amet aliquam sapien per tortor luctus. Conubia voluptates at nunc, congue lectus" +
                                       " malesuada nulla. Rutrum quo morbi, feugiat sed mi turpis, ac cursus integer ornare dolor. Purus dui in et tincidunt, sed eros pede adipiscing tellus, est suscipit nulla, arcu nec fringilla vel aliquam, mollis lorem rerum hac vestibulum ante nullam. Volutpat a lectus, lorem pulvinar"
                                       + " quis. Lobortis vehicula in imperdiet orci urna.Lorem ipsum dolor sit amet, lacus amet amet ultricies. Quisque mi venenatis morbi libero, orci dis, mi ut et class porta, massa ligula magna enim, aliquam orci vestibulum tempus.Turpis facilisis vitae consequat, cum a a, turpis dui conse"
                                       + "quat massa in dolor per, felis non amet.Auctor eleifend in omnis elit vestibulum, donec non elementum tellus est mauris, id aliquam, at lacus, arcu pretium proin lacus dolor et. Eu tortor, vel ultrices amet dignissim mauris vehicula. Lorem tortor neque, purus taciti quis id. Elementum integer orci accumsan minim phasellus vel.";


            //groupView1
            this.groupView1.SelectedHighlightItemColor = ColorTranslator.FromHtml("#cde6f7");
            this.groupView1.HighlightItemColor         = ColorTranslator.FromHtml("#cde6f7");
            this.groupView1.HighlightTextColor         = Color.Black;
            this.groupView1.SelectedItemColor          = ColorTranslator.FromHtml("#cde6f7");
            this.groupView1.SelectingItemColor         = ColorTranslator.FromHtml("#cde6f7");
            this.groupView1.SelectingTextColor         = Color.Black;


            //groupView2
            this.groupView2.SelectedHighlightItemColor = ColorTranslator.FromHtml("#cde6f7");
            this.groupView2.HighlightItemColor         = ColorTranslator.FromHtml("#cde6f7");
            this.groupView2.HighlightTextColor         = Color.Black;
            this.groupView2.SelectedItemColor          = ColorTranslator.FromHtml("#cde6f7");
            this.groupView2.SelectingItemColor         = ColorTranslator.FromHtml("#cde6f7");
            this.groupView2.SelectingTextColor         = Color.Black;

            //groupView3
            this.groupView3.SelectedHighlightItemColor = ColorTranslator.FromHtml("#cde6f7");
            this.groupView3.HighlightItemColor         = ColorTranslator.FromHtml("#cde6f7");
            this.groupView3.HighlightTextColor         = Color.Black;
            this.groupView3.SelectedItemColor          = ColorTranslator.FromHtml("#cde6f7");
            this.groupView3.SelectingItemColor         = ColorTranslator.FromHtml("#cde6f7");
            this.groupView3.SelectingTextColor         = Color.Black;
        }
Пример #11
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1));
     this.htmluiControl1 = new Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl();
     this.panel1         = new System.Windows.Forms.Panel();
     this.textBox1       = new Syncfusion.Windows.Forms.Tools.TextBoxExt();
     this.comboBox1      = new Syncfusion.Windows.Forms.Tools.ComboBoxAdv();
     this.label2         = new System.Windows.Forms.Label();
     this.label1         = new System.Windows.Forms.Label();
     this.button2        = new Syncfusion.Windows.Forms.ButtonAdv();
     this.button1        = new Syncfusion.Windows.Forms.ButtonAdv();
     this.listView1      = new System.Windows.Forms.ListView();
     this.columnHeader1  = new System.Windows.Forms.ColumnHeader();
     this.columnHeader2  = new System.Windows.Forms.ColumnHeader();
     this.richTextBox1   = new System.Windows.Forms.RichTextBox();
     this.panel2         = new System.Windows.Forms.Panel();
     ((System.ComponentModel.ISupportInitialize)(this.htmluiControl1)).BeginInit();
     this.panel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.textBox1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.comboBox1)).BeginInit();
     this.panel2.SuspendLayout();
     this.SuspendLayout();
     //
     // htmluiControl1
     //
     this.htmluiControl1.AutoScroll                    = true;
     this.htmluiControl1.AutoScrollMinSize             = new System.Drawing.Size(352, 370);
     this.htmluiControl1.BackColor                     = System.Drawing.Color.White;
     this.htmluiControl1.DefaultFormat.BackgroundColor = System.Drawing.SystemColors.Control;
     this.htmluiControl1.DefaultFormat.ForeColor       = System.Drawing.SystemColors.ControlText;
     this.htmluiControl1.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.htmluiControl1.Location = new System.Drawing.Point(0, 0);
     this.htmluiControl1.Name     = "htmluiControl1";
     this.htmluiControl1.Size     = new System.Drawing.Size(369, 385);
     this.htmluiControl1.TabIndex = 4;
     this.htmluiControl1.Text     = resources.GetString("htmluiControl1.Text");
     //
     // panel1
     //
     this.panel1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                | System.Windows.Forms.AnchorStyles.Right)));
     this.panel1.BackColor   = System.Drawing.Color.White;
     this.panel1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.panel1.Controls.Add(this.textBox1);
     this.panel1.Controls.Add(this.comboBox1);
     this.panel1.Controls.Add(this.label2);
     this.panel1.Controls.Add(this.label1);
     this.panel1.Controls.Add(this.button2);
     this.panel1.Controls.Add(this.button1);
     this.panel1.Controls.Add(this.listView1);
     this.panel1.Location = new System.Drawing.Point(387, 10);
     this.panel1.Name     = "panel1";
     this.panel1.Size     = new System.Drawing.Size(269, 387);
     this.panel1.TabIndex = 3;
     //
     // textBox1
     //
     this.textBox1.BackColor   = System.Drawing.SystemColors.ButtonHighlight;
     this.textBox1.BorderColor = System.Drawing.Color.Gray;
     this.textBox1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.textBox1.Cursor      = System.Windows.Forms.Cursors.IBeam;
     this.textBox1.Location    = new System.Drawing.Point(8, 184);
     this.textBox1.Metrocolor  = System.Drawing.Color.Gray;
     this.textBox1.Name        = "textBox1";
     this.textBox1.ReadOnly    = false;
     this.textBox1.Size        = new System.Drawing.Size(200, 20);
     this.textBox1.Style       = Syncfusion.Windows.Forms.Tools.TextBoxExt.theme.Metro;
     this.textBox1.TabIndex    = 24;
     this.textBox1.Text        = "System.Windows.Forms";
     //
     // comboBox1
     //
     this.comboBox1.BackColor     = System.Drawing.Color.White;
     this.comboBox1.DropDownStyle = ComboBoxStyle.DropDownList;
     this.comboBox1.Items.AddRange(new object[] {
         "HScrollBar",
         "CheckBox",
         "DataGrid",
         "TabControl",
         "ListBox",
         "RadioButton"
     });
     this.comboBox1.ItemsImageIndexes.Add(new Syncfusion.Windows.Forms.Tools.ComboBoxAdv.ImageIndexItem(this.comboBox1, "HScrollBar"));
     this.comboBox1.ItemsImageIndexes.Add(new Syncfusion.Windows.Forms.Tools.ComboBoxAdv.ImageIndexItem(this.comboBox1, "CheckBox"));
     this.comboBox1.ItemsImageIndexes.Add(new Syncfusion.Windows.Forms.Tools.ComboBoxAdv.ImageIndexItem(this.comboBox1, "DataGrid"));
     this.comboBox1.ItemsImageIndexes.Add(new Syncfusion.Windows.Forms.Tools.ComboBoxAdv.ImageIndexItem(this.comboBox1, "TabControl"));
     this.comboBox1.ItemsImageIndexes.Add(new Syncfusion.Windows.Forms.Tools.ComboBoxAdv.ImageIndexItem(this.comboBox1, "ListBox"));
     this.comboBox1.ItemsImageIndexes.Add(new Syncfusion.Windows.Forms.Tools.ComboBoxAdv.ImageIndexItem(this.comboBox1, "RadioButton"));
     this.comboBox1.Location = new System.Drawing.Point(8, 232);
     this.comboBox1.Name     = "comboBox1";
     this.comboBox1.Size     = new System.Drawing.Size(200, 21);
     this.comboBox1.Style    = Syncfusion.Windows.Forms.VisualStyle.Metro;
     this.comboBox1.TabIndex = 23;
     this.comboBox1.Text     = "Button";
     //
     // label2
     //
     this.label2.BackColor = System.Drawing.Color.White;
     this.label2.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.label2.Font      = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label2.ForeColor = System.Drawing.Color.Black;
     this.label2.Location  = new System.Drawing.Point(8, 160);
     this.label2.Name      = "label2";
     this.label2.Size      = new System.Drawing.Size(200, 16);
     this.label2.TabIndex  = 21;
     this.label2.Text      = "Assembly Name";
     //
     // label1
     //
     this.label1.BackColor = System.Drawing.Color.White;
     this.label1.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.label1.Font      = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label1.ForeColor = System.Drawing.Color.Black;
     this.label1.Location  = new System.Drawing.Point(8, 208);
     this.label1.Name      = "label1";
     this.label1.Size      = new System.Drawing.Size(200, 16);
     this.label1.TabIndex  = 20;
     this.label1.Text      = "Class Name";
     //
     // button2
     //
     this.button2.Appearance              = Syncfusion.Windows.Forms.ButtonAppearance.Metro;
     this.button2.BackColor               = System.Drawing.Color.FromArgb(((int)(((byte)(17)))), ((int)(((byte)(158)))), ((int)(((byte)(218)))));
     this.button2.Enabled                 = false;
     this.button2.FlatStyle               = System.Windows.Forms.FlatStyle.Flat;
     this.button2.Font                    = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.button2.ForeColor               = System.Drawing.Color.White;
     this.button2.Location                = new System.Drawing.Point(56, 128);
     this.button2.Name                    = "button2";
     this.button2.Size                    = new System.Drawing.Size(96, 24);
     this.button2.TabIndex                = 18;
     this.button2.Text                    = "Delete";
     this.button2.UseVisualStyle          = true;
     this.button2.UseVisualStyleBackColor = false;
     this.button2.Click                  += new System.EventHandler(this.button2_Click);
     //
     // button1
     //
     this.button1.Appearance              = Syncfusion.Windows.Forms.ButtonAppearance.Metro;
     this.button1.BackColor               = System.Drawing.Color.FromArgb(((int)(((byte)(17)))), ((int)(((byte)(158)))), ((int)(((byte)(218)))));
     this.button1.FlatStyle               = System.Windows.Forms.FlatStyle.Flat;
     this.button1.Font                    = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.button1.ForeColor               = System.Drawing.Color.White;
     this.button1.Location                = new System.Drawing.Point(64, 264);
     this.button1.Name                    = "button1";
     this.button1.Size                    = new System.Drawing.Size(104, 24);
     this.button1.TabIndex                = 17;
     this.button1.Text                    = "Add";
     this.button1.UseVisualStyle          = true;
     this.button1.UseVisualStyleBackColor = false;
     this.button1.Click                  += new System.EventHandler(this.button1_Click);
     //
     // listView1
     //
     this.listView1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                   | System.Windows.Forms.AnchorStyles.Right)));
     this.listView1.BackColor = System.Drawing.Color.White;
     this.listView1.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
         this.columnHeader1,
         this.columnHeader2
     });
     this.listView1.Font          = new System.Drawing.Font("Verdana", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.listView1.FullRowSelect = true;
     this.listView1.Location      = new System.Drawing.Point(7, 8);
     this.listView1.Name          = "listView1";
     this.listView1.Size          = new System.Drawing.Size(254, 113);
     this.listView1.TabIndex      = 15;
     this.listView1.UseCompatibleStateImageBehavior = false;
     this.listView1.View = System.Windows.Forms.View.Details;
     this.listView1.SelectedIndexChanged += new System.EventHandler(this.listView1_SelectedIndexChanged);
     //
     // columnHeader1
     //
     this.columnHeader1.Text  = "Class Name";
     this.columnHeader1.Width = 86;
     //
     // columnHeader2
     //
     this.columnHeader2.Text  = "Assembly";
     this.columnHeader2.Width = 188;
     //
     // richTextBox1
     //
     this.richTextBox1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
                                                                      | System.Windows.Forms.AnchorStyles.Right)));
     this.richTextBox1.BackColor   = System.Drawing.Color.White;
     this.richTextBox1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.richTextBox1.Font        = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.richTextBox1.Location    = new System.Drawing.Point(10, 397);
     this.richTextBox1.Name        = "richTextBox1";
     this.richTextBox1.Size        = new System.Drawing.Size(646, 80);
     this.richTextBox1.TabIndex    = 7;
     this.richTextBox1.Text        = "";
     //
     // panel2
     //
     this.panel2.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                 | System.Windows.Forms.AnchorStyles.Left)
                                                                | System.Windows.Forms.AnchorStyles.Right)));
     this.panel2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.panel2.Controls.Add(this.htmluiControl1);
     this.panel2.Location = new System.Drawing.Point(10, 10);
     this.panel2.Name     = "panel2";
     this.panel2.Size     = new System.Drawing.Size(371, 387);
     this.panel2.TabIndex = 8;
     //
     // Form1
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.BackColor         = System.Drawing.Color.White;
     this.BorderColor       = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(161)))), ((int)(((byte)(226)))));
     this.CaptionAlign      = System.Windows.Forms.HorizontalAlignment.Center;
     this.ClientSize        = new System.Drawing.Size(666, 485);
     this.Controls.Add(this.panel2);
     this.Controls.Add(this.richTextBox1);
     this.Controls.Add(this.panel1);
     this.DropShadow       = true;
     this.Icon             = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.IconAlign        = System.Windows.Forms.HorizontalAlignment.Left;
     this.IconTextRelation = System.Windows.Forms.LeftRightAlignment.Left;
     this.MetroColor       = System.Drawing.Color.White;
     this.MinimumSize      = new System.Drawing.Size(678, 521);
     this.Name             = "Form1";
     this.Padding          = new System.Windows.Forms.Padding(10);
     this.StartPosition    = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text             = "Controls creation";
     this.Load            += new System.EventHandler(this.Form1_Load);
     ((System.ComponentModel.ISupportInitialize)(this.htmluiControl1)).EndInit();
     this.panel1.ResumeLayout(false);
     this.panel1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.textBox1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.comboBox1)).EndInit();
     this.panel2.ResumeLayout(false);
     this.ResumeLayout(false);
 }
 public EntityGeneratorHandler(MyPluginControl myPlugin, TreeViewAdv metadataTree, TextBoxExt output)
 {
     this.myPlugin     = myPlugin;
     this.metadataTree = metadataTree;
     this.output       = output;
 }
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            this.components = new System.ComponentModel.Container();
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1));
            this.autoComplete1 = new Syncfusion.Windows.Forms.Tools.AutoComplete(this.components);
            this.autoCompleteDataColumnInfo1 = new Syncfusion.Windows.Forms.Tools.AutoCompleteDataColumnInfo("Flag", 100, true);
            this.autoCompleteDataColumnInfo2 = new Syncfusion.Windows.Forms.Tools.AutoCompleteDataColumnInfo("Country", 100, true);
            this.imageList = new System.Windows.Forms.ImageList(this.components);
            this.textBox1  = new Syncfusion.Windows.Forms.Tools.TextBoxExt();
            this.label2    = new System.Windows.Forms.Label();
            ((System.ComponentModel.ISupportInitialize)(this.autoComplete1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.textBox1)).BeginInit();
            this.SuspendLayout();
            //
            // autoComplete1
            //
            this.autoComplete1.AdjustHeightToItemCount = false;
            this.autoComplete1.Columns.Add(this.autoCompleteDataColumnInfo1);
            this.autoComplete1.Columns.Add(this.autoCompleteDataColumnInfo2);
            this.autoComplete1.HeaderFont = new System.Drawing.Font("Segoe UI", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.World);
            this.autoComplete1.ImageList  = this.imageList;
            this.autoComplete1.ItemFont   = new System.Drawing.Font("Segoe UI", 8.25F);
            this.autoComplete1.MetroColor = System.Drawing.Color.FromArgb(((int)(((byte)(17)))), ((int)(((byte)(158)))), ((int)(((byte)(218)))));
            this.autoComplete1.ParentForm = this;
            this.autoComplete1.Style      = Syncfusion.Windows.Forms.Tools.AutoCompleteStyle.Default;
            this.autoComplete1.ThemeName  = "Office2019Colorful";
            //
            // autoCompleteDataColumnInfo1
            //
            this.autoCompleteDataColumnInfo1.ColumnHeaderText = "Flag";
            this.autoCompleteDataColumnInfo1.ImageColumn      = true;
            this.autoCompleteDataColumnInfo1.MatchingColumn   = true;
            this.autoCompleteDataColumnInfo1.Visible          = true;
            //
            // autoCompleteDataColumnInfo2
            //
            this.autoCompleteDataColumnInfo2.ColumnHeaderText = "Country";
            this.autoCompleteDataColumnInfo2.ImageColumn      = false;
            this.autoCompleteDataColumnInfo2.MatchingColumn   = true;
            this.autoCompleteDataColumnInfo2.Visible          = true;

            //
            // imageList
            //
            this.imageList.ColorDepth       = System.Windows.Forms.ColorDepth.Depth8Bit;
            this.imageList.ImageSize        = new System.Drawing.Size(16, 16);
            this.imageList.TransparentColor = System.Drawing.Color.Transparent;

            //
            // textBox1
            //
            this.autoComplete1.SetAutoComplete(this.textBox1, Syncfusion.Windows.Forms.Tools.AutoCompleteModes.AutoSuggest);
            this.textBox1.BackColor       = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
            this.textBox1.BeforeTouchSize = new System.Drawing.Size(181, 22);
            this.textBox1.BorderColor     = System.Drawing.Color.FromArgb(((int)(((byte)(197)))), ((int)(((byte)(197)))), ((int)(((byte)(197)))));
            this.textBox1.BorderStyle     = System.Windows.Forms.BorderStyle.FixedSingle;
            this.textBox1.Cursor          = System.Windows.Forms.Cursors.IBeam;
            this.textBox1.Font            = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.textBox1.ForeColor       = System.Drawing.Color.FromArgb(((int)(((byte)(68)))), ((int)(((byte)(68)))), ((int)(((byte)(68)))));
            this.textBox1.Location        = new System.Drawing.Point(147, 114);
            this.textBox1.Margin          = new System.Windows.Forms.Padding(2, 2, 2, 2);
            this.textBox1.Metrocolor      = System.Drawing.Color.Gray;
            this.textBox1.Name            = "textBox1";
            this.textBox1.Size            = new System.Drawing.Size(181, 22);
            this.textBox1.Style           = Syncfusion.Windows.Forms.Tools.TextBoxExt.theme.Office2016Colorful;
            this.textBox1.TabIndex        = 2;
            this.textBox1.ThemeName       = "Office2019Colorful";


            //
            // label2
            //
            this.label2.AutoSize  = true;
            this.label2.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(68)))), ((int)(((byte)(68)))), ((int)(((byte)(68)))));
            this.label2.Location  = new System.Drawing.Point(104, 232);
            this.label2.Name      = "label2";
            this.label2.Size      = new System.Drawing.Size(160, 20);
            this.label2.TabIndex  = 3;
            this.label2.Text      = "Enter country name : ";
            //
            // Form1
            //
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
            this.CaptionAlign        = System.Windows.Forms.HorizontalAlignment.Left;
            this.ClientSize          = new System.Drawing.Size(495, 312);
            this.Controls.Add(this.textBox1);
            this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
            this.Icon            = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
            this.Margin          = new System.Windows.Forms.Padding(2, 2, 2, 2);
            this.Name            = "Form1";
            this.ShowMaximizeBox = false;
            this.ShowMinimizeBox = false;
            this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterScreen;
            this.Text            = "Imgae Settings";
            ((System.ComponentModel.ISupportInitialize)(this.autoComplete1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.textBox1)).EndInit();
            this.ResumeLayout(false);
            this.PerformLayout();
        }
Пример #14
0
 public EntityGeneratorHandler NewEntityGeneratorHandler(MyPluginControl myPlugin, TreeViewAdv metadataTree, TextBoxExt txtOutput)
 {
     return(new EntityGeneratorHandler(myPlugin, metadataTree, txtOutput));
 }
Пример #15
0
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1));
     this.popupControlContainer1 = new Syncfusion.Windows.Forms.PopupControlContainer();
     this.cancel         = new Syncfusion.Windows.Forms.ButtonAdv();
     this.OK             = new Syncfusion.Windows.Forms.ButtonAdv();
     this.popupTextBox   = new Syncfusion.Windows.Forms.Tools.TextBoxExt();
     this.label1         = new System.Windows.Forms.Label();
     this.imageList1     = new System.Windows.Forms.ImageList(this.components);
     this.sourceTextBox  = new Syncfusion.Windows.Forms.Tools.TextBoxExt();
     this.groupBox1      = new System.Windows.Forms.GroupBox();
     this.gradientPanel2 = new Syncfusion.Windows.Forms.Tools.GradientPanel();
     this.autoLabel1     = new Syncfusion.Windows.Forms.Tools.AutoLabel();
     this.gradientPanel1 = new Syncfusion.Windows.Forms.Tools.GradientPanel();
     this.dropDownBtn    = new Syncfusion.Windows.Forms.ButtonAdv();
     this.popupControlContainer1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.popupTextBox)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.sourceTextBox)).BeginInit();
     this.groupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gradientPanel2)).BeginInit();
     this.gradientPanel2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gradientPanel1)).BeginInit();
     this.gradientPanel1.SuspendLayout();
     this.SuspendLayout();
     //
     // popupControlContainer1
     //
     this.popupControlContainer1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.popupControlContainer1.Controls.Add(this.cancel);
     this.popupControlContainer1.Controls.Add(this.OK);
     this.popupControlContainer1.Controls.Add(this.popupTextBox);
     this.popupControlContainer1.Location     = new System.Drawing.Point(32, 156);
     this.popupControlContainer1.Name         = "popupControlContainer1";
     this.popupControlContainer1.Size         = new System.Drawing.Size(120, 128);
     this.popupControlContainer1.TabIndex     = 0;
     this.popupControlContainer1.Visible      = false;
     this.popupControlContainer1.CloseUp     += new Syncfusion.Windows.Forms.PopupClosedEventHandler(this.popupControlContainer1_CloseUp);
     this.popupControlContainer1.BeforePopup += new System.ComponentModel.CancelEventHandler(this.popupControlContainer1_BeforePopup);
     this.popupControlContainer1.Popup       += new System.EventHandler(this.popupControlContainer1_Popup);
     //
     // cancel
     //
     this.cancel.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                 | System.Windows.Forms.AnchorStyles.Left)
                                                                | System.Windows.Forms.AnchorStyles.Right)));
     this.cancel.Appearance     = Syncfusion.Windows.Forms.ButtonAppearance.Metro;
     this.cancel.BackColor      = System.Drawing.SystemColors.Highlight;
     this.cancel.ForeColor      = System.Drawing.Color.White;
     this.cancel.Location       = new System.Drawing.Point(56, 96);
     this.cancel.Name           = "cancel";
     this.cancel.Size           = new System.Drawing.Size(56, 24);
     this.cancel.TabIndex       = 2;
     this.cancel.Text           = "Cancel";
     this.cancel.UseVisualStyle = true;
     this.cancel.Click         += new System.EventHandler(this.cancelButton_Click);
     //
     // OK
     //
     this.OK.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                             | System.Windows.Forms.AnchorStyles.Left)
                                                            | System.Windows.Forms.AnchorStyles.Right)));
     this.OK.Appearance     = Syncfusion.Windows.Forms.ButtonAppearance.Metro;
     this.OK.BackColor      = System.Drawing.SystemColors.Highlight;
     this.OK.ForeColor      = System.Drawing.Color.White;
     this.OK.Location       = new System.Drawing.Point(8, 96);
     this.OK.Name           = "OK";
     this.OK.Size           = new System.Drawing.Size(48, 24);
     this.OK.TabIndex       = 1;
     this.OK.Text           = "OK";
     this.OK.UseVisualStyle = true;
     this.OK.Click         += new System.EventHandler(this.OK_Click);
     //
     // popupTextBox
     //
     this.popupTextBox.BorderColor = System.Drawing.Color.Gray;
     this.popupTextBox.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.popupTextBox.Cursor      = System.Windows.Forms.Cursors.IBeam;
     this.popupTextBox.Location    = new System.Drawing.Point(0, 0);
     this.popupTextBox.Metrocolor  = System.Drawing.Color.Gray;
     this.popupTextBox.Multiline   = true;
     this.popupTextBox.Name        = "popupTextBox";
     this.popupTextBox.Size        = new System.Drawing.Size(118, 90);
     this.popupTextBox.Style       = Syncfusion.Windows.Forms.Tools.TextBoxExt.theme.Metro;
     this.popupTextBox.TabIndex    = 0;
     //
     // label1
     //
     this.label1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                 | System.Windows.Forms.AnchorStyles.Left)
                                                                | System.Windows.Forms.AnchorStyles.Right)));
     this.label1.Font       = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label1.ForeColor  = System.Drawing.SystemColors.ControlText;
     this.label1.ImageAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.label1.ImageList  = this.imageList1;
     this.label1.Location   = new System.Drawing.Point(31, 16);
     this.label1.Name       = "label1";
     this.label1.Size       = new System.Drawing.Size(267, 70);
     this.label1.TabIndex   = 1;
     this.label1.Text       = "Associate a PopupControlContainer with this TextBox. And also transfer data back " +
                              "and forth between the popup and the TextBox.";
     //
     // imageList1
     //
     this.imageList1.ImageStream      = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
     this.imageList1.TransparentColor = System.Drawing.Color.Transparent;
     this.imageList1.Images.SetKeyName(0, "");
     this.imageList1.Images.SetKeyName(1, "");
     //
     // sourceTextBox
     //
     this.sourceTextBox.BorderColor = System.Drawing.Color.Gray;
     this.sourceTextBox.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.sourceTextBox.Cursor      = System.Windows.Forms.Cursors.IBeam;
     this.sourceTextBox.Location    = new System.Drawing.Point(32, 40);
     this.sourceTextBox.Metrocolor  = System.Drawing.Color.Gray;
     this.sourceTextBox.Name        = "sourceTextBox";
     this.sourceTextBox.Size        = new System.Drawing.Size(176, 22);
     this.sourceTextBox.Style       = Syncfusion.Windows.Forms.Tools.TextBoxExt.theme.Metro;
     this.sourceTextBox.TabIndex    = 2;
     this.sourceTextBox.Text        = "Alt+DownArrow for popup";
     this.sourceTextBox.KeyDown    += new System.Windows.Forms.KeyEventHandler(this.textBoxPopupParent_KeyDown);
     //
     // groupBox1
     //
     this.groupBox1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                    | System.Windows.Forms.AnchorStyles.Left)
                                                                   | System.Windows.Forms.AnchorStyles.Right)));
     this.groupBox1.Controls.Add(this.gradientPanel2);
     this.groupBox1.Controls.Add(this.gradientPanel1);
     this.groupBox1.Controls.Add(this.popupControlContainer1);
     this.groupBox1.Controls.Add(this.dropDownBtn);
     this.groupBox1.Controls.Add(this.sourceTextBox);
     this.groupBox1.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.groupBox1.Font      = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.groupBox1.Location  = new System.Drawing.Point(23, 14);
     this.groupBox1.Name      = "groupBox1";
     this.groupBox1.Size      = new System.Drawing.Size(673, 325);
     this.groupBox1.TabIndex  = 3;
     this.groupBox1.TabStop   = false;
     this.groupBox1.Text      = "PopupControlContainer demo";
     //
     // gradientPanel2
     //
     this.gradientPanel2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                        | System.Windows.Forms.AnchorStyles.Right)));
     this.gradientPanel2.BorderColor = System.Drawing.Color.Silver;
     this.gradientPanel2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.gradientPanel2.Controls.Add(this.autoLabel1);
     this.gradientPanel2.Location = new System.Drawing.Point(270, 156);
     this.gradientPanel2.Name     = "gradientPanel2";
     this.gradientPanel2.Size     = new System.Drawing.Size(361, 113);
     this.gradientPanel2.TabIndex = 5;
     //
     // autoLabel1
     //
     this.autoLabel1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                     | System.Windows.Forms.AnchorStyles.Left)
                                                                    | System.Windows.Forms.AnchorStyles.Right)));
     this.autoLabel1.AutoSize  = false;
     this.autoLabel1.Font      = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.autoLabel1.Location  = new System.Drawing.Point(35, 2);
     this.autoLabel1.Name      = "autoLabel1";
     this.autoLabel1.Size      = new System.Drawing.Size(295, 84);
     this.autoLabel1.TabIndex  = 3;
     this.autoLabel1.Text      = resources.GetString("autoLabel1.Text");
     this.autoLabel1.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // gradientPanel1
     //
     this.gradientPanel1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                        | System.Windows.Forms.AnchorStyles.Right)));
     this.gradientPanel1.BorderColor = System.Drawing.Color.Silver;
     this.gradientPanel1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.gradientPanel1.Controls.Add(this.label1);
     this.gradientPanel1.Location = new System.Drawing.Point(270, 40);
     this.gradientPanel1.Name     = "gradientPanel1";
     this.gradientPanel1.Size     = new System.Drawing.Size(361, 88);
     this.gradientPanel1.TabIndex = 4;
     //
     // dropDownBtn
     //
     this.dropDownBtn.Appearance     = Syncfusion.Windows.Forms.ButtonAppearance.Metro;
     this.dropDownBtn.BackColor      = System.Drawing.SystemColors.Highlight;
     this.dropDownBtn.Image          = ((System.Drawing.Image)(resources.GetObject("dropDownBtn.Image")));
     this.dropDownBtn.Location       = new System.Drawing.Point(216, 40);
     this.dropDownBtn.Name           = "dropDownBtn";
     this.dropDownBtn.Size           = new System.Drawing.Size(26, 20);
     this.dropDownBtn.TabIndex       = 0;
     this.dropDownBtn.UseVisualStyle = true;
     this.dropDownBtn.Click         += new System.EventHandler(this.dropDownBtn_Click);
     //
     // Form1
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(6, 18);
     this.BackColor         = System.Drawing.Color.White;
     this.BorderColor       = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(161)))), ((int)(((byte)(226)))));
     this.ClientSize        = new System.Drawing.Size(739, 374);
     this.Controls.Add(this.groupBox1);
     this.DropShadow    = true;
     this.Font          = new System.Drawing.Font("Segoe UI", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Icon          = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MinimumSize   = new System.Drawing.Size(751, 411);
     this.Name          = "Form1";
     this.Padding       = new System.Windows.Forms.Padding(20);
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text          = "Popup Container Demo";
     this.Load         += new System.EventHandler(this.Form1_Load);
     this.popupControlContainer1.ResumeLayout(false);
     this.popupControlContainer1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.popupTextBox)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.sourceTextBox)).EndInit();
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gradientPanel2)).EndInit();
     this.gradientPanel2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gradientPanel1)).EndInit();
     this.gradientPanel1.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Пример #16
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1));
     this.panel1        = new System.Windows.Forms.Panel();
     this.groupBox1     = new System.Windows.Forms.Panel();
     this.checkBox4     = new Syncfusion.Windows.Forms.Tools.CheckBoxAdv();
     this.checkBox3     = new Syncfusion.Windows.Forms.Tools.CheckBoxAdv();
     this.checkBox2     = new Syncfusion.Windows.Forms.Tools.CheckBoxAdv();
     this.checkBox1     = new Syncfusion.Windows.Forms.Tools.CheckBoxAdv();
     this.comboBoxAdv1  = new Syncfusion.Windows.Forms.Tools.ComboBoxAdv();
     this.label7        = new System.Windows.Forms.Label();
     this.panel2        = new System.Windows.Forms.Panel();
     this.label2        = new System.Windows.Forms.Label();
     this.textBox1      = new Syncfusion.Windows.Forms.Tools.TextBoxExt();
     this.autoComplete1 = new Syncfusion.Windows.Forms.Tools.AutoComplete(this.components);
     this.autoCompleteDataColumnInfo1 = new Syncfusion.Windows.Forms.Tools.AutoCompleteDataColumnInfo("Country", 100, true);
     this.autoCompleteDataColumnInfo2 = new Syncfusion.Windows.Forms.Tools.AutoCompleteDataColumnInfo("Capital", 100, true);
     this.panel1.SuspendLayout();
     this.groupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.checkBox4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkBox3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkBox2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkBox1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.comboBoxAdv1)).BeginInit();
     this.panel2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.textBox1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.autoComplete1)).BeginInit();
     this.SuspendLayout();
     //
     // panel1
     //
     this.panel1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                | System.Windows.Forms.AnchorStyles.Left)));
     this.panel1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.panel1.Controls.Add(this.groupBox1);
     this.panel1.Location = new System.Drawing.Point(728, 21);
     this.panel1.Name     = "panel1";
     this.panel1.Size     = new System.Drawing.Size(395, 645);
     this.panel1.TabIndex = 1;
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.checkBox4);
     this.groupBox1.Controls.Add(this.checkBox3);
     this.groupBox1.Controls.Add(this.checkBox2);
     this.groupBox1.Controls.Add(this.checkBox1);
     this.groupBox1.Controls.Add(this.comboBoxAdv1);
     this.groupBox1.Controls.Add(this.label7);
     this.groupBox1.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(68)))), ((int)(((byte)(68)))), ((int)(((byte)(68)))));
     this.groupBox1.Location  = new System.Drawing.Point(18, 96);
     this.groupBox1.Name      = "groupBox1";
     this.groupBox1.Size      = new System.Drawing.Size(351, 332);
     this.groupBox1.TabIndex  = 0;
     //
     // checkBox4
     //
     this.checkBox4.BeforeTouchSize   = new System.Drawing.Size(134, 23);
     this.checkBox4.ForeColor         = System.Drawing.Color.FromArgb(((int)(((byte)(68)))), ((int)(((byte)(68)))), ((int)(((byte)(68)))));
     this.checkBox4.ImageCheckBoxSize = new System.Drawing.Size(20, 20);
     this.checkBox4.Location          = new System.Drawing.Point(33, 211);
     this.checkBox4.Name      = "checkBox4";
     this.checkBox4.Size      = new System.Drawing.Size(150, 21);
     this.checkBox4.TabIndex  = 7;
     this.checkBox4.ThemeName = "Office2019Colorful";
     //
     // checkBox3
     //
     this.checkBox3.BeforeTouchSize   = new System.Drawing.Size(128, 23);
     this.checkBox3.Checked           = true;
     this.checkBox3.CheckState        = System.Windows.Forms.CheckState.Checked;
     this.checkBox3.ForeColor         = System.Drawing.Color.FromArgb(((int)(((byte)(68)))), ((int)(((byte)(68)))), ((int)(((byte)(68)))));
     this.checkBox3.ImageCheckBoxSize = new System.Drawing.Size(20, 20);
     this.checkBox3.Location          = new System.Drawing.Point(33, 156);
     this.checkBox3.Name      = "checkBox3";
     this.checkBox3.Size      = new System.Drawing.Size(150, 21);
     this.checkBox3.TabIndex  = 6;
     this.checkBox3.ThemeName = "Office2019Colorful";
     //
     // checkBox2
     //
     this.checkBox2.BeforeTouchSize   = new System.Drawing.Size(167, 23);
     this.checkBox2.Checked           = true;
     this.checkBox2.CheckState        = System.Windows.Forms.CheckState.Checked;
     this.checkBox2.ForeColor         = System.Drawing.Color.FromArgb(((int)(((byte)(68)))), ((int)(((byte)(68)))), ((int)(((byte)(68)))));
     this.checkBox2.ImageCheckBoxSize = new System.Drawing.Size(20, 20);
     this.checkBox2.Location          = new System.Drawing.Point(33, 99);
     this.checkBox2.Name      = "checkBox2";
     this.checkBox2.Size      = new System.Drawing.Size(150, 21);
     this.checkBox2.TabIndex  = 5;
     this.checkBox2.ThemeName = "Office2019Colorful";
     //
     // checkBox1
     //
     this.checkBox1.BeforeTouchSize   = new System.Drawing.Size(186, 23);
     this.checkBox1.Checked           = true;
     this.checkBox1.CheckState        = System.Windows.Forms.CheckState.Checked;
     this.checkBox1.ForeColor         = System.Drawing.Color.FromArgb(((int)(((byte)(68)))), ((int)(((byte)(68)))), ((int)(((byte)(68)))));
     this.checkBox1.ImageCheckBoxSize = new System.Drawing.Size(20, 20);
     this.checkBox1.Location          = new System.Drawing.Point(33, 42);
     this.checkBox1.Name      = "checkBox1";
     this.checkBox1.Size      = new System.Drawing.Size(150, 21);
     this.checkBox1.TabIndex  = 4;
     this.checkBox1.ThemeName = "Office2019Colorful";
     //
     // comboBoxAdv1
     //
     this.comboBoxAdv1.BackColor       = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     this.comboBoxAdv1.BeforeTouchSize = new System.Drawing.Size(143, 28);
     this.comboBoxAdv1.DropDownStyle   = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.comboBoxAdv1.FlatStyle       = Syncfusion.Windows.Forms.Tools.ComboFlatStyle.Flat;
     this.comboBoxAdv1.ForeColor       = System.Drawing.SystemColors.WindowText;
     this.comboBoxAdv1.Items.AddRange(new object[] {
         "Country",
         "Capital"
     });
     this.comboBoxAdv1.Location  = new System.Drawing.Point(175, 270);
     this.comboBoxAdv1.Name      = "comboBoxAdv1";
     this.comboBoxAdv1.Size      = new System.Drawing.Size(143, 28);
     this.comboBoxAdv1.TabIndex  = 4;
     this.comboBoxAdv1.Text      = "Country";
     this.comboBoxAdv1.ThemeName = "Office2019Colorful";
     //
     // label7
     //
     this.label7.AutoSize = true;
     this.label7.Location = new System.Drawing.Point(33, 274);
     this.label7.Name     = "label7";
     this.label7.Size     = new System.Drawing.Size(132, 20);
     this.label7.TabIndex = 2;
     this.label7.Text     = "Matching Column";
     //
     // panel2
     //
     this.panel2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                | System.Windows.Forms.AnchorStyles.Left)));
     this.panel2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.panel2.Controls.Add(this.label2);
     this.panel2.Controls.Add(this.textBox1);
     this.panel2.Location = new System.Drawing.Point(1, 21);
     this.panel2.Name     = "panel2";
     this.panel2.Size     = new System.Drawing.Size(719, 645);
     this.panel2.TabIndex = 0;
     //
     // label2
     //
     this.label2.AutoSize  = true;
     this.label2.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(68)))), ((int)(((byte)(68)))), ((int)(((byte)(68)))));
     this.label2.Location  = new System.Drawing.Point(14, 282);
     this.label2.Name      = "label2";
     this.label2.Size      = new System.Drawing.Size(156, 20);
     this.label2.TabIndex  = 3;
     this.label2.Text      = "Enter country name :";
     //
     // textBox1
     //
     this.autoComplete1.SetAutoComplete(this.textBox1, Syncfusion.Windows.Forms.Tools.AutoCompleteModes.AutoSuggest);
     this.textBox1.BackColor       = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     this.textBox1.BeforeTouchSize = new System.Drawing.Size(500, 29);
     this.textBox1.BorderColor     = System.Drawing.Color.FromArgb(((int)(((byte)(197)))), ((int)(((byte)(197)))), ((int)(((byte)(197)))));
     this.textBox1.BorderStyle     = System.Windows.Forms.BorderStyle.FixedSingle;
     this.textBox1.Cursor          = System.Windows.Forms.Cursors.IBeam;
     this.textBox1.Font            = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.textBox1.ForeColor       = System.Drawing.Color.FromArgb(((int)(((byte)(68)))), ((int)(((byte)(68)))), ((int)(((byte)(68)))));
     this.textBox1.Location        = new System.Drawing.Point(188, 277);
     this.textBox1.Metrocolor      = System.Drawing.Color.Gray;
     this.textBox1.Name            = "textBox1";
     this.textBox1.Size            = new System.Drawing.Size(500, 29);
     this.textBox1.Style           = Syncfusion.Windows.Forms.Tools.TextBoxExt.theme.Office2016Colorful;
     this.textBox1.TabIndex        = 2;
     this.textBox1.ThemeName       = "Office2019Colorful";
     //
     // autoComplete1
     //
     this.autoComplete1.HeaderFont = new System.Drawing.Font("Segoe UI", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.World);
     this.autoComplete1.ItemFont   = new System.Drawing.Font("Segoe UI", 8.25F);
     this.autoComplete1.MetroColor = System.Drawing.Color.FromArgb(((int)(((byte)(17)))), ((int)(((byte)(158)))), ((int)(((byte)(218)))));
     this.autoComplete1.ParentForm = this;
     this.autoComplete1.Style      = Syncfusion.Windows.Forms.Tools.AutoCompleteStyle.Office2016Colorful;
     this.autoComplete1.ThemeName  = "Office2019Colorful";
     //
     // autoCompleteDataColumnInfo1
     //
     this.autoCompleteDataColumnInfo1.ColumnHeaderText = "Country";
     this.autoCompleteDataColumnInfo1.ImageColumn      = false;
     this.autoCompleteDataColumnInfo1.MatchingColumn   = true;
     this.autoCompleteDataColumnInfo1.Visible          = true;
     //
     // autoCompleteDataColumnInfo2
     //
     this.autoCompleteDataColumnInfo2.ColumnHeaderText = "Capital";
     this.autoCompleteDataColumnInfo2.ImageColumn      = false;
     this.autoCompleteDataColumnInfo2.MatchingColumn   = false;
     this.autoCompleteDataColumnInfo2.Visible          = true;
     //
     // Form1
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 20F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.CaptionAlign        = System.Windows.Forms.HorizontalAlignment.Left;
     this.ClientSize          = new System.Drawing.Size(1122, 670);
     this.Controls.Add(this.panel1);
     this.Controls.Add(this.panel2);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     this.Icon            = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Name            = "Form1";
     this.ShowMaximizeBox = false;
     this.ShowMinimizeBox = false;
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text            = "Appearance";
     this.panel1.ResumeLayout(false);
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.checkBox4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkBox3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkBox2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkBox1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.comboBoxAdv1)).EndInit();
     this.panel2.ResumeLayout(false);
     this.panel2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.textBox1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.autoComplete1)).EndInit();
     this.ResumeLayout(false);
 }
Пример #17
0
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            this.components = new System.ComponentModel.Container();
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1));
            this.imageList1    = new System.Windows.Forms.ImageList(this.components);
            this.comboBoxAdv1  = new Syncfusion.Windows.Forms.Tools.ComboBoxAdv();
            this.label3        = new System.Windows.Forms.Label();
            this.textBox1      = new Syncfusion.Windows.Forms.Tools.TextBoxExt();
            this.autoComplete1 = new Syncfusion.Windows.Forms.Tools.AutoComplete(this.components);
            this.textBox5      = new Syncfusion.Windows.Forms.Tools.TextBoxExt();
            this.textBox4      = new Syncfusion.Windows.Forms.Tools.TextBoxExt();
            this.textBox6      = new Syncfusion.Windows.Forms.Tools.TextBoxExt();
            this.imageList2    = new System.Windows.Forms.ImageList(this.components);
            this.comboBoxAdv2  = new Syncfusion.Windows.Forms.Tools.ComboBoxAdv();
            this.label5        = new System.Windows.Forms.Label();
            this.autoCompleteDataColumnInfo1 = new Syncfusion.Windows.Forms.Tools.AutoCompleteDataColumnInfo("URL", 100, true);
            this.autoCompleteDataColumnInfo2 = new Syncfusion.Windows.Forms.Tools.AutoCompleteDataColumnInfo("Name", 100, true);
            this.autoCompleteDataColumnInfo3 = new Syncfusion.Windows.Forms.Tools.AutoCompleteDataColumnInfo("ImageIndex", 100, true);
            this.imageList3         = new System.Windows.Forms.ImageList(this.components);
            this.label10            = new System.Windows.Forms.Label();
            this.label2             = new System.Windows.Forms.Label();
            this.label6             = new System.Windows.Forms.Label();
            this.gradientPanel1     = new Syncfusion.Windows.Forms.Tools.GradientPanel();
            this.label40            = new System.Windows.Forms.Label();
            this.gradientPanel2     = new Syncfusion.Windows.Forms.Tools.GradientPanel();
            this.label15            = new System.Windows.Forms.Label();
            this.label4             = new System.Windows.Forms.Label();
            this.toolTip1           = new System.Windows.Forms.ToolTip(this.components);
            this.autoLabel1         = new Syncfusion.Windows.Forms.Tools.AutoLabel();
            this.label9             = new System.Windows.Forms.Label();
            this.splitContainerAdv1 = new Syncfusion.Windows.Forms.Tools.SplitContainerAdv();
            this.label1             = new System.Windows.Forms.Label();
            this.comboBoxAdv3       = new Syncfusion.Windows.Forms.Tools.ComboBoxAdv();
            this.autoComplete2      = new Syncfusion.Windows.Forms.Tools.AutoComplete(this.components);
            this.skinManager1       = new Syncfusion.Windows.Forms.SkinManager(this.components);
            ((System.ComponentModel.ISupportInitialize)(this.comboBoxAdv1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.textBox1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.autoComplete1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.textBox5)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.textBox4)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.textBox6)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.comboBoxAdv2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gradientPanel1)).BeginInit();
            this.gradientPanel1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.gradientPanel2)).BeginInit();
            this.gradientPanel2.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.splitContainerAdv1)).BeginInit();
            this.splitContainerAdv1.Panel1.SuspendLayout();
            this.splitContainerAdv1.Panel2.SuspendLayout();
            this.splitContainerAdv1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.comboBoxAdv3)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.autoComplete2)).BeginInit();
            this.SuspendLayout();
            //
            // imageList1
            //
            this.imageList1.ImageStream      = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
            this.imageList1.TransparentColor = System.Drawing.Color.Transparent;
            this.imageList1.Images.SetKeyName(0, "");
            //
            // comboBoxAdv1
            //
            this.comboBoxAdv1.BackColor       = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
            this.comboBoxAdv1.BeforeTouchSize = new System.Drawing.Size(186, 27);
            this.comboBoxAdv1.DropDownStyle   = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.comboBoxAdv1.Font            = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.comboBoxAdv1.Items.AddRange(new object[] {
                "Disabled",
                "AutoSuggest",
                "AutoAppend",
                "Both"
            });
            this.comboBoxAdv1.Location              = new System.Drawing.Point(241, 201);
            this.comboBoxAdv1.Name                  = "comboBoxAdv1";
            this.comboBoxAdv1.Office2007ColorTheme  = Syncfusion.Windows.Forms.Office2007Theme.Black;
            this.comboBoxAdv1.Office2010ColorTheme  = Syncfusion.Windows.Forms.Office2010Theme.Black;
            this.comboBoxAdv1.Size                  = new System.Drawing.Size(186, 27);
            this.comboBoxAdv1.Style                 = Syncfusion.Windows.Forms.VisualStyle.Office2016Colorful;
            this.comboBoxAdv1.TabIndex              = 10;
            this.comboBoxAdv1.Text                  = "Disabled";
            this.comboBoxAdv1.SelectedIndexChanged += new System.EventHandler(this.comboBoxAdv1_SelectedIndexChanged);
            //
            // label3
            //
            this.label3.AutoSize  = true;
            this.label3.BackColor = System.Drawing.Color.Transparent;
            this.label3.Font      = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label3.Location  = new System.Drawing.Point(43, 203);
            this.label3.Name      = "label3";
            this.label3.Size      = new System.Drawing.Size(164, 19);
            this.label3.TabIndex  = 9;
            this.label3.Text      = "Set AutoComplete Mode:";
            //
            // textBox1
            //
            this.autoComplete1.SetAutoComplete(this.textBox1, Syncfusion.Windows.Forms.Tools.AutoCompleteModes.AutoSuggest);
            this.textBox1.BackColor             = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
            this.textBox1.BeforeTouchSize       = new System.Drawing.Size(186, 26);
            this.textBox1.BorderColor           = System.Drawing.Color.FromArgb(((int)(((byte)(197)))), ((int)(((byte)(197)))), ((int)(((byte)(197)))));
            this.textBox1.BorderStyle           = System.Windows.Forms.BorderStyle.FixedSingle;
            this.textBox1.Cursor                = System.Windows.Forms.Cursors.IBeam;
            this.textBox1.Font                  = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.textBox1.ForeColor             = System.Drawing.Color.FromArgb(((int)(((byte)(68)))), ((int)(((byte)(68)))), ((int)(((byte)(68)))));
            this.textBox1.Location              = new System.Drawing.Point(680, 196);
            this.textBox1.Metrocolor            = System.Drawing.Color.Gray;
            this.textBox1.Name                  = "textBox1";
            this.textBox1.Office2007ColorScheme = Syncfusion.Windows.Forms.Office2007Theme.Black;
            this.textBox1.Office2010ColorScheme = Syncfusion.Windows.Forms.Office2010Theme.Black;
            this.textBox1.Size                  = new System.Drawing.Size(259, 26);
            this.textBox1.Style                 = Syncfusion.Windows.Forms.Tools.TextBoxExt.theme.Office2016Colorful;
            this.textBox1.TabIndex              = 6;
            //
            // autoComplete1
            //
            this.autoComplete1.AutoAddItem = true;
            this.autoComplete1.HeaderFont  = new System.Drawing.Font("Segoe UI", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.World);
            this.autoComplete1.ItemFont    = new System.Drawing.Font("Segoe UI", 8.25F);
            this.autoComplete1.MetroColor  = System.Drawing.Color.FromArgb(((int)(((byte)(17)))), ((int)(((byte)(158)))), ((int)(((byte)(218)))));
            this.autoComplete1.ParentForm  = this;
            this.autoComplete1.Style       = Syncfusion.Windows.Forms.Tools.AutoCompleteStyle.Office2016Colorful;
            this.autoComplete1.AutoCompleteItemSelected += new Syncfusion.Windows.Forms.Tools.AutoCompleteItemEventHandler(this.autoComplete_AutoCompleteItemSelected);
            this.autoComplete1.AutoCompleteItemBrowsed  += new Syncfusion.Windows.Forms.Tools.AutoCompleteItemEventHandler(this.autoComplete_AutoCompleteItemBrowsed);
            //
            // textBox5
            //
            this.textBox5.BackColor             = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
            this.textBox5.BeforeTouchSize       = new System.Drawing.Size(186, 26);
            this.textBox5.BorderColor           = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
            this.textBox5.BorderStyle           = System.Windows.Forms.BorderStyle.FixedSingle;
            this.textBox5.Cursor                = System.Windows.Forms.Cursors.IBeam;
            this.textBox5.Dock                  = System.Windows.Forms.DockStyle.Bottom;
            this.textBox5.ForeColor             = System.Drawing.Color.FromArgb(((int)(((byte)(68)))), ((int)(((byte)(68)))), ((int)(((byte)(68)))));
            this.textBox5.Metrocolor            = System.Drawing.Color.Gray;
            this.textBox5.Location              = new System.Drawing.Point(0, 307);
            this.textBox5.Multiline             = true;
            this.textBox5.Name                  = "textBox5";
            this.textBox5.Office2007ColorScheme = Syncfusion.Windows.Forms.Office2007Theme.Black;
            this.textBox5.Office2010ColorScheme = Syncfusion.Windows.Forms.Office2010Theme.Black;
            this.textBox5.Size                  = new System.Drawing.Size(1177, 123);
            this.textBox5.Style                 = Syncfusion.Windows.Forms.Tools.TextBoxExt.theme.Office2016Colorful;
            this.textBox5.TabIndex              = 18;
            //
            // textBox4
            //
            this.autoComplete2.SetAutoComplete(this.textBox4, Syncfusion.Windows.Forms.Tools.AutoCompleteModes.MultiSuggestExtended);
            this.textBox4.BackColor             = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
            this.textBox4.BeforeTouchSize       = new System.Drawing.Size(186, 26);
            this.textBox4.BorderColor           = System.Drawing.Color.FromArgb(((int)(((byte)(197)))), ((int)(((byte)(197)))), ((int)(((byte)(197)))));
            this.textBox4.BorderStyle           = System.Windows.Forms.BorderStyle.FixedSingle;
            this.textBox4.Cursor                = System.Windows.Forms.Cursors.IBeam;
            this.textBox4.Font                  = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.textBox4.ForeColor             = System.Drawing.Color.FromArgb(((int)(((byte)(68)))), ((int)(((byte)(68)))), ((int)(((byte)(68)))));
            this.textBox4.Location              = new System.Drawing.Point(241, 204);
            this.textBox4.Metrocolor            = System.Drawing.Color.Gray;
            this.textBox4.Name                  = "textBox4";
            this.textBox4.Office2007ColorScheme = Syncfusion.Windows.Forms.Office2007Theme.Black;
            this.textBox4.Office2010ColorScheme = Syncfusion.Windows.Forms.Office2010Theme.Black;
            this.textBox4.Size                  = new System.Drawing.Size(654, 26);
            this.textBox4.Style                 = Syncfusion.Windows.Forms.Tools.TextBoxExt.theme.Office2016Colorful;
            this.textBox4.TabIndex              = 17;
            //
            // textBox6
            //
            this.textBox6.BackColor             = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
            this.textBox6.BeforeTouchSize       = new System.Drawing.Size(186, 26);
            this.textBox6.BorderColor           = System.Drawing.Color.FromArgb(((int)(((byte)(197)))), ((int)(((byte)(197)))), ((int)(((byte)(197)))));
            this.textBox6.BorderStyle           = System.Windows.Forms.BorderStyle.FixedSingle;
            this.textBox6.Cursor                = System.Windows.Forms.Cursors.IBeam;
            this.textBox6.Font                  = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.textBox6.ForeColor             = System.Drawing.Color.FromArgb(((int)(((byte)(68)))), ((int)(((byte)(68)))), ((int)(((byte)(68)))));
            this.textBox6.Location              = new System.Drawing.Point(241, 244);
            this.textBox6.Metrocolor            = System.Drawing.Color.Gray;
            this.textBox6.Name                  = "textBox6";
            this.textBox6.Office2007ColorScheme = Syncfusion.Windows.Forms.Office2007Theme.Black;
            this.textBox6.Office2010ColorScheme = Syncfusion.Windows.Forms.Office2010Theme.Black;
            this.textBox6.Size                  = new System.Drawing.Size(186, 26);
            this.textBox6.Style                 = Syncfusion.Windows.Forms.Tools.TextBoxExt.theme.Office2016Colorful;
            this.textBox6.TabIndex              = 35;
            this.textBox6.TextChanged          += new System.EventHandler(this.textBox6_TextChanged);
            //
            // imageList2
            //
            this.imageList2.ImageStream      = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList2.ImageStream")));
            this.imageList2.TransparentColor = System.Drawing.Color.Transparent;
            this.imageList2.Images.SetKeyName(0, "");
            this.imageList2.Images.SetKeyName(1, "");
            this.imageList2.Images.SetKeyName(2, "");
            this.imageList2.Images.SetKeyName(3, "");
            //
            // comboBoxAdv2
            //
            this.comboBoxAdv2.BackColor       = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
            this.comboBoxAdv2.BeforeTouchSize = new System.Drawing.Size(187, 27);
            this.comboBoxAdv2.DropDownStyle   = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.comboBoxAdv2.Font            = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.comboBoxAdv2.Items.AddRange(new object[] {
                "MultiSuggest",
                "MultiSuggestExtended"
            });
            this.comboBoxAdv2.Location              = new System.Drawing.Point(241, 168);
            this.comboBoxAdv2.Name                  = "comboBoxAdv2";
            this.comboBoxAdv2.Office2007ColorTheme  = Syncfusion.Windows.Forms.Office2007Theme.Black;
            this.comboBoxAdv2.Office2010ColorTheme  = Syncfusion.Windows.Forms.Office2010Theme.Black;
            this.comboBoxAdv2.Size                  = new System.Drawing.Size(187, 27);
            this.comboBoxAdv2.Style                 = Syncfusion.Windows.Forms.VisualStyle.Office2016Colorful;
            this.comboBoxAdv2.TabIndex              = 13;
            this.comboBoxAdv2.Text                  = "MultiSuggestExtended";
            this.comboBoxAdv2.SelectedIndexChanged += new System.EventHandler(this.comboBoxAdv2_SelectedIndexChanged);
            //
            // label5
            //
            this.label5.AutoSize  = true;
            this.label5.BackColor = System.Drawing.Color.Transparent;
            this.label5.Font      = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(161)));
            this.label5.Location  = new System.Drawing.Point(606, 201);
            this.label5.Name      = "label5";
            this.label5.Size      = new System.Drawing.Size(60, 17);
            this.label5.TabIndex  = 14;
            this.label5.Text      = "TextBox";
            //
            // imageList3
            //
            this.imageList3.ImageStream      = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList3.ImageStream")));
            this.imageList3.TransparentColor = System.Drawing.Color.Transparent;
            this.imageList3.Images.SetKeyName(0, "");
            this.imageList3.Images.SetKeyName(1, "");
            this.imageList3.Images.SetKeyName(2, "");
            this.imageList3.Images.SetKeyName(3, "");

            //
            // autoCompleteDataColumnInfo1
            //
            this.autoCompleteDataColumnInfo1.ColumnHeaderText = "URL";
            this.autoCompleteDataColumnInfo1.ImageColumn      = false;
            this.autoCompleteDataColumnInfo1.MatchingColumn   = true;
            this.autoCompleteDataColumnInfo1.Visible          = true;
            //
            // autoCompleteDataColumnInfo2
            //
            this.autoCompleteDataColumnInfo2.ColumnHeaderText = "Name";
            this.autoCompleteDataColumnInfo2.ImageColumn      = false;
            this.autoCompleteDataColumnInfo2.MatchingColumn   = false;
            this.autoCompleteDataColumnInfo2.Visible          = true;
            //
            // autoCompleteDataColumnInfo3
            //
            this.autoCompleteDataColumnInfo3.ColumnHeaderText = "ImageIndex";
            this.autoCompleteDataColumnInfo3.ImageColumn      = true;
            this.autoCompleteDataColumnInfo3.MatchingColumn   = false;
            this.autoCompleteDataColumnInfo3.Visible          = true;
            //
            //
            // label10
            //
            this.label10.BackColor  = System.Drawing.Color.Transparent;
            this.label10.Font       = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label10.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
            this.label10.Location   = new System.Drawing.Point(6, 4);
            this.label10.Name       = "label10";
            this.label10.Size       = new System.Drawing.Size(222, 30);
            this.label10.TabIndex   = 13;
            this.label10.Text       = "UnBounded DataSource";
            this.label10.TextAlign  = System.Drawing.ContentAlignment.MiddleLeft;
            //
            // label2
            //
            this.label2.BackColor  = System.Drawing.Color.Transparent;
            this.label2.Font       = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label2.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
            this.label2.Location   = new System.Drawing.Point(6, -1);
            this.label2.Name       = "label2";
            this.label2.Size       = new System.Drawing.Size(201, 30);
            this.label2.TabIndex   = 20;
            this.label2.Text       = "Bounded DataSource";
            this.label2.TextAlign  = System.Drawing.ContentAlignment.MiddleLeft;
            //
            // label6
            //
            this.label6.AutoSize  = true;
            this.label6.BackColor = System.Drawing.Color.Transparent;
            this.label6.Font      = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label6.Location  = new System.Drawing.Point(39, 174);
            this.label6.Name      = "label6";
            this.label6.Size      = new System.Drawing.Size(164, 19);
            this.label6.TabIndex  = 21;
            this.label6.Text      = "Set AutoComplete Mode:";
            //
            // gradientPanel1
            //
            this.gradientPanel1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                               | System.Windows.Forms.AnchorStyles.Right)));
            this.gradientPanel1.BorderColor = System.Drawing.Color.Gray;
            this.gradientPanel1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.gradientPanel1.Controls.Add(this.label40);
            this.gradientPanel1.Font     = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.gradientPanel1.Location = new System.Drawing.Point(213, 34);
            this.gradientPanel1.Name     = "gradientPanel1";
            this.gradientPanel1.Size     = new System.Drawing.Size(846, 104);
            this.gradientPanel1.TabIndex = 26;
            //
            // label40
            //
            this.label40.BackColor  = System.Drawing.Color.Transparent;
            this.label40.Dock       = System.Windows.Forms.DockStyle.Fill;
            this.label40.Font       = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label40.ImageAlign = System.Drawing.ContentAlignment.MiddleRight;
            this.label40.Location   = new System.Drawing.Point(0, 0);
            this.label40.Name       = "label40";
            this.label40.Size       = new System.Drawing.Size(844, 102);
            this.label40.TabIndex   = 1;
            this.label40.Text       = resources.GetString("label40.Text");
            this.label40.TextAlign  = System.Drawing.ContentAlignment.MiddleCenter;
            //
            // gradientPanel2
            //
            this.gradientPanel2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                               | System.Windows.Forms.AnchorStyles.Right)));
            this.gradientPanel2.BorderColor = System.Drawing.Color.Gray;
            this.gradientPanel2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.gradientPanel2.Controls.Add(this.label15);
            this.gradientPanel2.Font     = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.gradientPanel2.Location = new System.Drawing.Point(213, 23);
            this.gradientPanel2.Name     = "gradientPanel2";
            this.gradientPanel2.Size     = new System.Drawing.Size(845, 96);
            this.gradientPanel2.TabIndex = 27;
            //
            // label15
            //
            this.label15.BackColor  = System.Drawing.Color.Transparent;
            this.label15.Dock       = System.Windows.Forms.DockStyle.Fill;
            this.label15.ImageAlign = System.Drawing.ContentAlignment.MiddleRight;
            this.label15.Location   = new System.Drawing.Point(0, 0);
            this.label15.Name       = "label15";
            this.label15.Size       = new System.Drawing.Size(843, 94);
            this.label15.TabIndex   = 1;
            this.label15.Text       = "The DataSource for this AutoComplete control is set to an XML Datasource. Enter h" +
                                      " to view the autocomplete. ";
            this.label15.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
            //
            // label4
            //
            this.label4.BackColor  = System.Drawing.Color.Transparent;
            this.label4.Font       = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label4.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
            this.label4.Location   = new System.Drawing.Point(6, 267);
            this.label4.Name       = "label4";
            this.label4.Size       = new System.Drawing.Size(119, 31);
            this.label4.TabIndex   = 28;
            this.label4.Text       = "Event Log";
            this.label4.TextAlign  = System.Drawing.ContentAlignment.MiddleLeft;
            //
            // autoLabel1
            //
            this.autoLabel1.BackColor = System.Drawing.Color.Transparent;
            this.autoLabel1.Font      = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.autoLabel1.Location  = new System.Drawing.Point(43, 248);
            this.autoLabel1.Name      = "autoLabel1";
            this.autoLabel1.Size      = new System.Drawing.Size(163, 19);
            this.autoLabel1.TabIndex  = 34;
            this.autoLabel1.Text      = "Number Of Suggestions :";
            //
            // label9
            //
            this.label9.AutoSize  = true;
            this.label9.BackColor = System.Drawing.Color.Transparent;
            this.label9.Font      = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label9.Location  = new System.Drawing.Point(39, 208);
            this.label9.Name      = "label9";
            this.label9.Size      = new System.Drawing.Size(55, 19);
            this.label9.TabIndex  = 33;
            this.label9.Text      = "TextBox";
            //
            // splitContainerAdv1
            //
            this.splitContainerAdv1.BeforeTouchSize = 1;
            this.splitContainerAdv1.BorderStyle     = System.Windows.Forms.BorderStyle.FixedSingle;
            this.splitContainerAdv1.Dock            = System.Windows.Forms.DockStyle.Fill;
            this.splitContainerAdv1.HotExpandLine   = System.Drawing.Color.FromArgb(((int)(((byte)(150)))), ((int)(((byte)(150)))), ((int)(((byte)(150)))));
            this.splitContainerAdv1.Location        = new System.Drawing.Point(10, 10);
            this.splitContainerAdv1.Name            = "splitContainerAdv1";
            this.splitContainerAdv1.Orientation     = System.Windows.Forms.Orientation.Vertical;
            //
            // splitContainerAdv1.Panel1
            //
            this.splitContainerAdv1.Panel1.BackColor       = System.Drawing.Color.Transparent;
            this.splitContainerAdv1.Panel1.BackgroundColor = new Syncfusion.Drawing.BrushInfo(System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255))))));
            this.splitContainerAdv1.Panel1.Controls.Add(this.label1);
            this.splitContainerAdv1.Panel1.Controls.Add(this.comboBoxAdv3);
            this.splitContainerAdv1.Panel1.Controls.Add(this.label10);
            this.splitContainerAdv1.Panel1.Controls.Add(this.textBox6);
            this.splitContainerAdv1.Panel1.Controls.Add(this.label3);
            this.splitContainerAdv1.Panel1.Controls.Add(this.autoLabel1);
            this.splitContainerAdv1.Panel1.Controls.Add(this.comboBoxAdv1);
            this.splitContainerAdv1.Panel1.Controls.Add(this.textBox1);
            this.splitContainerAdv1.Panel1.Controls.Add(this.label5);
            this.splitContainerAdv1.Panel1.Controls.Add(this.gradientPanel1);
            //
            // splitContainerAdv1.Panel2
            //
            this.splitContainerAdv1.Panel2.BackColor       = System.Drawing.Color.Transparent;
            this.splitContainerAdv1.Panel2.BackgroundColor = new Syncfusion.Drawing.BrushInfo(System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255))))));
            this.splitContainerAdv1.Panel2.Controls.Add(this.label2);
            this.splitContainerAdv1.Panel2.Controls.Add(this.label9);
            this.splitContainerAdv1.Panel2.Controls.Add(this.textBox5);
            this.splitContainerAdv1.Panel2.Controls.Add(this.textBox4);
            this.splitContainerAdv1.Panel2.Controls.Add(this.comboBoxAdv2);
            this.splitContainerAdv1.Panel2.Controls.Add(this.label4);
            this.splitContainerAdv1.Panel2.Controls.Add(this.label6);
            this.splitContainerAdv1.Panel2.Controls.Add(this.gradientPanel2);
            this.splitContainerAdv1.Size             = new System.Drawing.Size(1179, 724);
            this.splitContainerAdv1.SplitterDistance = 291;
            this.splitContainerAdv1.SplitterWidth    = 1;
            this.splitContainerAdv1.Style            = Syncfusion.Windows.Forms.Tools.Enums.Style.Office2016Colorful;
            this.splitContainerAdv1.TabIndex         = 36;
            this.splitContainerAdv1.Text             = "splitContainerAdv1";
            //
            // label1
            //
            this.label1.AutoSize  = true;
            this.label1.BackColor = System.Drawing.Color.Transparent;
            this.label1.Font      = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label1.Location  = new System.Drawing.Point(43, 158);
            this.label1.Name      = "label1";
            this.label1.Size      = new System.Drawing.Size(78, 19);
            this.label1.TabIndex  = 36;
            this.label1.Text      = "Visual Style";
            //
            // comboBoxAdv3
            //
            this.comboBoxAdv3.BackColor       = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
            this.comboBoxAdv3.BeforeTouchSize = new System.Drawing.Size(186, 27);
            this.comboBoxAdv3.DropDownStyle   = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.comboBoxAdv3.Font            = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.comboBoxAdv3.Items.AddRange(new object[] {
                "Office2016Colorful",
                "Office2016White",
                "Office2016Black",
                "Office2016DarkGray",
                "Metro",
                "Default"
            });
            this.comboBoxAdv3.Location              = new System.Drawing.Point(241, 158);
            this.comboBoxAdv3.Name                  = "comboBoxAdv3";
            this.comboBoxAdv3.Office2007ColorTheme  = Syncfusion.Windows.Forms.Office2007Theme.Black;
            this.comboBoxAdv3.Office2010ColorTheme  = Syncfusion.Windows.Forms.Office2010Theme.Black;
            this.comboBoxAdv3.Size                  = new System.Drawing.Size(186, 27);
            this.comboBoxAdv3.Style                 = Syncfusion.Windows.Forms.VisualStyle.Office2016Colorful;
            this.comboBoxAdv3.TabIndex              = 37;
            this.comboBoxAdv3.Text                  = "Metro";
            this.comboBoxAdv3.SelectedIndexChanged += new System.EventHandler(this.comboBoxAdv3_SelectedIndexChanged);
            //
            // autoComplete2
            //
            this.autoComplete2.AdjustHeightToItemCount = false;
            this.autoComplete2.Columns.Add(this.autoCompleteDataColumnInfo1);
            this.autoComplete2.Columns.Add(this.autoCompleteDataColumnInfo2);
            this.autoComplete2.Columns.Add(this.autoCompleteDataColumnInfo3);
            this.autoComplete2.HeaderFont                = new System.Drawing.Font("Segoe UI", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.World);
            this.autoComplete2.ImageList                 = this.imageList3;
            this.autoComplete2.ItemFont                  = new System.Drawing.Font("Segoe UI", 8.25F);
            this.autoComplete2.MetroColor                = System.Drawing.Color.FromArgb(((int)(((byte)(17)))), ((int)(((byte)(158)))), ((int)(((byte)(218)))));
            this.autoComplete2.ParentForm                = this;
            this.autoComplete2.ShowColumnHeader          = true;
            this.autoComplete2.Style                     = Syncfusion.Windows.Forms.Tools.AutoCompleteStyle.Office2016Colorful;
            this.autoComplete2.AutoCompleteItemSelected += new Syncfusion.Windows.Forms.Tools.AutoCompleteItemEventHandler(this.autoComplete_AutoCompleteItemSelected);
            this.autoComplete2.AutoCompleteItemBrowsed  += new Syncfusion.Windows.Forms.Tools.AutoCompleteItemEventHandler(this.autoComplete_AutoCompleteItemBrowsed);
            //
            // skinManager1
            //
            this.skinManager1.Controls    = this;
            this.skinManager1.VisualTheme = Syncfusion.Windows.Forms.VisualTheme.Office2016Colorful;
            //
            // Form1
            //
            this.AutoScaleBaseSize = new System.Drawing.Size(7, 19);
            this.BackColor         = System.Drawing.Color.White;
            this.ClientSize        = new System.Drawing.Size(1199, 744);
            this.Controls.Add(this.splitContainerAdv1);
            this.Font          = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.Icon          = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
            this.MinimumSize   = new System.Drawing.Size(1211, 785);
            this.Name          = "Form1";
            this.Padding       = new System.Windows.Forms.Padding(10);
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
            this.Text          = "Autocomplete Demo";
            this.Load         += new System.EventHandler(this.Form1_Load);
            ((System.ComponentModel.ISupportInitialize)(this.comboBoxAdv1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.textBox1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.autoComplete1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.textBox5)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.textBox4)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.textBox6)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.comboBoxAdv2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gradientPanel1)).EndInit();
            this.gradientPanel1.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.gradientPanel2)).EndInit();
            this.gradientPanel2.ResumeLayout(false);
            this.splitContainerAdv1.Panel1.ResumeLayout(false);
            this.splitContainerAdv1.Panel1.PerformLayout();
            this.splitContainerAdv1.Panel2.ResumeLayout(false);
            this.splitContainerAdv1.Panel2.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.splitContainerAdv1)).EndInit();
            this.splitContainerAdv1.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.comboBoxAdv3)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.autoComplete2)).EndInit();
            this.ResumeLayout(false);
        }
Пример #18
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources        = new System.ComponentModel.ComponentResourceManager(typeof(Form1));
     Syncfusion.Windows.Forms.MetroColorTable       metroColorTable2 = new Syncfusion.Windows.Forms.MetroColorTable();
     this.label1                       = new System.Windows.Forms.Label();
     this.imageList1                   = new System.Windows.Forms.ImageList(this.components);
     this.textBox1                     = new Syncfusion.Windows.Forms.Tools.TextBoxExt();
     this.panel3                       = new System.Windows.Forms.Panel();
     this.splitContainerAdv1           = new Syncfusion.Windows.Forms.Tools.SplitContainerAdv();
     this.label2                       = new System.Windows.Forms.Label();
     this.colorUIControl1              = new Syncfusion.Windows.Forms.ColorUIControl();
     this.panel2                       = new System.Windows.Forms.Panel();
     this.comboBoxAdv1                 = new Syncfusion.Windows.Forms.Tools.ComboBoxAdv();
     this.label4                       = new System.Windows.Forms.Label();
     this.chkUserColorsStretchOnResize = new Syncfusion.Windows.Forms.Tools.CheckBoxAdv();
     this.txtUsersTabName1             = new Syncfusion.Windows.Forms.Tools.TextBoxExt();
     this.label14                      = new System.Windows.Forms.Label();
     this.txtSystemTabName1            = new Syncfusion.Windows.Forms.Tools.TextBoxExt();
     this.txtStandardTabName1          = new Syncfusion.Windows.Forms.Tools.TextBoxExt();
     this.txtCustomTabName1            = new Syncfusion.Windows.Forms.Tools.TextBoxExt();
     this.cmbSelectedColorGroup1       = new Syncfusion.Windows.Forms.Tools.ComboBoxAdv();
     this.label10                      = new System.Windows.Forms.Label();
     this.label11                      = new System.Windows.Forms.Label();
     this.label12                      = new System.Windows.Forms.Label();
     this.label13                      = new System.Windows.Forms.Label();
     this.label3                       = new System.Windows.Forms.Label();
     this.cmbSelectedColorGroup        = new Syncfusion.Windows.Forms.Tools.ComboBoxAdv();
     this.cmbOffice2007Theme           = new Syncfusion.Windows.Forms.Tools.ComboBoxAdv();
     this.panel3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainerAdv1)).BeginInit();
     this.splitContainerAdv1.Panel1.SuspendLayout();
     this.splitContainerAdv1.Panel2.SuspendLayout();
     this.splitContainerAdv1.SuspendLayout();
     this.panel2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.comboBoxAdv1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkUserColorsStretchOnResize)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtUsersTabName1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtSystemTabName1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtStandardTabName1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtCustomTabName1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbSelectedColorGroup1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbSelectedColorGroup)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbOffice2007Theme)).BeginInit();
     this.SuspendLayout();
     //
     // label1
     //
     this.label1.BackColor   = System.Drawing.Color.White;
     this.label1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.label1.Dock        = System.Windows.Forms.DockStyle.Fill;
     this.label1.Font        = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label1.ForeColor   = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
     this.label1.ImageAlign  = System.Drawing.ContentAlignment.BottomRight;
     this.label1.ImageList   = this.imageList1;
     this.label1.Location    = new System.Drawing.Point(0, 0);
     this.label1.Name        = "label1";
     this.label1.Padding     = new System.Windows.Forms.Padding(2);
     this.label1.Size        = new System.Drawing.Size(687, 57);
     this.label1.TabIndex    = 0;
     this.label1.Text        = resources.GetString("label1.Text");
     this.label1.TextAlign   = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // imageList1
     //
     this.imageList1.ImageStream      = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
     this.imageList1.TransparentColor = System.Drawing.Color.Transparent;
     this.imageList1.Images.SetKeyName(0, "");
     //
     // textBox1
     //
     this.textBox1.BackColor   = System.Drawing.Color.White;
     this.textBox1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.textBox1.Cursor      = System.Windows.Forms.Cursors.IBeam;
     this.textBox1.Dock        = System.Windows.Forms.DockStyle.Bottom;
     this.textBox1.Location    = new System.Drawing.Point(20, 421);
     this.textBox1.Multiline   = true;
     this.textBox1.Name        = "textBox1";
     this.textBox1.ReadOnly    = true;
     this.textBox1.ScrollBars  = System.Windows.Forms.ScrollBars.Vertical;
     this.textBox1.Size        = new System.Drawing.Size(687, 116);
     this.textBox1.TabIndex    = 2;
     //
     // panel3
     //
     this.panel3.Controls.Add(this.label1);
     this.panel3.Dock     = System.Windows.Forms.DockStyle.Top;
     this.panel3.Location = new System.Drawing.Point(20, 20);
     this.panel3.Name     = "panel3";
     this.panel3.Size     = new System.Drawing.Size(687, 57);
     this.panel3.TabIndex = 5;
     //
     // splitContainerAdv1
     //
     this.splitContainerAdv1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                             | System.Windows.Forms.AnchorStyles.Left)
                                                                            | System.Windows.Forms.AnchorStyles.Right)));
     this.splitContainerAdv1.BeforeTouchSize = 7;
     this.splitContainerAdv1.BorderStyle     = System.Windows.Forms.BorderStyle.FixedSingle;
     this.splitContainerAdv1.Location        = new System.Drawing.Point(20, 83);
     this.splitContainerAdv1.Name            = "splitContainerAdv1";
     //
     // splitContainerAdv1.Panel1
     //
     this.splitContainerAdv1.Panel1.Controls.Add(this.label2);
     this.splitContainerAdv1.Panel1.Controls.Add(this.colorUIControl1);
     //
     // splitContainerAdv1.Panel2
     //
     this.splitContainerAdv1.Panel2.Controls.Add(this.panel2);
     this.splitContainerAdv1.Size             = new System.Drawing.Size(687, 331);
     this.splitContainerAdv1.SplitterDistance = 348;
     this.splitContainerAdv1.TabIndex         = 6;
     this.splitContainerAdv1.Text             = "splitContainerAdv1";
     //
     // label2
     //
     this.label2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.label2.Font        = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label2.ForeColor   = System.Drawing.Color.Black;
     this.label2.Location    = new System.Drawing.Point(3, 3);
     this.label2.Name        = "label2";
     this.label2.Size        = new System.Drawing.Size(150, 33);
     this.label2.TabIndex    = 24;
     this.label2.Text        = "Sample";
     this.label2.TextAlign   = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // colorUIControl1
     //
     this.colorUIControl1.BeforeTouchSize = new System.Drawing.Size(274, 243);
     this.colorUIControl1.ColorGroups     = ((Syncfusion.Windows.Forms.ColorUIGroups)((((Syncfusion.Windows.Forms.ColorUIGroups.CustomColors | Syncfusion.Windows.Forms.ColorUIGroups.StandardColors)
                                                                                        | Syncfusion.Windows.Forms.ColorUIGroups.SystemColors)
                                                                                       | Syncfusion.Windows.Forms.ColorUIGroups.UserColors)));
     this.colorUIControl1.CustomColorsStretchOnResize = true;
     this.colorUIControl1.Flag                    = false;
     this.colorUIControl1.ForeColor               = System.Drawing.SystemColors.ControlText;
     this.colorUIControl1.Location                = new System.Drawing.Point(32, 57);
     this.colorUIControl1.MetroColor              = System.Drawing.Color.FromArgb(((int)(((byte)(17)))), ((int)(((byte)(158)))), ((int)(((byte)(218)))));
     this.colorUIControl1.MetroForeColor          = System.Drawing.Color.White;
     this.colorUIControl1.Name                    = "colorUIControl1";
     metroColorTable2.ArrowChecked                = System.Drawing.Color.Black;
     metroColorTable2.ArrowCheckedBorderColor     = System.Drawing.Color.Empty;
     metroColorTable2.ArrowInActive               = System.Drawing.Color.White;
     metroColorTable2.ArrowNormal                 = System.Drawing.Color.Gray;
     metroColorTable2.ArrowNormalBackGround       = System.Drawing.Color.Empty;
     metroColorTable2.ArrowNormalBorderColor      = System.Drawing.Color.Empty;
     metroColorTable2.ArrowPushed                 = System.Drawing.Color.Black;
     metroColorTable2.ArrowPushedBackGround       = System.Drawing.Color.Empty;
     metroColorTable2.ArrowPushedBorderColor      = System.Drawing.Color.Empty;
     metroColorTable2.ScrollerBackground          = System.Drawing.Color.White;
     metroColorTable2.ThumbChecked                = System.Drawing.Color.Black;
     metroColorTable2.ThumbCheckedBorderColor     = System.Drawing.Color.Empty;
     metroColorTable2.ThumbInActive               = System.Drawing.Color.White;
     metroColorTable2.ThumbNormal                 = System.Drawing.Color.Gray;
     metroColorTable2.ThumbNormalBorderColor      = System.Drawing.Color.Empty;
     metroColorTable2.ThumbPushed                 = System.Drawing.Color.Black;
     metroColorTable2.ThumbPushedBorder           = System.Drawing.Color.Empty;
     metroColorTable2.ThumbPushedBorderColor      = System.Drawing.Color.Empty;
     this.colorUIControl1.ScrollMetroColorTable   = metroColorTable2;
     this.colorUIControl1.SelectedColor           = System.Drawing.SystemColors.ControlDarkDark;
     this.colorUIControl1.SelectedColorGroup      = Syncfusion.Windows.Forms.ColorUISelectedGroup.CustomColors;
     this.colorUIControl1.ShowUserSelectionColors = true;
     this.colorUIControl1.Size                    = new System.Drawing.Size(274, 243);
     this.colorUIControl1.TabIndex                = 0;
     this.colorUIControl1.Text                    = "colorUIControl1";
     this.colorUIControl1.VisualStyle             = Syncfusion.Windows.Forms.ColorUIStyle.Metro;
     this.colorUIControl1.ColorSelected          += new System.EventHandler(this.colorUIControl1_ColorSelected);
     //
     // panel2
     //
     this.panel2.Controls.Add(this.comboBoxAdv1);
     this.panel2.Controls.Add(this.label4);
     this.panel2.Controls.Add(this.chkUserColorsStretchOnResize);
     this.panel2.Controls.Add(this.txtUsersTabName1);
     this.panel2.Controls.Add(this.label14);
     this.panel2.Controls.Add(this.txtSystemTabName1);
     this.panel2.Controls.Add(this.txtStandardTabName1);
     this.panel2.Controls.Add(this.txtCustomTabName1);
     this.panel2.Controls.Add(this.cmbSelectedColorGroup1);
     this.panel2.Controls.Add(this.label10);
     this.panel2.Controls.Add(this.label11);
     this.panel2.Controls.Add(this.label12);
     this.panel2.Controls.Add(this.label13);
     this.panel2.Controls.Add(this.label3);
     this.panel2.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.panel2.Location = new System.Drawing.Point(0, 0);
     this.panel2.Name     = "panel2";
     this.panel2.Size     = new System.Drawing.Size(330, 329);
     this.panel2.TabIndex = 2;
     //
     // comboBoxAdv1
     //
     this.comboBoxAdv1.BackColor       = System.Drawing.Color.White;
     this.comboBoxAdv1.BeforeTouchSize = new System.Drawing.Size(121, 21);
     this.comboBoxAdv1.DropDownStyle   = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.comboBoxAdv1.Font            = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.comboBoxAdv1.Items.AddRange(new object[] {
         "Default",
         "Office2010",
         "Metro",
         "Office2016Colorful",
         "Office2016DarkGray",
         "Office2016Black",
         "Office2016White"
     });
     this.comboBoxAdv1.Location              = new System.Drawing.Point(176, 252);
     this.comboBoxAdv1.Name                  = "comboBoxAdv1";
     this.comboBoxAdv1.Size                  = new System.Drawing.Size(121, 21);
     this.comboBoxAdv1.Style                 = Syncfusion.Windows.Forms.VisualStyle.Metro;
     this.comboBoxAdv1.TabIndex              = 25;
     this.comboBoxAdv1.Text                  = "Default";
     this.comboBoxAdv1.SelectedIndexChanged += new System.EventHandler(this.comboBoxAdv1_SelectedIndexChanged);
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.Location = new System.Drawing.Point(48, 252);
     this.label4.Name     = "label4";
     this.label4.Size     = new System.Drawing.Size(65, 13);
     this.label4.TabIndex = 24;
     this.label4.Text     = "Visual Style";
     //
     // chkUserColorsStretchOnResize
     //
     this.chkUserColorsStretchOnResize.BeforeTouchSize    = new System.Drawing.Size(150, 21);
     this.chkUserColorsStretchOnResize.DrawFocusRectangle = false;
     this.chkUserColorsStretchOnResize.Location           = new System.Drawing.Point(69, 291);
     this.chkUserColorsStretchOnResize.MetroColor         = System.Drawing.Color.Gray;
     this.chkUserColorsStretchOnResize.Name            = "chkUserColorsStretchOnResize";
     this.chkUserColorsStretchOnResize.Size            = new System.Drawing.Size(227, 24);
     this.chkUserColorsStretchOnResize.Style           = Syncfusion.Windows.Forms.Tools.CheckBoxAdvStyle.Metro;
     this.chkUserColorsStretchOnResize.TabIndex        = 23;
     this.chkUserColorsStretchOnResize.Text            = "User Color Stretch On Resize";
     this.chkUserColorsStretchOnResize.ThemesEnabled   = false;
     this.chkUserColorsStretchOnResize.CheckedChanged += new System.EventHandler(this.checkBox1_CheckedChanged);
     //
     // txtUsersTabName1
     //
     this.txtUsersTabName1.BeforeTouchSize = new System.Drawing.Size(120, 22);
     this.txtUsersTabName1.BorderColor     = System.Drawing.Color.Gray;
     this.txtUsersTabName1.BorderStyle     = System.Windows.Forms.BorderStyle.FixedSingle;
     this.txtUsersTabName1.Cursor          = System.Windows.Forms.Cursors.IBeam;
     this.txtUsersTabName1.Location        = new System.Drawing.Point(176, 188);
     this.txtUsersTabName1.Metrocolor      = System.Drawing.Color.Gray;
     this.txtUsersTabName1.Name            = "txtUsersTabName1";
     this.txtUsersTabName1.Size            = new System.Drawing.Size(120, 22);
     this.txtUsersTabName1.Style           = Syncfusion.Windows.Forms.Tools.TextBoxExt.theme.Metro;
     this.txtUsersTabName1.TabIndex        = 22;
     this.txtUsersTabName1.Text            = "User Colors";
     this.txtUsersTabName1.KeyDown        += new System.Windows.Forms.KeyEventHandler(this.txtUsersTabName1_KeyDown);
     //
     // label14
     //
     this.label14.AutoSize = true;
     this.label14.Location = new System.Drawing.Point(48, 188);
     this.label14.Name     = "label14";
     this.label14.Size     = new System.Drawing.Size(87, 13);
     this.label14.TabIndex = 21;
     this.label14.Text     = "Users Tab Name";
     //
     // txtSystemTabName1
     //
     this.txtSystemTabName1.BeforeTouchSize = new System.Drawing.Size(120, 22);
     this.txtSystemTabName1.BorderColor     = System.Drawing.Color.Gray;
     this.txtSystemTabName1.BorderStyle     = System.Windows.Forms.BorderStyle.FixedSingle;
     this.txtSystemTabName1.Cursor          = System.Windows.Forms.Cursors.IBeam;
     this.txtSystemTabName1.Location        = new System.Drawing.Point(176, 156);
     this.txtSystemTabName1.Metrocolor      = System.Drawing.Color.Gray;
     this.txtSystemTabName1.Name            = "txtSystemTabName1";
     this.txtSystemTabName1.Size            = new System.Drawing.Size(120, 22);
     this.txtSystemTabName1.Style           = Syncfusion.Windows.Forms.Tools.TextBoxExt.theme.Metro;
     this.txtSystemTabName1.TabIndex        = 20;
     this.txtSystemTabName1.Text            = "System";
     this.txtSystemTabName1.KeyDown        += new System.Windows.Forms.KeyEventHandler(this.txtSystemTabName1_KeyDown);
     //
     // txtStandardTabName1
     //
     this.txtStandardTabName1.BeforeTouchSize = new System.Drawing.Size(120, 22);
     this.txtStandardTabName1.BorderColor     = System.Drawing.Color.Gray;
     this.txtStandardTabName1.BorderStyle     = System.Windows.Forms.BorderStyle.FixedSingle;
     this.txtStandardTabName1.Cursor          = System.Windows.Forms.Cursors.IBeam;
     this.txtStandardTabName1.Location        = new System.Drawing.Point(176, 124);
     this.txtStandardTabName1.Metrocolor      = System.Drawing.Color.Gray;
     this.txtStandardTabName1.Name            = "txtStandardTabName1";
     this.txtStandardTabName1.Size            = new System.Drawing.Size(120, 22);
     this.txtStandardTabName1.Style           = Syncfusion.Windows.Forms.Tools.TextBoxExt.theme.Metro;
     this.txtStandardTabName1.TabIndex        = 19;
     this.txtStandardTabName1.Text            = "Web";
     this.txtStandardTabName1.KeyDown        += new System.Windows.Forms.KeyEventHandler(this.txtStandardTabName1_KeyDown);
     //
     // txtCustomTabName1
     //
     this.txtCustomTabName1.BeforeTouchSize = new System.Drawing.Size(120, 22);
     this.txtCustomTabName1.BorderColor     = System.Drawing.Color.Gray;
     this.txtCustomTabName1.BorderStyle     = System.Windows.Forms.BorderStyle.FixedSingle;
     this.txtCustomTabName1.Cursor          = System.Windows.Forms.Cursors.IBeam;
     this.txtCustomTabName1.Location        = new System.Drawing.Point(176, 92);
     this.txtCustomTabName1.Metrocolor      = System.Drawing.Color.Gray;
     this.txtCustomTabName1.Name            = "txtCustomTabName1";
     this.txtCustomTabName1.Size            = new System.Drawing.Size(120, 22);
     this.txtCustomTabName1.Style           = Syncfusion.Windows.Forms.Tools.TextBoxExt.theme.Metro;
     this.txtCustomTabName1.TabIndex        = 18;
     this.txtCustomTabName1.Text            = "Palette";
     this.txtCustomTabName1.KeyDown        += new System.Windows.Forms.KeyEventHandler(this.txtCustomTabName1_KeyDown);
     //
     // cmbSelectedColorGroup1
     //
     this.cmbSelectedColorGroup1.BackColor       = System.Drawing.Color.White;
     this.cmbSelectedColorGroup1.BeforeTouchSize = new System.Drawing.Size(121, 21);
     this.cmbSelectedColorGroup1.DropDownStyle   = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cmbSelectedColorGroup1.Font            = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.cmbSelectedColorGroup1.Items.AddRange(new object[] {
         "None",
         "CustomColors",
         "StandardColors",
         "SystemColors",
         "UserColors"
     });
     this.cmbSelectedColorGroup1.Location              = new System.Drawing.Point(176, 220);
     this.cmbSelectedColorGroup1.Name                  = "cmbSelectedColorGroup1";
     this.cmbSelectedColorGroup1.Size                  = new System.Drawing.Size(121, 21);
     this.cmbSelectedColorGroup1.Style                 = Syncfusion.Windows.Forms.VisualStyle.Metro;
     this.cmbSelectedColorGroup1.TabIndex              = 17;
     this.cmbSelectedColorGroup1.Text                  = "None";
     this.cmbSelectedColorGroup1.SelectedIndexChanged += new System.EventHandler(this.cmbSelectedColorGroup1_SelectedIndexChanged);
     //
     // label10
     //
     this.label10.AutoSize = true;
     this.label10.Location = new System.Drawing.Point(48, 220);
     this.label10.Name     = "label10";
     this.label10.Size     = new System.Drawing.Size(117, 13);
     this.label10.TabIndex = 16;
     this.label10.Text     = "Selected Color Group";
     //
     // label11
     //
     this.label11.AutoSize = true;
     this.label11.Location = new System.Drawing.Point(48, 156);
     this.label11.Name     = "label11";
     this.label11.Size     = new System.Drawing.Size(94, 13);
     this.label11.TabIndex = 15;
     this.label11.Text     = "System Tab Name";
     //
     // label12
     //
     this.label12.AutoSize = true;
     this.label12.Location = new System.Drawing.Point(48, 124);
     this.label12.Name     = "label12";
     this.label12.Size     = new System.Drawing.Size(106, 13);
     this.label12.TabIndex = 14;
     this.label12.Text     = "Standard Tab Name";
     //
     // label13
     //
     this.label13.AutoSize = true;
     this.label13.Location = new System.Drawing.Point(48, 92);
     this.label13.Name     = "label13";
     this.label13.Size     = new System.Drawing.Size(98, 13);
     this.label13.TabIndex = 13;
     this.label13.Text     = "Custom Tab Name";
     //
     // label3
     //
     this.label3.Font      = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label3.ForeColor = System.Drawing.Color.Black;
     this.label3.Location  = new System.Drawing.Point(3, 3);
     this.label3.Name      = "label3";
     this.label3.Size      = new System.Drawing.Size(150, 32);
     this.label3.TabIndex  = 0;
     this.label3.Text      = "Essential Properties";
     this.label3.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // cmbSelectedColorGroup
     //
     this.cmbSelectedColorGroup.BackColor       = System.Drawing.Color.FromArgb(((int)(((byte)(234)))), ((int)(((byte)(242)))), ((int)(((byte)(251)))));
     this.cmbSelectedColorGroup.BeforeTouchSize = new System.Drawing.Size(121, 21);
     this.cmbSelectedColorGroup.Font            = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.cmbSelectedColorGroup.Location        = new System.Drawing.Point(164, 251);
     this.cmbSelectedColorGroup.Name            = "cmbSelectedColorGroup";
     this.cmbSelectedColorGroup.Size            = new System.Drawing.Size(121, 21);
     this.cmbSelectedColorGroup.Style           = Syncfusion.Windows.Forms.VisualStyle.Office2007;
     this.cmbSelectedColorGroup.TabIndex        = 9;
     //
     // cmbOffice2007Theme
     //
     this.cmbOffice2007Theme.BackColor       = System.Drawing.Color.FromArgb(((int)(((byte)(234)))), ((int)(((byte)(242)))), ((int)(((byte)(251)))));
     this.cmbOffice2007Theme.BeforeTouchSize = new System.Drawing.Size(98, 21);
     this.cmbOffice2007Theme.DropDownStyle   = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cmbOffice2007Theme.Font            = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.cmbOffice2007Theme.Location        = new System.Drawing.Point(164, 150);
     this.cmbOffice2007Theme.Name            = "cmbOffice2007Theme";
     this.cmbOffice2007Theme.Size            = new System.Drawing.Size(98, 21);
     this.cmbOffice2007Theme.Style           = Syncfusion.Windows.Forms.VisualStyle.Office2007;
     this.cmbOffice2007Theme.TabIndex        = 7;
     //
     // Form1
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 15);
     this.BackColor         = System.Drawing.Color.White;
     this.BorderColor       = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(161)))), ((int)(((byte)(226)))));
     this.ClientSize        = new System.Drawing.Size(727, 557);
     this.Controls.Add(this.splitContainerAdv1);
     this.Controls.Add(this.panel3);
     this.Controls.Add(this.textBox1);
     this.DropShadow    = true;
     this.Font          = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Icon          = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MinimumSize   = new System.Drawing.Size(739, 593);
     this.Name          = "Form1";
     this.Padding       = new System.Windows.Forms.Padding(20);
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text          = "Color UI Controls";
     this.Load         += new System.EventHandler(this.Form1_Load);
     this.panel3.ResumeLayout(false);
     this.splitContainerAdv1.Panel1.ResumeLayout(false);
     this.splitContainerAdv1.Panel2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.splitContainerAdv1)).EndInit();
     this.splitContainerAdv1.ResumeLayout(false);
     this.panel2.ResumeLayout(false);
     this.panel2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.comboBoxAdv1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkUserColorsStretchOnResize)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtUsersTabName1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtSystemTabName1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtStandardTabName1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtCustomTabName1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbSelectedColorGroup1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbSelectedColorGroup)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbOffice2007Theme)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Пример #19
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1));
     this.autoComplete1 = new Syncfusion.Windows.Forms.Tools.AutoComplete(this.components);
     this.autoCompleteDataColumnInfo1 = new Syncfusion.Windows.Forms.Tools.AutoCompleteDataColumnInfo("Flag", 100, true);
     this.autoCompleteDataColumnInfo2 = new Syncfusion.Windows.Forms.Tools.AutoCompleteDataColumnInfo("Country", 100, true);
     this.imageList       = new System.Windows.Forms.ImageList(this.components);
     this.textBox1        = new Syncfusion.Windows.Forms.Tools.TextBoxExt();
     this.panel1          = new AutoCompleteDemo.Panels();
     this.groupBox1       = new System.Windows.Forms.Panel();
     this.radioButton2    = new Syncfusion.Windows.Forms.Tools.RadioButtonAdv();
     this.radioButtonAdv1 = new Syncfusion.Windows.Forms.Tools.RadioButtonAdv();
     this.radioButton6    = new Syncfusion.Windows.Forms.Tools.RadioButtonAdv();
     this.radioButton5    = new Syncfusion.Windows.Forms.Tools.RadioButtonAdv();
     this.radioButton4    = new Syncfusion.Windows.Forms.Tools.RadioButtonAdv();
     this.radioButton3    = new Syncfusion.Windows.Forms.Tools.RadioButtonAdv();
     this.radioButton1    = new Syncfusion.Windows.Forms.Tools.RadioButtonAdv();
     this.panel2          = new AutoCompleteDemo.Panels();
     this.label2          = new System.Windows.Forms.Label();
     ((System.ComponentModel.ISupportInitialize)(this.autoComplete1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.textBox1)).BeginInit();
     this.panel1.SuspendLayout();
     this.groupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.radioButton2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radioButtonAdv1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radioButton6)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radioButton5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radioButton4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radioButton3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radioButton1)).BeginInit();
     this.panel2.SuspendLayout();
     this.SuspendLayout();
     //
     // autoComplete1
     //
     this.autoComplete1.AdjustHeightToItemCount = false;
     this.autoComplete1.Columns.Add(this.autoCompleteDataColumnInfo1);
     this.autoComplete1.Columns.Add(this.autoCompleteDataColumnInfo2);
     this.autoComplete1.HeaderFont = new System.Drawing.Font("Segoe UI", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.World);
     this.autoComplete1.ImageList  = this.imageList;
     this.autoComplete1.ItemFont   = new System.Drawing.Font("Segoe UI", 8.25F);
     this.autoComplete1.MetroColor = System.Drawing.Color.FromArgb(((int)(((byte)(17)))), ((int)(((byte)(158)))), ((int)(((byte)(218)))));
     this.autoComplete1.ParentForm = this;
     this.autoComplete1.Style      = Syncfusion.Windows.Forms.Tools.AutoCompleteStyle.Default;
     this.autoComplete1.ThemeName  = "Office2019Colorful";
     //
     // autoCompleteDataColumnInfo1
     //
     this.autoCompleteDataColumnInfo1.ColumnHeaderText = "Flag";
     this.autoCompleteDataColumnInfo1.ImageColumn      = false;
     this.autoCompleteDataColumnInfo1.MatchingColumn   = false;
     this.autoCompleteDataColumnInfo1.Visible          = true;
     //
     // autoCompleteDataColumnInfo2
     //
     this.autoCompleteDataColumnInfo2.ColumnHeaderText = "Country";
     this.autoCompleteDataColumnInfo2.ImageColumn      = true;
     this.autoCompleteDataColumnInfo2.MatchingColumn   = false;
     this.autoCompleteDataColumnInfo2.Visible          = true;
     //
     // imageList
     //
     this.imageList.ColorDepth       = System.Windows.Forms.ColorDepth.Depth8Bit;
     this.imageList.ImageSize        = new System.Drawing.Size(16, 16);
     this.imageList.TransparentColor = System.Drawing.Color.Transparent;
     //
     // textBox1
     //
     this.autoComplete1.SetAutoComplete(this.textBox1, Syncfusion.Windows.Forms.Tools.AutoCompleteModes.MultiSuggestExtended);
     this.textBox1.BackColor       = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     this.textBox1.BeforeTouchSize = new System.Drawing.Size(270, 29);
     this.textBox1.BorderColor     = System.Drawing.Color.FromArgb(((int)(((byte)(197)))), ((int)(((byte)(197)))), ((int)(((byte)(197)))));
     this.textBox1.BorderStyle     = System.Windows.Forms.BorderStyle.FixedSingle;
     this.textBox1.Cursor          = System.Windows.Forms.Cursors.IBeam;
     this.textBox1.Font            = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.textBox1.ForeColor       = System.Drawing.Color.FromArgb(((int)(((byte)(68)))), ((int)(((byte)(68)))), ((int)(((byte)(68)))));
     this.textBox1.Location        = new System.Drawing.Point(303, 227);
     this.textBox1.Metrocolor      = System.Drawing.Color.Gray;
     this.textBox1.Name            = "textBox1";
     this.textBox1.Size            = new System.Drawing.Size(270, 29);
     this.textBox1.Style           = Syncfusion.Windows.Forms.Tools.TextBoxExt.theme.Office2016Colorful;
     this.textBox1.TabIndex        = 2;
     this.textBox1.ThemeName       = "Office2019Colorful";
     //
     // panel1
     //
     this.panel1.Controls.Add(this.groupBox1);
     this.panel1.Dock     = DockStyle.Right;
     this.panel1.Location = new System.Drawing.Point(762, 12);
     this.panel1.Name     = "panel1";
     this.panel1.Size     = new System.Drawing.Size(387, 655);
     this.panel1.TabIndex = 1;
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.radioButton2);
     this.groupBox1.Controls.Add(this.radioButtonAdv1);
     this.groupBox1.Controls.Add(this.radioButton6);
     this.groupBox1.Controls.Add(this.radioButton5);
     this.groupBox1.Controls.Add(this.radioButton4);
     this.groupBox1.Controls.Add(this.radioButton3);
     this.groupBox1.Controls.Add(this.radioButton1);
     this.groupBox1.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(68)))), ((int)(((byte)(68)))), ((int)(((byte)(68)))));
     this.groupBox1.Location  = new System.Drawing.Point(42, 57);
     this.groupBox1.Name      = "groupBox1";
     this.groupBox1.Size      = new System.Drawing.Size(295, 391);
     this.groupBox1.TabIndex  = 4;
     this.groupBox1.Text      = "Visual Styles";
     //
     // radioButton2
     //
     this.radioButton2.BeforeTouchSize   = new System.Drawing.Size(164, 23);
     this.radioButton2.ImageCheckBoxSize = new System.Drawing.Size(20, 20);
     this.radioButton2.Location          = new System.Drawing.Point(13, 88);
     this.radioButton2.MetroColor        = System.Drawing.Color.FromArgb(((int)(((byte)(88)))), ((int)(((byte)(89)))), ((int)(((byte)(91)))));
     this.radioButton2.Name      = "radioButton2";
     this.radioButton2.Size      = new System.Drawing.Size(150, 21);
     this.radioButton2.TabIndex  = 1;
     this.radioButton2.TabStop   = false;
     this.radioButton2.ThemeName = "Office2019Colorful";
     //
     // radioButtonAdv1
     //
     this.radioButtonAdv1.BeforeTouchSize   = new System.Drawing.Size(72, 23);
     this.radioButtonAdv1.ImageCheckBoxSize = new System.Drawing.Size(20, 20);
     this.radioButtonAdv1.Location          = new System.Drawing.Point(13, 340);
     this.radioButtonAdv1.MetroColor        = System.Drawing.Color.FromArgb(((int)(((byte)(88)))), ((int)(((byte)(89)))), ((int)(((byte)(91)))));
     this.radioButtonAdv1.Name      = "radioButtonAdv1";
     this.radioButtonAdv1.Size      = new System.Drawing.Size(72, 23);
     this.radioButtonAdv1.TabIndex  = 6;
     this.radioButtonAdv1.TabStop   = false;
     this.radioButtonAdv1.ThemeName = "Office2019Colorful";
     //
     // radioButton6
     //
     this.radioButton6.BeforeTouchSize   = new System.Drawing.Size(177, 23);
     this.radioButton6.ImageCheckBoxSize = new System.Drawing.Size(20, 20);
     this.radioButton6.Location          = new System.Drawing.Point(13, 291);
     this.radioButton6.MetroColor        = System.Drawing.Color.FromArgb(((int)(((byte)(88)))), ((int)(((byte)(89)))), ((int)(((byte)(91)))));
     this.radioButton6.Name      = "radioButton6";
     this.radioButton6.Size      = new System.Drawing.Size(177, 23);
     this.radioButton6.TabIndex  = 5;
     this.radioButton6.TabStop   = false;
     this.radioButton6.ThemeName = "Office2019Colorful";
     //
     // radioButton5
     //
     this.radioButton5.BeforeTouchSize   = new System.Drawing.Size(148, 23);
     this.radioButton5.ImageCheckBoxSize = new System.Drawing.Size(20, 20);
     this.radioButton5.Location          = new System.Drawing.Point(13, 242);
     this.radioButton5.MetroColor        = System.Drawing.Color.FromArgb(((int)(((byte)(88)))), ((int)(((byte)(89)))), ((int)(((byte)(91)))));
     this.radioButton5.Name      = "radioButton5";
     this.radioButton5.Size      = new System.Drawing.Size(148, 23);
     this.radioButton5.TabIndex  = 4;
     this.radioButton5.TabStop   = false;
     this.radioButton5.ThemeName = "Office2019Colorful";
     //
     // radioButton4
     //
     this.radioButton4.BeforeTouchSize   = new System.Drawing.Size(150, 23);
     this.radioButton4.ImageCheckBoxSize = new System.Drawing.Size(20, 20);
     this.radioButton4.Location          = new System.Drawing.Point(13, 193);
     this.radioButton4.MetroColor        = System.Drawing.Color.FromArgb(((int)(((byte)(88)))), ((int)(((byte)(89)))), ((int)(((byte)(91)))));
     this.radioButton4.Name      = "radioButton4";
     this.radioButton4.Size      = new System.Drawing.Size(150, 23);
     this.radioButton4.TabIndex  = 3;
     this.radioButton4.TabStop   = false;
     this.radioButton4.ThemeName = "Office2019Colorful";
     //
     // radioButton3
     //
     this.radioButton3.BeforeTouchSize   = new System.Drawing.Size(163, 23);
     this.radioButton3.ImageCheckBoxSize = new System.Drawing.Size(20, 20);
     this.radioButton3.Location          = new System.Drawing.Point(13, 140);
     this.radioButton3.MetroColor        = System.Drawing.Color.FromArgb(((int)(((byte)(88)))), ((int)(((byte)(89)))), ((int)(((byte)(91)))));
     this.radioButton3.Name      = "radioButton3";
     this.radioButton3.Size      = new System.Drawing.Size(163, 23);
     this.radioButton3.TabIndex  = 2;
     this.radioButton3.TabStop   = false;
     this.radioButton3.ThemeName = "Office2019Colorful";
     //
     // radioButton1
     //
     this.radioButton1.BeforeTouchSize   = new System.Drawing.Size(163, 23);
     this.radioButton1.Checked           = true;
     this.radioButton1.ImageCheckBoxSize = new System.Drawing.Size(20, 20);
     this.radioButton1.Location          = new System.Drawing.Point(13, 40);
     this.radioButton1.MetroColor        = System.Drawing.Color.FromArgb(((int)(((byte)(88)))), ((int)(((byte)(89)))), ((int)(((byte)(91)))));
     this.radioButton1.Name      = "radioButton1";
     this.radioButton1.Size      = new System.Drawing.Size(163, 23);
     this.radioButton1.TabIndex  = 0;
     this.radioButton1.ThemeName = "Office2019Colorful";
     //
     // panel2
     //
     this.panel2.Controls.Add(this.label2);
     this.panel2.Controls.Add(this.textBox1);
     this.panel2.Dock     = DockStyle.Left;
     this.panel2.Location = new System.Drawing.Point(1, 12);
     this.panel2.Name     = "panel2";
     this.panel2.Size     = new System.Drawing.Size(755, 655);
     this.panel2.TabIndex = 0;
     //
     // label2
     //
     this.label2.AutoSize  = true;
     this.label2.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(68)))), ((int)(((byte)(68)))), ((int)(((byte)(68)))));
     this.label2.Location  = new System.Drawing.Point(104, 227);
     this.label2.Name      = "label2";
     this.label2.Size      = new System.Drawing.Size(160, 20);
     this.label2.TabIndex  = 3;
     this.label2.Text      = "Enter country name : ";
     //
     // Form1
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 20F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.CaptionAlign        = System.Windows.Forms.HorizontalAlignment.Left;
     this.ClientSize          = new System.Drawing.Size(1150, 617);
     this.Controls.Add(this.panel1);
     this.Controls.Add(this.panel2);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     this.Icon            = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Name            = "Form1";
     this.ShowMaximizeBox = false;
     this.ShowMinimizeBox = false;
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text            = "Getting Started";
     ((System.ComponentModel.ISupportInitialize)(this.autoComplete1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.textBox1)).EndInit();
     this.panel1.ResumeLayout(false);
     this.groupBox1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.radioButton2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radioButtonAdv1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radioButton6)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radioButton5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radioButton4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radioButton3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radioButton1)).EndInit();
     this.panel2.ResumeLayout(false);
     this.panel2.PerformLayout();
     this.ResumeLayout(false);
 }
Пример #20
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager          resources   = new System.ComponentModel.ComponentResourceManager(typeof(Form1));
     Syncfusion.Windows.Forms.Tools.CaptionButtonsCollection ccbtextBox1 = new Syncfusion.Windows.Forms.Tools.CaptionButtonsCollection();
     Syncfusion.Windows.Forms.MetroColorTable metroColorTable1           = new Syncfusion.Windows.Forms.MetroColorTable();
     this.dockingManager1      = new Syncfusion.Windows.Forms.Tools.DockingManager(this.components);
     this.textBox1             = new Syncfusion.Windows.Forms.Tools.TextBoxExt();
     this.mainFrameBarManager1 = new Syncfusion.Windows.Forms.Tools.XPMenus.MainFrameBarManager(this);
     this.bar1                   = new Syncfusion.Windows.Forms.Tools.XPMenus.Bar(this.mainFrameBarManager1, "Hauptmenu");
     this.parentBarItem3         = new Syncfusion.Windows.Forms.Tools.XPMenus.ParentBarItem();
     this.barItem1               = new Syncfusion.Windows.Forms.Tools.XPMenus.BarItem();
     this.barItem2               = new Syncfusion.Windows.Forms.Tools.XPMenus.BarItem();
     this.barItem3               = new Syncfusion.Windows.Forms.Tools.XPMenus.BarItem();
     this.barItem10              = new Syncfusion.Windows.Forms.Tools.XPMenus.BarItem();
     this.barItem4               = new Syncfusion.Windows.Forms.Tools.XPMenus.BarItem();
     this.parentBarItem4         = new Syncfusion.Windows.Forms.Tools.XPMenus.ParentBarItem();
     this.barItem5               = new Syncfusion.Windows.Forms.Tools.XPMenus.BarItem();
     this.barItem6               = new Syncfusion.Windows.Forms.Tools.XPMenus.BarItem();
     this.barItem7               = new Syncfusion.Windows.Forms.Tools.XPMenus.BarItem();
     this.dropDownBarItem1       = new Syncfusion.Windows.Forms.Tools.XPMenus.DropDownBarItem();
     this.popupControlContainer1 = new Syncfusion.Windows.Forms.PopupControlContainer();
     this.colorUIControl1        = new Syncfusion.Windows.Forms.ColorUIControl();
     this.barItem8               = new Syncfusion.Windows.Forms.Tools.XPMenus.BarItem();
     this.parentBarItem5         = new Syncfusion.Windows.Forms.Tools.XPMenus.ParentBarItem();
     this.barItem9               = new Syncfusion.Windows.Forms.Tools.XPMenus.BarItem();
     this.windowItem             = new Syncfusion.Windows.Forms.Tools.XPMenus.ParentBarItem();
     this.mdiListBarItem1        = new Syncfusion.Windows.Forms.Tools.XPMenus.MdiListBarItem();
     this.bar2                   = new Syncfusion.Windows.Forms.Tools.XPMenus.Bar(this.mainFrameBarManager1, "Standard");
     this.menuList               = new System.Windows.Forms.ImageList(this.components);
     this.parentBarItem1         = new Syncfusion.Windows.Forms.Tools.XPMenus.ParentBarItem();
     this.parentBarItem2         = new Syncfusion.Windows.Forms.Tools.XPMenus.ParentBarItem();
     ((System.ComponentModel.ISupportInitialize)(this.dockingManager1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.textBox1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.mainFrameBarManager1)).BeginInit();
     this.popupControlContainer1.SuspendLayout();
     this.SuspendLayout();
     //
     // dockingManager1
     //
     this.dockingManager1.ActiveCaptionFont         = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.World);
     this.dockingManager1.DockLayoutStream          = ((System.IO.MemoryStream)(resources.GetObject("dockingManager1.DockLayoutStream")));
     this.dockingManager1.EnableAutoAdjustCaption   = true;
     this.dockingManager1.HostControl               = this;
     this.dockingManager1.InActiveCaptionBackground = new Syncfusion.Drawing.BrushInfo(System.Drawing.Color.FromArgb(((int)(((byte)(209)))), ((int)(((byte)(211)))), ((int)(((byte)(212))))));
     this.dockingManager1.InActiveCaptionFont       = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.World);
     this.dockingManager1.MetroButtonColor          = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     this.dockingManager1.MetroColor             = System.Drawing.Color.FromArgb(((int)(((byte)(17)))), ((int)(((byte)(158)))), ((int)(((byte)(218)))));
     this.dockingManager1.MetroSplitterBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(155)))), ((int)(((byte)(159)))), ((int)(((byte)(183)))));
     this.dockingManager1.ReduceFlickeringInRtl  = false;
     this.dockingManager1.VisualStyle            = Syncfusion.Windows.Forms.VisualStyle.Metro;
     this.dockingManager1.CaptionButtons.Add(new Syncfusion.Windows.Forms.Tools.CaptionButton(Syncfusion.Windows.Forms.Tools.CaptionButtonType.Close, "CloseButton"));
     this.dockingManager1.CaptionButtons.Add(new Syncfusion.Windows.Forms.Tools.CaptionButton(Syncfusion.Windows.Forms.Tools.CaptionButtonType.Pin, "PinButton"));
     this.dockingManager1.CaptionButtons.Add(new Syncfusion.Windows.Forms.Tools.CaptionButton(Syncfusion.Windows.Forms.Tools.CaptionButtonType.Menu, "MenuButton"));
     this.dockingManager1.CaptionButtons.Add(new Syncfusion.Windows.Forms.Tools.CaptionButton(Syncfusion.Windows.Forms.Tools.CaptionButtonType.Maximize, "MaximizeButton"));
     this.dockingManager1.SetDockLabel(this.textBox1, "Lokalisation");
     this.dockingManager1.SetEnableDocking(this.textBox1, true);
     ccbtextBox1.MergeWith(this.dockingManager1.CaptionButtons, false);
     this.dockingManager1.SetCustomCaptionButtons(this.textBox1, ccbtextBox1);
     //
     // textBox1
     //
     this.textBox1.BeforeTouchSize = new System.Drawing.Size(686, 124);
     this.textBox1.Location        = new System.Drawing.Point(1, 24);
     this.textBox1.Metrocolor      = System.Drawing.Color.Empty;
     this.textBox1.Multiline       = true;
     this.textBox1.Name            = "textBox1";
     this.textBox1.Size            = new System.Drawing.Size(686, 124);
     this.textBox1.Style           = Syncfusion.Windows.Forms.Tools.TextBoxExt.theme.Default;
     this.textBox1.TabIndex        = 5;
     this.textBox1.Text            = "This Sample shows the Localization of Syncfusion Menus, Docking Manager" +
                                     " and ColorUIPicker.";
     //
     // mainFrameBarManager1
     //
     this.mainFrameBarManager1.BarPositionInfo = ((System.IO.MemoryStream)(resources.GetObject("mainFrameBarManager1.BarPositionInfo")));
     this.mainFrameBarManager1.Bars.Add(this.bar1);
     this.mainFrameBarManager1.Bars.Add(this.bar2);
     this.mainFrameBarManager1.Categories.Add("File");
     this.mainFrameBarManager1.Categories.Add("Edit");
     this.mainFrameBarManager1.Categories.Add("Help");
     this.mainFrameBarManager1.CurrentBaseFormType = "Syncfusion.Windows.Forms.MetroForm";
     this.mainFrameBarManager1.EnableMenuMerge     = true;
     this.mainFrameBarManager1.Font      = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.mainFrameBarManager1.Form      = this;
     this.mainFrameBarManager1.ImageList = this.menuList;
     this.mainFrameBarManager1.Items.AddRange(new Syncfusion.Windows.Forms.Tools.XPMenus.BarItem[] {
         this.parentBarItem3,
         this.barItem1,
         this.barItem2,
         this.barItem3,
         this.barItem10,
         this.parentBarItem4,
         this.barItem4,
         this.barItem5,
         this.barItem6,
         this.barItem7,
         this.barItem8,
         this.parentBarItem5,
         this.barItem9,
         this.windowItem,
         this.mdiListBarItem1,
         this.dropDownBarItem1
     });
     this.mainFrameBarManager1.MetroColor         = System.Drawing.Color.FromArgb(((int)(((byte)(67)))), ((int)(((byte)(201)))), ((int)(((byte)(232)))));
     this.mainFrameBarManager1.ResetCustomization = false;
     this.mainFrameBarManager1.Style = Syncfusion.Windows.Forms.VisualStyle.Metro;
     this.mainFrameBarManager1.UseBackwardCompatiblity = false;
     //
     // bar1
     //
     this.bar1.BarName  = "Hauptmenu";
     this.bar1.BarStyle = ((Syncfusion.Windows.Forms.Tools.XPMenus.BarStyle)((((Syncfusion.Windows.Forms.Tools.XPMenus.BarStyle.AllowQuickCustomizing | Syncfusion.Windows.Forms.Tools.XPMenus.BarStyle.IsMainMenu)
                                                                               | Syncfusion.Windows.Forms.Tools.XPMenus.BarStyle.Visible)
                                                                              | Syncfusion.Windows.Forms.Tools.XPMenus.BarStyle.DrawDragBorder)));
     this.bar1.Caption = "Hauptmenu";
     this.bar1.Items.AddRange(new Syncfusion.Windows.Forms.Tools.XPMenus.BarItem[] {
         this.parentBarItem3,
         this.parentBarItem4,
         this.parentBarItem5,
         this.windowItem
     });
     this.bar1.Manager = this.mainFrameBarManager1;
     //
     // parentBarItem3
     //
     this.parentBarItem3.BarName        = "parentBarItem3";
     this.parentBarItem3.CategoryIndex  = 0;
     this.parentBarItem3.CustomTextFont = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.parentBarItem3.ID             = "&File";
     this.parentBarItem3.Items.AddRange(new Syncfusion.Windows.Forms.Tools.XPMenus.BarItem[] {
         this.barItem1,
         this.barItem2,
         this.barItem3,
         this.barItem10,
         this.barItem4
     });
     this.parentBarItem3.MetroColor = System.Drawing.Color.FromArgb(((int)(((byte)(67)))), ((int)(((byte)(201)))), ((int)(((byte)(232)))));
     this.parentBarItem3.SeparatorIndices.AddRange(new int[] {
         2,
         4
     });
     this.parentBarItem3.ShowToolTipInPopUp = false;
     this.parentBarItem3.SizeToFit          = true;
     this.parentBarItem3.Style      = Syncfusion.Windows.Forms.VisualStyle.Metro;
     this.parentBarItem3.Text       = "&Akte";
     this.parentBarItem3.WrapLength = 20;
     //
     // barItem1
     //
     this.barItem1.BarName            = "barItem1";
     this.barItem1.CategoryIndex      = 0;
     this.barItem1.CustomTextFont     = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.barItem1.ID                 = "&New";
     this.barItem1.ImageIndex         = 0;
     this.barItem1.PaintStyle         = Syncfusion.Windows.Forms.Tools.XPMenus.PaintStyle.ImageAndText;
     this.barItem1.Shortcut           = System.Windows.Forms.Shortcut.CtrlN;
     this.barItem1.ShowToolTipInPopUp = false;
     this.barItem1.SizeToFit          = true;
     this.barItem1.Text               = "&Neu";
     this.barItem1.Click             += new System.EventHandler(this.barItem1_Click);
     //
     // barItem2
     //
     this.barItem2.BarName            = "barItem2";
     this.barItem2.CategoryIndex      = 0;
     this.barItem2.CustomTextFont     = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.barItem2.ID                 = "&Open";
     this.barItem2.ImageIndex         = 1;
     this.barItem2.Shortcut           = System.Windows.Forms.Shortcut.CtrlO;
     this.barItem2.ShowToolTipInPopUp = false;
     this.barItem2.SizeToFit          = true;
     this.barItem2.Text               = "Geoffnet";
     //
     // barItem3
     //
     this.barItem3.BarName            = "barItem3";
     this.barItem3.CategoryIndex      = 0;
     this.barItem3.CustomTextFont     = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.barItem3.ID                 = "&Save";
     this.barItem3.ImageIndex         = 2;
     this.barItem3.Shortcut           = System.Windows.Forms.Shortcut.CtrlS;
     this.barItem3.ShowToolTipInPopUp = false;
     this.barItem3.SizeToFit          = true;
     this.barItem3.Text               = "Auber";
     //
     // barItem10
     //
     this.barItem10.BarName            = "barItem10";
     this.barItem10.CategoryIndex      = 0;
     this.barItem10.CustomTextFont     = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.barItem10.ID                 = "Save &As..";
     this.barItem10.ShowToolTipInPopUp = false;
     this.barItem10.SizeToFit          = true;
     this.barItem10.Text               = "Auber wie..";
     //
     // barItem4
     //
     this.barItem4.BarName            = "barItem4";
     this.barItem4.CategoryIndex      = 0;
     this.barItem4.CustomTextFont     = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.barItem4.ID                 = "E&xit";
     this.barItem4.ImageIndex         = 3;
     this.barItem4.Shortcut           = System.Windows.Forms.Shortcut.AltF4;
     this.barItem4.ShowToolTipInPopUp = false;
     this.barItem4.SizeToFit          = true;
     this.barItem4.Text               = "Ausgang";
     this.barItem4.Click             += new System.EventHandler(this.barItem4_Click);
     //
     // parentBarItem4
     //
     this.parentBarItem4.BarName        = "parentBarItem4";
     this.parentBarItem4.CategoryIndex  = 1;
     this.parentBarItem4.CustomTextFont = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.parentBarItem4.ID             = "&Edit";
     this.parentBarItem4.Items.AddRange(new Syncfusion.Windows.Forms.Tools.XPMenus.BarItem[] {
         this.barItem5,
         this.barItem6,
         this.barItem7,
         this.dropDownBarItem1,
         this.barItem8
     });
     this.parentBarItem4.MergeOrder = 1;
     this.parentBarItem4.MetroColor = System.Drawing.Color.FromArgb(((int)(((byte)(67)))), ((int)(((byte)(201)))), ((int)(((byte)(232)))));
     this.parentBarItem4.SeparatorIndices.AddRange(new int[] {
         4
     });
     this.parentBarItem4.ShowToolTipInPopUp = false;
     this.parentBarItem4.SizeToFit          = true;
     this.parentBarItem4.Style      = Syncfusion.Windows.Forms.VisualStyle.Metro;
     this.parentBarItem4.Text       = "&Redigieren Sie";
     this.parentBarItem4.WrapLength = 20;
     //
     // barItem5
     //
     this.barItem5.BarName            = "barItem5";
     this.barItem5.CategoryIndex      = 1;
     this.barItem5.CustomTextFont     = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.barItem5.ID                 = "Cu&t";
     this.barItem5.ImageIndex         = 4;
     this.barItem5.ShowToolTipInPopUp = false;
     this.barItem5.SizeToFit          = true;
     this.barItem5.Text               = "Redigieren";
     //
     // barItem6
     //
     this.barItem6.BarName            = "barItem6";
     this.barItem6.CategoryIndex      = 1;
     this.barItem6.CustomTextFont     = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.barItem6.ID                 = "&Copy";
     this.barItem6.ImageIndex         = 5;
     this.barItem6.ShowToolTipInPopUp = false;
     this.barItem6.SizeToFit          = true;
     this.barItem6.Text               = "&Copy";
     //
     // barItem7
     //
     this.barItem7.BarName            = "barItem7";
     this.barItem7.CategoryIndex      = 1;
     this.barItem7.CustomTextFont     = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.barItem7.ID                 = "&Paste";
     this.barItem7.ImageIndex         = 6;
     this.barItem7.ShowToolTipInPopUp = false;
     this.barItem7.SizeToFit          = true;
     this.barItem7.Text               = "&Paste";
     //
     // dropDownBarItem1
     //
     this.dropDownBarItem1.BarName               = "dropDownBarItem1";
     this.dropDownBarItem1.CategoryIndex         = 1;
     this.dropDownBarItem1.CustomTextFont        = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.dropDownBarItem1.ID                    = "Choose Color:";
     this.dropDownBarItem1.PopupControlContainer = this.popupControlContainer1;
     this.dropDownBarItem1.ShowToolTipInPopUp    = false;
     this.dropDownBarItem1.SizeToFit             = true;
     this.dropDownBarItem1.Text                  = "Farbe wahlen:";
     //
     // popupControlContainer1
     //
     this.popupControlContainer1.Controls.Add(this.colorUIControl1);
     this.popupControlContainer1.Location = new System.Drawing.Point(272, 80);
     this.popupControlContainer1.Name     = "popupControlContainer1";
     this.popupControlContainer1.Size     = new System.Drawing.Size(176, 176);
     this.popupControlContainer1.TabIndex = 9;
     this.popupControlContainer1.Visible  = false;
     //
     // colorUIControl1
     //
     this.colorUIControl1.BeforeTouchSize         = new System.Drawing.Size(176, 176);
     this.colorUIControl1.Dock                    = System.Windows.Forms.DockStyle.Fill;
     this.colorUIControl1.Flag                    = false;
     this.colorUIControl1.Location                = new System.Drawing.Point(0, 0);
     this.colorUIControl1.MetroColor              = System.Drawing.Color.FromArgb(((int)(((byte)(17)))), ((int)(((byte)(158)))), ((int)(((byte)(218)))));
     this.colorUIControl1.MetroForeColor          = System.Drawing.Color.White;
     this.colorUIControl1.Name                    = "colorUIControl1";
     metroColorTable1.ArrowChecked                = System.Drawing.Color.Black;
     metroColorTable1.ArrowNormal                 = System.Drawing.Color.White;
     metroColorTable1.ArrowNormal                 = System.Drawing.Color.Gray;
     metroColorTable1.ArrowNormalBackGround       = System.Drawing.Color.FromArgb(((int)(((byte)(198)))), ((int)(((byte)(198)))), ((int)(((byte)(198)))));
     metroColorTable1.ArrowPushed                 = System.Drawing.Color.Black;
     metroColorTable1.ArrowPushedBackGround       = System.Drawing.Color.FromArgb(((int)(((byte)(88)))), ((int)(((byte)(89)))), ((int)(((byte)(90)))));
     metroColorTable1.ScrollerBackground          = System.Drawing.Color.White;
     metroColorTable1.ThumbChecked                = System.Drawing.Color.Black;
     metroColorTable1.ThumbNormal                 = System.Drawing.Color.White;
     metroColorTable1.ThumbNormal                 = System.Drawing.Color.Gray;
     metroColorTable1.ThumbPushed                 = System.Drawing.Color.Black;
     metroColorTable1.ThumbPushedBorder           = System.Drawing.Color.FromArgb(((int)(((byte)(88)))), ((int)(((byte)(89)))), ((int)(((byte)(90)))));
     this.colorUIControl1.ScrollMetroColorTable   = metroColorTable1;
     this.colorUIControl1.ShowUserSelectionColors = true;
     this.colorUIControl1.Size                    = new System.Drawing.Size(176, 176);
     this.colorUIControl1.TabIndex                = 0;
     this.colorUIControl1.Text                    = "colorUIControl1";
     this.colorUIControl1.VisualStyle             = Syncfusion.Windows.Forms.ColorUIStyle.Metro;
     //
     // barItem8
     //
     this.barItem8.BarName            = "barItem8";
     this.barItem8.CategoryIndex      = 1;
     this.barItem8.CustomTextFont     = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.barItem8.ID                 = "Select &All";
     this.barItem8.ShowToolTipInPopUp = false;
     this.barItem8.SizeToFit          = true;
     this.barItem8.Text               = "Alle vorwahlen";
     //
     // parentBarItem5
     //
     this.parentBarItem5.BarName        = "parentBarItem5";
     this.parentBarItem5.CategoryIndex  = 3;
     this.parentBarItem5.CustomTextFont = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.parentBarItem5.ID             = "&Help";
     this.parentBarItem5.Items.AddRange(new Syncfusion.Windows.Forms.Tools.XPMenus.BarItem[] {
         this.barItem9
     });
     this.parentBarItem5.MergeOrder         = 3;
     this.parentBarItem5.MetroColor         = System.Drawing.Color.FromArgb(((int)(((byte)(67)))), ((int)(((byte)(201)))), ((int)(((byte)(232)))));
     this.parentBarItem5.ShowToolTipInPopUp = false;
     this.parentBarItem5.SizeToFit          = true;
     this.parentBarItem5.Style      = Syncfusion.Windows.Forms.VisualStyle.Metro;
     this.parentBarItem5.Text       = "&Hilfe";
     this.parentBarItem5.WrapLength = 20;
     //
     // barItem9
     //
     this.barItem9.BarName            = "barItem9";
     this.barItem9.CategoryIndex      = 2;
     this.barItem9.CustomTextFont     = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.barItem9.ID                 = "A&bout...";
     this.barItem9.ShowToolTipInPopUp = false;
     this.barItem9.SizeToFit          = true;
     this.barItem9.Text               = "Uber...";
     //
     // windowItem
     //
     this.windowItem.BarName        = "windowItem";
     this.windowItem.CategoryIndex  = 2;
     this.windowItem.CustomTextFont = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.windowItem.ID             = "&Window";
     this.windowItem.Items.AddRange(new Syncfusion.Windows.Forms.Tools.XPMenus.BarItem[] {
         this.mdiListBarItem1
     });
     this.windowItem.MergeOrder         = 2;
     this.windowItem.MetroColor         = System.Drawing.Color.FromArgb(((int)(((byte)(67)))), ((int)(((byte)(201)))), ((int)(((byte)(232)))));
     this.windowItem.ShowToolTipInPopUp = false;
     this.windowItem.SizeToFit          = true;
     this.windowItem.Style      = Syncfusion.Windows.Forms.VisualStyle.Metro;
     this.windowItem.Text       = "Fenster";
     this.windowItem.WrapLength = 20;
     //
     // mdiListBarItem1
     //
     this.mdiListBarItem1.BarName            = "mdiListBarItem1";
     this.mdiListBarItem1.CustomTextFont     = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.mdiListBarItem1.ID                 = "Window List";
     this.mdiListBarItem1.ShowToolTipInPopUp = false;
     this.mdiListBarItem1.SizeToFit          = true;
     //
     // bar2
     //
     this.bar2.BarName = "Standard";
     this.bar2.Caption = "Standard";
     this.bar2.Items.AddRange(new Syncfusion.Windows.Forms.Tools.XPMenus.BarItem[] {
         this.barItem1,
         this.barItem2,
         this.barItem3
     });
     this.bar2.Manager = this.mainFrameBarManager1;
     this.bar2.SeparatorIndices.AddRange(new int[] {
         2
     });
     //
     // menuList
     //
     this.menuList.ImageStream      = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("menuList.ImageStream")));
     this.menuList.TransparentColor = System.Drawing.Color.Transparent;
     this.menuList.Images.SetKeyName(0, "");
     this.menuList.Images.SetKeyName(1, "");
     this.menuList.Images.SetKeyName(2, "");
     this.menuList.Images.SetKeyName(3, "");
     this.menuList.Images.SetKeyName(4, "");
     this.menuList.Images.SetKeyName(5, "");
     this.menuList.Images.SetKeyName(6, "");
     //
     // parentBarItem1
     //
     this.parentBarItem1.BarName            = "parentBarItem1";
     this.parentBarItem1.ID                 = "Item";
     this.parentBarItem1.MetroColor         = System.Drawing.Color.LightSkyBlue;
     this.parentBarItem1.ShowToolTipInPopUp = false;
     this.parentBarItem1.SizeToFit          = true;
     this.parentBarItem1.Style              = Syncfusion.Windows.Forms.VisualStyle.Office2003;
     this.parentBarItem1.Text               = "Item";
     this.parentBarItem1.WrapLength         = 20;
     //
     // parentBarItem2
     //
     this.parentBarItem2.BarName            = "parentBarItem2";
     this.parentBarItem2.ID                 = "ParentBarItem";
     this.parentBarItem2.MetroColor         = System.Drawing.Color.LightSkyBlue;
     this.parentBarItem2.ShowToolTipInPopUp = false;
     this.parentBarItem2.SizeToFit          = true;
     this.parentBarItem2.Style              = Syncfusion.Windows.Forms.VisualStyle.Office2003;
     this.parentBarItem2.Text               = "Window";
     this.parentBarItem2.WrapLength         = 20;
     //
     // Form1
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 15);
     this.ClientSize        = new System.Drawing.Size(688, 478);
     this.Controls.Add(this.popupControlContainer1);
     this.DropShadow     = true;
     this.Font           = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Icon           = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.IsMdiContainer = true;
     this.Name           = "Form1";
     this.StartPosition  = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text           = "Lokalisation-Demo ";
     this.Load          += new System.EventHandler(this.Form1_Load);
     ((System.ComponentModel.ISupportInitialize)(this.dockingManager1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.textBox1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.mainFrameBarManager1)).EndInit();
     this.popupControlContainer1.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Пример #21
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components                  = new System.ComponentModel.Container();
     this.panel1                      = new System.Windows.Forms.Panel();
     this.btn_deserialize             = new Syncfusion.WinForms.Controls.SfButton();
     this.btn_serialize               = new Syncfusion.WinForms.Controls.SfButton();
     this.label4                      = new System.Windows.Forms.Label();
     this.format_Combo                = new Syncfusion.Windows.Forms.Tools.ComboBoxAdv();
     this.autoComplete_Combo          = new Syncfusion.Windows.Forms.Tools.ComboBoxAdv();
     this.label3                      = new System.Windows.Forms.Label();
     this.dataSource_ComboBox         = new Syncfusion.Windows.Forms.Tools.ComboBoxAdv();
     this.label2                      = new System.Windows.Forms.Label();
     this.label1                      = new System.Windows.Forms.Label();
     this.comboBoxAdv1                = new Syncfusion.Windows.Forms.Tools.ComboBoxAdv();
     this.panel2                      = new System.Windows.Forms.Panel();
     this.label5                      = new System.Windows.Forms.Label();
     this.textBox1                    = new Syncfusion.Windows.Forms.Tools.TextBoxExt();
     this.autoComplete1               = new Syncfusion.Windows.Forms.Tools.AutoComplete(this.components);
     this.autoCompleteDataColumnInfo1 = new Syncfusion.Windows.Forms.Tools.AutoCompleteDataColumnInfo("Flag", 100, true);
     this.autoCompleteDataColumnInfo2 = new Syncfusion.Windows.Forms.Tools.AutoCompleteDataColumnInfo("Country", 100, true);
     this.panel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.format_Combo)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.autoComplete_Combo)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataSource_ComboBox)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.comboBoxAdv1)).BeginInit();
     this.panel2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.textBox1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.autoComplete1)).BeginInit();
     this.SuspendLayout();
     //
     // panel1
     //
     this.panel1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                | System.Windows.Forms.AnchorStyles.Left)));
     this.panel1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.panel1.Controls.Add(this.btn_deserialize);
     this.panel1.Controls.Add(this.btn_serialize);
     this.panel1.Controls.Add(this.label4);
     this.panel1.Controls.Add(this.format_Combo);
     this.panel1.Controls.Add(this.autoComplete_Combo);
     this.panel1.Controls.Add(this.label3);
     this.panel1.Controls.Add(this.dataSource_ComboBox);
     this.panel1.Controls.Add(this.label2);
     this.panel1.Location = new System.Drawing.Point(492, 12);
     this.panel1.Margin   = new System.Windows.Forms.Padding(2);
     this.panel1.Name     = "panel1";
     this.panel1.Size     = new System.Drawing.Size(272, 421);
     this.panel1.TabIndex = 1;
     //
     // btn_deserialize
     //
     this.btn_deserialize.AccessibleName = "Button";
     this.btn_deserialize.Font           = new System.Drawing.Font("Segoe UI Semibold", 9F);
     this.btn_deserialize.Location       = new System.Drawing.Point(127, 228);
     this.btn_deserialize.Margin         = new System.Windows.Forms.Padding(2);
     this.btn_deserialize.Name           = "btn_deserialize";
     this.btn_deserialize.Size           = new System.Drawing.Size(123, 23);
     this.btn_deserialize.TabIndex       = 7;
     this.btn_deserialize.Text           = "Deserialize";
     this.btn_deserialize.Click         += new System.EventHandler(this.btn_deserialize_Click);
     //
     // btn_serialize
     //
     this.btn_serialize.AccessibleName = "Button";
     this.btn_serialize.Font           = new System.Drawing.Font("Segoe UI Semibold", 9F);
     this.btn_serialize.Location       = new System.Drawing.Point(127, 180);
     this.btn_serialize.Margin         = new System.Windows.Forms.Padding(2);
     this.btn_serialize.Name           = "btn_serialize";
     this.btn_serialize.Size           = new System.Drawing.Size(123, 23);
     this.btn_serialize.TabIndex       = 6;
     this.btn_serialize.Text           = "Serialize";
     this.btn_serialize.Click         += new System.EventHandler(this.btn_serialize_Click);
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.Location = new System.Drawing.Point(14, 133);
     this.label4.Margin   = new System.Windows.Forms.Padding(2, 0, 2, 0);
     this.label4.Name     = "label4";
     this.label4.Size     = new System.Drawing.Size(97, 13);
     this.label4.TabIndex = 5;
     this.label4.Text     = "Format To Serialize";
     //
     // format_Combo
     //
     this.format_Combo.BeforeTouchSize       = new System.Drawing.Size(124, 21);
     this.format_Combo.Location              = new System.Drawing.Point(127, 133);
     this.format_Combo.Margin                = new System.Windows.Forms.Padding(2);
     this.format_Combo.Name                  = "format_Combo";
     this.format_Combo.Size                  = new System.Drawing.Size(124, 21);
     this.format_Combo.TabIndex              = 4;
     this.format_Combo.Text                  = "comboBoxAdv3";
     this.format_Combo.SelectedIndexChanged += new System.EventHandler(this.format_Combo_SelectedIndexChanged);
     //
     // autoComplete_Combo
     //
     this.autoComplete_Combo.BeforeTouchSize       = new System.Drawing.Size(124, 21);
     this.autoComplete_Combo.Location              = new System.Drawing.Point(127, 77);
     this.autoComplete_Combo.Margin                = new System.Windows.Forms.Padding(2);
     this.autoComplete_Combo.Name                  = "autoComplete_Combo";
     this.autoComplete_Combo.Size                  = new System.Drawing.Size(124, 21);
     this.autoComplete_Combo.TabIndex              = 3;
     this.autoComplete_Combo.Text                  = "comboBoxAdv2";
     this.autoComplete_Combo.SelectedIndexChanged += new System.EventHandler(this.autoComplete_Combo_SelectedIndexChanged);
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.Location = new System.Drawing.Point(11, 77);
     this.label3.Margin   = new System.Windows.Forms.Padding(2, 0, 2, 0);
     this.label3.Name     = "label3";
     this.label3.Size     = new System.Drawing.Size(106, 13);
     this.label3.TabIndex = 2;
     this.label3.Text     = "Auto Complete Mode";
     //
     // dataSource_ComboBox
     //
     this.dataSource_ComboBox.BeforeTouchSize       = new System.Drawing.Size(124, 21);
     this.dataSource_ComboBox.Location              = new System.Drawing.Point(127, 27);
     this.dataSource_ComboBox.Margin                = new System.Windows.Forms.Padding(2);
     this.dataSource_ComboBox.Name                  = "dataSource_ComboBox";
     this.dataSource_ComboBox.Size                  = new System.Drawing.Size(124, 21);
     this.dataSource_ComboBox.TabIndex              = 1;
     this.dataSource_ComboBox.Text                  = "Select Data Source";
     this.dataSource_ComboBox.SelectedIndexChanged += new System.EventHandler(this.dataSource_ComboBox_SelectedIndexChanged);
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Location = new System.Drawing.Point(11, 27);
     this.label2.Margin   = new System.Windows.Forms.Padding(2, 0, 2, 0);
     this.label2.Name     = "label2";
     this.label2.Size     = new System.Drawing.Size(70, 13);
     this.label2.TabIndex = 0;
     this.label2.Text     = "Data Source ";
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(27, 85);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(91, 20);
     this.label1.TabIndex = 0;
     this.label1.Text     = "Visual Style";
     //
     // comboBoxAdv1
     //
     this.comboBoxAdv1.BackColor       = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     this.comboBoxAdv1.BeforeTouchSize = new System.Drawing.Size(186, 21);
     this.comboBoxAdv1.DropDownStyle   = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.comboBoxAdv1.Font            = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.comboBoxAdv1.ForeColor       = System.Drawing.Color.FromArgb(((int)(((byte)(68)))), ((int)(((byte)(68)))), ((int)(((byte)(68)))));
     this.comboBoxAdv1.Items.AddRange(new object[] {
         "Office2019Colorful",
         "HighContrastBlack",
         "Office2016Colorful",
         "Office2016White",
         "Office2016Black",
         "Office2016DarkGray",
         "Metro",
         "Default"
     });
     this.comboBoxAdv1.Location  = new System.Drawing.Point(155, 84);
     this.comboBoxAdv1.Name      = "comboBoxAdv1";
     this.comboBoxAdv1.Size      = new System.Drawing.Size(186, 21);
     this.comboBoxAdv1.Style     = Syncfusion.Windows.Forms.VisualStyle.Office2016Colorful;
     this.comboBoxAdv1.TabIndex  = 3;
     this.comboBoxAdv1.Text      = "Office2019Colorful";
     this.comboBoxAdv1.ThemeName = "Office2016Colorful";
     //
     // panel2
     //
     this.panel2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                | System.Windows.Forms.AnchorStyles.Left)));
     this.panel2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.panel2.Controls.Add(this.label5);
     this.panel2.Controls.Add(this.textBox1);
     this.panel2.Location = new System.Drawing.Point(4, 12);
     this.panel2.Margin   = new System.Windows.Forms.Padding(2);
     this.panel2.Name     = "panel2";
     this.panel2.Size     = new System.Drawing.Size(480, 421);
     this.panel2.TabIndex = 0;
     //
     // label5
     //
     this.label5.AutoSize = true;
     this.label5.Location = new System.Drawing.Point(78, 148);
     this.label5.Margin   = new System.Windows.Forms.Padding(2, 0, 2, 0);
     this.label5.Name     = "label5";
     this.label5.Size     = new System.Drawing.Size(93, 13);
     this.label5.TabIndex = 3;
     this.label5.Text     = "Enter your option :";
     //
     // textBox1
     //
     this.autoComplete1.SetAutoComplete(this.textBox1, Syncfusion.Windows.Forms.Tools.AutoCompleteModes.MultiSuggestExtended);
     this.textBox1.BackColor       = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     this.textBox1.BeforeTouchSize = new System.Drawing.Size(201, 22);
     this.textBox1.BorderColor     = System.Drawing.Color.FromArgb(((int)(((byte)(197)))), ((int)(((byte)(197)))), ((int)(((byte)(197)))));
     this.textBox1.BorderStyle     = System.Windows.Forms.BorderStyle.FixedSingle;
     this.textBox1.Cursor          = System.Windows.Forms.Cursors.IBeam;
     this.textBox1.Font            = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.textBox1.ForeColor       = System.Drawing.Color.FromArgb(((int)(((byte)(68)))), ((int)(((byte)(68)))), ((int)(((byte)(68)))));
     this.textBox1.Location        = new System.Drawing.Point(193, 148);
     this.textBox1.Margin          = new System.Windows.Forms.Padding(2);
     this.textBox1.Metrocolor      = System.Drawing.Color.Gray;
     this.textBox1.Name            = "textBox1";
     this.textBox1.Size            = new System.Drawing.Size(201, 22);
     this.textBox1.Style           = Syncfusion.Windows.Forms.Tools.TextBoxExt.theme.Office2016Colorful;
     this.textBox1.TabIndex        = 2;
     this.textBox1.ThemeName       = "Office2019Colorful";
     //
     // autoComplete1
     //
     this.autoComplete1.AdjustHeightToItemCount = false;
     this.autoComplete1.HeaderFont = new System.Drawing.Font("Segoe UI", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.World);
     this.autoComplete1.ItemFont   = new System.Drawing.Font("Segoe UI", 8.25F);
     this.autoComplete1.MetroColor = System.Drawing.Color.FromArgb(((int)(((byte)(17)))), ((int)(((byte)(158)))), ((int)(((byte)(218)))));
     this.autoComplete1.ParentForm = this;
     this.autoComplete1.Style      = Syncfusion.Windows.Forms.Tools.AutoCompleteStyle.Default;
     this.autoComplete1.ThemeName  = "Default";
     //
     // autoCompleteDataColumnInfo1
     //
     this.autoCompleteDataColumnInfo1.ColumnHeaderText = "Flag";
     this.autoCompleteDataColumnInfo1.ImageColumn      = false;
     this.autoCompleteDataColumnInfo1.MatchingColumn   = false;
     this.autoCompleteDataColumnInfo1.Visible          = true;
     //
     // autoCompleteDataColumnInfo2
     //
     this.autoCompleteDataColumnInfo2.ColumnHeaderText = "Country";
     this.autoCompleteDataColumnInfo2.ImageColumn      = true;
     this.autoCompleteDataColumnInfo2.MatchingColumn   = false;
     this.autoCompleteDataColumnInfo2.Visible          = true;
     //
     // Form1
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.CaptionAlign        = System.Windows.Forms.HorizontalAlignment.Left;
     this.ClientSize          = new System.Drawing.Size(768, 437);
     this.Controls.Add(this.panel1);
     this.Controls.Add(this.panel2);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     this.Margin          = new System.Windows.Forms.Padding(2);
     this.Name            = "Form1";
     this.ShowMaximizeBox = false;
     this.ShowMinimizeBox = false;
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text            = "Data Binding";
     this.panel1.ResumeLayout(false);
     this.panel1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.format_Combo)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.autoComplete_Combo)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataSource_ComboBox)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.comboBoxAdv1)).EndInit();
     this.panel2.ResumeLayout(false);
     this.panel2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.textBox1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.autoComplete1)).EndInit();
     this.ResumeLayout(false);
 }
Пример #22
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1));
     this.gradientPanel2 = new Syncfusion.Windows.Forms.Tools.GradientPanel();
     this.gradientPanel3 = new Syncfusion.Windows.Forms.Tools.GradientPanel();
     this.textBox1       = new Syncfusion.Windows.Forms.Tools.TextBoxExt();
     this.button1        = new Syncfusion.Windows.Forms.ButtonAdv();
     this.textBox2       = new Syncfusion.Windows.Forms.Tools.TextBoxExt();
     this.gradientPanel1 = new Syncfusion.Windows.Forms.Tools.GradientPanel();
     this.label3         = new System.Windows.Forms.Label();
     this.textBox3       = new RichTextBox();
     this.label2         = new System.Windows.Forms.Label();
     this.label1         = new System.Windows.Forms.Label();
     ((System.ComponentModel.ISupportInitialize)(this.gradientPanel2)).BeginInit();
     this.gradientPanel2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gradientPanel3)).BeginInit();
     this.gradientPanel3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.textBox1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.textBox2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gradientPanel1)).BeginInit();
     this.gradientPanel1.SuspendLayout();
     this.SuspendLayout();
     //
     // gradientPanel2
     //
     this.gradientPanel2.BackgroundColor = new Syncfusion.Drawing.BrushInfo(Syncfusion.Drawing.PatternStyle.Percent50, System.Drawing.SystemColors.GradientActiveCaption, System.Drawing.Color.White);
     this.gradientPanel2.BorderColor     = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(224)))), ((int)(((byte)(192)))));
     this.gradientPanel2.BorderStyle     = System.Windows.Forms.BorderStyle.FixedSingle;
     this.gradientPanel2.Controls.Add(this.gradientPanel3);
     this.gradientPanel2.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.gradientPanel2.Location = new System.Drawing.Point(30, 30);
     this.gradientPanel2.Name     = "gradientPanel2";
     this.gradientPanel2.Padding  = new System.Windows.Forms.Padding(50);
     this.gradientPanel2.Size     = new System.Drawing.Size(712, 437);
     this.gradientPanel2.TabIndex = 1;
     //
     // gradientPanel3
     //
     this.gradientPanel3.BackgroundColor = new Syncfusion.Drawing.BrushInfo(Syncfusion.Drawing.GradientStyle.BackwardDiagonal, System.Drawing.Color.White, System.Drawing.Color.SkyBlue);
     this.gradientPanel3.BorderColor     = System.Drawing.Color.LightSkyBlue;
     this.gradientPanel3.BorderStyle     = System.Windows.Forms.BorderStyle.FixedSingle;
     this.gradientPanel3.Controls.Add(this.textBox1);
     this.gradientPanel3.Controls.Add(this.button1);
     this.gradientPanel3.Controls.Add(this.textBox2);
     this.gradientPanel3.Controls.Add(this.gradientPanel1);
     this.gradientPanel3.Controls.Add(this.textBox3);
     this.gradientPanel3.Controls.Add(this.label2);
     this.gradientPanel3.Controls.Add(this.label1);
     this.gradientPanel3.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.gradientPanel3.Location = new System.Drawing.Point(50, 50);
     this.gradientPanel3.Name     = "gradientPanel3";
     this.gradientPanel3.Size     = new System.Drawing.Size(610, 335);
     this.gradientPanel3.TabIndex = 8;
     //
     // textBox1
     //
     this.textBox1.BorderColor = System.Drawing.Color.Gray;
     this.textBox1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.textBox1.Cursor      = System.Windows.Forms.Cursors.IBeam;
     this.textBox1.Font        = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.textBox1.Location    = new System.Drawing.Point(74, 24);
     this.textBox1.Metrocolor  = System.Drawing.Color.Gray;
     this.textBox1.Name        = "textBox1";
     this.textBox1.Size        = new System.Drawing.Size(100, 22);
     this.textBox1.Style       = Syncfusion.Windows.Forms.Tools.TextBoxExt.theme.Metro;
     this.textBox1.TabIndex    = 0;
     //
     // button1
     //
     this.button1.Appearance = Syncfusion.Windows.Forms.ButtonAppearance.Metro;
     this.button1.BackColor  = System.Drawing.Color.LavenderBlush;
     this.button1.FlatAppearance.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(184)))), ((int)(((byte)(212)))), ((int)(((byte)(254)))));
     this.button1.FlatStyle          = System.Windows.Forms.FlatStyle.Flat;
     this.button1.ForeColor          = System.Drawing.Color.White;
     this.button1.IsBackStageButton  = false;
     this.button1.KeepFocusRectangle = false;
     this.button1.Location           = new System.Drawing.Point(74, 291);
     this.button1.MetroColor         = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(128)))), ((int)(((byte)(128)))));
     this.button1.Name                    = "button1";
     this.button1.Size                    = new System.Drawing.Size(108, 23);
     this.button1.TabIndex                = 7;
     this.button1.Text                    = "Submit Comment";
     this.button1.UseVisualStyle          = true;
     this.button1.UseVisualStyleBackColor = false;
     //
     // textBox2
     //
     this.textBox2.BorderColor = System.Drawing.Color.Gray;
     this.textBox2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.textBox2.Cursor      = System.Windows.Forms.Cursors.IBeam;
     this.textBox2.Font        = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.textBox2.Location    = new System.Drawing.Point(74, 85);
     this.textBox2.Metrocolor  = System.Drawing.Color.Gray;
     this.textBox2.Name        = "textBox2";
     this.textBox2.Size        = new System.Drawing.Size(100, 22);
     this.textBox2.Style       = Syncfusion.Windows.Forms.Tools.TextBoxExt.theme.Metro;
     this.textBox2.TabIndex    = 1;
     //
     // gradientPanel1
     //
     this.gradientPanel1.BackgroundColor = new Syncfusion.Drawing.BrushInfo(Syncfusion.Drawing.GradientStyle.ForwardDiagonal, System.Drawing.Color.White, System.Drawing.Color.LightSalmon);
     this.gradientPanel1.BorderColor     = System.Drawing.Color.FromArgb(((int)(((byte)(178)))), ((int)(((byte)(130)))), ((int)(((byte)(122)))));
     this.gradientPanel1.BorderStyle     = System.Windows.Forms.BorderStyle.FixedSingle;
     this.gradientPanel1.Controls.Add(this.label3);
     this.gradientPanel1.Font     = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.gradientPanel1.Location = new System.Drawing.Point(404, 27);
     this.gradientPanel1.Name     = "gradientPanel1";
     this.gradientPanel1.Size     = new System.Drawing.Size(111, 95);
     this.gradientPanel1.TabIndex = 6;
     //
     // label3
     //
     this.label3.AutoSize  = true;
     this.label3.BackColor = System.Drawing.Color.Transparent;
     this.label3.Font      = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label3.ForeColor = System.Drawing.Color.Maroon;
     this.label3.Location  = new System.Drawing.Point(23, 36);
     this.label3.Name      = "label3";
     this.label3.Size      = new System.Drawing.Size(72, 14);
     this.label3.TabIndex  = 0;
     this.label3.Text      = "Display Photo";
     //
     // textBox3
     //
     this.textBox3.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.textBox3.Cursor      = System.Windows.Forms.Cursors.IBeam;
     this.textBox3.Font        = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.textBox3.Location    = new System.Drawing.Point(74, 141);
     this.textBox3.Multiline   = true;
     this.textBox3.Name        = "textBox3";
     this.textBox3.Size        = new System.Drawing.Size(237, 109);
     this.textBox3.TabIndex    = 2;
     //
     // label2
     //
     this.label2.AutoSize  = true;
     this.label2.BackColor = System.Drawing.Color.Transparent;
     this.label2.Font      = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label2.Location  = new System.Drawing.Point(182, 88);
     this.label2.Name      = "label2";
     this.label2.Size      = new System.Drawing.Size(82, 13);
     this.label2.TabIndex  = 4;
     this.label2.Text      = "Mail (required)";
     //
     // label1
     //
     this.label1.AutoSize  = true;
     this.label1.BackColor = System.Drawing.Color.Transparent;
     this.label1.Font      = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label1.Location  = new System.Drawing.Point(182, 27);
     this.label1.Name      = "label1";
     this.label1.Size      = new System.Drawing.Size(92, 13);
     this.label1.TabIndex  = 3;
     this.label1.Text      = "Name (Required)";
     //
     // Form1
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 15);
     this.BackColor         = System.Drawing.Color.White;
     this.BorderColor       = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(161)))), ((int)(((byte)(226)))));
     this.ClientSize        = new System.Drawing.Size(772, 497);
     this.Controls.Add(this.gradientPanel2);
     this.DropShadow    = true;
     this.Font          = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Icon          = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MinimumSize   = new System.Drawing.Size(784, 534);
     this.Name          = "Form1";
     this.Padding       = new System.Windows.Forms.Padding(30);
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text          = "GradientPanel";
     ((System.ComponentModel.ISupportInitialize)(this.gradientPanel2)).EndInit();
     this.gradientPanel2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gradientPanel3)).EndInit();
     this.gradientPanel3.ResumeLayout(false);
     this.gradientPanel3.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.textBox1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.textBox2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gradientPanel1)).EndInit();
     this.gradientPanel1.ResumeLayout(false);
     this.gradientPanel1.PerformLayout();
     this.ResumeLayout(false);
 }
Пример #23
0
 private void updateTextBoxWithState(TextBoxExt textBox, ThreadState state)
 {
     switch (state)
     {
         case ThreadState.Running:
             textBox.Text = "alive";
             textBox.BackColor = Color.Aquamarine;
             break;
         case ThreadState.Aborted:
             textBox.Text = "aborted";
             textBox.BackColor = Color.LightSalmon;
             break;
         case ThreadState.Stopped:
             textBox.Text = "stopped";
             textBox.BackColor = Color.LightSalmon;
             break;
         case ThreadState.Suspended:
             textBox.Text = "ignore";
             textBox.BackColor = Color.Yellow;
             break;
         case ThreadState.SuspendRequested:
             textBox.Text = "wait for ignore";
             textBox.BackColor = Color.Yellow;
             break;
     }
 }