示例#1
0
 void OnChannelTypeChanged(object sender, EventArgs e)
 {
     DevAge.Windows.Forms.DevAgeComboBox combo = (DevAge.Windows.Forms.DevAgeComboBox)sender;
     foreach (int row in grid.Selection.GetSelectionRegion().GetRowsIndex())
     {
         UpdateExpressionFieldForRow(row, (string)combo.Value);
     }
 }
示例#2
0
		/// <summary>
		/// Create the editor control
		/// </summary>
		/// <returns></returns>
		protected override Control CreateControl()
		{
            DevAge.Windows.Forms.DevAgeComboBox editor = new DevAge.Windows.Forms.DevAgeComboBox();
			//editor.FlatStyle = FlatStyle.System;
			editor.Validator = this;

            //NOTE: I have changed a little the ArrangeLinkedControls to support ComboBox control

			return editor;
		}
示例#3
0
        /// <summary>
        /// Create the editor control
        /// </summary>
        /// <returns></returns>
        protected override Control CreateControl()
        {
            DevAge.Windows.Forms.DevAgeComboBox editor = new DevAge.Windows.Forms.DevAgeComboBox();
            //editor.FlatStyle = FlatStyle.System;
            editor.Validator = this;

            //NOTE: I have changed a little the ArrangeLinkedControls to support ComboBox control

            return(editor);
        }
示例#4
0
        /// <summary>
        /// Create the editor control
        /// </summary>
        /// <returns></returns>
        protected override Control CreateControl()
        {
            DevAge.Windows.Forms.DevAgeComboBox editor = new DevAge.Windows.Forms.DevAgeComboBox();
            editor.DropDownStyle = ComboBoxStyle.DropDownList;
            //editor.FlatStyle = FlatStyle.System;
            editor.Validator = this;

            //NOTE: I have changed a little the ArrangeLinkedControls to support ComboBox control
            editor.SelectedIndexChanged += (o, e) => {
                // Lose the focus
                Control.Enabled = false;
                Control.Enabled = true;
            };
            return(editor);
        }
        void AnalysisAttributeValueChanged(object sender, EventArgs e)
        {
            if ("|POSTED|PARTPAID|PAID|".IndexOf("|" + FMainDS.AApDocument[0].DocumentStatus) >= 0)
            {
                return;
            }

            DevAge.Windows.Forms.DevAgeComboBox valueType = (DevAge.Windows.Forms.DevAgeComboBox)sender;

            int selectedValueIndex = valueType.SelectedIndex;

            if (selectedValueIndex < 0)
            {
                return;
            }
            else if (valueType.Items[selectedValueIndex].ToString() != FPSAttributesRow.AnalysisAttributeValue)
            {
                FPetraUtilsObject.SetChangedFlag();
                FPSAttributesRow.AnalysisAttributeValue = valueType.Items[selectedValueIndex].ToString();
                ValidateAllData(false, TErrorProcessingMode.Epm_All);
            }
        }
示例#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.grid1 = new SourceGrid.Grid();
            this.groupBox1 = new System.Windows.Forms.GroupBox();
            this.rdSelectionModeColumn = new System.Windows.Forms.RadioButton();
            this.rdSelectionModeRow = new System.Windows.Forms.RadioButton();
            this.rdSelectionModeCell = new System.Windows.Forms.RadioButton();
            this.chkEnableMultiSelection = new System.Windows.Forms.CheckBox();
            this.cPickSelBackColor = new DevAge.Windows.Forms.ColorPicker();
            this.label1 = new System.Windows.Forms.Label();
            this.label3 = new System.Windows.Forms.Label();
            this.cPckBorderColor = new DevAge.Windows.Forms.ColorPicker();
            this.tabControl1 = new System.Windows.Forms.TabControl();
            this.tabPage1 = new System.Windows.Forms.TabPage();
            this.tabPage2 = new System.Windows.Forms.TabPage();
            this.label2 = new System.Windows.Forms.Label();
            this.trackSelectionAlpha = new System.Windows.Forms.TrackBar();
            this.tabPage4 = new System.Windows.Forms.TabPage();
            this.chkTabStop = new System.Windows.Forms.CheckBox();
            this.label6 = new System.Windows.Forms.Label();
            this.trackFocusBackColorTrans = new System.Windows.Forms.TrackBar();
            this.cPickFocusBackColor = new DevAge.Windows.Forms.ColorPicker();
            this.label5 = new System.Windows.Forms.Label();
            this.tabPage3 = new System.Windows.Forms.TabPage();
            this.label7 = new System.Windows.Forms.Label();
            this.cbDashStyle = new DevAge.Windows.Forms.DevAgeComboBox();
            this.trackBorderWidth = new System.Windows.Forms.TrackBar();
            this.label4 = new System.Windows.Forms.Label();
            this.groupBox1.SuspendLayout();
            this.tabControl1.SuspendLayout();
            this.tabPage1.SuspendLayout();
            this.tabPage2.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.trackSelectionAlpha)).BeginInit();
            this.tabPage4.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.trackFocusBackColorTrans)).BeginInit();
            this.tabPage3.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.trackBorderWidth)).BeginInit();
            this.SuspendLayout();
            // 
            // grid1
            // 
            this.grid1.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.grid1.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
            this.grid1.Location = new System.Drawing.Point(4, 184);
            this.grid1.Name = "grid1";
            this.grid1.OptimizeMode = SourceGrid.CellOptimizeMode.ForRows;
            this.grid1.SelectionMode = SourceGrid.GridSelectionMode.Cell;
            this.grid1.Size = new System.Drawing.Size(432, 180);
            this.grid1.TabIndex = 0;
            this.grid1.TabStop = true;
            this.grid1.ToolTipText = "";
            // 
            // groupBox1
            // 
            this.groupBox1.Controls.Add(this.rdSelectionModeColumn);
            this.groupBox1.Controls.Add(this.rdSelectionModeRow);
            this.groupBox1.Controls.Add(this.rdSelectionModeCell);
            this.groupBox1.Location = new System.Drawing.Point(20, 8);
            this.groupBox1.Name = "groupBox1";
            this.groupBox1.Size = new System.Drawing.Size(200, 92);
            this.groupBox1.TabIndex = 1;
            this.groupBox1.TabStop = false;
            this.groupBox1.Text = "Grid.Selection.SelectionMode";
            // 
            // rdSelectionModeColumn
            // 
            this.rdSelectionModeColumn.Location = new System.Drawing.Point(8, 68);
            this.rdSelectionModeColumn.Name = "rdSelectionModeColumn";
            this.rdSelectionModeColumn.Size = new System.Drawing.Size(188, 20);
            this.rdSelectionModeColumn.TabIndex = 2;
            this.rdSelectionModeColumn.Text = "Column";
            this.rdSelectionModeColumn.CheckedChanged += new System.EventHandler(this.Check_Change);
            // 
            // rdSelectionModeRow
            // 
            this.rdSelectionModeRow.Location = new System.Drawing.Point(8, 44);
            this.rdSelectionModeRow.Name = "rdSelectionModeRow";
            this.rdSelectionModeRow.Size = new System.Drawing.Size(188, 20);
            this.rdSelectionModeRow.TabIndex = 1;
            this.rdSelectionModeRow.Text = "Row";
            this.rdSelectionModeRow.CheckedChanged += new System.EventHandler(this.Check_Change);
            // 
            // rdSelectionModeCell
            // 
            this.rdSelectionModeCell.Checked = true;
            this.rdSelectionModeCell.Location = new System.Drawing.Point(8, 20);
            this.rdSelectionModeCell.Name = "rdSelectionModeCell";
            this.rdSelectionModeCell.Size = new System.Drawing.Size(188, 20);
            this.rdSelectionModeCell.TabIndex = 0;
            this.rdSelectionModeCell.TabStop = true;
            this.rdSelectionModeCell.Text = "Cell";
            this.rdSelectionModeCell.CheckedChanged += new System.EventHandler(this.Check_Change);
            // 
            // chkEnableMultiSelection
            // 
            this.chkEnableMultiSelection.Checked = true;
            this.chkEnableMultiSelection.CheckState = System.Windows.Forms.CheckState.Checked;
            this.chkEnableMultiSelection.Location = new System.Drawing.Point(24, 112);
            this.chkEnableMultiSelection.Name = "chkEnableMultiSelection";
            this.chkEnableMultiSelection.Size = new System.Drawing.Size(216, 24);
            this.chkEnableMultiSelection.TabIndex = 2;
            this.chkEnableMultiSelection.Text = "Grid.Selection.EnableMultiSelection";
            this.chkEnableMultiSelection.CheckedChanged += new System.EventHandler(this.chkEnableMultiSelection_CheckedChanged);
            // 
            // cPickSelBackColor
            // 
            this.cPickSelBackColor.Location = new System.Drawing.Point(152, 4);
            this.cPickSelBackColor.Name = "cPickSelBackColor";
            this.cPickSelBackColor.SelectedColor = System.Drawing.Color.Black;
            this.cPickSelBackColor.Size = new System.Drawing.Size(176, 24);
            this.cPickSelBackColor.TabIndex = 3;
            // 
            // label1
            // 
            this.label1.Location = new System.Drawing.Point(4, 8);
            this.label1.Name = "label1";
            this.label1.Size = new System.Drawing.Size(108, 20);
            this.label1.TabIndex = 4;
            this.label1.Text = "Selection BackColor";
            // 
            // label3
            // 
            this.label3.Location = new System.Drawing.Point(13, 9);
            this.label3.Name = "label3";
            this.label3.Size = new System.Drawing.Size(68, 20);
            this.label3.TabIndex = 8;
            this.label3.Text = "Border Color";
            // 
            // cPckBorderColor
            // 
            this.cPckBorderColor.Location = new System.Drawing.Point(85, 5);
            this.cPckBorderColor.Name = "cPckBorderColor";
            this.cPckBorderColor.SelectedColor = System.Drawing.Color.Black;
            this.cPckBorderColor.Size = new System.Drawing.Size(164, 24);
            this.cPckBorderColor.TabIndex = 7;
            // 
            // tabControl1
            // 
            this.tabControl1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                        | System.Windows.Forms.AnchorStyles.Right)));
            this.tabControl1.Controls.Add(this.tabPage1);
            this.tabControl1.Controls.Add(this.tabPage2);
            this.tabControl1.Controls.Add(this.tabPage4);
            this.tabControl1.Controls.Add(this.tabPage3);
            this.tabControl1.Location = new System.Drawing.Point(4, 8);
            this.tabControl1.Name = "tabControl1";
            this.tabControl1.SelectedIndex = 0;
            this.tabControl1.Size = new System.Drawing.Size(432, 172);
            this.tabControl1.TabIndex = 9;
            // 
            // tabPage1
            // 
            this.tabPage1.Controls.Add(this.groupBox1);
            this.tabPage1.Controls.Add(this.chkEnableMultiSelection);
            this.tabPage1.Location = new System.Drawing.Point(4, 22);
            this.tabPage1.Name = "tabPage1";
            this.tabPage1.Size = new System.Drawing.Size(424, 146);
            this.tabPage1.TabIndex = 0;
            this.tabPage1.Text = "SelectionMode";
            // 
            // tabPage2
            // 
            this.tabPage2.Controls.Add(this.label2);
            this.tabPage2.Controls.Add(this.trackSelectionAlpha);
            this.tabPage2.Controls.Add(this.cPickSelBackColor);
            this.tabPage2.Controls.Add(this.label1);
            this.tabPage2.Location = new System.Drawing.Point(4, 22);
            this.tabPage2.Name = "tabPage2";
            this.tabPage2.Size = new System.Drawing.Size(424, 146);
            this.tabPage2.TabIndex = 1;
            this.tabPage2.Text = "Selection Visual Style";
            // 
            // label2
            // 
            this.label2.Location = new System.Drawing.Point(4, 40);
            this.label2.Name = "label2";
            this.label2.Size = new System.Drawing.Size(128, 20);
            this.label2.TabIndex = 10;
            this.label2.Text = "Selection Trasparency:";
            // 
            // trackSelectionAlpha
            // 
            this.trackSelectionAlpha.Location = new System.Drawing.Point(152, 32);
            this.trackSelectionAlpha.Maximum = 255;
            this.trackSelectionAlpha.Name = "trackSelectionAlpha";
            this.trackSelectionAlpha.Size = new System.Drawing.Size(176, 45);
            this.trackSelectionAlpha.TabIndex = 9;
            this.trackSelectionAlpha.TickFrequency = 10;
            this.trackSelectionAlpha.TickStyle = System.Windows.Forms.TickStyle.Both;
            // 
            // tabPage4
            // 
            this.tabPage4.Controls.Add(this.chkTabStop);
            this.tabPage4.Controls.Add(this.label6);
            this.tabPage4.Controls.Add(this.trackFocusBackColorTrans);
            this.tabPage4.Controls.Add(this.cPickFocusBackColor);
            this.tabPage4.Controls.Add(this.label5);
            this.tabPage4.Location = new System.Drawing.Point(4, 22);
            this.tabPage4.Name = "tabPage4";
            this.tabPage4.Size = new System.Drawing.Size(424, 146);
            this.tabPage4.TabIndex = 3;
            this.tabPage4.Text = "Focus Visual Style";
            // 
            // chkTabStop
            // 
            this.chkTabStop.Checked = true;
            this.chkTabStop.CheckState = System.Windows.Forms.CheckState.Checked;
            this.chkTabStop.Location = new System.Drawing.Point(8, 88);
            this.chkTabStop.Name = "chkTabStop";
            this.chkTabStop.Size = new System.Drawing.Size(104, 24);
            this.chkTabStop.TabIndex = 15;
            this.chkTabStop.Text = "Grid.TabStop";
            this.chkTabStop.CheckedChanged += new System.EventHandler(this.chkTabStop_CheckedChanged);
            // 
            // label6
            // 
            this.label6.Location = new System.Drawing.Point(4, 12);
            this.label6.Name = "label6";
            this.label6.Size = new System.Drawing.Size(108, 20);
            this.label6.TabIndex = 12;
            this.label6.Text = "Focus BackColor";
            // 
            // trackFocusBackColorTrans
            // 
            this.trackFocusBackColorTrans.Location = new System.Drawing.Point(152, 32);
            this.trackFocusBackColorTrans.Maximum = 255;
            this.trackFocusBackColorTrans.Name = "trackFocusBackColorTrans";
            this.trackFocusBackColorTrans.Size = new System.Drawing.Size(176, 45);
            this.trackFocusBackColorTrans.TabIndex = 13;
            this.trackFocusBackColorTrans.TickFrequency = 10;
            this.trackFocusBackColorTrans.TickStyle = System.Windows.Forms.TickStyle.Both;
            // 
            // cPickFocusBackColor
            // 
            this.cPickFocusBackColor.Location = new System.Drawing.Point(152, 8);
            this.cPickFocusBackColor.Name = "cPickFocusBackColor";
            this.cPickFocusBackColor.SelectedColor = System.Drawing.Color.Black;
            this.cPickFocusBackColor.Size = new System.Drawing.Size(176, 24);
            this.cPickFocusBackColor.TabIndex = 11;
            // 
            // label5
            // 
            this.label5.Location = new System.Drawing.Point(4, 44);
            this.label5.Name = "label5";
            this.label5.Size = new System.Drawing.Size(128, 20);
            this.label5.TabIndex = 14;
            this.label5.Text = "Focus Trasparency:";
            // 
            // tabPage3
            // 
            this.tabPage3.Controls.Add(this.label7);
            this.tabPage3.Controls.Add(this.cbDashStyle);
            this.tabPage3.Controls.Add(this.cPckBorderColor);
            this.tabPage3.Controls.Add(this.label3);
            this.tabPage3.Controls.Add(this.trackBorderWidth);
            this.tabPage3.Controls.Add(this.label4);
            this.tabPage3.Location = new System.Drawing.Point(4, 22);
            this.tabPage3.Name = "tabPage3";
            this.tabPage3.Size = new System.Drawing.Size(424, 146);
            this.tabPage3.TabIndex = 2;
            this.tabPage3.Text = "Selection Border";
            // 
            // label7
            // 
            this.label7.Location = new System.Drawing.Point(9, 89);
            this.label7.Name = "label7";
            this.label7.Size = new System.Drawing.Size(76, 20);
            this.label7.TabIndex = 15;
            this.label7.Text = "Dash Style";
            // 
            // cbDashStyle
            // 
            this.cbDashStyle.Location = new System.Drawing.Point(89, 89);
            this.cbDashStyle.Name = "cbDashStyle";
            this.cbDashStyle.Size = new System.Drawing.Size(164, 21);
            this.cbDashStyle.TabIndex = 14;
            this.cbDashStyle.TextChanged += new System.EventHandler(this.cbDashStyle_ValueChanged);
            // 
            // trackBorderWidth
            // 
            this.trackBorderWidth.Location = new System.Drawing.Point(89, 41);
            this.trackBorderWidth.Maximum = 20;
            this.trackBorderWidth.Name = "trackBorderWidth";
            this.trackBorderWidth.Size = new System.Drawing.Size(96, 45);
            this.trackBorderWidth.TabIndex = 11;
            // 
            // label4
            // 
            this.label4.Location = new System.Drawing.Point(9, 49);
            this.label4.Name = "label4";
            this.label4.Size = new System.Drawing.Size(76, 20);
            this.label4.TabIndex = 12;
            this.label4.Text = "Border Width:";
            // 
            // frmSample17
            // 
            this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
            this.ClientSize = new System.Drawing.Size(440, 371);
            this.Controls.Add(this.tabControl1);
            this.Controls.Add(this.grid1);
            this.Name = "frmSample17";
            this.Text = "Selection Style";
            this.Load += new System.EventHandler(this.frmSample17_Load);
            this.groupBox1.ResumeLayout(false);
            this.tabControl1.ResumeLayout(false);
            this.tabPage1.ResumeLayout(false);
            this.tabPage2.ResumeLayout(false);
            this.tabPage2.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.trackSelectionAlpha)).EndInit();
            this.tabPage4.ResumeLayout(false);
            this.tabPage4.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.trackFocusBackColorTrans)).EndInit();
            this.tabPage3.ResumeLayout(false);
            this.tabPage3.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.trackBorderWidth)).EndInit();
            this.ResumeLayout(false);

		}
示例#7
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.grid1                    = new SourceGrid.Grid();
     this.groupBox1                = new System.Windows.Forms.GroupBox();
     this.rdSelectionModeColumn    = new System.Windows.Forms.RadioButton();
     this.rdSelectionModeRow       = new System.Windows.Forms.RadioButton();
     this.rdSelectionModeCell      = new System.Windows.Forms.RadioButton();
     this.chkEnableMultiSelection  = new System.Windows.Forms.CheckBox();
     this.cPickSelBackColor        = new DevAge.Windows.Forms.ColorPicker();
     this.label1                   = new System.Windows.Forms.Label();
     this.label3                   = new System.Windows.Forms.Label();
     this.cPckBorderColor          = new DevAge.Windows.Forms.ColorPicker();
     this.tabControl1              = new System.Windows.Forms.TabControl();
     this.tabPage1                 = new System.Windows.Forms.TabPage();
     this.tabPage2                 = new System.Windows.Forms.TabPage();
     this.label2                   = new System.Windows.Forms.Label();
     this.trackSelectionAlpha      = new System.Windows.Forms.TrackBar();
     this.tabPage4                 = new System.Windows.Forms.TabPage();
     this.chkTabStop               = new System.Windows.Forms.CheckBox();
     this.label6                   = new System.Windows.Forms.Label();
     this.trackFocusBackColorTrans = new System.Windows.Forms.TrackBar();
     this.cPickFocusBackColor      = new DevAge.Windows.Forms.ColorPicker();
     this.label5                   = new System.Windows.Forms.Label();
     this.tabPage3                 = new System.Windows.Forms.TabPage();
     this.label7                   = new System.Windows.Forms.Label();
     this.cbDashStyle              = new DevAge.Windows.Forms.DevAgeComboBox();
     this.trackBorderWidth         = new System.Windows.Forms.TrackBar();
     this.label4                   = new System.Windows.Forms.Label();
     this.groupBox1.SuspendLayout();
     this.tabControl1.SuspendLayout();
     this.tabPage1.SuspendLayout();
     this.tabPage2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.trackSelectionAlpha)).BeginInit();
     this.tabPage4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.trackFocusBackColorTrans)).BeginInit();
     this.tabPage3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.trackBorderWidth)).BeginInit();
     this.SuspendLayout();
     //
     // grid1
     //
     this.grid1.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.grid1.BorderStyle   = System.Windows.Forms.BorderStyle.Fixed3D;
     this.grid1.Location      = new System.Drawing.Point(4, 184);
     this.grid1.Name          = "grid1";
     this.grid1.OptimizeMode  = SourceGrid.CellOptimizeMode.ForRows;
     this.grid1.SelectionMode = SourceGrid.GridSelectionMode.Cell;
     this.grid1.Size          = new System.Drawing.Size(432, 180);
     this.grid1.TabIndex      = 0;
     this.grid1.TabStop       = true;
     this.grid1.ToolTipText   = "";
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.rdSelectionModeColumn);
     this.groupBox1.Controls.Add(this.rdSelectionModeRow);
     this.groupBox1.Controls.Add(this.rdSelectionModeCell);
     this.groupBox1.Location = new System.Drawing.Point(20, 8);
     this.groupBox1.Name     = "groupBox1";
     this.groupBox1.Size     = new System.Drawing.Size(200, 92);
     this.groupBox1.TabIndex = 1;
     this.groupBox1.TabStop  = false;
     this.groupBox1.Text     = "Grid.Selection.SelectionMode";
     //
     // rdSelectionModeColumn
     //
     this.rdSelectionModeColumn.Location        = new System.Drawing.Point(8, 68);
     this.rdSelectionModeColumn.Name            = "rdSelectionModeColumn";
     this.rdSelectionModeColumn.Size            = new System.Drawing.Size(188, 20);
     this.rdSelectionModeColumn.TabIndex        = 2;
     this.rdSelectionModeColumn.Text            = "Column";
     this.rdSelectionModeColumn.CheckedChanged += new System.EventHandler(this.Check_Change);
     //
     // rdSelectionModeRow
     //
     this.rdSelectionModeRow.Location        = new System.Drawing.Point(8, 44);
     this.rdSelectionModeRow.Name            = "rdSelectionModeRow";
     this.rdSelectionModeRow.Size            = new System.Drawing.Size(188, 20);
     this.rdSelectionModeRow.TabIndex        = 1;
     this.rdSelectionModeRow.Text            = "Row";
     this.rdSelectionModeRow.CheckedChanged += new System.EventHandler(this.Check_Change);
     //
     // rdSelectionModeCell
     //
     this.rdSelectionModeCell.Checked         = true;
     this.rdSelectionModeCell.Location        = new System.Drawing.Point(8, 20);
     this.rdSelectionModeCell.Name            = "rdSelectionModeCell";
     this.rdSelectionModeCell.Size            = new System.Drawing.Size(188, 20);
     this.rdSelectionModeCell.TabIndex        = 0;
     this.rdSelectionModeCell.TabStop         = true;
     this.rdSelectionModeCell.Text            = "Cell";
     this.rdSelectionModeCell.CheckedChanged += new System.EventHandler(this.Check_Change);
     //
     // chkEnableMultiSelection
     //
     this.chkEnableMultiSelection.Checked         = true;
     this.chkEnableMultiSelection.CheckState      = System.Windows.Forms.CheckState.Checked;
     this.chkEnableMultiSelection.Location        = new System.Drawing.Point(24, 112);
     this.chkEnableMultiSelection.Name            = "chkEnableMultiSelection";
     this.chkEnableMultiSelection.Size            = new System.Drawing.Size(216, 24);
     this.chkEnableMultiSelection.TabIndex        = 2;
     this.chkEnableMultiSelection.Text            = "Grid.Selection.EnableMultiSelection";
     this.chkEnableMultiSelection.CheckedChanged += new System.EventHandler(this.chkEnableMultiSelection_CheckedChanged);
     //
     // cPickSelBackColor
     //
     this.cPickSelBackColor.Location      = new System.Drawing.Point(152, 4);
     this.cPickSelBackColor.Name          = "cPickSelBackColor";
     this.cPickSelBackColor.SelectedColor = System.Drawing.Color.Black;
     this.cPickSelBackColor.Size          = new System.Drawing.Size(176, 24);
     this.cPickSelBackColor.TabIndex      = 3;
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(4, 8);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(108, 20);
     this.label1.TabIndex = 4;
     this.label1.Text     = "Selection BackColor";
     //
     // label3
     //
     this.label3.Location = new System.Drawing.Point(13, 9);
     this.label3.Name     = "label3";
     this.label3.Size     = new System.Drawing.Size(68, 20);
     this.label3.TabIndex = 8;
     this.label3.Text     = "Border Color";
     //
     // cPckBorderColor
     //
     this.cPckBorderColor.Location      = new System.Drawing.Point(85, 5);
     this.cPckBorderColor.Name          = "cPckBorderColor";
     this.cPckBorderColor.SelectedColor = System.Drawing.Color.Black;
     this.cPckBorderColor.Size          = new System.Drawing.Size(164, 24);
     this.cPckBorderColor.TabIndex      = 7;
     //
     // tabControl1
     //
     this.tabControl1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                     | System.Windows.Forms.AnchorStyles.Right)));
     this.tabControl1.Controls.Add(this.tabPage1);
     this.tabControl1.Controls.Add(this.tabPage2);
     this.tabControl1.Controls.Add(this.tabPage4);
     this.tabControl1.Controls.Add(this.tabPage3);
     this.tabControl1.Location      = new System.Drawing.Point(4, 8);
     this.tabControl1.Name          = "tabControl1";
     this.tabControl1.SelectedIndex = 0;
     this.tabControl1.Size          = new System.Drawing.Size(432, 172);
     this.tabControl1.TabIndex      = 9;
     //
     // tabPage1
     //
     this.tabPage1.Controls.Add(this.groupBox1);
     this.tabPage1.Controls.Add(this.chkEnableMultiSelection);
     this.tabPage1.Location = new System.Drawing.Point(4, 22);
     this.tabPage1.Name     = "tabPage1";
     this.tabPage1.Size     = new System.Drawing.Size(424, 146);
     this.tabPage1.TabIndex = 0;
     this.tabPage1.Text     = "SelectionMode";
     //
     // tabPage2
     //
     this.tabPage2.Controls.Add(this.label2);
     this.tabPage2.Controls.Add(this.trackSelectionAlpha);
     this.tabPage2.Controls.Add(this.cPickSelBackColor);
     this.tabPage2.Controls.Add(this.label1);
     this.tabPage2.Location = new System.Drawing.Point(4, 22);
     this.tabPage2.Name     = "tabPage2";
     this.tabPage2.Size     = new System.Drawing.Size(424, 146);
     this.tabPage2.TabIndex = 1;
     this.tabPage2.Text     = "Selection Visual Style";
     //
     // label2
     //
     this.label2.Location = new System.Drawing.Point(4, 40);
     this.label2.Name     = "label2";
     this.label2.Size     = new System.Drawing.Size(128, 20);
     this.label2.TabIndex = 10;
     this.label2.Text     = "Selection Trasparency:";
     //
     // trackSelectionAlpha
     //
     this.trackSelectionAlpha.Location      = new System.Drawing.Point(152, 32);
     this.trackSelectionAlpha.Maximum       = 255;
     this.trackSelectionAlpha.Name          = "trackSelectionAlpha";
     this.trackSelectionAlpha.Size          = new System.Drawing.Size(176, 45);
     this.trackSelectionAlpha.TabIndex      = 9;
     this.trackSelectionAlpha.TickFrequency = 10;
     this.trackSelectionAlpha.TickStyle     = System.Windows.Forms.TickStyle.Both;
     //
     // tabPage4
     //
     this.tabPage4.Controls.Add(this.chkTabStop);
     this.tabPage4.Controls.Add(this.label6);
     this.tabPage4.Controls.Add(this.trackFocusBackColorTrans);
     this.tabPage4.Controls.Add(this.cPickFocusBackColor);
     this.tabPage4.Controls.Add(this.label5);
     this.tabPage4.Location = new System.Drawing.Point(4, 22);
     this.tabPage4.Name     = "tabPage4";
     this.tabPage4.Size     = new System.Drawing.Size(424, 146);
     this.tabPage4.TabIndex = 3;
     this.tabPage4.Text     = "Focus Visual Style";
     //
     // chkTabStop
     //
     this.chkTabStop.Checked         = true;
     this.chkTabStop.CheckState      = System.Windows.Forms.CheckState.Checked;
     this.chkTabStop.Location        = new System.Drawing.Point(8, 88);
     this.chkTabStop.Name            = "chkTabStop";
     this.chkTabStop.Size            = new System.Drawing.Size(104, 24);
     this.chkTabStop.TabIndex        = 15;
     this.chkTabStop.Text            = "Grid.TabStop";
     this.chkTabStop.CheckedChanged += new System.EventHandler(this.chkTabStop_CheckedChanged);
     //
     // label6
     //
     this.label6.Location = new System.Drawing.Point(4, 12);
     this.label6.Name     = "label6";
     this.label6.Size     = new System.Drawing.Size(108, 20);
     this.label6.TabIndex = 12;
     this.label6.Text     = "Focus BackColor";
     //
     // trackFocusBackColorTrans
     //
     this.trackFocusBackColorTrans.Location      = new System.Drawing.Point(152, 32);
     this.trackFocusBackColorTrans.Maximum       = 255;
     this.trackFocusBackColorTrans.Name          = "trackFocusBackColorTrans";
     this.trackFocusBackColorTrans.Size          = new System.Drawing.Size(176, 45);
     this.trackFocusBackColorTrans.TabIndex      = 13;
     this.trackFocusBackColorTrans.TickFrequency = 10;
     this.trackFocusBackColorTrans.TickStyle     = System.Windows.Forms.TickStyle.Both;
     //
     // cPickFocusBackColor
     //
     this.cPickFocusBackColor.Location      = new System.Drawing.Point(152, 8);
     this.cPickFocusBackColor.Name          = "cPickFocusBackColor";
     this.cPickFocusBackColor.SelectedColor = System.Drawing.Color.Black;
     this.cPickFocusBackColor.Size          = new System.Drawing.Size(176, 24);
     this.cPickFocusBackColor.TabIndex      = 11;
     //
     // label5
     //
     this.label5.Location = new System.Drawing.Point(4, 44);
     this.label5.Name     = "label5";
     this.label5.Size     = new System.Drawing.Size(128, 20);
     this.label5.TabIndex = 14;
     this.label5.Text     = "Focus Trasparency:";
     //
     // tabPage3
     //
     this.tabPage3.Controls.Add(this.label7);
     this.tabPage3.Controls.Add(this.cbDashStyle);
     this.tabPage3.Controls.Add(this.cPckBorderColor);
     this.tabPage3.Controls.Add(this.label3);
     this.tabPage3.Controls.Add(this.trackBorderWidth);
     this.tabPage3.Controls.Add(this.label4);
     this.tabPage3.Location = new System.Drawing.Point(4, 22);
     this.tabPage3.Name     = "tabPage3";
     this.tabPage3.Size     = new System.Drawing.Size(424, 146);
     this.tabPage3.TabIndex = 2;
     this.tabPage3.Text     = "Selection Border";
     //
     // label7
     //
     this.label7.Location = new System.Drawing.Point(9, 89);
     this.label7.Name     = "label7";
     this.label7.Size     = new System.Drawing.Size(76, 20);
     this.label7.TabIndex = 15;
     this.label7.Text     = "Dash Style";
     //
     // cbDashStyle
     //
     this.cbDashStyle.Location     = new System.Drawing.Point(89, 89);
     this.cbDashStyle.Name         = "cbDashStyle";
     this.cbDashStyle.Size         = new System.Drawing.Size(164, 21);
     this.cbDashStyle.TabIndex     = 14;
     this.cbDashStyle.TextChanged += new System.EventHandler(this.cbDashStyle_ValueChanged);
     //
     // trackBorderWidth
     //
     this.trackBorderWidth.Location = new System.Drawing.Point(89, 41);
     this.trackBorderWidth.Maximum  = 20;
     this.trackBorderWidth.Name     = "trackBorderWidth";
     this.trackBorderWidth.Size     = new System.Drawing.Size(96, 45);
     this.trackBorderWidth.TabIndex = 11;
     //
     // label4
     //
     this.label4.Location = new System.Drawing.Point(9, 49);
     this.label4.Name     = "label4";
     this.label4.Size     = new System.Drawing.Size(76, 20);
     this.label4.TabIndex = 12;
     this.label4.Text     = "Border Width:";
     //
     // frmSample17
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(440, 371);
     this.Controls.Add(this.tabControl1);
     this.Controls.Add(this.grid1);
     this.Name  = "frmSample17";
     this.Text  = "Selection Style";
     this.Load += new System.EventHandler(this.frmSample17_Load);
     this.groupBox1.ResumeLayout(false);
     this.tabControl1.ResumeLayout(false);
     this.tabPage1.ResumeLayout(false);
     this.tabPage2.ResumeLayout(false);
     this.tabPage2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.trackSelectionAlpha)).EndInit();
     this.tabPage4.ResumeLayout(false);
     this.tabPage4.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.trackFocusBackColorTrans)).EndInit();
     this.tabPage3.ResumeLayout(false);
     this.tabPage3.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.trackBorderWidth)).EndInit();
     this.ResumeLayout(false);
 }
示例#8
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(frmSample30));
            this.headerGroupBox1 = new DevAge.Windows.Forms.HeaderGroupBox();
            this.label8 = new System.Windows.Forms.Label();
            this.btShowError = new System.Windows.Forms.Button();
            this.label2 = new System.Windows.Forms.Label();
            this.label1 = new System.Windows.Forms.Label();
            this.numericUpDownExSample = new DevAge.Windows.Forms.DevAgeNumericUpDown();
            this.buttonMultiSelectionSample = new DevAge.Windows.Forms.ButtonMultiSelection();
            this.buttonMultiSelectionClose = new DevAge.Windows.Forms.ButtonMultiSelection();
            this.headerGroupBox2 = new DevAge.Windows.Forms.HeaderGroupBox();
            this.textBoxTypedStringAbc = new DevAge.Windows.Forms.DevAgeTextBox();
            this.label25 = new System.Windows.Forms.Label();
            this.textBoxTypedDateTime = new DevAge.Windows.Forms.DevAgeTextBox();
            this.label13 = new System.Windows.Forms.Label();
            this.textBoxTypedDoubleAllowNull = new DevAge.Windows.Forms.DevAgeMaskedTextBox();
            this.label12 = new System.Windows.Forms.Label();
            this.textBoxTypedPercent = new DevAge.Windows.Forms.DevAgeMaskedTextBox();
            this.label7 = new System.Windows.Forms.Label();
            this.textBoxTypedCurrency = new DevAge.Windows.Forms.DevAgeMaskedTextBox();
            this.label6 = new System.Windows.Forms.Label();
            this.textBoxTypedDecimal = new DevAge.Windows.Forms.DevAgeMaskedTextBox();
            this.label5 = new System.Windows.Forms.Label();
            this.textBoxTypedDouble = new DevAge.Windows.Forms.DevAgeMaskedTextBox();
            this.label4 = new System.Windows.Forms.Label();
            this.textBoxTypedInt = new DevAge.Windows.Forms.DevAgeMaskedTextBox();
            this.label3 = new System.Windows.Forms.Label();
            this.errorProviderSample = new System.Windows.Forms.ErrorProvider(this.components);
            this.headerGroupBox3 = new DevAge.Windows.Forms.HeaderGroupBox();
            this.linkLabel1 = new DevAge.Windows.Forms.LinkLabel();
            this.label11 = new System.Windows.Forms.Label();
            this.txtMailToBody = new System.Windows.Forms.TextBox();
            this.label10 = new System.Windows.Forms.Label();
            this.txtMailToSubject = new System.Windows.Forms.TextBox();
            this.label9 = new System.Windows.Forms.Label();
            this.txtMailToTo = new System.Windows.Forms.TextBox();
            this.imageListMenu = new System.Windows.Forms.ImageList(this.components);
            this.headerGroupBox4 = new DevAge.Windows.Forms.HeaderGroupBox();
            this.label18 = new System.Windows.Forms.Label();
            this.colorPickerLight = new DevAge.Windows.Forms.ColorPicker();
            this.label17 = new System.Windows.Forms.Label();
            this.colorPickerDark = new DevAge.Windows.Forms.ColorPicker();
            this.label16 = new System.Windows.Forms.Label();
            this.colorPickerBackColor = new DevAge.Windows.Forms.ColorPicker();
            this.rdSunken = new System.Windows.Forms.RadioButton();
            this.rdRaised = new System.Windows.Forms.RadioButton();
            this.txtDarkWidth = new DevAge.Windows.Forms.DevAgeMaskedTextBox();
            this.label15 = new System.Windows.Forms.Label();
            this.txtLightWidth = new DevAge.Windows.Forms.DevAgeMaskedTextBox();
            this.label14 = new System.Windows.Forms.Label();
            this.panelGradientSample = new System.Windows.Forms.Panel();
            this.cmbTypedEnumBorderStyle = new DevAge.Windows.Forms.DevAgeComboBox();
            this.headerGroupBox5 = new DevAge.Windows.Forms.HeaderGroupBox();
            this.cmbFlatStyle = new DevAge.Windows.Forms.DevAgeComboBox();
            this.lblFlatStyle = new System.Windows.Forms.Label();
            this.label21 = new System.Windows.Forms.Label();
            this.txtBoxUITypeEditorAnchorStyle = new DevAge.Windows.Forms.TextBoxUITypeEditor();
            this.label20 = new System.Windows.Forms.Label();
            this.cmbTypedControls = new DevAge.Windows.Forms.DevAgeComboBox();
            this.label19 = new System.Windows.Forms.Label();
            this.line1 = new DevAge.Windows.Forms.Line();
            this.line2 = new DevAge.Windows.Forms.Line();
            this.tabControl1 = new System.Windows.Forms.TabControl();
            this.tabPage5 = new System.Windows.Forms.TabPage();
            this.tabPage8 = new System.Windows.Forms.TabPage();
            this.linkLabel7 = new DevAge.Windows.Forms.LinkLabel();
            this.linkLabel6 = new DevAge.Windows.Forms.LinkLabel();
            this.linkLabel5 = new DevAge.Windows.Forms.LinkLabel();
            this.linkLabel4 = new DevAge.Windows.Forms.LinkLabel();
            this.linkLabel3 = new DevAge.Windows.Forms.LinkLabel();
            this.label24 = new System.Windows.Forms.Label();
            this.linkLabel2 = new DevAge.Windows.Forms.LinkLabel();
            this.tabPage1 = new System.Windows.Forms.TabPage();
            this.line4 = new DevAge.Windows.Forms.Line();
            this.line3 = new DevAge.Windows.Forms.Line();
            this.editableControlBase1 = new DevAge.Windows.Forms.EditableControlBase();
            this.label23 = new System.Windows.Forms.Label();
            this.label22 = new System.Windows.Forms.Label();
            this.tabPage7 = new System.Windows.Forms.TabPage();
            this.imageNavigator1 = new DevAge.Windows.Forms.ImageNavigator();
            this.tabPage2 = new System.Windows.Forms.TabPage();
            this.tabPage6 = new System.Windows.Forms.TabPage();
            this.lblCmbValue = new System.Windows.Forms.Label();
            this.label26 = new System.Windows.Forms.Label();
            this.cmbCustomDisplay = new DevAge.Windows.Forms.DevAgeComboBox();
            this.headerGroupBox1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.numericUpDownExSample)).BeginInit();
            this.headerGroupBox2.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.errorProviderSample)).BeginInit();
            this.headerGroupBox3.SuspendLayout();
            this.headerGroupBox4.SuspendLayout();
            this.headerGroupBox5.SuspendLayout();
            this.tabControl1.SuspendLayout();
            this.tabPage5.SuspendLayout();
            this.tabPage8.SuspendLayout();
            this.tabPage1.SuspendLayout();
            this.tabPage7.SuspendLayout();
            this.tabPage2.SuspendLayout();
            this.tabPage6.SuspendLayout();
            this.SuspendLayout();
            // 
            // headerGroupBox1
            // 
            this.headerGroupBox1.Controls.Add(this.label8);
            this.headerGroupBox1.Controls.Add(this.btShowError);
            this.headerGroupBox1.Controls.Add(this.label2);
            this.headerGroupBox1.Controls.Add(this.label1);
            this.headerGroupBox1.Controls.Add(this.numericUpDownExSample);
            this.headerGroupBox1.Controls.Add(this.buttonMultiSelectionSample);
            this.headerGroupBox1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.headerGroupBox1.Image = ((System.Drawing.Image)(resources.GetObject("headerGroupBox1.Image")));
            this.headerGroupBox1.Location = new System.Drawing.Point(34, 22);
            this.headerGroupBox1.Name = "headerGroupBox1";
            this.headerGroupBox1.Size = new System.Drawing.Size(476, 116);
            this.headerGroupBox1.TabIndex = 0;
            this.headerGroupBox1.TabStop = false;
            this.headerGroupBox1.Text = "HeaderGroupBox Sample";
            // 
            // label8
            // 
            this.label8.Location = new System.Drawing.Point(19, 86);
            this.label8.Name = "label8";
            this.label8.Size = new System.Drawing.Size(202, 25);
            this.label8.TabIndex = 5;
            this.label8.Text = "ErrorDialog";
            // 
            // btShowError
            // 
            this.btShowError.FlatStyle = System.Windows.Forms.FlatStyle.System;
            this.btShowError.Location = new System.Drawing.Point(235, 86);
            this.btShowError.Name = "btShowError";
            this.btShowError.Size = new System.Drawing.Size(89, 25);
            this.btShowError.TabIndex = 4;
            this.btShowError.Text = "ShowError";
            this.btShowError.Click += new System.EventHandler(this.btShowError_Click);
            // 
            // label2
            // 
            this.label2.Location = new System.Drawing.Point(19, 56);
            this.label2.Name = "label2";
            this.label2.Size = new System.Drawing.Size(202, 22);
            this.label2.TabIndex = 3;
            this.label2.Text = "NumericUpDownEx Sample";
            // 
            // label1
            // 
            this.label1.Location = new System.Drawing.Point(19, 26);
            this.label1.Name = "label1";
            this.label1.Size = new System.Drawing.Size(202, 21);
            this.label1.TabIndex = 2;
            this.label1.Text = "Button Multi Selection Sample";
            // 
            // numericUpDownExSample
            // 
            this.numericUpDownExSample.Location = new System.Drawing.Point(230, 56);
            this.numericUpDownExSample.Name = "numericUpDownExSample";
            this.numericUpDownExSample.Size = new System.Drawing.Size(168, 20);
            this.numericUpDownExSample.TabIndex = 1;
            // 
            // buttonMultiSelectionSample
            // 
            this.buttonMultiSelectionSample.BackColor = System.Drawing.Color.Transparent;
            this.buttonMultiSelectionSample.DialogResult = System.Windows.Forms.DialogResult.None;
            this.buttonMultiSelectionSample.Image = null;
            this.buttonMultiSelectionSample.ImageAlign = System.Drawing.ContentAlignment.MiddleCenter;
            this.buttonMultiSelectionSample.Location = new System.Drawing.Point(230, 22);
            this.buttonMultiSelectionSample.Name = "buttonMultiSelectionSample";
            this.buttonMultiSelectionSample.Size = new System.Drawing.Size(164, 24);
            this.buttonMultiSelectionSample.TabIndex = 0;
            this.buttonMultiSelectionSample.Text = "Hello";
            this.buttonMultiSelectionSample.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
            // 
            // buttonMultiSelectionClose
            // 
            this.buttonMultiSelectionClose.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
            this.buttonMultiSelectionClose.BackColor = System.Drawing.Color.Transparent;
            this.buttonMultiSelectionClose.CausesValidation = false;
            this.buttonMultiSelectionClose.DialogResult = System.Windows.Forms.DialogResult.None;
            this.buttonMultiSelectionClose.Image = null;
            this.buttonMultiSelectionClose.ImageAlign = System.Drawing.ContentAlignment.MiddleCenter;
            this.buttonMultiSelectionClose.Location = new System.Drawing.Point(380, 370);
            this.buttonMultiSelectionClose.Name = "buttonMultiSelectionClose";
            this.buttonMultiSelectionClose.Size = new System.Drawing.Size(90, 24);
            this.buttonMultiSelectionClose.TabIndex = 1;
            this.buttonMultiSelectionClose.Text = "Close";
            this.buttonMultiSelectionClose.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
            // 
            // headerGroupBox2
            // 
            this.headerGroupBox2.Controls.Add(this.textBoxTypedStringAbc);
            this.headerGroupBox2.Controls.Add(this.label25);
            this.headerGroupBox2.Controls.Add(this.textBoxTypedDateTime);
            this.headerGroupBox2.Controls.Add(this.label13);
            this.headerGroupBox2.Controls.Add(this.textBoxTypedDoubleAllowNull);
            this.headerGroupBox2.Controls.Add(this.label12);
            this.headerGroupBox2.Controls.Add(this.textBoxTypedPercent);
            this.headerGroupBox2.Controls.Add(this.label7);
            this.headerGroupBox2.Controls.Add(this.textBoxTypedCurrency);
            this.headerGroupBox2.Controls.Add(this.label6);
            this.headerGroupBox2.Controls.Add(this.textBoxTypedDecimal);
            this.headerGroupBox2.Controls.Add(this.label5);
            this.headerGroupBox2.Controls.Add(this.textBoxTypedDouble);
            this.headerGroupBox2.Controls.Add(this.label4);
            this.headerGroupBox2.Controls.Add(this.textBoxTypedInt);
            this.headerGroupBox2.Controls.Add(this.label3);
            this.headerGroupBox2.Image = ((System.Drawing.Image)(resources.GetObject("headerGroupBox2.Image")));
            this.headerGroupBox2.Location = new System.Drawing.Point(67, 34);
            this.headerGroupBox2.Name = "headerGroupBox2";
            this.headerGroupBox2.Size = new System.Drawing.Size(408, 263);
            this.headerGroupBox2.TabIndex = 2;
            this.headerGroupBox2.TabStop = false;
            this.headerGroupBox2.Text = "TextBoxTyped and TypeConverter Samples";
            // 
            // textBoxTypedStringAbc
            // 
            this.textBoxTypedStringAbc.Location = new System.Drawing.Point(187, 172);
            this.textBoxTypedStringAbc.Name = "textBoxTypedStringAbc";
            this.textBoxTypedStringAbc.Size = new System.Drawing.Size(187, 21);
            this.textBoxTypedStringAbc.TabIndex = 15;
            // 
            // label25
            // 
            this.label25.Location = new System.Drawing.Point(19, 172);
            this.label25.Name = "label25";
            this.label25.Size = new System.Drawing.Size(159, 22);
            this.label25.TabIndex = 14;
            this.label25.Text = "String only \"abc\"";
            // 
            // textBoxTypedDateTime
            // 
            this.textBoxTypedDateTime.Location = new System.Drawing.Point(187, 198);
            this.textBoxTypedDateTime.Name = "textBoxTypedDateTime";
            this.textBoxTypedDateTime.Size = new System.Drawing.Size(187, 21);
            this.textBoxTypedDateTime.TabIndex = 13;
            this.textBoxTypedDateTime.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // label13
            // 
            this.label13.Location = new System.Drawing.Point(19, 198);
            this.label13.Name = "label13";
            this.label13.Size = new System.Drawing.Size(159, 22);
            this.label13.TabIndex = 12;
            this.label13.Text = "DateTime (yyyy MM dd)";
            // 
            // textBoxTypedDoubleAllowNull
            // 
            this.textBoxTypedDoubleAllowNull.Location = new System.Drawing.Point(187, 146);
            this.textBoxTypedDoubleAllowNull.Name = "textBoxTypedDoubleAllowNull";
            this.textBoxTypedDoubleAllowNull.Size = new System.Drawing.Size(187, 21);
            this.textBoxTypedDoubleAllowNull.TabIndex = 11;
            this.textBoxTypedDoubleAllowNull.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // label12
            // 
            this.label12.Location = new System.Drawing.Point(19, 146);
            this.label12.Name = "label12";
            this.label12.Size = new System.Drawing.Size(159, 22);
            this.label12.TabIndex = 10;
            this.label12.Text = "Double (AllowNull)";
            // 
            // textBoxTypedPercent
            // 
            this.textBoxTypedPercent.Location = new System.Drawing.Point(187, 121);
            this.textBoxTypedPercent.Name = "textBoxTypedPercent";
            this.textBoxTypedPercent.Size = new System.Drawing.Size(187, 21);
            this.textBoxTypedPercent.TabIndex = 9;
            this.textBoxTypedPercent.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // label7
            // 
            this.label7.Location = new System.Drawing.Point(19, 121);
            this.label7.Name = "label7";
            this.label7.Size = new System.Drawing.Size(159, 21);
            this.label7.TabIndex = 8;
            this.label7.Text = "Double Percent";
            // 
            // textBoxTypedCurrency
            // 
            this.textBoxTypedCurrency.Location = new System.Drawing.Point(187, 97);
            this.textBoxTypedCurrency.Name = "textBoxTypedCurrency";
            this.textBoxTypedCurrency.Size = new System.Drawing.Size(187, 21);
            this.textBoxTypedCurrency.TabIndex = 7;
            this.textBoxTypedCurrency.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // label6
            // 
            this.label6.Location = new System.Drawing.Point(19, 97);
            this.label6.Name = "label6";
            this.label6.Size = new System.Drawing.Size(159, 19);
            this.label6.TabIndex = 6;
            this.label6.Text = "Decimal Currency";
            // 
            // textBoxTypedDecimal
            // 
            this.textBoxTypedDecimal.Location = new System.Drawing.Point(187, 73);
            this.textBoxTypedDecimal.Name = "textBoxTypedDecimal";
            this.textBoxTypedDecimal.Size = new System.Drawing.Size(187, 21);
            this.textBoxTypedDecimal.TabIndex = 5;
            this.textBoxTypedDecimal.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // label5
            // 
            this.label5.Location = new System.Drawing.Point(19, 73);
            this.label5.Name = "label5";
            this.label5.Size = new System.Drawing.Size(159, 22);
            this.label5.TabIndex = 4;
            this.label5.Text = "Decimal";
            // 
            // textBoxTypedDouble
            // 
            this.textBoxTypedDouble.Location = new System.Drawing.Point(187, 47);
            this.textBoxTypedDouble.Name = "textBoxTypedDouble";
            this.textBoxTypedDouble.Size = new System.Drawing.Size(187, 21);
            this.textBoxTypedDouble.TabIndex = 3;
            this.textBoxTypedDouble.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // label4
            // 
            this.label4.Location = new System.Drawing.Point(19, 47);
            this.label4.Name = "label4";
            this.label4.Size = new System.Drawing.Size(159, 22);
            this.label4.TabIndex = 2;
            this.label4.Text = "Double";
            // 
            // textBoxTypedInt
            // 
            this.textBoxTypedInt.Location = new System.Drawing.Point(187, 22);
            this.textBoxTypedInt.Name = "textBoxTypedInt";
            this.textBoxTypedInt.Size = new System.Drawing.Size(187, 21);
            this.textBoxTypedInt.TabIndex = 1;
            this.textBoxTypedInt.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            // 
            // label3
            // 
            this.label3.Location = new System.Drawing.Point(19, 22);
            this.label3.Name = "label3";
            this.label3.Size = new System.Drawing.Size(159, 21);
            this.label3.TabIndex = 0;
            this.label3.Text = "Int";
            // 
            // errorProviderSample
            // 
            this.errorProviderSample.ContainerControl = this;
            // 
            // headerGroupBox3
            // 
            this.headerGroupBox3.Controls.Add(this.linkLabel1);
            this.headerGroupBox3.Controls.Add(this.label11);
            this.headerGroupBox3.Controls.Add(this.txtMailToBody);
            this.headerGroupBox3.Controls.Add(this.label10);
            this.headerGroupBox3.Controls.Add(this.txtMailToSubject);
            this.headerGroupBox3.Controls.Add(this.label9);
            this.headerGroupBox3.Controls.Add(this.txtMailToTo);
            this.headerGroupBox3.Image = ((System.Drawing.Image)(resources.GetObject("headerGroupBox3.Image")));
            this.headerGroupBox3.Location = new System.Drawing.Point(34, 142);
            this.headerGroupBox3.Name = "headerGroupBox3";
            this.headerGroupBox3.Size = new System.Drawing.Size(408, 99);
            this.headerGroupBox3.TabIndex = 3;
            this.headerGroupBox3.TabStop = false;
            this.headerGroupBox3.Text = "MailTo Protocol Sample";
            // 
            // linkLabel1
            // 
            this.linkLabel1.BackColor = System.Drawing.SystemColors.Control;
            this.linkLabel1.BorderColor = System.Drawing.Color.Black;
            this.linkLabel1.BorderRound = 0D;
            this.linkLabel1.Cursor = System.Windows.Forms.Cursors.Hand;
            this.linkLabel1.EnableMouseEffect = true;
            this.linkLabel1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Underline, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.linkLabel1.ForeColor = System.Drawing.Color.Blue;
            this.linkLabel1.Image = ((System.Drawing.Image)(resources.GetObject("linkLabel1.Image")));
            this.linkLabel1.Location = new System.Drawing.Point(293, 73);
            this.linkLabel1.Name = "linkLabel1";
            this.linkLabel1.Size = new System.Drawing.Size(110, 22);
            this.linkLabel1.TabIndex = 7;
            this.linkLabel1.Text = "Open MailTo";
            this.linkLabel1.TextAlignment = DevAge.Drawing.ContentAlignment.BottomCenter;
            this.linkLabel1.Click += new System.EventHandler(this.btMailTo_Click);
            // 
            // label11
            // 
            this.label11.Location = new System.Drawing.Point(19, 73);
            this.label11.Name = "label11";
            this.label11.Size = new System.Drawing.Size(87, 22);
            this.label11.TabIndex = 5;
            this.label11.Text = "Body";
            // 
            // txtMailToBody
            // 
            this.txtMailToBody.Location = new System.Drawing.Point(106, 73);
            this.txtMailToBody.Name = "txtMailToBody";
            this.txtMailToBody.Size = new System.Drawing.Size(182, 21);
            this.txtMailToBody.TabIndex = 4;
            this.txtMailToBody.Text = "Hello World !";
            // 
            // label10
            // 
            this.label10.Location = new System.Drawing.Point(19, 47);
            this.label10.Name = "label10";
            this.label10.Size = new System.Drawing.Size(87, 22);
            this.label10.TabIndex = 3;
            this.label10.Text = "Subject";
            // 
            // txtMailToSubject
            // 
            this.txtMailToSubject.Location = new System.Drawing.Point(106, 47);
            this.txtMailToSubject.Name = "txtMailToSubject";
            this.txtMailToSubject.Size = new System.Drawing.Size(182, 21);
            this.txtMailToSubject.TabIndex = 2;
            this.txtMailToSubject.Text = "Hello";
            // 
            // label9
            // 
            this.label9.Location = new System.Drawing.Point(19, 22);
            this.label9.Name = "label9";
            this.label9.Size = new System.Drawing.Size(87, 21);
            this.label9.TabIndex = 1;
            this.label9.Text = "To";
            // 
            // txtMailToTo
            // 
            this.txtMailToTo.Location = new System.Drawing.Point(106, 22);
            this.txtMailToTo.Name = "txtMailToTo";
            this.txtMailToTo.Size = new System.Drawing.Size(182, 21);
            this.txtMailToTo.TabIndex = 0;
            this.txtMailToTo.Text = "*****@*****.**";
            // 
            // imageListMenu
            // 
            this.imageListMenu.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageListMenu.ImageStream")));
            this.imageListMenu.TransparentColor = System.Drawing.Color.Transparent;
            this.imageListMenu.Images.SetKeyName(0, "");
            this.imageListMenu.Images.SetKeyName(1, "");
            this.imageListMenu.Images.SetKeyName(2, "");
            this.imageListMenu.Images.SetKeyName(3, "");
            // 
            // headerGroupBox4
            // 
            this.headerGroupBox4.Controls.Add(this.label18);
            this.headerGroupBox4.Controls.Add(this.colorPickerLight);
            this.headerGroupBox4.Controls.Add(this.label17);
            this.headerGroupBox4.Controls.Add(this.colorPickerDark);
            this.headerGroupBox4.Controls.Add(this.label16);
            this.headerGroupBox4.Controls.Add(this.colorPickerBackColor);
            this.headerGroupBox4.Controls.Add(this.rdSunken);
            this.headerGroupBox4.Controls.Add(this.rdRaised);
            this.headerGroupBox4.Controls.Add(this.txtDarkWidth);
            this.headerGroupBox4.Controls.Add(this.label15);
            this.headerGroupBox4.Controls.Add(this.txtLightWidth);
            this.headerGroupBox4.Controls.Add(this.label14);
            this.headerGroupBox4.Controls.Add(this.panelGradientSample);
            this.headerGroupBox4.Image = null;
            this.headerGroupBox4.Location = new System.Drawing.Point(91, 34);
            this.headerGroupBox4.Name = "headerGroupBox4";
            this.headerGroupBox4.Size = new System.Drawing.Size(394, 164);
            this.headerGroupBox4.TabIndex = 4;
            this.headerGroupBox4.TabStop = false;
            this.headerGroupBox4.Text = "Gradient 3D Border";
            // 
            // label18
            // 
            this.label18.Location = new System.Drawing.Point(10, 129);
            this.label18.Name = "label18";
            this.label18.Size = new System.Drawing.Size(153, 22);
            this.label18.TabIndex = 13;
            this.label18.Text = "LightColor";
            // 
            // colorPickerLight
            // 
            this.colorPickerLight.Location = new System.Drawing.Point(163, 129);
            this.colorPickerLight.Name = "colorPickerLight";
            this.colorPickerLight.SelectedColor = System.Drawing.Color.Azure;
            this.colorPickerLight.Size = new System.Drawing.Size(202, 22);
            this.colorPickerLight.TabIndex = 12;
            this.colorPickerLight.SelectedColorChanged += new System.EventHandler(this.colorPickerLight_SelectedColorChanged);
            // 
            // label17
            // 
            this.label17.Location = new System.Drawing.Point(10, 103);
            this.label17.Name = "label17";
            this.label17.Size = new System.Drawing.Size(153, 22);
            this.label17.TabIndex = 11;
            this.label17.Text = "DarkColor";
            // 
            // colorPickerDark
            // 
            this.colorPickerDark.Location = new System.Drawing.Point(163, 103);
            this.colorPickerDark.Name = "colorPickerDark";
            this.colorPickerDark.SelectedColor = System.Drawing.Color.CornflowerBlue;
            this.colorPickerDark.Size = new System.Drawing.Size(202, 22);
            this.colorPickerDark.TabIndex = 10;
            this.colorPickerDark.SelectedColorChanged += new System.EventHandler(this.colorPickerDark_SelectedColorChanged);
            // 
            // label16
            // 
            this.label16.Location = new System.Drawing.Point(10, 78);
            this.label16.Name = "label16";
            this.label16.Size = new System.Drawing.Size(153, 21);
            this.label16.TabIndex = 9;
            this.label16.Text = "BackColor";
            // 
            // colorPickerBackColor
            // 
            this.colorPickerBackColor.Location = new System.Drawing.Point(163, 78);
            this.colorPickerBackColor.Name = "colorPickerBackColor";
            this.colorPickerBackColor.SelectedColor = System.Drawing.Color.LightSteelBlue;
            this.colorPickerBackColor.Size = new System.Drawing.Size(202, 21);
            this.colorPickerBackColor.TabIndex = 8;
            this.colorPickerBackColor.SelectedColorChanged += new System.EventHandler(this.colorPickerBackColor_SelectedColorChanged);
            // 
            // rdSunken
            // 
            this.rdSunken.FlatStyle = System.Windows.Forms.FlatStyle.System;
            this.rdSunken.Location = new System.Drawing.Point(154, 47);
            this.rdSunken.Name = "rdSunken";
            this.rdSunken.Size = new System.Drawing.Size(105, 26);
            this.rdSunken.TabIndex = 7;
            this.rdSunken.Text = "Sunken";
            this.rdSunken.CheckedChanged += new System.EventHandler(this.rdSunken_CheckedChanged);
            // 
            // rdRaised
            // 
            this.rdRaised.Checked = true;
            this.rdRaised.FlatStyle = System.Windows.Forms.FlatStyle.System;
            this.rdRaised.Location = new System.Drawing.Point(154, 22);
            this.rdRaised.Name = "rdRaised";
            this.rdRaised.Size = new System.Drawing.Size(105, 25);
            this.rdRaised.TabIndex = 6;
            this.rdRaised.TabStop = true;
            this.rdRaised.Text = "Raised";
            this.rdRaised.CheckedChanged += new System.EventHandler(this.rdRaised_CheckedChanged);
            // 
            // txtDarkWidth
            // 
            this.txtDarkWidth.Location = new System.Drawing.Point(96, 47);
            this.txtDarkWidth.Name = "txtDarkWidth";
            this.txtDarkWidth.Size = new System.Drawing.Size(48, 21);
            this.txtDarkWidth.TabIndex = 5;
            this.txtDarkWidth.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            this.txtDarkWidth.Validated += new System.EventHandler(this.txtDarkWidth_Validated);
            // 
            // label15
            // 
            this.label15.Location = new System.Drawing.Point(10, 47);
            this.label15.Name = "label15";
            this.label15.Size = new System.Drawing.Size(81, 22);
            this.label15.TabIndex = 4;
            this.label15.Text = "Dark Width:";
            // 
            // txtLightWidth
            // 
            this.txtLightWidth.Location = new System.Drawing.Point(96, 22);
            this.txtLightWidth.Name = "txtLightWidth";
            this.txtLightWidth.Size = new System.Drawing.Size(48, 21);
            this.txtLightWidth.TabIndex = 3;
            this.txtLightWidth.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            this.txtLightWidth.Validated += new System.EventHandler(this.txtLightWidth_Validated);
            // 
            // label14
            // 
            this.label14.Location = new System.Drawing.Point(10, 22);
            this.label14.Name = "label14";
            this.label14.Size = new System.Drawing.Size(81, 21);
            this.label14.TabIndex = 2;
            this.label14.Text = "Light Width:";
            // 
            // panelGradientSample
            // 
            this.panelGradientSample.Location = new System.Drawing.Point(264, 30);
            this.panelGradientSample.Name = "panelGradientSample";
            this.panelGradientSample.Size = new System.Drawing.Size(120, 30);
            this.panelGradientSample.TabIndex = 0;
            this.panelGradientSample.Paint += new System.Windows.Forms.PaintEventHandler(this.panelGradientSample_Paint);
            // 
            // cmbTypedEnumBorderStyle
            // 
            this.cmbTypedEnumBorderStyle.Location = new System.Drawing.Point(182, 22);
            this.cmbTypedEnumBorderStyle.Name = "cmbTypedEnumBorderStyle";
            this.cmbTypedEnumBorderStyle.Size = new System.Drawing.Size(188, 20);
            this.cmbTypedEnumBorderStyle.TabIndex = 5;
            // 
            // headerGroupBox5
            // 
            this.headerGroupBox5.Controls.Add(this.cmbFlatStyle);
            this.headerGroupBox5.Controls.Add(this.lblFlatStyle);
            this.headerGroupBox5.Controls.Add(this.label21);
            this.headerGroupBox5.Controls.Add(this.txtBoxUITypeEditorAnchorStyle);
            this.headerGroupBox5.Controls.Add(this.label20);
            this.headerGroupBox5.Controls.Add(this.cmbTypedControls);
            this.headerGroupBox5.Controls.Add(this.label19);
            this.headerGroupBox5.Controls.Add(this.cmbTypedEnumBorderStyle);
            this.headerGroupBox5.Image = null;
            this.headerGroupBox5.Location = new System.Drawing.Point(10, 22);
            this.headerGroupBox5.Name = "headerGroupBox5";
            this.headerGroupBox5.Size = new System.Drawing.Size(513, 150);
            this.headerGroupBox5.TabIndex = 6;
            this.headerGroupBox5.TabStop = false;
            this.headerGroupBox5.Text = "Enums";
            // 
            // cmbFlatStyle
            // 
            this.cmbFlatStyle.Location = new System.Drawing.Point(182, 52);
            this.cmbFlatStyle.Name = "cmbFlatStyle";
            this.cmbFlatStyle.Size = new System.Drawing.Size(188, 20);
            this.cmbFlatStyle.TabIndex = 12;
            // 
            // lblFlatStyle
            // 
            this.lblFlatStyle.Location = new System.Drawing.Point(10, 55);
            this.lblFlatStyle.Name = "lblFlatStyle";
            this.lblFlatStyle.Size = new System.Drawing.Size(168, 17);
            this.lblFlatStyle.TabIndex = 11;
            this.lblFlatStyle.Text = "FlatStyle";
            // 
            // label21
            // 
            this.label21.Location = new System.Drawing.Point(10, 116);
            this.label21.Name = "label21";
            this.label21.Size = new System.Drawing.Size(168, 18);
            this.label21.TabIndex = 10;
            this.label21.Text = "UITypeEditor AnchorStyle";
            // 
            // txtBoxUITypeEditorAnchorStyle
            // 
            this.txtBoxUITypeEditorAnchorStyle.BackColor = System.Drawing.Color.Transparent;
            this.txtBoxUITypeEditorAnchorStyle.Location = new System.Drawing.Point(182, 112);
            this.txtBoxUITypeEditorAnchorStyle.Name = "txtBoxUITypeEditorAnchorStyle";
            this.txtBoxUITypeEditorAnchorStyle.Size = new System.Drawing.Size(188, 22);
            this.txtBoxUITypeEditorAnchorStyle.TabIndex = 9;
            // 
            // label20
            // 
            this.label20.Location = new System.Drawing.Point(10, 85);
            this.label20.Name = "label20";
            this.label20.Size = new System.Drawing.Size(168, 17);
            this.label20.TabIndex = 8;
            this.label20.Text = "ComboBox Controls";
            // 
            // cmbTypedControls
            // 
            this.cmbTypedControls.Location = new System.Drawing.Point(182, 82);
            this.cmbTypedControls.Name = "cmbTypedControls";
            this.cmbTypedControls.Size = new System.Drawing.Size(188, 20);
            this.cmbTypedControls.TabIndex = 7;
            // 
            // label19
            // 
            this.label19.Location = new System.Drawing.Point(10, 25);
            this.label19.Name = "label19";
            this.label19.Size = new System.Drawing.Size(168, 17);
            this.label19.TabIndex = 6;
            this.label19.Text = "Enum BorderStyle";
            // 
            // line1
            // 
            this.line1.DashStyle = System.Drawing.Drawing2D.DashStyle.Solid;
            this.line1.FirstColor = System.Drawing.SystemColors.ControlDark;
            this.line1.LineStyle = DevAge.Windows.Forms.LineStyle.Horizontal;
            this.line1.Location = new System.Drawing.Point(144, 289);
            this.line1.Name = "line1";
            this.line1.SecondColor = System.Drawing.SystemColors.ControlLightLight;
            this.line1.Size = new System.Drawing.Size(48, 2);
            this.line1.TabIndex = 13;
            this.line1.TabStop = false;
            // 
            // line2
            // 
            this.line2.DashStyle = System.Drawing.Drawing2D.DashStyle.Solid;
            this.line2.FirstColor = System.Drawing.SystemColors.ControlDark;
            this.line2.LineStyle = DevAge.Windows.Forms.LineStyle.Vertical;
            this.line2.Location = new System.Drawing.Point(216, 293);
            this.line2.Name = "line2";
            this.line2.SecondColor = System.Drawing.SystemColors.ControlLightLight;
            this.line2.Size = new System.Drawing.Size(2, 20);
            this.line2.TabIndex = 14;
            this.line2.TabStop = false;
            // 
            // tabControl1
            // 
            this.tabControl1.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.tabControl1.Controls.Add(this.tabPage5);
            this.tabControl1.Controls.Add(this.tabPage8);
            this.tabControl1.Controls.Add(this.tabPage1);
            this.tabControl1.Controls.Add(this.tabPage7);
            this.tabControl1.Controls.Add(this.tabPage2);
            this.tabControl1.Controls.Add(this.tabPage6);
            this.tabControl1.Location = new System.Drawing.Point(14, 13);
            this.tabControl1.Name = "tabControl1";
            this.tabControl1.SelectedIndex = 0;
            this.tabControl1.Size = new System.Drawing.Size(453, 344);
            this.tabControl1.TabIndex = 15;
            // 
            // tabPage5
            // 
            this.tabPage5.Controls.Add(this.headerGroupBox2);
            this.tabPage5.Location = new System.Drawing.Point(4, 22);
            this.tabPage5.Name = "tabPage5";
            this.tabPage5.Size = new System.Drawing.Size(445, 318);
            this.tabPage5.TabIndex = 4;
            this.tabPage5.Text = "TextBoxTyped";
            // 
            // tabPage8
            // 
            this.tabPage8.Controls.Add(this.linkLabel7);
            this.tabPage8.Controls.Add(this.linkLabel6);
            this.tabPage8.Controls.Add(this.linkLabel5);
            this.tabPage8.Controls.Add(this.linkLabel4);
            this.tabPage8.Controls.Add(this.linkLabel3);
            this.tabPage8.Controls.Add(this.label24);
            this.tabPage8.Controls.Add(this.linkLabel2);
            this.tabPage8.Location = new System.Drawing.Point(4, 22);
            this.tabPage8.Name = "tabPage8";
            this.tabPage8.Size = new System.Drawing.Size(540, 349);
            this.tabPage8.TabIndex = 7;
            this.tabPage8.Text = "LinkLabel";
            // 
            // linkLabel7
            // 
            this.linkLabel7.BackColor = System.Drawing.Color.RoyalBlue;
            this.linkLabel7.BorderColor = System.Drawing.Color.MidnightBlue;
            this.linkLabel7.BorderRound = 0.2D;
            this.linkLabel7.BorderWidth = 1;
            this.linkLabel7.Cursor = System.Windows.Forms.Cursors.Default;
            this.linkLabel7.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.linkLabel7.ForeColor = System.Drawing.Color.White;
            this.linkLabel7.Image = ((System.Drawing.Image)(resources.GetObject("linkLabel7.Image")));
            this.linkLabel7.ImageAlignment = DevAge.Drawing.ContentAlignment.TopRight;
            this.linkLabel7.Location = new System.Drawing.Point(274, 142);
            this.linkLabel7.Name = "linkLabel7";
            this.linkLabel7.Size = new System.Drawing.Size(86, 43);
            this.linkLabel7.TabIndex = 30;
            this.linkLabel7.Text = "Test";
            this.linkLabel7.TextAlignment = DevAge.Drawing.ContentAlignment.BottomCenter;
            // 
            // linkLabel6
            // 
            this.linkLabel6.BackColor = System.Drawing.Color.Khaki;
            this.linkLabel6.BorderColor = System.Drawing.Color.Goldenrod;
            this.linkLabel6.BorderRound = 0.3D;
            this.linkLabel6.BorderWidth = 3;
            this.linkLabel6.Cursor = System.Windows.Forms.Cursors.Hand;
            this.linkLabel6.EnableMouseEffect = true;
            this.linkLabel6.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Underline, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.linkLabel6.ForeColor = System.Drawing.Color.Blue;
            this.linkLabel6.ImageAlignment = DevAge.Drawing.ContentAlignment.TopCenter;
            this.linkLabel6.Location = new System.Drawing.Point(259, 86);
            this.linkLabel6.Name = "linkLabel6";
            this.linkLabel6.Size = new System.Drawing.Size(115, 39);
            this.linkLabel6.TabIndex = 29;
            this.linkLabel6.Text = "Sample Link";
            this.linkLabel6.TextAlignment = DevAge.Drawing.ContentAlignment.MiddleCenter;
            // 
            // linkLabel5
            // 
            this.linkLabel5.BackColor = System.Drawing.SystemColors.Control;
            this.linkLabel5.BorderColor = System.Drawing.Color.Black;
            this.linkLabel5.BorderRound = 0.3D;
            this.linkLabel5.Cursor = System.Windows.Forms.Cursors.Hand;
            this.linkLabel5.EnableMouseEffect = true;
            this.linkLabel5.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Underline, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.linkLabel5.ForeColor = System.Drawing.Color.Blue;
            this.linkLabel5.Image = ((System.Drawing.Image)(resources.GetObject("linkLabel5.Image")));
            this.linkLabel5.ImageAlignment = DevAge.Drawing.ContentAlignment.TopCenter;
            this.linkLabel5.Location = new System.Drawing.Point(125, 99);
            this.linkLabel5.Name = "linkLabel5";
            this.linkLabel5.Size = new System.Drawing.Size(86, 43);
            this.linkLabel5.TabIndex = 28;
            this.linkLabel5.Text = "Sample Link";
            this.linkLabel5.TextAlignment = DevAge.Drawing.ContentAlignment.BottomCenter;
            // 
            // linkLabel4
            // 
            this.linkLabel4.BackColor = System.Drawing.Color.Khaki;
            this.linkLabel4.BorderColor = System.Drawing.Color.Goldenrod;
            this.linkLabel4.BorderRound = 0.3D;
            this.linkLabel4.BorderWidth = 1;
            this.linkLabel4.Cursor = System.Windows.Forms.Cursors.Hand;
            this.linkLabel4.EnableMouseEffect = true;
            this.linkLabel4.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Underline, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.linkLabel4.ForeColor = System.Drawing.Color.Blue;
            this.linkLabel4.ImageAlignment = DevAge.Drawing.ContentAlignment.TopCenter;
            this.linkLabel4.Location = new System.Drawing.Point(317, 34);
            this.linkLabel4.Name = "linkLabel4";
            this.linkLabel4.Size = new System.Drawing.Size(105, 31);
            this.linkLabel4.TabIndex = 27;
            this.linkLabel4.Text = "Sample Link";
            this.linkLabel4.TextAlignment = DevAge.Drawing.ContentAlignment.MiddleCenter;
            // 
            // linkLabel3
            // 
            this.linkLabel3.BackColor = System.Drawing.SystemColors.Control;
            this.linkLabel3.BorderColor = System.Drawing.Color.Black;
            this.linkLabel3.BorderRound = 0D;
            this.linkLabel3.Cursor = System.Windows.Forms.Cursors.Hand;
            this.linkLabel3.Enabled = false;
            this.linkLabel3.EnableMouseEffect = true;
            this.linkLabel3.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Underline, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.linkLabel3.ForeColor = System.Drawing.Color.Blue;
            this.linkLabel3.Image = ((System.Drawing.Image)(resources.GetObject("linkLabel3.Image")));
            this.linkLabel3.ImageAlignment = DevAge.Drawing.ContentAlignment.TopCenter;
            this.linkLabel3.Location = new System.Drawing.Point(211, 22);
            this.linkLabel3.Name = "linkLabel3";
            this.linkLabel3.Size = new System.Drawing.Size(87, 43);
            this.linkLabel3.TabIndex = 26;
            this.linkLabel3.Text = "Sample Link";
            this.linkLabel3.TextAlignment = DevAge.Drawing.ContentAlignment.BottomCenter;
            // 
            // label24
            // 
            this.label24.Location = new System.Drawing.Point(29, 30);
            this.label24.Name = "label24";
            this.label24.Size = new System.Drawing.Size(86, 25);
            this.label24.TabIndex = 25;
            this.label24.Text = "Link Label";
            // 
            // linkLabel2
            // 
            this.linkLabel2.BackColor = System.Drawing.SystemColors.Control;
            this.linkLabel2.BorderColor = System.Drawing.Color.Black;
            this.linkLabel2.BorderRound = 0D;
            this.linkLabel2.Cursor = System.Windows.Forms.Cursors.Hand;
            this.linkLabel2.EnableMouseEffect = true;
            this.linkLabel2.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Underline, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.linkLabel2.ForeColor = System.Drawing.Color.Blue;
            this.linkLabel2.Image = ((System.Drawing.Image)(resources.GetObject("linkLabel2.Image")));
            this.linkLabel2.ImageAlignment = DevAge.Drawing.ContentAlignment.TopCenter;
            this.linkLabel2.Location = new System.Drawing.Point(120, 22);
            this.linkLabel2.Name = "linkLabel2";
            this.linkLabel2.Size = new System.Drawing.Size(86, 43);
            this.linkLabel2.TabIndex = 24;
            this.linkLabel2.Text = "Sample Link";
            this.linkLabel2.TextAlignment = DevAge.Drawing.ContentAlignment.BottomCenter;
            // 
            // tabPage1
            // 
            this.tabPage1.Controls.Add(this.line4);
            this.tabPage1.Controls.Add(this.line3);
            this.tabPage1.Controls.Add(this.editableControlBase1);
            this.tabPage1.Controls.Add(this.label23);
            this.tabPage1.Controls.Add(this.label22);
            this.tabPage1.Controls.Add(this.headerGroupBox1);
            this.tabPage1.Controls.Add(this.headerGroupBox3);
            this.tabPage1.Controls.Add(this.line1);
            this.tabPage1.Controls.Add(this.line2);
            this.tabPage1.Location = new System.Drawing.Point(4, 22);
            this.tabPage1.Name = "tabPage1";
            this.tabPage1.Size = new System.Drawing.Size(540, 349);
            this.tabPage1.TabIndex = 0;
            this.tabPage1.Text = "Others";
            // 
            // line4
            // 
            this.line4.DashStyle = System.Drawing.Drawing2D.DashStyle.DashDot;
            this.line4.FirstColor = System.Drawing.SystemColors.ControlDark;
            this.line4.LineStyle = DevAge.Windows.Forms.LineStyle.Vertical;
            this.line4.Location = new System.Drawing.Point(230, 276);
            this.line4.Name = "line4";
            this.line4.SecondColor = System.Drawing.SystemColors.ControlLightLight;
            this.line4.Size = new System.Drawing.Size(2, 36);
            this.line4.TabIndex = 19;
            this.line4.TabStop = false;
            // 
            // line3
            // 
            this.line3.DashStyle = System.Drawing.Drawing2D.DashStyle.Dash;
            this.line3.FirstColor = System.Drawing.SystemColors.ControlDark;
            this.line3.LineStyle = DevAge.Windows.Forms.LineStyle.Horizontal;
            this.line3.Location = new System.Drawing.Point(139, 297);
            this.line3.Name = "line3";
            this.line3.SecondColor = System.Drawing.SystemColors.ControlLightLight;
            this.line3.Size = new System.Drawing.Size(48, 2);
            this.line3.TabIndex = 18;
            this.line3.TabStop = false;
            // 
            // editableControlBase1
            // 
            this.editableControlBase1.Location = new System.Drawing.Point(130, 250);
            this.editableControlBase1.Name = "editableControlBase1";
            this.editableControlBase1.Size = new System.Drawing.Size(72, 21);
            this.editableControlBase1.TabIndex = 17;
            // 
            // label23
            // 
            this.label23.Location = new System.Drawing.Point(34, 250);
            this.label23.Name = "label23";
            this.label23.Size = new System.Drawing.Size(96, 25);
            this.label23.TabIndex = 16;
            this.label23.Text = "EditablePanel";
            // 
            // label22
            // 
            this.label22.Location = new System.Drawing.Point(38, 289);
            this.label22.Name = "label22";
            this.label22.Size = new System.Drawing.Size(92, 24);
            this.label22.TabIndex = 15;
            this.label22.Text = "Line Control";
            // 
            // tabPage7
            // 
            this.tabPage7.Controls.Add(this.imageNavigator1);
            this.tabPage7.Location = new System.Drawing.Point(4, 22);
            this.tabPage7.Name = "tabPage7";
            this.tabPage7.Size = new System.Drawing.Size(540, 349);
            this.tabPage7.TabIndex = 6;
            this.tabPage7.Text = "Image Navigator (Slide)";
            // 
            // imageNavigator1
            // 
            this.imageNavigator1.CurrentImageIndex = -1;
            this.imageNavigator1.ImageAreaBorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.imageNavigator1.ImageAreaSize = new System.Drawing.Size(187, 60);
            this.imageNavigator1.ImageAreaSizeMode = System.Windows.Forms.PictureBoxSizeMode.Normal;
            this.imageNavigator1.Location = new System.Drawing.Point(197, 56);
            this.imageNavigator1.Name = "imageNavigator1";
            this.imageNavigator1.Size = new System.Drawing.Size(187, 95);
            this.imageNavigator1.StatusFormat = "{0} of {1}";
            this.imageNavigator1.TabIndex = 2;
            // 
            // tabPage2
            // 
            this.tabPage2.Controls.Add(this.headerGroupBox4);
            this.tabPage2.Location = new System.Drawing.Point(4, 22);
            this.tabPage2.Name = "tabPage2";
            this.tabPage2.Size = new System.Drawing.Size(540, 349);
            this.tabPage2.TabIndex = 1;
            this.tabPage2.Text = "Gradient 3D Border";
            // 
            // tabPage6
            // 
            this.tabPage6.Controls.Add(this.lblCmbValue);
            this.tabPage6.Controls.Add(this.label26);
            this.tabPage6.Controls.Add(this.cmbCustomDisplay);
            this.tabPage6.Controls.Add(this.headerGroupBox5);
            this.tabPage6.Location = new System.Drawing.Point(4, 22);
            this.tabPage6.Name = "tabPage6";
            this.tabPage6.Size = new System.Drawing.Size(540, 349);
            this.tabPage6.TabIndex = 5;
            this.tabPage6.Text = "ComboBox and enums";
            // 
            // lblCmbValue
            // 
            this.lblCmbValue.AutoSize = true;
            this.lblCmbValue.Location = new System.Drawing.Point(386, 168);
            this.lblCmbValue.Name = "lblCmbValue";
            this.lblCmbValue.Size = new System.Drawing.Size(23, 12);
            this.lblCmbValue.TabIndex = 14;
            this.lblCmbValue.Text = "Val";
            // 
            // label26
            // 
            this.label26.Location = new System.Drawing.Point(19, 165);
            this.label26.Name = "label26";
            this.label26.Size = new System.Drawing.Size(168, 17);
            this.label26.TabIndex = 13;
            this.label26.Text = "ComboBox custom display";
            // 
            // cmbCustomDisplay
            // 
            this.cmbCustomDisplay.FormattingEnabled = true;
            this.cmbCustomDisplay.Location = new System.Drawing.Point(192, 162);
            this.cmbCustomDisplay.Name = "cmbCustomDisplay";
            this.cmbCustomDisplay.Size = new System.Drawing.Size(187, 20);
            this.cmbCustomDisplay.TabIndex = 7;
            this.cmbCustomDisplay.SelectedValueChanged += new System.EventHandler(this.cmbCustomDisplay_SelectedValueChanged);
            // 
            // frmSample30
            // 
            this.AutoScaleBaseSize = new System.Drawing.Size(6, 14);
            this.ClientSize = new System.Drawing.Size(476, 402);
            this.Controls.Add(this.tabControl1);
            this.Controls.Add(this.buttonMultiSelectionClose);
            this.Name = "frmSample30";
            this.RestoreFlags = ((DevAge.Windows.Forms.RestoreFlags)((DevAge.Windows.Forms.RestoreFlags.Size | DevAge.Windows.Forms.RestoreFlags.Location)));
            this.Text = "frmDemo";
            this.Load += new System.EventHandler(this.frmDemo_Load);
            this.headerGroupBox1.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.numericUpDownExSample)).EndInit();
            this.headerGroupBox2.ResumeLayout(false);
            this.headerGroupBox2.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.errorProviderSample)).EndInit();
            this.headerGroupBox3.ResumeLayout(false);
            this.headerGroupBox3.PerformLayout();
            this.headerGroupBox4.ResumeLayout(false);
            this.headerGroupBox4.PerformLayout();
            this.headerGroupBox5.ResumeLayout(false);
            this.tabControl1.ResumeLayout(false);
            this.tabPage5.ResumeLayout(false);
            this.tabPage8.ResumeLayout(false);
            this.tabPage1.ResumeLayout(false);
            this.tabPage7.ResumeLayout(false);
            this.tabPage2.ResumeLayout(false);
            this.tabPage6.ResumeLayout(false);
            this.tabPage6.PerformLayout();
            this.ResumeLayout(false);

		}
示例#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.grid1                       = new SourceGrid.Grid();
     this.groupBox1                   = new System.Windows.Forms.GroupBox();
     this.rdSelectionModeColumn       = new System.Windows.Forms.RadioButton();
     this.rdSelectionModeRow          = new System.Windows.Forms.RadioButton();
     this.rdSelectionModeCell         = new System.Windows.Forms.RadioButton();
     this.chkEnableMultiSelection     = new System.Windows.Forms.CheckBox();
     this.cPickSelBackColor           = new DevAge.Windows.Forms.ColorPicker();
     this.label1                      = new System.Windows.Forms.Label();
     this.label3                      = new System.Windows.Forms.Label();
     this.cPckBorderColor             = new DevAge.Windows.Forms.ColorPicker();
     this.tabControl1                 = new System.Windows.Forms.TabControl();
     this.tabPage1                    = new System.Windows.Forms.TabPage();
     this.tabPage2                    = new System.Windows.Forms.TabPage();
     this.chkDrawOverCells            = new System.Windows.Forms.CheckBox();
     this.chkDrawOnlyInitializedCells = new System.Windows.Forms.CheckBox();
     this.label2                      = new System.Windows.Forms.Label();
     this.trackSelectionAlpha         = new System.Windows.Forms.TrackBar();
     this.tabPage4                    = new System.Windows.Forms.TabPage();
     this.label6                      = new System.Windows.Forms.Label();
     this.trackFocusBackColorTrans    = new System.Windows.Forms.TrackBar();
     this.cPickFocusBackColor         = new DevAge.Windows.Forms.ColorPicker();
     this.label5                      = new System.Windows.Forms.Label();
     this.tabPage3                    = new System.Windows.Forms.TabPage();
     this.label7                      = new System.Windows.Forms.Label();
     this.cbDashStyle                 = new DevAge.Windows.Forms.DevAgeComboBox();
     this.groupBox2                   = new System.Windows.Forms.GroupBox();
     this.rdAuto                      = new System.Windows.Forms.RadioButton();
     this.rdFocusCell                 = new System.Windows.Forms.RadioButton();
     this.rdUniqueRange               = new System.Windows.Forms.RadioButton();
     this.rdFocusRange                = new System.Windows.Forms.RadioButton();
     this.rdNone                      = new System.Windows.Forms.RadioButton();
     this.trackBorderWidth            = new System.Windows.Forms.TrackBar();
     this.label4                      = new System.Windows.Forms.Label();
     this.chkTabStop                  = new System.Windows.Forms.CheckBox();
     this.groupBox1.SuspendLayout();
     this.tabControl1.SuspendLayout();
     this.tabPage1.SuspendLayout();
     this.tabPage2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.trackSelectionAlpha)).BeginInit();
     this.tabPage4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.trackFocusBackColorTrans)).BeginInit();
     this.tabPage3.SuspendLayout();
     this.groupBox2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.trackBorderWidth)).BeginInit();
     this.SuspendLayout();
     //
     // grid1
     //
     this.grid1.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.grid1.AutoStretchColumnsToFitWidth = false;
     this.grid1.AutoStretchRowsToFitHeight   = false;
     this.grid1.BorderStyle       = System.Windows.Forms.BorderStyle.Fixed3D;
     this.grid1.CustomSort        = false;
     this.grid1.GridToolTipActive = true;
     this.grid1.Location          = new System.Drawing.Point(4, 184);
     this.grid1.Name = "grid1";
     this.grid1.OverrideCommonCmdKey = true;
     this.grid1.Size        = new System.Drawing.Size(432, 180);
     this.grid1.SpecialKeys = SourceGrid.GridSpecialKeys.Default;
     this.grid1.StyleGrid   = null;
     this.grid1.TabIndex    = 0;
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.rdSelectionModeColumn);
     this.groupBox1.Controls.Add(this.rdSelectionModeRow);
     this.groupBox1.Controls.Add(this.rdSelectionModeCell);
     this.groupBox1.Location = new System.Drawing.Point(20, 8);
     this.groupBox1.Name     = "groupBox1";
     this.groupBox1.Size     = new System.Drawing.Size(200, 92);
     this.groupBox1.TabIndex = 1;
     this.groupBox1.TabStop  = false;
     this.groupBox1.Text     = "Grid.Selection.SelectionMode";
     //
     // rdSelectionModeColumn
     //
     this.rdSelectionModeColumn.Location        = new System.Drawing.Point(8, 68);
     this.rdSelectionModeColumn.Name            = "rdSelectionModeColumn";
     this.rdSelectionModeColumn.Size            = new System.Drawing.Size(188, 20);
     this.rdSelectionModeColumn.TabIndex        = 2;
     this.rdSelectionModeColumn.Text            = "Column";
     this.rdSelectionModeColumn.CheckedChanged += new System.EventHandler(this.Check_Change);
     //
     // rdSelectionModeRow
     //
     this.rdSelectionModeRow.Location        = new System.Drawing.Point(8, 44);
     this.rdSelectionModeRow.Name            = "rdSelectionModeRow";
     this.rdSelectionModeRow.Size            = new System.Drawing.Size(188, 20);
     this.rdSelectionModeRow.TabIndex        = 1;
     this.rdSelectionModeRow.Text            = "Row";
     this.rdSelectionModeRow.CheckedChanged += new System.EventHandler(this.Check_Change);
     //
     // rdSelectionModeCell
     //
     this.rdSelectionModeCell.Checked         = true;
     this.rdSelectionModeCell.Location        = new System.Drawing.Point(8, 20);
     this.rdSelectionModeCell.Name            = "rdSelectionModeCell";
     this.rdSelectionModeCell.Size            = new System.Drawing.Size(188, 20);
     this.rdSelectionModeCell.TabIndex        = 0;
     this.rdSelectionModeCell.TabStop         = true;
     this.rdSelectionModeCell.Text            = "Cell";
     this.rdSelectionModeCell.CheckedChanged += new System.EventHandler(this.Check_Change);
     //
     // chkEnableMultiSelection
     //
     this.chkEnableMultiSelection.Checked         = true;
     this.chkEnableMultiSelection.CheckState      = System.Windows.Forms.CheckState.Checked;
     this.chkEnableMultiSelection.Location        = new System.Drawing.Point(24, 112);
     this.chkEnableMultiSelection.Name            = "chkEnableMultiSelection";
     this.chkEnableMultiSelection.Size            = new System.Drawing.Size(216, 24);
     this.chkEnableMultiSelection.TabIndex        = 2;
     this.chkEnableMultiSelection.Text            = "Grid.Selection.EnableMultiSelection";
     this.chkEnableMultiSelection.CheckedChanged += new System.EventHandler(this.chkEnableMultiSelection_CheckedChanged);
     //
     // cPickSelBackColor
     //
     this.cPickSelBackColor.Location      = new System.Drawing.Point(152, 4);
     this.cPickSelBackColor.Name          = "cPickSelBackColor";
     this.cPickSelBackColor.SelectedColor = System.Drawing.Color.Black;
     this.cPickSelBackColor.Size          = new System.Drawing.Size(176, 24);
     this.cPickSelBackColor.TabIndex      = 3;
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(4, 8);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(108, 20);
     this.label1.TabIndex = 4;
     this.label1.Text     = "Selection BackColor";
     //
     // label3
     //
     this.label3.Location = new System.Drawing.Point(152, 12);
     this.label3.Name     = "label3";
     this.label3.Size     = new System.Drawing.Size(68, 20);
     this.label3.TabIndex = 8;
     this.label3.Text     = "Border Color";
     //
     // cPckBorderColor
     //
     this.cPckBorderColor.Location      = new System.Drawing.Point(224, 8);
     this.cPckBorderColor.Name          = "cPckBorderColor";
     this.cPckBorderColor.SelectedColor = System.Drawing.Color.Black;
     this.cPckBorderColor.Size          = new System.Drawing.Size(164, 24);
     this.cPckBorderColor.TabIndex      = 7;
     //
     // tabControl1
     //
     this.tabControl1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                     | System.Windows.Forms.AnchorStyles.Right)));
     this.tabControl1.Controls.Add(this.tabPage1);
     this.tabControl1.Controls.Add(this.tabPage2);
     this.tabControl1.Controls.Add(this.tabPage4);
     this.tabControl1.Controls.Add(this.tabPage3);
     this.tabControl1.Location      = new System.Drawing.Point(4, 8);
     this.tabControl1.Name          = "tabControl1";
     this.tabControl1.SelectedIndex = 0;
     this.tabControl1.Size          = new System.Drawing.Size(432, 172);
     this.tabControl1.TabIndex      = 9;
     //
     // tabPage1
     //
     this.tabPage1.Controls.Add(this.groupBox1);
     this.tabPage1.Controls.Add(this.chkEnableMultiSelection);
     this.tabPage1.Location = new System.Drawing.Point(4, 22);
     this.tabPage1.Name     = "tabPage1";
     this.tabPage1.Size     = new System.Drawing.Size(424, 146);
     this.tabPage1.TabIndex = 0;
     this.tabPage1.Text     = "SelectionMode";
     //
     // tabPage2
     //
     this.tabPage2.Controls.Add(this.chkDrawOverCells);
     this.tabPage2.Controls.Add(this.chkDrawOnlyInitializedCells);
     this.tabPage2.Controls.Add(this.label2);
     this.tabPage2.Controls.Add(this.trackSelectionAlpha);
     this.tabPage2.Controls.Add(this.cPickSelBackColor);
     this.tabPage2.Controls.Add(this.label1);
     this.tabPage2.Location = new System.Drawing.Point(4, 22);
     this.tabPage2.Name     = "tabPage2";
     this.tabPage2.Size     = new System.Drawing.Size(424, 146);
     this.tabPage2.TabIndex = 1;
     this.tabPage2.Text     = "Selection Visual Style";
     //
     // chkDrawOverCells
     //
     this.chkDrawOverCells.Location        = new System.Drawing.Point(4, 108);
     this.chkDrawOverCells.Name            = "chkDrawOverCells";
     this.chkDrawOverCells.Size            = new System.Drawing.Size(416, 28);
     this.chkDrawOverCells.TabIndex        = 12;
     this.chkDrawOverCells.Text            = "Draw selection over cells (Selection.MaskStyle = DrawSeletionOverCells)";
     this.chkDrawOverCells.CheckedChanged += new System.EventHandler(this.chkDrawStyleChanged_CheckedChanged);
     //
     // chkDrawOnlyInitializedCells
     //
     this.chkDrawOnlyInitializedCells.Location        = new System.Drawing.Point(4, 84);
     this.chkDrawOnlyInitializedCells.Name            = "chkDrawOnlyInitializedCells";
     this.chkDrawOnlyInitializedCells.Size            = new System.Drawing.Size(416, 28);
     this.chkDrawOnlyInitializedCells.TabIndex        = 11;
     this.chkDrawOnlyInitializedCells.Text            = "Draw only initialized cells (Selection.MaskStyle = DrawOnlyInitializedCells)";
     this.chkDrawOnlyInitializedCells.CheckedChanged += new System.EventHandler(this.chkDrawStyleChanged_CheckedChanged);
     //
     // label2
     //
     this.label2.Location = new System.Drawing.Point(4, 40);
     this.label2.Name     = "label2";
     this.label2.Size     = new System.Drawing.Size(128, 20);
     this.label2.TabIndex = 10;
     this.label2.Text     = "Selection Trasparency:";
     //
     // trackSelectionAlpha
     //
     this.trackSelectionAlpha.Location      = new System.Drawing.Point(152, 32);
     this.trackSelectionAlpha.Maximum       = 255;
     this.trackSelectionAlpha.Name          = "trackSelectionAlpha";
     this.trackSelectionAlpha.Size          = new System.Drawing.Size(176, 45);
     this.trackSelectionAlpha.TabIndex      = 9;
     this.trackSelectionAlpha.TickFrequency = 10;
     this.trackSelectionAlpha.TickStyle     = System.Windows.Forms.TickStyle.Both;
     //
     // tabPage4
     //
     this.tabPage4.Controls.Add(this.chkTabStop);
     this.tabPage4.Controls.Add(this.label6);
     this.tabPage4.Controls.Add(this.trackFocusBackColorTrans);
     this.tabPage4.Controls.Add(this.cPickFocusBackColor);
     this.tabPage4.Controls.Add(this.label5);
     this.tabPage4.Location = new System.Drawing.Point(4, 22);
     this.tabPage4.Name     = "tabPage4";
     this.tabPage4.Size     = new System.Drawing.Size(424, 146);
     this.tabPage4.TabIndex = 3;
     this.tabPage4.Text     = "Focus Visual Style";
     //
     // label6
     //
     this.label6.Location = new System.Drawing.Point(4, 12);
     this.label6.Name     = "label6";
     this.label6.Size     = new System.Drawing.Size(108, 20);
     this.label6.TabIndex = 12;
     this.label6.Text     = "Focus BackColor";
     //
     // trackFocusBackColorTrans
     //
     this.trackFocusBackColorTrans.Location      = new System.Drawing.Point(152, 32);
     this.trackFocusBackColorTrans.Maximum       = 255;
     this.trackFocusBackColorTrans.Name          = "trackFocusBackColorTrans";
     this.trackFocusBackColorTrans.Size          = new System.Drawing.Size(176, 45);
     this.trackFocusBackColorTrans.TabIndex      = 13;
     this.trackFocusBackColorTrans.TickFrequency = 10;
     this.trackFocusBackColorTrans.TickStyle     = System.Windows.Forms.TickStyle.Both;
     //
     // cPickFocusBackColor
     //
     this.cPickFocusBackColor.Location      = new System.Drawing.Point(152, 8);
     this.cPickFocusBackColor.Name          = "cPickFocusBackColor";
     this.cPickFocusBackColor.SelectedColor = System.Drawing.Color.Black;
     this.cPickFocusBackColor.Size          = new System.Drawing.Size(176, 24);
     this.cPickFocusBackColor.TabIndex      = 11;
     //
     // label5
     //
     this.label5.Location = new System.Drawing.Point(4, 44);
     this.label5.Name     = "label5";
     this.label5.Size     = new System.Drawing.Size(128, 20);
     this.label5.TabIndex = 14;
     this.label5.Text     = "Focus Trasparency:";
     //
     // tabPage3
     //
     this.tabPage3.Controls.Add(this.label7);
     this.tabPage3.Controls.Add(this.cbDashStyle);
     this.tabPage3.Controls.Add(this.groupBox2);
     this.tabPage3.Controls.Add(this.cPckBorderColor);
     this.tabPage3.Controls.Add(this.label3);
     this.tabPage3.Controls.Add(this.trackBorderWidth);
     this.tabPage3.Controls.Add(this.label4);
     this.tabPage3.Location = new System.Drawing.Point(4, 22);
     this.tabPage3.Name     = "tabPage3";
     this.tabPage3.Size     = new System.Drawing.Size(424, 146);
     this.tabPage3.TabIndex = 2;
     this.tabPage3.Text     = "Selection Border";
     //
     // label7
     //
     this.label7.Location = new System.Drawing.Point(148, 92);
     this.label7.Name     = "label7";
     this.label7.Size     = new System.Drawing.Size(76, 20);
     this.label7.TabIndex = 15;
     this.label7.Text     = "Dash Style";
     //
     // cbDashStyle
     //
     this.cbDashStyle.Location     = new System.Drawing.Point(228, 92);
     this.cbDashStyle.Name         = "cbDashStyle";
     this.cbDashStyle.Size         = new System.Drawing.Size(164, 20);
     this.cbDashStyle.TabIndex     = 14;
     this.cbDashStyle.TextChanged += new System.EventHandler(this.cbDashStyle_ValueChanged);
     //
     // groupBox2
     //
     this.groupBox2.Controls.Add(this.rdAuto);
     this.groupBox2.Controls.Add(this.rdFocusCell);
     this.groupBox2.Controls.Add(this.rdUniqueRange);
     this.groupBox2.Controls.Add(this.rdFocusRange);
     this.groupBox2.Controls.Add(this.rdNone);
     this.groupBox2.Location = new System.Drawing.Point(4, 4);
     this.groupBox2.Name     = "groupBox2";
     this.groupBox2.Size     = new System.Drawing.Size(140, 140);
     this.groupBox2.TabIndex = 13;
     this.groupBox2.TabStop  = false;
     this.groupBox2.Text     = "Selection.BorderMode";
     //
     // rdAuto
     //
     this.rdAuto.Checked         = true;
     this.rdAuto.Location        = new System.Drawing.Point(12, 112);
     this.rdAuto.Name            = "rdAuto";
     this.rdAuto.TabIndex        = 4;
     this.rdAuto.TabStop         = true;
     this.rdAuto.Text            = "Auto";
     this.rdAuto.CheckedChanged += new System.EventHandler(this.ChangeSelectionBorderMode);
     //
     // rdFocusCell
     //
     this.rdFocusCell.Location        = new System.Drawing.Point(12, 64);
     this.rdFocusCell.Name            = "rdFocusCell";
     this.rdFocusCell.TabIndex        = 3;
     this.rdFocusCell.Text            = "FocusCell";
     this.rdFocusCell.CheckedChanged += new System.EventHandler(this.ChangeSelectionBorderMode);
     //
     // rdUniqueRange
     //
     this.rdUniqueRange.Location        = new System.Drawing.Point(12, 40);
     this.rdUniqueRange.Name            = "rdUniqueRange";
     this.rdUniqueRange.TabIndex        = 2;
     this.rdUniqueRange.Text            = "UniqueRange";
     this.rdUniqueRange.CheckedChanged += new System.EventHandler(this.ChangeSelectionBorderMode);
     //
     // rdFocusRange
     //
     this.rdFocusRange.Location        = new System.Drawing.Point(12, 88);
     this.rdFocusRange.Name            = "rdFocusRange";
     this.rdFocusRange.TabIndex        = 1;
     this.rdFocusRange.Text            = "FocusRange";
     this.rdFocusRange.CheckedChanged += new System.EventHandler(this.ChangeSelectionBorderMode);
     //
     // rdNone
     //
     this.rdNone.Location        = new System.Drawing.Point(12, 16);
     this.rdNone.Name            = "rdNone";
     this.rdNone.TabIndex        = 0;
     this.rdNone.Text            = "None";
     this.rdNone.CheckedChanged += new System.EventHandler(this.ChangeSelectionBorderMode);
     //
     // trackBorderWidth
     //
     this.trackBorderWidth.Location = new System.Drawing.Point(228, 44);
     this.trackBorderWidth.Maximum  = 20;
     this.trackBorderWidth.Name     = "trackBorderWidth";
     this.trackBorderWidth.Size     = new System.Drawing.Size(96, 45);
     this.trackBorderWidth.TabIndex = 11;
     //
     // label4
     //
     this.label4.Location = new System.Drawing.Point(148, 52);
     this.label4.Name     = "label4";
     this.label4.Size     = new System.Drawing.Size(76, 20);
     this.label4.TabIndex = 12;
     this.label4.Text     = "Border Width:";
     //
     // chkTabStop
     //
     this.chkTabStop.Checked         = true;
     this.chkTabStop.CheckState      = System.Windows.Forms.CheckState.Checked;
     this.chkTabStop.Location        = new System.Drawing.Point(8, 88);
     this.chkTabStop.Name            = "chkTabStop";
     this.chkTabStop.TabIndex        = 15;
     this.chkTabStop.Text            = "Grid.TabStop";
     this.chkTabStop.CheckedChanged += new System.EventHandler(this.chkTabStop_CheckedChanged);
     //
     // frmSample17
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(440, 371);
     this.Controls.Add(this.tabControl1);
     this.Controls.Add(this.grid1);
     this.Name  = "frmSample17";
     this.Text  = "Selection Style";
     this.Load += new System.EventHandler(this.frmSample17_Load);
     this.groupBox1.ResumeLayout(false);
     this.tabControl1.ResumeLayout(false);
     this.tabPage1.ResumeLayout(false);
     this.tabPage2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.trackSelectionAlpha)).EndInit();
     this.tabPage4.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.trackFocusBackColorTrans)).EndInit();
     this.tabPage3.ResumeLayout(false);
     this.groupBox2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.trackBorderWidth)).EndInit();
     this.ResumeLayout(false);
 }