コード例 #1
0
 /// <summary> 
 /// 此為設計工具支援所需的方法 - 請勿使用程式碼編輯器
 /// 修改這個方法的內容。
 /// </summary>
 private void InitializeComponent()
 {
     this.panelEx1 = new DevComponents.DotNetBar.PanelEx();
     this.SuspendLayout();
     //
     // panelEx1
     //
     this.panelEx1.CanvasColor = System.Drawing.SystemColors.Control;
     this.panelEx1.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.panelEx1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panelEx1.Location = new System.Drawing.Point(0, 0);
     this.panelEx1.Name = "panelEx1";
     this.panelEx1.Size = new System.Drawing.Size(30, 65);
     this.panelEx1.Style.Alignment = System.Drawing.StringAlignment.Center;
     this.panelEx1.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.panelEx1.Style.BackColor2.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.panelEx1.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.panelEx1.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.panelEx1.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.panelEx1.Style.GradientAngle = 90;
     this.panelEx1.TabIndex = 0;
     this.panelEx1.Text = "8";
     //
     // ucBourdaryCell
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.panelEx1);
     this.Name = "ucBourdaryCell";
     this.Size = new System.Drawing.Size(30, 65);
     this.Load += new System.EventHandler(this.ucBourdaryCell_Load);
     this.ResumeLayout(false);
 }
コード例 #2
0
 private void InitializeComponent()
 {
     this.panelContainer = new DevComponents.DotNetBar.PanelEx();
     this.SuspendLayout();
     //
     // panelEx1
     //
     this.panelContainer.CanvasColor      = System.Drawing.SystemColors.Control;
     this.panelContainer.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.panelContainer.Dock             = System.Windows.Forms.DockStyle.Fill;
     this.panelContainer.Location         = new System.Drawing.Point(0, 0);
     this.panelContainer.Name             = "panelEx1";
     this.panelContainer.Size             = new System.Drawing.Size(451, 287);
     this.panelContainer.Style.Alignment  = System.Drawing.StringAlignment.Center;
     this.panelContainer.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.panelContainer.Style.BackColor2.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.panelContainer.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.panelContainer.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.panelContainer.Style.ForeColor.ColorSchemePart   = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.panelContainer.Style.GradientAngle = 90;
     this.panelContainer.TabIndex            = 0;
     //
     // frmSizeBreakRenderer
     //
     this.Controls.Add(this.panelContainer);
     this.Name = "frmSizeBreakRenderer";
     this.Size = new System.Drawing.Size(451, 287);
     this.ResumeLayout(false);
 }
コード例 #3
0
ファイル: DecScheduler.cs プロジェクト: KunHsiang/ischedule
 /// <summary>
 /// pnl : 整個課表的 container
 /// schType : 課表類型
 /// 
 /// </summary>
 /// <param name="pnl"></param>
 /// <param name="schType"></param>
 public DecScheduler(DevComponents.DotNetBar.PanelEx pnl, SchedulerType schType)
 {
     this.pnlContainer = pnl;
     this.schType = schType;
     this.cells = new Dictionary<string, DevComponents.DotNetBar.PanelEx>();
     this.decPeriods = new Dictionary<string, DecPeriod>();
     this.headerCells = new Dictionary<string, DevComponents.DotNetBar.PanelEx>();
 }
コード例 #4
0
        public static void initButtonDockFillInPanelEx(DevComponents.DotNetBar.PanelEx pn)
        {
            int w = pn.Width / pn.Controls.Count;

            for (int i = 0; i < pn.Controls.Count; i++)
            {
                pn.Controls[i].Width = w;
            }
        }
コード例 #5
0
ファイル: UcBlockList.cs プロジェクト: windygu/CRM
        private void BindData()
        {
            DevComponents.DotNetBar.PanelEx newPanel = new DevComponents.DotNetBar.PanelEx();
            panMid.Controls.Clear();
            #region 显示列表数据
            foreach (UcBlockListInfo info in _listDataSource)
            {
                #region 添加列表容器
                newPanel = new DevComponents.DotNetBar.PanelEx();
                newPanel.Style.BackColor1.Color = Color.Transparent;
                newPanel.Style.BackColor2.Color = Color.Transparent;
                newPanel.Dock            = DockStyle.Top;
                newPanel.Height          = 22;
                newPanel.Style.Alignment = StringAlignment.Near;
                newPanel.Padding         = new Padding(0, 3, 0, 0);
                #endregion
                #region 添加显示内容
                LinkLabel lbl = new LinkLabel();
                lbl.Text      = info.TaskDesc;
                lbl.Dock      = DockStyle.Fill;
                lbl.Tag       = info.TaskID;
                lbl.ForeColor = Color.Gray;
                lbl.LinkColor = Color.Gray;

                lbl.LinkClicked += new LinkLabelLinkClickedEventHandler(linkLabel_LinkClicked);
                newPanel.Controls.Add(lbl);
                #endregion
                #region 添加查看链接按钮
                if (!string.IsNullOrEmpty(info.LinkName))
                {
                    LinkLabel linkLabel = new LinkLabel();
                    linkLabel.Text         = info.LinkName;
                    linkLabel.AutoSize     = false;
                    linkLabel.Height       = 26;
                    linkLabel.Width        = 50;
                    linkLabel.Tag          = info.TaskID;
                    linkLabel.Dock         = DockStyle.Right;
                    linkLabel.LinkClicked += new LinkLabelLinkClickedEventHandler(linkLabel_LinkClicked);
                    newPanel.Controls.Add(linkLabel);
                }
                #endregion
                panMid.Controls.Add(newPanel);
            }
            #endregion
        }
コード例 #6
0
 /// <summary> 
 /// 此為設計工具支援所需的方法 - 請勿使用程式碼編輯器修改這個方法的內容。
 ///
 /// </summary>
 private void InitializeComponent()
 {
     this.panelEx1 = new DevComponents.DotNetBar.PanelEx();
     this.panel3 = new System.Windows.Forms.Panel();
     this.groupPanel1 = new DevComponents.DotNetBar.Controls.GroupPanel();
     this.dateTimeInput4 = new DevComponents.Editors.DateTimeAdv.DateTimeInput();
     this.textBoxX1 = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.labelX2 = new DevComponents.DotNetBar.LabelX();
     this.labelX1 = new DevComponents.DotNetBar.LabelX();
     this.學籍異動 = new System.Windows.Forms.Panel();
     this.groupPanel10 = new DevComponents.DotNetBar.Controls.GroupPanel();
     this.textBoxX27 = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.dateTimeInput8 = new DevComponents.Editors.DateTimeAdv.DateTimeInput();
     this.labelX42 = new DevComponents.DotNetBar.LabelX();
     this.labelX20 = new DevComponents.DotNetBar.LabelX();
     this.comboBoxEx16 = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.comboBoxEx5 = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.textBoxX28 = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.textBoxX29 = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.labelX33 = new DevComponents.DotNetBar.LabelX();
     this.comboBoxEx10 = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.labelX45 = new DevComponents.DotNetBar.LabelX();
     this.labelX46 = new DevComponents.DotNetBar.LabelX();
     this.labelX47 = new DevComponents.DotNetBar.LabelX();
     this.labelX48 = new DevComponents.DotNetBar.LabelX();
     this.labelX49 = new DevComponents.DotNetBar.LabelX();
     this.comboBoxEx9 = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.groupPanel11 = new DevComponents.DotNetBar.Controls.GroupPanel();
     this.dateTimeInput9 = new DevComponents.Editors.DateTimeAdv.DateTimeInput();
     this.comboBoxEx21 = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.cmbOldClassType = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.lblOldDepartmentCode = new DevComponents.DotNetBar.LabelX();
     this.lblOldClassType = new DevComponents.DotNetBar.LabelX();
     this.textBoxX12 = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.labelX19 = new DevComponents.DotNetBar.LabelX();
     this.textBoxX33 = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.labelX55 = new DevComponents.DotNetBar.LabelX();
     this.labelX50 = new DevComponents.DotNetBar.LabelX();
     this.labelX51 = new DevComponents.DotNetBar.LabelX();
     this.labelX52 = new DevComponents.DotNetBar.LabelX();
     this.txtNewData = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.txtNewStudentNumber = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.textBoxX30 = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.textBoxX31 = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.lblNewStudentNumber = new DevComponents.DotNetBar.LabelX();
     this.textBoxX32 = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.labelX54 = new DevComponents.DotNetBar.LabelX();
     this.lblNewData = new DevComponents.DotNetBar.LabelX();
     this.新生名冊 = new System.Windows.Forms.Panel();
     this.groupPanel4 = new DevComponents.DotNetBar.Controls.GroupPanel();
     this.textBoxX8 = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.button1 = new System.Windows.Forms.Button();
     this.labelX72 = new DevComponents.DotNetBar.LabelX();
     this.textBoxX22 = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.labelX43 = new DevComponents.DotNetBar.LabelX();
     this.textBoxX13 = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.labelX15 = new DevComponents.DotNetBar.LabelX();
     this.labelX14 = new DevComponents.DotNetBar.LabelX();
     this.textBoxX9 = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.groupPanel3 = new DevComponents.DotNetBar.Controls.GroupPanel();
     this.textBoxX11 = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.dateTimeInput11 = new DevComponents.Editors.DateTimeAdv.DateTimeInput();
     this.labelX18 = new DevComponents.DotNetBar.LabelX();
     this.labelX11 = new DevComponents.DotNetBar.LabelX();
     this.labelX13 = new DevComponents.DotNetBar.LabelX();
     this.labelX9 = new DevComponents.DotNetBar.LabelX();
     this.textBoxX7 = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.textBoxX6 = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.comboBoxEx3 = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.labelX12 = new DevComponents.DotNetBar.LabelX();
     this.textBoxX5 = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.labelX10 = new DevComponents.DotNetBar.LabelX();
     this.groupPanel2 = new DevComponents.DotNetBar.Controls.GroupPanel();
     this.textBoxX23 = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.dateTimeInput10 = new DevComponents.Editors.DateTimeAdv.DateTimeInput();
     this.labelX44 = new DevComponents.DotNetBar.LabelX();
     this.labelX40 = new DevComponents.DotNetBar.LabelX();
     this.comboBoxEx18 = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.textBoxX3 = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.textBoxX2 = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.labelX8 = new DevComponents.DotNetBar.LabelX();
     this.comboBoxEx2 = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.comboBoxEx1 = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.labelX7 = new DevComponents.DotNetBar.LabelX();
     this.labelX4 = new DevComponents.DotNetBar.LabelX();
     this.labelX6 = new DevComponents.DotNetBar.LabelX();
     this.labelX3 = new DevComponents.DotNetBar.LabelX();
     this.畢業名冊 = new System.Windows.Forms.Panel();
     this.groupPanel13 = new DevComponents.DotNetBar.Controls.GroupPanel();
     this.dateTimeInput3 = new DevComponents.Editors.DateTimeAdv.DateTimeInput();
     this.dateTimeInput2 = new DevComponents.Editors.DateTimeAdv.DateTimeInput();
     this.textBoxX10 = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.labelX17 = new DevComponents.DotNetBar.LabelX();
     this.labelX62 = new DevComponents.DotNetBar.LabelX();
     this.labelX68 = new DevComponents.DotNetBar.LabelX();
     this.labelX63 = new DevComponents.DotNetBar.LabelX();
     this.textBoxX41 = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.labelX70 = new DevComponents.DotNetBar.LabelX();
     this.labelX64 = new DevComponents.DotNetBar.LabelX();
     this.textBoxX43 = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.textBoxX38 = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.textBoxX39 = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.labelX67 = new DevComponents.DotNetBar.LabelX();
     this.comboBoxEx14 = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.textBoxX42 = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.labelX65 = new DevComponents.DotNetBar.LabelX();
     this.labelX69 = new DevComponents.DotNetBar.LabelX();
     this.textBoxX40 = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.labelX66 = new DevComponents.DotNetBar.LabelX();
     this.groupPanel12 = new DevComponents.DotNetBar.Controls.GroupPanel();
     this.dateTimeInput1 = new DevComponents.Editors.DateTimeAdv.DateTimeInput();
     this.labelX21 = new DevComponents.DotNetBar.LabelX();
     this.comboBoxEx17 = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.textBoxX36 = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.textBoxX37 = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.labelX56 = new DevComponents.DotNetBar.LabelX();
     this.comboBoxEx11 = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.comboBoxEx13 = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.labelX57 = new DevComponents.DotNetBar.LabelX();
     this.labelX58 = new DevComponents.DotNetBar.LabelX();
     this.labelX59 = new DevComponents.DotNetBar.LabelX();
     this.labelX60 = new DevComponents.DotNetBar.LabelX();
     this.labelX61 = new DevComponents.DotNetBar.LabelX();
     this.comboBoxEx15 = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.轉入名冊 = new System.Windows.Forms.Panel();
     this.groupPanel8 = new DevComponents.DotNetBar.Controls.GroupPanel();
     this.dateTimeInput7 = new DevComponents.Editors.DateTimeAdv.DateTimeInput();
     this.textBoxX25 = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.textBoxX19 = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.textBoxX26 = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.textBoxX20 = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.textBoxX21 = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.labelX34 = new DevComponents.DotNetBar.LabelX();
     this.labelX35 = new DevComponents.DotNetBar.LabelX();
     this.labelX36 = new DevComponents.DotNetBar.LabelX();
     this.labelX37 = new DevComponents.DotNetBar.LabelX();
     this.labelX38 = new DevComponents.DotNetBar.LabelX();
     this.labelX39 = new DevComponents.DotNetBar.LabelX();
     this.groupPanel7 = new DevComponents.DotNetBar.Controls.GroupPanel();
     this.dateTimeInput6 = new DevComponents.Editors.DateTimeAdv.DateTimeInput();
     this.textBoxX4 = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.labelX16 = new DevComponents.DotNetBar.LabelX();
     this.labelX28 = new DevComponents.DotNetBar.LabelX();
     this.labelX29 = new DevComponents.DotNetBar.LabelX();
     this.labelX30 = new DevComponents.DotNetBar.LabelX();
     this.textBoxX16 = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.textBoxX17 = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.comboBoxEx8 = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.labelX31 = new DevComponents.DotNetBar.LabelX();
     this.textBoxX18 = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.labelX32 = new DevComponents.DotNetBar.LabelX();
     this.groupPanel6 = new DevComponents.DotNetBar.Controls.GroupPanel();
     this.textBoxX24 = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.dateTimeInput5 = new DevComponents.Editors.DateTimeAdv.DateTimeInput();
     this.labelX71 = new DevComponents.DotNetBar.LabelX();
     this.labelX41 = new DevComponents.DotNetBar.LabelX();
     this.comboBoxEx19 = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.comboBoxEx12 = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.textBoxX14 = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.textBoxX15 = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.labelX22 = new DevComponents.DotNetBar.LabelX();
     this.comboBoxEx6 = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.comboBoxEx7 = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.labelX23 = new DevComponents.DotNetBar.LabelX();
     this.labelX24 = new DevComponents.DotNetBar.LabelX();
     this.labelX25 = new DevComponents.DotNetBar.LabelX();
     this.labelX26 = new DevComponents.DotNetBar.LabelX();
     this.labelX27 = new DevComponents.DotNetBar.LabelX();
     this.panelEx1.SuspendLayout();
     this.panel3.SuspendLayout();
     this.groupPanel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dateTimeInput4)).BeginInit();
     this.學籍異動.SuspendLayout();
     this.groupPanel10.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dateTimeInput8)).BeginInit();
     this.groupPanel11.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dateTimeInput9)).BeginInit();
     this.新生名冊.SuspendLayout();
     this.groupPanel4.SuspendLayout();
     this.groupPanel3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dateTimeInput11)).BeginInit();
     this.groupPanel2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dateTimeInput10)).BeginInit();
     this.畢業名冊.SuspendLayout();
     this.groupPanel13.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dateTimeInput3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateTimeInput2)).BeginInit();
     this.groupPanel12.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dateTimeInput1)).BeginInit();
     this.轉入名冊.SuspendLayout();
     this.groupPanel8.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dateTimeInput7)).BeginInit();
     this.groupPanel7.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dateTimeInput6)).BeginInit();
     this.groupPanel6.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dateTimeInput5)).BeginInit();
     this.SuspendLayout();
     //
     // panelEx1
     //
     this.panelEx1.CanvasColor = System.Drawing.SystemColors.Control;
     this.panelEx1.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.panelEx1.Controls.Add(this.panel3);
     this.panelEx1.Controls.Add(this.學籍異動);
     this.panelEx1.Controls.Add(this.新生名冊);
     this.panelEx1.Controls.Add(this.畢業名冊);
     this.panelEx1.Controls.Add(this.轉入名冊);
     this.panelEx1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panelEx1.Location = new System.Drawing.Point(0, 0);
     this.panelEx1.Name = "panelEx1";
     this.panelEx1.Size = new System.Drawing.Size(511, 465);
     this.panelEx1.Style.Alignment = System.Drawing.StringAlignment.Center;
     this.panelEx1.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.panelEx1.Style.BackColor2.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.panelEx1.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.panelEx1.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.panelEx1.Style.GradientAngle = 90;
     this.panelEx1.TabIndex = 7;
     //
     // panel3
     //
     this.panel3.Controls.Add(this.groupPanel1);
     this.panel3.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.panel3.Location = new System.Drawing.Point(0, 397);
     this.panel3.Name = "panel3";
     this.panel3.Size = new System.Drawing.Size(511, 68);
     this.panel3.TabIndex = 0;
     //
     // groupPanel1
     //
     this.groupPanel1.CanvasColor = System.Drawing.SystemColors.Control;
     this.groupPanel1.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.groupPanel1.Controls.Add(this.dateTimeInput4);
     this.groupPanel1.Controls.Add(this.textBoxX1);
     this.groupPanel1.Controls.Add(this.labelX2);
     this.groupPanel1.Controls.Add(this.labelX1);
     this.groupPanel1.Location = new System.Drawing.Point(3, 3);
     this.groupPanel1.Name = "groupPanel1";
     this.groupPanel1.Size = new System.Drawing.Size(499, 60);
     //
     //
     //
     this.groupPanel1.Style.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.groupPanel1.Style.BackColorGradientAngle = 90;
     this.groupPanel1.Style.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.groupPanel1.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel1.Style.BorderBottomWidth = 1;
     this.groupPanel1.Style.BorderColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.groupPanel1.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel1.Style.BorderLeftWidth = 1;
     this.groupPanel1.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel1.Style.BorderRightWidth = 1;
     this.groupPanel1.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel1.Style.BorderTopWidth = 1;
     this.groupPanel1.Style.Class = "";
     this.groupPanel1.Style.CornerDiameter = 4;
     this.groupPanel1.Style.CornerType = DevComponents.DotNetBar.eCornerType.Rounded;
     this.groupPanel1.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.groupPanel1.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near;
     //
     //
     //
     this.groupPanel1.StyleMouseDown.Class = "";
     this.groupPanel1.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.groupPanel1.StyleMouseOver.Class = "";
     this.groupPanel1.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.groupPanel1.TabIndex = 0;
     this.groupPanel1.Text = "核准資料";
     //
     // dateTimeInput4
     //
     //
     //
     //
     this.dateTimeInput4.BackgroundStyle.Class = "DateTimeInputBackground";
     this.dateTimeInput4.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dateTimeInput4.ButtonDropDown.Shortcut = DevComponents.DotNetBar.eShortcut.AltDown;
     this.dateTimeInput4.ButtonDropDown.Visible = true;
     this.dateTimeInput4.IsPopupCalendarOpen = false;
     this.dateTimeInput4.Location = new System.Drawing.Point(100, 4);
     //
     //
     //
     this.dateTimeInput4.MonthCalendar.AnnuallyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.dateTimeInput4.MonthCalendar.BackgroundStyle.BackColor = System.Drawing.SystemColors.Window;
     this.dateTimeInput4.MonthCalendar.BackgroundStyle.Class = "";
     this.dateTimeInput4.MonthCalendar.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dateTimeInput4.MonthCalendar.ClearButtonVisible = true;
     //
     //
     //
     this.dateTimeInput4.MonthCalendar.CommandsBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground2;
     this.dateTimeInput4.MonthCalendar.CommandsBackgroundStyle.BackColorGradientAngle = 90;
     this.dateTimeInput4.MonthCalendar.CommandsBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
     this.dateTimeInput4.MonthCalendar.CommandsBackgroundStyle.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.dateTimeInput4.MonthCalendar.CommandsBackgroundStyle.BorderTopColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarDockedBorder;
     this.dateTimeInput4.MonthCalendar.CommandsBackgroundStyle.BorderTopWidth = 1;
     this.dateTimeInput4.MonthCalendar.CommandsBackgroundStyle.Class = "";
     this.dateTimeInput4.MonthCalendar.CommandsBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dateTimeInput4.MonthCalendar.DayNames = new string[] {
     "日",
     "一",
     "二",
     "三",
     "四",
     "五",
     "六"};
     this.dateTimeInput4.MonthCalendar.DisplayMonth = new System.DateTime(2009, 12, 1, 0, 0, 0, 0);
     this.dateTimeInput4.MonthCalendar.MarkedDates = new System.DateTime[0];
     this.dateTimeInput4.MonthCalendar.MonthlyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.dateTimeInput4.MonthCalendar.NavigationBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.dateTimeInput4.MonthCalendar.NavigationBackgroundStyle.BackColorGradientAngle = 90;
     this.dateTimeInput4.MonthCalendar.NavigationBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.dateTimeInput4.MonthCalendar.NavigationBackgroundStyle.Class = "";
     this.dateTimeInput4.MonthCalendar.NavigationBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dateTimeInput4.MonthCalendar.TodayButtonVisible = true;
     this.dateTimeInput4.MonthCalendar.WeeklyMarkedDays = new System.DayOfWeek[0];
     this.dateTimeInput4.Name = "dateTimeInput4";
     this.dateTimeInput4.Size = new System.Drawing.Size(130, 25);
     this.dateTimeInput4.TabIndex = 3;
     this.dateTimeInput4.Tag = "ADDate";
     //
     // textBoxX1
     //
     //
     //
     //
     this.textBoxX1.Border.Class = "TextBoxBorder";
     this.textBoxX1.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.textBoxX1.Location = new System.Drawing.Point(307, 4);
     this.textBoxX1.Name = "textBoxX1";
     this.textBoxX1.Size = new System.Drawing.Size(185, 25);
     this.textBoxX1.TabIndex = 1;
     this.textBoxX1.TabStop = false;
     this.textBoxX1.Tag = "ADNumber";
     //
     // labelX2
     //
     //
     //
     //
     this.labelX2.BackgroundStyle.Class = "";
     this.labelX2.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX2.ForeColor = System.Drawing.Color.Black;
     this.labelX2.Location = new System.Drawing.Point(236, 6);
     this.labelX2.Name = "labelX2";
     this.labelX2.Size = new System.Drawing.Size(75, 21);
     this.labelX2.TabIndex = 0;
     this.labelX2.Text = "核准文號:";
     //
     // labelX1
     //
     //
     //
     //
     this.labelX1.BackgroundStyle.Class = "";
     this.labelX1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX1.ForeColor = System.Drawing.Color.Black;
     this.labelX1.Location = new System.Drawing.Point(22, 6);
     this.labelX1.Name = "labelX1";
     this.labelX1.Size = new System.Drawing.Size(75, 23);
     this.labelX1.TabIndex = 0;
     this.labelX1.Text = "核准日期:";
     //
     // 學籍異動
     //
     this.學籍異動.Controls.Add(this.groupPanel10);
     this.學籍異動.Controls.Add(this.groupPanel11);
     this.學籍異動.Dock = System.Windows.Forms.DockStyle.Fill;
     this.學籍異動.Location = new System.Drawing.Point(0, 0);
     this.學籍異動.Name = "學籍異動";
     this.學籍異動.Size = new System.Drawing.Size(511, 465);
     this.學籍異動.TabIndex = 4;
     //
     // groupPanel10
     //
     this.groupPanel10.CanvasColor = System.Drawing.SystemColors.Control;
     this.groupPanel10.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.groupPanel10.Controls.Add(this.textBoxX27);
     this.groupPanel10.Controls.Add(this.dateTimeInput8);
     this.groupPanel10.Controls.Add(this.labelX42);
     this.groupPanel10.Controls.Add(this.labelX20);
     this.groupPanel10.Controls.Add(this.comboBoxEx16);
     this.groupPanel10.Controls.Add(this.comboBoxEx5);
     this.groupPanel10.Controls.Add(this.textBoxX28);
     this.groupPanel10.Controls.Add(this.textBoxX29);
     this.groupPanel10.Controls.Add(this.labelX33);
     this.groupPanel10.Controls.Add(this.comboBoxEx10);
     this.groupPanel10.Controls.Add(this.labelX45);
     this.groupPanel10.Controls.Add(this.labelX46);
     this.groupPanel10.Controls.Add(this.labelX47);
     this.groupPanel10.Controls.Add(this.labelX48);
     this.groupPanel10.Controls.Add(this.labelX49);
     this.groupPanel10.Controls.Add(this.comboBoxEx9);
     this.groupPanel10.Location = new System.Drawing.Point(3, 12);
     this.groupPanel10.Name = "groupPanel10";
     this.groupPanel10.Size = new System.Drawing.Size(499, 154);
     //
     //
     //
     this.groupPanel10.Style.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.groupPanel10.Style.BackColorGradientAngle = 90;
     this.groupPanel10.Style.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.groupPanel10.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel10.Style.BorderBottomWidth = 1;
     this.groupPanel10.Style.BorderColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.groupPanel10.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel10.Style.BorderLeftWidth = 1;
     this.groupPanel10.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel10.Style.BorderRightWidth = 1;
     this.groupPanel10.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel10.Style.BorderTopWidth = 1;
     this.groupPanel10.Style.Class = "";
     this.groupPanel10.Style.CornerDiameter = 4;
     this.groupPanel10.Style.CornerType = DevComponents.DotNetBar.eCornerType.Rounded;
     this.groupPanel10.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.groupPanel10.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near;
     //
     //
     //
     this.groupPanel10.StyleMouseDown.Class = "";
     this.groupPanel10.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.groupPanel10.StyleMouseOver.Class = "";
     this.groupPanel10.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.groupPanel10.TabIndex = 0;
     this.groupPanel10.Text = "異動狀況";
     //
     // textBoxX27
     //
     //
     //
     //
     this.textBoxX27.Border.Class = "TextBoxBorder";
     this.textBoxX27.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.textBoxX27.Location = new System.Drawing.Point(362, 98);
     this.textBoxX27.Name = "textBoxX27";
     this.textBoxX27.Size = new System.Drawing.Size(130, 25);
     this.textBoxX27.TabIndex = 11;
     this.textBoxX27.Tag = "SpecialStatus";
     //
     // dateTimeInput8
     //
     //
     //
     //
     this.dateTimeInput8.BackgroundStyle.Class = "DateTimeInputBackground";
     this.dateTimeInput8.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dateTimeInput8.ButtonDropDown.Shortcut = DevComponents.DotNetBar.eShortcut.AltDown;
     this.dateTimeInput8.ButtonDropDown.Visible = true;
     this.dateTimeInput8.IsPopupCalendarOpen = false;
     this.dateTimeInput8.Location = new System.Drawing.Point(101, 37);
     //
     //
     //
     this.dateTimeInput8.MonthCalendar.AnnuallyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.dateTimeInput8.MonthCalendar.BackgroundStyle.BackColor = System.Drawing.SystemColors.Window;
     this.dateTimeInput8.MonthCalendar.BackgroundStyle.Class = "";
     this.dateTimeInput8.MonthCalendar.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dateTimeInput8.MonthCalendar.ClearButtonVisible = true;
     //
     //
     //
     this.dateTimeInput8.MonthCalendar.CommandsBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground2;
     this.dateTimeInput8.MonthCalendar.CommandsBackgroundStyle.BackColorGradientAngle = 90;
     this.dateTimeInput8.MonthCalendar.CommandsBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
     this.dateTimeInput8.MonthCalendar.CommandsBackgroundStyle.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.dateTimeInput8.MonthCalendar.CommandsBackgroundStyle.BorderTopColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarDockedBorder;
     this.dateTimeInput8.MonthCalendar.CommandsBackgroundStyle.BorderTopWidth = 1;
     this.dateTimeInput8.MonthCalendar.CommandsBackgroundStyle.Class = "";
     this.dateTimeInput8.MonthCalendar.CommandsBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dateTimeInput8.MonthCalendar.DayNames = new string[] {
     "日",
     "一",
     "二",
     "三",
     "四",
     "五",
     "六"};
     this.dateTimeInput8.MonthCalendar.DisplayMonth = new System.DateTime(2009, 12, 1, 0, 0, 0, 0);
     this.dateTimeInput8.MonthCalendar.MarkedDates = new System.DateTime[0];
     this.dateTimeInput8.MonthCalendar.MonthlyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.dateTimeInput8.MonthCalendar.NavigationBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.dateTimeInput8.MonthCalendar.NavigationBackgroundStyle.BackColorGradientAngle = 90;
     this.dateTimeInput8.MonthCalendar.NavigationBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.dateTimeInput8.MonthCalendar.NavigationBackgroundStyle.Class = "";
     this.dateTimeInput8.MonthCalendar.NavigationBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dateTimeInput8.MonthCalendar.TodayButtonVisible = true;
     this.dateTimeInput8.MonthCalendar.WeeklyMarkedDays = new System.DayOfWeek[0];
     this.dateTimeInput8.Name = "dateTimeInput8";
     this.dateTimeInput8.Size = new System.Drawing.Size(130, 25);
     this.dateTimeInput8.TabIndex = 10;
     this.dateTimeInput8.Tag = "UpdateDate";
     //
     // labelX42
     //
     this.labelX42.AutoSize = true;
     //
     //
     //
     this.labelX42.BackgroundStyle.Class = "";
     this.labelX42.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX42.ForeColor = System.Drawing.Color.Black;
     this.labelX42.Location = new System.Drawing.Point(253, 100);
     this.labelX42.Name = "labelX42";
     this.labelX42.Size = new System.Drawing.Size(101, 21);
     this.labelX42.TabIndex = 8;
     this.labelX42.Text = "特殊身份代碼:";
     //
     // labelX20
     //
     this.labelX20.AutoSize = true;
     //
     //
     //
     this.labelX20.BackgroundStyle.Class = "";
     this.labelX20.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX20.ForeColor = System.Drawing.Color.Black;
     this.labelX20.Location = new System.Drawing.Point(49, 102);
     this.labelX20.Name = "labelX20";
     this.labelX20.Size = new System.Drawing.Size(47, 21);
     this.labelX20.TabIndex = 6;
     this.labelX20.Text = "班別:";
     //
     // comboBoxEx16
     //
     this.comboBoxEx16.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.comboBoxEx16.Font = new System.Drawing.Font("Microsoft JhengHei", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(136)));
     this.comboBoxEx16.FormattingEnabled = true;
     this.comboBoxEx16.ItemHeight = 18;
     this.comboBoxEx16.Location = new System.Drawing.Point(99, 99);
     this.comboBoxEx16.Name = "comboBoxEx16";
     this.comboBoxEx16.Size = new System.Drawing.Size(130, 24);
     this.comboBoxEx16.TabIndex = 7;
     this.comboBoxEx16.Tag = "ClassType";
     //
     // comboBoxEx5
     //
     this.comboBoxEx5.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.comboBoxEx5.Font = new System.Drawing.Font("Microsoft JhengHei", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(136)));
     this.comboBoxEx5.FormattingEnabled = true;
     this.comboBoxEx5.ItemHeight = 18;
     this.comboBoxEx5.Location = new System.Drawing.Point(100, 69);
     this.comboBoxEx5.Name = "comboBoxEx5";
     this.comboBoxEx5.Size = new System.Drawing.Size(130, 24);
     this.comboBoxEx5.TabIndex = 4;
     this.comboBoxEx5.Tag = "GradeYear";
     //
     // textBoxX28
     //
     //
     //
     //
     this.textBoxX28.Border.Class = "TextBoxBorder";
     this.textBoxX28.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.textBoxX28.Location = new System.Drawing.Point(362, 34);
     this.textBoxX28.Name = "textBoxX28";
     this.textBoxX28.Size = new System.Drawing.Size(130, 25);
     this.textBoxX28.TabIndex = 3;
     this.textBoxX28.Tag = "Comment";
     //
     // textBoxX29
     //
     //
     //
     //
     this.textBoxX29.Border.Class = "TextBoxBorder";
     this.textBoxX29.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.textBoxX29.Location = new System.Drawing.Point(262, 3);
     this.textBoxX29.Name = "textBoxX29";
     this.textBoxX29.Size = new System.Drawing.Size(230, 25);
     this.textBoxX29.TabIndex = 1;
     this.textBoxX29.Tag = "UpdateDescription";
     //
     // labelX33
     //
     this.labelX33.AutoSize = true;
     //
     //
     //
     this.labelX33.BackgroundStyle.Class = "";
     this.labelX33.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX33.ForeColor = System.Drawing.Color.Black;
     this.labelX33.Location = new System.Drawing.Point(307, 70);
     this.labelX33.Name = "labelX33";
     this.labelX33.Size = new System.Drawing.Size(47, 21);
     this.labelX33.TabIndex = 0;
     this.labelX33.Text = "科別:";
     //
     // comboBoxEx10
     //
     this.comboBoxEx10.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.comboBoxEx10.Font = new System.Drawing.Font("Microsoft JhengHei", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(136)));
     this.comboBoxEx10.FormattingEnabled = true;
     this.comboBoxEx10.ItemHeight = 18;
     this.comboBoxEx10.Location = new System.Drawing.Point(100, 6);
     this.comboBoxEx10.Name = "comboBoxEx10";
     this.comboBoxEx10.Size = new System.Drawing.Size(73, 24);
     this.comboBoxEx10.TabIndex = 0;
     this.comboBoxEx10.Tag = "UpdateCode";
     //
     // labelX45
     //
     this.labelX45.AutoSize = true;
     //
     //
     //
     this.labelX45.BackgroundStyle.Class = "";
     this.labelX45.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX45.ForeColor = System.Drawing.Color.Black;
     this.labelX45.Location = new System.Drawing.Point(50, 72);
     this.labelX45.Name = "labelX45";
     this.labelX45.Size = new System.Drawing.Size(47, 21);
     this.labelX45.TabIndex = 0;
     this.labelX45.Text = "年級:";
     //
     // labelX46
     //
     this.labelX46.AutoSize = true;
     //
     //
     //
     this.labelX46.BackgroundStyle.Class = "";
     this.labelX46.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX46.ForeColor = System.Drawing.Color.Black;
     this.labelX46.Location = new System.Drawing.Point(307, 38);
     this.labelX46.Name = "labelX46";
     this.labelX46.Size = new System.Drawing.Size(47, 21);
     this.labelX46.TabIndex = 0;
     this.labelX46.Text = "備註:";
     //
     // labelX47
     //
     this.labelX47.AutoSize = true;
     //
     //
     //
     this.labelX47.BackgroundStyle.Class = "";
     this.labelX47.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX47.ForeColor = System.Drawing.Color.Black;
     this.labelX47.Location = new System.Drawing.Point(23, 40);
     this.labelX47.Name = "labelX47";
     this.labelX47.Size = new System.Drawing.Size(74, 21);
     this.labelX47.TabIndex = 0;
     this.labelX47.Text = "異動日期:";
     //
     // labelX48
     //
     this.labelX48.AutoSize = true;
     //
     //
     //
     this.labelX48.BackgroundStyle.Class = "";
     this.labelX48.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX48.ForeColor = System.Drawing.Color.Black;
     this.labelX48.Location = new System.Drawing.Point(179, 7);
     this.labelX48.Name = "labelX48";
     this.labelX48.Size = new System.Drawing.Size(87, 21);
     this.labelX48.TabIndex = 0;
     this.labelX48.Text = "原因及事項:";
     //
     // labelX49
     //
     this.labelX49.AutoSize = true;
     //
     //
     //
     this.labelX49.BackgroundStyle.Class = "";
     this.labelX49.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX49.ForeColor = System.Drawing.Color.Black;
     this.labelX49.Location = new System.Drawing.Point(-4, 7);
     this.labelX49.Name = "labelX49";
     this.labelX49.Size = new System.Drawing.Size(101, 21);
     this.labelX49.TabIndex = 0;
     this.labelX49.Text = "異動原因代碼:";
     //
     // comboBoxEx9
     //
     this.comboBoxEx9.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.comboBoxEx9.Font = new System.Drawing.Font("Microsoft JhengHei", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(136)));
     this.comboBoxEx9.FormattingEnabled = true;
     this.comboBoxEx9.ItemHeight = 18;
     this.comboBoxEx9.Location = new System.Drawing.Point(362, 66);
     this.comboBoxEx9.Name = "comboBoxEx9";
     this.comboBoxEx9.Size = new System.Drawing.Size(130, 24);
     this.comboBoxEx9.TabIndex = 5;
     this.comboBoxEx9.Tag = "Department";
     //
     // groupPanel11
     //
     this.groupPanel11.CanvasColor = System.Drawing.SystemColors.Control;
     this.groupPanel11.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.groupPanel11.Controls.Add(this.dateTimeInput9);
     this.groupPanel11.Controls.Add(this.comboBoxEx21);
     this.groupPanel11.Controls.Add(this.cmbOldClassType);
     this.groupPanel11.Controls.Add(this.lblOldDepartmentCode);
     this.groupPanel11.Controls.Add(this.lblOldClassType);
     this.groupPanel11.Controls.Add(this.textBoxX12);
     this.groupPanel11.Controls.Add(this.labelX19);
     this.groupPanel11.Controls.Add(this.textBoxX33);
     this.groupPanel11.Controls.Add(this.labelX55);
     this.groupPanel11.Controls.Add(this.labelX50);
     this.groupPanel11.Controls.Add(this.labelX51);
     this.groupPanel11.Controls.Add(this.labelX52);
     this.groupPanel11.Controls.Add(this.txtNewData);
     this.groupPanel11.Controls.Add(this.txtNewStudentNumber);
     this.groupPanel11.Controls.Add(this.textBoxX30);
     this.groupPanel11.Controls.Add(this.textBoxX31);
     this.groupPanel11.Controls.Add(this.lblNewStudentNumber);
     this.groupPanel11.Controls.Add(this.textBoxX32);
     this.groupPanel11.Controls.Add(this.labelX54);
     this.groupPanel11.Controls.Add(this.lblNewData);
     this.groupPanel11.Location = new System.Drawing.Point(4, 172);
     this.groupPanel11.Name = "groupPanel11";
     this.groupPanel11.Size = new System.Drawing.Size(498, 193);
     //
     //
     //
     this.groupPanel11.Style.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.groupPanel11.Style.BackColorGradientAngle = 90;
     this.groupPanel11.Style.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.groupPanel11.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel11.Style.BorderBottomWidth = 1;
     this.groupPanel11.Style.BorderColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.groupPanel11.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel11.Style.BorderLeftWidth = 1;
     this.groupPanel11.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel11.Style.BorderRightWidth = 1;
     this.groupPanel11.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel11.Style.BorderTopWidth = 1;
     this.groupPanel11.Style.Class = "";
     this.groupPanel11.Style.CornerDiameter = 4;
     this.groupPanel11.Style.CornerType = DevComponents.DotNetBar.eCornerType.Rounded;
     this.groupPanel11.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.groupPanel11.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near;
     //
     //
     //
     this.groupPanel11.StyleMouseDown.Class = "";
     this.groupPanel11.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.groupPanel11.StyleMouseOver.Class = "";
     this.groupPanel11.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.groupPanel11.TabIndex = 1;
     this.groupPanel11.Text = "學生基本資料";
     //
     // dateTimeInput9
     //
     //
     //
     //
     this.dateTimeInput9.BackgroundStyle.Class = "DateTimeInputBackground";
     this.dateTimeInput9.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dateTimeInput9.ButtonDropDown.Shortcut = DevComponents.DotNetBar.eShortcut.AltDown;
     this.dateTimeInput9.ButtonDropDown.Visible = true;
     this.dateTimeInput9.IsPopupCalendarOpen = false;
     this.dateTimeInput9.Location = new System.Drawing.Point(98, 132);
     //
     //
     //
     this.dateTimeInput9.MonthCalendar.AnnuallyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.dateTimeInput9.MonthCalendar.BackgroundStyle.BackColor = System.Drawing.SystemColors.Window;
     this.dateTimeInput9.MonthCalendar.BackgroundStyle.Class = "";
     this.dateTimeInput9.MonthCalendar.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dateTimeInput9.MonthCalendar.ClearButtonVisible = true;
     //
     //
     //
     this.dateTimeInput9.MonthCalendar.CommandsBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground2;
     this.dateTimeInput9.MonthCalendar.CommandsBackgroundStyle.BackColorGradientAngle = 90;
     this.dateTimeInput9.MonthCalendar.CommandsBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
     this.dateTimeInput9.MonthCalendar.CommandsBackgroundStyle.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.dateTimeInput9.MonthCalendar.CommandsBackgroundStyle.BorderTopColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarDockedBorder;
     this.dateTimeInput9.MonthCalendar.CommandsBackgroundStyle.BorderTopWidth = 1;
     this.dateTimeInput9.MonthCalendar.CommandsBackgroundStyle.Class = "";
     this.dateTimeInput9.MonthCalendar.CommandsBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dateTimeInput9.MonthCalendar.DayNames = new string[] {
     "日",
     "一",
     "二",
     "三",
     "四",
     "五",
     "六"};
     this.dateTimeInput9.MonthCalendar.DisplayMonth = new System.DateTime(2009, 12, 1, 0, 0, 0, 0);
     this.dateTimeInput9.MonthCalendar.MarkedDates = new System.DateTime[0];
     this.dateTimeInput9.MonthCalendar.MonthlyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.dateTimeInput9.MonthCalendar.NavigationBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.dateTimeInput9.MonthCalendar.NavigationBackgroundStyle.BackColorGradientAngle = 90;
     this.dateTimeInput9.MonthCalendar.NavigationBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.dateTimeInput9.MonthCalendar.NavigationBackgroundStyle.Class = "";
     this.dateTimeInput9.MonthCalendar.NavigationBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dateTimeInput9.MonthCalendar.TodayButtonVisible = true;
     this.dateTimeInput9.MonthCalendar.WeeklyMarkedDays = new System.DayOfWeek[0];
     this.dateTimeInput9.Name = "dateTimeInput9";
     this.dateTimeInput9.Size = new System.Drawing.Size(130, 25);
     this.dateTimeInput9.TabIndex = 19;
     this.dateTimeInput9.Tag = "LastADDate";
     //
     // comboBoxEx21
     //
     this.comboBoxEx21.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.comboBoxEx21.Font = new System.Drawing.Font("Microsoft JhengHei", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(136)));
     this.comboBoxEx21.FormattingEnabled = true;
     this.comboBoxEx21.ItemHeight = 18;
     this.comboBoxEx21.Location = new System.Drawing.Point(362, 102);
     this.comboBoxEx21.Name = "comboBoxEx21";
     this.comboBoxEx21.Size = new System.Drawing.Size(130, 24);
     this.comboBoxEx21.TabIndex = 18;
     this.comboBoxEx21.Tag = "OldDepartmentCode";
     //
     // cmbOldClassType
     //
     this.cmbOldClassType.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.cmbOldClassType.Font = new System.Drawing.Font("Microsoft JhengHei", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(136)));
     this.cmbOldClassType.FormattingEnabled = true;
     this.cmbOldClassType.ItemHeight = 18;
     this.cmbOldClassType.Location = new System.Drawing.Point(99, 99);
     this.cmbOldClassType.Name = "cmbOldClassType";
     this.cmbOldClassType.Size = new System.Drawing.Size(130, 24);
     this.cmbOldClassType.TabIndex = 17;
     this.cmbOldClassType.Tag = "OldClassType";
     //
     // lblOldDepartmentCode
     //
     //
     //
     //
     this.lblOldDepartmentCode.BackgroundStyle.Class = "";
     this.lblOldDepartmentCode.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.lblOldDepartmentCode.ForeColor = System.Drawing.Color.Black;
     this.lblOldDepartmentCode.Location = new System.Drawing.Point(263, 99);
     this.lblOldDepartmentCode.Name = "lblOldDepartmentCode";
     this.lblOldDepartmentCode.Size = new System.Drawing.Size(91, 23);
     this.lblOldDepartmentCode.TabIndex = 14;
     this.lblOldDepartmentCode.Text = "舊科別代碼:";
     //
     // lblOldClassType
     //
     this.lblOldClassType.AutoSize = true;
     //
     //
     //
     this.lblOldClassType.BackgroundStyle.Class = "";
     this.lblOldClassType.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.lblOldClassType.ForeColor = System.Drawing.Color.Black;
     this.lblOldClassType.Location = new System.Drawing.Point(34, 100);
     this.lblOldClassType.Name = "lblOldClassType";
     this.lblOldClassType.Size = new System.Drawing.Size(60, 21);
     this.lblOldClassType.TabIndex = 13;
     this.lblOldClassType.Text = "舊班別:";
     //
     // textBoxX12
     //
     //
     //
     //
     this.textBoxX12.Border.Class = "TextBoxBorder";
     this.textBoxX12.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.textBoxX12.Location = new System.Drawing.Point(99, 68);
     this.textBoxX12.Name = "textBoxX12";
     this.textBoxX12.Size = new System.Drawing.Size(130, 25);
     this.textBoxX12.TabIndex = 11;
     this.textBoxX12.Tag = "IDNumberComment";
     //
     // labelX19
     //
     this.labelX19.AutoSize = true;
     //
     //
     //
     this.labelX19.BackgroundStyle.Class = "";
     this.labelX19.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX19.Font = new System.Drawing.Font("Microsoft JhengHei", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(136)));
     this.labelX19.ForeColor = System.Drawing.Color.Black;
     this.labelX19.Location = new System.Drawing.Point(0, 70);
     this.labelX19.Name = "labelX19";
     this.labelX19.Size = new System.Drawing.Size(106, 19);
     this.labelX19.TabIndex = 12;
     this.labelX19.Text = "註1(身分證註記):";
     //
     // textBoxX33
     //
     //
     //
     //
     this.textBoxX33.Border.Class = "TextBoxBorder";
     this.textBoxX33.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.textBoxX33.Location = new System.Drawing.Point(361, 132);
     this.textBoxX33.Name = "textBoxX33";
     this.textBoxX33.Size = new System.Drawing.Size(130, 25);
     this.textBoxX33.TabIndex = 5;
     this.textBoxX33.Tag = "LastADNumber";
     //
     // labelX55
     //
     //
     //
     //
     this.labelX55.BackgroundStyle.Class = "";
     this.labelX55.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX55.ForeColor = System.Drawing.Color.Black;
     this.labelX55.Location = new System.Drawing.Point(279, 130);
     this.labelX55.Name = "labelX55";
     this.labelX55.Size = new System.Drawing.Size(75, 23);
     this.labelX55.TabIndex = 3;
     this.labelX55.Text = "備查文號:";
     //
     // labelX50
     //
     this.labelX50.AutoSize = true;
     //
     //
     //
     this.labelX50.BackgroundStyle.Class = "";
     this.labelX50.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX50.ForeColor = System.Drawing.Color.Black;
     this.labelX50.Location = new System.Drawing.Point(22, 132);
     this.labelX50.Name = "labelX50";
     this.labelX50.Size = new System.Drawing.Size(74, 21);
     this.labelX50.TabIndex = 0;
     this.labelX50.Text = "備查日期:";
     //
     // labelX51
     //
     this.labelX51.AutoSize = true;
     //
     //
     //
     this.labelX51.BackgroundStyle.Class = "";
     this.labelX51.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX51.ForeColor = System.Drawing.Color.Black;
     this.labelX51.Location = new System.Drawing.Point(307, 10);
     this.labelX51.Name = "labelX51";
     this.labelX51.Size = new System.Drawing.Size(47, 21);
     this.labelX51.TabIndex = 0;
     this.labelX51.Text = "學號:";
     //
     // labelX52
     //
     this.labelX52.AutoSize = true;
     //
     //
     //
     this.labelX52.BackgroundStyle.Class = "";
     this.labelX52.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX52.ForeColor = System.Drawing.Color.Black;
     this.labelX52.Location = new System.Drawing.Point(50, 10);
     this.labelX52.Name = "labelX52";
     this.labelX52.Size = new System.Drawing.Size(47, 21);
     this.labelX52.TabIndex = 0;
     this.labelX52.Text = "姓名:";
     //
     // txtNewData
     //
     //
     //
     //
     this.txtNewData.Border.Class = "TextBoxBorder";
     this.txtNewData.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txtNewData.Location = new System.Drawing.Point(361, 41);
     this.txtNewData.Name = "txtNewData";
     this.txtNewData.Size = new System.Drawing.Size(130, 25);
     this.txtNewData.TabIndex = 3;
     this.txtNewData.Tag = "NewData";
     this.txtNewData.Visible = false;
     //
     // txtNewStudentNumber
     //
     //
     //
     //
     this.txtNewStudentNumber.Border.Class = "TextBoxBorder";
     this.txtNewStudentNumber.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txtNewStudentNumber.Location = new System.Drawing.Point(362, 41);
     this.txtNewStudentNumber.Name = "txtNewStudentNumber";
     this.txtNewStudentNumber.Size = new System.Drawing.Size(130, 25);
     this.txtNewStudentNumber.TabIndex = 3;
     this.txtNewStudentNumber.Tag = "NewStudentNumber";
     this.txtNewStudentNumber.Visible = false;
     //
     // textBoxX30
     //
     //
     //
     //
     this.textBoxX30.Border.Class = "TextBoxBorder";
     this.textBoxX30.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.textBoxX30.Location = new System.Drawing.Point(362, 10);
     this.textBoxX30.Name = "textBoxX30";
     this.textBoxX30.Size = new System.Drawing.Size(130, 25);
     this.textBoxX30.TabIndex = 1;
     this.textBoxX30.Tag = "StudentNumber";
     //
     // textBoxX31
     //
     //
     //
     //
     this.textBoxX31.Border.Class = "TextBoxBorder";
     this.textBoxX31.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.textBoxX31.Location = new System.Drawing.Point(100, 38);
     this.textBoxX31.Name = "textBoxX31";
     this.textBoxX31.Size = new System.Drawing.Size(130, 25);
     this.textBoxX31.TabIndex = 2;
     this.textBoxX31.Tag = "IDNumber";
     //
     // lblNewStudentNumber
     //
     this.lblNewStudentNumber.AutoSize = true;
     //
     //
     //
     this.lblNewStudentNumber.BackgroundStyle.Class = "";
     this.lblNewStudentNumber.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.lblNewStudentNumber.ForeColor = System.Drawing.Color.Black;
     this.lblNewStudentNumber.Location = new System.Drawing.Point(292, 43);
     this.lblNewStudentNumber.Name = "lblNewStudentNumber";
     this.lblNewStudentNumber.Size = new System.Drawing.Size(60, 21);
     this.lblNewStudentNumber.TabIndex = 0;
     this.lblNewStudentNumber.Text = "新學號:";
     //
     // textBoxX32
     //
     //
     //
     //
     this.textBoxX32.Border.Class = "TextBoxBorder";
     this.textBoxX32.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.textBoxX32.Location = new System.Drawing.Point(100, 7);
     this.textBoxX32.Name = "textBoxX32";
     this.textBoxX32.Size = new System.Drawing.Size(130, 25);
     this.textBoxX32.TabIndex = 0;
     this.textBoxX32.Tag = "Name";
     //
     // labelX54
     //
     this.labelX54.AutoSize = true;
     //
     //
     //
     this.labelX54.BackgroundStyle.Class = "";
     this.labelX54.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX54.ForeColor = System.Drawing.Color.Black;
     this.labelX54.Location = new System.Drawing.Point(10, 41);
     this.labelX54.Name = "labelX54";
     this.labelX54.Size = new System.Drawing.Size(87, 21);
     this.labelX54.TabIndex = 0;
     this.labelX54.Text = "身分證字號:";
     //
     // lblNewData
     //
     //
     //
     //
     this.lblNewData.BackgroundStyle.Class = "";
     this.lblNewData.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.lblNewData.ForeColor = System.Drawing.Color.Black;
     this.lblNewData.Location = new System.Drawing.Point(246, 44);
     this.lblNewData.Name = "lblNewData";
     this.lblNewData.Size = new System.Drawing.Size(112, 18);
     this.lblNewData.TabIndex = 0;
     this.lblNewData.Text = "新身分證字號:";
     this.lblNewData.TextAlignment = System.Drawing.StringAlignment.Far;
     this.lblNewData.Visible = false;
     //
     // 新生名冊
     //
     this.新生名冊.Controls.Add(this.groupPanel4);
     this.新生名冊.Controls.Add(this.groupPanel3);
     this.新生名冊.Controls.Add(this.groupPanel2);
     this.新生名冊.Dock = System.Windows.Forms.DockStyle.Fill;
     this.新生名冊.Location = new System.Drawing.Point(0, 0);
     this.新生名冊.Name = "新生名冊";
     this.新生名冊.Size = new System.Drawing.Size(511, 465);
     this.新生名冊.TabIndex = 1;
     //
     // groupPanel4
     //
     this.groupPanel4.CanvasColor = System.Drawing.SystemColors.Control;
     this.groupPanel4.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.groupPanel4.Controls.Add(this.textBoxX8);
     this.groupPanel4.Controls.Add(this.button1);
     this.groupPanel4.Controls.Add(this.labelX72);
     this.groupPanel4.Controls.Add(this.textBoxX22);
     this.groupPanel4.Controls.Add(this.labelX43);
     this.groupPanel4.Controls.Add(this.textBoxX13);
     this.groupPanel4.Controls.Add(this.labelX15);
     this.groupPanel4.Controls.Add(this.labelX14);
     this.groupPanel4.Controls.Add(this.textBoxX9);
     this.groupPanel4.Location = new System.Drawing.Point(4, 287);
     this.groupPanel4.Name = "groupPanel4";
     this.groupPanel4.Size = new System.Drawing.Size(498, 101);
     //
     //
     //
     this.groupPanel4.Style.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.groupPanel4.Style.BackColorGradientAngle = 90;
     this.groupPanel4.Style.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.groupPanel4.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel4.Style.BorderBottomWidth = 1;
     this.groupPanel4.Style.BorderColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.groupPanel4.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel4.Style.BorderLeftWidth = 1;
     this.groupPanel4.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel4.Style.BorderRightWidth = 1;
     this.groupPanel4.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel4.Style.BorderTopWidth = 1;
     this.groupPanel4.Style.Class = "";
     this.groupPanel4.Style.CornerDiameter = 4;
     this.groupPanel4.Style.CornerType = DevComponents.DotNetBar.eCornerType.Rounded;
     this.groupPanel4.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.groupPanel4.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near;
     //
     //
     //
     this.groupPanel4.StyleMouseDown.Class = "";
     this.groupPanel4.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.groupPanel4.StyleMouseOver.Class = "";
     this.groupPanel4.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.groupPanel4.TabIndex = 2;
     this.groupPanel4.Text = "入學資格資料(畢業國中資料)";
     //
     // textBoxX8
     //
     //
     //
     //
     this.textBoxX8.Border.Class = "TextBoxBorder";
     this.textBoxX8.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.textBoxX8.Location = new System.Drawing.Point(118, 4);
     this.textBoxX8.Name = "textBoxX8";
     this.textBoxX8.Size = new System.Drawing.Size(112, 25);
     this.textBoxX8.TabIndex = 0;
     this.textBoxX8.Tag = "GraduateSchool";
     //
     // button1
     //
     this.button1.Location = new System.Drawing.Point(247, 5);
     this.button1.Name = "button1";
     this.button1.Size = new System.Drawing.Size(23, 23);
     this.button1.TabIndex = 6;
     this.button1.Text = "…";
     this.button1.UseVisualStyleBackColor = true;
     this.button1.Click += new System.EventHandler(this.btngetSchoolName_Click);
     //
     // labelX72
     //
     //
     //
     //
     this.labelX72.BackgroundStyle.Class = "";
     this.labelX72.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX72.Font = new System.Drawing.Font("Microsoft JhengHei", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(136)));
     this.labelX72.ForeColor = System.Drawing.Color.Black;
     this.labelX72.Location = new System.Drawing.Point(236, 38);
     this.labelX72.Name = "labelX72";
     this.labelX72.Size = new System.Drawing.Size(121, 23);
     this.labelX72.TabIndex = 5;
     this.labelX72.Text = "註2(入學資格註記):";
     //
     // textBoxX22
     //
     //
     //
     //
     this.textBoxX22.Border.Class = "TextBoxBorder";
     this.textBoxX22.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.textBoxX22.Location = new System.Drawing.Point(359, 38);
     this.textBoxX22.Name = "textBoxX22";
     this.textBoxX22.Size = new System.Drawing.Size(130, 25);
     this.textBoxX22.TabIndex = 4;
     this.textBoxX22.Tag = "GraduateComment";
     //
     // labelX43
     //
     this.labelX43.AutoSize = true;
     //
     //
     //
     this.labelX43.BackgroundStyle.Class = "";
     this.labelX43.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX43.ForeColor = System.Drawing.Color.Black;
     this.labelX43.Location = new System.Drawing.Point(-3, 38);
     this.labelX43.Name = "labelX43";
     this.labelX43.Size = new System.Drawing.Size(101, 21);
     this.labelX43.TabIndex = 3;
     this.labelX43.Text = "國中畢業年度:";
     //
     // textBoxX13
     //
     //
     //
     //
     this.textBoxX13.Border.Class = "TextBoxBorder";
     this.textBoxX13.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.textBoxX13.Location = new System.Drawing.Point(100, 37);
     this.textBoxX13.Name = "textBoxX13";
     this.textBoxX13.Size = new System.Drawing.Size(130, 25);
     this.textBoxX13.TabIndex = 2;
     this.textBoxX13.Tag = "GraduateSchoolYear";
     //
     // labelX15
     //
     this.labelX15.AutoSize = true;
     //
     //
     //
     this.labelX15.BackgroundStyle.Class = "";
     this.labelX15.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX15.ForeColor = System.Drawing.Color.Black;
     this.labelX15.Location = new System.Drawing.Point(271, 7);
     this.labelX15.Name = "labelX15";
     this.labelX15.Size = new System.Drawing.Size(87, 21);
     this.labelX15.TabIndex = 0;
     this.labelX15.Text = "所在地代碼:";
     //
     // labelX14
     //
     this.labelX14.AutoSize = true;
     //
     //
     //
     this.labelX14.BackgroundStyle.Class = "";
     this.labelX14.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX14.Font = new System.Drawing.Font("Microsoft JhengHei", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(136)));
     this.labelX14.ForeColor = System.Drawing.Color.Black;
     this.labelX14.Location = new System.Drawing.Point(-3, 8);
     this.labelX14.Name = "labelX14";
     this.labelX14.Size = new System.Drawing.Size(122, 19);
     this.labelX14.TabIndex = 0;
     this.labelX14.Text = "入學資格(畢業國中):";
     //
     // textBoxX9
     //
     //
     //
     //
     this.textBoxX9.Border.Class = "TextBoxBorder";
     this.textBoxX9.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.textBoxX9.Location = new System.Drawing.Point(359, 3);
     this.textBoxX9.Name = "textBoxX9";
     this.textBoxX9.Size = new System.Drawing.Size(130, 25);
     this.textBoxX9.TabIndex = 1;
     this.textBoxX9.Tag = "GraduateSchoolLocationCode";
     //
     // groupPanel3
     //
     this.groupPanel3.CanvasColor = System.Drawing.SystemColors.Control;
     this.groupPanel3.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.groupPanel3.Controls.Add(this.textBoxX11);
     this.groupPanel3.Controls.Add(this.dateTimeInput11);
     this.groupPanel3.Controls.Add(this.labelX18);
     this.groupPanel3.Controls.Add(this.labelX11);
     this.groupPanel3.Controls.Add(this.labelX13);
     this.groupPanel3.Controls.Add(this.labelX9);
     this.groupPanel3.Controls.Add(this.textBoxX7);
     this.groupPanel3.Controls.Add(this.textBoxX6);
     this.groupPanel3.Controls.Add(this.comboBoxEx3);
     this.groupPanel3.Controls.Add(this.labelX12);
     this.groupPanel3.Controls.Add(this.textBoxX5);
     this.groupPanel3.Controls.Add(this.labelX10);
     this.groupPanel3.Location = new System.Drawing.Point(4, 162);
     this.groupPanel3.Name = "groupPanel3";
     this.groupPanel3.Size = new System.Drawing.Size(498, 118);
     //
     //
     //
     this.groupPanel3.Style.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.groupPanel3.Style.BackColorGradientAngle = 90;
     this.groupPanel3.Style.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.groupPanel3.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel3.Style.BorderBottomWidth = 1;
     this.groupPanel3.Style.BorderColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.groupPanel3.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel3.Style.BorderLeftWidth = 1;
     this.groupPanel3.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel3.Style.BorderRightWidth = 1;
     this.groupPanel3.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel3.Style.BorderTopWidth = 1;
     this.groupPanel3.Style.Class = "";
     this.groupPanel3.Style.CornerDiameter = 4;
     this.groupPanel3.Style.CornerType = DevComponents.DotNetBar.eCornerType.Rounded;
     this.groupPanel3.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.groupPanel3.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near;
     //
     //
     //
     this.groupPanel3.StyleMouseDown.Class = "";
     this.groupPanel3.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.groupPanel3.StyleMouseOver.Class = "";
     this.groupPanel3.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.groupPanel3.TabIndex = 1;
     this.groupPanel3.Text = "學生基本資料";
     //
     // textBoxX11
     //
     //
     //
     //
     this.textBoxX11.Border.Class = "TextBoxBorder";
     this.textBoxX11.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.textBoxX11.Location = new System.Drawing.Point(100, 61);
     this.textBoxX11.Name = "textBoxX11";
     this.textBoxX11.Size = new System.Drawing.Size(130, 25);
     this.textBoxX11.TabIndex = 11;
     this.textBoxX11.Tag = "IDNumberComment";
     //
     // dateTimeInput11
     //
     //
     //
     //
     this.dateTimeInput11.BackgroundStyle.Class = "DateTimeInputBackground";
     this.dateTimeInput11.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dateTimeInput11.ButtonDropDown.Shortcut = DevComponents.DotNetBar.eShortcut.AltDown;
     this.dateTimeInput11.ButtonDropDown.Visible = true;
     this.dateTimeInput11.IsPopupCalendarOpen = false;
     this.dateTimeInput11.Location = new System.Drawing.Point(360, 37);
     //
     //
     //
     this.dateTimeInput11.MonthCalendar.AnnuallyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.dateTimeInput11.MonthCalendar.BackgroundStyle.BackColor = System.Drawing.SystemColors.Window;
     this.dateTimeInput11.MonthCalendar.BackgroundStyle.Class = "";
     this.dateTimeInput11.MonthCalendar.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dateTimeInput11.MonthCalendar.ClearButtonVisible = true;
     //
     //
     //
     this.dateTimeInput11.MonthCalendar.CommandsBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground2;
     this.dateTimeInput11.MonthCalendar.CommandsBackgroundStyle.BackColorGradientAngle = 90;
     this.dateTimeInput11.MonthCalendar.CommandsBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
     this.dateTimeInput11.MonthCalendar.CommandsBackgroundStyle.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.dateTimeInput11.MonthCalendar.CommandsBackgroundStyle.BorderTopColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarDockedBorder;
     this.dateTimeInput11.MonthCalendar.CommandsBackgroundStyle.BorderTopWidth = 1;
     this.dateTimeInput11.MonthCalendar.CommandsBackgroundStyle.Class = "";
     this.dateTimeInput11.MonthCalendar.CommandsBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dateTimeInput11.MonthCalendar.DayNames = new string[] {
     "日",
     "一",
     "二",
     "三",
     "四",
     "五",
     "六"};
     this.dateTimeInput11.MonthCalendar.DisplayMonth = new System.DateTime(2009, 12, 1, 0, 0, 0, 0);
     this.dateTimeInput11.MonthCalendar.MarkedDates = new System.DateTime[0];
     this.dateTimeInput11.MonthCalendar.MonthlyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.dateTimeInput11.MonthCalendar.NavigationBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.dateTimeInput11.MonthCalendar.NavigationBackgroundStyle.BackColorGradientAngle = 90;
     this.dateTimeInput11.MonthCalendar.NavigationBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.dateTimeInput11.MonthCalendar.NavigationBackgroundStyle.Class = "";
     this.dateTimeInput11.MonthCalendar.NavigationBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dateTimeInput11.MonthCalendar.TodayButtonVisible = true;
     this.dateTimeInput11.MonthCalendar.WeeklyMarkedDays = new System.DayOfWeek[0];
     this.dateTimeInput11.Name = "dateTimeInput11";
     this.dateTimeInput11.Size = new System.Drawing.Size(130, 25);
     this.dateTimeInput11.TabIndex = 13;
     this.dateTimeInput11.Tag = "Birthdate";
     //
     // labelX18
     //
     this.labelX18.AutoSize = true;
     //
     //
     //
     this.labelX18.BackgroundStyle.Class = "";
     this.labelX18.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX18.Font = new System.Drawing.Font("Microsoft JhengHei", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(136)));
     this.labelX18.ForeColor = System.Drawing.Color.Black;
     this.labelX18.Location = new System.Drawing.Point(-3, 65);
     this.labelX18.Name = "labelX18";
     this.labelX18.Size = new System.Drawing.Size(106, 19);
     this.labelX18.TabIndex = 12;
     this.labelX18.Text = "註1(身分證註記):";
     //
     // labelX11
     //
     this.labelX11.AutoSize = true;
     //
     //
     //
     this.labelX11.BackgroundStyle.Class = "";
     this.labelX11.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX11.ForeColor = System.Drawing.Color.Black;
     this.labelX11.Location = new System.Drawing.Point(308, 66);
     this.labelX11.Name = "labelX11";
     this.labelX11.Size = new System.Drawing.Size(47, 21);
     this.labelX11.TabIndex = 0;
     this.labelX11.Text = "性別:";
     //
     // labelX13
     //
     this.labelX13.AutoSize = true;
     //
     //
     //
     this.labelX13.BackgroundStyle.Class = "";
     this.labelX13.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX13.ForeColor = System.Drawing.Color.Black;
     this.labelX13.Location = new System.Drawing.Point(309, 8);
     this.labelX13.Name = "labelX13";
     this.labelX13.Size = new System.Drawing.Size(47, 21);
     this.labelX13.TabIndex = 0;
     this.labelX13.Text = "學號:";
     //
     // labelX9
     //
     this.labelX9.AutoSize = true;
     //
     //
     //
     this.labelX9.BackgroundStyle.Class = "";
     this.labelX9.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX9.ForeColor = System.Drawing.Color.Black;
     this.labelX9.Location = new System.Drawing.Point(50, 8);
     this.labelX9.Name = "labelX9";
     this.labelX9.Size = new System.Drawing.Size(47, 21);
     this.labelX9.TabIndex = 0;
     this.labelX9.Text = "姓名:";
     //
     // textBoxX7
     //
     //
     //
     //
     this.textBoxX7.Border.Class = "TextBoxBorder";
     this.textBoxX7.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.textBoxX7.Location = new System.Drawing.Point(360, 6);
     this.textBoxX7.Name = "textBoxX7";
     this.textBoxX7.Size = new System.Drawing.Size(130, 25);
     this.textBoxX7.TabIndex = 1;
     this.textBoxX7.Tag = "StudentNumber";
     //
     // textBoxX6
     //
     //
     //
     //
     this.textBoxX6.Border.Class = "TextBoxBorder";
     this.textBoxX6.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.textBoxX6.Location = new System.Drawing.Point(100, 33);
     this.textBoxX6.Name = "textBoxX6";
     this.textBoxX6.Size = new System.Drawing.Size(130, 25);
     this.textBoxX6.TabIndex = 2;
     this.textBoxX6.Tag = "IDNumber";
     //
     // comboBoxEx3
     //
     this.comboBoxEx3.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.comboBoxEx3.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.comboBoxEx3.Font = new System.Drawing.Font("Microsoft JhengHei", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(136)));
     this.comboBoxEx3.ItemHeight = 18;
     this.comboBoxEx3.Location = new System.Drawing.Point(359, 64);
     this.comboBoxEx3.Name = "comboBoxEx3";
     this.comboBoxEx3.Size = new System.Drawing.Size(73, 24);
     this.comboBoxEx3.TabIndex = 4;
     this.comboBoxEx3.Tag = "Gender";
     //
     // labelX12
     //
     this.labelX12.AutoSize = true;
     //
     //
     //
     this.labelX12.BackgroundStyle.Class = "";
     this.labelX12.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX12.ForeColor = System.Drawing.Color.Black;
     this.labelX12.Location = new System.Drawing.Point(309, 36);
     this.labelX12.Name = "labelX12";
     this.labelX12.Size = new System.Drawing.Size(47, 21);
     this.labelX12.TabIndex = 0;
     this.labelX12.Text = "生日:";
     //
     // textBoxX5
     //
     //
     //
     //
     this.textBoxX5.Border.Class = "TextBoxBorder";
     this.textBoxX5.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.textBoxX5.Location = new System.Drawing.Point(100, 5);
     this.textBoxX5.Name = "textBoxX5";
     this.textBoxX5.Size = new System.Drawing.Size(130, 25);
     this.textBoxX5.TabIndex = 0;
     this.textBoxX5.Tag = "Name";
     //
     // labelX10
     //
     this.labelX10.AutoSize = true;
     //
     //
     //
     this.labelX10.BackgroundStyle.Class = "";
     this.labelX10.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX10.ForeColor = System.Drawing.Color.Black;
     this.labelX10.Location = new System.Drawing.Point(8, 35);
     this.labelX10.Name = "labelX10";
     this.labelX10.Size = new System.Drawing.Size(87, 21);
     this.labelX10.TabIndex = 0;
     this.labelX10.Text = "身分證字號:";
     //
     // groupPanel2
     //
     this.groupPanel2.CanvasColor = System.Drawing.SystemColors.Control;
     this.groupPanel2.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.groupPanel2.Controls.Add(this.textBoxX23);
     this.groupPanel2.Controls.Add(this.dateTimeInput10);
     this.groupPanel2.Controls.Add(this.labelX44);
     this.groupPanel2.Controls.Add(this.labelX40);
     this.groupPanel2.Controls.Add(this.comboBoxEx18);
     this.groupPanel2.Controls.Add(this.textBoxX3);
     this.groupPanel2.Controls.Add(this.textBoxX2);
     this.groupPanel2.Controls.Add(this.labelX8);
     this.groupPanel2.Controls.Add(this.comboBoxEx2);
     this.groupPanel2.Controls.Add(this.comboBoxEx1);
     this.groupPanel2.Controls.Add(this.labelX7);
     this.groupPanel2.Controls.Add(this.labelX4);
     this.groupPanel2.Controls.Add(this.labelX6);
     this.groupPanel2.Controls.Add(this.labelX3);
     this.groupPanel2.Location = new System.Drawing.Point(3, 6);
     this.groupPanel2.Name = "groupPanel2";
     this.groupPanel2.Size = new System.Drawing.Size(499, 149);
     //
     //
     //
     this.groupPanel2.Style.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.groupPanel2.Style.BackColorGradientAngle = 90;
     this.groupPanel2.Style.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.groupPanel2.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel2.Style.BorderBottomWidth = 1;
     this.groupPanel2.Style.BorderColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.groupPanel2.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel2.Style.BorderLeftWidth = 1;
     this.groupPanel2.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel2.Style.BorderRightWidth = 1;
     this.groupPanel2.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel2.Style.BorderTopWidth = 1;
     this.groupPanel2.Style.Class = "";
     this.groupPanel2.Style.CornerDiameter = 4;
     this.groupPanel2.Style.CornerType = DevComponents.DotNetBar.eCornerType.Rounded;
     this.groupPanel2.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.groupPanel2.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near;
     //
     //
     //
     this.groupPanel2.StyleMouseDown.Class = "";
     this.groupPanel2.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.groupPanel2.StyleMouseOver.Class = "";
     this.groupPanel2.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.groupPanel2.TabIndex = 0;
     this.groupPanel2.Text = "異動狀況";
     //
     // textBoxX23
     //
     //
     //
     //
     this.textBoxX23.Border.Class = "TextBoxBorder";
     this.textBoxX23.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.textBoxX23.Location = new System.Drawing.Point(99, 91);
     this.textBoxX23.Name = "textBoxX23";
     this.textBoxX23.Size = new System.Drawing.Size(130, 25);
     this.textBoxX23.TabIndex = 13;
     this.textBoxX23.Tag = "SpecialStatus";
     //
     // dateTimeInput10
     //
     //
     //
     //
     this.dateTimeInput10.BackgroundStyle.Class = "DateTimeInputBackground";
     this.dateTimeInput10.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dateTimeInput10.ButtonDropDown.Shortcut = DevComponents.DotNetBar.eShortcut.AltDown;
     this.dateTimeInput10.ButtonDropDown.Visible = true;
     this.dateTimeInput10.IsPopupCalendarOpen = false;
     this.dateTimeInput10.Location = new System.Drawing.Point(99, 32);
     //
     //
     //
     this.dateTimeInput10.MonthCalendar.AnnuallyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.dateTimeInput10.MonthCalendar.BackgroundStyle.BackColor = System.Drawing.SystemColors.Window;
     this.dateTimeInput10.MonthCalendar.BackgroundStyle.Class = "";
     this.dateTimeInput10.MonthCalendar.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dateTimeInput10.MonthCalendar.ClearButtonVisible = true;
     //
     //
     //
     this.dateTimeInput10.MonthCalendar.CommandsBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground2;
     this.dateTimeInput10.MonthCalendar.CommandsBackgroundStyle.BackColorGradientAngle = 90;
     this.dateTimeInput10.MonthCalendar.CommandsBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
     this.dateTimeInput10.MonthCalendar.CommandsBackgroundStyle.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.dateTimeInput10.MonthCalendar.CommandsBackgroundStyle.BorderTopColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarDockedBorder;
     this.dateTimeInput10.MonthCalendar.CommandsBackgroundStyle.BorderTopWidth = 1;
     this.dateTimeInput10.MonthCalendar.CommandsBackgroundStyle.Class = "";
     this.dateTimeInput10.MonthCalendar.CommandsBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dateTimeInput10.MonthCalendar.DayNames = new string[] {
     "日",
     "一",
     "二",
     "三",
     "四",
     "五",
     "六"};
     this.dateTimeInput10.MonthCalendar.DisplayMonth = new System.DateTime(2009, 12, 1, 0, 0, 0, 0);
     this.dateTimeInput10.MonthCalendar.MarkedDates = new System.DateTime[0];
     this.dateTimeInput10.MonthCalendar.MonthlyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.dateTimeInput10.MonthCalendar.NavigationBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.dateTimeInput10.MonthCalendar.NavigationBackgroundStyle.BackColorGradientAngle = 90;
     this.dateTimeInput10.MonthCalendar.NavigationBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.dateTimeInput10.MonthCalendar.NavigationBackgroundStyle.Class = "";
     this.dateTimeInput10.MonthCalendar.NavigationBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dateTimeInput10.MonthCalendar.TodayButtonVisible = true;
     this.dateTimeInput10.MonthCalendar.WeeklyMarkedDays = new System.DayOfWeek[0];
     this.dateTimeInput10.Name = "dateTimeInput10";
     this.dateTimeInput10.Size = new System.Drawing.Size(130, 25);
     this.dateTimeInput10.TabIndex = 12;
     this.dateTimeInput10.Tag = "UpdateDate";
     //
     // labelX44
     //
     this.labelX44.AutoSize = true;
     //
     //
     //
     this.labelX44.BackgroundStyle.Class = "";
     this.labelX44.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX44.ForeColor = System.Drawing.Color.Black;
     this.labelX44.Location = new System.Drawing.Point(-2, 91);
     this.labelX44.Name = "labelX44";
     this.labelX44.Size = new System.Drawing.Size(101, 21);
     this.labelX44.TabIndex = 10;
     this.labelX44.Text = "特殊身份代碼:";
     //
     // labelX40
     //
     this.labelX40.AutoSize = true;
     //
     //
     //
     this.labelX40.BackgroundStyle.Class = "";
     this.labelX40.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX40.ForeColor = System.Drawing.Color.Black;
     this.labelX40.Location = new System.Drawing.Point(49, 64);
     this.labelX40.Name = "labelX40";
     this.labelX40.Size = new System.Drawing.Size(47, 21);
     this.labelX40.TabIndex = 8;
     this.labelX40.Text = "班別:";
     //
     // comboBoxEx18
     //
     this.comboBoxEx18.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.comboBoxEx18.Font = new System.Drawing.Font("Microsoft JhengHei", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(136)));
     this.comboBoxEx18.FormattingEnabled = true;
     this.comboBoxEx18.ItemHeight = 18;
     this.comboBoxEx18.Location = new System.Drawing.Point(99, 61);
     this.comboBoxEx18.Name = "comboBoxEx18";
     this.comboBoxEx18.Size = new System.Drawing.Size(130, 24);
     this.comboBoxEx18.TabIndex = 9;
     this.comboBoxEx18.Tag = "ClassType";
     //
     // textBoxX3
     //
     //
     //
     //
     this.textBoxX3.Border.Class = "TextBoxBorder";
     this.textBoxX3.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.textBoxX3.Location = new System.Drawing.Point(362, 30);
     this.textBoxX3.Name = "textBoxX3";
     this.textBoxX3.Size = new System.Drawing.Size(130, 25);
     this.textBoxX3.TabIndex = 3;
     this.textBoxX3.Tag = "Comment";
     //
     // textBoxX2
     //
     //
     //
     //
     this.textBoxX2.Border.Class = "TextBoxBorder";
     this.textBoxX2.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.textBoxX2.Location = new System.Drawing.Point(262, 1);
     this.textBoxX2.Name = "textBoxX2";
     this.textBoxX2.Size = new System.Drawing.Size(230, 25);
     this.textBoxX2.TabIndex = 1;
     this.textBoxX2.Tag = "UpdateDescription";
     //
     // labelX8
     //
     this.labelX8.AutoSize = true;
     //
     //
     //
     this.labelX8.BackgroundStyle.Class = "";
     this.labelX8.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX8.ForeColor = System.Drawing.Color.Black;
     this.labelX8.Location = new System.Drawing.Point(311, 64);
     this.labelX8.Name = "labelX8";
     this.labelX8.Size = new System.Drawing.Size(47, 21);
     this.labelX8.TabIndex = 0;
     this.labelX8.Text = "科別:";
     //
     // comboBoxEx2
     //
     this.comboBoxEx2.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.comboBoxEx2.Font = new System.Drawing.Font("Microsoft JhengHei", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(136)));
     this.comboBoxEx2.FormattingEnabled = true;
     this.comboBoxEx2.ItemHeight = 18;
     this.comboBoxEx2.Location = new System.Drawing.Point(362, 59);
     this.comboBoxEx2.Name = "comboBoxEx2";
     this.comboBoxEx2.Size = new System.Drawing.Size(130, 24);
     this.comboBoxEx2.TabIndex = 5;
     this.comboBoxEx2.Tag = "Department";
     //
     // comboBoxEx1
     //
     this.comboBoxEx1.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.comboBoxEx1.Font = new System.Drawing.Font("Microsoft JhengHei", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(136)));
     this.comboBoxEx1.FormattingEnabled = true;
     this.comboBoxEx1.ItemHeight = 18;
     this.comboBoxEx1.Location = new System.Drawing.Point(100, 4);
     this.comboBoxEx1.Name = "comboBoxEx1";
     this.comboBoxEx1.Size = new System.Drawing.Size(73, 24);
     this.comboBoxEx1.TabIndex = 0;
     this.comboBoxEx1.Tag = "UpdateCode";
     //
     // labelX7
     //
     this.labelX7.AutoSize = true;
     //
     //
     //
     this.labelX7.BackgroundStyle.Class = "";
     this.labelX7.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX7.ForeColor = System.Drawing.Color.Black;
     this.labelX7.Location = new System.Drawing.Point(285, 33);
     this.labelX7.Name = "labelX7";
     this.labelX7.Size = new System.Drawing.Size(74, 21);
     this.labelX7.TabIndex = 0;
     this.labelX7.Text = "備註說明:";
     //
     // labelX4
     //
     this.labelX4.AutoSize = true;
     //
     //
     //
     this.labelX4.BackgroundStyle.Class = "";
     this.labelX4.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX4.ForeColor = System.Drawing.Color.Black;
     this.labelX4.Location = new System.Drawing.Point(23, 35);
     this.labelX4.Name = "labelX4";
     this.labelX4.Size = new System.Drawing.Size(74, 21);
     this.labelX4.TabIndex = 0;
     this.labelX4.Text = "異動日期:";
     //
     // labelX6
     //
     this.labelX6.AutoSize = true;
     //
     //
     //
     this.labelX6.BackgroundStyle.Class = "";
     this.labelX6.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX6.ForeColor = System.Drawing.Color.Black;
     this.labelX6.Location = new System.Drawing.Point(179, 3);
     this.labelX6.Name = "labelX6";
     this.labelX6.Size = new System.Drawing.Size(87, 21);
     this.labelX6.TabIndex = 0;
     this.labelX6.Text = "原因及事項:";
     //
     // labelX3
     //
     this.labelX3.AutoSize = true;
     //
     //
     //
     this.labelX3.BackgroundStyle.Class = "";
     this.labelX3.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX3.ForeColor = System.Drawing.Color.Black;
     this.labelX3.Location = new System.Drawing.Point(23, 7);
     this.labelX3.Name = "labelX3";
     this.labelX3.Size = new System.Drawing.Size(74, 21);
     this.labelX3.TabIndex = 0;
     this.labelX3.Text = "資格代碼:";
     //
     // 畢業名冊
     //
     this.畢業名冊.Controls.Add(this.groupPanel13);
     this.畢業名冊.Controls.Add(this.groupPanel12);
     this.畢業名冊.Dock = System.Windows.Forms.DockStyle.Fill;
     this.畢業名冊.Location = new System.Drawing.Point(0, 0);
     this.畢業名冊.Name = "畢業名冊";
     this.畢業名冊.Size = new System.Drawing.Size(511, 465);
     this.畢業名冊.TabIndex = 2;
     //
     // groupPanel13
     //
     this.groupPanel13.CanvasColor = System.Drawing.SystemColors.Control;
     this.groupPanel13.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.groupPanel13.Controls.Add(this.dateTimeInput3);
     this.groupPanel13.Controls.Add(this.dateTimeInput2);
     this.groupPanel13.Controls.Add(this.textBoxX10);
     this.groupPanel13.Controls.Add(this.labelX17);
     this.groupPanel13.Controls.Add(this.labelX62);
     this.groupPanel13.Controls.Add(this.labelX68);
     this.groupPanel13.Controls.Add(this.labelX63);
     this.groupPanel13.Controls.Add(this.textBoxX41);
     this.groupPanel13.Controls.Add(this.labelX70);
     this.groupPanel13.Controls.Add(this.labelX64);
     this.groupPanel13.Controls.Add(this.textBoxX43);
     this.groupPanel13.Controls.Add(this.textBoxX38);
     this.groupPanel13.Controls.Add(this.textBoxX39);
     this.groupPanel13.Controls.Add(this.labelX67);
     this.groupPanel13.Controls.Add(this.comboBoxEx14);
     this.groupPanel13.Controls.Add(this.textBoxX42);
     this.groupPanel13.Controls.Add(this.labelX65);
     this.groupPanel13.Controls.Add(this.labelX69);
     this.groupPanel13.Controls.Add(this.textBoxX40);
     this.groupPanel13.Controls.Add(this.labelX66);
     this.groupPanel13.Location = new System.Drawing.Point(3, 168);
     this.groupPanel13.Name = "groupPanel13";
     this.groupPanel13.Size = new System.Drawing.Size(499, 206);
     //
     //
     //
     this.groupPanel13.Style.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.groupPanel13.Style.BackColorGradientAngle = 90;
     this.groupPanel13.Style.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.groupPanel13.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel13.Style.BorderBottomWidth = 1;
     this.groupPanel13.Style.BorderColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.groupPanel13.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel13.Style.BorderLeftWidth = 1;
     this.groupPanel13.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel13.Style.BorderRightWidth = 1;
     this.groupPanel13.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel13.Style.BorderTopWidth = 1;
     this.groupPanel13.Style.Class = "";
     this.groupPanel13.Style.CornerDiameter = 4;
     this.groupPanel13.Style.CornerType = DevComponents.DotNetBar.eCornerType.Rounded;
     this.groupPanel13.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.groupPanel13.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near;
     //
     //
     //
     this.groupPanel13.StyleMouseDown.Class = "";
     this.groupPanel13.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.groupPanel13.StyleMouseOver.Class = "";
     this.groupPanel13.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.groupPanel13.TabIndex = 1;
     this.groupPanel13.Text = "學生基本資料";
     //
     // dateTimeInput3
     //
     //
     //
     //
     this.dateTimeInput3.BackgroundStyle.Class = "DateTimeInputBackground";
     this.dateTimeInput3.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dateTimeInput3.ButtonDropDown.Shortcut = DevComponents.DotNetBar.eShortcut.AltDown;
     this.dateTimeInput3.ButtonDropDown.Visible = true;
     this.dateTimeInput3.IsPopupCalendarOpen = false;
     this.dateTimeInput3.Location = new System.Drawing.Point(101, 91);
     //
     //
     //
     this.dateTimeInput3.MonthCalendar.AnnuallyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.dateTimeInput3.MonthCalendar.BackgroundStyle.BackColor = System.Drawing.SystemColors.Window;
     this.dateTimeInput3.MonthCalendar.BackgroundStyle.Class = "";
     this.dateTimeInput3.MonthCalendar.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dateTimeInput3.MonthCalendar.ClearButtonVisible = true;
     //
     //
     //
     this.dateTimeInput3.MonthCalendar.CommandsBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground2;
     this.dateTimeInput3.MonthCalendar.CommandsBackgroundStyle.BackColorGradientAngle = 90;
     this.dateTimeInput3.MonthCalendar.CommandsBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
     this.dateTimeInput3.MonthCalendar.CommandsBackgroundStyle.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.dateTimeInput3.MonthCalendar.CommandsBackgroundStyle.BorderTopColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarDockedBorder;
     this.dateTimeInput3.MonthCalendar.CommandsBackgroundStyle.BorderTopWidth = 1;
     this.dateTimeInput3.MonthCalendar.CommandsBackgroundStyle.Class = "";
     this.dateTimeInput3.MonthCalendar.CommandsBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dateTimeInput3.MonthCalendar.DayNames = new string[] {
     "日",
     "一",
     "二",
     "三",
     "四",
     "五",
     "六"};
     this.dateTimeInput3.MonthCalendar.DisplayMonth = new System.DateTime(2009, 12, 1, 0, 0, 0, 0);
     this.dateTimeInput3.MonthCalendar.MarkedDates = new System.DateTime[0];
     this.dateTimeInput3.MonthCalendar.MonthlyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.dateTimeInput3.MonthCalendar.NavigationBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.dateTimeInput3.MonthCalendar.NavigationBackgroundStyle.BackColorGradientAngle = 90;
     this.dateTimeInput3.MonthCalendar.NavigationBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.dateTimeInput3.MonthCalendar.NavigationBackgroundStyle.Class = "";
     this.dateTimeInput3.MonthCalendar.NavigationBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dateTimeInput3.MonthCalendar.TodayButtonVisible = true;
     this.dateTimeInput3.MonthCalendar.WeeklyMarkedDays = new System.DayOfWeek[0];
     this.dateTimeInput3.Name = "dateTimeInput3";
     this.dateTimeInput3.Size = new System.Drawing.Size(130, 25);
     this.dateTimeInput3.TabIndex = 14;
     this.dateTimeInput3.Tag = "LastADDate";
     //
     // dateTimeInput2
     //
     //
     //
     //
     this.dateTimeInput2.BackgroundStyle.Class = "DateTimeInputBackground";
     this.dateTimeInput2.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dateTimeInput2.ButtonDropDown.Shortcut = DevComponents.DotNetBar.eShortcut.AltDown;
     this.dateTimeInput2.ButtonDropDown.Visible = true;
     this.dateTimeInput2.IsPopupCalendarOpen = false;
     this.dateTimeInput2.Location = new System.Drawing.Point(361, 36);
     //
     //
     //
     this.dateTimeInput2.MonthCalendar.AnnuallyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.dateTimeInput2.MonthCalendar.BackgroundStyle.BackColor = System.Drawing.SystemColors.Window;
     this.dateTimeInput2.MonthCalendar.BackgroundStyle.Class = "";
     this.dateTimeInput2.MonthCalendar.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dateTimeInput2.MonthCalendar.ClearButtonVisible = true;
     //
     //
     //
     this.dateTimeInput2.MonthCalendar.CommandsBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground2;
     this.dateTimeInput2.MonthCalendar.CommandsBackgroundStyle.BackColorGradientAngle = 90;
     this.dateTimeInput2.MonthCalendar.CommandsBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
     this.dateTimeInput2.MonthCalendar.CommandsBackgroundStyle.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.dateTimeInput2.MonthCalendar.CommandsBackgroundStyle.BorderTopColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarDockedBorder;
     this.dateTimeInput2.MonthCalendar.CommandsBackgroundStyle.BorderTopWidth = 1;
     this.dateTimeInput2.MonthCalendar.CommandsBackgroundStyle.Class = "";
     this.dateTimeInput2.MonthCalendar.CommandsBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dateTimeInput2.MonthCalendar.DayNames = new string[] {
     "日",
     "一",
     "二",
     "三",
     "四",
     "五",
     "六"};
     this.dateTimeInput2.MonthCalendar.DisplayMonth = new System.DateTime(2009, 12, 1, 0, 0, 0, 0);
     this.dateTimeInput2.MonthCalendar.MarkedDates = new System.DateTime[0];
     this.dateTimeInput2.MonthCalendar.MonthlyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.dateTimeInput2.MonthCalendar.NavigationBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.dateTimeInput2.MonthCalendar.NavigationBackgroundStyle.BackColorGradientAngle = 90;
     this.dateTimeInput2.MonthCalendar.NavigationBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.dateTimeInput2.MonthCalendar.NavigationBackgroundStyle.Class = "";
     this.dateTimeInput2.MonthCalendar.NavigationBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dateTimeInput2.MonthCalendar.TodayButtonVisible = true;
     this.dateTimeInput2.MonthCalendar.WeeklyMarkedDays = new System.DayOfWeek[0];
     this.dateTimeInput2.Name = "dateTimeInput2";
     this.dateTimeInput2.Size = new System.Drawing.Size(130, 25);
     this.dateTimeInput2.TabIndex = 13;
     this.dateTimeInput2.Tag = "Birthdate";
     //
     // textBoxX10
     //
     //
     //
     //
     this.textBoxX10.Border.Class = "TextBoxBorder";
     this.textBoxX10.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.textBoxX10.Location = new System.Drawing.Point(100, 63);
     this.textBoxX10.Name = "textBoxX10";
     this.textBoxX10.Size = new System.Drawing.Size(130, 25);
     this.textBoxX10.TabIndex = 11;
     this.textBoxX10.Tag = "IDNumberComment";
     //
     // labelX17
     //
     this.labelX17.AutoSize = true;
     //
     //
     //
     this.labelX17.BackgroundStyle.Class = "";
     this.labelX17.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX17.Font = new System.Drawing.Font("Microsoft JhengHei", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(136)));
     this.labelX17.ForeColor = System.Drawing.Color.Black;
     this.labelX17.Location = new System.Drawing.Point(-2, 64);
     this.labelX17.Name = "labelX17";
     this.labelX17.Size = new System.Drawing.Size(106, 19);
     this.labelX17.TabIndex = 12;
     this.labelX17.Text = "註1(身分證註記):";
     //
     // labelX62
     //
     this.labelX62.AutoSize = true;
     //
     //
     //
     this.labelX62.BackgroundStyle.Class = "";
     this.labelX62.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX62.ForeColor = System.Drawing.Color.Black;
     this.labelX62.Location = new System.Drawing.Point(312, 66);
     this.labelX62.Name = "labelX62";
     this.labelX62.Size = new System.Drawing.Size(47, 21);
     this.labelX62.TabIndex = 0;
     this.labelX62.Text = "性別:";
     //
     // labelX68
     //
     this.labelX68.AutoSize = true;
     //
     //
     //
     this.labelX68.BackgroundStyle.Class = "";
     this.labelX68.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX68.ForeColor = System.Drawing.Color.Black;
     this.labelX68.Location = new System.Drawing.Point(22, 94);
     this.labelX68.Name = "labelX68";
     this.labelX68.Size = new System.Drawing.Size(74, 21);
     this.labelX68.TabIndex = 0;
     this.labelX68.Text = "備查日期:";
     //
     // labelX63
     //
     this.labelX63.AutoSize = true;
     //
     //
     //
     this.labelX63.BackgroundStyle.Class = "";
     this.labelX63.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX63.ForeColor = System.Drawing.Color.Black;
     this.labelX63.Location = new System.Drawing.Point(312, 8);
     this.labelX63.Name = "labelX63";
     this.labelX63.Size = new System.Drawing.Size(47, 21);
     this.labelX63.TabIndex = 0;
     this.labelX63.Text = "學號:";
     //
     // textBoxX41
     //
     //
     //
     //
     this.textBoxX41.Border.Class = "TextBoxBorder";
     this.textBoxX41.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.textBoxX41.Location = new System.Drawing.Point(100, 150);
     this.textBoxX41.Name = "textBoxX41";
     this.textBoxX41.Size = new System.Drawing.Size(202, 25);
     this.textBoxX41.TabIndex = 8;
     this.textBoxX41.Tag = "GraduateCertificateNumber";
     //
     // labelX70
     //
     this.labelX70.AutoSize = true;
     //
     //
     //
     this.labelX70.BackgroundStyle.Class = "";
     this.labelX70.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX70.ForeColor = System.Drawing.Color.Black;
     this.labelX70.Location = new System.Drawing.Point(-2, 123);
     this.labelX70.Name = "labelX70";
     this.labelX70.Size = new System.Drawing.Size(101, 21);
     this.labelX70.TabIndex = 0;
     this.labelX70.Text = "最後異動代號:";
     //
     // labelX64
     //
     this.labelX64.AutoSize = true;
     //
     //
     //
     this.labelX64.BackgroundStyle.Class = "";
     this.labelX64.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX64.ForeColor = System.Drawing.Color.Black;
     this.labelX64.Location = new System.Drawing.Point(50, 8);
     this.labelX64.Name = "labelX64";
     this.labelX64.Size = new System.Drawing.Size(47, 21);
     this.labelX64.TabIndex = 0;
     this.labelX64.Text = "姓名:";
     //
     // textBoxX43
     //
     //
     //
     //
     this.textBoxX43.Border.Class = "TextBoxBorder";
     this.textBoxX43.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.textBoxX43.Location = new System.Drawing.Point(359, 91);
     this.textBoxX43.Name = "textBoxX43";
     this.textBoxX43.Size = new System.Drawing.Size(130, 25);
     this.textBoxX43.TabIndex = 7;
     this.textBoxX43.Tag = "LastADNumber";
     //
     // textBoxX38
     //
     //
     //
     //
     this.textBoxX38.Border.Class = "TextBoxBorder";
     this.textBoxX38.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.textBoxX38.Location = new System.Drawing.Point(360, 5);
     this.textBoxX38.Name = "textBoxX38";
     this.textBoxX38.Size = new System.Drawing.Size(130, 25);
     this.textBoxX38.TabIndex = 1;
     this.textBoxX38.Tag = "StudentNumber";
     //
     // textBoxX39
     //
     //
     //
     //
     this.textBoxX39.Border.Class = "TextBoxBorder";
     this.textBoxX39.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.textBoxX39.Location = new System.Drawing.Point(100, 33);
     this.textBoxX39.Name = "textBoxX39";
     this.textBoxX39.Size = new System.Drawing.Size(130, 25);
     this.textBoxX39.TabIndex = 2;
     this.textBoxX39.Tag = "IDNumber";
     //
     // labelX67
     //
     this.labelX67.AutoSize = true;
     //
     //
     //
     this.labelX67.BackgroundStyle.Class = "";
     this.labelX67.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX67.ForeColor = System.Drawing.Color.Black;
     this.labelX67.Location = new System.Drawing.Point(-4, 152);
     this.labelX67.Name = "labelX67";
     this.labelX67.Size = new System.Drawing.Size(101, 21);
     this.labelX67.TabIndex = 0;
     this.labelX67.Text = "畢業證書字號:";
     //
     // comboBoxEx14
     //
     this.comboBoxEx14.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.comboBoxEx14.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.comboBoxEx14.Font = new System.Drawing.Font("Microsoft JhengHei", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(136)));
     this.comboBoxEx14.FormattingEnabled = true;
     this.comboBoxEx14.ItemHeight = 18;
     this.comboBoxEx14.Location = new System.Drawing.Point(359, 64);
     this.comboBoxEx14.Name = "comboBoxEx14";
     this.comboBoxEx14.Size = new System.Drawing.Size(73, 24);
     this.comboBoxEx14.TabIndex = 4;
     this.comboBoxEx14.Tag = "Gender";
     //
     // textBoxX42
     //
     //
     //
     //
     this.textBoxX42.Border.Class = "TextBoxBorder";
     this.textBoxX42.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.textBoxX42.Location = new System.Drawing.Point(99, 120);
     this.textBoxX42.Name = "textBoxX42";
     this.textBoxX42.Size = new System.Drawing.Size(130, 25);
     this.textBoxX42.TabIndex = 5;
     this.textBoxX42.Tag = "LastUpdateCode";
     //
     // labelX65
     //
     this.labelX65.AutoSize = true;
     //
     //
     //
     this.labelX65.BackgroundStyle.Class = "";
     this.labelX65.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX65.ForeColor = System.Drawing.Color.Black;
     this.labelX65.Location = new System.Drawing.Point(312, 36);
     this.labelX65.Name = "labelX65";
     this.labelX65.Size = new System.Drawing.Size(47, 21);
     this.labelX65.TabIndex = 0;
     this.labelX65.Text = "生日:";
     //
     // labelX69
     //
     this.labelX69.AutoSize = true;
     //
     //
     //
     this.labelX69.BackgroundStyle.Class = "";
     this.labelX69.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX69.ForeColor = System.Drawing.Color.Black;
     this.labelX69.Location = new System.Drawing.Point(285, 94);
     this.labelX69.Name = "labelX69";
     this.labelX69.Size = new System.Drawing.Size(74, 21);
     this.labelX69.TabIndex = 0;
     this.labelX69.Text = "備查文號:";
     //
     // textBoxX40
     //
     //
     //
     //
     this.textBoxX40.Border.Class = "TextBoxBorder";
     this.textBoxX40.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.textBoxX40.Location = new System.Drawing.Point(100, 5);
     this.textBoxX40.Name = "textBoxX40";
     this.textBoxX40.Size = new System.Drawing.Size(130, 25);
     this.textBoxX40.TabIndex = 0;
     this.textBoxX40.Tag = "Name";
     //
     // labelX66
     //
     this.labelX66.AutoSize = true;
     //
     //
     //
     this.labelX66.BackgroundStyle.Class = "";
     this.labelX66.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX66.ForeColor = System.Drawing.Color.Black;
     this.labelX66.Location = new System.Drawing.Point(9, 35);
     this.labelX66.Name = "labelX66";
     this.labelX66.Size = new System.Drawing.Size(87, 21);
     this.labelX66.TabIndex = 0;
     this.labelX66.Text = "身分證字號:";
     //
     // groupPanel12
     //
     this.groupPanel12.CanvasColor = System.Drawing.SystemColors.Control;
     this.groupPanel12.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.groupPanel12.Controls.Add(this.dateTimeInput1);
     this.groupPanel12.Controls.Add(this.labelX21);
     this.groupPanel12.Controls.Add(this.comboBoxEx17);
     this.groupPanel12.Controls.Add(this.textBoxX36);
     this.groupPanel12.Controls.Add(this.textBoxX37);
     this.groupPanel12.Controls.Add(this.labelX56);
     this.groupPanel12.Controls.Add(this.comboBoxEx11);
     this.groupPanel12.Controls.Add(this.comboBoxEx13);
     this.groupPanel12.Controls.Add(this.labelX57);
     this.groupPanel12.Controls.Add(this.labelX58);
     this.groupPanel12.Controls.Add(this.labelX59);
     this.groupPanel12.Controls.Add(this.labelX60);
     this.groupPanel12.Controls.Add(this.labelX61);
     this.groupPanel12.Controls.Add(this.comboBoxEx15);
     this.groupPanel12.Location = new System.Drawing.Point(3, 11);
     this.groupPanel12.Name = "groupPanel12";
     this.groupPanel12.Size = new System.Drawing.Size(499, 148);
     //
     //
     //
     this.groupPanel12.Style.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.groupPanel12.Style.BackColorGradientAngle = 90;
     this.groupPanel12.Style.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.groupPanel12.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel12.Style.BorderBottomWidth = 1;
     this.groupPanel12.Style.BorderColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.groupPanel12.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel12.Style.BorderLeftWidth = 1;
     this.groupPanel12.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel12.Style.BorderRightWidth = 1;
     this.groupPanel12.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel12.Style.BorderTopWidth = 1;
     this.groupPanel12.Style.Class = "";
     this.groupPanel12.Style.CornerDiameter = 4;
     this.groupPanel12.Style.CornerType = DevComponents.DotNetBar.eCornerType.Rounded;
     this.groupPanel12.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.groupPanel12.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near;
     //
     //
     //
     this.groupPanel12.StyleMouseDown.Class = "";
     this.groupPanel12.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.groupPanel12.StyleMouseOver.Class = "";
     this.groupPanel12.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.groupPanel12.TabIndex = 0;
     this.groupPanel12.Text = "異動狀況";
     //
     // dateTimeInput1
     //
     //
     //
     //
     this.dateTimeInput1.BackgroundStyle.Class = "DateTimeInputBackground";
     this.dateTimeInput1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dateTimeInput1.ButtonDropDown.Shortcut = DevComponents.DotNetBar.eShortcut.AltDown;
     this.dateTimeInput1.ButtonDropDown.Visible = true;
     this.dateTimeInput1.IsPopupCalendarOpen = false;
     this.dateTimeInput1.Location = new System.Drawing.Point(99, 30);
     //
     //
     //
     this.dateTimeInput1.MonthCalendar.AnnuallyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.dateTimeInput1.MonthCalendar.BackgroundStyle.BackColor = System.Drawing.SystemColors.Window;
     this.dateTimeInput1.MonthCalendar.BackgroundStyle.Class = "";
     this.dateTimeInput1.MonthCalendar.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dateTimeInput1.MonthCalendar.ClearButtonVisible = true;
     //
     //
     //
     this.dateTimeInput1.MonthCalendar.CommandsBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground2;
     this.dateTimeInput1.MonthCalendar.CommandsBackgroundStyle.BackColorGradientAngle = 90;
     this.dateTimeInput1.MonthCalendar.CommandsBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
     this.dateTimeInput1.MonthCalendar.CommandsBackgroundStyle.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.dateTimeInput1.MonthCalendar.CommandsBackgroundStyle.BorderTopColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarDockedBorder;
     this.dateTimeInput1.MonthCalendar.CommandsBackgroundStyle.BorderTopWidth = 1;
     this.dateTimeInput1.MonthCalendar.CommandsBackgroundStyle.Class = "";
     this.dateTimeInput1.MonthCalendar.CommandsBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dateTimeInput1.MonthCalendar.DayNames = new string[] {
     "日",
     "一",
     "二",
     "三",
     "四",
     "五",
     "六"};
     this.dateTimeInput1.MonthCalendar.DisplayMonth = new System.DateTime(2009, 12, 1, 0, 0, 0, 0);
     this.dateTimeInput1.MonthCalendar.MarkedDates = new System.DateTime[0];
     this.dateTimeInput1.MonthCalendar.MonthlyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.dateTimeInput1.MonthCalendar.NavigationBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.dateTimeInput1.MonthCalendar.NavigationBackgroundStyle.BackColorGradientAngle = 90;
     this.dateTimeInput1.MonthCalendar.NavigationBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.dateTimeInput1.MonthCalendar.NavigationBackgroundStyle.Class = "";
     this.dateTimeInput1.MonthCalendar.NavigationBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dateTimeInput1.MonthCalendar.TodayButtonVisible = true;
     this.dateTimeInput1.MonthCalendar.WeeklyMarkedDays = new System.DayOfWeek[0];
     this.dateTimeInput1.Name = "dateTimeInput1";
     this.dateTimeInput1.Size = new System.Drawing.Size(130, 25);
     this.dateTimeInput1.TabIndex = 10;
     this.dateTimeInput1.Tag = "UpdateDate";
     //
     // labelX21
     //
     this.labelX21.AutoSize = true;
     //
     //
     //
     this.labelX21.BackgroundStyle.Class = "";
     this.labelX21.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX21.ForeColor = System.Drawing.Color.Black;
     this.labelX21.Location = new System.Drawing.Point(49, 94);
     this.labelX21.Name = "labelX21";
     this.labelX21.Size = new System.Drawing.Size(47, 21);
     this.labelX21.TabIndex = 8;
     this.labelX21.Text = "班別:";
     //
     // comboBoxEx17
     //
     this.comboBoxEx17.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.comboBoxEx17.Font = new System.Drawing.Font("Microsoft JhengHei", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(136)));
     this.comboBoxEx17.FormattingEnabled = true;
     this.comboBoxEx17.ItemHeight = 18;
     this.comboBoxEx17.Location = new System.Drawing.Point(99, 91);
     this.comboBoxEx17.Name = "comboBoxEx17";
     this.comboBoxEx17.Size = new System.Drawing.Size(130, 24);
     this.comboBoxEx17.TabIndex = 9;
     this.comboBoxEx17.Tag = "ClassType";
     //
     // textBoxX36
     //
     //
     //
     //
     this.textBoxX36.Border.Class = "TextBoxBorder";
     this.textBoxX36.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.textBoxX36.Location = new System.Drawing.Point(361, 31);
     this.textBoxX36.Name = "textBoxX36";
     this.textBoxX36.Size = new System.Drawing.Size(130, 25);
     this.textBoxX36.TabIndex = 3;
     this.textBoxX36.Tag = "Comment";
     //
     // textBoxX37
     //
     //
     //
     //
     this.textBoxX37.Border.Class = "TextBoxBorder";
     this.textBoxX37.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.textBoxX37.Location = new System.Drawing.Point(261, 0);
     this.textBoxX37.Name = "textBoxX37";
     this.textBoxX37.Size = new System.Drawing.Size(230, 25);
     this.textBoxX37.TabIndex = 1;
     this.textBoxX37.Tag = "UpdateDescription";
     //
     // labelX56
     //
     this.labelX56.AutoSize = true;
     //
     //
     //
     this.labelX56.BackgroundStyle.Class = "";
     this.labelX56.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX56.ForeColor = System.Drawing.Color.Black;
     this.labelX56.Location = new System.Drawing.Point(313, 64);
     this.labelX56.Name = "labelX56";
     this.labelX56.Size = new System.Drawing.Size(47, 21);
     this.labelX56.TabIndex = 0;
     this.labelX56.Text = "科別:";
     //
     // comboBoxEx11
     //
     this.comboBoxEx11.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.comboBoxEx11.Font = new System.Drawing.Font("Microsoft JhengHei", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(136)));
     this.comboBoxEx11.FormattingEnabled = true;
     this.comboBoxEx11.ItemHeight = 18;
     this.comboBoxEx11.Location = new System.Drawing.Point(361, 61);
     this.comboBoxEx11.Name = "comboBoxEx11";
     this.comboBoxEx11.Size = new System.Drawing.Size(130, 24);
     this.comboBoxEx11.TabIndex = 5;
     this.comboBoxEx11.Tag = "Department";
     //
     // comboBoxEx13
     //
     this.comboBoxEx13.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.comboBoxEx13.Font = new System.Drawing.Font("Microsoft JhengHei", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(136)));
     this.comboBoxEx13.FormattingEnabled = true;
     this.comboBoxEx13.ItemHeight = 18;
     this.comboBoxEx13.Location = new System.Drawing.Point(100, 4);
     this.comboBoxEx13.Name = "comboBoxEx13";
     this.comboBoxEx13.Size = new System.Drawing.Size(73, 24);
     this.comboBoxEx13.TabIndex = 0;
     this.comboBoxEx13.Tag = "UpdateCode";
     //
     // labelX57
     //
     this.labelX57.AutoSize = true;
     //
     //
     //
     this.labelX57.BackgroundStyle.Class = "";
     this.labelX57.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX57.ForeColor = System.Drawing.Color.Black;
     this.labelX57.Location = new System.Drawing.Point(49, 64);
     this.labelX57.Name = "labelX57";
     this.labelX57.Size = new System.Drawing.Size(47, 21);
     this.labelX57.TabIndex = 0;
     this.labelX57.Text = "年級:";
     //
     // labelX58
     //
     this.labelX58.AutoSize = true;
     //
     //
     //
     this.labelX58.BackgroundStyle.Class = "";
     this.labelX58.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX58.ForeColor = System.Drawing.Color.Black;
     this.labelX58.Location = new System.Drawing.Point(312, 35);
     this.labelX58.Name = "labelX58";
     this.labelX58.Size = new System.Drawing.Size(47, 21);
     this.labelX58.TabIndex = 0;
     this.labelX58.Text = "備註:";
     //
     // labelX59
     //
     this.labelX59.AutoSize = true;
     //
     //
     //
     this.labelX59.BackgroundStyle.Class = "";
     this.labelX59.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX59.ForeColor = System.Drawing.Color.Black;
     this.labelX59.Location = new System.Drawing.Point(23, 35);
     this.labelX59.Name = "labelX59";
     this.labelX59.Size = new System.Drawing.Size(74, 21);
     this.labelX59.TabIndex = 0;
     this.labelX59.Text = "異動日期:";
     //
     // labelX60
     //
     this.labelX60.AutoSize = true;
     //
     //
     //
     this.labelX60.BackgroundStyle.Class = "";
     this.labelX60.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX60.ForeColor = System.Drawing.Color.Black;
     this.labelX60.Location = new System.Drawing.Point(179, 4);
     this.labelX60.Name = "labelX60";
     this.labelX60.Size = new System.Drawing.Size(87, 21);
     this.labelX60.TabIndex = 0;
     this.labelX60.Text = "原因及事項:";
     //
     // labelX61
     //
     this.labelX61.AutoSize = true;
     //
     //
     //
     this.labelX61.BackgroundStyle.Class = "";
     this.labelX61.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX61.ForeColor = System.Drawing.Color.Black;
     this.labelX61.Location = new System.Drawing.Point(22, 6);
     this.labelX61.Name = "labelX61";
     this.labelX61.Size = new System.Drawing.Size(74, 21);
     this.labelX61.TabIndex = 0;
     this.labelX61.Text = "異動代碼:";
     //
     // comboBoxEx15
     //
     this.comboBoxEx15.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.comboBoxEx15.Font = new System.Drawing.Font("Microsoft JhengHei", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(136)));
     this.comboBoxEx15.FormattingEnabled = true;
     this.comboBoxEx15.ItemHeight = 18;
     this.comboBoxEx15.Location = new System.Drawing.Point(100, 61);
     this.comboBoxEx15.Name = "comboBoxEx15";
     this.comboBoxEx15.Size = new System.Drawing.Size(130, 24);
     this.comboBoxEx15.TabIndex = 4;
     this.comboBoxEx15.Tag = "GradeYear";
     //
     // 轉入名冊
     //
     this.轉入名冊.Controls.Add(this.groupPanel8);
     this.轉入名冊.Controls.Add(this.groupPanel7);
     this.轉入名冊.Controls.Add(this.groupPanel6);
     this.轉入名冊.Dock = System.Windows.Forms.DockStyle.Fill;
     this.轉入名冊.Location = new System.Drawing.Point(0, 0);
     this.轉入名冊.Name = "轉入名冊";
     this.轉入名冊.Size = new System.Drawing.Size(511, 465);
     this.轉入名冊.TabIndex = 3;
     //
     // groupPanel8
     //
     this.groupPanel8.CanvasColor = System.Drawing.SystemColors.Control;
     this.groupPanel8.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.groupPanel8.Controls.Add(this.dateTimeInput7);
     this.groupPanel8.Controls.Add(this.textBoxX25);
     this.groupPanel8.Controls.Add(this.textBoxX19);
     this.groupPanel8.Controls.Add(this.textBoxX26);
     this.groupPanel8.Controls.Add(this.textBoxX20);
     this.groupPanel8.Controls.Add(this.textBoxX21);
     this.groupPanel8.Controls.Add(this.labelX34);
     this.groupPanel8.Controls.Add(this.labelX35);
     this.groupPanel8.Controls.Add(this.labelX36);
     this.groupPanel8.Controls.Add(this.labelX37);
     this.groupPanel8.Controls.Add(this.labelX38);
     this.groupPanel8.Controls.Add(this.labelX39);
     this.groupPanel8.Location = new System.Drawing.Point(4, 270);
     this.groupPanel8.Name = "groupPanel8";
     this.groupPanel8.Size = new System.Drawing.Size(498, 104);
     //
     //
     //
     this.groupPanel8.Style.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.groupPanel8.Style.BackColorGradientAngle = 90;
     this.groupPanel8.Style.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.groupPanel8.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel8.Style.BorderBottomWidth = 1;
     this.groupPanel8.Style.BorderColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.groupPanel8.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel8.Style.BorderLeftWidth = 1;
     this.groupPanel8.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel8.Style.BorderRightWidth = 1;
     this.groupPanel8.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel8.Style.BorderTopWidth = 1;
     this.groupPanel8.Style.Class = "";
     this.groupPanel8.Style.CornerDiameter = 4;
     this.groupPanel8.Style.CornerType = DevComponents.DotNetBar.eCornerType.Rounded;
     this.groupPanel8.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.groupPanel8.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near;
     //
     //
     //
     this.groupPanel8.StyleMouseDown.Class = "";
     this.groupPanel8.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.groupPanel8.StyleMouseOver.Class = "";
     this.groupPanel8.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.groupPanel8.TabIndex = 0;
     this.groupPanel8.Text = "原就讀學校資料";
     //
     // dateTimeInput7
     //
     //
     //
     //
     this.dateTimeInput7.BackgroundStyle.Class = "DateTimeInputBackground";
     this.dateTimeInput7.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dateTimeInput7.ButtonDropDown.Shortcut = DevComponents.DotNetBar.eShortcut.AltDown;
     this.dateTimeInput7.ButtonDropDown.Visible = true;
     this.dateTimeInput7.IsPopupCalendarOpen = false;
     this.dateTimeInput7.Location = new System.Drawing.Point(98, 54);
     //
     //
     //
     this.dateTimeInput7.MonthCalendar.AnnuallyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.dateTimeInput7.MonthCalendar.BackgroundStyle.BackColor = System.Drawing.SystemColors.Window;
     this.dateTimeInput7.MonthCalendar.BackgroundStyle.Class = "";
     this.dateTimeInput7.MonthCalendar.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dateTimeInput7.MonthCalendar.ClearButtonVisible = true;
     //
     //
     //
     this.dateTimeInput7.MonthCalendar.CommandsBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground2;
     this.dateTimeInput7.MonthCalendar.CommandsBackgroundStyle.BackColorGradientAngle = 90;
     this.dateTimeInput7.MonthCalendar.CommandsBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
     this.dateTimeInput7.MonthCalendar.CommandsBackgroundStyle.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.dateTimeInput7.MonthCalendar.CommandsBackgroundStyle.BorderTopColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarDockedBorder;
     this.dateTimeInput7.MonthCalendar.CommandsBackgroundStyle.BorderTopWidth = 1;
     this.dateTimeInput7.MonthCalendar.CommandsBackgroundStyle.Class = "";
     this.dateTimeInput7.MonthCalendar.CommandsBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dateTimeInput7.MonthCalendar.DayNames = new string[] {
     "日",
     "一",
     "二",
     "三",
     "四",
     "五",
     "六"};
     this.dateTimeInput7.MonthCalendar.DisplayMonth = new System.DateTime(2009, 12, 1, 0, 0, 0, 0);
     this.dateTimeInput7.MonthCalendar.MarkedDates = new System.DateTime[0];
     this.dateTimeInput7.MonthCalendar.MonthlyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.dateTimeInput7.MonthCalendar.NavigationBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.dateTimeInput7.MonthCalendar.NavigationBackgroundStyle.BackColorGradientAngle = 90;
     this.dateTimeInput7.MonthCalendar.NavigationBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.dateTimeInput7.MonthCalendar.NavigationBackgroundStyle.Class = "";
     this.dateTimeInput7.MonthCalendar.NavigationBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dateTimeInput7.MonthCalendar.TodayButtonVisible = true;
     this.dateTimeInput7.MonthCalendar.WeeklyMarkedDays = new System.DayOfWeek[0];
     this.dateTimeInput7.Name = "dateTimeInput7";
     this.dateTimeInput7.Size = new System.Drawing.Size(130, 25);
     this.dateTimeInput7.TabIndex = 6;
     this.dateTimeInput7.Tag = "PreviousSchoolLastADDate";
     //
     // textBoxX25
     //
     //
     //
     //
     this.textBoxX25.Border.Class = "TextBoxBorder";
     this.textBoxX25.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.textBoxX25.Location = new System.Drawing.Point(100, 0);
     this.textBoxX25.Name = "textBoxX25";
     this.textBoxX25.Size = new System.Drawing.Size(130, 25);
     this.textBoxX25.TabIndex = 0;
     this.textBoxX25.Tag = "PreviousSchool";
     this.textBoxX25.WatermarkText = "學校代號+校名";
     //
     // textBoxX19
     //
     //
     //
     //
     this.textBoxX19.Border.Class = "TextBoxBorder";
     this.textBoxX19.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.textBoxX19.Location = new System.Drawing.Point(100, 26);
     this.textBoxX19.Name = "textBoxX19";
     this.textBoxX19.Size = new System.Drawing.Size(130, 25);
     this.textBoxX19.TabIndex = 2;
     this.textBoxX19.Tag = "PreviousDepartment";
     //
     // textBoxX26
     //
     //
     //
     //
     this.textBoxX26.Border.Class = "TextBoxBorder";
     this.textBoxX26.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.textBoxX26.Location = new System.Drawing.Point(358, 52);
     this.textBoxX26.Name = "textBoxX26";
     this.textBoxX26.Size = new System.Drawing.Size(130, 25);
     this.textBoxX26.TabIndex = 5;
     this.textBoxX26.Tag = "PreviousSchoolLastADNumber";
     //
     // textBoxX20
     //
     //
     //
     //
     this.textBoxX20.Border.Class = "TextBoxBorder";
     this.textBoxX20.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.textBoxX20.Location = new System.Drawing.Point(358, 26);
     this.textBoxX20.Name = "textBoxX20";
     this.textBoxX20.Size = new System.Drawing.Size(130, 25);
     this.textBoxX20.TabIndex = 3;
     this.textBoxX20.Tag = "PreviousGradeYear";
     this.textBoxX20.WatermarkText = "一上、一下...";
     //
     // textBoxX21
     //
     //
     //
     //
     this.textBoxX21.Border.Class = "TextBoxBorder";
     this.textBoxX21.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.textBoxX21.Location = new System.Drawing.Point(358, 0);
     this.textBoxX21.Name = "textBoxX21";
     this.textBoxX21.Size = new System.Drawing.Size(130, 25);
     this.textBoxX21.TabIndex = 1;
     this.textBoxX21.Tag = "PreviousStudentNumber";
     //
     // labelX34
     //
     this.labelX34.AutoSize = true;
     //
     //
     //
     this.labelX34.BackgroundStyle.Class = "";
     this.labelX34.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX34.ForeColor = System.Drawing.Color.Black;
     this.labelX34.Location = new System.Drawing.Point(280, 52);
     this.labelX34.Name = "labelX34";
     this.labelX34.Size = new System.Drawing.Size(74, 21);
     this.labelX34.TabIndex = 0;
     this.labelX34.Text = "備查文號:";
     //
     // labelX35
     //
     this.labelX35.AutoSize = true;
     //
     //
     //
     this.labelX35.BackgroundStyle.Class = "";
     this.labelX35.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX35.ForeColor = System.Drawing.Color.Black;
     this.labelX35.Location = new System.Drawing.Point(23, 55);
     this.labelX35.Name = "labelX35";
     this.labelX35.Size = new System.Drawing.Size(74, 21);
     this.labelX35.TabIndex = 0;
     this.labelX35.Text = "備查日期:";
     //
     // labelX36
     //
     this.labelX36.AutoSize = true;
     //
     //
     //
     this.labelX36.BackgroundStyle.Class = "";
     this.labelX36.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX36.ForeColor = System.Drawing.Color.Black;
     this.labelX36.Location = new System.Drawing.Point(307, 26);
     this.labelX36.Name = "labelX36";
     this.labelX36.Size = new System.Drawing.Size(47, 21);
     this.labelX36.TabIndex = 0;
     this.labelX36.Text = "年級:";
     //
     // labelX37
     //
     this.labelX37.AutoSize = true;
     //
     //
     //
     this.labelX37.BackgroundStyle.Class = "";
     this.labelX37.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX37.ForeColor = System.Drawing.Color.Black;
     this.labelX37.Location = new System.Drawing.Point(50, 29);
     this.labelX37.Name = "labelX37";
     this.labelX37.Size = new System.Drawing.Size(47, 21);
     this.labelX37.TabIndex = 0;
     this.labelX37.Text = "科別:";
     //
     // labelX38
     //
     this.labelX38.AutoSize = true;
     //
     //
     //
     this.labelX38.BackgroundStyle.Class = "";
     this.labelX38.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX38.ForeColor = System.Drawing.Color.Black;
     this.labelX38.Location = new System.Drawing.Point(307, 0);
     this.labelX38.Name = "labelX38";
     this.labelX38.Size = new System.Drawing.Size(47, 21);
     this.labelX38.TabIndex = 0;
     this.labelX38.Text = "學號:";
     //
     // labelX39
     //
     this.labelX39.AutoSize = true;
     //
     //
     //
     this.labelX39.BackgroundStyle.Class = "";
     this.labelX39.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX39.ForeColor = System.Drawing.Color.Black;
     this.labelX39.Location = new System.Drawing.Point(10, 3);
     this.labelX39.Name = "labelX39";
     this.labelX39.Size = new System.Drawing.Size(87, 21);
     this.labelX39.TabIndex = 0;
     this.labelX39.Text = "原就讀學校:";
     //
     // groupPanel7
     //
     this.groupPanel7.CanvasColor = System.Drawing.SystemColors.Control;
     this.groupPanel7.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.groupPanel7.Controls.Add(this.dateTimeInput6);
     this.groupPanel7.Controls.Add(this.textBoxX4);
     this.groupPanel7.Controls.Add(this.labelX16);
     this.groupPanel7.Controls.Add(this.labelX28);
     this.groupPanel7.Controls.Add(this.labelX29);
     this.groupPanel7.Controls.Add(this.labelX30);
     this.groupPanel7.Controls.Add(this.textBoxX16);
     this.groupPanel7.Controls.Add(this.textBoxX17);
     this.groupPanel7.Controls.Add(this.comboBoxEx8);
     this.groupPanel7.Controls.Add(this.labelX31);
     this.groupPanel7.Controls.Add(this.textBoxX18);
     this.groupPanel7.Controls.Add(this.labelX32);
     this.groupPanel7.Location = new System.Drawing.Point(4, 156);
     this.groupPanel7.Name = "groupPanel7";
     this.groupPanel7.Size = new System.Drawing.Size(498, 108);
     //
     //
     //
     this.groupPanel7.Style.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.groupPanel7.Style.BackColorGradientAngle = 90;
     this.groupPanel7.Style.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.groupPanel7.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel7.Style.BorderBottomWidth = 1;
     this.groupPanel7.Style.BorderColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.groupPanel7.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel7.Style.BorderLeftWidth = 1;
     this.groupPanel7.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel7.Style.BorderRightWidth = 1;
     this.groupPanel7.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel7.Style.BorderTopWidth = 1;
     this.groupPanel7.Style.Class = "";
     this.groupPanel7.Style.CornerDiameter = 4;
     this.groupPanel7.Style.CornerType = DevComponents.DotNetBar.eCornerType.Rounded;
     this.groupPanel7.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.groupPanel7.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near;
     //
     //
     //
     this.groupPanel7.StyleMouseDown.Class = "";
     this.groupPanel7.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.groupPanel7.StyleMouseOver.Class = "";
     this.groupPanel7.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.groupPanel7.TabIndex = 0;
     this.groupPanel7.Text = "學生基本資料";
     //
     // dateTimeInput6
     //
     //
     //
     //
     this.dateTimeInput6.BackgroundStyle.Class = "DateTimeInputBackground";
     this.dateTimeInput6.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dateTimeInput6.ButtonDropDown.Shortcut = DevComponents.DotNetBar.eShortcut.AltDown;
     this.dateTimeInput6.ButtonDropDown.Visible = true;
     this.dateTimeInput6.IsPopupCalendarOpen = false;
     this.dateTimeInput6.Location = new System.Drawing.Point(358, 27);
     //
     //
     //
     this.dateTimeInput6.MonthCalendar.AnnuallyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.dateTimeInput6.MonthCalendar.BackgroundStyle.BackColor = System.Drawing.SystemColors.Window;
     this.dateTimeInput6.MonthCalendar.BackgroundStyle.Class = "";
     this.dateTimeInput6.MonthCalendar.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dateTimeInput6.MonthCalendar.ClearButtonVisible = true;
     //
     //
     //
     this.dateTimeInput6.MonthCalendar.CommandsBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground2;
     this.dateTimeInput6.MonthCalendar.CommandsBackgroundStyle.BackColorGradientAngle = 90;
     this.dateTimeInput6.MonthCalendar.CommandsBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
     this.dateTimeInput6.MonthCalendar.CommandsBackgroundStyle.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.dateTimeInput6.MonthCalendar.CommandsBackgroundStyle.BorderTopColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarDockedBorder;
     this.dateTimeInput6.MonthCalendar.CommandsBackgroundStyle.BorderTopWidth = 1;
     this.dateTimeInput6.MonthCalendar.CommandsBackgroundStyle.Class = "";
     this.dateTimeInput6.MonthCalendar.CommandsBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dateTimeInput6.MonthCalendar.DayNames = new string[] {
     "日",
     "一",
     "二",
     "三",
     "四",
     "五",
     "六"};
     this.dateTimeInput6.MonthCalendar.DisplayMonth = new System.DateTime(2009, 12, 1, 0, 0, 0, 0);
     this.dateTimeInput6.MonthCalendar.MarkedDates = new System.DateTime[0];
     this.dateTimeInput6.MonthCalendar.MonthlyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.dateTimeInput6.MonthCalendar.NavigationBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.dateTimeInput6.MonthCalendar.NavigationBackgroundStyle.BackColorGradientAngle = 90;
     this.dateTimeInput6.MonthCalendar.NavigationBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.dateTimeInput6.MonthCalendar.NavigationBackgroundStyle.Class = "";
     this.dateTimeInput6.MonthCalendar.NavigationBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dateTimeInput6.MonthCalendar.TodayButtonVisible = true;
     this.dateTimeInput6.MonthCalendar.WeeklyMarkedDays = new System.DayOfWeek[0];
     this.dateTimeInput6.Name = "dateTimeInput6";
     this.dateTimeInput6.Size = new System.Drawing.Size(130, 25);
     this.dateTimeInput6.TabIndex = 11;
     this.dateTimeInput6.Tag = "Birthdate";
     //
     // textBoxX4
     //
     //
     //
     //
     this.textBoxX4.Border.Class = "TextBoxBorder";
     this.textBoxX4.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.textBoxX4.Location = new System.Drawing.Point(100, 55);
     this.textBoxX4.Name = "textBoxX4";
     this.textBoxX4.Size = new System.Drawing.Size(130, 25);
     this.textBoxX4.TabIndex = 9;
     this.textBoxX4.Tag = "IDNumberComment";
     //
     // labelX16
     //
     this.labelX16.AutoSize = true;
     //
     //
     //
     this.labelX16.BackgroundStyle.Class = "";
     this.labelX16.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX16.Font = new System.Drawing.Font("Microsoft JhengHei", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(136)));
     this.labelX16.ForeColor = System.Drawing.Color.Black;
     this.labelX16.Location = new System.Drawing.Point(0, 55);
     this.labelX16.Name = "labelX16";
     this.labelX16.Size = new System.Drawing.Size(106, 19);
     this.labelX16.TabIndex = 10;
     this.labelX16.Text = "註1(身分證註記):";
     //
     // labelX28
     //
     this.labelX28.AutoSize = true;
     //
     //
     //
     this.labelX28.BackgroundStyle.Class = "";
     this.labelX28.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX28.ForeColor = System.Drawing.Color.Black;
     this.labelX28.Location = new System.Drawing.Point(307, 54);
     this.labelX28.Name = "labelX28";
     this.labelX28.Size = new System.Drawing.Size(47, 21);
     this.labelX28.TabIndex = 6;
     this.labelX28.Text = "性別:";
     //
     // labelX29
     //
     this.labelX29.AutoSize = true;
     //
     //
     //
     this.labelX29.BackgroundStyle.Class = "";
     this.labelX29.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX29.ForeColor = System.Drawing.Color.Black;
     this.labelX29.Location = new System.Drawing.Point(307, 0);
     this.labelX29.Name = "labelX29";
     this.labelX29.Size = new System.Drawing.Size(47, 21);
     this.labelX29.TabIndex = 8;
     this.labelX29.Text = "學號:";
     //
     // labelX30
     //
     this.labelX30.AutoSize = true;
     //
     //
     //
     this.labelX30.BackgroundStyle.Class = "";
     this.labelX30.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX30.ForeColor = System.Drawing.Color.Black;
     this.labelX30.Location = new System.Drawing.Point(50, 4);
     this.labelX30.Name = "labelX30";
     this.labelX30.Size = new System.Drawing.Size(47, 21);
     this.labelX30.TabIndex = 3;
     this.labelX30.Text = "姓名:";
     //
     // textBoxX16
     //
     //
     //
     //
     this.textBoxX16.Border.Class = "TextBoxBorder";
     this.textBoxX16.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.textBoxX16.Location = new System.Drawing.Point(358, 0);
     this.textBoxX16.Name = "textBoxX16";
     this.textBoxX16.Size = new System.Drawing.Size(130, 25);
     this.textBoxX16.TabIndex = 1;
     this.textBoxX16.Tag = "StudentNumber";
     //
     // textBoxX17
     //
     //
     //
     //
     this.textBoxX17.Border.Class = "TextBoxBorder";
     this.textBoxX17.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.textBoxX17.Location = new System.Drawing.Point(100, 28);
     this.textBoxX17.Name = "textBoxX17";
     this.textBoxX17.Size = new System.Drawing.Size(130, 25);
     this.textBoxX17.TabIndex = 2;
     this.textBoxX17.Tag = "IDNumber";
     //
     // comboBoxEx8
     //
     this.comboBoxEx8.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.comboBoxEx8.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.comboBoxEx8.Font = new System.Drawing.Font("Microsoft JhengHei", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(136)));
     this.comboBoxEx8.FormattingEnabled = true;
     this.comboBoxEx8.ItemHeight = 18;
     this.comboBoxEx8.Location = new System.Drawing.Point(358, 54);
     this.comboBoxEx8.Name = "comboBoxEx8";
     this.comboBoxEx8.Size = new System.Drawing.Size(73, 24);
     this.comboBoxEx8.TabIndex = 4;
     this.comboBoxEx8.Tag = "Gender";
     //
     // labelX31
     //
     this.labelX31.AutoSize = true;
     //
     //
     //
     this.labelX31.BackgroundStyle.Class = "";
     this.labelX31.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX31.ForeColor = System.Drawing.Color.Black;
     this.labelX31.Location = new System.Drawing.Point(307, 27);
     this.labelX31.Name = "labelX31";
     this.labelX31.Size = new System.Drawing.Size(47, 21);
     this.labelX31.TabIndex = 4;
     this.labelX31.Text = "生日:";
     //
     // textBoxX18
     //
     //
     //
     //
     this.textBoxX18.Border.Class = "TextBoxBorder";
     this.textBoxX18.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.textBoxX18.Location = new System.Drawing.Point(100, 1);
     this.textBoxX18.Name = "textBoxX18";
     this.textBoxX18.Size = new System.Drawing.Size(130, 25);
     this.textBoxX18.TabIndex = 0;
     this.textBoxX18.Tag = "Name";
     //
     // labelX32
     //
     this.labelX32.AutoSize = true;
     //
     //
     //
     this.labelX32.BackgroundStyle.Class = "";
     this.labelX32.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX32.ForeColor = System.Drawing.Color.Black;
     this.labelX32.Location = new System.Drawing.Point(23, 31);
     this.labelX32.Name = "labelX32";
     this.labelX32.Size = new System.Drawing.Size(87, 21);
     this.labelX32.TabIndex = 7;
     this.labelX32.Text = "身分證字號:";
     //
     // groupPanel6
     //
     this.groupPanel6.CanvasColor = System.Drawing.SystemColors.Control;
     this.groupPanel6.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.groupPanel6.Controls.Add(this.textBoxX24);
     this.groupPanel6.Controls.Add(this.dateTimeInput5);
     this.groupPanel6.Controls.Add(this.labelX71);
     this.groupPanel6.Controls.Add(this.labelX41);
     this.groupPanel6.Controls.Add(this.comboBoxEx19);
     this.groupPanel6.Controls.Add(this.comboBoxEx12);
     this.groupPanel6.Controls.Add(this.textBoxX14);
     this.groupPanel6.Controls.Add(this.textBoxX15);
     this.groupPanel6.Controls.Add(this.labelX22);
     this.groupPanel6.Controls.Add(this.comboBoxEx6);
     this.groupPanel6.Controls.Add(this.comboBoxEx7);
     this.groupPanel6.Controls.Add(this.labelX23);
     this.groupPanel6.Controls.Add(this.labelX24);
     this.groupPanel6.Controls.Add(this.labelX25);
     this.groupPanel6.Controls.Add(this.labelX26);
     this.groupPanel6.Controls.Add(this.labelX27);
     this.groupPanel6.Location = new System.Drawing.Point(3, 1);
     this.groupPanel6.Name = "groupPanel6";
     this.groupPanel6.Size = new System.Drawing.Size(499, 144);
     //
     //
     //
     this.groupPanel6.Style.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.groupPanel6.Style.BackColorGradientAngle = 90;
     this.groupPanel6.Style.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.groupPanel6.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel6.Style.BorderBottomWidth = 1;
     this.groupPanel6.Style.BorderColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.groupPanel6.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel6.Style.BorderLeftWidth = 1;
     this.groupPanel6.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel6.Style.BorderRightWidth = 1;
     this.groupPanel6.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel6.Style.BorderTopWidth = 1;
     this.groupPanel6.Style.Class = "";
     this.groupPanel6.Style.CornerDiameter = 4;
     this.groupPanel6.Style.CornerType = DevComponents.DotNetBar.eCornerType.Rounded;
     this.groupPanel6.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.groupPanel6.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near;
     //
     //
     //
     this.groupPanel6.StyleMouseDown.Class = "";
     this.groupPanel6.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.groupPanel6.StyleMouseOver.Class = "";
     this.groupPanel6.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.groupPanel6.TabIndex = 0;
     this.groupPanel6.Text = "異動狀況";
     //
     // textBoxX24
     //
     //
     //
     //
     this.textBoxX24.Border.Class = "TextBoxBorder";
     this.textBoxX24.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.textBoxX24.Location = new System.Drawing.Point(359, 87);
     this.textBoxX24.Name = "textBoxX24";
     this.textBoxX24.Size = new System.Drawing.Size(130, 25);
     this.textBoxX24.TabIndex = 13;
     this.textBoxX24.Tag = "SpecialStatus";
     //
     // dateTimeInput5
     //
     //
     //
     //
     this.dateTimeInput5.BackgroundStyle.Class = "DateTimeInputBackground";
     this.dateTimeInput5.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dateTimeInput5.ButtonDropDown.Shortcut = DevComponents.DotNetBar.eShortcut.AltDown;
     this.dateTimeInput5.ButtonDropDown.Visible = true;
     this.dateTimeInput5.IsPopupCalendarOpen = false;
     this.dateTimeInput5.Location = new System.Drawing.Point(100, 34);
     //
     //
     //
     this.dateTimeInput5.MonthCalendar.AnnuallyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.dateTimeInput5.MonthCalendar.BackgroundStyle.BackColor = System.Drawing.SystemColors.Window;
     this.dateTimeInput5.MonthCalendar.BackgroundStyle.Class = "";
     this.dateTimeInput5.MonthCalendar.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dateTimeInput5.MonthCalendar.ClearButtonVisible = true;
     //
     //
     //
     this.dateTimeInput5.MonthCalendar.CommandsBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground2;
     this.dateTimeInput5.MonthCalendar.CommandsBackgroundStyle.BackColorGradientAngle = 90;
     this.dateTimeInput5.MonthCalendar.CommandsBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
     this.dateTimeInput5.MonthCalendar.CommandsBackgroundStyle.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.dateTimeInput5.MonthCalendar.CommandsBackgroundStyle.BorderTopColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarDockedBorder;
     this.dateTimeInput5.MonthCalendar.CommandsBackgroundStyle.BorderTopWidth = 1;
     this.dateTimeInput5.MonthCalendar.CommandsBackgroundStyle.Class = "";
     this.dateTimeInput5.MonthCalendar.CommandsBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dateTimeInput5.MonthCalendar.DayNames = new string[] {
     "日",
     "一",
     "二",
     "三",
     "四",
     "五",
     "六"};
     this.dateTimeInput5.MonthCalendar.DisplayMonth = new System.DateTime(2009, 12, 1, 0, 0, 0, 0);
     this.dateTimeInput5.MonthCalendar.MarkedDates = new System.DateTime[0];
     this.dateTimeInput5.MonthCalendar.MonthlyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.dateTimeInput5.MonthCalendar.NavigationBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.dateTimeInput5.MonthCalendar.NavigationBackgroundStyle.BackColorGradientAngle = 90;
     this.dateTimeInput5.MonthCalendar.NavigationBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.dateTimeInput5.MonthCalendar.NavigationBackgroundStyle.Class = "";
     this.dateTimeInput5.MonthCalendar.NavigationBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dateTimeInput5.MonthCalendar.TodayButtonVisible = true;
     this.dateTimeInput5.MonthCalendar.WeeklyMarkedDays = new System.DayOfWeek[0];
     this.dateTimeInput5.Name = "dateTimeInput5";
     this.dateTimeInput5.Size = new System.Drawing.Size(130, 25);
     this.dateTimeInput5.TabIndex = 12;
     this.dateTimeInput5.Tag = "UpdateDate";
     //
     // labelX71
     //
     this.labelX71.AutoSize = true;
     //
     //
     //
     this.labelX71.BackgroundStyle.Class = "";
     this.labelX71.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX71.ForeColor = System.Drawing.Color.Black;
     this.labelX71.Location = new System.Drawing.Point(253, 93);
     this.labelX71.Name = "labelX71";
     this.labelX71.Size = new System.Drawing.Size(101, 21);
     this.labelX71.TabIndex = 10;
     this.labelX71.Text = "特殊身份代碼:";
     //
     // labelX41
     //
     this.labelX41.AutoSize = true;
     //
     //
     //
     this.labelX41.BackgroundStyle.Class = "";
     this.labelX41.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX41.ForeColor = System.Drawing.Color.Black;
     this.labelX41.Location = new System.Drawing.Point(49, 94);
     this.labelX41.Name = "labelX41";
     this.labelX41.Size = new System.Drawing.Size(47, 21);
     this.labelX41.TabIndex = 8;
     this.labelX41.Text = "班別:";
     //
     // comboBoxEx19
     //
     this.comboBoxEx19.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.comboBoxEx19.Font = new System.Drawing.Font("Microsoft JhengHei", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(136)));
     this.comboBoxEx19.FormattingEnabled = true;
     this.comboBoxEx19.ItemHeight = 18;
     this.comboBoxEx19.Location = new System.Drawing.Point(99, 91);
     this.comboBoxEx19.Name = "comboBoxEx19";
     this.comboBoxEx19.Size = new System.Drawing.Size(130, 24);
     this.comboBoxEx19.TabIndex = 9;
     this.comboBoxEx19.Tag = "ClassType";
     //
     // comboBoxEx12
     //
     this.comboBoxEx12.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.comboBoxEx12.Font = new System.Drawing.Font("Microsoft JhengHei", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(136)));
     this.comboBoxEx12.FormattingEnabled = true;
     this.comboBoxEx12.ItemHeight = 18;
     this.comboBoxEx12.Location = new System.Drawing.Point(100, 61);
     this.comboBoxEx12.Name = "comboBoxEx12";
     this.comboBoxEx12.Size = new System.Drawing.Size(130, 24);
     this.comboBoxEx12.TabIndex = 4;
     this.comboBoxEx12.Tag = "GradeYear";
     //
     // textBoxX14
     //
     //
     //
     //
     this.textBoxX14.Border.Class = "TextBoxBorder";
     this.textBoxX14.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.textBoxX14.Location = new System.Drawing.Point(359, 33);
     this.textBoxX14.Name = "textBoxX14";
     this.textBoxX14.Size = new System.Drawing.Size(130, 25);
     this.textBoxX14.TabIndex = 3;
     this.textBoxX14.Tag = "Comment";
     //
     // textBoxX15
     //
     //
     //
     //
     this.textBoxX15.Border.Class = "TextBoxBorder";
     this.textBoxX15.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.textBoxX15.Location = new System.Drawing.Point(259, 3);
     this.textBoxX15.Name = "textBoxX15";
     this.textBoxX15.Size = new System.Drawing.Size(230, 25);
     this.textBoxX15.TabIndex = 1;
     this.textBoxX15.Tag = "UpdateDescription";
     //
     // labelX22
     //
     this.labelX22.AutoSize = true;
     //
     //
     //
     this.labelX22.BackgroundStyle.Class = "";
     this.labelX22.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX22.ForeColor = System.Drawing.Color.Black;
     this.labelX22.Location = new System.Drawing.Point(307, 62);
     this.labelX22.Name = "labelX22";
     this.labelX22.Size = new System.Drawing.Size(47, 21);
     this.labelX22.TabIndex = 0;
     this.labelX22.Text = "科別:";
     //
     // comboBoxEx6
     //
     this.comboBoxEx6.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.comboBoxEx6.Font = new System.Drawing.Font("Microsoft JhengHei", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(136)));
     this.comboBoxEx6.FormattingEnabled = true;
     this.comboBoxEx6.ItemHeight = 18;
     this.comboBoxEx6.Location = new System.Drawing.Point(359, 60);
     this.comboBoxEx6.Name = "comboBoxEx6";
     this.comboBoxEx6.Size = new System.Drawing.Size(130, 24);
     this.comboBoxEx6.TabIndex = 5;
     this.comboBoxEx6.Tag = "Department";
     //
     // comboBoxEx7
     //
     this.comboBoxEx7.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.comboBoxEx7.Font = new System.Drawing.Font("Microsoft JhengHei", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(136)));
     this.comboBoxEx7.FormattingEnabled = true;
     this.comboBoxEx7.ItemHeight = 18;
     this.comboBoxEx7.Location = new System.Drawing.Point(100, 4);
     this.comboBoxEx7.Name = "comboBoxEx7";
     this.comboBoxEx7.Size = new System.Drawing.Size(73, 24);
     this.comboBoxEx7.TabIndex = 0;
     this.comboBoxEx7.Tag = "UpdateCode";
     //
     // labelX23
     //
     this.labelX23.AutoSize = true;
     //
     //
     //
     this.labelX23.BackgroundStyle.Class = "";
     this.labelX23.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX23.ForeColor = System.Drawing.Color.Black;
     this.labelX23.Location = new System.Drawing.Point(50, 63);
     this.labelX23.Name = "labelX23";
     this.labelX23.Size = new System.Drawing.Size(47, 21);
     this.labelX23.TabIndex = 0;
     this.labelX23.Text = "年級:";
     //
     // labelX24
     //
     this.labelX24.AutoSize = true;
     //
     //
     //
     this.labelX24.BackgroundStyle.Class = "";
     this.labelX24.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX24.ForeColor = System.Drawing.Color.Black;
     this.labelX24.Location = new System.Drawing.Point(282, 37);
     this.labelX24.Name = "labelX24";
     this.labelX24.Size = new System.Drawing.Size(74, 21);
     this.labelX24.TabIndex = 0;
     this.labelX24.Text = "備註說明:";
     //
     // labelX25
     //
     this.labelX25.AutoSize = true;
     //
     //
     //
     this.labelX25.BackgroundStyle.Class = "";
     this.labelX25.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX25.ForeColor = System.Drawing.Color.Black;
     this.labelX25.Location = new System.Drawing.Point(23, 37);
     this.labelX25.Name = "labelX25";
     this.labelX25.Size = new System.Drawing.Size(74, 21);
     this.labelX25.TabIndex = 0;
     this.labelX25.Text = "異動日期:";
     //
     // labelX26
     //
     this.labelX26.AutoSize = true;
     //
     //
     //
     this.labelX26.BackgroundStyle.Class = "";
     this.labelX26.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX26.ForeColor = System.Drawing.Color.Black;
     this.labelX26.Location = new System.Drawing.Point(179, 4);
     this.labelX26.Name = "labelX26";
     this.labelX26.Size = new System.Drawing.Size(87, 21);
     this.labelX26.TabIndex = 0;
     this.labelX26.Text = "原因及事項:";
     //
     // labelX27
     //
     this.labelX27.AutoSize = true;
     //
     //
     //
     this.labelX27.BackgroundStyle.Class = "";
     this.labelX27.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX27.ForeColor = System.Drawing.Color.Black;
     this.labelX27.Location = new System.Drawing.Point(-3, 8);
     this.labelX27.Name = "labelX27";
     this.labelX27.Size = new System.Drawing.Size(101, 21);
     this.labelX27.TabIndex = 0;
     this.labelX27.Text = "異動原因代碼:";
     //
     // UpdateRecordInfo
     //
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
     this.Controls.Add(this.panelEx1);
     this.Font = new System.Drawing.Font("Microsoft JhengHei", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Name = "UpdateRecordInfo";
     this.Size = new System.Drawing.Size(511, 465);
     this.panelEx1.ResumeLayout(false);
     this.panel3.ResumeLayout(false);
     this.groupPanel1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.dateTimeInput4)).EndInit();
     this.學籍異動.ResumeLayout(false);
     this.groupPanel10.ResumeLayout(false);
     this.groupPanel10.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dateTimeInput8)).EndInit();
     this.groupPanel11.ResumeLayout(false);
     this.groupPanel11.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dateTimeInput9)).EndInit();
     this.新生名冊.ResumeLayout(false);
     this.groupPanel4.ResumeLayout(false);
     this.groupPanel4.PerformLayout();
     this.groupPanel3.ResumeLayout(false);
     this.groupPanel3.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dateTimeInput11)).EndInit();
     this.groupPanel2.ResumeLayout(false);
     this.groupPanel2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dateTimeInput10)).EndInit();
     this.畢業名冊.ResumeLayout(false);
     this.groupPanel13.ResumeLayout(false);
     this.groupPanel13.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dateTimeInput3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateTimeInput2)).EndInit();
     this.groupPanel12.ResumeLayout(false);
     this.groupPanel12.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dateTimeInput1)).EndInit();
     this.轉入名冊.ResumeLayout(false);
     this.groupPanel8.ResumeLayout(false);
     this.groupPanel8.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dateTimeInput7)).EndInit();
     this.groupPanel7.ResumeLayout(false);
     this.groupPanel7.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dateTimeInput6)).EndInit();
     this.groupPanel6.ResumeLayout(false);
     this.groupPanel6.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dateTimeInput5)).EndInit();
     this.ResumeLayout(false);
 }
コード例 #7
0
ファイル: InfoDialog.cs プロジェクト: carlhuth/GenXSource
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(InfoDialog));
     this.tbInfo     = new System.Windows.Forms.TextBox();
     this.lblTopic   = new System.Windows.Forms.Label();
     this.btnSave    = new Janus.Windows.EditControls.UIButton();
     this.panelEx1   = new DevComponents.DotNetBar.PanelEx();
     this.btnbutton1 = new Janus.Windows.EditControls.UIButton();
     this.panelEx1.SuspendLayout();
     this.SuspendLayout();
     //
     // tbInfo
     //
     this.tbInfo.BackColor  = System.Drawing.SystemColors.Info;
     this.tbInfo.Dock       = System.Windows.Forms.DockStyle.Fill;
     this.tbInfo.Font       = new System.Drawing.Font("Courier New", 9.75F);
     this.tbInfo.Location   = new System.Drawing.Point(0, 40);
     this.tbInfo.MaxLength  = 1000000;
     this.tbInfo.Multiline  = true;
     this.tbInfo.Name       = "tbInfo";
     this.tbInfo.ScrollBars = System.Windows.Forms.ScrollBars.Both;
     this.tbInfo.Size       = new System.Drawing.Size(542, 576);
     this.tbInfo.TabIndex   = 0;
     this.tbInfo.Text       = "Info";
     this.tbInfo.WordWrap   = false;
     //
     // lblTopic
     //
     this.lblTopic.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                  | System.Windows.Forms.AnchorStyles.Right)));
     this.lblTopic.BackColor = System.Drawing.Color.Transparent;
     this.lblTopic.Font      = new System.Drawing.Font("Microsoft Sans Serif", 9.75F);
     this.lblTopic.Location  = new System.Drawing.Point(8, 8);
     this.lblTopic.Name      = "lblTopic";
     this.lblTopic.Size      = new System.Drawing.Size(374, 24);
     this.lblTopic.TabIndex  = 1;
     this.lblTopic.Text      = "Info";
     this.lblTopic.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // btnSave
     //
     this.btnSave.Anchor      = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.btnSave.BackColor   = System.Drawing.SystemColors.Control;
     this.btnSave.Location    = new System.Drawing.Point(390, 8);
     this.btnSave.Name        = "btnSave";
     this.btnSave.Size        = new System.Drawing.Size(72, 24);
     this.btnSave.TabIndex    = 2;
     this.btnSave.Text        = "&Save";
     this.btnSave.VisualStyle = Janus.Windows.UI.VisualStyle.Office2003;
     this.btnSave.Click      += new System.EventHandler(this.btnSave_Click);
     //
     // panelEx1
     //
     this.panelEx1.Controls.Add(this.btnbutton1);
     this.panelEx1.Controls.Add(this.lblTopic);
     this.panelEx1.Controls.Add(this.btnSave);
     this.panelEx1.Dock            = System.Windows.Forms.DockStyle.Top;
     this.panelEx1.Location        = new System.Drawing.Point(0, 0);
     this.panelEx1.Name            = "panelEx1";
     this.panelEx1.Size            = new System.Drawing.Size(542, 40);
     this.panelEx1.Style.Alignment = System.Drawing.StringAlignment.Center;
     this.panelEx1.Style.BackColor1.ColorSchemePart  = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
     this.panelEx1.Style.BackColor2.ColorSchemePart  = DevComponents.DotNetBar.eColorSchemePart.BarBackground2;
     this.panelEx1.Style.BackgroundImagePosition     = DevComponents.DotNetBar.eBackgroundImagePosition.Tile;
     this.panelEx1.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarDockedBorder;
     this.panelEx1.Style.ForeColor.ColorSchemePart   = DevComponents.DotNetBar.eColorSchemePart.ItemText;
     this.panelEx1.Style.GradientAngle = 90;
     this.panelEx1.TabIndex            = 3;
     //
     // btnbutton1
     //
     this.btnbutton1.Anchor      = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.btnbutton1.BackColor   = System.Drawing.SystemColors.Control;
     this.btnbutton1.Location    = new System.Drawing.Point(462, 8);
     this.btnbutton1.Name        = "btnbutton1";
     this.btnbutton1.Size        = new System.Drawing.Size(72, 24);
     this.btnbutton1.TabIndex    = 3;
     this.btnbutton1.Text        = "Cancel";
     this.btnbutton1.VisualStyle = Janus.Windows.UI.VisualStyle.Office2003;
     this.btnbutton1.Click      += new System.EventHandler(this.btnbutton1_Click);
     //
     // InfoDialog
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(542, 616);
     this.Controls.Add(this.tbInfo);
     this.Controls.Add(this.panelEx1);
     this.DoubleBuffered = true;
     this.Icon           = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Name           = "InfoDialog";
     this.StartPosition  = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text           = "Disassembly";
     this.panelEx1.ResumeLayout(false);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
コード例 #8
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(NewEntityForm));
     this.OK_smButton     = new LlamaCarbonCopy.Controls.BaseControls.SMButton();
     this.Cancel_smButton = new LlamaCarbonCopy.Controls.BaseControls.SMButton();
     this.smLabel1        = new LlamaCarbonCopy.Controls.BaseControls.SMLabel();
     this.smTextBox1      = new LlamaCarbonCopy.Controls.BaseControls.SMTextBox();
     this.panelEx1        = new DevComponents.DotNetBar.PanelEx();
     this.panelEx1.SuspendLayout();
     this.SuspendLayout();
     //
     // OK_smButton
     //
     this.OK_smButton.BackColor          = System.Drawing.Color.White;
     this.OK_smButton.DataSource         = null;
     this.OK_smButton.DataSourceProperty = null;
     this.OK_smButton.Font          = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.OK_smButton.LocalProperty = null;
     this.OK_smButton.Location      = new System.Drawing.Point(28, 82);
     this.OK_smButton.Name          = "OK_smButton";
     this.OK_smButton.Size          = new System.Drawing.Size(106, 26);
     this.OK_smButton.TabIndex      = 1;
     this.OK_smButton.Text          = "&Ok";
     this.OK_smButton.Click        += new System.EventHandler(this.OK_smButton_Click);
     //
     // Cancel_smButton
     //
     this.Cancel_smButton.BackColor          = System.Drawing.Color.White;
     this.Cancel_smButton.DataSource         = null;
     this.Cancel_smButton.DataSourceProperty = null;
     this.Cancel_smButton.DialogResult       = System.Windows.Forms.DialogResult.Cancel;
     this.Cancel_smButton.Font          = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.Cancel_smButton.LocalProperty = null;
     this.Cancel_smButton.Location      = new System.Drawing.Point(140, 82);
     this.Cancel_smButton.Name          = "Cancel_smButton";
     this.Cancel_smButton.Size          = new System.Drawing.Size(104, 26);
     this.Cancel_smButton.TabIndex      = 2;
     this.Cancel_smButton.Text          = "&Cancel";
     this.Cancel_smButton.Click        += new System.EventHandler(this.Cancel_smButton_Click);
     //
     // smLabel1
     //
     this.smLabel1.BackColor          = System.Drawing.Color.Transparent;
     this.smLabel1.DataSource         = null;
     this.smLabel1.DataSourceProperty = null;
     this.smLabel1.Font          = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.smLabel1.ForeColor     = System.Drawing.Color.Black;
     this.smLabel1.LocalProperty = null;
     this.smLabel1.Location      = new System.Drawing.Point(28, 8);
     this.smLabel1.Name          = "smLabel1";
     this.smLabel1.Size          = new System.Drawing.Size(200, 20);
     this.smLabel1.TabIndex      = 2;
     this.smLabel1.Text          = "Enter a name for the new item.";
     this.smLabel1.TextAlign     = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // smTextBox1
     //
     this.smTextBox1.BackColor          = System.Drawing.Color.White;
     this.smTextBox1.BorderStyle        = System.Windows.Forms.BorderStyle.FixedSingle;
     this.smTextBox1.DataSource         = null;
     this.smTextBox1.DataSourceProperty = null;
     this.smTextBox1.Font          = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.smTextBox1.ForeColor     = System.Drawing.Color.Black;
     this.smTextBox1.LocalProperty = null;
     this.smTextBox1.Location      = new System.Drawing.Point(28, 40);
     this.smTextBox1.Name          = "smTextBox1";
     this.smTextBox1.Size          = new System.Drawing.Size(216, 23);
     this.smTextBox1.TabIndex      = 0;
     this.smTextBox1.Text          = "";
     //
     // panelEx1
     //
     this.panelEx1.CanvasColor = System.Drawing.SystemColors.Control;
     this.panelEx1.Controls.Add(this.OK_smButton);
     this.panelEx1.Controls.Add(this.Cancel_smButton);
     this.panelEx1.Controls.Add(this.smLabel1);
     this.panelEx1.Controls.Add(this.smTextBox1);
     this.panelEx1.Dock                              = System.Windows.Forms.DockStyle.Fill;
     this.panelEx1.Location                          = new System.Drawing.Point(0, 0);
     this.panelEx1.Name                              = "panelEx1";
     this.panelEx1.Size                              = new System.Drawing.Size(282, 126);
     this.panelEx1.Style.Alignment                   = System.Drawing.StringAlignment.Center;
     this.panelEx1.Style.BackColor1.Color            = System.Drawing.Color.FromArgb(((System.Byte)(142)), ((System.Byte)(179)), ((System.Byte)(231)));
     this.panelEx1.Style.BackColor2.Color            = System.Drawing.Color.FromArgb(((System.Byte)(223)), ((System.Byte)(237)), ((System.Byte)(254)));
     this.panelEx1.Style.Border                      = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.panelEx1.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.panelEx1.Style.ForeColor.ColorSchemePart   = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.panelEx1.Style.GradientAngle               = 90;
     this.panelEx1.TabIndex                          = 3;
     //
     // NewEntityForm
     //
     this.AcceptButton      = this.OK_smButton;
     this.AutoScaleBaseSize = new System.Drawing.Size(6, 16);
     this.BackColor         = System.Drawing.Color.White;
     this.CancelButton      = this.Cancel_smButton;
     this.ClientSize        = new System.Drawing.Size(282, 126);
     this.Controls.Add(this.panelEx1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
     this.Icon            = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.Name            = "NewEntityForm";
     this.SizeGripStyle   = System.Windows.Forms.SizeGripStyle.Hide;
     this.Text            = "New";
     this.Load           += new System.EventHandler(this.NewEntityForm_Load);
     this.Closed         += new System.EventHandler(this.NewEntityForm_Closed);
     this.panelEx1.ResumeLayout(false);
     this.ResumeLayout(false);
 }
コード例 #9
0
 private void InitializeComponent()
 {
     this.panelEx1       = new DevComponents.DotNetBar.PanelEx();
     this.labelX1        = new DevComponents.DotNetBar.LabelX();
     this.labelX2        = new DevComponents.DotNetBar.LabelX();
     this.labelX3        = new DevComponents.DotNetBar.LabelX();
     this.labelX4        = new DevComponents.DotNetBar.LabelX();
     this.labelX5        = new DevComponents.DotNetBar.LabelX();
     this.comboBoxEx1    = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.comboTree1     = new DevComponents.DotNetBar.Controls.ComboTree();
     this.doubleInput1   = new DevComponents.Editors.DoubleInput();
     this.doubleInput2   = new DevComponents.Editors.DoubleInput();
     this.integerInput1  = new DevComponents.Editors.IntegerInput();
     this.advTree1       = new DevComponents.AdvTree.AdvTree();
     this.nodeConnector1 = new DevComponents.AdvTree.NodeConnector();
     this.elementStyle1  = new DevComponents.DotNetBar.ElementStyle();
     this.labelX6        = new DevComponents.DotNetBar.LabelX();
     this.labelX7        = new DevComponents.DotNetBar.LabelX();
     this.panelEx1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.doubleInput1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.doubleInput2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.integerInput1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.advTree1)).BeginInit();
     this.SuspendLayout();
     //
     // panelEx1
     //
     this.panelEx1.CanvasColor      = System.Drawing.SystemColors.Control;
     this.panelEx1.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.panelEx1.Controls.Add(this.labelX7);
     this.panelEx1.Controls.Add(this.labelX6);
     this.panelEx1.Controls.Add(this.advTree1);
     this.panelEx1.Controls.Add(this.integerInput1);
     this.panelEx1.Controls.Add(this.doubleInput2);
     this.panelEx1.Controls.Add(this.doubleInput1);
     this.panelEx1.Controls.Add(this.comboTree1);
     this.panelEx1.Controls.Add(this.comboBoxEx1);
     this.panelEx1.Controls.Add(this.labelX5);
     this.panelEx1.Controls.Add(this.labelX4);
     this.panelEx1.Controls.Add(this.labelX3);
     this.panelEx1.Controls.Add(this.labelX2);
     this.panelEx1.Controls.Add(this.labelX1);
     this.panelEx1.Dock            = System.Windows.Forms.DockStyle.Fill;
     this.panelEx1.Location        = new System.Drawing.Point(0, 0);
     this.panelEx1.Name            = "panelEx1";
     this.panelEx1.Size            = new System.Drawing.Size(411, 319);
     this.panelEx1.Style.Alignment = System.Drawing.StringAlignment.Center;
     this.panelEx1.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.panelEx1.Style.BackColor2.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.panelEx1.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.panelEx1.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.panelEx1.Style.ForeColor.ColorSchemePart   = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.panelEx1.Style.GradientAngle = 90;
     this.panelEx1.TabIndex            = 0;
     //
     // labelX1
     //
     this.labelX1.AutoSize = true;
     this.labelX1.Location = new System.Drawing.Point(11, 14);
     this.labelX1.Name     = "labelX1";
     this.labelX1.Size     = new System.Drawing.Size(50, 18);
     this.labelX1.TabIndex = 0;
     this.labelX1.Text     = "字 段 :";
     //
     // labelX2
     //
     this.labelX2.AutoSize = true;
     this.labelX2.Location = new System.Drawing.Point(11, 44);
     this.labelX2.Name     = "labelX2";
     this.labelX2.Size     = new System.Drawing.Size(50, 18);
     this.labelX2.TabIndex = 1;
     this.labelX2.Text     = "颜 色 :";
     //
     // labelX3
     //
     this.labelX3.AutoSize = true;
     this.labelX3.Location = new System.Drawing.Point(11, 75);
     this.labelX3.Name     = "labelX3";
     this.labelX3.Size     = new System.Drawing.Size(50, 18);
     this.labelX3.TabIndex = 2;
     this.labelX3.Text     = "最小值:";
     //
     // labelX4
     //
     this.labelX4.AutoSize = true;
     this.labelX4.Location = new System.Drawing.Point(154, 75);
     this.labelX4.Name     = "labelX4";
     this.labelX4.Size     = new System.Drawing.Size(50, 18);
     this.labelX4.TabIndex = 3;
     this.labelX4.Text     = "最大值:";
     //
     // labelX5
     //
     this.labelX5.AutoSize = true;
     this.labelX5.Location = new System.Drawing.Point(204, 14);
     this.labelX5.Name     = "labelX5";
     this.labelX5.Size     = new System.Drawing.Size(37, 18);
     this.labelX5.TabIndex = 4;
     this.labelX5.Text     = "等级:";
     //
     // comboBoxEx1
     //
     this.comboBoxEx1.DisplayMember     = "Text";
     this.comboBoxEx1.DrawMode          = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.comboBoxEx1.FormattingEnabled = true;
     this.comboBoxEx1.ItemHeight        = 15;
     this.comboBoxEx1.Location          = new System.Drawing.Point(61, 12);
     this.comboBoxEx1.Name     = "comboBoxEx1";
     this.comboBoxEx1.Size     = new System.Drawing.Size(137, 21);
     this.comboBoxEx1.TabIndex = 5;
     //
     // comboTree1
     //
     this.comboTree1.BackColor = System.Drawing.SystemColors.Window;
     //
     //
     //
     this.comboTree1.BackgroundStyle.Class  = "TextBoxBorder";
     this.comboTree1.ButtonDropDown.Visible = true;
     this.comboTree1.Location = new System.Drawing.Point(61, 41);
     this.comboTree1.Name     = "comboTree1";
     this.comboTree1.Size     = new System.Drawing.Size(228, 23);
     this.comboTree1.TabIndex = 6;
     //
     // doubleInput1
     //
     //
     //
     //
     this.doubleInput1.BackgroundStyle.Class   = "DateTimeInputBackground";
     this.doubleInput1.ButtonFreeText.Shortcut = DevComponents.DotNetBar.eShortcut.F2;
     this.doubleInput1.Increment = 1;
     this.doubleInput1.Location  = new System.Drawing.Point(61, 72);
     this.doubleInput1.Name      = "doubleInput1";
     this.doubleInput1.Size      = new System.Drawing.Size(87, 21);
     this.doubleInput1.TabIndex  = 7;
     //
     // doubleInput2
     //
     //
     //
     //
     this.doubleInput2.BackgroundStyle.Class   = "DateTimeInputBackground";
     this.doubleInput2.ButtonFreeText.Shortcut = DevComponents.DotNetBar.eShortcut.F2;
     this.doubleInput2.Increment = 1;
     this.doubleInput2.Location  = new System.Drawing.Point(202, 72);
     this.doubleInput2.Name      = "doubleInput2";
     this.doubleInput2.Size      = new System.Drawing.Size(87, 21);
     this.doubleInput2.TabIndex  = 8;
     //
     // integerInput1
     //
     //
     //
     //
     this.integerInput1.BackgroundStyle.Class   = "DateTimeInputBackground";
     this.integerInput1.ButtonFreeText.Shortcut = DevComponents.DotNetBar.eShortcut.F2;
     this.integerInput1.Location   = new System.Drawing.Point(242, 11);
     this.integerInput1.MaxValue   = 1000;
     this.integerInput1.MinValue   = 1;
     this.integerInput1.Name       = "integerInput1";
     this.integerInput1.ShowUpDown = true;
     this.integerInput1.Size       = new System.Drawing.Size(47, 21);
     this.integerInput1.TabIndex   = 9;
     this.integerInput1.Value      = 1;
     //
     // advTree1
     //
     this.advTree1.AccessibleRole = System.Windows.Forms.AccessibleRole.Outline;
     this.advTree1.AllowDrop      = true;
     this.advTree1.BackColor      = System.Drawing.SystemColors.Window;
     //
     //
     //
     this.advTree1.BackgroundStyle.Class = "TreeBorderKey";
     this.advTree1.Location       = new System.Drawing.Point(11, 103);
     this.advTree1.Name           = "advTree1";
     this.advTree1.NodesConnector = this.nodeConnector1;
     this.advTree1.NodeStyle      = this.elementStyle1;
     this.advTree1.PathSeparator  = ";";
     this.advTree1.Size           = new System.Drawing.Size(384, 201);
     this.advTree1.Styles.Add(this.elementStyle1);
     this.advTree1.TabIndex = 10;
     this.advTree1.Text     = "advTree1";
     //
     // nodeConnector1
     //
     this.nodeConnector1.LineColor = System.Drawing.SystemColors.ControlText;
     //
     // elementStyle1
     //
     this.elementStyle1.Name      = "elementStyle1";
     this.elementStyle1.TextColor = System.Drawing.SystemColors.ControlText;
     //
     // labelX6
     //
     this.labelX6.AutoSize = true;
     this.labelX6.Location = new System.Drawing.Point(326, 14);
     this.labelX6.Name     = "labelX6";
     this.labelX6.Size     = new System.Drawing.Size(31, 18);
     this.labelX6.TabIndex = 11;
     this.labelX6.Text     = "符号";
     //
     // labelX7
     //
     this.labelX7.BackColor = System.Drawing.Color.Maroon;
     this.labelX7.Location  = new System.Drawing.Point(295, 43);
     this.labelX7.Name      = "labelX7";
     this.labelX7.Size      = new System.Drawing.Size(100, 50);
     this.labelX7.TabIndex  = 12;
     //
     // frmColorBreakRenderer
     //
     this.Controls.Add(this.panelEx1);
     this.Name = "frmColorBreakRenderer";
     this.Size = new System.Drawing.Size(411, 319);
     this.panelEx1.ResumeLayout(false);
     this.panelEx1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.doubleInput1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.doubleInput2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.integerInput1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.advTree1)).EndInit();
     this.ResumeLayout(false);
 }
コード例 #10
0
ファイル: FindDialog.cs プロジェクト: carlhuth/GenXSource
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FindDialog));
     this.tbStr         = new System.Windows.Forms.TextBox();
     this.label1        = new System.Windows.Forms.Label();
     this.btnCancel     = new Janus.Windows.EditControls.UIButton();
     this.btnOK         = new Janus.Windows.EditControls.UIButton();
     this.cbStartAtRoot = new System.Windows.Forms.CheckBox();
     this.cbWhole       = new System.Windows.Forms.CheckBox();
     this.cbType        = new System.Windows.Forms.CheckBox();
     this.cbMethod      = new System.Windows.Forms.CheckBox();
     this.cbParameter   = new System.Windows.Forms.CheckBox();
     this.cbField       = new System.Windows.Forms.CheckBox();
     this.cbResource    = new System.Windows.Forms.CheckBox();
     this.checkBox8     = new System.Windows.Forms.CheckBox();
     this.groupBox1     = new System.Windows.Forms.GroupBox();
     this.cbProperty    = new System.Windows.Forms.CheckBox();
     this.cbEvent       = new System.Windows.Forms.CheckBox();
     this.groupBox2     = new System.Windows.Forms.GroupBox();
     this.cbCaseful     = new System.Windows.Forms.CheckBox();
     this.panelEx1      = new DevComponents.DotNetBar.PanelEx();
     this.groupBox1.SuspendLayout();
     this.groupBox2.SuspendLayout();
     this.panelEx1.SuspendLayout();
     this.SuspendLayout();
     //
     // tbStr
     //
     this.tbStr.AccessibleDescription = null;
     this.tbStr.AccessibleName        = null;
     resources.ApplyResources(this.tbStr, "tbStr");
     this.tbStr.BackgroundImage = null;
     this.tbStr.Font            = null;
     this.tbStr.Name            = "tbStr";
     //
     // label1
     //
     this.label1.AccessibleDescription = null;
     this.label1.AccessibleName        = null;
     resources.ApplyResources(this.label1, "label1");
     this.label1.BackColor = System.Drawing.Color.Transparent;
     this.label1.Font      = null;
     this.label1.Name      = "label1";
     //
     // btnCancel
     //
     this.btnCancel.AccessibleDescription = null;
     this.btnCancel.AccessibleName        = null;
     resources.ApplyResources(this.btnCancel, "btnCancel");
     this.btnCancel.BackColor       = System.Drawing.SystemColors.Control;
     this.btnCancel.BackgroundImage = null;
     this.btnCancel.DialogResult    = System.Windows.Forms.DialogResult.Cancel;
     this.btnCancel.Font            = null;
     this.btnCancel.Name            = "btnCancel";
     this.btnCancel.VisualStyle     = Janus.Windows.UI.VisualStyle.Office2003;
     this.btnCancel.Click          += new System.EventHandler(this.btnCancel_Click);
     //
     // btnOK
     //
     this.btnOK.AccessibleDescription = null;
     this.btnOK.AccessibleName        = null;
     resources.ApplyResources(this.btnOK, "btnOK");
     this.btnOK.BackColor       = System.Drawing.SystemColors.Control;
     this.btnOK.BackgroundImage = null;
     this.btnOK.Font            = null;
     this.btnOK.Name            = "btnOK";
     this.btnOK.VisualStyle     = Janus.Windows.UI.VisualStyle.Office2003;
     this.btnOK.Click          += new System.EventHandler(this.btnOK_Click);
     //
     // cbStartAtRoot
     //
     this.cbStartAtRoot.AccessibleDescription = null;
     this.cbStartAtRoot.AccessibleName        = null;
     resources.ApplyResources(this.cbStartAtRoot, "cbStartAtRoot");
     this.cbStartAtRoot.BackColor               = System.Drawing.Color.Transparent;
     this.cbStartAtRoot.BackgroundImage         = null;
     this.cbStartAtRoot.Font                    = null;
     this.cbStartAtRoot.Name                    = "cbStartAtRoot";
     this.cbStartAtRoot.UseVisualStyleBackColor = false;
     //
     // cbWhole
     //
     this.cbWhole.AccessibleDescription = null;
     this.cbWhole.AccessibleName        = null;
     resources.ApplyResources(this.cbWhole, "cbWhole");
     this.cbWhole.BackColor               = System.Drawing.Color.Transparent;
     this.cbWhole.BackgroundImage         = null;
     this.cbWhole.Font                    = null;
     this.cbWhole.Name                    = "cbWhole";
     this.cbWhole.UseVisualStyleBackColor = false;
     //
     // cbType
     //
     this.cbType.AccessibleDescription = null;
     this.cbType.AccessibleName        = null;
     resources.ApplyResources(this.cbType, "cbType");
     this.cbType.BackColor               = System.Drawing.Color.Transparent;
     this.cbType.BackgroundImage         = null;
     this.cbType.Font                    = null;
     this.cbType.Name                    = "cbType";
     this.cbType.UseVisualStyleBackColor = false;
     //
     // cbMethod
     //
     this.cbMethod.AccessibleDescription = null;
     this.cbMethod.AccessibleName        = null;
     resources.ApplyResources(this.cbMethod, "cbMethod");
     this.cbMethod.BackColor               = System.Drawing.Color.Transparent;
     this.cbMethod.BackgroundImage         = null;
     this.cbMethod.Font                    = null;
     this.cbMethod.Name                    = "cbMethod";
     this.cbMethod.UseVisualStyleBackColor = false;
     //
     // cbParameter
     //
     this.cbParameter.AccessibleDescription = null;
     this.cbParameter.AccessibleName        = null;
     resources.ApplyResources(this.cbParameter, "cbParameter");
     this.cbParameter.BackColor               = System.Drawing.Color.Transparent;
     this.cbParameter.BackgroundImage         = null;
     this.cbParameter.Font                    = null;
     this.cbParameter.Name                    = "cbParameter";
     this.cbParameter.UseVisualStyleBackColor = false;
     //
     // cbField
     //
     this.cbField.AccessibleDescription = null;
     this.cbField.AccessibleName        = null;
     resources.ApplyResources(this.cbField, "cbField");
     this.cbField.BackColor               = System.Drawing.Color.Transparent;
     this.cbField.BackgroundImage         = null;
     this.cbField.Font                    = null;
     this.cbField.Name                    = "cbField";
     this.cbField.UseVisualStyleBackColor = false;
     //
     // cbResource
     //
     this.cbResource.AccessibleDescription = null;
     this.cbResource.AccessibleName        = null;
     resources.ApplyResources(this.cbResource, "cbResource");
     this.cbResource.BackgroundImage = null;
     this.cbResource.Font            = null;
     this.cbResource.Name            = "cbResource";
     //
     // checkBox8
     //
     this.checkBox8.AccessibleDescription = null;
     this.checkBox8.AccessibleName        = null;
     resources.ApplyResources(this.checkBox8, "checkBox8");
     this.checkBox8.BackColor               = System.Drawing.Color.Transparent;
     this.checkBox8.BackgroundImage         = null;
     this.checkBox8.Font                    = null;
     this.checkBox8.Name                    = "checkBox8";
     this.checkBox8.UseVisualStyleBackColor = false;
     //
     // groupBox1
     //
     this.groupBox1.AccessibleDescription = null;
     this.groupBox1.AccessibleName        = null;
     resources.ApplyResources(this.groupBox1, "groupBox1");
     this.groupBox1.BackColor       = System.Drawing.Color.Transparent;
     this.groupBox1.BackgroundImage = null;
     this.groupBox1.Controls.Add(this.cbResource);
     this.groupBox1.Controls.Add(this.cbProperty);
     this.groupBox1.Controls.Add(this.cbParameter);
     this.groupBox1.Controls.Add(this.cbField);
     this.groupBox1.Controls.Add(this.cbEvent);
     this.groupBox1.Controls.Add(this.cbType);
     this.groupBox1.Controls.Add(this.cbMethod);
     this.groupBox1.Font    = null;
     this.groupBox1.Name    = "groupBox1";
     this.groupBox1.TabStop = false;
     //
     // cbProperty
     //
     this.cbProperty.AccessibleDescription = null;
     this.cbProperty.AccessibleName        = null;
     resources.ApplyResources(this.cbProperty, "cbProperty");
     this.cbProperty.BackgroundImage = null;
     this.cbProperty.Font            = null;
     this.cbProperty.Name            = "cbProperty";
     //
     // cbEvent
     //
     this.cbEvent.AccessibleDescription = null;
     this.cbEvent.AccessibleName        = null;
     resources.ApplyResources(this.cbEvent, "cbEvent");
     this.cbEvent.BackColor               = System.Drawing.Color.Transparent;
     this.cbEvent.BackgroundImage         = null;
     this.cbEvent.Font                    = null;
     this.cbEvent.Name                    = "cbEvent";
     this.cbEvent.UseVisualStyleBackColor = false;
     //
     // groupBox2
     //
     this.groupBox2.AccessibleDescription = null;
     this.groupBox2.AccessibleName        = null;
     resources.ApplyResources(this.groupBox2, "groupBox2");
     this.groupBox2.BackColor       = System.Drawing.Color.Transparent;
     this.groupBox2.BackgroundImage = null;
     this.groupBox2.Controls.Add(this.cbCaseful);
     this.groupBox2.Controls.Add(this.cbWhole);
     this.groupBox2.Font    = null;
     this.groupBox2.Name    = "groupBox2";
     this.groupBox2.TabStop = false;
     //
     // cbCaseful
     //
     this.cbCaseful.AccessibleDescription = null;
     this.cbCaseful.AccessibleName        = null;
     resources.ApplyResources(this.cbCaseful, "cbCaseful");
     this.cbCaseful.BackgroundImage = null;
     this.cbCaseful.Font            = null;
     this.cbCaseful.Name            = "cbCaseful";
     //
     // panelEx1
     //
     this.panelEx1.AccessibleDescription = null;
     this.panelEx1.AccessibleName        = null;
     resources.ApplyResources(this.panelEx1, "panelEx1");
     this.panelEx1.Controls.Add(this.cbStartAtRoot);
     this.panelEx1.Controls.Add(this.label1);
     this.panelEx1.Controls.Add(this.checkBox8);
     this.panelEx1.Controls.Add(this.groupBox1);
     this.panelEx1.Controls.Add(this.btnCancel);
     this.panelEx1.Controls.Add(this.groupBox2);
     this.panelEx1.Controls.Add(this.tbStr);
     this.panelEx1.Controls.Add(this.btnOK);
     this.panelEx1.Font            = null;
     this.panelEx1.Name            = "panelEx1";
     this.panelEx1.Style.Alignment = System.Drawing.StringAlignment.Center;
     this.panelEx1.Style.BackColor1.ColorSchemePart  = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
     this.panelEx1.Style.BackColor2.ColorSchemePart  = DevComponents.DotNetBar.eColorSchemePart.BarBackground2;
     this.panelEx1.Style.BackgroundImagePosition     = DevComponents.DotNetBar.eBackgroundImagePosition.Tile;
     this.panelEx1.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarDockedBorder;
     this.panelEx1.Style.ForeColor.ColorSchemePart   = DevComponents.DotNetBar.eColorSchemePart.ItemText;
     this.panelEx1.Style.GradientAngle = 90;
     //
     // FindDialog
     //
     this.AccessibleDescription = null;
     this.AccessibleName        = null;
     resources.ApplyResources(this, "$this");
     this.BackgroundImage = null;
     this.ControlBox      = false;
     this.Controls.Add(this.panelEx1);
     this.DoubleBuffered  = true;
     this.Font            = null;
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.Name            = "FindDialog";
     //this.Load += new System.EventHandler(this.FindDialog_Load);
     this.groupBox1.ResumeLayout(false);
     this.groupBox2.ResumeLayout(false);
     this.panelEx1.ResumeLayout(false);
     this.panelEx1.PerformLayout();
     this.ResumeLayout(false);
 }
コード例 #11
0
 private void HidePanel(DevComponents.DotNetBar.PanelEx panel, Label label)
 {
     panel.Style.BackColor1.Color = this.BackColor;
     panel.Style.BackColor2.Color = this.BackColor;
     label.Visible = false;
 }
コード例 #12
0
 /// <summary>
 /// 此為設計工具支援所需的方法 - 請勿使用程式碼編輯器修改這個方法的內容。
 ///
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     this.panelEx1 = new DevComponents.DotNetBar.PanelEx();
     this.cmbSemester = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.labelX3 = new DevComponents.DotNetBar.LabelX();
     this.labelX2 = new DevComponents.DotNetBar.LabelX();
     this.dteEnd = new DevComponents.Editors.DateTimeAdv.DateTimeInput();
     this.dteStart = new DevComponents.Editors.DateTimeAdv.DateTimeInput();
     this.labelX1 = new DevComponents.DotNetBar.LabelX();
     this.cmbSchoolYear = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.btnCancel = new DevComponents.DotNetBar.ButtonX();
     this.btnSave = new DevComponents.DotNetBar.ButtonX();
     this.lblName = new DevComponents.DotNetBar.LabelX();
     this.errorNameDuplicate = new System.Windows.Forms.ErrorProvider(this.components);
     this.panelEx1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dteEnd)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dteStart)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.errorNameDuplicate)).BeginInit();
     this.SuspendLayout();
     //
     // panelEx1
     //
     this.panelEx1.CanvasColor = System.Drawing.SystemColors.Control;
     this.panelEx1.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.panelEx1.Controls.Add(this.cmbSemester);
     this.panelEx1.Controls.Add(this.labelX3);
     this.panelEx1.Controls.Add(this.labelX2);
     this.panelEx1.Controls.Add(this.dteEnd);
     this.panelEx1.Controls.Add(this.dteStart);
     this.panelEx1.Controls.Add(this.labelX1);
     this.panelEx1.Controls.Add(this.cmbSchoolYear);
     this.panelEx1.Controls.Add(this.btnCancel);
     this.panelEx1.Controls.Add(this.btnSave);
     this.panelEx1.Controls.Add(this.lblName);
     this.panelEx1.Font = new System.Drawing.Font("微軟正黑體", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(136)));
     this.panelEx1.Location = new System.Drawing.Point(3, 3);
     this.panelEx1.Name = "panelEx1";
     this.panelEx1.Size = new System.Drawing.Size(245, 177);
     this.panelEx1.Style.Alignment = System.Drawing.StringAlignment.Center;
     this.panelEx1.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.panelEx1.Style.BackColor2.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.panelEx1.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.panelEx1.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.panelEx1.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.panelEx1.Style.GradientAngle = 90;
     this.panelEx1.TabIndex = 0;
     //
     // cmbSemester
     //
     this.cmbSemester.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.SuggestAppend;
     this.cmbSemester.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.ListItems;
     this.cmbSemester.DisplayMember = "Text";
     this.cmbSemester.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.cmbSemester.FormattingEnabled = true;
     this.cmbSemester.ItemHeight = 19;
     this.cmbSemester.Location = new System.Drawing.Point(86, 45);
     this.cmbSemester.Name = "cmbSemester";
     this.cmbSemester.Size = new System.Drawing.Size(145, 25);
     this.cmbSemester.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.cmbSemester.TabIndex = 10;
     //
     // labelX3
     //
     this.labelX3.AutoSize = true;
     //
     //
     //
     this.labelX3.BackgroundStyle.Class = "";
     this.labelX3.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX3.Location = new System.Drawing.Point(11, 107);
     this.labelX3.Name = "labelX3";
     this.labelX3.Size = new System.Drawing.Size(60, 21);
     this.labelX3.TabIndex = 9;
     this.labelX3.Text = "結束日期";
     //
     // labelX2
     //
     this.labelX2.AutoSize = true;
     //
     //
     //
     this.labelX2.BackgroundStyle.Class = "";
     this.labelX2.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX2.Location = new System.Drawing.Point(11, 76);
     this.labelX2.Name = "labelX2";
     this.labelX2.Size = new System.Drawing.Size(60, 21);
     this.labelX2.TabIndex = 8;
     this.labelX2.Text = "開始日期";
     //
     // dteEnd
     //
     //
     //
     //
     this.dteEnd.BackgroundStyle.Class = "DateTimeInputBackground";
     this.dteEnd.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dteEnd.ButtonDropDown.Shortcut = DevComponents.DotNetBar.eShortcut.AltDown;
     this.dteEnd.ButtonDropDown.Visible = true;
     this.dteEnd.IsPopupCalendarOpen = false;
     this.dteEnd.Location = new System.Drawing.Point(86, 107);
     //
     //
     //
     this.dteEnd.MonthCalendar.AnnuallyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.dteEnd.MonthCalendar.BackgroundStyle.BackColor = System.Drawing.SystemColors.Window;
     this.dteEnd.MonthCalendar.BackgroundStyle.Class = "";
     this.dteEnd.MonthCalendar.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dteEnd.MonthCalendar.ClearButtonVisible = true;
     //
     //
     //
     this.dteEnd.MonthCalendar.CommandsBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground2;
     this.dteEnd.MonthCalendar.CommandsBackgroundStyle.BackColorGradientAngle = 90;
     this.dteEnd.MonthCalendar.CommandsBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
     this.dteEnd.MonthCalendar.CommandsBackgroundStyle.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.dteEnd.MonthCalendar.CommandsBackgroundStyle.BorderTopColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarDockedBorder;
     this.dteEnd.MonthCalendar.CommandsBackgroundStyle.BorderTopWidth = 1;
     this.dteEnd.MonthCalendar.CommandsBackgroundStyle.Class = "";
     this.dteEnd.MonthCalendar.CommandsBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dteEnd.MonthCalendar.DisplayMonth = new System.DateTime(2013, 7, 1, 0, 0, 0, 0);
     this.dteEnd.MonthCalendar.MarkedDates = new System.DateTime[0];
     this.dteEnd.MonthCalendar.MonthlyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.dteEnd.MonthCalendar.NavigationBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.dteEnd.MonthCalendar.NavigationBackgroundStyle.BackColorGradientAngle = 90;
     this.dteEnd.MonthCalendar.NavigationBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.dteEnd.MonthCalendar.NavigationBackgroundStyle.Class = "";
     this.dteEnd.MonthCalendar.NavigationBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dteEnd.MonthCalendar.TodayButtonVisible = true;
     this.dteEnd.MonthCalendar.WeeklyMarkedDays = new System.DayOfWeek[0];
     this.dteEnd.Name = "dteEnd";
     this.dteEnd.Size = new System.Drawing.Size(145, 25);
     this.dteEnd.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.dteEnd.TabIndex = 7;
     //
     // dteStart
     //
     //
     //
     //
     this.dteStart.BackgroundStyle.Class = "DateTimeInputBackground";
     this.dteStart.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dteStart.ButtonDropDown.Shortcut = DevComponents.DotNetBar.eShortcut.AltDown;
     this.dteStart.ButtonDropDown.Visible = true;
     this.dteStart.IsPopupCalendarOpen = false;
     this.dteStart.Location = new System.Drawing.Point(86, 76);
     //
     //
     //
     this.dteStart.MonthCalendar.AnnuallyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.dteStart.MonthCalendar.BackgroundStyle.BackColor = System.Drawing.SystemColors.Window;
     this.dteStart.MonthCalendar.BackgroundStyle.Class = "";
     this.dteStart.MonthCalendar.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dteStart.MonthCalendar.ClearButtonVisible = true;
     //
     //
     //
     this.dteStart.MonthCalendar.CommandsBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground2;
     this.dteStart.MonthCalendar.CommandsBackgroundStyle.BackColorGradientAngle = 90;
     this.dteStart.MonthCalendar.CommandsBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
     this.dteStart.MonthCalendar.CommandsBackgroundStyle.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.dteStart.MonthCalendar.CommandsBackgroundStyle.BorderTopColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarDockedBorder;
     this.dteStart.MonthCalendar.CommandsBackgroundStyle.BorderTopWidth = 1;
     this.dteStart.MonthCalendar.CommandsBackgroundStyle.Class = "";
     this.dteStart.MonthCalendar.CommandsBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dteStart.MonthCalendar.DisplayMonth = new System.DateTime(2013, 7, 1, 0, 0, 0, 0);
     this.dteStart.MonthCalendar.MarkedDates = new System.DateTime[0];
     this.dteStart.MonthCalendar.MonthlyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.dteStart.MonthCalendar.NavigationBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.dteStart.MonthCalendar.NavigationBackgroundStyle.BackColorGradientAngle = 90;
     this.dteStart.MonthCalendar.NavigationBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.dteStart.MonthCalendar.NavigationBackgroundStyle.Class = "";
     this.dteStart.MonthCalendar.NavigationBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dteStart.MonthCalendar.TodayButtonVisible = true;
     this.dteStart.MonthCalendar.WeeklyMarkedDays = new System.DayOfWeek[0];
     this.dteStart.Name = "dteStart";
     this.dteStart.Size = new System.Drawing.Size(145, 25);
     this.dteStart.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.dteStart.TabIndex = 6;
     //
     // labelX1
     //
     this.labelX1.AutoSize = true;
     //
     //
     //
     this.labelX1.BackgroundStyle.Class = "";
     this.labelX1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX1.Location = new System.Drawing.Point(37, 45);
     this.labelX1.Name = "labelX1";
     this.labelX1.Size = new System.Drawing.Size(34, 21);
     this.labelX1.TabIndex = 4;
     this.labelX1.Text = "學期";
     //
     // cmbSchoolYear
     //
     this.cmbSchoolYear.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.SuggestAppend;
     this.cmbSchoolYear.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.ListItems;
     this.cmbSchoolYear.DisplayMember = "Text";
     this.cmbSchoolYear.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.cmbSchoolYear.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cmbSchoolYear.FormattingEnabled = true;
     this.cmbSchoolYear.ItemHeight = 19;
     this.cmbSchoolYear.Location = new System.Drawing.Point(86, 12);
     this.cmbSchoolYear.Name = "cmbSchoolYear";
     this.cmbSchoolYear.Size = new System.Drawing.Size(145, 25);
     this.cmbSchoolYear.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.cmbSchoolYear.TabIndex = 3;
     //
     // btnCancel
     //
     this.btnCancel.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btnCancel.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.btnCancel.Location = new System.Drawing.Point(176, 141);
     this.btnCancel.Name = "btnCancel";
     this.btnCancel.Size = new System.Drawing.Size(59, 23);
     this.btnCancel.TabIndex = 2;
     this.btnCancel.Text = "取消";
     this.btnCancel.Click += new System.EventHandler(this.btnClose);
     //
     // btnSave
     //
     this.btnSave.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btnSave.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.btnSave.Location = new System.Drawing.Point(111, 141);
     this.btnSave.Name = "btnSave";
     this.btnSave.Size = new System.Drawing.Size(59, 23);
     this.btnSave.TabIndex = 0;
     this.btnSave.Text = "儲存";
     this.btnSave.Click += new System.EventHandler(this.btnSave_Click);
     //
     // lblName
     //
     this.lblName.AutoSize = true;
     //
     //
     //
     this.lblName.BackgroundStyle.Class = "";
     this.lblName.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.lblName.Location = new System.Drawing.Point(24, 12);
     this.lblName.Name = "lblName";
     this.lblName.Size = new System.Drawing.Size(47, 21);
     this.lblName.TabIndex = 0;
     this.lblName.Text = "學年度";
     //
     // errorNameDuplicate
     //
     this.errorNameDuplicate.BlinkStyle = System.Windows.Forms.ErrorBlinkStyle.NeverBlink;
     this.errorNameDuplicate.ContainerControl = this;
     //
     // SchoolYearSemesterCreatorForm
     //
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
     this.ClientSize = new System.Drawing.Size(251, 184);
     this.Controls.Add(this.panelEx1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.Name = "SchoolYearSemesterCreatorForm";
     this.Text = "";
     this.Load += new System.EventHandler(this.TeacherNameCreatorForm_Load);
     this.panelEx1.ResumeLayout(false);
     this.panelEx1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dteEnd)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dteStart)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.errorNameDuplicate)).EndInit();
     this.ResumeLayout(false);
 }
コード例 #13
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(InfoDialog));
     this.tbInfo     = new System.Windows.Forms.TextBox();
     this.lblTopic   = new System.Windows.Forms.Label();
     this.btnSave    = new Janus.Windows.EditControls.UIButton();
     this.panelEx1   = new DevComponents.DotNetBar.PanelEx();
     this.btnbutton1 = new Janus.Windows.EditControls.UIButton();
     this.panelEx1.SuspendLayout();
     this.SuspendLayout();
     //
     // tbInfo
     //
     this.tbInfo.AccessibleDescription = null;
     this.tbInfo.AccessibleName        = null;
     resources.ApplyResources(this.tbInfo, "tbInfo");
     this.tbInfo.BackColor       = System.Drawing.SystemColors.Info;
     this.tbInfo.BackgroundImage = null;
     this.tbInfo.Name            = "tbInfo";
     //
     // lblTopic
     //
     this.lblTopic.AccessibleDescription = null;
     this.lblTopic.AccessibleName        = null;
     resources.ApplyResources(this.lblTopic, "lblTopic");
     this.lblTopic.BackColor = System.Drawing.Color.Transparent;
     this.lblTopic.Name      = "lblTopic";
     //
     // btnSave
     //
     this.btnSave.AccessibleDescription = null;
     this.btnSave.AccessibleName        = null;
     resources.ApplyResources(this.btnSave, "btnSave");
     this.btnSave.BackColor       = System.Drawing.SystemColors.Control;
     this.btnSave.BackgroundImage = null;
     this.btnSave.Font            = null;
     this.btnSave.Name            = "btnSave";
     this.btnSave.VisualStyle     = Janus.Windows.UI.VisualStyle.Office2003;
     this.btnSave.Click          += new System.EventHandler(this.btnSave_Click);
     //
     // panelEx1
     //
     this.panelEx1.AccessibleDescription = null;
     this.panelEx1.AccessibleName        = null;
     resources.ApplyResources(this.panelEx1, "panelEx1");
     this.panelEx1.Controls.Add(this.btnbutton1);
     this.panelEx1.Controls.Add(this.lblTopic);
     this.panelEx1.Controls.Add(this.btnSave);
     this.panelEx1.Font            = null;
     this.panelEx1.Name            = "panelEx1";
     this.panelEx1.Style.Alignment = System.Drawing.StringAlignment.Center;
     this.panelEx1.Style.BackColor1.ColorSchemePart  = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
     this.panelEx1.Style.BackColor2.ColorSchemePart  = DevComponents.DotNetBar.eColorSchemePart.BarBackground2;
     this.panelEx1.Style.BackgroundImagePosition     = DevComponents.DotNetBar.eBackgroundImagePosition.Tile;
     this.panelEx1.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarDockedBorder;
     this.panelEx1.Style.ForeColor.ColorSchemePart   = DevComponents.DotNetBar.eColorSchemePart.ItemText;
     this.panelEx1.Style.GradientAngle = 90;
     //
     // btnbutton1
     //
     this.btnbutton1.AccessibleDescription = null;
     this.btnbutton1.AccessibleName        = null;
     resources.ApplyResources(this.btnbutton1, "btnbutton1");
     this.btnbutton1.BackColor       = System.Drawing.SystemColors.Control;
     this.btnbutton1.BackgroundImage = null;
     this.btnbutton1.Font            = null;
     this.btnbutton1.Name            = "btnbutton1";
     this.btnbutton1.VisualStyle     = Janus.Windows.UI.VisualStyle.Office2003;
     this.btnbutton1.Click          += new System.EventHandler(this.btnbutton1_Click);
     //
     // InfoDialog
     //
     this.AccessibleDescription = null;
     this.AccessibleName        = null;
     resources.ApplyResources(this, "$this");
     this.BackgroundImage = null;
     this.Controls.Add(this.tbInfo);
     this.Controls.Add(this.panelEx1);
     this.DoubleBuffered = true;
     this.Font           = null;
     this.Name           = "InfoDialog";
     //this.Load += new System.EventHandler(this.InfoDialog_Load);
     this.panelEx1.ResumeLayout(false);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
コード例 #14
0
 private void InitializeComponent()
 {
     this.panelEx1       = new DevComponents.DotNetBar.PanelEx();
     this.buttonX5       = new DevComponents.DotNetBar.ButtonX();
     this.buttonX4       = new DevComponents.DotNetBar.ButtonX();
     this.buttonX3       = new DevComponents.DotNetBar.ButtonX();
     this.buttonX2       = new DevComponents.DotNetBar.ButtonX();
     this.buttonX1       = new DevComponents.DotNetBar.ButtonX();
     this.advTree1       = new DevComponents.AdvTree.AdvTree();
     this.nodeConnector1 = new DevComponents.AdvTree.NodeConnector();
     this.elementStyle1  = new DevComponents.DotNetBar.ElementStyle();
     this.groupPanel1    = new DevComponents.DotNetBar.Controls.GroupPanel();
     this.labelX6        = new DevComponents.DotNetBar.LabelX();
     this.comboTree1     = new DevComponents.DotNetBar.Controls.ComboTree();
     this.labelX5        = new DevComponents.DotNetBar.LabelX();
     this.comboBoxEx3    = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.comboBoxEx2    = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.comboBoxEx1    = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.labelX4        = new DevComponents.DotNetBar.LabelX();
     this.labelX3        = new DevComponents.DotNetBar.LabelX();
     this.labelX2        = new DevComponents.DotNetBar.LabelX();
     this.labelX1        = new DevComponents.DotNetBar.LabelX();
     this.panelEx1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.advTree1)).BeginInit();
     this.groupPanel1.SuspendLayout();
     this.SuspendLayout();
     //
     // panelEx1
     //
     this.panelEx1.CanvasColor      = System.Drawing.SystemColors.Control;
     this.panelEx1.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.panelEx1.Controls.Add(this.buttonX5);
     this.panelEx1.Controls.Add(this.buttonX4);
     this.panelEx1.Controls.Add(this.buttonX3);
     this.panelEx1.Controls.Add(this.buttonX2);
     this.panelEx1.Controls.Add(this.buttonX1);
     this.panelEx1.Controls.Add(this.advTree1);
     this.panelEx1.Controls.Add(this.groupPanel1);
     this.panelEx1.Dock            = System.Windows.Forms.DockStyle.Fill;
     this.panelEx1.Location        = new System.Drawing.Point(0, 0);
     this.panelEx1.Name            = "panelEx1";
     this.panelEx1.Size            = new System.Drawing.Size(433, 387);
     this.panelEx1.Style.Alignment = System.Drawing.StringAlignment.Center;
     this.panelEx1.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.panelEx1.Style.BackColor2.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.panelEx1.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.panelEx1.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.panelEx1.Style.ForeColor.ColorSchemePart   = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.panelEx1.Style.GradientAngle = 90;
     this.panelEx1.TabIndex            = 0;
     //
     // buttonX5
     //
     this.buttonX5.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.buttonX5.ColorTable     = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.buttonX5.Location       = new System.Drawing.Point(347, 353);
     this.buttonX5.Name           = "buttonX5";
     this.buttonX5.Size           = new System.Drawing.Size(75, 23);
     this.buttonX5.TabIndex       = 6;
     this.buttonX5.Text           = "ɾ³ýËùÓÐÖµ";
     //
     // buttonX4
     //
     this.buttonX4.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.buttonX4.ColorTable     = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.buttonX4.Location       = new System.Drawing.Point(266, 353);
     this.buttonX4.Name           = "buttonX4";
     this.buttonX4.Size           = new System.Drawing.Size(75, 23);
     this.buttonX4.TabIndex       = 5;
     this.buttonX4.Text           = "ɾ³ýÖµ";
     //
     // buttonX3
     //
     this.buttonX3.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.buttonX3.ColorTable     = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.buttonX3.Location       = new System.Drawing.Point(185, 353);
     this.buttonX3.Name           = "buttonX3";
     this.buttonX3.Size           = new System.Drawing.Size(75, 23);
     this.buttonX3.TabIndex       = 4;
     this.buttonX3.Text           = "Ìí¼ÓÖµ";
     //
     // buttonX2
     //
     this.buttonX2.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.buttonX2.ColorTable     = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.buttonX2.Location       = new System.Drawing.Point(104, 353);
     this.buttonX2.Name           = "buttonX2";
     this.buttonX2.Size           = new System.Drawing.Size(75, 23);
     this.buttonX2.TabIndex       = 3;
     this.buttonX2.Text           = "Ìí¼ÓËùÓÐÖµ";
     //
     // buttonX1
     //
     this.buttonX1.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.buttonX1.ColorTable     = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.buttonX1.Location       = new System.Drawing.Point(13, 353);
     this.buttonX1.Name           = "buttonX1";
     this.buttonX1.Size           = new System.Drawing.Size(85, 23);
     this.buttonX1.TabIndex       = 2;
     this.buttonX1.Text           = "´Ó·ûºÅÌí¼ÓÖµ";
     //
     // advTree1
     //
     this.advTree1.AccessibleRole = System.Windows.Forms.AccessibleRole.Outline;
     this.advTree1.AllowDrop      = true;
     this.advTree1.BackColor      = System.Drawing.SystemColors.Window;
     //
     //
     //
     this.advTree1.BackgroundStyle.Class = "TreeBorderKey";
     this.advTree1.Location       = new System.Drawing.Point(13, 160);
     this.advTree1.Name           = "advTree1";
     this.advTree1.NodesConnector = this.nodeConnector1;
     this.advTree1.NodeStyle      = this.elementStyle1;
     this.advTree1.PathSeparator  = ";";
     this.advTree1.Size           = new System.Drawing.Size(409, 187);
     this.advTree1.Styles.Add(this.elementStyle1);
     this.advTree1.TabIndex = 1;
     this.advTree1.Text     = "advTree1";
     //
     // nodeConnector1
     //
     this.nodeConnector1.LineColor = System.Drawing.SystemColors.ControlText;
     //
     // elementStyle1
     //
     this.elementStyle1.Name      = "elementStyle1";
     this.elementStyle1.TextColor = System.Drawing.SystemColors.ControlText;
     //
     // groupPanel1
     //
     this.groupPanel1.CanvasColor      = System.Drawing.SystemColors.Control;
     this.groupPanel1.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.groupPanel1.Controls.Add(this.labelX6);
     this.groupPanel1.Controls.Add(this.comboTree1);
     this.groupPanel1.Controls.Add(this.labelX5);
     this.groupPanel1.Controls.Add(this.comboBoxEx3);
     this.groupPanel1.Controls.Add(this.comboBoxEx2);
     this.groupPanel1.Controls.Add(this.comboBoxEx1);
     this.groupPanel1.Controls.Add(this.labelX4);
     this.groupPanel1.Controls.Add(this.labelX3);
     this.groupPanel1.Controls.Add(this.labelX2);
     this.groupPanel1.Controls.Add(this.labelX1);
     this.groupPanel1.Location = new System.Drawing.Point(13, 16);
     this.groupPanel1.Name     = "groupPanel1";
     this.groupPanel1.Size     = new System.Drawing.Size(409, 138);
     //
     //
     //
     this.groupPanel1.Style.BackColor2SchemePart   = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.groupPanel1.Style.BackColorGradientAngle = 90;
     this.groupPanel1.Style.BackColorSchemePart    = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.groupPanel1.Style.BorderBottom           = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel1.Style.BorderBottomWidth      = 1;
     this.groupPanel1.Style.BorderColorSchemePart  = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.groupPanel1.Style.BorderLeft             = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel1.Style.BorderLeftWidth        = 1;
     this.groupPanel1.Style.BorderRight            = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel1.Style.BorderRightWidth       = 1;
     this.groupPanel1.Style.BorderTop           = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel1.Style.BorderTopWidth      = 1;
     this.groupPanel1.Style.CornerDiameter      = 4;
     this.groupPanel1.Style.CornerType          = DevComponents.DotNetBar.eCornerType.Rounded;
     this.groupPanel1.Style.TextAlignment       = DevComponents.DotNetBar.eStyleTextAlignment.Center;
     this.groupPanel1.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.groupPanel1.Style.TextLineAlignment   = DevComponents.DotNetBar.eStyleTextAlignment.Near;
     this.groupPanel1.TabIndex = 0;
     //
     // labelX6
     //
     this.labelX6.Location = new System.Drawing.Point(291, 39);
     this.labelX6.Name     = "labelX6";
     this.labelX6.Size     = new System.Drawing.Size(100, 50);
     this.labelX6.TabIndex = 2;
     //
     // comboTree1
     //
     this.comboTree1.BackColor = System.Drawing.SystemColors.Window;
     //
     //
     //
     this.comboTree1.BackgroundStyle.Class  = "TextBoxBorder";
     this.comboTree1.ButtonDropDown.Visible = true;
     this.comboTree1.Location = new System.Drawing.Point(55, 103);
     this.comboTree1.Name     = "comboTree1";
     this.comboTree1.Size     = new System.Drawing.Size(336, 23);
     this.comboTree1.TabIndex = 7;
     //
     // labelX5
     //
     this.labelX5.AutoSize = true;
     this.labelX5.Location = new System.Drawing.Point(327, 9);
     this.labelX5.Name     = "labelX5";
     this.labelX5.Size     = new System.Drawing.Size(31, 18);
     this.labelX5.TabIndex = 1;
     this.labelX5.Text     = "·ûºÅ";
     //
     // comboBoxEx3
     //
     this.comboBoxEx3.DisplayMember     = "Text";
     this.comboBoxEx3.DrawMode          = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.comboBoxEx3.FormattingEnabled = true;
     this.comboBoxEx3.ItemHeight        = 15;
     this.comboBoxEx3.Location          = new System.Drawing.Point(55, 71);
     this.comboBoxEx3.Name     = "comboBoxEx3";
     this.comboBoxEx3.Size     = new System.Drawing.Size(222, 21);
     this.comboBoxEx3.TabIndex = 6;
     //
     // comboBoxEx2
     //
     this.comboBoxEx2.DisplayMember     = "Text";
     this.comboBoxEx2.DrawMode          = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.comboBoxEx2.FormattingEnabled = true;
     this.comboBoxEx2.ItemHeight        = 15;
     this.comboBoxEx2.Location          = new System.Drawing.Point(55, 39);
     this.comboBoxEx2.Name     = "comboBoxEx2";
     this.comboBoxEx2.Size     = new System.Drawing.Size(222, 21);
     this.comboBoxEx2.TabIndex = 5;
     //
     // comboBoxEx1
     //
     this.comboBoxEx1.DisplayMember     = "Text";
     this.comboBoxEx1.DrawMode          = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.comboBoxEx1.FormattingEnabled = true;
     this.comboBoxEx1.ItemHeight        = 15;
     this.comboBoxEx1.Location          = new System.Drawing.Point(55, 7);
     this.comboBoxEx1.Name     = "comboBoxEx1";
     this.comboBoxEx1.Size     = new System.Drawing.Size(222, 21);
     this.comboBoxEx1.TabIndex = 4;
     //
     // labelX4
     //
     this.labelX4.AutoSize = true;
     this.labelX4.Location = new System.Drawing.Point(11, 105);
     this.labelX4.Name     = "labelX4";
     this.labelX4.Size     = new System.Drawing.Size(37, 18);
     this.labelX4.TabIndex = 3;
     this.labelX4.Text     = "ÑÕÉ«:";
     //
     // labelX3
     //
     this.labelX3.AutoSize = true;
     this.labelX3.Location = new System.Drawing.Point(11, 73);
     this.labelX3.Name     = "labelX3";
     this.labelX3.Size     = new System.Drawing.Size(44, 18);
     this.labelX3.TabIndex = 2;
     this.labelX3.Text     = "×Ö¶Î1:";
     //
     // labelX2
     //
     this.labelX2.AutoSize = true;
     this.labelX2.Location = new System.Drawing.Point(11, 41);
     this.labelX2.Name     = "labelX2";
     this.labelX2.Size     = new System.Drawing.Size(44, 18);
     this.labelX2.TabIndex = 1;
     this.labelX2.Text     = "×Ö¶Î1:";
     //
     // labelX1
     //
     this.labelX1.AutoSize = true;
     this.labelX1.Location = new System.Drawing.Point(11, 9);
     this.labelX1.Name     = "labelX1";
     this.labelX1.Size     = new System.Drawing.Size(44, 18);
     this.labelX1.TabIndex = 0;
     this.labelX1.Text     = "×Ö¶Î1:";
     //
     // frmUniqueValueRenderer
     //
     this.Controls.Add(this.panelEx1);
     this.Name = "frmUniqueValueRenderer";
     this.Size = new System.Drawing.Size(433, 387);
     this.panelEx1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.advTree1)).EndInit();
     this.groupPanel1.ResumeLayout(false);
     this.groupPanel1.PerformLayout();
     this.ResumeLayout(false);
 }
コード例 #15
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.panelEx1             = new DevComponents.DotNetBar.PanelEx();
     this.smLabel5             = new LlamaCarbonCopy.Controls.BaseControls.SMLabel();
     this.smLabel4             = new LlamaCarbonCopy.Controls.BaseControls.SMLabel();
     this.smLabel3             = new LlamaCarbonCopy.Controls.BaseControls.SMLabel();
     this.smLabel2             = new LlamaCarbonCopy.Controls.BaseControls.SMLabel();
     this.smLabel1             = new LlamaCarbonCopy.Controls.BaseControls.SMLabel();
     this.txtMaximumRetryCount = new LlamaCarbonCopy.Controls.BaseControls.SMTextBox();
     this.txtTimerLength       = new LlamaCarbonCopy.Controls.BaseControls.SMTextBox();
     this.cboxAutoStart        = new LlamaCarbonCopy.Controls.BaseControls.SMCheckBox();
     this.btnCancel            = new LlamaCarbonCopy.Controls.BaseControls.SMButton();
     this.btnOk = new LlamaCarbonCopy.Controls.BaseControls.SMButton();
     this.panelEx1.SuspendLayout();
     this.SuspendLayout();
     //
     // panelEx1
     //
     this.panelEx1.CanvasColor = System.Drawing.SystemColors.Control;
     this.panelEx1.Controls.Add(this.smLabel5);
     this.panelEx1.Controls.Add(this.smLabel4);
     this.panelEx1.Controls.Add(this.smLabel3);
     this.panelEx1.Controls.Add(this.smLabel2);
     this.panelEx1.Controls.Add(this.smLabel1);
     this.panelEx1.Controls.Add(this.txtMaximumRetryCount);
     this.panelEx1.Controls.Add(this.txtTimerLength);
     this.panelEx1.Controls.Add(this.cboxAutoStart);
     this.panelEx1.Controls.Add(this.btnCancel);
     this.panelEx1.Controls.Add(this.btnOk);
     this.panelEx1.Dock                              = System.Windows.Forms.DockStyle.Fill;
     this.panelEx1.Location                          = new System.Drawing.Point(0, 0);
     this.panelEx1.Name                              = "panelEx1";
     this.panelEx1.Size                              = new System.Drawing.Size(692, 588);
     this.panelEx1.Style.Alignment                   = System.Drawing.StringAlignment.Center;
     this.panelEx1.Style.BackColor1.Color            = System.Drawing.Color.FromArgb(((System.Byte)(142)), ((System.Byte)(179)), ((System.Byte)(231)));
     this.panelEx1.Style.BackColor2.Color            = System.Drawing.Color.FromArgb(((System.Byte)(223)), ((System.Byte)(237)), ((System.Byte)(254)));
     this.panelEx1.Style.Border                      = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.panelEx1.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.panelEx1.Style.ForeColor.ColorSchemePart   = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.panelEx1.Style.GradientAngle               = 90;
     this.panelEx1.TabIndex                          = 0;
     //
     // smLabel5
     //
     this.smLabel5.BackColor          = System.Drawing.Color.Transparent;
     this.smLabel5.DataSource         = null;
     this.smLabel5.DataSourceProperty = null;
     this.smLabel5.Font          = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.smLabel5.ForeColor     = System.Drawing.Color.Black;
     this.smLabel5.LocalProperty = null;
     this.smLabel5.Location      = new System.Drawing.Point(482, 404);
     this.smLabel5.Name          = "smLabel5";
     this.smLabel5.Size          = new System.Drawing.Size(180, 16);
     this.smLabel5.TabIndex      = 13;
     this.smLabel5.Text          = "Maximum Retry Count";
     this.smLabel5.TextAlign     = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // smLabel4
     //
     this.smLabel4.BackColor          = System.Drawing.Color.Transparent;
     this.smLabel4.DataSource         = null;
     this.smLabel4.DataSourceProperty = null;
     this.smLabel4.Font          = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.smLabel4.ForeColor     = System.Drawing.Color.Black;
     this.smLabel4.LocalProperty = null;
     this.smLabel4.Location      = new System.Drawing.Point(482, 172);
     this.smLabel4.Name          = "smLabel4";
     this.smLabel4.Size          = new System.Drawing.Size(192, 16);
     this.smLabel4.TabIndex      = 12;
     this.smLabel4.Text          = "Timer Length (in milliseconds)";
     this.smLabel4.TextAlign     = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // smLabel3
     //
     this.smLabel3.BackColor          = System.Drawing.Color.Transparent;
     this.smLabel3.DataSource         = null;
     this.smLabel3.DataSourceProperty = null;
     this.smLabel3.Font          = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.smLabel3.ForeColor     = System.Drawing.Color.Black;
     this.smLabel3.LocalProperty = null;
     this.smLabel3.Location      = new System.Drawing.Point(24, 400);
     this.smLabel3.Name          = "smLabel3";
     this.smLabel3.Size          = new System.Drawing.Size(212, 140);
     this.smLabel3.TabIndex      = 11;
     this.smLabel3.Text          = "Each time a file changes an attempt to copy that file is made (after waiting the " +
                                   "appropriate time as marked above).  If that copy fails for some reason, attempts" +
                                   " will be made repeatedly until the file is either copied or the limit entered he" +
                                   "re is reached.";
     this.smLabel3.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // smLabel2
     //
     this.smLabel2.BackColor          = System.Drawing.Color.Transparent;
     this.smLabel2.DataSource         = null;
     this.smLabel2.DataSourceProperty = null;
     this.smLabel2.Font          = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.smLabel2.ForeColor     = System.Drawing.Color.Black;
     this.smLabel2.LocalProperty = null;
     this.smLabel2.Location      = new System.Drawing.Point(24, 170);
     this.smLabel2.Name          = "smLabel2";
     this.smLabel2.Size          = new System.Drawing.Size(212, 218);
     this.smLabel2.TabIndex      = 10;
     this.smLabel2.Text          = @"As your computer changes files it goes through several steps.  Each of those steps can trigger the copying mechanism.  For efficiency purposes, it is better to wait some time before attempting to copy a file, just in case it is about to be changed again.  If you are mostly changing small files, testing has shown 3 seconds to be the best.  Alternatively, If you are changing large files a longer wait period is highly recommended.";
     this.smLabel2.TextAlign     = System.Drawing.ContentAlignment.MiddleRight;
     //
     // smLabel1
     //
     this.smLabel1.BackColor          = System.Drawing.Color.Transparent;
     this.smLabel1.DataSource         = null;
     this.smLabel1.DataSourceProperty = null;
     this.smLabel1.Font          = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.smLabel1.ForeColor     = System.Drawing.Color.Black;
     this.smLabel1.LocalProperty = null;
     this.smLabel1.Location      = new System.Drawing.Point(24, 28);
     this.smLabel1.Name          = "smLabel1";
     this.smLabel1.Size          = new System.Drawing.Size(212, 144);
     this.smLabel1.TabIndex      = 9;
     this.smLabel1.Text          = "If you check this feature then the program will start watching the directories th" +
                                   "at you already have entered in the program immediately following the program sta" +
                                   "rting.  If it is unchecked, then the program waits for you to start it manually." +
                                   "";
     this.smLabel1.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // txtMaximumRetryCount
     //
     this.txtMaximumRetryCount.BackColor          = System.Drawing.Color.White;
     this.txtMaximumRetryCount.BorderStyle        = System.Windows.Forms.BorderStyle.FixedSingle;
     this.txtMaximumRetryCount.DataSource         = null;
     this.txtMaximumRetryCount.DataSourceProperty = null;
     this.txtMaximumRetryCount.Font          = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.txtMaximumRetryCount.ForeColor     = System.Drawing.Color.Black;
     this.txtMaximumRetryCount.LocalProperty = null;
     this.txtMaximumRetryCount.Location      = new System.Drawing.Point(252, 400);
     this.txtMaximumRetryCount.Name          = "txtMaximumRetryCount";
     this.txtMaximumRetryCount.Size          = new System.Drawing.Size(224, 23);
     this.txtMaximumRetryCount.TabIndex      = 8;
     this.txtMaximumRetryCount.Text          = "";
     //
     // txtTimerLength
     //
     this.txtTimerLength.BackColor          = System.Drawing.Color.White;
     this.txtTimerLength.BorderStyle        = System.Windows.Forms.BorderStyle.FixedSingle;
     this.txtTimerLength.DataSource         = null;
     this.txtTimerLength.DataSourceProperty = null;
     this.txtTimerLength.Font          = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.txtTimerLength.ForeColor     = System.Drawing.Color.Black;
     this.txtTimerLength.LocalProperty = null;
     this.txtTimerLength.Location      = new System.Drawing.Point(252, 170);
     this.txtTimerLength.Name          = "txtTimerLength";
     this.txtTimerLength.Size          = new System.Drawing.Size(224, 23);
     this.txtTimerLength.TabIndex      = 7;
     this.txtTimerLength.Text          = "";
     //
     // cboxAutoStart
     //
     this.cboxAutoStart.BackColor          = System.Drawing.Color.Transparent;
     this.cboxAutoStart.DataSource         = null;
     this.cboxAutoStart.DataSourceProperty = null;
     this.cboxAutoStart.ForeColor          = System.Drawing.Color.Black;
     this.cboxAutoStart.LocalProperty      = null;
     this.cboxAutoStart.Location           = new System.Drawing.Point(252, 28);
     this.cboxAutoStart.Name     = "cboxAutoStart";
     this.cboxAutoStart.Size     = new System.Drawing.Size(224, 24);
     this.cboxAutoStart.TabIndex = 6;
     this.cboxAutoStart.Text     = "Automatically Start Copying Files";
     //
     // btnCancel
     //
     this.btnCancel.BackColor          = System.Drawing.Color.White;
     this.btnCancel.DataSource         = null;
     this.btnCancel.DataSourceProperty = null;
     this.btnCancel.DialogResult       = System.Windows.Forms.DialogResult.Cancel;
     this.btnCancel.Font          = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.btnCancel.ForeColor     = System.Drawing.Color.Black;
     this.btnCancel.LocalProperty = null;
     this.btnCancel.Location      = new System.Drawing.Point(588, 556);
     this.btnCancel.Name          = "btnCancel";
     this.btnCancel.Size          = new System.Drawing.Size(100, 26);
     this.btnCancel.TabIndex      = 5;
     this.btnCancel.Text          = "&Cancel";
     this.btnCancel.Click        += new System.EventHandler(this.btnCancel_Click);
     //
     // btnOk
     //
     this.btnOk.BackColor          = System.Drawing.Color.White;
     this.btnOk.DataSource         = null;
     this.btnOk.DataSourceProperty = null;
     this.btnOk.Font          = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.btnOk.ForeColor     = System.Drawing.Color.Black;
     this.btnOk.LocalProperty = null;
     this.btnOk.Location      = new System.Drawing.Point(4, 556);
     this.btnOk.Name          = "btnOk";
     this.btnOk.Size          = new System.Drawing.Size(100, 26);
     this.btnOk.TabIndex      = 4;
     this.btnOk.Text          = "&Ok";
     this.btnOk.Click        += new System.EventHandler(this.btnOk_Click);
     //
     // AdvancedConfigurationForm
     //
     this.AcceptButton      = this.btnOk;
     this.AutoScaleBaseSize = new System.Drawing.Size(6, 16);
     this.BackColor         = System.Drawing.Color.White;
     this.CancelButton      = this.btnCancel;
     this.ClientSize        = new System.Drawing.Size(692, 588);
     this.Controls.Add(this.panelEx1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
     this.Name            = "AdvancedConfigurationForm";
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text            = "Advanced Configuration";
     this.Load           += new System.EventHandler(this.AdvancedConfigurationForm_Load);
     this.panelEx1.ResumeLayout(false);
     this.ResumeLayout(false);
 }
コード例 #16
0
 /// <summary>
 /// 此為設計工具支援所需的方法 - 請勿使用程式碼編輯器修改這個方法的內容。
 ///
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     this.panelEx1 = new DevComponents.DotNetBar.PanelEx();
     this.txtDescription = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.labelX4 = new DevComponents.DotNetBar.LabelX();
     this.labelX3 = new DevComponents.DotNetBar.LabelX();
     this.txtCategory = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.labelX2 = new DevComponents.DotNetBar.LabelX();
     this.cboSurvey = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.Cancel = new DevComponents.DotNetBar.ButtonX();
     this.Save = new DevComponents.DotNetBar.ButtonX();
     this.txtName = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.labelX1 = new DevComponents.DotNetBar.LabelX();
     this.errorProvider1 = new System.Windows.Forms.ErrorProvider(this.components);
     this.panelEx1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).BeginInit();
     this.SuspendLayout();
     //
     // panelEx1
     //
     this.panelEx1.CanvasColor = System.Drawing.SystemColors.Control;
     this.panelEx1.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.panelEx1.Controls.Add(this.txtDescription);
     this.panelEx1.Controls.Add(this.labelX4);
     this.panelEx1.Controls.Add(this.labelX3);
     this.panelEx1.Controls.Add(this.txtCategory);
     this.panelEx1.Controls.Add(this.labelX2);
     this.panelEx1.Controls.Add(this.cboSurvey);
     this.panelEx1.Controls.Add(this.Cancel);
     this.panelEx1.Controls.Add(this.Save);
     this.panelEx1.Controls.Add(this.txtName);
     this.panelEx1.Controls.Add(this.labelX1);
     this.panelEx1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panelEx1.Font = new System.Drawing.Font("微軟正黑體", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(136)));
     this.panelEx1.Location = new System.Drawing.Point(0, 0);
     this.panelEx1.Name = "panelEx1";
     this.panelEx1.Size = new System.Drawing.Size(402, 254);
     this.panelEx1.Style.Alignment = System.Drawing.StringAlignment.Center;
     this.panelEx1.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.panelEx1.Style.BackColor2.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.panelEx1.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.panelEx1.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.panelEx1.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.panelEx1.Style.GradientAngle = 90;
     this.panelEx1.TabIndex = 0;
     //
     // txtDescription
     //
     this.txtDescription.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     //
     //
     //
     this.txtDescription.Border.Class = "TextBoxBorder";
     this.txtDescription.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txtDescription.Location = new System.Drawing.Point(105, 93);
     this.txtDescription.Multiline = true;
     this.txtDescription.Name = "txtDescription";
     this.txtDescription.Size = new System.Drawing.Size(282, 70);
     this.txtDescription.TabIndex = 6;
     //
     // labelX4
     //
     this.labelX4.AutoSize = true;
     //
     //
     //
     this.labelX4.BackgroundStyle.Class = "";
     this.labelX4.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX4.Location = new System.Drawing.Point(12, 94);
     this.labelX4.Name = "labelX4";
     this.labelX4.Size = new System.Drawing.Size(87, 21);
     this.labelX4.TabIndex = 5;
     this.labelX4.Text = "評鑑樣版說明";
     //
     // labelX3
     //
     this.labelX3.AutoSize = true;
     //
     //
     //
     this.labelX3.BackgroundStyle.Class = "";
     this.labelX3.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX3.Location = new System.Drawing.Point(12, 54);
     this.labelX3.Name = "labelX3";
     this.labelX3.Size = new System.Drawing.Size(87, 21);
     this.labelX3.TabIndex = 4;
     this.labelX3.Text = "評鑑樣版類別";
     //
     // txtCategory
     //
     this.txtCategory.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.txtCategory.BackColor = System.Drawing.Color.White;
     //
     //
     //
     this.txtCategory.Border.Class = "TextBoxBorder";
     this.txtCategory.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txtCategory.Location = new System.Drawing.Point(105, 53);
     this.txtCategory.Name = "txtCategory";
     this.txtCategory.Size = new System.Drawing.Size(282, 25);
     this.txtCategory.TabIndex = 3;
     //
     // labelX2
     //
     this.labelX2.AutoSize = true;
     //
     //
     //
     this.labelX2.BackgroundStyle.Class = "";
     this.labelX2.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX2.Location = new System.Drawing.Point(12, 179);
     this.labelX2.Name = "labelX2";
     this.labelX2.Size = new System.Drawing.Size(87, 21);
     this.labelX2.TabIndex = 0;
     this.labelX2.Text = "複製樣版內容";
     //
     // cboSurvey
     //
     this.cboSurvey.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.cboSurvey.DisplayMember = "Text";
     this.cboSurvey.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cboSurvey.FlatStyle = System.Windows.Forms.FlatStyle.Standard;
     this.cboSurvey.FormattingEnabled = true;
     this.cboSurvey.Location = new System.Drawing.Point(105, 177);
     this.cboSurvey.Name = "cboSurvey";
     this.cboSurvey.Size = new System.Drawing.Size(283, 25);
     this.cboSurvey.TabIndex = 1;
     //
     // Cancel
     //
     this.Cancel.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.Cancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.Cancel.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.Cancel.Location = new System.Drawing.Point(334, 216);
     this.Cancel.Name = "Cancel";
     this.Cancel.Size = new System.Drawing.Size(54, 23);
     this.Cancel.TabIndex = 2;
     this.Cancel.Text = "取消";
     this.Cancel.Click += new System.EventHandler(this.Cancel_Click);
     //
     // Save
     //
     this.Save.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.Save.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.Save.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.Save.Location = new System.Drawing.Point(267, 216);
     this.Save.Name = "Save";
     this.Save.Size = new System.Drawing.Size(54, 23);
     this.Save.TabIndex = 0;
     this.Save.Text = "儲存";
     this.Save.Click += new System.EventHandler(this.Save_Click);
     //
     // txtName
     //
     this.txtName.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.txtName.BackColor = System.Drawing.Color.White;
     //
     //
     //
     this.txtName.Border.Class = "TextBoxBorder";
     this.txtName.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txtName.Location = new System.Drawing.Point(105, 13);
     this.txtName.Name = "txtName";
     this.txtName.Size = new System.Drawing.Size(282, 25);
     this.txtName.TabIndex = 1;
     //
     // labelX1
     //
     this.labelX1.AutoSize = true;
     //
     //
     //
     this.labelX1.BackgroundStyle.Class = "";
     this.labelX1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX1.Location = new System.Drawing.Point(12, 15);
     this.labelX1.Name = "labelX1";
     this.labelX1.Size = new System.Drawing.Size(87, 21);
     this.labelX1.TabIndex = 0;
     this.labelX1.Text = "評鑑樣版名稱";
     //
     // errorProvider1
     //
     this.errorProvider1.BlinkStyle = System.Windows.Forms.ErrorBlinkStyle.NeverBlink;
     this.errorProvider1.ContainerControl = this;
     //
     // SurveyCreator
     //
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
     this.ClientSize = new System.Drawing.Size(402, 254);
     this.Controls.Add(this.panelEx1);
     this.DoubleBuffered = true;
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.Name = "SurveyCreator";
     this.Text = "";
     this.panelEx1.ResumeLayout(false);
     this.panelEx1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).EndInit();
     this.ResumeLayout(false);
 }
コード例 #17
0
ファイル: Pagos.designer.cs プロジェクト: eduardo-salazar/sag
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     this.cbFrequenciaPagos = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.cbSemana = new DevComponents.Editors.ComboItem();
     this.cbMes = new DevComponents.Editors.ComboItem();
     this.cbAno = new DevComponents.Editors.ComboItem();
     this.labelX2 = new DevComponents.DotNetBar.LabelX();
     this.labelX3 = new DevComponents.DotNetBar.LabelX();
     this.cADINDataSet = new Sistema_De_Administracion_De_Servicios.CADINDataSet();
     this.pago_MembresiaTableAdapter = new Sistema_De_Administracion_De_Servicios.CADINDataSetTableAdapters.Pago_MembresiaTableAdapter();
     this.dgPagosEmpresa = new System.Windows.Forms.DataGridView();
     this.pagoMembresiaBindingSource2 = new System.Windows.Forms.BindingSource(this.components);
     this.domainNumCuotas = new System.Windows.Forms.DomainUpDown();
     this.groupBox1 = new System.Windows.Forms.GroupBox();
     this.btnBorrarPago = new DevComponents.DotNetBar.ButtonX();
     this.btnGenerarPagos = new DevComponents.DotNetBar.ButtonX();
     this.panelEx1 = new DevComponents.DotNetBar.PanelEx();
     this.lbTotalPago = new DevComponents.DotNetBar.PanelEx();
     ((System.ComponentModel.ISupportInitialize)(this.cADINDataSet)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dgPagosEmpresa)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pagoMembresiaBindingSource2)).BeginInit();
     this.groupBox1.SuspendLayout();
     this.SuspendLayout();
     //
     // cbFrequenciaPagos
     //
     this.cbFrequenciaPagos.DisplayMember = "Text";
     this.cbFrequenciaPagos.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.cbFrequenciaPagos.FormattingEnabled = true;
     this.cbFrequenciaPagos.ItemHeight = 14;
     this.cbFrequenciaPagos.Items.AddRange(new object[] {
     this.cbSemana,
     this.cbMes,
     this.cbAno});
     this.cbFrequenciaPagos.Location = new System.Drawing.Point(276, 49);
     this.cbFrequenciaPagos.Name = "cbFrequenciaPagos";
     this.cbFrequenciaPagos.Size = new System.Drawing.Size(121, 20);
     this.cbFrequenciaPagos.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.cbFrequenciaPagos.TabIndex = 3;
     //
     // cbSemana
     //
     this.cbSemana.Text = "Semanal";
     //
     // cbMes
     //
     this.cbMes.Text = "Mes";
     //
     // cbAno
     //
     this.cbAno.Text = "Año";
     //
     // labelX2
     //
     this.labelX2.BackColor = System.Drawing.Color.Transparent;
     //
     //
     //
     this.labelX2.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX2.Location = new System.Drawing.Point(19, 47);
     this.labelX2.Name = "labelX2";
     this.labelX2.Size = new System.Drawing.Size(107, 23);
     this.labelX2.TabIndex = 4;
     this.labelX2.Text = "Cantidad de Cuotas:";
     //
     // labelX3
     //
     this.labelX3.BackColor = System.Drawing.Color.Transparent;
     //
     //
     //
     this.labelX3.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX3.Location = new System.Drawing.Point(212, 47);
     this.labelX3.Name = "labelX3";
     this.labelX3.Size = new System.Drawing.Size(69, 23);
     this.labelX3.TabIndex = 5;
     this.labelX3.Text = "Frequencia:";
     //
     // cADINDataSet
     //
     this.cADINDataSet.DataSetName = "CADINDataSet";
     this.cADINDataSet.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
     //
     // pago_MembresiaTableAdapter
     //
     this.pago_MembresiaTableAdapter.ClearBeforeFill = true;
     //
     // dgPagosEmpresa
     //
     this.dgPagosEmpresa.AllowUserToAddRows = false;
     this.dgPagosEmpresa.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill;
     this.dgPagosEmpresa.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dgPagosEmpresa.Location = new System.Drawing.Point(12, 157);
     this.dgPagosEmpresa.Name = "dgPagosEmpresa";
     this.dgPagosEmpresa.Size = new System.Drawing.Size(706, 186);
     this.dgPagosEmpresa.TabIndex = 6;
     this.dgPagosEmpresa.DataSourceChanged += new System.EventHandler(this.dgPagosEmpresa_DataSourceChanged);
     this.dgPagosEmpresa.CellBeginEdit += new System.Windows.Forms.DataGridViewCellCancelEventHandler(this.dgPagosEmpresa_CellBeginEdit);
     this.dgPagosEmpresa.CellEndEdit += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgPagosEmpresa_CellEndEdit);
     //
     // pagoMembresiaBindingSource2
     //
     this.pagoMembresiaBindingSource2.DataMember = "Pago_Membresia";
     this.pagoMembresiaBindingSource2.DataSource = this.cADINDataSet;
     //
     // domainNumCuotas
     //
     this.domainNumCuotas.Items.Add("12");
     this.domainNumCuotas.Items.Add("11");
     this.domainNumCuotas.Items.Add("10");
     this.domainNumCuotas.Items.Add("9");
     this.domainNumCuotas.Items.Add("8");
     this.domainNumCuotas.Items.Add("7");
     this.domainNumCuotas.Items.Add("6");
     this.domainNumCuotas.Items.Add("5");
     this.domainNumCuotas.Items.Add("4");
     this.domainNumCuotas.Items.Add("3");
     this.domainNumCuotas.Items.Add("2");
     this.domainNumCuotas.Items.Add("1");
     this.domainNumCuotas.Location = new System.Drawing.Point(124, 49);
     this.domainNumCuotas.Name = "domainNumCuotas";
     this.domainNumCuotas.Size = new System.Drawing.Size(58, 20);
     this.domainNumCuotas.TabIndex = 7;
     this.domainNumCuotas.SelectedItemChanged += new System.EventHandler(this.domainNumCuotas_SelectedItemChanged);
     //
     // groupBox1
     //
     this.groupBox1.BackgroundImage = global::Sistema_De_Administracion_De_Servicios.Properties.Resources.form_background2;
     this.groupBox1.Controls.Add(this.btnBorrarPago);
     this.groupBox1.Controls.Add(this.btnGenerarPagos);
     this.groupBox1.Controls.Add(this.cbFrequenciaPagos);
     this.groupBox1.Controls.Add(this.domainNumCuotas);
     this.groupBox1.Controls.Add(this.labelX2);
     this.groupBox1.Controls.Add(this.labelX3);
     this.groupBox1.Location = new System.Drawing.Point(12, 28);
     this.groupBox1.Name = "groupBox1";
     this.groupBox1.Size = new System.Drawing.Size(566, 114);
     this.groupBox1.TabIndex = 9;
     this.groupBox1.TabStop = false;
     this.groupBox1.Text = "Generación de Pagos";
     //
     // btnBorrarPago
     //
     this.btnBorrarPago.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btnBorrarPago.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.btnBorrarPago.Location = new System.Drawing.Point(423, 63);
     this.btnBorrarPago.Name = "btnBorrarPago";
     this.btnBorrarPago.Size = new System.Drawing.Size(106, 23);
     this.btnBorrarPago.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.btnBorrarPago.TabIndex = 9;
     this.btnBorrarPago.Text = "Borrar Pago(s)";
     //
     // btnGenerarPagos
     //
     this.btnGenerarPagos.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btnGenerarPagos.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.btnGenerarPagos.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnGenerarPagos.Location = new System.Drawing.Point(423, 23);
     this.btnGenerarPagos.Name = "btnGenerarPagos";
     this.btnGenerarPagos.Size = new System.Drawing.Size(106, 23);
     this.btnGenerarPagos.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.btnGenerarPagos.TabIndex = 8;
     this.btnGenerarPagos.Text = "Generar Pagos";
     //
     // panelEx1
     //
     this.panelEx1.CanvasColor = System.Drawing.SystemColors.ActiveCaption;
     this.panelEx1.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.panelEx1.Location = new System.Drawing.Point(584, 28);
     this.panelEx1.Name = "panelEx1";
     this.panelEx1.Size = new System.Drawing.Size(134, 31);
     this.panelEx1.Style.Alignment = System.Drawing.StringAlignment.Center;
     this.panelEx1.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.panelEx1.Style.BackgroundImage = global::Sistema_De_Administracion_De_Servicios.Properties.Resources.form_background;
     this.panelEx1.Style.BackgroundImagePosition = DevComponents.DotNetBar.eBackgroundImagePosition.Tile;
     this.panelEx1.Style.Border = DevComponents.DotNetBar.eBorderType.DoubleLine;
     this.panelEx1.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.panelEx1.Style.GradientAngle = 90;
     this.panelEx1.TabIndex = 10;
     this.panelEx1.Text = "Total a pagar Por Tarifa";
     this.panelEx1.Click += new System.EventHandler(this.panelEx1_Click);
     //
     // lbTotalPago
     //
     this.lbTotalPago.CanvasColor = System.Drawing.SystemColors.Control;
     this.lbTotalPago.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.lbTotalPago.Location = new System.Drawing.Point(584, 51);
     this.lbTotalPago.Name = "lbTotalPago";
     this.lbTotalPago.Size = new System.Drawing.Size(134, 91);
     this.lbTotalPago.Style.Alignment = System.Drawing.StringAlignment.Center;
     this.lbTotalPago.Style.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(192)))), ((int)(((byte)(255)))));
     this.lbTotalPago.Style.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(192)))), ((int)(((byte)(255)))));
     this.lbTotalPago.Style.BackgroundImagePosition = DevComponents.DotNetBar.eBackgroundImagePosition.Tile;
     this.lbTotalPago.Style.Border = DevComponents.DotNetBar.eBorderType.DoubleLine;
     this.lbTotalPago.Style.Font = new System.Drawing.Font("Lucida Sans Typewriter", 15F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lbTotalPago.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.lbTotalPago.Style.GradientAngle = 90;
     this.lbTotalPago.TabIndex = 11;
     this.lbTotalPago.Text = "Aqui va el Monto a Pagar";
     //
     // Pagos
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.BackgroundImage = global::Sistema_De_Administracion_De_Servicios.Properties.Resources.form_background2;
     this.ClientSize = new System.Drawing.Size(734, 383);
     this.Controls.Add(this.lbTotalPago);
     this.Controls.Add(this.panelEx1);
     this.Controls.Add(this.groupBox1);
     this.Controls.Add(this.dgPagosEmpresa);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.Fixed3D;
     this.Name = "Pagos";
     this.ShowIcon = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Pagos";
     this.Load += new System.EventHandler(this.Pagos_Load);
     ((System.ComponentModel.ISupportInitialize)(this.cADINDataSet)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dgPagosEmpresa)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pagoMembresiaBindingSource2)).EndInit();
     this.groupBox1.ResumeLayout(false);
     this.ResumeLayout(false);
 }
コード例 #18
0
 private void InitializeComponent()
 {
     _PanelEx_PaintingControl1 = new DevComponents.DotNetBar.PanelEx();
     _ContextMenuBar1          = new DevComponents.DotNetBar.ContextMenuBar();
     _CM_Cmd             = new DevComponents.DotNetBar.ButtonItem();
     _ButtonItem3        = new DevComponents.DotNetBar.ButtonItem();
     _ButtonItem3.Click += new EventHandler(ButtonItem3_Click);
     _ButtonItem4        = new DevComponents.DotNetBar.ButtonItem();
     _ButtonItem4.Click += new EventHandler(ButtonItem4_Click);
     _ButtonItem1        = new DevComponents.DotNetBar.ButtonItem();
     _ButtonItem1.Click += new EventHandler(ButtonItem1_Click);
     _ButtonItem2        = new DevComponents.DotNetBar.ButtonItem();
     _ButtonItem2.Click += new EventHandler(ButtonItem2_Click);
     ((System.ComponentModel.ISupportInitialize)_ContextMenuBar1).BeginInit();
     SuspendLayout();
     //
     // PanelEx_PaintingControl1
     //
     _PanelEx_PaintingControl1.AutoScroll        = true;
     _PanelEx_PaintingControl1.CanvasColor       = SystemColors.Control;
     _PanelEx_PaintingControl1.ColorSchemeStyle  = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     _PanelEx_PaintingControl1.DisabledBackColor = Color.Empty;
     _PanelEx_PaintingControl1.Dock            = DockStyle.Fill;
     _PanelEx_PaintingControl1.Location        = new Point(0, 0);
     _PanelEx_PaintingControl1.Name            = "PanelEx_PaintingControl1";
     _PanelEx_PaintingControl1.Size            = new Size(998, 679);
     _PanelEx_PaintingControl1.Style.Alignment = StringAlignment.Center;
     _PanelEx_PaintingControl1.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     _PanelEx_PaintingControl1.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     _PanelEx_PaintingControl1.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     _PanelEx_PaintingControl1.Style.ForeColor.ColorSchemePart   = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     _PanelEx_PaintingControl1.Style.GradientAngle = 90;
     _PanelEx_PaintingControl1.TabIndex            = 0;
     //
     // ContextMenuBar1
     //
     _ContextMenuBar1.AntiAlias   = true;
     _ContextMenuBar1.Font        = new Font("Segoe UI", 9.0F);
     _ContextMenuBar1.IsMaximized = false;
     _ContextMenuBar1.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] { _CM_Cmd });
     _ContextMenuBar1.Location = new Point(772, 0);
     _ContextMenuBar1.Name     = "ContextMenuBar1";
     _ContextMenuBar1.Size     = new Size(75, 25);
     _ContextMenuBar1.Stretch  = true;
     _ContextMenuBar1.Style    = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     _ContextMenuBar1.TabIndex = 4;
     _ContextMenuBar1.TabStop  = false;
     _ContextMenuBar1.Text     = "ContextMenuBar1";
     //
     // CM_Cmd
     //
     _CM_Cmd.AutoExpandOnClick = true;
     _CM_Cmd.Name = "CM_Cmd";
     _CM_Cmd.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] { _ButtonItem3, _ButtonItem4, _ButtonItem1, _ButtonItem2 });
     _CM_Cmd.Text = "CM_Cmd";
     //
     // ButtonItem3
     //
     _ButtonItem3.Name = "ButtonItem3";
     _ButtonItem3.Shortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlE);
     _ButtonItem3.Text = "Edit Command ...";
     //
     // ButtonItem4
     //
     _ButtonItem4.BeginGroup = true;
     _ButtonItem4.Name       = "ButtonItem4";
     _ButtonItem4.Shortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlC);
     _ButtonItem4.Text = "Copy Command";
     //
     // ButtonItem1
     //
     _ButtonItem1.Name = "ButtonItem1";
     _ButtonItem1.Text = "Copy ROM Address";
     //
     // ButtonItem2
     //
     _ButtonItem2.Name = "ButtonItem2";
     _ButtonItem2.Text = "Copy Bank Address";
     //
     // ScriptDumper
     //
     AutoScaleDimensions = new SizeF(96.0F, 96.0F);
     AutoScaleMode       = AutoScaleMode.Dpi;
     ClientSize          = new Size(998, 679);
     Controls.Add(_ContextMenuBar1);
     Controls.Add(_PanelEx_PaintingControl1);
     Name               = "ScriptDumper";
     StartPosition      = FormStartPosition.CenterScreen;
     Text               = "Script Editor";
     TopLeftCornerSize  = 0;
     TopRightCornerSize = 0;
     ((System.ComponentModel.ISupportInitialize)_ContextMenuBar1).EndInit();
     ResumeLayout(false);
 }
コード例 #19
0
 private void InitializeComponent()
 {
     this.treeCatelog         = new DevComponents.AdvTree.AdvTree();
     this.nodeConnector1      = new DevComponents.AdvTree.NodeConnector();
     this.elementStyle1       = new DevComponents.DotNetBar.ElementStyle();
     this.panelProperty       = new DevComponents.DotNetBar.PanelEx();
     this.panelTree           = new DevComponents.DotNetBar.PanelEx();
     this.labelRenderImage    = new DevComponents.DotNetBar.LabelX();
     this.expandableSplitter2 = new DevComponents.DotNetBar.ExpandableSplitter();
     this.panelEx1            = new DevComponents.DotNetBar.PanelEx();
     this.expandableSplitter1 = new DevComponents.DotNetBar.ExpandableSplitter();
     this.buttonOK            = new DevComponents.DotNetBar.ButtonX();
     this.buttonCancel        = new DevComponents.DotNetBar.ButtonX();
     ((System.ComponentModel.ISupportInitialize)(this.treeCatelog)).BeginInit();
     this.panelTree.SuspendLayout();
     this.panelEx1.SuspendLayout();
     this.SuspendLayout();
     //
     // treeCatelog
     //
     this.treeCatelog.AccessibleRole = System.Windows.Forms.AccessibleRole.Outline;
     this.treeCatelog.AllowDrop      = true;
     this.treeCatelog.BackColor      = System.Drawing.SystemColors.Window;
     //
     //
     //
     this.treeCatelog.BackgroundStyle.Class = "TreeBorderKey";
     this.treeCatelog.Dock           = System.Windows.Forms.DockStyle.Top;
     this.treeCatelog.Location       = new System.Drawing.Point(0, 0);
     this.treeCatelog.Name           = "treeCatelog";
     this.treeCatelog.NodesConnector = this.nodeConnector1;
     this.treeCatelog.NodeStyle      = this.elementStyle1;
     this.treeCatelog.PathSeparator  = ";";
     this.treeCatelog.Size           = new System.Drawing.Size(135, 260);
     this.treeCatelog.Styles.Add(this.elementStyle1);
     this.treeCatelog.TabIndex         = 0;
     this.treeCatelog.AfterNodeSelect += new DevComponents.AdvTree.AdvTreeNodeEventHandler(this.treeCatelog_AfterNodeSelect);
     //
     // nodeConnector1
     //
     this.nodeConnector1.LineColor = System.Drawing.SystemColors.ControlText;
     //
     // elementStyle1
     //
     this.elementStyle1.Name      = "elementStyle1";
     this.elementStyle1.TextColor = System.Drawing.SystemColors.ControlText;
     //
     // panelProperty
     //
     this.panelProperty.CanvasColor      = System.Drawing.SystemColors.Control;
     this.panelProperty.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.panelProperty.Dock             = System.Windows.Forms.DockStyle.Fill;
     this.panelProperty.Location         = new System.Drawing.Point(135, 0);
     this.panelProperty.Name             = "panelProperty";
     this.panelProperty.Size             = new System.Drawing.Size(465, 370);
     this.panelProperty.Style.Alignment  = System.Drawing.StringAlignment.Center;
     this.panelProperty.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.panelProperty.Style.BackColor2.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.panelProperty.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.panelProperty.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.panelProperty.Style.ForeColor.ColorSchemePart   = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.panelProperty.Style.GradientAngle = 90;
     this.panelProperty.TabIndex            = 2;
     //
     // panelTree
     //
     this.panelTree.CanvasColor      = System.Drawing.SystemColors.Control;
     this.panelTree.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.panelTree.Controls.Add(this.labelRenderImage);
     this.panelTree.Controls.Add(this.expandableSplitter2);
     this.panelTree.Controls.Add(this.treeCatelog);
     this.panelTree.Dock            = System.Windows.Forms.DockStyle.Left;
     this.panelTree.Location        = new System.Drawing.Point(0, 0);
     this.panelTree.Name            = "panelTree";
     this.panelTree.Size            = new System.Drawing.Size(135, 370);
     this.panelTree.Style.Alignment = System.Drawing.StringAlignment.Center;
     this.panelTree.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.panelTree.Style.BackColor2.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.panelTree.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.panelTree.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.panelTree.Style.ForeColor.ColorSchemePart   = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.panelTree.Style.GradientAngle = 90;
     this.panelTree.TabIndex            = 8;
     //
     // labelRenderImage
     //
     this.labelRenderImage.Dock          = System.Windows.Forms.DockStyle.Fill;
     this.labelRenderImage.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.labelRenderImage.Location      = new System.Drawing.Point(0, 261);
     this.labelRenderImage.Name          = "labelRenderImage";
     this.labelRenderImage.Size          = new System.Drawing.Size(135, 109);
     this.labelRenderImage.TabIndex      = 10;
     //
     // expandableSplitter2
     //
     this.expandableSplitter2.BackColor2           = System.Drawing.Color.FromArgb(((int)(((byte)(101)))), ((int)(((byte)(147)))), ((int)(((byte)(207)))));
     this.expandableSplitter2.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.expandableSplitter2.BackColorSchemePart  = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.expandableSplitter2.Dock                         = System.Windows.Forms.DockStyle.Top;
     this.expandableSplitter2.Expandable                   = false;
     this.expandableSplitter2.ExpandFillColor              = System.Drawing.Color.FromArgb(((int)(((byte)(101)))), ((int)(((byte)(147)))), ((int)(((byte)(207)))));
     this.expandableSplitter2.ExpandFillColorSchemePart    = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.expandableSplitter2.ExpandLineColor              = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.expandableSplitter2.ExpandLineColorSchemePart    = DevComponents.DotNetBar.eColorSchemePart.ItemText;
     this.expandableSplitter2.GripDarkColor                = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.expandableSplitter2.GripDarkColorSchemePart      = DevComponents.DotNetBar.eColorSchemePart.ItemText;
     this.expandableSplitter2.GripLightColor               = System.Drawing.Color.FromArgb(((int)(((byte)(227)))), ((int)(((byte)(239)))), ((int)(((byte)(255)))));
     this.expandableSplitter2.GripLightColorSchemePart     = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
     this.expandableSplitter2.HotBackColor                 = System.Drawing.Color.FromArgb(((int)(((byte)(252)))), ((int)(((byte)(151)))), ((int)(((byte)(61)))));
     this.expandableSplitter2.HotBackColor2                = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(184)))), ((int)(((byte)(94)))));
     this.expandableSplitter2.HotBackColor2SchemePart      = DevComponents.DotNetBar.eColorSchemePart.ItemPressedBackground2;
     this.expandableSplitter2.HotBackColorSchemePart       = DevComponents.DotNetBar.eColorSchemePart.ItemPressedBackground;
     this.expandableSplitter2.HotExpandFillColor           = System.Drawing.Color.FromArgb(((int)(((byte)(101)))), ((int)(((byte)(147)))), ((int)(((byte)(207)))));
     this.expandableSplitter2.HotExpandFillColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.expandableSplitter2.HotExpandLineColor           = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.expandableSplitter2.HotExpandLineColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemText;
     this.expandableSplitter2.HotGripDarkColor             = System.Drawing.Color.FromArgb(((int)(((byte)(101)))), ((int)(((byte)(147)))), ((int)(((byte)(207)))));
     this.expandableSplitter2.HotGripDarkColorSchemePart   = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.expandableSplitter2.HotGripLightColor            = System.Drawing.Color.FromArgb(((int)(((byte)(227)))), ((int)(((byte)(239)))), ((int)(((byte)(255)))));
     this.expandableSplitter2.HotGripLightColorSchemePart  = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
     this.expandableSplitter2.Location                     = new System.Drawing.Point(0, 260);
     this.expandableSplitter2.Name                         = "expandableSplitter2";
     this.expandableSplitter2.Size                         = new System.Drawing.Size(135, 1);
     this.expandableSplitter2.Style                        = DevComponents.DotNetBar.eSplitterStyle.Office2007;
     this.expandableSplitter2.TabIndex                     = 1;
     this.expandableSplitter2.TabStop                      = false;
     //
     // panelEx1
     //
     this.panelEx1.CanvasColor      = System.Drawing.SystemColors.Control;
     this.panelEx1.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.panelEx1.Controls.Add(this.expandableSplitter1);
     this.panelEx1.Controls.Add(this.panelProperty);
     this.panelEx1.Controls.Add(this.panelTree);
     this.panelEx1.Dock            = System.Windows.Forms.DockStyle.Top;
     this.panelEx1.Location        = new System.Drawing.Point(0, 0);
     this.panelEx1.Name            = "panelEx1";
     this.panelEx1.Size            = new System.Drawing.Size(600, 370);
     this.panelEx1.Style.Alignment = System.Drawing.StringAlignment.Center;
     this.panelEx1.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.panelEx1.Style.BackColor2.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.panelEx1.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.panelEx1.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.panelEx1.Style.ForeColor.ColorSchemePart   = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.panelEx1.Style.GradientAngle = 90;
     this.panelEx1.TabIndex            = 10;
     //
     // expandableSplitter1
     //
     this.expandableSplitter1.BackColor2                   = System.Drawing.Color.FromArgb(((int)(((byte)(101)))), ((int)(((byte)(147)))), ((int)(((byte)(207)))));
     this.expandableSplitter1.BackColor2SchemePart         = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.expandableSplitter1.BackColorSchemePart          = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.expandableSplitter1.Expandable                   = false;
     this.expandableSplitter1.ExpandableControl            = this.panelEx1;
     this.expandableSplitter1.ExpandActionClick            = false;
     this.expandableSplitter1.ExpandFillColor              = System.Drawing.Color.FromArgb(((int)(((byte)(101)))), ((int)(((byte)(147)))), ((int)(((byte)(207)))));
     this.expandableSplitter1.ExpandFillColorSchemePart    = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.expandableSplitter1.ExpandLineColor              = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.expandableSplitter1.ExpandLineColorSchemePart    = DevComponents.DotNetBar.eColorSchemePart.ItemText;
     this.expandableSplitter1.GripDarkColor                = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.expandableSplitter1.GripDarkColorSchemePart      = DevComponents.DotNetBar.eColorSchemePart.ItemText;
     this.expandableSplitter1.GripLightColor               = System.Drawing.Color.FromArgb(((int)(((byte)(227)))), ((int)(((byte)(239)))), ((int)(((byte)(255)))));
     this.expandableSplitter1.GripLightColorSchemePart     = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
     this.expandableSplitter1.HotBackColor                 = System.Drawing.Color.FromArgb(((int)(((byte)(252)))), ((int)(((byte)(151)))), ((int)(((byte)(61)))));
     this.expandableSplitter1.HotBackColor2                = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(184)))), ((int)(((byte)(94)))));
     this.expandableSplitter1.HotBackColor2SchemePart      = DevComponents.DotNetBar.eColorSchemePart.ItemPressedBackground2;
     this.expandableSplitter1.HotBackColorSchemePart       = DevComponents.DotNetBar.eColorSchemePart.ItemPressedBackground;
     this.expandableSplitter1.HotExpandFillColor           = System.Drawing.Color.FromArgb(((int)(((byte)(101)))), ((int)(((byte)(147)))), ((int)(((byte)(207)))));
     this.expandableSplitter1.HotExpandFillColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.expandableSplitter1.HotExpandLineColor           = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.expandableSplitter1.HotExpandLineColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemText;
     this.expandableSplitter1.HotGripDarkColor             = System.Drawing.Color.FromArgb(((int)(((byte)(101)))), ((int)(((byte)(147)))), ((int)(((byte)(207)))));
     this.expandableSplitter1.HotGripDarkColorSchemePart   = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.expandableSplitter1.HotGripLightColor            = System.Drawing.Color.FromArgb(((int)(((byte)(227)))), ((int)(((byte)(239)))), ((int)(((byte)(255)))));
     this.expandableSplitter1.HotGripLightColorSchemePart  = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
     this.expandableSplitter1.Location = new System.Drawing.Point(135, 0);
     this.expandableSplitter1.Name     = "expandableSplitter1";
     this.expandableSplitter1.Size     = new System.Drawing.Size(2, 370);
     this.expandableSplitter1.Style    = DevComponents.DotNetBar.eSplitterStyle.Office2007;
     this.expandableSplitter1.TabIndex = 9;
     this.expandableSplitter1.TabStop  = false;
     //
     // buttonOK
     //
     this.buttonOK.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.buttonOK.ColorTable     = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.buttonOK.Location       = new System.Drawing.Point(481, 376);
     this.buttonOK.Name           = "buttonOK";
     this.buttonOK.Size           = new System.Drawing.Size(55, 23);
     this.buttonOK.TabIndex       = 11;
     this.buttonOK.Text           = "确 定";
     this.buttonOK.Click         += new System.EventHandler(this.Button_Click);
     //
     // buttonCancel
     //
     this.buttonCancel.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.buttonCancel.ColorTable     = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.buttonCancel.Location       = new System.Drawing.Point(544, 376);
     this.buttonCancel.Name           = "buttonCancel";
     this.buttonCancel.Size           = new System.Drawing.Size(55, 23);
     this.buttonCancel.TabIndex       = 12;
     this.buttonCancel.Text           = "取 消";
     this.buttonCancel.Click         += new System.EventHandler(this.Button_Click);
     //
     // frmSymbology
     //
     this.ClientSize = new System.Drawing.Size(600, 404);
     this.Controls.Add(this.buttonCancel);
     this.Controls.Add(this.buttonOK);
     this.Controls.Add(this.panelEx1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.Name            = "frmSymbology";
     this.ShowInTaskbar   = false;
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text            = "符号方案配置";
     ((System.ComponentModel.ISupportInitialize)(this.treeCatelog)).EndInit();
     this.panelTree.ResumeLayout(false);
     this.panelEx1.ResumeLayout(false);
     this.ResumeLayout(false);
 }
コード例 #20
0
ファイル: Frmpeiban.designer.cs プロジェクト: callme119/civil
 /// <summary>
 /// 设计器支持所需的方法 - 不要
 /// 使用代码编辑器修改此方法的内容。
 /// </summary>
 private void InitializeComponent()
 {
     this.labelX1 = new DevComponents.DotNetBar.LabelX();
     this.labelX2 = new DevComponents.DotNetBar.LabelX();
     this.labelX3 = new DevComponents.DotNetBar.LabelX();
     this.textBox2 = new System.Windows.Forms.TextBox();
     this.groupBox2 = new System.Windows.Forms.GroupBox();
     this.radioButton2 = new System.Windows.Forms.RadioButton();
     this.radioButton1 = new System.Windows.Forms.RadioButton();
     this.checkBoxX11 = new DevComponents.DotNetBar.Controls.CheckBoxX();
     this.comboBoxEx7 = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.comboItem19 = new DevComponents.Editors.ComboItem();
     this.comboItem20 = new DevComponents.Editors.ComboItem();
     this.labelX12 = new DevComponents.DotNetBar.LabelX();
     this.checkBoxX9 = new DevComponents.DotNetBar.Controls.CheckBoxX();
     this.comboBoxEx8 = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.comboItem17 = new DevComponents.Editors.ComboItem();
     this.comboItem18 = new DevComponents.Editors.ComboItem();
     this.labelX13 = new DevComponents.DotNetBar.LabelX();
     this.checkBoxX10 = new DevComponents.DotNetBar.Controls.CheckBoxX();
     this.comboBoxEx5 = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.comboItem15 = new DevComponents.Editors.ComboItem();
     this.comboItem16 = new DevComponents.Editors.ComboItem();
     this.comboBoxEx6 = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.comboItem13 = new DevComponents.Editors.ComboItem();
     this.comboItem14 = new DevComponents.Editors.ComboItem();
     this.labelX10 = new DevComponents.DotNetBar.LabelX();
     this.labelX11 = new DevComponents.DotNetBar.LabelX();
     this.checkBoxX7 = new DevComponents.DotNetBar.Controls.CheckBoxX();
     this.checkBoxX8 = new DevComponents.DotNetBar.Controls.CheckBoxX();
     this.comboBoxEx4 = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.comboItem11 = new DevComponents.Editors.ComboItem();
     this.comboItem12 = new DevComponents.Editors.ComboItem();
     this.labelX9 = new DevComponents.DotNetBar.LabelX();
     this.checkBoxX6 = new DevComponents.DotNetBar.Controls.CheckBoxX();
     this.comboBoxEx3 = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.comboItem9 = new DevComponents.Editors.ComboItem();
     this.comboItem10 = new DevComponents.Editors.ComboItem();
     this.labelX8 = new DevComponents.DotNetBar.LabelX();
     this.checkBoxX5 = new DevComponents.DotNetBar.Controls.CheckBoxX();
     this.comboBoxEx2 = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.comboItem7 = new DevComponents.Editors.ComboItem();
     this.comboItem8 = new DevComponents.Editors.ComboItem();
     this.comboBoxEx1 = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.comboItem5 = new DevComponents.Editors.ComboItem();
     this.comboItem6 = new DevComponents.Editors.ComboItem();
     this.labelX7 = new DevComponents.DotNetBar.LabelX();
     this.labelX6 = new DevComponents.DotNetBar.LabelX();
     this.checkBoxX4 = new DevComponents.DotNetBar.Controls.CheckBoxX();
     this.checkBoxX3 = new DevComponents.DotNetBar.Controls.CheckBoxX();
     this.groupBox1 = new System.Windows.Forms.GroupBox();
     this.labelX4 = new DevComponents.DotNetBar.LabelX();
     this.checkBoxX12 = new DevComponents.DotNetBar.Controls.CheckBoxX();
     this.groupBox3 = new System.Windows.Forms.GroupBox();
     this.checkBox6 = new System.Windows.Forms.CheckBox();
     this.checkBox5 = new System.Windows.Forms.CheckBox();
     this.checkBox4 = new System.Windows.Forms.CheckBox();
     this.checkBox3 = new System.Windows.Forms.CheckBox();
     this.checkBox2 = new System.Windows.Forms.CheckBox();
     this.checkBox1 = new System.Windows.Forms.CheckBox();
     this.groupBox4 = new System.Windows.Forms.GroupBox();
     this.checkBox11 = new System.Windows.Forms.CheckBox();
     this.checkBox10 = new System.Windows.Forms.CheckBox();
     this.checkBox9 = new System.Windows.Forms.CheckBox();
     this.checkBox8 = new System.Windows.Forms.CheckBox();
     this.checkBox7 = new System.Windows.Forms.CheckBox();
     this.labelX14 = new DevComponents.DotNetBar.LabelX();
     this.comboBoxEx9 = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.comboItem1 = new DevComponents.Editors.ComboItem();
     this.comboItem2 = new DevComponents.Editors.ComboItem();
     this.comboItem3 = new DevComponents.Editors.ComboItem();
     this.comboItem4 = new DevComponents.Editors.ComboItem();
     this.panelEx2 = new DevComponents.DotNetBar.PanelEx();
     this.buttonX1 = new DevComponents.DotNetBar.ButtonX();
     this.integerInput1 = new DevComponents.Editors.IntegerInput();
     this.groupBox2.SuspendLayout();
     this.groupBox3.SuspendLayout();
     this.groupBox4.SuspendLayout();
     this.panelEx2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.integerInput1)).BeginInit();
     this.SuspendLayout();
     //
     // labelX1
     //
     //
     //
     //
     this.labelX1.BackgroundStyle.Class = "";
     this.labelX1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX1.Location = new System.Drawing.Point(31, 42);
     this.labelX1.Name = "labelX1";
     this.labelX1.Size = new System.Drawing.Size(91, 23);
     this.labelX1.TabIndex = 0;
     this.labelX1.Text = "模板铺设尺寸:";
     //
     // labelX2
     //
     //
     //
     //
     this.labelX2.BackgroundStyle.Class = "";
     this.labelX2.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX2.Location = new System.Drawing.Point(129, 44);
     this.labelX2.Name = "labelX2";
     this.labelX2.Size = new System.Drawing.Size(75, 23);
     this.labelX2.TabIndex = 1;
     this.labelX2.Text = "长LL(mm)";
     //
     // labelX3
     //
     //
     //
     //
     this.labelX3.BackgroundStyle.Class = "";
     this.labelX3.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX3.Location = new System.Drawing.Point(364, 45);
     this.labelX3.Name = "labelX3";
     this.labelX3.Size = new System.Drawing.Size(114, 23);
     this.labelX3.TabIndex = 2;
     this.labelX3.Text = "宽BB(mm):";
     //
     // textBox2
     //
     this.textBox2.Location = new System.Drawing.Point(473, 45);
     this.textBox2.Name = "textBox2";
     this.textBox2.Size = new System.Drawing.Size(100, 21);
     this.textBox2.TabIndex = 4;
     this.textBox2.Text = "3000";
     this.textBox2.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     //
     // groupBox2
     //
     this.groupBox2.Controls.Add(this.radioButton2);
     this.groupBox2.Controls.Add(this.radioButton1);
     this.groupBox2.Controls.Add(this.checkBoxX11);
     this.groupBox2.Controls.Add(this.comboBoxEx7);
     this.groupBox2.Controls.Add(this.labelX12);
     this.groupBox2.Controls.Add(this.checkBoxX9);
     this.groupBox2.Controls.Add(this.comboBoxEx8);
     this.groupBox2.Controls.Add(this.labelX13);
     this.groupBox2.Controls.Add(this.checkBoxX10);
     this.groupBox2.Controls.Add(this.comboBoxEx5);
     this.groupBox2.Controls.Add(this.comboBoxEx6);
     this.groupBox2.Controls.Add(this.labelX10);
     this.groupBox2.Controls.Add(this.labelX11);
     this.groupBox2.Controls.Add(this.checkBoxX7);
     this.groupBox2.Controls.Add(this.checkBoxX8);
     this.groupBox2.Controls.Add(this.comboBoxEx4);
     this.groupBox2.Controls.Add(this.labelX9);
     this.groupBox2.Controls.Add(this.checkBoxX6);
     this.groupBox2.Controls.Add(this.comboBoxEx3);
     this.groupBox2.Controls.Add(this.labelX8);
     this.groupBox2.Controls.Add(this.checkBoxX5);
     this.groupBox2.Controls.Add(this.comboBoxEx2);
     this.groupBox2.Controls.Add(this.comboBoxEx1);
     this.groupBox2.Controls.Add(this.labelX7);
     this.groupBox2.Controls.Add(this.labelX6);
     this.groupBox2.Controls.Add(this.checkBoxX4);
     this.groupBox2.Controls.Add(this.checkBoxX3);
     this.groupBox2.Controls.Add(this.groupBox1);
     this.groupBox2.Controls.Add(this.labelX4);
     this.groupBox2.Location = new System.Drawing.Point(30, 72);
     this.groupBox2.Name = "groupBox2";
     this.groupBox2.Size = new System.Drawing.Size(364, 359);
     this.groupBox2.TabIndex = 33;
     this.groupBox2.TabStop = false;
     //
     // radioButton2
     //
     this.radioButton2.AutoSize = true;
     this.radioButton2.Checked = true;
     this.radioButton2.Location = new System.Drawing.Point(214, 23);
     this.radioButton2.Name = "radioButton2";
     this.radioButton2.Size = new System.Drawing.Size(35, 16);
     this.radioButton2.TabIndex = 63;
     this.radioButton2.TabStop = true;
     this.radioButton2.Text = "否";
     this.radioButton2.UseVisualStyleBackColor = true;
     this.radioButton2.CheckedChanged += new System.EventHandler(this.radioButton2_CheckedChanged);
     //
     // radioButton1
     //
     this.radioButton1.AutoSize = true;
     this.radioButton1.Location = new System.Drawing.Point(117, 23);
     this.radioButton1.Name = "radioButton1";
     this.radioButton1.Size = new System.Drawing.Size(35, 16);
     this.radioButton1.TabIndex = 62;
     this.radioButton1.Text = "是";
     this.radioButton1.UseVisualStyleBackColor = true;
     this.radioButton1.CheckedChanged += new System.EventHandler(this.radioButton1_CheckedChanged);
     //
     // checkBoxX11
     //
     //
     //
     //
     this.checkBoxX11.BackgroundStyle.Class = "";
     this.checkBoxX11.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.checkBoxX11.Location = new System.Drawing.Point(6, 330);
     this.checkBoxX11.Name = "checkBoxX11";
     this.checkBoxX11.Size = new System.Drawing.Size(100, 23);
     this.checkBoxX11.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.checkBoxX11.TabIndex = 61;
     this.checkBoxX11.Text = "连接角模";
     //
     // comboBoxEx7
     //
     this.comboBoxEx7.DisplayMember = "Text";
     this.comboBoxEx7.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.comboBoxEx7.FormattingEnabled = true;
     this.comboBoxEx7.ItemHeight = 15;
     this.comboBoxEx7.Items.AddRange(new object[] {
     this.comboItem19,
     this.comboItem20});
     this.comboBoxEx7.Location = new System.Drawing.Point(287, 222);
     this.comboBoxEx7.Name = "comboBoxEx7";
     this.comboBoxEx7.Size = new System.Drawing.Size(44, 21);
     this.comboBoxEx7.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.comboBoxEx7.TabIndex = 60;
     //
     // comboItem19
     //
     this.comboItem19.Text = "50";
     //
     // comboItem20
     //
     this.comboItem20.Text = "100";
     //
     // labelX12
     //
     //
     //
     //
     this.labelX12.BackgroundStyle.Class = "";
     this.labelX12.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX12.Location = new System.Drawing.Point(254, 222);
     this.labelX12.Name = "labelX12";
     this.labelX12.Size = new System.Drawing.Size(54, 23);
     this.labelX12.TabIndex = 59;
     this.labelX12.Text = "尺寸:";
     //
     // checkBoxX9
     //
     //
     //
     //
     this.checkBoxX9.BackgroundStyle.Class = "";
     this.checkBoxX9.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.checkBoxX9.Location = new System.Drawing.Point(255, 180);
     this.checkBoxX9.Name = "checkBoxX9";
     this.checkBoxX9.Size = new System.Drawing.Size(76, 23);
     this.checkBoxX9.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.checkBoxX9.TabIndex = 58;
     this.checkBoxX9.Text = "阳角模";
     this.checkBoxX9.CheckedChanged += new System.EventHandler(this.checkBoxX9_CheckedChanged);
     //
     // comboBoxEx8
     //
     this.comboBoxEx8.DisplayMember = "Text";
     this.comboBoxEx8.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.comboBoxEx8.FormattingEnabled = true;
     this.comboBoxEx8.ItemHeight = 15;
     this.comboBoxEx8.Items.AddRange(new object[] {
     this.comboItem17,
     this.comboItem18});
     this.comboBoxEx8.Location = new System.Drawing.Point(287, 151);
     this.comboBoxEx8.Name = "comboBoxEx8";
     this.comboBoxEx8.Size = new System.Drawing.Size(44, 21);
     this.comboBoxEx8.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.comboBoxEx8.TabIndex = 57;
     //
     // comboItem17
     //
     this.comboItem17.Text = "150";
     //
     // comboItem18
     //
     this.comboItem18.Text = "100";
     //
     // labelX13
     //
     //
     //
     //
     this.labelX13.BackgroundStyle.Class = "";
     this.labelX13.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX13.Location = new System.Drawing.Point(254, 151);
     this.labelX13.Name = "labelX13";
     this.labelX13.Size = new System.Drawing.Size(55, 23);
     this.labelX13.TabIndex = 56;
     this.labelX13.Text = "尺寸:";
     //
     // checkBoxX10
     //
     //
     //
     //
     this.checkBoxX10.BackgroundStyle.Class = "";
     this.checkBoxX10.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.checkBoxX10.Location = new System.Drawing.Point(255, 122);
     this.checkBoxX10.Name = "checkBoxX10";
     this.checkBoxX10.Size = new System.Drawing.Size(76, 23);
     this.checkBoxX10.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.checkBoxX10.TabIndex = 55;
     this.checkBoxX10.Text = "阴角模";
     this.checkBoxX10.CheckedChanged += new System.EventHandler(this.checkBoxX10_CheckedChanged);
     //
     // comboBoxEx5
     //
     this.comboBoxEx5.DisplayMember = "Text";
     this.comboBoxEx5.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.comboBoxEx5.FormattingEnabled = true;
     this.comboBoxEx5.ItemHeight = 15;
     this.comboBoxEx5.Items.AddRange(new object[] {
     this.comboItem15,
     this.comboItem16});
     this.comboBoxEx5.Location = new System.Drawing.Point(180, 293);
     this.comboBoxEx5.Name = "comboBoxEx5";
     this.comboBoxEx5.Size = new System.Drawing.Size(55, 21);
     this.comboBoxEx5.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.comboBoxEx5.TabIndex = 54;
     //
     // comboItem15
     //
     this.comboItem15.Text = "50";
     //
     // comboItem16
     //
     this.comboItem16.Text = "100";
     //
     // comboBoxEx6
     //
     this.comboBoxEx6.DisplayMember = "Text";
     this.comboBoxEx6.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.comboBoxEx6.FormattingEnabled = true;
     this.comboBoxEx6.ItemHeight = 15;
     this.comboBoxEx6.Items.AddRange(new object[] {
     this.comboItem13,
     this.comboItem14});
     this.comboBoxEx6.Location = new System.Drawing.Point(180, 260);
     this.comboBoxEx6.Name = "comboBoxEx6";
     this.comboBoxEx6.Size = new System.Drawing.Size(55, 21);
     this.comboBoxEx6.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.comboBoxEx6.TabIndex = 53;
     //
     // comboItem13
     //
     this.comboItem13.Text = "150";
     //
     // comboItem14
     //
     this.comboItem14.Text = "100";
     //
     // labelX10
     //
     //
     //
     //
     this.labelX10.BackgroundStyle.Class = "";
     this.labelX10.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX10.Location = new System.Drawing.Point(140, 293);
     this.labelX10.Name = "labelX10";
     this.labelX10.Size = new System.Drawing.Size(54, 23);
     this.labelX10.TabIndex = 52;
     this.labelX10.Text = "尺寸:";
     //
     // labelX11
     //
     //
     //
     //
     this.labelX11.BackgroundStyle.Class = "";
     this.labelX11.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX11.Location = new System.Drawing.Point(139, 258);
     this.labelX11.Name = "labelX11";
     this.labelX11.Size = new System.Drawing.Size(55, 23);
     this.labelX11.TabIndex = 51;
     this.labelX11.Text = "尺寸:";
     //
     // checkBoxX7
     //
     //
     //
     //
     this.checkBoxX7.BackgroundStyle.Class = "";
     this.checkBoxX7.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.checkBoxX7.Location = new System.Drawing.Point(83, 291);
     this.checkBoxX7.Name = "checkBoxX7";
     this.checkBoxX7.Size = new System.Drawing.Size(104, 23);
     this.checkBoxX7.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.checkBoxX7.TabIndex = 50;
     this.checkBoxX7.Text = "阳角模";
     this.checkBoxX7.CheckedChanged += new System.EventHandler(this.checkBoxX7_CheckedChanged);
     //
     // checkBoxX8
     //
     //
     //
     //
     this.checkBoxX8.BackgroundStyle.Class = "";
     this.checkBoxX8.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.checkBoxX8.Location = new System.Drawing.Point(83, 258);
     this.checkBoxX8.Name = "checkBoxX8";
     this.checkBoxX8.Size = new System.Drawing.Size(104, 23);
     this.checkBoxX8.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.checkBoxX8.TabIndex = 49;
     this.checkBoxX8.Text = "阴角模";
     this.checkBoxX8.CheckedChanged += new System.EventHandler(this.checkBoxX8_CheckedChanged);
     //
     // comboBoxEx4
     //
     this.comboBoxEx4.DisplayMember = "Text";
     this.comboBoxEx4.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.comboBoxEx4.FormattingEnabled = true;
     this.comboBoxEx4.ItemHeight = 15;
     this.comboBoxEx4.Items.AddRange(new object[] {
     this.comboItem11,
     this.comboItem12});
     this.comboBoxEx4.Location = new System.Drawing.Point(33, 216);
     this.comboBoxEx4.Name = "comboBoxEx4";
     this.comboBoxEx4.Size = new System.Drawing.Size(44, 21);
     this.comboBoxEx4.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.comboBoxEx4.TabIndex = 48;
     //
     // comboItem11
     //
     this.comboItem11.Text = "50";
     //
     // comboItem12
     //
     this.comboItem12.Text = "100";
     //
     // labelX9
     //
     //
     //
     //
     this.labelX9.BackgroundStyle.Class = "";
     this.labelX9.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX9.Location = new System.Drawing.Point(7, 217);
     this.labelX9.Name = "labelX9";
     this.labelX9.Size = new System.Drawing.Size(54, 23);
     this.labelX9.TabIndex = 47;
     this.labelX9.Text = "尺寸:";
     //
     // checkBoxX6
     //
     //
     //
     //
     this.checkBoxX6.BackgroundStyle.Class = "";
     this.checkBoxX6.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.checkBoxX6.Location = new System.Drawing.Point(6, 178);
     this.checkBoxX6.Name = "checkBoxX6";
     this.checkBoxX6.Size = new System.Drawing.Size(76, 23);
     this.checkBoxX6.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.checkBoxX6.TabIndex = 46;
     this.checkBoxX6.Text = "阳角模";
     this.checkBoxX6.CheckedChanged += new System.EventHandler(this.checkBoxX6_CheckedChanged);
     //
     // comboBoxEx3
     //
     this.comboBoxEx3.DisplayMember = "Text";
     this.comboBoxEx3.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.comboBoxEx3.FormattingEnabled = true;
     this.comboBoxEx3.ItemHeight = 15;
     this.comboBoxEx3.Items.AddRange(new object[] {
     this.comboItem9,
     this.comboItem10});
     this.comboBoxEx3.Location = new System.Drawing.Point(33, 153);
     this.comboBoxEx3.Name = "comboBoxEx3";
     this.comboBoxEx3.Size = new System.Drawing.Size(44, 21);
     this.comboBoxEx3.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.comboBoxEx3.TabIndex = 45;
     //
     // comboItem9
     //
     this.comboItem9.Text = "150";
     //
     // comboItem10
     //
     this.comboItem10.Text = "100";
     //
     // labelX8
     //
     //
     //
     //
     this.labelX8.BackgroundStyle.Class = "";
     this.labelX8.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX8.Location = new System.Drawing.Point(6, 153);
     this.labelX8.Name = "labelX8";
     this.labelX8.Size = new System.Drawing.Size(55, 23);
     this.labelX8.TabIndex = 44;
     this.labelX8.Text = "尺寸:";
     //
     // checkBoxX5
     //
     //
     //
     //
     this.checkBoxX5.BackgroundStyle.Class = "";
     this.checkBoxX5.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.checkBoxX5.Location = new System.Drawing.Point(6, 124);
     this.checkBoxX5.Name = "checkBoxX5";
     this.checkBoxX5.Size = new System.Drawing.Size(76, 23);
     this.checkBoxX5.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.checkBoxX5.TabIndex = 43;
     this.checkBoxX5.Text = "阴角模";
     this.checkBoxX5.CheckedChanged += new System.EventHandler(this.checkBoxX5_CheckedChanged);
     //
     // comboBoxEx2
     //
     this.comboBoxEx2.DisplayMember = "Text";
     this.comboBoxEx2.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.comboBoxEx2.FormattingEnabled = true;
     this.comboBoxEx2.ItemHeight = 15;
     this.comboBoxEx2.Items.AddRange(new object[] {
     this.comboItem7,
     this.comboItem8});
     this.comboBoxEx2.Location = new System.Drawing.Point(180, 95);
     this.comboBoxEx2.Name = "comboBoxEx2";
     this.comboBoxEx2.Size = new System.Drawing.Size(55, 21);
     this.comboBoxEx2.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.comboBoxEx2.TabIndex = 42;
     //
     // comboItem7
     //
     this.comboItem7.Text = "50";
     //
     // comboItem8
     //
     this.comboItem8.Text = "100";
     //
     // comboBoxEx1
     //
     this.comboBoxEx1.DisplayMember = "Text";
     this.comboBoxEx1.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.comboBoxEx1.FormattingEnabled = true;
     this.comboBoxEx1.ItemHeight = 15;
     this.comboBoxEx1.Items.AddRange(new object[] {
     this.comboItem5,
     this.comboItem6});
     this.comboBoxEx1.Location = new System.Drawing.Point(180, 68);
     this.comboBoxEx1.Name = "comboBoxEx1";
     this.comboBoxEx1.Size = new System.Drawing.Size(55, 21);
     this.comboBoxEx1.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.comboBoxEx1.TabIndex = 41;
     //
     // comboItem5
     //
     this.comboItem5.Text = "150";
     //
     // comboItem6
     //
     this.comboItem6.Text = "100";
     //
     // labelX7
     //
     //
     //
     //
     this.labelX7.BackgroundStyle.Class = "";
     this.labelX7.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX7.Location = new System.Drawing.Point(139, 93);
     this.labelX7.Name = "labelX7";
     this.labelX7.Size = new System.Drawing.Size(54, 23);
     this.labelX7.TabIndex = 40;
     this.labelX7.Text = "尺寸:";
     //
     // labelX6
     //
     //
     //
     //
     this.labelX6.BackgroundStyle.Class = "";
     this.labelX6.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX6.Location = new System.Drawing.Point(138, 68);
     this.labelX6.Name = "labelX6";
     this.labelX6.Size = new System.Drawing.Size(55, 23);
     this.labelX6.TabIndex = 39;
     this.labelX6.Text = "尺寸:";
     //
     // checkBoxX4
     //
     //
     //
     //
     this.checkBoxX4.BackgroundStyle.Class = "";
     this.checkBoxX4.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.checkBoxX4.Location = new System.Drawing.Point(83, 93);
     this.checkBoxX4.Name = "checkBoxX4";
     this.checkBoxX4.Size = new System.Drawing.Size(104, 23);
     this.checkBoxX4.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.checkBoxX4.TabIndex = 38;
     this.checkBoxX4.Text = "阳角模";
     this.checkBoxX4.CheckedChanged += new System.EventHandler(this.checkBoxX4_CheckedChanged);
     //
     // checkBoxX3
     //
     //
     //
     //
     this.checkBoxX3.BackgroundStyle.Class = "";
     this.checkBoxX3.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.checkBoxX3.Location = new System.Drawing.Point(83, 68);
     this.checkBoxX3.Name = "checkBoxX3";
     this.checkBoxX3.Size = new System.Drawing.Size(104, 23);
     this.checkBoxX3.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.checkBoxX3.TabIndex = 37;
     this.checkBoxX3.Text = "阴角模";
     this.checkBoxX3.CheckedChanged += new System.EventHandler(this.checkBoxX3_CheckedChanged);
     //
     // groupBox1
     //
     this.groupBox1.Location = new System.Drawing.Point(83, 124);
     this.groupBox1.Name = "groupBox1";
     this.groupBox1.Size = new System.Drawing.Size(166, 121);
     this.groupBox1.TabIndex = 36;
     this.groupBox1.TabStop = false;
     //
     // labelX4
     //
     //
     //
     //
     this.labelX4.BackgroundStyle.Class = "";
     this.labelX4.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX4.Location = new System.Drawing.Point(19, 23);
     this.labelX4.Name = "labelX4";
     this.labelX4.Size = new System.Drawing.Size(109, 23);
     this.labelX4.TabIndex = 33;
     this.labelX4.Text = "是否选用角模:";
     //
     // checkBoxX12
     //
     //
     //
     //
     this.checkBoxX12.BackgroundStyle.Class = "";
     this.checkBoxX12.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.checkBoxX12.Location = new System.Drawing.Point(400, 87);
     this.checkBoxX12.Name = "checkBoxX12";
     this.checkBoxX12.Size = new System.Drawing.Size(100, 23);
     this.checkBoxX12.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.checkBoxX12.TabIndex = 34;
     this.checkBoxX12.Text = "选用模板规格:";
     //
     // groupBox3
     //
     this.groupBox3.Controls.Add(this.checkBox6);
     this.groupBox3.Controls.Add(this.checkBox5);
     this.groupBox3.Controls.Add(this.checkBox4);
     this.groupBox3.Controls.Add(this.checkBox3);
     this.groupBox3.Controls.Add(this.checkBox2);
     this.groupBox3.Controls.Add(this.checkBox1);
     this.groupBox3.Location = new System.Drawing.Point(400, 116);
     this.groupBox3.Name = "groupBox3";
     this.groupBox3.Size = new System.Drawing.Size(200, 80);
     this.groupBox3.TabIndex = 37;
     this.groupBox3.TabStop = false;
     this.groupBox3.Text = "长l(mm):";
     //
     // checkBox6
     //
     this.checkBox6.AutoSize = true;
     this.checkBox6.Location = new System.Drawing.Point(107, 56);
     this.checkBox6.Name = "checkBox6";
     this.checkBox6.Size = new System.Drawing.Size(48, 16);
     this.checkBox6.TabIndex = 5;
     this.checkBox6.Text = "1500";
     this.checkBox6.UseVisualStyleBackColor = true;
     //
     // checkBox5
     //
     this.checkBox5.AutoSize = true;
     this.checkBox5.Location = new System.Drawing.Point(107, 37);
     this.checkBox5.Name = "checkBox5";
     this.checkBox5.Size = new System.Drawing.Size(48, 16);
     this.checkBox5.TabIndex = 4;
     this.checkBox5.Text = "1200";
     this.checkBox5.UseVisualStyleBackColor = true;
     //
     // checkBox4
     //
     this.checkBox4.AutoSize = true;
     this.checkBox4.Location = new System.Drawing.Point(107, 15);
     this.checkBox4.Name = "checkBox4";
     this.checkBox4.Size = new System.Drawing.Size(42, 16);
     this.checkBox4.TabIndex = 3;
     this.checkBox4.Text = "900";
     this.checkBox4.UseVisualStyleBackColor = true;
     //
     // checkBox3
     //
     this.checkBox3.AutoSize = true;
     this.checkBox3.Location = new System.Drawing.Point(22, 56);
     this.checkBox3.Name = "checkBox3";
     this.checkBox3.Size = new System.Drawing.Size(42, 16);
     this.checkBox3.TabIndex = 2;
     this.checkBox3.Text = "750";
     this.checkBox3.UseVisualStyleBackColor = true;
     //
     // checkBox2
     //
     this.checkBox2.AutoSize = true;
     this.checkBox2.Location = new System.Drawing.Point(22, 34);
     this.checkBox2.Name = "checkBox2";
     this.checkBox2.Size = new System.Drawing.Size(42, 16);
     this.checkBox2.TabIndex = 1;
     this.checkBox2.Text = "600";
     this.checkBox2.UseVisualStyleBackColor = true;
     //
     // checkBox1
     //
     this.checkBox1.AutoSize = true;
     this.checkBox1.Location = new System.Drawing.Point(22, 18);
     this.checkBox1.Name = "checkBox1";
     this.checkBox1.Size = new System.Drawing.Size(42, 16);
     this.checkBox1.TabIndex = 0;
     this.checkBox1.Text = "450";
     this.checkBox1.UseVisualStyleBackColor = true;
     //
     // groupBox4
     //
     this.groupBox4.Controls.Add(this.checkBox11);
     this.groupBox4.Controls.Add(this.checkBox10);
     this.groupBox4.Controls.Add(this.checkBox9);
     this.groupBox4.Controls.Add(this.checkBox8);
     this.groupBox4.Controls.Add(this.checkBox7);
     this.groupBox4.Location = new System.Drawing.Point(400, 232);
     this.groupBox4.Name = "groupBox4";
     this.groupBox4.Size = new System.Drawing.Size(200, 85);
     this.groupBox4.TabIndex = 38;
     this.groupBox4.TabStop = false;
     this.groupBox4.Text = "宽b(mm):";
     //
     // checkBox11
     //
     this.checkBox11.AutoSize = true;
     this.checkBox11.Location = new System.Drawing.Point(107, 56);
     this.checkBox11.Name = "checkBox11";
     this.checkBox11.Size = new System.Drawing.Size(42, 16);
     this.checkBox11.TabIndex = 5;
     this.checkBox11.Text = "300";
     this.checkBox11.UseVisualStyleBackColor = true;
     //
     // checkBox10
     //
     this.checkBox10.AutoSize = true;
     this.checkBox10.Location = new System.Drawing.Point(107, 27);
     this.checkBox10.Name = "checkBox10";
     this.checkBox10.Size = new System.Drawing.Size(42, 16);
     this.checkBox10.TabIndex = 4;
     this.checkBox10.Text = "250";
     this.checkBox10.UseVisualStyleBackColor = true;
     //
     // checkBox9
     //
     this.checkBox9.AutoSize = true;
     this.checkBox9.Location = new System.Drawing.Point(22, 62);
     this.checkBox9.Name = "checkBox9";
     this.checkBox9.Size = new System.Drawing.Size(42, 16);
     this.checkBox9.TabIndex = 3;
     this.checkBox9.Text = "200";
     this.checkBox9.UseVisualStyleBackColor = true;
     //
     // checkBox8
     //
     this.checkBox8.AutoSize = true;
     this.checkBox8.Location = new System.Drawing.Point(22, 42);
     this.checkBox8.Name = "checkBox8";
     this.checkBox8.Size = new System.Drawing.Size(42, 16);
     this.checkBox8.TabIndex = 2;
     this.checkBox8.Text = "150";
     this.checkBox8.UseVisualStyleBackColor = true;
     //
     // checkBox7
     //
     this.checkBox7.AutoSize = true;
     this.checkBox7.Location = new System.Drawing.Point(22, 20);
     this.checkBox7.Name = "checkBox7";
     this.checkBox7.Size = new System.Drawing.Size(42, 16);
     this.checkBox7.TabIndex = 1;
     this.checkBox7.Text = "100";
     this.checkBox7.UseVisualStyleBackColor = true;
     //
     // labelX14
     //
     //
     //
     //
     this.labelX14.BackgroundStyle.Class = "";
     this.labelX14.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX14.Location = new System.Drawing.Point(422, 334);
     this.labelX14.Name = "labelX14";
     this.labelX14.Size = new System.Drawing.Size(75, 23);
     this.labelX14.TabIndex = 39;
     this.labelX14.Text = "排列方式:";
     //
     // comboBoxEx9
     //
     this.comboBoxEx9.DisplayMember = "Text";
     this.comboBoxEx9.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.comboBoxEx9.FormattingEnabled = true;
     this.comboBoxEx9.ItemHeight = 15;
     this.comboBoxEx9.Items.AddRange(new object[] {
     this.comboItem1,
     this.comboItem2,
     this.comboItem3,
     this.comboItem4});
     this.comboBoxEx9.Location = new System.Drawing.Point(507, 332);
     this.comboBoxEx9.Name = "comboBoxEx9";
     this.comboBoxEx9.Size = new System.Drawing.Size(93, 21);
     this.comboBoxEx9.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.comboBoxEx9.TabIndex = 40;
     //
     // comboItem1
     //
     this.comboItem1.Text = "全部横向排列";
     //
     // comboItem2
     //
     this.comboItem2.Text = "全部竖向排列";
     //
     // comboItem3
     //
     this.comboItem3.Text = "横竖混合排列";
     //
     // comboItem4
     //
     this.comboItem4.Text = "不固定排列";
     //
     // panelEx2
     //
     this.panelEx2.CanvasColor = System.Drawing.SystemColors.Control;
     this.panelEx2.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.panelEx2.Controls.Add(this.buttonX1);
     this.panelEx2.Location = new System.Drawing.Point(30, 437);
     this.panelEx2.Name = "panelEx2";
     this.panelEx2.Size = new System.Drawing.Size(594, 33);
     this.panelEx2.Style.Alignment = System.Drawing.StringAlignment.Center;
     this.panelEx2.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.panelEx2.Style.BackColor2.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.panelEx2.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.panelEx2.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.panelEx2.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.panelEx2.Style.GradientAngle = 90;
     this.panelEx2.TabIndex = 41;
     //
     // buttonX1
     //
     this.buttonX1.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.buttonX1.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.buttonX1.Location = new System.Drawing.Point(511, 0);
     this.buttonX1.Name = "buttonX1";
     this.buttonX1.Size = new System.Drawing.Size(80, 30);
     this.buttonX1.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.buttonX1.TabIndex = 0;
     this.buttonX1.Text = "配板设计";
     this.buttonX1.Click += new System.EventHandler(this.buttonX1_Click);
     //
     // integerInput1
     //
     //
     //
     //
     this.integerInput1.BackgroundStyle.Class = "DateTimeInputBackground";
     this.integerInput1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.integerInput1.ButtonFreeText.Shortcut = DevComponents.DotNetBar.eShortcut.F2;
     this.integerInput1.Location = new System.Drawing.Point(210, 46);
     this.integerInput1.Name = "integerInput1";
     this.integerInput1.ShowUpDown = true;
     this.integerInput1.Size = new System.Drawing.Size(80, 21);
     this.integerInput1.TabIndex = 42;
     this.integerInput1.Value = 6000;
     //
     // Frmpeiban
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
     this.ClientSize = new System.Drawing.Size(636, 475);
     this.Controls.Add(this.integerInput1);
     this.Controls.Add(this.panelEx2);
     this.Controls.Add(this.comboBoxEx9);
     this.Controls.Add(this.labelX14);
     this.Controls.Add(this.groupBox4);
     this.Controls.Add(this.groupBox3);
     this.Controls.Add(this.checkBoxX12);
     this.Controls.Add(this.groupBox2);
     this.Controls.Add(this.textBox2);
     this.Controls.Add(this.labelX3);
     this.Controls.Add(this.labelX2);
     this.Controls.Add(this.labelX1);
     this.DoubleBuffered = true;
     this.Name = "Frmpeiban";
     this.Load += new System.EventHandler(this.Frmpeiban_Load);
     this.groupBox2.ResumeLayout(false);
     this.groupBox2.PerformLayout();
     this.groupBox3.ResumeLayout(false);
     this.groupBox3.PerformLayout();
     this.groupBox4.ResumeLayout(false);
     this.groupBox4.PerformLayout();
     this.panelEx2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.integerInput1)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
コード例 #21
0
		/// <summary>
		/// Required method for Designer support - do not modify
		/// the contents of this method with the code editor.
		/// </summary>
		private void InitializeComponent()
		{
			this.components = new System.ComponentModel.Container();
			System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(DotNetBarDesigner));
			this.navigationPane1 = new DevComponents.DotNetBar.NavigationPane();
			this.navigationPanePanel1 = new DevComponents.DotNetBar.NavigationPanePanel();
			this.propertyBars = new System.Windows.Forms.PropertyGrid();
			this.splitter1 = new DevComponents.DotNetBar.ExpandableSplitter();
			this.treeBars = new System.Windows.Forms.TreeView();
			this.imageList = new System.Windows.Forms.ImageList(this.components);
			this.buttonBars = new DevComponents.DotNetBar.ButtonItem();
			this.navigationPanePanel3 = new DevComponents.DotNetBar.NavigationPanePanel();
			this.propertyCategories = new System.Windows.Forms.PropertyGrid();
			this.splitterOffice20031 = new DevComponents.DotNetBar.ExpandableSplitter();
			this.treeCategories = new System.Windows.Forms.TreeView();
			this.buttonCategories = new DevComponents.DotNetBar.ButtonItem();
			this.navigationPanePanel2 = new DevComponents.DotNetBar.NavigationPanePanel();
			this.propertyMenus = new System.Windows.Forms.PropertyGrid();
			this.splitterOffice20032 = new DevComponents.DotNetBar.ExpandableSplitter();
			this.treeMenus = new System.Windows.Forms.TreeView();
			this.buttonContext = new DevComponents.DotNetBar.ButtonItem();
			this.panelEx1 = new DevComponents.DotNetBar.PanelEx();
			this.definitionPreview = new DevComponents.DotNetBar.Design.DefinitionPreviewControl();
			this.splitter2 = new DevComponents.DotNetBar.ExpandableSplitter();
			#if !TRIAL
			this.dotNetBarManager1 = new DevComponents.DotNetBar.DotNetBarManager(this.components,true);
			#else
			this.dotNetBarManager1 = new DevComponents.DotNetBar.DotNetBarManager(this.components);
			#endif
			
			this.barBottomDockSite = new DevComponents.DotNetBar.DockSite();
			this.barLeftDockSite = new DevComponents.DotNetBar.DockSite();
			this.barRightDockSite = new DevComponents.DotNetBar.DockSite();
			this.barTopDockSite = new DevComponents.DotNetBar.DockSite();
			this.m_OpenFileDialog = new System.Windows.Forms.OpenFileDialog();
			this.m_SaveFileDialog = new System.Windows.Forms.SaveFileDialog();
			this.navigationPane1.SuspendLayout();
			this.navigationPanePanel1.SuspendLayout();
			this.navigationPanePanel3.SuspendLayout();
			this.navigationPanePanel2.SuspendLayout();
			this.SuspendLayout();
			// 
			// navigationPane1
			// 
			this.navigationPane1.ConfigureAddRemoveVisible = false;
			this.navigationPane1.ConfigureNavOptionsVisible = false;
			this.navigationPane1.Controls.AddRange(new System.Windows.Forms.Control[] {
																						  this.navigationPanePanel1,
																						  this.navigationPanePanel3,
																						  this.navigationPanePanel2,
																						  this.navigationPane1.TitlePanel});
			this.navigationPane1.Dock = System.Windows.Forms.DockStyle.Left;
			this.navigationPane1.ItemPaddingBottom = 2;
			this.navigationPane1.ItemPaddingTop = 2;
			this.navigationPane1.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
																						   this.buttonBars,
																						   this.buttonContext,
																						   this.buttonCategories});
			this.navigationPane1.Location = new System.Drawing.Point(0, 48);
			this.navigationPane1.Name = "navigationPane1";
			this.navigationPane1.NavigationBarHeight = 88;
			this.navigationPane1.Size = new System.Drawing.Size(304, 468);
			this.navigationPane1.TabIndex = 1;
			// 
			// navigationPane1.TitlePanel
			// 
			this.navigationPane1.TitlePanel.Dock = System.Windows.Forms.DockStyle.Top;
			this.navigationPane1.TitlePanel.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.navigationPane1.TitlePanel.Name = "panelEx1";
			this.navigationPane1.TitlePanel.Size = new System.Drawing.Size(304, 24);
			this.navigationPane1.TitlePanel.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
			this.navigationPane1.TitlePanel.Style.BackColor2.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
			this.navigationPane1.TitlePanel.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
			this.navigationPane1.TitlePanel.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
			this.navigationPane1.TitlePanel.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
			this.navigationPane1.TitlePanel.Style.GradientAngle = 90;
			this.navigationPane1.TitlePanel.Style.MarginLeft = 4;
			this.navigationPane1.TitlePanel.TabIndex = 0;
			this.navigationPane1.TitlePanel.Text = "Bars";
			this.navigationPane1.PanelChanging += new DevComponents.DotNetBar.PanelChangingEventHandler(this.navigationPane1_PanelChanging);
			// 
			// navigationPanePanel1
			// 
			this.navigationPanePanel1.Controls.AddRange(new System.Windows.Forms.Control[] {
																							   this.propertyBars,
																							   this.splitter1,
																							   this.treeBars});
			this.navigationPanePanel1.Dock = System.Windows.Forms.DockStyle.Fill;
			this.navigationPanePanel1.DockPadding.Left = 1;
			this.navigationPanePanel1.DockPadding.Right = 1;
			this.navigationPanePanel1.DockPadding.Top = 1;
			this.navigationPanePanel1.Location = new System.Drawing.Point(0, 24);
			this.navigationPanePanel1.Name = "navigationPanePanel1";
			this.navigationPanePanel1.ParentItem = this.buttonBars;
			this.navigationPanePanel1.Size = new System.Drawing.Size(304, 356);
			this.navigationPanePanel1.Style.Alignment = System.Drawing.StringAlignment.Center;
			this.navigationPanePanel1.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
			this.navigationPanePanel1.Style.BackColor2.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground2;
			this.navigationPanePanel1.Style.BackgroundImagePosition = DevComponents.DotNetBar.eBackgroundImagePosition.Tile;
			this.navigationPanePanel1.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
			this.navigationPanePanel1.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
			this.navigationPanePanel1.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemText;
			this.navigationPanePanel1.Style.GradientAngle = 90;
			this.navigationPanePanel1.TabIndex = 2;
			// 
			// propertyBars
			// 
			this.propertyBars.BackColor = System.Drawing.SystemColors.Control;
			this.propertyBars.CommandsBackColor = System.Drawing.SystemColors.Window;
			this.propertyBars.CommandsVisibleIfAvailable = true;
			this.propertyBars.Dock = System.Windows.Forms.DockStyle.Fill;
			this.propertyBars.HelpBackColor = System.Drawing.SystemColors.ControlLight;
			this.propertyBars.LargeButtons = false;
			this.propertyBars.LineColor = System.Drawing.SystemColors.ControlLight;
			this.propertyBars.Location = new System.Drawing.Point(1, 150);
			this.propertyBars.Name = "propertyBars";
			this.propertyBars.Size = new System.Drawing.Size(302, 206);
			this.propertyBars.TabIndex = 3;
			this.propertyBars.Text = "propertyGrid1";
			this.propertyBars.ViewBackColor = System.Drawing.SystemColors.Window;
			this.propertyBars.ViewForeColor = System.Drawing.SystemColors.WindowText;
			this.propertyBars.PropertyValueChanged += new System.Windows.Forms.PropertyValueChangedEventHandler(this.GridPropertyValueChanged);
			// 
			// splitter1
			// 
			this.splitter1.Expandable = false;
			this.splitter1.Dock = System.Windows.Forms.DockStyle.Top;
			this.splitter1.Location = new System.Drawing.Point(1, 144);
			this.splitter1.Name = "splitter1";
			this.splitter1.Size = new System.Drawing.Size(302, 6);
			this.splitter1.TabIndex = 4;
			this.splitter1.TabStop = false;
			// 
			// treeBars
			// 
			this.treeBars.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this.treeBars.Dock = System.Windows.Forms.DockStyle.Top;
			this.treeBars.ImageList = this.imageList;
			this.treeBars.Location = new System.Drawing.Point(1, 1);
			this.treeBars.Name = "treeBars";
			this.treeBars.Size = new System.Drawing.Size(302, 143);
			this.treeBars.TabIndex = 2;
			this.treeBars.KeyDown += new System.Windows.Forms.KeyEventHandler(this.TreeKeyDown);
			this.treeBars.MouseDown += new System.Windows.Forms.MouseEventHandler(this.TreeMouseDown);
			this.treeBars.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.TreeAfterSelect);
			this.treeBars.BeforeSelect += new System.Windows.Forms.TreeViewCancelEventHandler(this.TreeBeforeSelect);
			this.treeBars.AfterLabelEdit += new System.Windows.Forms.NodeLabelEditEventHandler(this.TreeAfterLabelEdit);
			this.treeBars.BeforeCollapse += new System.Windows.Forms.TreeViewCancelEventHandler(this.TreeBeforeCollapse);
			this.treeBars.BeforeExpand += new System.Windows.Forms.TreeViewCancelEventHandler(this.TreeBeforeExpand);
			this.treeBars.HideSelection=false;
			// 
			// imageList
			// 
			this.imageList.ColorDepth = System.Windows.Forms.ColorDepth.Depth8Bit;
			this.imageList.ImageSize = new System.Drawing.Size(16, 16);
			this.imageList.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList.ImageStream")));
			this.imageList.TransparentColor = System.Drawing.Color.Magenta;
			// 
			// buttonBars
			// 
			this.buttonBars.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
			this.buttonBars.Checked = true;
			this.buttonBars.Image = ((System.Drawing.Bitmap)(resources.GetObject("buttonBars.Image")));
			this.buttonBars.Name = "buttonBars";
			this.buttonBars.OptionGroup = "navBar";
			this.buttonBars.Style = DevComponents.DotNetBar.eDotNetBarStyle.Office2003;
			this.buttonBars.Text = "Bars";
			this.buttonBars.Tooltip = "View Toolbars, Menu bars and dockable windows";
			// 
			// navigationPanePanel3
			// 
			this.navigationPanePanel3.Controls.AddRange(new System.Windows.Forms.Control[] {
																							   this.propertyCategories,
																							   this.splitterOffice20031,
																							   this.treeCategories});
			this.navigationPanePanel3.Dock = System.Windows.Forms.DockStyle.Fill;
			this.navigationPanePanel3.DockPadding.Left = 1;
			this.navigationPanePanel3.DockPadding.Right = 1;
			this.navigationPanePanel3.DockPadding.Top = 1;
			this.navigationPanePanel3.Location = new System.Drawing.Point(0, 24);
			this.navigationPanePanel3.Name = "navigationPanePanel3";
			this.navigationPanePanel3.ParentItem = this.buttonCategories;
			this.navigationPanePanel3.Size = new System.Drawing.Size(304, 356);
			this.navigationPanePanel3.Style.Alignment = System.Drawing.StringAlignment.Center;
			this.navigationPanePanel3.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
			this.navigationPanePanel3.Style.BackColor2.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground2;
			this.navigationPanePanel3.Style.BackgroundImagePosition = DevComponents.DotNetBar.eBackgroundImagePosition.Tile;
			this.navigationPanePanel3.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
			this.navigationPanePanel3.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
			this.navigationPanePanel3.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemText;
			this.navigationPanePanel3.Style.GradientAngle = 90;
			this.navigationPanePanel3.TabIndex = 4;
			// 
			// propertyCategories
			// 
			this.propertyCategories.BackColor = System.Drawing.SystemColors.Control;
			this.propertyCategories.CommandsBackColor = System.Drawing.SystemColors.Window;
			this.propertyCategories.CommandsVisibleIfAvailable = true;
			this.propertyCategories.Dock = System.Windows.Forms.DockStyle.Fill;
			this.propertyCategories.HelpBackColor = System.Drawing.SystemColors.ControlLight;
			this.propertyCategories.HelpVisible = false;
			this.propertyCategories.LargeButtons = false;
			this.propertyCategories.LineColor = System.Drawing.SystemColors.ControlLight;
			this.propertyCategories.Location = new System.Drawing.Point(1, 150);
			this.propertyCategories.Name = "propertyCategories";
			this.propertyCategories.Size = new System.Drawing.Size(302, 206);
			this.propertyCategories.TabIndex = 6;
			this.propertyCategories.Text = "propertyGrid1";
			this.propertyCategories.ToolbarVisible = false;
			this.propertyCategories.ViewBackColor = System.Drawing.SystemColors.Window;
			this.propertyCategories.ViewForeColor = System.Drawing.SystemColors.WindowText;
			this.propertyCategories.PropertyValueChanged += new System.Windows.Forms.PropertyValueChangedEventHandler(this.GridPropertyValueChanged);
			// 
			// splitterOffice20031
			// 
			this.splitterOffice20031.Dock = System.Windows.Forms.DockStyle.Top;
			this.splitterOffice20031.Location = new System.Drawing.Point(1, 144);
			this.splitterOffice20031.Name = "splitterOffice20031";
			this.splitterOffice20031.Size = new System.Drawing.Size(302, 6);
			this.splitterOffice20031.Expandable=false;
			this.splitterOffice20031.TabIndex = 7;
			this.splitterOffice20031.TabStop = false;
			// 
			// treeCategories
			// 
			this.treeCategories.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this.treeCategories.Dock = System.Windows.Forms.DockStyle.Top;
			this.treeCategories.ImageList = this.imageList;
			this.treeCategories.Location = new System.Drawing.Point(1, 1);
			this.treeCategories.Name = "treeCategories";
			this.treeCategories.Size = new System.Drawing.Size(302, 143);
			this.treeCategories.TabIndex = 5;
			this.treeCategories.KeyDown += new System.Windows.Forms.KeyEventHandler(this.TreeKeyDown);
			this.treeCategories.MouseDown += new System.Windows.Forms.MouseEventHandler(this.TreeMouseDown);
			this.treeCategories.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.TreeAfterSelect);
			this.treeCategories.BeforeSelect += new System.Windows.Forms.TreeViewCancelEventHandler(this.TreeBeforeSelect);
			this.treeCategories.AfterLabelEdit += new System.Windows.Forms.NodeLabelEditEventHandler(this.TreeAfterLabelEdit);
			this.treeCategories.BeforeCollapse += new System.Windows.Forms.TreeViewCancelEventHandler(this.TreeBeforeCollapse);
			this.treeCategories.BeforeExpand += new System.Windows.Forms.TreeViewCancelEventHandler(this.TreeBeforeExpand);
			this.treeCategories.HideSelection=false;
			// 
			// buttonCategories
			// 
			this.buttonCategories.Image = ((System.Drawing.Bitmap)(resources.GetObject("buttonCategories.Image")));
			this.buttonCategories.Name = "buttonCategories";
			this.buttonCategories.OptionGroup = "navBar";
			this.buttonCategories.Style = DevComponents.DotNetBar.eDotNetBarStyle.Office2003;
			this.buttonCategories.Text = "Categories";
			this.buttonCategories.Tooltip = "View Command Categories";
			// 
			// navigationPanePanel2
			// 
			this.navigationPanePanel2.Controls.AddRange(new System.Windows.Forms.Control[] {
																							   this.propertyMenus,
																							   this.splitterOffice20032,
																							   this.treeMenus});
			this.navigationPanePanel2.Dock = System.Windows.Forms.DockStyle.Fill;
			this.navigationPanePanel2.DockPadding.Left = 1;
			this.navigationPanePanel2.DockPadding.Right = 1;
			this.navigationPanePanel2.DockPadding.Top = 1;
			this.navigationPanePanel2.Location = new System.Drawing.Point(0, 24);
			this.navigationPanePanel2.Name = "navigationPanePanel2";
			this.navigationPanePanel2.ParentItem = this.buttonContext;
			this.navigationPanePanel2.Size = new System.Drawing.Size(304, 356);
			this.navigationPanePanel2.Style.Alignment = System.Drawing.StringAlignment.Center;
			this.navigationPanePanel2.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
			this.navigationPanePanel2.Style.BackColor2.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground2;
			this.navigationPanePanel2.Style.BackgroundImagePosition = DevComponents.DotNetBar.eBackgroundImagePosition.Tile;
			this.navigationPanePanel2.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
			this.navigationPanePanel2.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
			this.navigationPanePanel2.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemText;
			this.navigationPanePanel2.Style.GradientAngle = 90;
			this.navigationPanePanel2.TabIndex = 3;
			// 
			// propertyMenus
			// 
			this.propertyMenus.BackColor = System.Drawing.SystemColors.Control;
			this.propertyMenus.CommandsBackColor = System.Drawing.SystemColors.Window;
			this.propertyMenus.CommandsVisibleIfAvailable = true;
			this.propertyMenus.Dock = System.Windows.Forms.DockStyle.Fill;
			this.propertyMenus.HelpBackColor = System.Drawing.SystemColors.ControlLight;
			this.propertyMenus.HelpVisible = false;
			this.propertyMenus.LargeButtons = false;
			this.propertyMenus.LineColor = System.Drawing.SystemColors.ControlLight;
			this.propertyMenus.Location = new System.Drawing.Point(1, 150);
			this.propertyMenus.Name = "propertyMenus";
			this.propertyMenus.Size = new System.Drawing.Size(302, 206);
			this.propertyMenus.TabIndex = 6;
			this.propertyMenus.Text = "propertyGrid1";
			this.propertyMenus.ToolbarVisible = false;
			this.propertyMenus.ViewBackColor = System.Drawing.SystemColors.Window;
			this.propertyMenus.ViewForeColor = System.Drawing.SystemColors.WindowText;
			this.propertyMenus.PropertyValueChanged += new System.Windows.Forms.PropertyValueChangedEventHandler(this.GridPropertyValueChanged);
			// 
			// splitterOffice20032
			// 
			this.splitterOffice20032.Expandable = false;
			this.splitterOffice20032.Dock = System.Windows.Forms.DockStyle.Top;
			this.splitterOffice20032.Location = new System.Drawing.Point(1, 144);
			this.splitterOffice20032.Name = "splitterOffice20032";
			this.splitterOffice20032.Size = new System.Drawing.Size(302, 6);
			this.splitterOffice20032.TabIndex = 7;
			this.splitterOffice20032.TabStop = false;
			// 
			// treeMenus
			// 
			this.treeMenus.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this.treeMenus.Dock = System.Windows.Forms.DockStyle.Top;
			this.treeMenus.ImageList = this.imageList;
			this.treeMenus.Location = new System.Drawing.Point(1, 1);
			this.treeMenus.Name = "treeMenus";
			this.treeMenus.Size = new System.Drawing.Size(302, 143);
			this.treeMenus.TabIndex = 5;
			this.treeMenus.KeyDown += new System.Windows.Forms.KeyEventHandler(this.TreeKeyDown);
			this.treeMenus.MouseDown += new System.Windows.Forms.MouseEventHandler(this.TreeMouseDown);
			this.treeMenus.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.TreeAfterSelect);
			this.treeMenus.BeforeSelect += new System.Windows.Forms.TreeViewCancelEventHandler(this.TreeBeforeSelect);
			this.treeMenus.AfterLabelEdit += new System.Windows.Forms.NodeLabelEditEventHandler(this.TreeAfterLabelEdit);
			this.treeMenus.BeforeCollapse += new System.Windows.Forms.TreeViewCancelEventHandler(this.TreeBeforeCollapse);
			this.treeMenus.BeforeExpand += new System.Windows.Forms.TreeViewCancelEventHandler(this.TreeBeforeExpand);
			this.treeMenus.HideSelection=false;
			// 
			// buttonContext
			// 
			this.buttonContext.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
			this.buttonContext.Image = ((System.Drawing.Bitmap)(resources.GetObject("buttonContext.Image")));
			this.buttonContext.Name = "buttonContext";
			this.buttonContext.OptionGroup = "navBar";
			this.buttonContext.Style = DevComponents.DotNetBar.eDotNetBarStyle.Office2003;
			this.buttonContext.Text = "Context Menus";
			this.buttonContext.Tooltip = "View Context Menus";
			// 
			// panelEx1
			// 
			this.panelEx1.Dock = System.Windows.Forms.DockStyle.Top;
			this.panelEx1.Font = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.panelEx1.Location = new System.Drawing.Point(310, 48);
			this.panelEx1.Name = "panelEx1";
			this.panelEx1.Size = new System.Drawing.Size(432, 25);
			this.panelEx1.Style.Alignment = System.Drawing.StringAlignment.Center;
			this.panelEx1.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
			this.panelEx1.Style.BackColor2.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
			this.panelEx1.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
			this.panelEx1.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
			this.panelEx1.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
			this.panelEx1.Style.GradientAngle = 90;
			this.panelEx1.TabIndex = 2;
			this.panelEx1.Text = "Layout Preview";
			// 
			// definitionPreview
			// 
			this.definitionPreview.BackColor = System.Drawing.SystemColors.Control;
			this.definitionPreview.Dock = System.Windows.Forms.DockStyle.Fill;
			this.definitionPreview.Location = new System.Drawing.Point(310, 73);
			this.definitionPreview.Name = "definitionPreview";
			this.definitionPreview.Size = new System.Drawing.Size(432, 443);
			this.definitionPreview.TabIndex = 3;
			this.definitionPreview.DataChanged+=new EventHandler(this.PreviewDataChanged);
			// 
			// splitter2
			// 
			this.splitter2.Location = new System.Drawing.Point(304, 48);
			this.splitter2.Name = "splitter2";
			this.splitter2.Size = new System.Drawing.Size(8, 468);
			this.splitter2.TabIndex = 4;
			this.splitter2.TabStop = false;
			this.splitter2.Dock=DockStyle.Left;
			this.splitter2.ExpandableControl=navigationPane1;
			// 
			// dotNetBarManager1
			// 
			this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.F1);
			this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlC);
			this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlA);
			this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlV);
			this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlX);
			this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlZ);
			this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.Del);
			this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.Ins);
			this.dotNetBarManager1.BottomDockSite = this.barBottomDockSite;
			this.dotNetBarManager1.DefinitionName = "DotNetBarDesigner.dotNetBarManager1.xml";
			this.dotNetBarManager1.LeftDockSite = this.barLeftDockSite;
			this.dotNetBarManager1.ParentForm = this;
			this.dotNetBarManager1.RightDockSite = this.barRightDockSite;
			this.dotNetBarManager1.Style = DevComponents.DotNetBar.eDotNetBarStyle.Office2003;
			this.dotNetBarManager1.TopDockSite = this.barTopDockSite;
			this.dotNetBarManager1.ItemClick += new System.EventHandler(this.dotNetBarManager1_ItemClick);
			this.dotNetBarManager1.UseHook=true;
			// 
			// barBottomDockSite
			// 
			this.barBottomDockSite.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
			this.barBottomDockSite.BackgroundImageAlpha = ((System.Byte)(255));
			this.barBottomDockSite.Dock = System.Windows.Forms.DockStyle.Bottom;
			this.barBottomDockSite.Location = new System.Drawing.Point(0, 516);
			this.barBottomDockSite.Name = "barBottomDockSite";
			this.barBottomDockSite.Size = new System.Drawing.Size(742, 0);
			this.barBottomDockSite.TabIndex = 8;
			this.barBottomDockSite.TabStop = false;
			// 
			// barLeftDockSite
			// 
			this.barLeftDockSite.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
			this.barLeftDockSite.BackgroundImageAlpha = ((System.Byte)(255));
			this.barLeftDockSite.Dock = System.Windows.Forms.DockStyle.Left;
			this.barLeftDockSite.Location = new System.Drawing.Point(0, 48);
			this.barLeftDockSite.Name = "barLeftDockSite";
			this.barLeftDockSite.Size = new System.Drawing.Size(0, 468);
			this.barLeftDockSite.TabIndex = 5;
			this.barLeftDockSite.TabStop = false;
			// 
			// barRightDockSite
			// 
			this.barRightDockSite.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
			this.barRightDockSite.BackgroundImageAlpha = ((System.Byte)(255));
			this.barRightDockSite.Dock = System.Windows.Forms.DockStyle.Right;
			this.barRightDockSite.Location = new System.Drawing.Point(742, 48);
			this.barRightDockSite.Name = "barRightDockSite";
			this.barRightDockSite.Size = new System.Drawing.Size(0, 468);
			this.barRightDockSite.TabIndex = 6;
			this.barRightDockSite.TabStop = false;
			// 
			// barTopDockSite
			// 
			this.barTopDockSite.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
			this.barTopDockSite.BackgroundImageAlpha = ((System.Byte)(255));
			this.barTopDockSite.Dock = System.Windows.Forms.DockStyle.Top;
			this.barTopDockSite.Name = "barTopDockSite";
			this.barTopDockSite.Size = new System.Drawing.Size(742, 48);
			this.barTopDockSite.TabIndex = 7;
			this.barTopDockSite.TabStop = false;
			// 
			// m_OpenFileDialog
			// 
			this.m_OpenFileDialog.Filter = "DotNetBar Files (*.dnb, *.xml)|*.dnb;*.xml|All Files (*.*)|*.*";
			this.m_OpenFileDialog.ShowReadOnly = true;
			this.m_OpenFileDialog.Title = "Open DotNetBar Definition File";
			// 
			// m_SaveFileDialog
			// 
			this.m_SaveFileDialog.DefaultExt = "dnb";
			this.m_SaveFileDialog.FileName = "dotnetbardefinition";
			this.m_SaveFileDialog.Filter = "DotNetBar Files (*.dnb)|*.dnb|XML Files (*.xml)|*.xml|All Files (*.*)|*.*";
			this.m_SaveFileDialog.Title = "Save DotNetBar Definition";
			// 
			// DotNetBarDesigner
			// 
			this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
			this.ClientSize = new System.Drawing.Size(742, 516);
			this.Controls.AddRange(new System.Windows.Forms.Control[] {
																		  this.definitionPreview,
																		  this.panelEx1,
																		  this.splitter2,
																		  this.navigationPane1,
																		  this.barLeftDockSite,
																		  this.barRightDockSite,
																		  this.barTopDockSite,
																		  this.barBottomDockSite});
			this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
			this.Name = "DotNetBarDesigner";
			this.Text = "DotNetBar Designer";
			this.Closing += new System.ComponentModel.CancelEventHandler(this.DotNetBarDesigner_Closing);
            this.Closed += new EventHandler(DotNetBarDesigner_Closed);
			this.Load += new System.EventHandler(this.DotNetBarDesigner_Load);
			this.navigationPane1.ResumeLayout(false);
			this.navigationPanePanel1.ResumeLayout(false);
			this.navigationPanePanel3.ResumeLayout(false);
			this.navigationPanePanel2.ResumeLayout(false);
			this.ResumeLayout(false);

		}
コード例 #22
0
ファイル: Form1.cs プロジェクト: xuchuansheng/GenXSource
//
//    #region Net Performance
//
//    void NetPerformanceInit()
//    {
//      PerfNet= new perfo();
//    }
//    void NetPerfoResultCB(string rx, string tx, string total)
//    {
//      statusBar1.Panels[1].Text = tx + " TX";
//      statusBar1.Panels[2].Text = rx + " RX";
//      textBoxNetRx.Text  =  rx ;
//      textBoxNetTx.Text  =  tx ;
//    }
//
//    private string SelectNetCard()
//    {
//      NetDevice n = new NetDevice(ref PerfNet);
//      n.ShowDialog();
//      if(n.DialogResult == DialogResult.OK)
//      {
//        return n.comboBox1.Text;
//      }
//      return null;
//    }
//
//    private void button4_Click(object sender, System.EventArgs e)
//    {
//      if(!PerfNet.IsRunning)
//      {
//        NetPerfoResult p = new NetPerfoResult(NetPerfoResultCB);
//        PerfNet.SetPerfoCallback(p);
//        string Card = SelectNetCard();
//        if(Card != null)
//        {
//          PerfNet.NetDevice = Card;
//          PerfNet.Start();
//          button4.BackColor = Color.Red;
//          button4.Text = "STOP";
//        }
//      }
//      else
//      {
//        button4.Text = "START";
//        button4.BackColor = Color.PaleGreen;
//        PerfNet.Stop();
//        statusBar1.Panels[1].Text = "0";
//        statusBar1.Panels[2].Text = "0";
//        textBoxNetRx.Text  =  "0";
//        textBoxNetTx.Text  =  "0";
//      }
//    }
//    #endregion

//    #region Mini Terminal
//
//    private void MiniTermInit()
//    {
//      UpdateRxString pCB = new UpdateRxString(UpdateMiniTermRxWindow);
//      MiniT = new miniterminal(pCB);
//    
//    }
//    private void UpdateMiniTermRxWindow(string str)
//    {
//      textBoxRx.AppendText(str);
//    }
//
//
//    private void buttonComOpen_Click(object sender, System.EventArgs e)
//    {
//      if( buttonComOpen.Text.Equals("Close"))
//      {
//        MiniT.Close();
//        buttonComOpen.Text="Open";
//        textBoxTx.Enabled=false;
//        return;
//      }
//      MiniT.ComSettings.port     = comboBoxPort.Text;
//      MiniT.ComSettings.baudRate = int.Parse(comboBoxBaud.Text); 
//      if (!MiniT.Open())
//      {
//        MessageBox.Show("Port kann nicht geöffnet werden !", "Terminal", MessageBoxButtons.OK);
//      }
//      buttonComOpen.Text="Close";
//      textBoxTx.Enabled=true;
//    }
//
//    private void textBoxTx_TextChanged(object sender, System.EventArgs e)
//    {
//      string act = textBoxTx.Text;
//      string tmp = act.Substring(act.Length-1,1);
//
//      Encoding enc = Encoding.ASCII;
//      byte []  ch = new Byte[1];
//      ch  =  enc.GetBytes(tmp);
//
//      MiniT.SendByte(ch[0]);
//    }
//
//    private void checkBoxHex_CheckedChanged(object sender, System.EventArgs e)
//    {
//      MiniT.ShowRxHexValues = checkBoxHex.Checked; 
//    }
//
//    private void textBoxCR_TextChanged(object sender, System.EventArgs e)
//    {
//      if (textBoxCR.Text.Length > 2 || textBoxCR.Text == "")
//      {
//        textBoxCR.Text="";
//        return;
//      }
//      
//      try
//      {
//        // Convert hex string to unsigned integer
//        MiniT.SetCrHexValue = System.Convert.ToUInt32(textBoxCR.Text, 16);
//      }
//      catch (Exception exception) 
//      {
//        MiniT.SetCrHexValue=0xFFFF;
//        return;
//      }
//    }
//    #endregion

    #region misc
//    private void button3_Click(object sender, System.EventArgs e)
//    {
//      Form2 fEnv = new Form2();
//      string s="";
//      IDictionary d =  Environment.GetEnvironmentVariables();
//      foreach (DictionaryEntry de in d)
//      {
//        s += de.Key + " --- " + de.Value +"\r\n";
//      }
//      s +=  "Os Version "  + "   ---   " + Environment.OSVersion.ToString()  + "\r\n";
//      s +=  "CLR Version " + "   ---   " + Environment.Version.ToString()    + "\r\n";
//      s +=  "Res. Mem "    + "   ---   " + Environment.WorkingSet.ToString() + "\r\n";
//      
//      fEnv.WriteTextFeld(s);
//      fEnv.Show();
//    }

   

   
    /*
      private void button9_Click(object sender, System.EventArgs e)
      {
        monitor m = new monitor();

        textBoxTest.Lines = m.GetWmiOs();

        textBoxTest.Text += "--- CPU ---"         + "\r\n";
        textBoxTest.Text += m.DatCpu.Name         + "\r\n";
        textBoxTest.Text += m.DatCpu.Description  + "\r\n";;
        textBoxTest.Text += m.DatCpu.SpeedCurrent + "\r\n";;
        textBoxTest.Text += m.DatCpu.SpeedMax     + "\r\n";;

        textBoxTest.Text += "--- Manufactor ---"    + "\r\n";
        textBoxTest.Text += m.DatNetCard.Manufactor + "\r\n";
        textBoxTest.Text += m.DatNetCard.Type       + "\r\n";
        textBoxTest.Text += m.DatNetCard.MacAdress  + "\r\n";

        textBoxTest.Text += "--- OS ---"    + "\r\n";
        textBoxTest.Text += m.DatOs.Name    + "\r\n";
        textBoxTest.Text += m.DatOs.Version + "\r\n";
      }
      */
    #endregion

    #region Windows Form Designer generated code
    /// <summary>
    /// Required method for Designer support - do not modify
    /// the contents of this method with the code editor.
    /// </summary>
    private void InitializeComponent()
    {
		this.components = new System.ComponentModel.Container();
		this.timer1 = new System.Windows.Forms.Timer(this.components);
		this.label8 = new System.Windows.Forms.Label();
		this.comboBoxFwatchDrive = new System.Windows.Forms.ComboBox();
		this.listBoxFiles = new System.Windows.Forms.ListBox();
		this.openFileDialog1 = new System.Windows.Forms.OpenFileDialog();
		this.saveFileDialog1 = new System.Windows.Forms.SaveFileDialog();
		this.toolTip1 = new System.Windows.Forms.ToolTip(this.components);
		this.panelEx1 = new DevComponents.DotNetBar.PanelEx();
		this.panelEx2 = new DevComponents.DotNetBar.PanelEx();
		this.uICheckBox1 = new Janus.Windows.EditControls.UICheckBox();
		this.uIButton1 = new Janus.Windows.EditControls.UIButton();
		this.uIButton2 = new Janus.Windows.EditControls.UIButton();
		this.uIButton3 = new Janus.Windows.EditControls.UIButton();
		this.panelEx1.SuspendLayout();
		this.panelEx2.SuspendLayout();
		this.SuspendLayout();
		// 
		// timer1
		// 
		this.timer1.Enabled = true;
		this.timer1.Interval = 1000;
		// 
		// label8
		// 
		this.label8.BackColor = System.Drawing.Color.Transparent;
		this.label8.Location = new System.Drawing.Point(8, 32);
		this.label8.Name = "label8";
		this.label8.Size = new System.Drawing.Size(36, 24);
		this.label8.TabIndex = 6;
		this.label8.Text = "Drive:";
		this.label8.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
		// 
		// comboBoxFwatchDrive
		// 
		this.comboBoxFwatchDrive.BackColor = System.Drawing.Color.White;
		this.comboBoxFwatchDrive.Location = new System.Drawing.Point(48, 32);
		this.comboBoxFwatchDrive.Name = "comboBoxFwatchDrive";
		this.comboBoxFwatchDrive.Size = new System.Drawing.Size(64, 21);
		this.comboBoxFwatchDrive.TabIndex = 5;
		this.comboBoxFwatchDrive.Text = "C:\\";
		this.comboBoxFwatchDrive.SelectedIndexChanged += new System.EventHandler(this.comboBoxFwatchDrive_SelectedIndexChanged);
		this.comboBoxFwatchDrive.Enter += new System.EventHandler(this.comboBoxFwatchDrive_Enter);
		// 
		// listBoxFiles
		// 
		this.listBoxFiles.BackColor = System.Drawing.Color.White;
		this.listBoxFiles.BorderStyle = System.Windows.Forms.BorderStyle.None;
		this.listBoxFiles.Dock = System.Windows.Forms.DockStyle.Bottom;
		this.listBoxFiles.HorizontalScrollbar = true;
		this.listBoxFiles.Location = new System.Drawing.Point(0, 69);
		this.listBoxFiles.Name = "listBoxFiles";
		this.listBoxFiles.Size = new System.Drawing.Size(632, 377);
		this.listBoxFiles.TabIndex = 3;
		// 
		// saveFileDialog1
		// 
		this.saveFileDialog1.OverwritePrompt = false;
		this.saveFileDialog1.Title = "Choose a File ...";
		// 
		// panelEx1
		// 
		this.panelEx1.Controls.Add(this.panelEx2);
		this.panelEx1.Dock = System.Windows.Forms.DockStyle.Fill;
		this.panelEx1.Location = new System.Drawing.Point(0, 0);
		this.panelEx1.Name = "panelEx1";
		this.panelEx1.Size = new System.Drawing.Size(632, 446);
		this.panelEx1.Style.Alignment = System.Drawing.StringAlignment.Center;
		this.panelEx1.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
		this.panelEx1.Style.BackColor2.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground2;
		this.panelEx1.Style.BackgroundImagePosition = DevComponents.DotNetBar.eBackgroundImagePosition.Tile;
		this.panelEx1.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarDockedBorder;
		this.panelEx1.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemText;
		this.panelEx1.Style.GradientAngle = 90;
		this.panelEx1.TabIndex = 13;
		// 
		// panelEx2
		// 
		this.panelEx2.Controls.Add(this.label8);
		this.panelEx2.Controls.Add(this.comboBoxFwatchDrive);
		this.panelEx2.Controls.Add(this.uICheckBox1);
		this.panelEx2.Dock = System.Windows.Forms.DockStyle.Top;
		this.panelEx2.Location = new System.Drawing.Point(0, 0);
		this.panelEx2.Name = "panelEx2";
		this.panelEx2.Size = new System.Drawing.Size(632, 68);
		this.panelEx2.Style.Alignment = System.Drawing.StringAlignment.Center;
		this.panelEx2.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
		this.panelEx2.Style.BackColor2.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground2;
		this.panelEx2.Style.BackgroundImagePosition = DevComponents.DotNetBar.eBackgroundImagePosition.Tile;
		this.panelEx2.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarDockedBorder;
		this.panelEx2.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemText;
		this.panelEx2.Style.GradientAngle = 90;
		this.panelEx2.TabIndex = 4;
		// 
		// uICheckBox1
		// 
		this.uICheckBox1.BackColor = System.Drawing.Color.Transparent;
		this.uICheckBox1.Location = new System.Drawing.Point(4, 8);
		this.uICheckBox1.Name = "uICheckBox1";
		this.uICheckBox1.Size = new System.Drawing.Size(108, 20);
		this.uICheckBox1.TabIndex = 10;
		this.uICheckBox1.Text = "Always On Top";
		this.uICheckBox1.CheckedChanged += new System.EventHandler(this.uICheckBox1_CheckedChanged);
		// 
		// uIButton1
		// 
		this.uIButton1.BackColor = System.Drawing.SystemColors.Control;
		this.uIButton1.Location = new System.Drawing.Point(116, 4);
		this.uIButton1.Name = "uIButton1";
		this.uIButton1.Size = new System.Drawing.Size(76, 28);
		this.uIButton1.TabIndex = 8;
		this.uIButton1.Text = "Start";
		this.uIButton1.Click += new System.EventHandler(this.uIButton1_Click);
		// 
		// uIButton2
		// 
		this.uIButton2.BackColor = System.Drawing.SystemColors.Control;
		this.uIButton2.Location = new System.Drawing.Point(116, 36);
		this.uIButton2.Name = "uIButton2";
		this.uIButton2.Size = new System.Drawing.Size(76, 28);
		this.uIButton2.TabIndex = 9;
		this.uIButton2.Text = "Stop";
		this.uIButton2.Click += new System.EventHandler(this.uIButton2_Click);
		// 
		// uIButton3
		// 
		this.uIButton3.BackColor = System.Drawing.SystemColors.Control;
		this.uIButton3.Location = new System.Drawing.Point(552, 36);
		this.uIButton3.Name = "uIButton3";
		this.uIButton3.Size = new System.Drawing.Size(76, 28);
		this.uIButton3.TabIndex = 11;
		this.uIButton3.Text = "Close";
		this.uIButton3.Click += new System.EventHandler(this.uIButton3_Click);
		// 
		// Form1
		// 
		this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
		this.ClientSize = new System.Drawing.Size(632, 446);
		this.ControlBox = false;
		this.Controls.Add(this.uIButton3);
		this.Controls.Add(this.listBoxFiles);
		this.Controls.Add(this.uIButton2);
		this.Controls.Add(this.uIButton1);
		this.Controls.Add(this.panelEx1);
		this.Cursor = System.Windows.Forms.Cursors.Hand;
		this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
		this.MaximizeBox = false;
		this.Name = "Form1";
		this.Text = "NuGenPathWatcher";
		this.Closing += new System.ComponentModel.CancelEventHandler(this.Form1_Closing);
		this.Load += new System.EventHandler(this.Form1_Load);
		this.panelEx1.ResumeLayout(false);
		this.panelEx2.ResumeLayout(false);
		this.ResumeLayout(false);

	}
コード例 #23
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.ribbonBarMergeContainer1 = new DevComponents.DotNetBar.RibbonBarMergeContainer();
     this.ribbonBar1    = new DevComponents.DotNetBar.RibbonBar();
     this.checkBoxItem1 = new DevComponents.DotNetBar.CheckBoxItem();
     this.checkBoxItem2 = new DevComponents.DotNetBar.CheckBoxItem();
     this.checkBoxItem3 = new DevComponents.DotNetBar.CheckBoxItem();
     this.panelEx1      = new DevComponents.DotNetBar.PanelEx();
     this.ribbonBarMergeContainer1.SuspendLayout();
     this.SuspendLayout();
     //
     // ribbonBarMergeContainer1
     //
     this.ribbonBarMergeContainer1.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.ribbonBarMergeContainer1.Controls.AddRange(new System.Windows.Forms.Control[] {
         this.ribbonBar1
     });
     this.ribbonBarMergeContainer1.Location      = new System.Drawing.Point(8, 40);
     this.ribbonBarMergeContainer1.Name          = "ribbonBarMergeContainer1";
     this.ribbonBarMergeContainer1.RibbonTabText = "MDI Child Tab 1";
     this.ribbonBarMergeContainer1.Size          = new System.Drawing.Size(368, 88);
     this.ribbonBarMergeContainer1.TabIndex      = 0;
     this.ribbonBarMergeContainer1.Visible       = false;
     //
     // ribbonBar1
     //
     this.ribbonBar1.AutoOverflowEnabled = true;
     this.ribbonBar1.Dock = System.Windows.Forms.DockStyle.Left;
     this.ribbonBar1.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
         this.checkBoxItem1,
         this.checkBoxItem2,
         this.checkBoxItem3
     });
     this.ribbonBar1.LayoutOrientation = DevComponents.DotNetBar.eOrientation.Vertical;
     this.ribbonBar1.Name     = "ribbonBar1";
     this.ribbonBar1.Size     = new System.Drawing.Size(144, 88);
     this.ribbonBar1.Style    = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.ribbonBar1.TabIndex = 0;
     this.ribbonBar1.Text     = "ribbonBar1";
     //
     // checkBoxItem1
     //
     this.checkBoxItem1.Name = "checkBoxItem1";
     this.checkBoxItem1.Text = "checkBoxItem1";
     //
     // checkBoxItem2
     //
     this.checkBoxItem2.Name = "checkBoxItem2";
     this.checkBoxItem2.Text = "checkBoxItem2";
     //
     // checkBoxItem3
     //
     this.checkBoxItem3.Name = "checkBoxItem3";
     this.checkBoxItem3.Text = "checkBoxItem3";
     //
     // panelEx1
     //
     this.panelEx1.CanvasColor      = System.Drawing.SystemColors.Control;
     this.panelEx1.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.panelEx1.Dock             = System.Windows.Forms.DockStyle.Top;
     this.panelEx1.Name             = "panelEx1";
     this.panelEx1.Size             = new System.Drawing.Size(400, 32);
     this.panelEx1.Style.Alignment  = System.Drawing.StringAlignment.Center;
     this.panelEx1.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.panelEx1.Style.BackColor2.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.panelEx1.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.panelEx1.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.panelEx1.Style.ForeColor.ColorSchemePart   = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.panelEx1.Style.GradientAngle = 90;
     this.panelEx1.TabIndex            = 1;
     this.panelEx1.Text = "This is MDI Child Form 1";
     //
     // ChildForm1
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.BackColor         = System.Drawing.Color.FromArgb(((System.Byte)(194)), ((System.Byte)(217)), ((System.Byte)(247)));
     this.ClientSize        = new System.Drawing.Size(400, 286);
     this.Controls.AddRange(new System.Windows.Forms.Control[] {
         this.panelEx1,
         this.ribbonBarMergeContainer1
     });
     this.Name = "ChildForm1";
     this.Text = "ChildForm1";
     this.ribbonBarMergeContainer1.ResumeLayout(false);
     this.ResumeLayout(false);
 }
コード例 #24
0
ファイル: Form1.cs プロジェクト: xy19xiaoyu/DotNetBar2Demos
 /// <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.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(Form1));
     this.textBox1             = new System.Windows.Forms.TextBox();
     this.label1               = new System.Windows.Forms.Label();
     this.button1              = new System.Windows.Forms.Button();
     this.treeView1            = new System.Windows.Forms.TreeView();
     this.bar1                 = new DevComponents.DotNetBar.Bar();
     this.buttonItem1          = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem2          = new DevComponents.DotNetBar.ButtonItem();
     this.superTooltip1        = new DevComponents.DotNetBar.SuperTooltip();
     this.label2               = new System.Windows.Forms.Label();
     this.tooltipDisplayDelay  = new System.Windows.Forms.Timer(this.components);
     this.panelEx1             = new DevComponents.DotNetBar.PanelEx();
     this.superTooltipWithLink = new DevComponents.DotNetBar.SuperTooltip();
     ((System.ComponentModel.ISupportInitialize)(this.bar1)).BeginInit();
     this.panelEx1.SuspendLayout();
     this.SuspendLayout();
     //
     // textBox1
     //
     this.textBox1.Location = new System.Drawing.Point(8, 24);
     this.textBox1.Name     = "textBox1";
     this.textBox1.Size     = new System.Drawing.Size(152, 20);
     this.superTooltipWithLink.SetSuperTooltip(this.textBox1, new DevComponents.DotNetBar.SuperTooltipInfo("Text Box Tooltip Header", "<a href=\"TextBoxMoreInfo\">Press F1 key to get more information</a>", "Super Tooltips can have multiple lines of text.\r\n\r\nTo better explain functionalit" +
                                                                                                           "y certain command provides.", null, ((System.Drawing.Bitmap)(resources.GetObject("textBox1.SuperTooltip"))), DevComponents.DotNetBar.eTooltipColor.Gray));
     this.textBox1.TabIndex = 0;
     this.textBox1.Text     = "Place mouse cursor here";
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(8, 8);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(160, 16);
     this.label1.TabIndex = 1;
     this.label1.Text     = "Works with any .NET Control";
     //
     // button1
     //
     this.button1.Location = new System.Drawing.Point(8, 56);
     this.button1.Name     = "button1";
     this.button1.Size     = new System.Drawing.Size(96, 40);
     this.superTooltip1.SetSuperTooltip(this.button1, new DevComponents.DotNetBar.SuperTooltipInfo("Preview dialog box before opening", "", "Screenshot of your dialog box can be used as body image to preview dialog box so " +
                                                                                                   "user can see what is behind the button without clicking it.", ((System.Drawing.Bitmap)(resources.GetObject("button1.SuperTooltip"))), null, DevComponents.DotNetBar.eTooltipColor.Office2003));
     this.button1.TabIndex = 2;
     this.button1.Text     = "Place mouse cursor here";
     //
     // treeView1
     //
     this.treeView1.ImageIndex = -1;
     this.treeView1.Location   = new System.Drawing.Point(72, 144);
     this.treeView1.Name       = "treeView1";
     this.treeView1.Nodes.AddRange(new System.Windows.Forms.TreeNode[] {
         new System.Windows.Forms.TreeNode("Root Node 1", new System.Windows.Forms.TreeNode[] {
             new System.Windows.Forms.TreeNode("Child Node 1"),
             new System.Windows.Forms.TreeNode("Child Node 2")
         }),
         new System.Windows.Forms.TreeNode("Another Sample root node", new System.Windows.Forms.TreeNode[] {
             new System.Windows.Forms.TreeNode("Node4"),
             new System.Windows.Forms.TreeNode("Node5")
         })
     });
     this.treeView1.SelectedImageIndex = -1;
     this.treeView1.Size        = new System.Drawing.Size(320, 128);
     this.treeView1.TabIndex    = 3;
     this.treeView1.MouseDown  += new System.Windows.Forms.MouseEventHandler(this.treeView1_MouseDown);
     this.treeView1.MouseMove  += new System.Windows.Forms.MouseEventHandler(this.treeView1_MouseMove);
     this.treeView1.MouseLeave += new System.EventHandler(this.treeView1_MouseLeave);
     //
     // bar1
     //
     this.bar1.DockSide = DevComponents.DotNetBar.eDockSide.Document;
     this.bar1.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
         this.buttonItem1,
         this.buttonItem2
     });
     this.bar1.Location = new System.Drawing.Point(192, 24);
     this.bar1.Name     = "bar1";
     this.bar1.Size     = new System.Drawing.Size(184, 25);
     this.bar1.Style    = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.bar1.TabIndex = 4;
     this.bar1.TabStop  = false;
     this.bar1.Text     = "bar1";
     //
     // buttonItem1
     //
     this.buttonItem1.Name = "buttonItem1";
     this.superTooltip1.SetSuperTooltip(this.buttonItem1, new DevComponents.DotNetBar.SuperTooltipInfo("Super Tooltips for DotNetBar items", "", "Standard DotNetBar items can have Super Tooltips assigned as well.\r\n\r\n- RibbonBar" +
                                                                                                       " Control\r\n- Stand-alone Bar control\r\n- Side-bar Control\r\n- Explorer-Bar Control\r" +
                                                                                                       "\n- PanelEx Control\r\n- NavigationPane Control", null, null, DevComponents.DotNetBar.eTooltipColor.Magenta, true, false, new System.Drawing.Size(0, 0)));
     this.buttonItem1.Text = "Open";
     //
     // buttonItem2
     //
     this.buttonItem2.Name = "buttonItem2";
     this.superTooltip1.SetSuperTooltip(this.buttonItem2, new DevComponents.DotNetBar.SuperTooltipInfo("18 predefined color schemes", "", "18 predefined colors are available for Super Tooltips.\r\n\r\nDefault Gray color is s" +
                                                                                                       "ame as color scheme used in Office 12", null, null, DevComponents.DotNetBar.eTooltipColor.Teal, true, false, new System.Drawing.Size(0, 0)));
     this.buttonItem2.Text = "Print";
     //
     // superTooltip1
     //
     this.superTooltip1.DefaultFont = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     //
     // label2
     //
     this.label2.Location = new System.Drawing.Point(72, 112);
     this.label2.Name     = "label2";
     this.label2.Size     = new System.Drawing.Size(312, 32);
     this.label2.TabIndex = 5;
     this.label2.Text     = "Super Tooltip extensibility interface allows you to provide tooltips for any type" +
                            " of object even nodes";
     this.label2.TextAlign = System.Drawing.ContentAlignment.TopCenter;
     //
     // tooltipDisplayDelay
     //
     this.tooltipDisplayDelay.Interval = 1000;
     this.tooltipDisplayDelay.Tick    += new System.EventHandler(this.tooltipDisplayDelay_Tick);
     //
     // panelEx1
     //
     this.panelEx1.CanvasColor = System.Drawing.SystemColors.Control;
     this.panelEx1.Controls.AddRange(new System.Windows.Forms.Control[] {
         this.treeView1,
         this.label2,
         this.bar1,
         this.button1,
         this.label1,
         this.textBox1
     });
     this.panelEx1.Dock                              = System.Windows.Forms.DockStyle.Fill;
     this.panelEx1.Name                              = "panelEx1";
     this.panelEx1.Size                              = new System.Drawing.Size(464, 286);
     this.panelEx1.Style.Alignment                   = System.Drawing.StringAlignment.Center;
     this.panelEx1.Style.BackColor1.Color            = System.Drawing.SystemColors.ControlLightLight;
     this.panelEx1.Style.BackColor2.Color            = System.Drawing.SystemColors.Control;
     this.panelEx1.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.panelEx1.Style.ForeColor.ColorSchemePart   = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.panelEx1.Style.GradientAngle               = 90;
     this.panelEx1.TabIndex                          = 6;
     //
     // superTooltipWithLink
     //
     this.superTooltipWithLink.AntiAlias   = false;
     this.superTooltipWithLink.DefaultFont = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.superTooltipWithLink.DelayTooltipHideDuration = 1000;
     this.superTooltipWithLink.PositionBelowControl     = false;
     this.superTooltipWithLink.MarkupLinkClick         += new DevComponents.DotNetBar.MarkupLinkClickEventHandler(this.superTooltipWithLink_MarkupLinkClick);
     //
     // Form1
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(464, 286);
     this.Controls.AddRange(new System.Windows.Forms.Control[] {
         this.panelEx1
     });
     this.Name  = "Form1";
     this.Text  = "Super Tooltip Demo";
     this.Load += new System.EventHandler(this.Form1_Load);
     ((System.ComponentModel.ISupportInitialize)(this.bar1)).EndInit();
     this.panelEx1.ResumeLayout(false);
     this.ResumeLayout(false);
 }
コード例 #25
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(ChildForm2));
     this.ribbonBarMergeContainer1 = new DevComponents.DotNetBar.RibbonBarMergeContainer();
     this.ribbonBar1  = new DevComponents.DotNetBar.RibbonBar();
     this.buttonItem1 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem2 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem3 = new DevComponents.DotNetBar.ButtonItem();
     this.panelEx1    = new DevComponents.DotNetBar.PanelEx();
     this.ribbonBarMergeContainer1.SuspendLayout();
     this.SuspendLayout();
     //
     // ribbonBarMergeContainer1
     //
     this.ribbonBarMergeContainer1.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.ribbonBarMergeContainer1.Controls.AddRange(new System.Windows.Forms.Control[] {
         this.ribbonBar1
     });
     this.ribbonBarMergeContainer1.Location      = new System.Drawing.Point(0, 56);
     this.ribbonBarMergeContainer1.Name          = "ribbonBarMergeContainer1";
     this.ribbonBarMergeContainer1.RibbonTabText = "MDI Child Tab 2";
     this.ribbonBarMergeContainer1.Size          = new System.Drawing.Size(392, 72);
     this.ribbonBarMergeContainer1.TabIndex      = 0;
     this.ribbonBarMergeContainer1.Visible       = false;
     //
     // ribbonBar1
     //
     this.ribbonBar1.AutoOverflowEnabled = true;
     this.ribbonBar1.Dock = System.Windows.Forms.DockStyle.Left;
     this.ribbonBar1.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
         this.buttonItem1,
         this.buttonItem2,
         this.buttonItem3
     });
     this.ribbonBar1.Name     = "ribbonBar1";
     this.ribbonBar1.Size     = new System.Drawing.Size(168, 72);
     this.ribbonBar1.Style    = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.ribbonBar1.TabIndex = 0;
     this.ribbonBar1.Text     = "Views";
     //
     // buttonItem1
     //
     this.buttonItem1.Image = ((System.Drawing.Bitmap)(resources.GetObject("buttonItem1.Image")));
     this.buttonItem1.Name  = "buttonItem1";
     this.buttonItem1.Text  = "buttonItem1";
     //
     // buttonItem2
     //
     this.buttonItem2.Image = ((System.Drawing.Bitmap)(resources.GetObject("buttonItem2.Image")));
     this.buttonItem2.Name  = "buttonItem2";
     this.buttonItem2.Text  = "buttonItem2";
     //
     // buttonItem3
     //
     this.buttonItem3.Image = ((System.Drawing.Bitmap)(resources.GetObject("buttonItem3.Image")));
     this.buttonItem3.Name  = "buttonItem3";
     this.buttonItem3.Text  = "buttonItem3";
     //
     // panelEx1
     //
     this.panelEx1.CanvasColor      = System.Drawing.SystemColors.Control;
     this.panelEx1.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.panelEx1.Dock             = System.Windows.Forms.DockStyle.Top;
     this.panelEx1.Name             = "panelEx1";
     this.panelEx1.Size             = new System.Drawing.Size(392, 32);
     this.panelEx1.Style.Alignment  = System.Drawing.StringAlignment.Center;
     this.panelEx1.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemHotBackground;
     this.panelEx1.Style.BackColor2.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemHotBackground2;
     this.panelEx1.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.panelEx1.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.panelEx1.Style.ForeColor.ColorSchemePart   = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.panelEx1.Style.GradientAngle = 90;
     this.panelEx1.TabIndex            = 2;
     this.panelEx1.Text = "This is MDI Child Form 2";
     //
     // ChildForm2
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.BackColor         = System.Drawing.Color.FromArgb(((System.Byte)(194)), ((System.Byte)(217)), ((System.Byte)(247)));
     this.ClientSize        = new System.Drawing.Size(392, 270);
     this.Controls.AddRange(new System.Windows.Forms.Control[] {
         this.panelEx1,
         this.ribbonBarMergeContainer1
     });
     this.Name = "ChildForm2";
     this.Text = "ChildForm2";
     this.ribbonBarMergeContainer1.ResumeLayout(false);
     this.ResumeLayout(false);
 }
コード例 #26
0
ファイル: ObjViewer.cs プロジェクト: carlhuth/GenXSource
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.lvProps  = new System.Windows.Forms.ListView();
     this.colName  = new System.Windows.Forms.ColumnHeader();
     this.colValue = new System.Windows.Forms.ColumnHeader();
     this.lblName  = new System.Windows.Forms.Label();
     this.lblKind  = new System.Windows.Forms.Label();
     this.panelEx1 = new DevComponents.DotNetBar.PanelEx();
     this.panelEx1.SuspendLayout();
     this.SuspendLayout();
     //
     // lvProps
     //
     this.lvProps.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
         this.colName,
         this.colValue
     });
     this.lvProps.Dock          = System.Windows.Forms.DockStyle.Fill;
     this.lvProps.FullRowSelect = true;
     this.lvProps.GridLines     = true;
     this.lvProps.Location      = new System.Drawing.Point(0, 92);
     this.lvProps.Name          = "lvProps";
     this.lvProps.Size          = new System.Drawing.Size(432, 300);
     this.lvProps.TabIndex      = 0;
     this.lvProps.View          = System.Windows.Forms.View.Details;
     //
     // colName
     //
     this.colName.Text  = "Property";
     this.colName.Width = 120;
     //
     // colValue
     //
     this.colValue.Text  = "Value";
     this.colValue.Width = 300;
     //
     // lblName
     //
     this.lblName.BackColor = System.Drawing.Color.Transparent;
     this.lblName.Dock      = System.Windows.Forms.DockStyle.Bottom;
     this.lblName.Location  = new System.Drawing.Point(0, 28);
     this.lblName.Name      = "lblName";
     this.lblName.Size      = new System.Drawing.Size(432, 64);
     this.lblName.TabIndex  = 1;
     this.lblName.Text      = "label1";
     //
     // lblKind
     //
     this.lblKind.BackColor = System.Drawing.Color.Transparent;
     this.lblKind.Dock      = System.Windows.Forms.DockStyle.Top;
     this.lblKind.Font      = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))), System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.lblKind.ForeColor = System.Drawing.SystemColors.ControlText;
     this.lblKind.Location  = new System.Drawing.Point(0, 0);
     this.lblKind.Name      = "lblKind";
     this.lblKind.Size      = new System.Drawing.Size(432, 24);
     this.lblKind.TabIndex  = 2;
     this.lblKind.Text      = "label1";
     this.lblKind.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // panelEx1
     //
     this.panelEx1.Controls.Add(this.lblName);
     this.panelEx1.Controls.Add(this.lblKind);
     this.panelEx1.Dock            = System.Windows.Forms.DockStyle.Top;
     this.panelEx1.Location        = new System.Drawing.Point(0, 0);
     this.panelEx1.Name            = "panelEx1";
     this.panelEx1.Size            = new System.Drawing.Size(432, 92);
     this.panelEx1.Style.Alignment = System.Drawing.StringAlignment.Center;
     this.panelEx1.Style.BackColor1.ColorSchemePart  = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
     this.panelEx1.Style.BackColor2.ColorSchemePart  = DevComponents.DotNetBar.eColorSchemePart.BarBackground2;
     this.panelEx1.Style.BackgroundImagePosition     = DevComponents.DotNetBar.eBackgroundImagePosition.Tile;
     this.panelEx1.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarDockedBorder;
     this.panelEx1.Style.ForeColor.ColorSchemePart   = DevComponents.DotNetBar.eColorSchemePart.ItemText;
     this.panelEx1.Style.GradientAngle = 90;
     this.panelEx1.TabIndex            = 3;
     //
     // ObjViewer
     //
     this.Controls.Add(this.lvProps);
     this.Controls.Add(this.panelEx1);
     this.Name = "ObjViewer";
     this.Size = new System.Drawing.Size(432, 392);
     this.panelEx1.ResumeLayout(false);
     this.ResumeLayout(false);
 }
コード例 #27
0
 /// <summary>
 /// �����֧������ķ��� - ��Ҫ
 /// ʹ�ô���༭���޸Ĵ˷��������ݡ�
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     this.dockContainerItem1 = new DevComponents.DotNetBar.DockContainerItem();
     this.dockContainerItem2 = new DevComponents.DotNetBar.DockContainerItem();
     this.dockContainerItem3 = new DevComponents.DotNetBar.DockContainerItem();
     this.superTabItem2 = new DevComponents.DotNetBar.SuperTabItem();
     this.superTabControlPanel2 = new DevComponents.DotNetBar.SuperTabControlPanel();
     this.comboItem1 = new DevComponents.Editors.ComboItem();
     this.comboItem2 = new DevComponents.Editors.ComboItem();
     this.comboItem3 = new DevComponents.Editors.ComboItem();
     this.panelEx1 = new DevComponents.DotNetBar.PanelEx();
     this.BtnSubmit = new DevComponents.DotNetBar.ButtonX();
     this.panelEx2 = new DevComponents.DotNetBar.PanelEx();
     this.LbScaffoldType = new DevComponents.DotNetBar.LabelX();
     this.CbxScaffoldType = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.comboItem72 = new DevComponents.Editors.ComboItem();
     this.comboItem73 = new DevComponents.Editors.ComboItem();
     this.comboItem74 = new DevComponents.Editors.ComboItem();
     this.comboItem66 = new DevComponents.Editors.ComboItem();
     this.comboItem70 = new DevComponents.Editors.ComboItem();
     this.buttonItem1 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem2 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem3 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem4 = new DevComponents.DotNetBar.ButtonItem();
     this.panelEx3 = new DevComponents.DotNetBar.PanelEx();
     this.TabScaffloldPower = new DevComponents.DotNetBar.TabControl();
     this.tabControlPanel1 = new DevComponents.DotNetBar.TabControlPanel();
     this.Grp_Item1 = new System.Windows.Forms.GroupBox();
     this.groupBox2 = new System.Windows.Forms.GroupBox();
     this.Tb_Item1GGWJ = new System.Windows.Forms.TextBox();
     this.Tb_Item1BH = new System.Windows.Forms.TextBox();
     this.Lb_Item1BH = new DevComponents.DotNetBar.LabelX();
     this.Lb_Item1GGWJ = new DevComponents.DotNetBar.LabelX();
     this.labelX1 = new DevComponents.DotNetBar.LabelX();
     this.labelX8 = new DevComponents.DotNetBar.LabelX();
     this.DbInput_Item1SKJ = new DevComponents.Editors.DoubleInput();
     this.DbInput_Item1DKJ = new DevComponents.Editors.DoubleInput();
     this.Lb_Item17 = new DevComponents.DotNetBar.LabelX();
     this.DbInput_Item1LQJL = new DevComponents.Editors.DoubleInput();
     this.Lb_Item1LQJL = new DevComponents.DotNetBar.LabelX();
     this.DbInput_Item1DSGD = new DevComponents.Editors.DoubleInput();
     this.Lb_Item1DSGD = new DevComponents.DotNetBar.LabelX();
     this.DbInput_Item1BJ = new DevComponents.Editors.DoubleInput();
     this.Lb_Item1BJ = new DevComponents.DotNetBar.LabelX();
     this.DbInput_Item1XHGWSCD = new DevComponents.Editors.DoubleInput();
     this.Lb_Item1LGZJ = new DevComponents.DotNetBar.LabelX();
     this.DbInput_Item1LGHJ = new DevComponents.Editors.DoubleInput();
     this.DbInput_Item1LGZJ = new DevComponents.Editors.DoubleInput();
     this.Lb_Item1LGHJ = new DevComponents.DotNetBar.LabelX();
     this.LXtabItem1 = new DevComponents.DotNetBar.TabItem(this.components);
     this.tabControlPanel13 = new DevComponents.DotNetBar.TabControlPanel();
     this.groupBox1 = new System.Windows.Forms.GroupBox();
     this.DbInput_Lx4Item1S = new DevComponents.Editors.DoubleInput();
     this.DbInput_Lx4Item1D = new DevComponents.Editors.DoubleInput();
     this.DbInput_Lx4Item1GD = new DevComponents.Editors.DoubleInput();
     this.DbInput_Lx4Item1KJ = new DevComponents.Editors.DoubleInput();
     this.Tb_Lx4Item1BJ = new System.Windows.Forms.TextBox();
     this.labelX2 = new DevComponents.DotNetBar.LabelX();
     this.labelX3 = new DevComponents.DotNetBar.LabelX();
     this.labelX4 = new DevComponents.DotNetBar.LabelX();
     this.labelX5 = new DevComponents.DotNetBar.LabelX();
     this.labelX6 = new DevComponents.DotNetBar.LabelX();
     this.groupBox10 = new System.Windows.Forms.GroupBox();
     this.Rdo_Lx4Item1MF2 = new System.Windows.Forms.RadioButton();
     this.Rdo_Lx4Item1MF1 = new System.Windows.Forms.RadioButton();
     this.Rdo_Lx4Item1MF4 = new System.Windows.Forms.RadioButton();
     this.Rdo_Lx4Item1MF3 = new System.Windows.Forms.RadioButton();
     this.LX4tabItem1 = new DevComponents.DotNetBar.TabItem(this.components);
     this.tabControlPanel6 = new DevComponents.DotNetBar.TabControlPanel();
     this.Grp_Item6 = new System.Windows.Forms.GroupBox();
     this.Lb_Item6Uz = new DevComponents.DotNetBar.LabelX();
     this.DbInput_Item6Uz = new DevComponents.Editors.DoubleInput();
     this.Cb_Item7DMCCD = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.comboItem214 = new DevComponents.Editors.ComboItem();
     this.comboItem215 = new DevComponents.Editors.ComboItem();
     this.comboItem216 = new DevComponents.Editors.ComboItem();
     this.comboItem217 = new DevComponents.Editors.ComboItem();
     this.labelX17 = new DevComponents.DotNetBar.LabelX();
     this.Grp_Item6SF = new System.Windows.Forms.GroupBox();
     this.Cb_Item6SF = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.comboItem37 = new DevComponents.Editors.ComboItem();
     this.comboItem38 = new DevComponents.Editors.ComboItem();
     this.comboItem39 = new DevComponents.Editors.ComboItem();
     this.comboItem40 = new DevComponents.Editors.ComboItem();
     this.comboItem41 = new DevComponents.Editors.ComboItem();
     this.comboItem42 = new DevComponents.Editors.ComboItem();
     this.comboItem43 = new DevComponents.Editors.ComboItem();
     this.comboItem44 = new DevComponents.Editors.ComboItem();
     this.comboItem45 = new DevComponents.Editors.ComboItem();
     this.comboItem46 = new DevComponents.Editors.ComboItem();
     this.comboItem47 = new DevComponents.Editors.ComboItem();
     this.comboItem48 = new DevComponents.Editors.ComboItem();
     this.comboItem49 = new DevComponents.Editors.ComboItem();
     this.comboItem50 = new DevComponents.Editors.ComboItem();
     this.comboItem51 = new DevComponents.Editors.ComboItem();
     this.comboItem52 = new DevComponents.Editors.ComboItem();
     this.comboItem53 = new DevComponents.Editors.ComboItem();
     this.comboItem54 = new DevComponents.Editors.ComboItem();
     this.comboItem55 = new DevComponents.Editors.ComboItem();
     this.comboItem56 = new DevComponents.Editors.ComboItem();
     this.comboItem57 = new DevComponents.Editors.ComboItem();
     this.comboItem58 = new DevComponents.Editors.ComboItem();
     this.comboItem59 = new DevComponents.Editors.ComboItem();
     this.comboItem60 = new DevComponents.Editors.ComboItem();
     this.comboItem61 = new DevComponents.Editors.ComboItem();
     this.comboItem62 = new DevComponents.Editors.ComboItem();
     this.comboItem63 = new DevComponents.Editors.ComboItem();
     this.comboItem71 = new DevComponents.Editors.ComboItem();
     this.comboItem75 = new DevComponents.Editors.ComboItem();
     this.comboItem142 = new DevComponents.Editors.ComboItem();
     this.comboItem143 = new DevComponents.Editors.ComboItem();
     this.comboItem144 = new DevComponents.Editors.ComboItem();
     this.comboItem145 = new DevComponents.Editors.ComboItem();
     this.comboItem146 = new DevComponents.Editors.ComboItem();
     this.Lb_Item6SF = new DevComponents.DotNetBar.LabelX();
     this.Tb_Item6SFDQFY = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.Lb_Item6DQ = new DevComponents.DotNetBar.LabelX();
     this.Cb_Item6DQ = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.Lb_Item6SFDQFY = new DevComponents.DotNetBar.LabelX();
     this.groupBox9 = new System.Windows.Forms.GroupBox();
     this.Lb_Item6SelfJBFY = new DevComponents.DotNetBar.LabelX();
     this.Chk_Item6Self = new DevComponents.DotNetBar.Controls.CheckBoxX();
     this.DbInput_Item6SelfJBFY = new DevComponents.Editors.DoubleInput();
     this.LXtabItem6 = new DevComponents.DotNetBar.TabItem(this.components);
     this.tabControlPanel5 = new DevComponents.DotNetBar.TabControlPanel();
     this.Grp_Item5 = new System.Windows.Forms.GroupBox();
     this.DbInput_Item5HZBZ = new DevComponents.Editors.DoubleInput();
     this.IntInput_Item5PSCS = new DevComponents.Editors.IntegerInput();
     this.IntInput_Item5SGCS = new DevComponents.Editors.IntegerInput();
     this.Cb_Item5YT = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.comboItem34 = new DevComponents.Editors.ComboItem();
     this.comboItem35 = new DevComponents.Editors.ComboItem();
     this.comboItem36 = new DevComponents.Editors.ComboItem();
     this.Lb_Item5PSCS = new DevComponents.DotNetBar.LabelX();
     this.labelX24 = new DevComponents.DotNetBar.LabelX();
     this.labelX23 = new DevComponents.DotNetBar.LabelX();
     this.Lb_Item5YT = new DevComponents.DotNetBar.LabelX();
     this.LXtabItem5 = new DevComponents.DotNetBar.TabItem(this.components);
     this.tabControlPanel4 = new DevComponents.DotNetBar.TabControlPanel();
     this.groupBox11 = new System.Windows.Forms.GroupBox();
     this.IntInput_Item4PSCS = new DevComponents.Editors.IntegerInput();
     this.Tb_Item4JBZZBZZ = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.Tb_Item4JSBZZBZZ = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.Cb_Item4JSBLB = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.comboItem4 = new DevComponents.Editors.ComboItem();
     this.comboItem5 = new DevComponents.Editors.ComboItem();
     this.comboItem6 = new DevComponents.Editors.ComboItem();
     this.comboItem7 = new DevComponents.Editors.ComboItem();
     this.Lb_Item4JSBLB = new DevComponents.DotNetBar.LabelX();
     this.Tb_Item4AQW = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.Lb_Item4AQW = new DevComponents.DotNetBar.LabelX();
     this.Cb_Item4JBLB = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.comboItem8 = new DevComponents.Editors.ComboItem();
     this.comboItem9 = new DevComponents.Editors.ComboItem();
     this.comboItem10 = new DevComponents.Editors.ComboItem();
     this.Lb_Item4JBZZBZZ = new DevComponents.DotNetBar.LabelX();
     this.Lb_Item4JBLB = new DevComponents.DotNetBar.LabelX();
     this.Lb_Item4PSCS = new DevComponents.DotNetBar.LabelX();
     this.Lb_Item4JSBZZBZZ = new DevComponents.DotNetBar.LabelX();
     this.Tb_Item4GK = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.labelX18 = new DevComponents.DotNetBar.LabelX();
     this.LXtabItem4 = new DevComponents.DotNetBar.TabItem(this.components);
     this.tabControlPanel2 = new DevComponents.DotNetBar.TabControlPanel();
     this.Grp_Item2 = new System.Windows.Forms.GroupBox();
     this.Grp_Item2DHG = new System.Windows.Forms.GroupBox();
     this.Cb_Item2DHGGS = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.comboItem22 = new DevComponents.Editors.ComboItem();
     this.comboItem23 = new DevComponents.Editors.ComboItem();
     this.comboItem24 = new DevComponents.Editors.ComboItem();
     this.comboItem25 = new DevComponents.Editors.ComboItem();
     this.Lb_Item2DHGGS = new DevComponents.DotNetBar.LabelX();
     this.Rdo_Item2XHG = new System.Windows.Forms.RadioButton();
     this.Grp_Item2XHG = new System.Windows.Forms.GroupBox();
     this.Tb_Item2XHGJJ = new System.Windows.Forms.TextBox();
     this.Cb_Item2LGZJ = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.comboItem20 = new DevComponents.Editors.ComboItem();
     this.comboItem21 = new DevComponents.Editors.ComboItem();
     this.Lb_Item2LGZJ = new DevComponents.DotNetBar.LabelX();
     this.Lb_Item2XHGJJ = new DevComponents.DotNetBar.LabelX();
     this.Rdo_Item2DHG = new System.Windows.Forms.RadioButton();
     this.LXtabItem2 = new DevComponents.DotNetBar.TabItem(this.components);
     this.tabControlPanel9 = new DevComponents.DotNetBar.TabControlPanel();
     this.Grp_Item9 = new System.Windows.Forms.GroupBox();
     this.Cb_Item9DJLX = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.comboItem15 = new DevComponents.Editors.ComboItem();
     this.comboItem16 = new DevComponents.Editors.ComboItem();
     this.Lb_Item9DJLX = new DevComponents.DotNetBar.LabelX();
     this.Tb_Item9ZYCD = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.Lb_Item9ZYCD = new DevComponents.DotNetBar.LabelX();
     this.DbIput_Item9DBK = new DevComponents.Editors.DoubleInput();
     this.Lb_Item9DBK = new DevComponents.DotNetBar.LabelX();
     this.Btn_Item9SearchChart = new DevComponents.DotNetBar.ButtonX();
     this.Tb_Item9DJCZL = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.Lb_Item9DJCZL = new DevComponents.DotNetBar.LabelX();
     this.Cb_Item9DJTLX = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.comboItem17 = new DevComponents.Editors.ComboItem();
     this.comboItem18 = new DevComponents.Editors.ComboItem();
     this.comboItem19 = new DevComponents.Editors.ComboItem();
     this.comboItem64 = new DevComponents.Editors.ComboItem();
     this.comboItem65 = new DevComponents.Editors.ComboItem();
     this.comboItem67 = new DevComponents.Editors.ComboItem();
     this.comboItem68 = new DevComponents.Editors.ComboItem();
     this.comboItem69 = new DevComponents.Editors.ComboItem();
     this.Lb_Item9DJTLX = new DevComponents.DotNetBar.LabelX();
     this.LXtabItem9 = new DevComponents.DotNetBar.TabItem(this.components);
     this.tabControlPanel17 = new DevComponents.DotNetBar.TabControlPanel();
     this.groupBox8 = new System.Windows.Forms.GroupBox();
     this.IntInput_Lx5Item1NO = new DevComponents.Editors.IntegerInput();
     this.IntInput_Lx5Item1LDX = new DevComponents.Editors.IntegerInput();
     this.IntInput_Lx5Item1SPX = new DevComponents.Editors.IntegerInput();
     this.Cbx_Lx5Item1LGJXG = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.comboItem212 = new DevComponents.Editors.ComboItem();
     this.comboItem213 = new DevComponents.Editors.ComboItem();
     this.Cbx_Lx5Item1DKJ = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.comboItem201 = new DevComponents.Editors.ComboItem();
     this.comboItem202 = new DevComponents.Editors.ComboItem();
     this.Cbx_Lx5Item1WXGBZ = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.comboItem203 = new DevComponents.Editors.ComboItem();
     this.comboItem204 = new DevComponents.Editors.ComboItem();
     this.comboItem205 = new DevComponents.Editors.ComboItem();
     this.comboItem206 = new DevComponents.Editors.ComboItem();
     this.comboItem207 = new DevComponents.Editors.ComboItem();
     this.comboItem208 = new DevComponents.Editors.ComboItem();
     this.labelX48 = new DevComponents.DotNetBar.LabelX();
     this.labelX52 = new DevComponents.DotNetBar.LabelX();
     this.labelX49 = new DevComponents.DotNetBar.LabelX();
     this.labelX62 = new DevComponents.DotNetBar.LabelX();
     this.labelX50 = new DevComponents.DotNetBar.LabelX();
     this.labelX51 = new DevComponents.DotNetBar.LabelX();
     this.Cbx_Lx5Item1LDX = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.comboItem188 = new DevComponents.Editors.ComboItem();
     this.comboItem189 = new DevComponents.Editors.ComboItem();
     this.comboItem190 = new DevComponents.Editors.ComboItem();
     this.comboItem191 = new DevComponents.Editors.ComboItem();
     this.comboItem192 = new DevComponents.Editors.ComboItem();
     this.Cbx_Lx5Item1SPX = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.comboItem193 = new DevComponents.Editors.ComboItem();
     this.comboItem194 = new DevComponents.Editors.ComboItem();
     this.comboItem195 = new DevComponents.Editors.ComboItem();
     this.Cbx_Lx5Item1WXG = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.comboItem196 = new DevComponents.Editors.ComboItem();
     this.comboItem197 = new DevComponents.Editors.ComboItem();
     this.comboItem198 = new DevComponents.Editors.ComboItem();
     this.comboItem199 = new DevComponents.Editors.ComboItem();
     this.comboItem200 = new DevComponents.Editors.ComboItem();
     this.labelX45 = new DevComponents.DotNetBar.LabelX();
     this.labelX46 = new DevComponents.DotNetBar.LabelX();
     this.labelX47 = new DevComponents.DotNetBar.LabelX();
     this.Cbx_Lx5Item1LGG = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.comboItem184 = new DevComponents.Editors.ComboItem();
     this.comboItem185 = new DevComponents.Editors.ComboItem();
     this.comboItem186 = new DevComponents.Editors.ComboItem();
     this.comboItem187 = new DevComponents.Editors.ComboItem();
     this.labelX44 = new DevComponents.DotNetBar.LabelX();
     this.Cbx_Lx5Item1HJ = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.comboItem168 = new DevComponents.Editors.ComboItem();
     this.comboItem169 = new DevComponents.Editors.ComboItem();
     this.comboItem170 = new DevComponents.Editors.ComboItem();
     this.comboItem171 = new DevComponents.Editors.ComboItem();
     this.comboItem172 = new DevComponents.Editors.ComboItem();
     this.comboItem173 = new DevComponents.Editors.ComboItem();
     this.Cbx_Lx5Item1JHG = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.comboItem174 = new DevComponents.Editors.ComboItem();
     this.comboItem175 = new DevComponents.Editors.ComboItem();
     this.comboItem176 = new DevComponents.Editors.ComboItem();
     this.comboItem177 = new DevComponents.Editors.ComboItem();
     this.Cbx_Lx5Item1ZJ = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.comboItem178 = new DevComponents.Editors.ComboItem();
     this.comboItem179 = new DevComponents.Editors.ComboItem();
     this.comboItem180 = new DevComponents.Editors.ComboItem();
     this.comboItem181 = new DevComponents.Editors.ComboItem();
     this.comboItem182 = new DevComponents.Editors.ComboItem();
     this.comboItem183 = new DevComponents.Editors.ComboItem();
     this.labelX39 = new DevComponents.DotNetBar.LabelX();
     this.labelX40 = new DevComponents.DotNetBar.LabelX();
     this.labelX41 = new DevComponents.DotNetBar.LabelX();
     this.labelX43 = new DevComponents.DotNetBar.LabelX();
     this.DbInput_Lx5Item2GD = new DevComponents.Editors.DoubleInput();
     this.DbInput_Lx5Item1BJ = new DevComponents.Editors.DoubleInput();
     this.labelX38 = new DevComponents.DotNetBar.LabelX();
     this.LX5tabItem1 = new DevComponents.DotNetBar.TabItem(this.components);
     this.tabControlPanel16 = new DevComponents.DotNetBar.TabControlPanel();
     this.groupBox19 = new System.Windows.Forms.GroupBox();
     this.Btn_Lx4Item4Search1 = new DevComponents.DotNetBar.ButtonX();
     this.DbInput_Lx4Item4TZXS = new DevComponents.Editors.DoubleInput();
     this.Btn_Lx4Item4Search2 = new DevComponents.DotNetBar.ButtonX();
     this.Tb_Lx4Item4DJCZL = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.labelX37 = new DevComponents.DotNetBar.LabelX();
     this.labelX33 = new DevComponents.DotNetBar.LabelX();
     this.Cb_Lx4Item4DJTLX = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.comboItem160 = new DevComponents.Editors.ComboItem();
     this.comboItem161 = new DevComponents.Editors.ComboItem();
     this.comboItem162 = new DevComponents.Editors.ComboItem();
     this.comboItem163 = new DevComponents.Editors.ComboItem();
     this.comboItem164 = new DevComponents.Editors.ComboItem();
     this.comboItem165 = new DevComponents.Editors.ComboItem();
     this.comboItem166 = new DevComponents.Editors.ComboItem();
     this.comboItem167 = new DevComponents.Editors.ComboItem();
     this.groupBox20 = new System.Windows.Forms.GroupBox();
     this.DbIput_Lx4Item4DBK = new DevComponents.Editors.DoubleInput();
     this.DbIput_Lx4Item4DBC = new DevComponents.Editors.DoubleInput();
     this.labelX36 = new DevComponents.DotNetBar.LabelX();
     this.labelX35 = new DevComponents.DotNetBar.LabelX();
     this.labelX32 = new DevComponents.DotNetBar.LabelX();
     this.groupBox7 = new System.Windows.Forms.GroupBox();
     this.DbIput_Lx4Item4DFMJ = new DevComponents.Editors.DoubleInput();
     this.labelX30 = new DevComponents.DotNetBar.LabelX();
     this.Tb_Lx4Item4YFMJ = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.labelX31 = new DevComponents.DotNetBar.LabelX();
     this.groupBox18 = new System.Windows.Forms.GroupBox();
     this.Rdo_Lx4Item4CK = new System.Windows.Forms.RadioButton();
     this.Rdo_Lx4Item4QF = new System.Windows.Forms.RadioButton();
     this.LX4tabItem4 = new DevComponents.DotNetBar.TabItem(this.components);
     this.tabControlPanel15 = new DevComponents.DotNetBar.TabControlPanel();
     this.groupBox17 = new System.Windows.Forms.GroupBox();
     this.DbInput_Lx4Item3SG = new DevComponents.Editors.DoubleInput();
     this.IntInput_Lx4Item3CS = new DevComponents.Editors.IntegerInput();
     this.Cbx_Lx4Item3YT = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.comboItem158 = new DevComponents.Editors.ComboItem();
     this.comboItem159 = new DevComponents.Editors.ComboItem();
     this.labelX27 = new DevComponents.DotNetBar.LabelX();
     this.labelX28 = new DevComponents.DotNetBar.LabelX();
     this.labelX29 = new DevComponents.DotNetBar.LabelX();
     this.groupBox4 = new System.Windows.Forms.GroupBox();
     this.groupBox14 = new System.Windows.Forms.GroupBox();
     this.DbInput_Lx4Item3HL = new DevComponents.Editors.DoubleInput();
     this.DbInput_Lx4Item3AQW = new DevComponents.Editors.DoubleInput();
     this.Cbx_Lx4Item3JGJ = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.comboItem156 = new DevComponents.Editors.ComboItem();
     this.comboItem157 = new DevComponents.Editors.ComboItem();
     this.labelX22 = new DevComponents.DotNetBar.LabelX();
     this.labelX25 = new DevComponents.DotNetBar.LabelX();
     this.labelX26 = new DevComponents.DotNetBar.LabelX();
     this.groupBox16 = new System.Windows.Forms.GroupBox();
     this.Cbx_Lx4Item3JSB = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.comboItem151 = new DevComponents.Editors.ComboItem();
     this.comboItem153 = new DevComponents.Editors.ComboItem();
     this.comboItem154 = new DevComponents.Editors.ComboItem();
     this.comboItem155 = new DevComponents.Editors.ComboItem();
     this.IntInput_Lx4Item3SPJ = new DevComponents.Editors.IntegerInput();
     this.IntInput_Lx4Item3JSB = new DevComponents.Editors.IntegerInput();
     this.labelX63 = new DevComponents.DotNetBar.LabelX();
     this.labelX34 = new DevComponents.DotNetBar.LabelX();
     this.labelX21 = new DevComponents.DotNetBar.LabelX();
     this.labelX20 = new DevComponents.DotNetBar.LabelX();
     this.labelX19 = new DevComponents.DotNetBar.LabelX();
     this.LX4tabItem3 = new DevComponents.DotNetBar.TabItem(this.components);
     this.tabControlPanel14 = new DevComponents.DotNetBar.TabControlPanel();
     this.groupBox3 = new System.Windows.Forms.GroupBox();
     this.DbInput_Lx4Item2SP = new DevComponents.Editors.DoubleInput();
     this.DbInput_Lx4Item2SX = new DevComponents.Editors.DoubleInput();
     this.labelX64 = new DevComponents.DotNetBar.LabelX();
     this.labelX65 = new DevComponents.DotNetBar.LabelX();
     this.Grp_Lx4Item2HF = new System.Windows.Forms.GroupBox();
     this.labelX12 = new DevComponents.DotNetBar.LabelX();
     this.DbInput_Lx4Item2DJ = new DevComponents.Editors.DoubleInput();
     this.Grp_Lx4Item2KJ = new System.Windows.Forms.GroupBox();
     this.Rdo_Lx4Item2S = new System.Windows.Forms.RadioButton();
     this.Rdo_Lx4Item2D = new System.Windows.Forms.RadioButton();
     this.Cbx_Lx4Item2LJFS = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.comboItem150 = new DevComponents.Editors.ComboItem();
     this.comboItem152 = new DevComponents.Editors.ComboItem();
     this.DbInput_Lx4Item2BJ = new DevComponents.Editors.DoubleInput();
     this.DbInput_Lx4Item2CD = new DevComponents.Editors.DoubleInput();
     this.labelX11 = new DevComponents.DotNetBar.LabelX();
     this.labelX9 = new DevComponents.DotNetBar.LabelX();
     this.labelX7 = new DevComponents.DotNetBar.LabelX();
     this.LX4tabItem2 = new DevComponents.DotNetBar.TabItem(this.components);
     this.tabControlPanel11 = new DevComponents.DotNetBar.TabControlPanel();
     this.Grp_Item11 = new System.Windows.Forms.GroupBox();
     this.Tb_Item11MGXGJL = new System.Windows.Forms.TextBox();
     this.Lb_Item11LBHNTQD = new DevComponents.DotNetBar.LabelX();
     this.Lb_Item11MGXGJL = new DevComponents.DotNetBar.LabelX();
     this.Cb_Item11ULSZJ = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.comboItem120 = new DevComponents.Editors.ComboItem();
     this.comboItem121 = new DevComponents.Editors.ComboItem();
     this.comboItem122 = new DevComponents.Editors.ComboItem();
     this.comboItem123 = new DevComponents.Editors.ComboItem();
     this.comboItem124 = new DevComponents.Editors.ComboItem();
     this.comboItem125 = new DevComponents.Editors.ComboItem();
     this.comboItem126 = new DevComponents.Editors.ComboItem();
     this.Lb_Item11ULSZJ = new DevComponents.DotNetBar.LabelX();
     this.Cb_Item11LBHNTQD = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.comboItem127 = new DevComponents.Editors.ComboItem();
     this.comboItem128 = new DevComponents.Editors.ComboItem();
     this.comboItem129 = new DevComponents.Editors.ComboItem();
     this.comboItem130 = new DevComponents.Editors.ComboItem();
     this.comboItem131 = new DevComponents.Editors.ComboItem();
     this.comboItem132 = new DevComponents.Editors.ComboItem();
     this.comboItem133 = new DevComponents.Editors.ComboItem();
     this.LXtabItem11 = new DevComponents.DotNetBar.TabItem(this.components);
     this.tabControlPanel10 = new DevComponents.DotNetBar.TabControlPanel();
     this.Grp_Item10 = new System.Windows.Forms.GroupBox();
     this.Lb_Item10GLXH = new DevComponents.DotNetBar.LabelX();
     this.Cb_Item10GLXH = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.comboItem76 = new DevComponents.Editors.ComboItem();
     this.comboItem77 = new DevComponents.Editors.ComboItem();
     this.comboItem78 = new DevComponents.Editors.ComboItem();
     this.comboItem79 = new DevComponents.Editors.ComboItem();
     this.comboItem80 = new DevComponents.Editors.ComboItem();
     this.comboItem81 = new DevComponents.Editors.ComboItem();
     this.comboItem82 = new DevComponents.Editors.ComboItem();
     this.comboItem83 = new DevComponents.Editors.ComboItem();
     this.comboItem84 = new DevComponents.Editors.ComboItem();
     this.comboItem85 = new DevComponents.Editors.ComboItem();
     this.comboItem86 = new DevComponents.Editors.ComboItem();
     this.comboItem87 = new DevComponents.Editors.ComboItem();
     this.comboItem88 = new DevComponents.Editors.ComboItem();
     this.comboItem89 = new DevComponents.Editors.ComboItem();
     this.comboItem90 = new DevComponents.Editors.ComboItem();
     this.comboItem91 = new DevComponents.Editors.ComboItem();
     this.comboItem92 = new DevComponents.Editors.ComboItem();
     this.comboItem93 = new DevComponents.Editors.ComboItem();
     this.comboItem94 = new DevComponents.Editors.ComboItem();
     this.comboItem95 = new DevComponents.Editors.ComboItem();
     this.comboItem96 = new DevComponents.Editors.ComboItem();
     this.comboItem97 = new DevComponents.Editors.ComboItem();
     this.comboItem98 = new DevComponents.Editors.ComboItem();
     this.comboItem99 = new DevComponents.Editors.ComboItem();
     this.comboItem100 = new DevComponents.Editors.ComboItem();
     this.comboItem101 = new DevComponents.Editors.ComboItem();
     this.comboItem102 = new DevComponents.Editors.ComboItem();
     this.comboItem103 = new DevComponents.Editors.ComboItem();
     this.comboItem104 = new DevComponents.Editors.ComboItem();
     this.comboItem105 = new DevComponents.Editors.ComboItem();
     this.comboItem106 = new DevComponents.Editors.ComboItem();
     this.comboItem107 = new DevComponents.Editors.ComboItem();
     this.comboItem108 = new DevComponents.Editors.ComboItem();
     this.comboItem109 = new DevComponents.Editors.ComboItem();
     this.comboItem110 = new DevComponents.Editors.ComboItem();
     this.comboItem111 = new DevComponents.Editors.ComboItem();
     this.comboItem112 = new DevComponents.Editors.ComboItem();
     this.comboItem113 = new DevComponents.Editors.ComboItem();
     this.comboItem114 = new DevComponents.Editors.ComboItem();
     this.comboItem115 = new DevComponents.Editors.ComboItem();
     this.comboItem116 = new DevComponents.Editors.ComboItem();
     this.comboItem117 = new DevComponents.Editors.ComboItem();
     this.Tb_Item10RXND = new System.Windows.Forms.TextBox();
     this.Lb_Item10RXND1 = new DevComponents.DotNetBar.LabelX();
     this.DbInput_Item10MGD = new DevComponents.Editors.DoubleInput();
     this.Cb_Item10RXND = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.comboItem118 = new DevComponents.Editors.ComboItem();
     this.comboItem119 = new DevComponents.Editors.ComboItem();
     this.Lb_Item10MGD = new DevComponents.DotNetBar.LabelX();
     this.Lb_Item10RXND2 = new DevComponents.DotNetBar.LabelX();
     this.DbInput_Item10XTD = new DevComponents.Editors.DoubleInput();
     this.Lb_Item10XTD = new DevComponents.DotNetBar.LabelX();
     this.LXtabItem10 = new DevComponents.DotNetBar.TabItem(this.components);
     this.tabControlPanel8 = new DevComponents.DotNetBar.TabControlPanel();
     this.Grp_Item8 = new System.Windows.Forms.GroupBox();
     this.Tb_Item8DFXS1 = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.Lb_Item8DFXS1 = new DevComponents.DotNetBar.LabelX();
     this.Grp_Item8FBS = new System.Windows.Forms.GroupBox();
     this.Grp_Item8ADFMJ = new System.Windows.Forms.GroupBox();
     this.DbIput_Item8DFMJ = new DevComponents.Editors.DoubleInput();
     this.labelX42 = new DevComponents.DotNetBar.LabelX();
     this.Tb_Item8YFMJ = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.Lb_Item8YFMJ = new DevComponents.DotNetBar.LabelX();
     this.Rdo_Item8ADFMJ = new System.Windows.Forms.RadioButton();
     this.Rdo_Item8QMM = new System.Windows.Forms.RadioButton();
     this.groupBox15 = new System.Windows.Forms.GroupBox();
     this.Rdo_Item8FBSK = new System.Windows.Forms.RadioButton();
     this.Rdo_Item8WMMW = new System.Windows.Forms.RadioButton();
     this.Rdo_Item8FBSQ = new System.Windows.Forms.RadioButton();
     this.LXtabItem8 = new DevComponents.DotNetBar.TabItem(this.components);
     this.tabControlPanel12 = new DevComponents.DotNetBar.TabControlPanel();
     this.Cb_Item3FS = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.comboItem11 = new DevComponents.Editors.ComboItem();
     this.comboItem12 = new DevComponents.Editors.ComboItem();
     this.comboItem13 = new DevComponents.Editors.ComboItem();
     this.comboItem14 = new DevComponents.Editors.ComboItem();
     this.comboItem134 = new DevComponents.Editors.ComboItem();
     this.Cb_Item3JJ = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.comboItem136 = new DevComponents.Editors.ComboItem();
     this.comboItem137 = new DevComponents.Editors.ComboItem();
     this.Lb_Item3FS = new DevComponents.DotNetBar.LabelX();
     this.Lb_Item3LQJJJ = new DevComponents.DotNetBar.LabelX();
     this.Grp_Item3 = new System.Windows.Forms.GroupBox();
     this.DbInput_Item3ZXL = new DevComponents.Editors.DoubleInput();
     this.Grp_Item3FSKJLJ = new System.Windows.Forms.GroupBox();
     this.radioButton2 = new System.Windows.Forms.RadioButton();
     this.radioButton1 = new System.Windows.Forms.RadioButton();
     this.Lb_Item3ZXL = new DevComponents.DotNetBar.LabelX();
     this.LXtabItem3 = new DevComponents.DotNetBar.TabItem(this.components);
     this.tabControlPanel18 = new DevComponents.DotNetBar.TabControlPanel();
     this.groupBox21 = new System.Windows.Forms.GroupBox();
     this.Grp_Lx5Item2HF = new System.Windows.Forms.GroupBox();
     this.labelX58 = new DevComponents.DotNetBar.LabelX();
     this.DbInput_Lx5Item2DJ = new DevComponents.Editors.DoubleInput();
     this.Grp_Lx5Item2RL = new System.Windows.Forms.GroupBox();
     this.labelX60 = new DevComponents.DotNetBar.LabelX();
     this.DbInput_Lx5Item2LJ = new DevComponents.Editors.DoubleInput();
     this.Grp_Lx5Item2KJ = new System.Windows.Forms.GroupBox();
     this.Rdo_Lx5Item2S = new System.Windows.Forms.RadioButton();
     this.Rdo_Lx5Item2D = new System.Windows.Forms.RadioButton();
     this.labelX54 = new DevComponents.DotNetBar.LabelX();
     this.DbInput_Lx5Item2KJ = new DevComponents.Editors.DoubleInput();
     this.Cbx_Lx5Item2LQJ = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.comboItem209 = new DevComponents.Editors.ComboItem();
     this.comboItem210 = new DevComponents.Editors.ComboItem();
     this.comboItem211 = new DevComponents.Editors.ComboItem();
     this.DbInput_Lx5Item2MJ = new DevComponents.Editors.DoubleInput();
     this.DbInput_Lx5Item2BJ = new DevComponents.Editors.DoubleInput();
     this.DbInput_Lx5Item2L0 = new DevComponents.Editors.DoubleInput();
     this.DbInput_Lx5Item2SP = new DevComponents.Editors.DoubleInput();
     this.DbInput_Lx5Item2SX = new DevComponents.Editors.DoubleInput();
     this.labelX59 = new DevComponents.DotNetBar.LabelX();
     this.labelX57 = new DevComponents.DotNetBar.LabelX();
     this.labelX56 = new DevComponents.DotNetBar.LabelX();
     this.labelX53 = new DevComponents.DotNetBar.LabelX();
     this.labelX61 = new DevComponents.DotNetBar.LabelX();
     this.labelX55 = new DevComponents.DotNetBar.LabelX();
     this.LX5tabItem2 = new DevComponents.DotNetBar.TabItem(this.components);
     this.tabControlPanel3 = new DevComponents.DotNetBar.TabControlPanel();
     this.groupBox5 = new System.Windows.Forms.GroupBox();
     this.groupBox6 = new System.Windows.Forms.GroupBox();
     this.checkBoxX4 = new DevComponents.DotNetBar.Controls.CheckBoxX();
     this.checkBoxX3 = new DevComponents.DotNetBar.Controls.CheckBoxX();
     this.labelX15 = new DevComponents.DotNetBar.LabelX();
     this.doubleInput8 = new DevComponents.Editors.DoubleInput();
     this.comboBoxEx3 = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.comboItem29 = new DevComponents.Editors.ComboItem();
     this.comboItem30 = new DevComponents.Editors.ComboItem();
     this.comboItem31 = new DevComponents.Editors.ComboItem();
     this.comboItem32 = new DevComponents.Editors.ComboItem();
     this.comboItem33 = new DevComponents.Editors.ComboItem();
     this.comboBoxEx4 = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.comboItem26 = new DevComponents.Editors.ComboItem();
     this.comboItem27 = new DevComponents.Editors.ComboItem();
     this.comboItem28 = new DevComponents.Editors.ComboItem();
     this.labelX14 = new DevComponents.DotNetBar.LabelX();
     this.labelX13 = new DevComponents.DotNetBar.LabelX();
     this.labelX16 = new DevComponents.DotNetBar.LabelX();
     this.panelEx1.SuspendLayout();
     this.panelEx2.SuspendLayout();
     this.panelEx3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.TabScaffloldPower)).BeginInit();
     this.TabScaffloldPower.SuspendLayout();
     this.tabControlPanel1.SuspendLayout();
     this.Grp_Item1.SuspendLayout();
     this.groupBox2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.DbInput_Item1SKJ)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DbInput_Item1DKJ)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DbInput_Item1LQJL)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DbInput_Item1DSGD)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DbInput_Item1BJ)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DbInput_Item1XHGWSCD)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DbInput_Item1LGHJ)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DbInput_Item1LGZJ)).BeginInit();
     this.tabControlPanel13.SuspendLayout();
     this.groupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.DbInput_Lx4Item1S)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DbInput_Lx4Item1D)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DbInput_Lx4Item1GD)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DbInput_Lx4Item1KJ)).BeginInit();
     this.groupBox10.SuspendLayout();
     this.tabControlPanel6.SuspendLayout();
     this.Grp_Item6.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.DbInput_Item6Uz)).BeginInit();
     this.Grp_Item6SF.SuspendLayout();
     this.groupBox9.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.DbInput_Item6SelfJBFY)).BeginInit();
     this.tabControlPanel5.SuspendLayout();
     this.Grp_Item5.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.DbInput_Item5HZBZ)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.IntInput_Item5PSCS)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.IntInput_Item5SGCS)).BeginInit();
     this.tabControlPanel4.SuspendLayout();
     this.groupBox11.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.IntInput_Item4PSCS)).BeginInit();
     this.tabControlPanel2.SuspendLayout();
     this.Grp_Item2.SuspendLayout();
     this.Grp_Item2DHG.SuspendLayout();
     this.Grp_Item2XHG.SuspendLayout();
     this.tabControlPanel9.SuspendLayout();
     this.Grp_Item9.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.DbIput_Item9DBK)).BeginInit();
     this.tabControlPanel17.SuspendLayout();
     this.groupBox8.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.IntInput_Lx5Item1NO)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.IntInput_Lx5Item1LDX)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.IntInput_Lx5Item1SPX)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DbInput_Lx5Item2GD)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DbInput_Lx5Item1BJ)).BeginInit();
     this.tabControlPanel16.SuspendLayout();
     this.groupBox19.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.DbInput_Lx4Item4TZXS)).BeginInit();
     this.groupBox20.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.DbIput_Lx4Item4DBK)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DbIput_Lx4Item4DBC)).BeginInit();
     this.groupBox7.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.DbIput_Lx4Item4DFMJ)).BeginInit();
     this.groupBox18.SuspendLayout();
     this.tabControlPanel15.SuspendLayout();
     this.groupBox17.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.DbInput_Lx4Item3SG)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.IntInput_Lx4Item3CS)).BeginInit();
     this.groupBox4.SuspendLayout();
     this.groupBox14.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.DbInput_Lx4Item3HL)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DbInput_Lx4Item3AQW)).BeginInit();
     this.groupBox16.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.IntInput_Lx4Item3SPJ)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.IntInput_Lx4Item3JSB)).BeginInit();
     this.tabControlPanel14.SuspendLayout();
     this.groupBox3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.DbInput_Lx4Item2SP)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DbInput_Lx4Item2SX)).BeginInit();
     this.Grp_Lx4Item2HF.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.DbInput_Lx4Item2DJ)).BeginInit();
     this.Grp_Lx4Item2KJ.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.DbInput_Lx4Item2BJ)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DbInput_Lx4Item2CD)).BeginInit();
     this.tabControlPanel11.SuspendLayout();
     this.Grp_Item11.SuspendLayout();
     this.tabControlPanel10.SuspendLayout();
     this.Grp_Item10.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.DbInput_Item10MGD)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DbInput_Item10XTD)).BeginInit();
     this.tabControlPanel8.SuspendLayout();
     this.Grp_Item8.SuspendLayout();
     this.Grp_Item8FBS.SuspendLayout();
     this.Grp_Item8ADFMJ.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.DbIput_Item8DFMJ)).BeginInit();
     this.groupBox15.SuspendLayout();
     this.tabControlPanel12.SuspendLayout();
     this.Grp_Item3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.DbInput_Item3ZXL)).BeginInit();
     this.Grp_Item3FSKJLJ.SuspendLayout();
     this.tabControlPanel18.SuspendLayout();
     this.groupBox21.SuspendLayout();
     this.Grp_Lx5Item2HF.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.DbInput_Lx5Item2DJ)).BeginInit();
     this.Grp_Lx5Item2RL.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.DbInput_Lx5Item2LJ)).BeginInit();
     this.Grp_Lx5Item2KJ.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.DbInput_Lx5Item2KJ)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DbInput_Lx5Item2MJ)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DbInput_Lx5Item2BJ)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DbInput_Lx5Item2L0)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DbInput_Lx5Item2SP)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DbInput_Lx5Item2SX)).BeginInit();
     this.tabControlPanel3.SuspendLayout();
     this.groupBox5.SuspendLayout();
     this.groupBox6.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.doubleInput8)).BeginInit();
     this.SuspendLayout();
     //
     // dockContainerItem1
     //
     this.dockContainerItem1.Name = "dockContainerItem1";
     this.dockContainerItem1.Text = "dockContainerItem1";
     //
     // dockContainerItem2
     //
     this.dockContainerItem2.Name = "dockContainerItem2";
     this.dockContainerItem2.Text = "dockContainerItem2";
     //
     // dockContainerItem3
     //
     this.dockContainerItem3.Name = "dockContainerItem3";
     this.dockContainerItem3.Text = "dockContainerItem3";
     //
     // superTabItem2
     //
     this.superTabItem2.AttachedControl = this.superTabControlPanel2;
     this.superTabItem2.GlobalItem = false;
     this.superTabItem2.Name = "superTabItem2";
     this.superTabItem2.Text = "�͸�������ּ�";
     //
     // superTabControlPanel2
     //
     this.superTabControlPanel2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.superTabControlPanel2.Location = new System.Drawing.Point(0, 28);
     this.superTabControlPanel2.Name = "superTabControlPanel2";
     this.superTabControlPanel2.Size = new System.Drawing.Size(761, 393);
     this.superTabControlPanel2.TabIndex = 0;
     this.superTabControlPanel2.TabItem = this.superTabItem2;
     //
     // comboItem1
     //
     this.comboItem1.Text = "��ص��Ž��ּ�";
     //
     // comboItem2
     //
     this.comboItem2.Text = "�͸�������ּ�";
     //
     // comboItem3
     //
     this.comboItem3.Text = "��ص��Ž��ּ�";
     //
     // panelEx1
     //
     this.panelEx1.CanvasColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
     this.panelEx1.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.panelEx1.Controls.Add(this.BtnSubmit);
     this.panelEx1.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.panelEx1.Location = new System.Drawing.Point(0, 450);
     this.panelEx1.Name = "panelEx1";
     this.panelEx1.Size = new System.Drawing.Size(638, 32);
     this.panelEx1.Style.Alignment = System.Drawing.StringAlignment.Center;
     this.panelEx1.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.panelEx1.Style.BackColor2.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.panelEx1.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.panelEx1.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.panelEx1.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.panelEx1.Style.GradientAngle = 90;
     this.panelEx1.TabIndex = 20;
     //
     // BtnSubmit
     //
     this.BtnSubmit.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.BtnSubmit.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.BtnSubmit.Dock = System.Windows.Forms.DockStyle.Right;
     this.BtnSubmit.Location = new System.Drawing.Point(563, 0);
     this.BtnSubmit.Name = "BtnSubmit";
     this.BtnSubmit.Size = new System.Drawing.Size(75, 32);
     this.BtnSubmit.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.BtnSubmit.TabIndex = 42;
     this.BtnSubmit.Text = "ȷ ��";
     this.BtnSubmit.Click += new System.EventHandler(this.BtnSubmit_Click);
     //
     // panelEx2
     //
     this.panelEx2.CanvasColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
     this.panelEx2.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.panelEx2.Controls.Add(this.LbScaffoldType);
     this.panelEx2.Controls.Add(this.CbxScaffoldType);
     this.panelEx2.Dock = System.Windows.Forms.DockStyle.Top;
     this.panelEx2.Location = new System.Drawing.Point(0, 0);
     this.panelEx2.Name = "panelEx2";
     this.panelEx2.Size = new System.Drawing.Size(638, 41);
     this.panelEx2.Style.Alignment = System.Drawing.StringAlignment.Center;
     this.panelEx2.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.panelEx2.Style.BackColor2.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.panelEx2.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.panelEx2.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.panelEx2.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.panelEx2.Style.GradientAngle = 90;
     this.panelEx2.TabIndex = 22;
     //
     // LbScaffoldType
     //
     this.LbScaffoldType.AutoSize = true;
     //
     //
     //
     this.LbScaffoldType.BackgroundStyle.Class = "";
     this.LbScaffoldType.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.LbScaffoldType.Location = new System.Drawing.Point(18, 9);
     this.LbScaffoldType.Name = "LbScaffoldType";
     this.LbScaffoldType.Size = new System.Drawing.Size(105, 18);
     this.LbScaffoldType.TabIndex = 40;
     this.LbScaffoldType.Text = "ѡ����ּ����ͣ�";
     //
     // CbxScaffoldType
     //
     this.CbxScaffoldType.DisplayMember = "Text";
     this.CbxScaffoldType.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.CbxScaffoldType.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.CbxScaffoldType.FormattingEnabled = true;
     this.CbxScaffoldType.ItemHeight = 15;
     this.CbxScaffoldType.Items.AddRange(new object[] {
     this.comboItem72,
     this.comboItem73,
     this.comboItem74,
     this.comboItem66,
     this.comboItem70});
     this.CbxScaffoldType.Location = new System.Drawing.Point(125, 9);
     this.CbxScaffoldType.Name = "CbxScaffoldType";
     this.CbxScaffoldType.Size = new System.Drawing.Size(139, 21);
     this.CbxScaffoldType.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.CbxScaffoldType.TabIndex = 41;
     this.CbxScaffoldType.SelectedIndexChanged += new System.EventHandler(this.CbxScaffoldType_SelectedIndexChanged);
     //
     // comboItem72
     //
     this.comboItem72.Text = "���˫�Ž��ּ�";
     //
     // comboItem73
     //
     this.comboItem73.Text = "�͸�������ּ�";
     //
     // comboItem74
     //
     this.comboItem74.Text = "��ص��Ž��ּ�";
     //
     // comboItem66
     //
     this.comboItem66.Text = "��ʽ�ֹܽ��ּ�";
     //
     // comboItem70
     //
     this.comboItem70.Text = "���ʽ���ּ�";
     //
     // buttonItem1
     //
     this.buttonItem1.Name = "buttonItem1";
     this.buttonItem1.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.buttonItem2});
     this.buttonItem1.Text = "buttonItem1";
     //
     // buttonItem2
     //
     this.buttonItem2.Name = "buttonItem2";
     this.buttonItem2.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.buttonItem3,
     this.buttonItem4});
     this.buttonItem2.Text = "buttonItem2";
     //
     // buttonItem3
     //
     this.buttonItem3.Name = "buttonItem3";
     this.buttonItem3.Text = "buttonItem3";
     //
     // buttonItem4
     //
     this.buttonItem4.Name = "buttonItem4";
     this.buttonItem4.Text = "buttonItem4";
     //
     // panelEx3
     //
     this.panelEx3.CanvasColor = System.Drawing.SystemColors.Control;
     this.panelEx3.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.panelEx3.Controls.Add(this.TabScaffloldPower);
     this.panelEx3.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panelEx3.Location = new System.Drawing.Point(0, 41);
     this.panelEx3.Name = "panelEx3";
     this.panelEx3.Size = new System.Drawing.Size(638, 409);
     this.panelEx3.Style.Alignment = System.Drawing.StringAlignment.Center;
     this.panelEx3.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.panelEx3.Style.BackColor2.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.panelEx3.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.panelEx3.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.panelEx3.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.panelEx3.Style.GradientAngle = 90;
     this.panelEx3.TabIndex = 23;
     //
     // TabScaffloldPower
     //
     this.TabScaffloldPower.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
     this.TabScaffloldPower.CanReorderTabs = true;
     this.TabScaffloldPower.Controls.Add(this.tabControlPanel1);
     this.TabScaffloldPower.Controls.Add(this.tabControlPanel13);
     this.TabScaffloldPower.Controls.Add(this.tabControlPanel6);
     this.TabScaffloldPower.Controls.Add(this.tabControlPanel5);
     this.TabScaffloldPower.Controls.Add(this.tabControlPanel4);
     this.TabScaffloldPower.Controls.Add(this.tabControlPanel2);
     this.TabScaffloldPower.Controls.Add(this.tabControlPanel9);
     this.TabScaffloldPower.Controls.Add(this.tabControlPanel17);
     this.TabScaffloldPower.Controls.Add(this.tabControlPanel16);
     this.TabScaffloldPower.Controls.Add(this.tabControlPanel15);
     this.TabScaffloldPower.Controls.Add(this.tabControlPanel14);
     this.TabScaffloldPower.Controls.Add(this.tabControlPanel11);
     this.TabScaffloldPower.Controls.Add(this.tabControlPanel10);
     this.TabScaffloldPower.Controls.Add(this.tabControlPanel8);
     this.TabScaffloldPower.Controls.Add(this.tabControlPanel12);
     this.TabScaffloldPower.Controls.Add(this.tabControlPanel18);
     this.TabScaffloldPower.Controls.Add(this.tabControlPanel3);
     this.TabScaffloldPower.Dock = System.Windows.Forms.DockStyle.Fill;
     this.TabScaffloldPower.Location = new System.Drawing.Point(0, 0);
     this.TabScaffloldPower.Name = "TabScaffloldPower";
     this.TabScaffloldPower.SelectedTabFont = new System.Drawing.Font("����", 9F, System.Drawing.FontStyle.Bold);
     this.TabScaffloldPower.SelectedTabIndex = 0;
     this.TabScaffloldPower.Size = new System.Drawing.Size(638, 409);
     this.TabScaffloldPower.Style = DevComponents.DotNetBar.eTabStripStyle.Office2007Document;
     this.TabScaffloldPower.TabIndex = 46;
     this.TabScaffloldPower.TabLayoutType = DevComponents.DotNetBar.eTabLayoutType.MultilineNoNavigationBox;
     this.TabScaffloldPower.Tabs.Add(this.LXtabItem1);
     this.TabScaffloldPower.Tabs.Add(this.LXtabItem2);
     this.TabScaffloldPower.Tabs.Add(this.LXtabItem3);
     this.TabScaffloldPower.Tabs.Add(this.LXtabItem4);
     this.TabScaffloldPower.Tabs.Add(this.LXtabItem5);
     this.TabScaffloldPower.Tabs.Add(this.LXtabItem6);
     this.TabScaffloldPower.Tabs.Add(this.LXtabItem8);
     this.TabScaffloldPower.Tabs.Add(this.LXtabItem9);
     this.TabScaffloldPower.Tabs.Add(this.LXtabItem10);
     this.TabScaffloldPower.Tabs.Add(this.LXtabItem11);
     this.TabScaffloldPower.Tabs.Add(this.LX4tabItem1);
     this.TabScaffloldPower.Tabs.Add(this.LX4tabItem2);
     this.TabScaffloldPower.Tabs.Add(this.LX4tabItem3);
     this.TabScaffloldPower.Tabs.Add(this.LX4tabItem4);
     this.TabScaffloldPower.Tabs.Add(this.LX5tabItem1);
     this.TabScaffloldPower.Tabs.Add(this.LX5tabItem2);
     this.TabScaffloldPower.Text = "��ǽ������";
     //
     // tabControlPanel1
     //
     this.tabControlPanel1.Controls.Add(this.Grp_Item1);
     this.tabControlPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabControlPanel1.Location = new System.Drawing.Point(0, 69);
     this.tabControlPanel1.Name = "tabControlPanel1";
     this.tabControlPanel1.Padding = new System.Windows.Forms.Padding(1);
     this.tabControlPanel1.Size = new System.Drawing.Size(638, 340);
     this.tabControlPanel1.Style.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(253)))), ((int)(((byte)(253)))), ((int)(((byte)(254)))));
     this.tabControlPanel1.Style.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(157)))), ((int)(((byte)(188)))), ((int)(((byte)(227)))));
     this.tabControlPanel1.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.tabControlPanel1.Style.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(146)))), ((int)(((byte)(165)))), ((int)(((byte)(199)))));
     this.tabControlPanel1.Style.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Right)
                 | DevComponents.DotNetBar.eBorderSide.Bottom)));
     this.tabControlPanel1.Style.GradientAngle = 90;
     this.tabControlPanel1.TabIndex = 1;
     this.tabControlPanel1.TabItem = this.LXtabItem1;
     //
     // Grp_Item1
     //
     this.Grp_Item1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
     this.Grp_Item1.Controls.Add(this.groupBox2);
     this.Grp_Item1.Controls.Add(this.labelX1);
     this.Grp_Item1.Controls.Add(this.labelX8);
     this.Grp_Item1.Controls.Add(this.DbInput_Item1SKJ);
     this.Grp_Item1.Controls.Add(this.DbInput_Item1DKJ);
     this.Grp_Item1.Controls.Add(this.Lb_Item17);
     this.Grp_Item1.Controls.Add(this.DbInput_Item1LQJL);
     this.Grp_Item1.Controls.Add(this.Lb_Item1LQJL);
     this.Grp_Item1.Controls.Add(this.DbInput_Item1DSGD);
     this.Grp_Item1.Controls.Add(this.Lb_Item1DSGD);
     this.Grp_Item1.Controls.Add(this.DbInput_Item1BJ);
     this.Grp_Item1.Controls.Add(this.Lb_Item1BJ);
     this.Grp_Item1.Controls.Add(this.DbInput_Item1XHGWSCD);
     this.Grp_Item1.Controls.Add(this.Lb_Item1LGZJ);
     this.Grp_Item1.Controls.Add(this.DbInput_Item1LGHJ);
     this.Grp_Item1.Controls.Add(this.DbInput_Item1LGZJ);
     this.Grp_Item1.Controls.Add(this.Lb_Item1LGHJ);
     this.Grp_Item1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.Grp_Item1.Location = new System.Drawing.Point(1, 1);
     this.Grp_Item1.Name = "Grp_Item1";
     this.Grp_Item1.Size = new System.Drawing.Size(636, 338);
     this.Grp_Item1.TabIndex = 4;
     this.Grp_Item1.TabStop = false;
     this.Grp_Item1.Text = "ѡ�����";
     //
     // groupBox2
     //
     this.groupBox2.Controls.Add(this.Tb_Item1GGWJ);
     this.groupBox2.Controls.Add(this.Tb_Item1BH);
     this.groupBox2.Controls.Add(this.Lb_Item1BH);
     this.groupBox2.Controls.Add(this.Lb_Item1GGWJ);
     this.groupBox2.Location = new System.Drawing.Point(3, 209);
     this.groupBox2.Name = "groupBox2";
     this.groupBox2.Size = new System.Drawing.Size(620, 115);
     this.groupBox2.TabIndex = 19;
     this.groupBox2.TabStop = false;
     this.groupBox2.Text = "�̶�����";
     //
     // Tb_Item1GGWJ
     //
     this.Tb_Item1GGWJ.Location = new System.Drawing.Point(135, 58);
     this.Tb_Item1GGWJ.Name = "Tb_Item1GGWJ";
     this.Tb_Item1GGWJ.ReadOnly = true;
     this.Tb_Item1GGWJ.Size = new System.Drawing.Size(86, 21);
     this.Tb_Item1GGWJ.TabIndex = 20;
     this.Tb_Item1GGWJ.Text = "48.3";
     this.Tb_Item1GGWJ.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     //
     // Tb_Item1BH
     //
     this.Tb_Item1BH.Location = new System.Drawing.Point(135, 33);
     this.Tb_Item1BH.Name = "Tb_Item1BH";
     this.Tb_Item1BH.ReadOnly = true;
     this.Tb_Item1BH.Size = new System.Drawing.Size(86, 21);
     this.Tb_Item1BH.TabIndex = 19;
     this.Tb_Item1BH.Text = "3.6";
     this.Tb_Item1BH.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     //
     // Lb_Item1BH
     //
     //
     //
     //
     this.Lb_Item1BH.BackgroundStyle.Class = "";
     this.Lb_Item1BH.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.Lb_Item1BH.Location = new System.Drawing.Point(54, 31);
     this.Lb_Item1BH.Name = "Lb_Item1BH";
     this.Lb_Item1BH.Size = new System.Drawing.Size(75, 21);
     this.Lb_Item1BH.TabIndex = 18;
     this.Lb_Item1BH.Text = " �ں�mm��";
     //
     // Lb_Item1GGWJ
     //
     //
     //
     //
     this.Lb_Item1GGWJ.BackgroundStyle.Class = "";
     this.Lb_Item1GGWJ.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.Lb_Item1GGWJ.Location = new System.Drawing.Point(37, 59);
     this.Lb_Item1GGWJ.Name = "Lb_Item1GGWJ";
     this.Lb_Item1GGWJ.Size = new System.Drawing.Size(92, 20);
     this.Lb_Item1GGWJ.TabIndex = 17;
     this.Lb_Item1GGWJ.Text = "�ֹ��⾶��mm��";
     //
     // labelX1
     //
     //
     //
     //
     this.labelX1.BackgroundStyle.Class = "";
     this.labelX1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX1.Location = new System.Drawing.Point(298, 36);
     this.labelX1.Name = "labelX1";
     this.labelX1.Size = new System.Drawing.Size(162, 20);
     this.labelX1.TabIndex = 20;
     this.labelX1.Text = "С��˼������쳤��a1(m)";
     //
     // labelX8
     //
     //
     //
     //
     this.labelX8.BackgroundStyle.Class = "";
     this.labelX8.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX8.Location = new System.Drawing.Point(308, 87);
     this.labelX8.Name = "labelX8";
     this.labelX8.Size = new System.Drawing.Size(117, 20);
     this.labelX8.TabIndex = 16;
     this.labelX8.Text = " ˫�ۼ�����������";
     //
     // DbInput_Item1SKJ
     //
     //
     //
     //
     this.DbInput_Item1SKJ.BackgroundStyle.Class = "DateTimeInputBackground";
     this.DbInput_Item1SKJ.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.DbInput_Item1SKJ.ButtonFreeText.Shortcut = DevComponents.DotNetBar.eShortcut.F2;
     this.DbInput_Item1SKJ.Increment = 1;
     this.DbInput_Item1SKJ.Location = new System.Drawing.Point(463, 87);
     this.DbInput_Item1SKJ.MaxValue = 16;
     this.DbInput_Item1SKJ.MinValue = 0;
     this.DbInput_Item1SKJ.Name = "DbInput_Item1SKJ";
     this.DbInput_Item1SKJ.ShowUpDown = true;
     this.DbInput_Item1SKJ.Size = new System.Drawing.Size(69, 21);
     this.DbInput_Item1SKJ.TabIndex = 15;
     this.DbInput_Item1SKJ.Value = 12;
     //
     // DbInput_Item1DKJ
     //
     //
     //
     //
     this.DbInput_Item1DKJ.BackgroundStyle.Class = "DateTimeInputBackground";
     this.DbInput_Item1DKJ.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.DbInput_Item1DKJ.ButtonFreeText.Shortcut = DevComponents.DotNetBar.eShortcut.F2;
     this.DbInput_Item1DKJ.Increment = 1;
     this.DbInput_Item1DKJ.Location = new System.Drawing.Point(463, 60);
     this.DbInput_Item1DKJ.MaxValue = 8;
     this.DbInput_Item1DKJ.MinValue = 0;
     this.DbInput_Item1DKJ.Name = "DbInput_Item1DKJ";
     this.DbInput_Item1DKJ.ShowUpDown = true;
     this.DbInput_Item1DKJ.Size = new System.Drawing.Size(69, 21);
     this.DbInput_Item1DKJ.TabIndex = 13;
     this.DbInput_Item1DKJ.Value = 8;
     //
     // Lb_Item17
     //
     //
     //
     //
     this.Lb_Item17.BackgroundStyle.Class = "";
     this.Lb_Item17.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.Lb_Item17.Location = new System.Drawing.Point(308, 61);
     this.Lb_Item17.Name = "Lb_Item17";
     this.Lb_Item17.Size = new System.Drawing.Size(117, 20);
     this.Lb_Item17.TabIndex = 12;
     this.Lb_Item17.Text = " ���ۼ�����������";
     //
     // DbInput_Item1LQJL
     //
     //
     //
     //
     this.DbInput_Item1LQJL.BackgroundStyle.Class = "DateTimeInputBackground";
     this.DbInput_Item1LQJL.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.DbInput_Item1LQJL.ButtonFreeText.Shortcut = DevComponents.DotNetBar.eShortcut.F2;
     this.DbInput_Item1LQJL.Increment = 0.1;
     this.DbInput_Item1LQJL.Location = new System.Drawing.Point(158, 144);
     this.DbInput_Item1LQJL.MaxValue = 5;
     this.DbInput_Item1LQJL.MinValue = 0.1;
     this.DbInput_Item1LQJL.Name = "DbInput_Item1LQJL";
     this.DbInput_Item1LQJL.ShowUpDown = true;
     this.DbInput_Item1LQJL.Size = new System.Drawing.Size(63, 21);
     this.DbInput_Item1LQJL.TabIndex = 9;
     this.DbInput_Item1LQJL.Value = 0.3;
     //
     // Lb_Item1LQJL
     //
     //
     //
     //
     this.Lb_Item1LQJL.BackgroundStyle.Class = "";
     this.Lb_Item1LQJL.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.Lb_Item1LQJL.Location = new System.Drawing.Point(2, 145);
     this.Lb_Item1LQJL.Name = "Lb_Item1LQJL";
     this.Lb_Item1LQJL.Size = new System.Drawing.Size(152, 20);
     this.Lb_Item1LQJL.TabIndex = 8;
     this.Lb_Item1LQJL.Text = "���ּ����ŵ���ǽ����(m)";
     //
     // DbInput_Item1DSGD
     //
     //
     //
     //
     this.DbInput_Item1DSGD.BackgroundStyle.Class = "DateTimeInputBackground";
     this.DbInput_Item1DSGD.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.DbInput_Item1DSGD.ButtonFreeText.Shortcut = DevComponents.DotNetBar.eShortcut.F2;
     this.DbInput_Item1DSGD.Increment = 1;
     this.DbInput_Item1DSGD.Location = new System.Drawing.Point(158, 117);
     this.DbInput_Item1DSGD.MaxValue = 50;
     this.DbInput_Item1DSGD.MinValue = 0;
     this.DbInput_Item1DSGD.Name = "DbInput_Item1DSGD";
     this.DbInput_Item1DSGD.ShowUpDown = true;
     this.DbInput_Item1DSGD.Size = new System.Drawing.Size(62, 21);
     this.DbInput_Item1DSGD.TabIndex = 7;
     this.DbInput_Item1DSGD.Value = 24;
     //
     // Lb_Item1DSGD
     //
     //
     //
     //
     this.Lb_Item1DSGD.BackgroundStyle.Class = "";
     this.Lb_Item1DSGD.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.Lb_Item1DSGD.Location = new System.Drawing.Point(33, 118);
     this.Lb_Item1DSGD.Name = "Lb_Item1DSGD";
     this.Lb_Item1DSGD.Size = new System.Drawing.Size(121, 20);
     this.Lb_Item1DSGD.TabIndex = 6;
     this.Lb_Item1DSGD.Text = "���ּܴ���߶�H(m)";
     //
     // DbInput_Item1BJ
     //
     //
     //
     //
     this.DbInput_Item1BJ.BackgroundStyle.Class = "DateTimeInputBackground";
     this.DbInput_Item1BJ.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.DbInput_Item1BJ.ButtonFreeText.Shortcut = DevComponents.DotNetBar.eShortcut.F2;
     this.DbInput_Item1BJ.Increment = 1;
     this.DbInput_Item1BJ.Location = new System.Drawing.Point(159, 90);
     this.DbInput_Item1BJ.MaxValue = 2;
     this.DbInput_Item1BJ.MinValue = 1.2;
     this.DbInput_Item1BJ.Name = "DbInput_Item1BJ";
     this.DbInput_Item1BJ.ShowUpDown = true;
     this.DbInput_Item1BJ.Size = new System.Drawing.Size(61, 21);
     this.DbInput_Item1BJ.TabIndex = 5;
     this.DbInput_Item1BJ.Value = 1.8;
     //
     // Lb_Item1BJ
     //
     //
     //
     //
     this.Lb_Item1BJ.BackgroundStyle.Class = "";
     this.Lb_Item1BJ.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.Lb_Item1BJ.Location = new System.Drawing.Point(95, 91);
     this.Lb_Item1BJ.Name = "Lb_Item1BJ";
     this.Lb_Item1BJ.Size = new System.Drawing.Size(59, 20);
     this.Lb_Item1BJ.TabIndex = 4;
     this.Lb_Item1BJ.Text = "����h(m)";
     //
     // DbInput_Item1XHGWSCD
     //
     //
     //
     //
     this.DbInput_Item1XHGWSCD.BackgroundStyle.Class = "DateTimeInputBackground";
     this.DbInput_Item1XHGWSCD.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.DbInput_Item1XHGWSCD.ButtonFreeText.Shortcut = DevComponents.DotNetBar.eShortcut.F2;
     this.DbInput_Item1XHGWSCD.Increment = 0.1;
     this.DbInput_Item1XHGWSCD.Location = new System.Drawing.Point(463, 36);
     this.DbInput_Item1XHGWSCD.MaxValue = 0.5;
     this.DbInput_Item1XHGWSCD.MinValue = 0;
     this.DbInput_Item1XHGWSCD.Name = "DbInput_Item1XHGWSCD";
     this.DbInput_Item1XHGWSCD.ShowUpDown = true;
     this.DbInput_Item1XHGWSCD.Size = new System.Drawing.Size(69, 21);
     this.DbInput_Item1XHGWSCD.TabIndex = 3;
     this.DbInput_Item1XHGWSCD.Value = 0.2;
     //
     // Lb_Item1LGZJ
     //
     //
     //
     //
     this.Lb_Item1LGZJ.BackgroundStyle.Class = "";
     this.Lb_Item1LGZJ.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.Lb_Item1LGZJ.Location = new System.Drawing.Point(66, 39);
     this.Lb_Item1LGZJ.Name = "Lb_Item1LGZJ";
     this.Lb_Item1LGZJ.Size = new System.Drawing.Size(88, 20);
     this.Lb_Item1LGZJ.TabIndex = 0;
     this.Lb_Item1LGZJ.Text = "�����ݾ�la(m)";
     //
     // DbInput_Item1LGHJ
     //
     //
     //
     //
     this.DbInput_Item1LGHJ.BackgroundStyle.Class = "DateTimeInputBackground";
     this.DbInput_Item1LGHJ.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.DbInput_Item1LGHJ.ButtonFreeText.Shortcut = DevComponents.DotNetBar.eShortcut.F2;
     this.DbInput_Item1LGHJ.Increment = 1;
     this.DbInput_Item1LGHJ.Location = new System.Drawing.Point(159, 64);
     this.DbInput_Item1LGHJ.MaxValue = 1.3;
     this.DbInput_Item1LGHJ.MinValue = 0.5;
     this.DbInput_Item1LGHJ.Name = "DbInput_Item1LGHJ";
     this.DbInput_Item1LGHJ.ShowUpDown = true;
     this.DbInput_Item1LGHJ.Size = new System.Drawing.Size(61, 21);
     this.DbInput_Item1LGHJ.TabIndex = 3;
     this.DbInput_Item1LGHJ.Value = 1.05;
     //
     // DbInput_Item1LGZJ
     //
     //
     //
     //
     this.DbInput_Item1LGZJ.BackgroundStyle.Class = "DateTimeInputBackground";
     this.DbInput_Item1LGZJ.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.DbInput_Item1LGZJ.ButtonFreeText.Shortcut = DevComponents.DotNetBar.eShortcut.F2;
     this.DbInput_Item1LGZJ.Increment = 0.1;
     this.DbInput_Item1LGZJ.Location = new System.Drawing.Point(159, 38);
     this.DbInput_Item1LGZJ.MaxValue = 1.8;
     this.DbInput_Item1LGZJ.MinValue = 1.2;
     this.DbInput_Item1LGZJ.Name = "DbInput_Item1LGZJ";
     this.DbInput_Item1LGZJ.ShowUpDown = true;
     this.DbInput_Item1LGZJ.Size = new System.Drawing.Size(61, 21);
     this.DbInput_Item1LGZJ.TabIndex = 1;
     this.DbInput_Item1LGZJ.Value = 1.5;
     //
     // Lb_Item1LGHJ
     //
     //
     //
     //
     this.Lb_Item1LGHJ.BackgroundStyle.Class = "";
     this.Lb_Item1LGHJ.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.Lb_Item1LGHJ.Location = new System.Drawing.Point(66, 64);
     this.Lb_Item1LGHJ.Name = "Lb_Item1LGHJ";
     this.Lb_Item1LGHJ.Size = new System.Drawing.Size(88, 20);
     this.Lb_Item1LGHJ.TabIndex = 2;
     this.Lb_Item1LGHJ.Text = "���˺��lb(m)";
     //
     // LXtabItem1
     //
     this.LXtabItem1.AttachedControl = this.tabControlPanel1;
     this.LXtabItem1.Name = "LXtabItem1";
     this.LXtabItem1.Text = " ���ּܴ������";
     //
     // tabControlPanel13
     //
     this.tabControlPanel13.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.tabControlPanel13.Controls.Add(this.groupBox1);
     this.tabControlPanel13.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabControlPanel13.Location = new System.Drawing.Point(0, 69);
     this.tabControlPanel13.Name = "tabControlPanel13";
     this.tabControlPanel13.Padding = new System.Windows.Forms.Padding(1);
     this.tabControlPanel13.Size = new System.Drawing.Size(638, 340);
     this.tabControlPanel13.Style.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(253)))), ((int)(((byte)(253)))), ((int)(((byte)(254)))));
     this.tabControlPanel13.Style.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(157)))), ((int)(((byte)(188)))), ((int)(((byte)(227)))));
     this.tabControlPanel13.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.tabControlPanel13.Style.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(146)))), ((int)(((byte)(165)))), ((int)(((byte)(199)))));
     this.tabControlPanel13.Style.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Right)
                 | DevComponents.DotNetBar.eBorderSide.Bottom)));
     this.tabControlPanel13.Style.GradientAngle = 90;
     this.tabControlPanel13.TabIndex = 14;
     this.tabControlPanel13.TabItem = this.LX4tabItem1;
     //
     // groupBox1
     //
     this.groupBox1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
     this.groupBox1.Controls.Add(this.DbInput_Lx4Item1S);
     this.groupBox1.Controls.Add(this.DbInput_Lx4Item1D);
     this.groupBox1.Controls.Add(this.DbInput_Lx4Item1GD);
     this.groupBox1.Controls.Add(this.DbInput_Lx4Item1KJ);
     this.groupBox1.Controls.Add(this.Tb_Lx4Item1BJ);
     this.groupBox1.Controls.Add(this.labelX2);
     this.groupBox1.Controls.Add(this.labelX3);
     this.groupBox1.Controls.Add(this.labelX4);
     this.groupBox1.Controls.Add(this.labelX5);
     this.groupBox1.Controls.Add(this.labelX6);
     this.groupBox1.Controls.Add(this.groupBox10);
     this.groupBox1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.groupBox1.Location = new System.Drawing.Point(1, 1);
     this.groupBox1.Name = "groupBox1";
     this.groupBox1.Size = new System.Drawing.Size(636, 338);
     this.groupBox1.TabIndex = 1;
     this.groupBox1.TabStop = false;
     //
     // DbInput_Lx4Item1S
     //
     //
     //
     //
     this.DbInput_Lx4Item1S.BackgroundStyle.Class = "DateTimeInputBackground";
     this.DbInput_Lx4Item1S.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.DbInput_Lx4Item1S.ButtonFreeText.Shortcut = DevComponents.DotNetBar.eShortcut.F2;
     this.DbInput_Lx4Item1S.Increment = 1;
     this.DbInput_Lx4Item1S.Location = new System.Drawing.Point(374, 217);
     this.DbInput_Lx4Item1S.MaxValue = 16;
     this.DbInput_Lx4Item1S.MinValue = 0;
     this.DbInput_Lx4Item1S.Name = "DbInput_Lx4Item1S";
     this.DbInput_Lx4Item1S.ShowUpDown = true;
     this.DbInput_Lx4Item1S.Size = new System.Drawing.Size(80, 21);
     this.DbInput_Lx4Item1S.TabIndex = 26;
     this.DbInput_Lx4Item1S.Value = 12;
     //
     // DbInput_Lx4Item1D
     //
     //
     //
     //
     this.DbInput_Lx4Item1D.BackgroundStyle.Class = "DateTimeInputBackground";
     this.DbInput_Lx4Item1D.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.DbInput_Lx4Item1D.ButtonFreeText.Shortcut = DevComponents.DotNetBar.eShortcut.F2;
     this.DbInput_Lx4Item1D.Increment = 1;
     this.DbInput_Lx4Item1D.Location = new System.Drawing.Point(374, 173);
     this.DbInput_Lx4Item1D.MaxValue = 8;
     this.DbInput_Lx4Item1D.MinValue = 0;
     this.DbInput_Lx4Item1D.Name = "DbInput_Lx4Item1D";
     this.DbInput_Lx4Item1D.ShowUpDown = true;
     this.DbInput_Lx4Item1D.Size = new System.Drawing.Size(80, 21);
     this.DbInput_Lx4Item1D.TabIndex = 26;
     this.DbInput_Lx4Item1D.Value = 8;
     //
     // DbInput_Lx4Item1GD
     //
     //
     //
     //
     this.DbInput_Lx4Item1GD.BackgroundStyle.Class = "DateTimeInputBackground";
     this.DbInput_Lx4Item1GD.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.DbInput_Lx4Item1GD.ButtonFreeText.Shortcut = DevComponents.DotNetBar.eShortcut.F2;
     this.DbInput_Lx4Item1GD.Increment = 1;
     this.DbInput_Lx4Item1GD.Location = new System.Drawing.Point(374, 129);
     this.DbInput_Lx4Item1GD.MaxValue = 55;
     this.DbInput_Lx4Item1GD.MinValue = 0;
     this.DbInput_Lx4Item1GD.Name = "DbInput_Lx4Item1GD";
     this.DbInput_Lx4Item1GD.ShowUpDown = true;
     this.DbInput_Lx4Item1GD.Size = new System.Drawing.Size(80, 21);
     this.DbInput_Lx4Item1GD.TabIndex = 26;
     this.DbInput_Lx4Item1GD.Value = 24;
     //
     // DbInput_Lx4Item1KJ
     //
     //
     //
     //
     this.DbInput_Lx4Item1KJ.BackgroundStyle.Class = "DateTimeInputBackground";
     this.DbInput_Lx4Item1KJ.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.DbInput_Lx4Item1KJ.ButtonFreeText.Shortcut = DevComponents.DotNetBar.eShortcut.F2;
     this.DbInput_Lx4Item1KJ.Increment = 1;
     this.DbInput_Lx4Item1KJ.Location = new System.Drawing.Point(374, 84);
     this.DbInput_Lx4Item1KJ.MinValue = 0;
     this.DbInput_Lx4Item1KJ.Name = "DbInput_Lx4Item1KJ";
     this.DbInput_Lx4Item1KJ.ShowUpDown = true;
     this.DbInput_Lx4Item1KJ.Size = new System.Drawing.Size(80, 21);
     this.DbInput_Lx4Item1KJ.TabIndex = 26;
     this.DbInput_Lx4Item1KJ.Value = 1.2;
     //
     // Tb_Lx4Item1BJ
     //
     this.Tb_Lx4Item1BJ.Location = new System.Drawing.Point(374, 32);
     this.Tb_Lx4Item1BJ.Name = "Tb_Lx4Item1BJ";
     this.Tb_Lx4Item1BJ.ReadOnly = true;
     this.Tb_Lx4Item1BJ.Size = new System.Drawing.Size(80, 21);
     this.Tb_Lx4Item1BJ.TabIndex = 25;
     this.Tb_Lx4Item1BJ.Text = "1980";
     this.Tb_Lx4Item1BJ.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     //
     // labelX2
     //
     //
     //
     //
     this.labelX2.BackgroundStyle.Class = "";
     this.labelX2.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX2.Location = new System.Drawing.Point(236, 218);
     this.labelX2.Name = "labelX2";
     this.labelX2.Size = new System.Drawing.Size(139, 20);
     this.labelX2.TabIndex = 13;
     this.labelX2.Text = "˫�ۼ�������������";
     this.labelX2.TextAlignment = System.Drawing.StringAlignment.Far;
     //
     // labelX3
     //
     //
     //
     //
     this.labelX3.BackgroundStyle.Class = "";
     this.labelX3.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX3.Location = new System.Drawing.Point(236, 129);
     this.labelX3.Name = "labelX3";
     this.labelX3.Size = new System.Drawing.Size(139, 20);
     this.labelX3.TabIndex = 12;
     this.labelX3.Text = "���ּܴ���߶�H(m)��";
     this.labelX3.TextAlignment = System.Drawing.StringAlignment.Far;
     //
     // labelX4
     //
     //
     //
     //
     this.labelX4.BackgroundStyle.Class = "";
     this.labelX4.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX4.Location = new System.Drawing.Point(236, 173);
     this.labelX4.Name = "labelX4";
     this.labelX4.Size = new System.Drawing.Size(139, 20);
     this.labelX4.TabIndex = 11;
     this.labelX4.Text = "���ۼ�������������";
     this.labelX4.TextAlignment = System.Drawing.StringAlignment.Far;
     //
     // labelX5
     //
     //
     //
     //
     this.labelX5.BackgroundStyle.Class = "";
     this.labelX5.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX5.Location = new System.Drawing.Point(275, 85);
     this.labelX5.Name = "labelX5";
     this.labelX5.Size = new System.Drawing.Size(100, 20);
     this.labelX5.TabIndex = 9;
     this.labelX5.Text = "�żܿ��l(m)��";
     this.labelX5.TextAlignment = System.Drawing.StringAlignment.Far;
     //
     // labelX6
     //
     //
     //
     //
     this.labelX6.BackgroundStyle.Class = "";
     this.labelX6.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX6.Location = new System.Drawing.Point(275, 33);
     this.labelX6.Name = "labelX6";
     this.labelX6.Size = new System.Drawing.Size(100, 20);
     this.labelX6.TabIndex = 10;
     this.labelX6.Text = "�żܲ���h(m)��";
     this.labelX6.TextAlignment = System.Drawing.StringAlignment.Far;
     //
     // groupBox10
     //
     this.groupBox10.Controls.Add(this.Rdo_Lx4Item1MF2);
     this.groupBox10.Controls.Add(this.Rdo_Lx4Item1MF1);
     this.groupBox10.Controls.Add(this.Rdo_Lx4Item1MF4);
     this.groupBox10.Controls.Add(this.Rdo_Lx4Item1MF3);
     this.groupBox10.Dock = System.Windows.Forms.DockStyle.Left;
     this.groupBox10.Location = new System.Drawing.Point(3, 17);
     this.groupBox10.Name = "groupBox10";
     this.groupBox10.Size = new System.Drawing.Size(117, 318);
     this.groupBox10.TabIndex = 8;
     this.groupBox10.TabStop = false;
     this.groupBox10.Text = "�ż�����";
     //
     // Rdo_Lx4Item1MF2
     //
     this.Rdo_Lx4Item1MF2.AutoSize = true;
     this.Rdo_Lx4Item1MF2.Location = new System.Drawing.Point(8, 94);
     this.Rdo_Lx4Item1MF2.Name = "Rdo_Lx4Item1MF2";
     this.Rdo_Lx4Item1MF2.Size = new System.Drawing.Size(89, 16);
     this.Rdo_Lx4Item1MF2.TabIndex = 5;
     this.Rdo_Lx4Item1MF2.Text = "MF1219��2��";
     this.Rdo_Lx4Item1MF2.UseVisualStyleBackColor = true;
     this.Rdo_Lx4Item1MF2.CheckedChanged += new System.EventHandler(this.Rdo_Lx4Item1MF2_CheckedChanged);
     //
     // Rdo_Lx4Item1MF1
     //
     this.Rdo_Lx4Item1MF1.AutoSize = true;
     this.Rdo_Lx4Item1MF1.Checked = true;
     this.Rdo_Lx4Item1MF1.Location = new System.Drawing.Point(9, 45);
     this.Rdo_Lx4Item1MF1.Name = "Rdo_Lx4Item1MF1";
     this.Rdo_Lx4Item1MF1.Size = new System.Drawing.Size(89, 16);
     this.Rdo_Lx4Item1MF1.TabIndex = 5;
     this.Rdo_Lx4Item1MF1.TabStop = true;
     this.Rdo_Lx4Item1MF1.Text = "MF1219��1��";
     this.Rdo_Lx4Item1MF1.UseVisualStyleBackColor = true;
     this.Rdo_Lx4Item1MF1.CheckedChanged += new System.EventHandler(this.Rdo_Lx4Item1MF1_CheckedChanged);
     //
     // Rdo_Lx4Item1MF4
     //
     this.Rdo_Lx4Item1MF4.AutoSize = true;
     this.Rdo_Lx4Item1MF4.Location = new System.Drawing.Point(9, 192);
     this.Rdo_Lx4Item1MF4.Name = "Rdo_Lx4Item1MF4";
     this.Rdo_Lx4Item1MF4.Size = new System.Drawing.Size(59, 16);
     this.Rdo_Lx4Item1MF4.TabIndex = 5;
     this.Rdo_Lx4Item1MF4.Text = "MF1017";
     this.Rdo_Lx4Item1MF4.UseVisualStyleBackColor = true;
     this.Rdo_Lx4Item1MF4.CheckedChanged += new System.EventHandler(this.Rdo_Lx4Item1MF4_CheckedChanged);
     //
     // Rdo_Lx4Item1MF3
     //
     this.Rdo_Lx4Item1MF3.AutoSize = true;
     this.Rdo_Lx4Item1MF3.Location = new System.Drawing.Point(8, 143);
     this.Rdo_Lx4Item1MF3.Name = "Rdo_Lx4Item1MF3";
     this.Rdo_Lx4Item1MF3.Size = new System.Drawing.Size(59, 16);
     this.Rdo_Lx4Item1MF3.TabIndex = 5;
     this.Rdo_Lx4Item1MF3.Text = "MF0817";
     this.Rdo_Lx4Item1MF3.UseVisualStyleBackColor = true;
     this.Rdo_Lx4Item1MF3.CheckedChanged += new System.EventHandler(this.Rdo_Lx4Item1MF3_CheckedChanged);
     //
     // LX4tabItem1
     //
     this.LX4tabItem1.AttachedControl = this.tabControlPanel13;
     this.LX4tabItem1.Name = "LX4tabItem1";
     this.LX4tabItem1.Text = "4���ּܲ���";
     this.LX4tabItem1.Visible = false;
     //
     // tabControlPanel6
     //
     this.tabControlPanel6.Controls.Add(this.Grp_Item6);
     this.tabControlPanel6.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabControlPanel6.Location = new System.Drawing.Point(0, 69);
     this.tabControlPanel6.Name = "tabControlPanel6";
     this.tabControlPanel6.Padding = new System.Windows.Forms.Padding(1);
     this.tabControlPanel6.Size = new System.Drawing.Size(638, 340);
     this.tabControlPanel6.Style.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(253)))), ((int)(((byte)(253)))), ((int)(((byte)(254)))));
     this.tabControlPanel6.Style.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(157)))), ((int)(((byte)(188)))), ((int)(((byte)(227)))));
     this.tabControlPanel6.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.tabControlPanel6.Style.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(146)))), ((int)(((byte)(165)))), ((int)(((byte)(199)))));
     this.tabControlPanel6.Style.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Right)
                 | DevComponents.DotNetBar.eBorderSide.Bottom)));
     this.tabControlPanel6.Style.GradientAngle = 90;
     this.tabControlPanel6.TabIndex = 6;
     this.tabControlPanel6.TabItem = this.LXtabItem6;
     //
     // Grp_Item6
     //
     this.Grp_Item6.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
     this.Grp_Item6.Controls.Add(this.Lb_Item6Uz);
     this.Grp_Item6.Controls.Add(this.DbInput_Item6Uz);
     this.Grp_Item6.Controls.Add(this.Cb_Item7DMCCD);
     this.Grp_Item6.Controls.Add(this.labelX17);
     this.Grp_Item6.Controls.Add(this.Grp_Item6SF);
     this.Grp_Item6.Controls.Add(this.groupBox9);
     this.Grp_Item6.Dock = System.Windows.Forms.DockStyle.Fill;
     this.Grp_Item6.Location = new System.Drawing.Point(1, 1);
     this.Grp_Item6.Name = "Grp_Item6";
     this.Grp_Item6.Size = new System.Drawing.Size(636, 338);
     this.Grp_Item6.TabIndex = 0;
     this.Grp_Item6.TabStop = false;
     //
     // Lb_Item6Uz
     //
     //
     //
     //
     this.Lb_Item6Uz.BackgroundStyle.Class = "";
     this.Lb_Item6Uz.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.Lb_Item6Uz.Location = new System.Drawing.Point(265, 233);
     this.Lb_Item6Uz.Name = "Lb_Item6Uz";
     this.Lb_Item6Uz.Size = new System.Drawing.Size(107, 35);
     this.Lb_Item6Uz.TabIndex = 1;
     this.Lb_Item6Uz.Text = "���������ϵ����";
     //
     // DbInput_Item6Uz
     //
     //
     //
     //
     this.DbInput_Item6Uz.BackgroundStyle.Class = "DateTimeInputBackground";
     this.DbInput_Item6Uz.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.DbInput_Item6Uz.ButtonFreeText.Shortcut = DevComponents.DotNetBar.eShortcut.F2;
     this.DbInput_Item6Uz.Increment = 1;
     this.DbInput_Item6Uz.Location = new System.Drawing.Point(373, 240);
     this.DbInput_Item6Uz.MinValue = 0;
     this.DbInput_Item6Uz.Name = "DbInput_Item6Uz";
     this.DbInput_Item6Uz.ShowUpDown = true;
     this.DbInput_Item6Uz.Size = new System.Drawing.Size(105, 21);
     this.DbInput_Item6Uz.TabIndex = 3;
     this.DbInput_Item6Uz.Value = 1.04;
     //
     // Cb_Item7DMCCD
     //
     this.Cb_Item7DMCCD.DisplayMember = "Text";
     this.Cb_Item7DMCCD.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.Cb_Item7DMCCD.FormattingEnabled = true;
     this.Cb_Item7DMCCD.ItemHeight = 15;
     this.Cb_Item7DMCCD.Items.AddRange(new object[] {
     this.comboItem214,
     this.comboItem215,
     this.comboItem216,
     this.comboItem217});
     this.Cb_Item7DMCCD.Location = new System.Drawing.Point(90, 239);
     this.Cb_Item7DMCCD.Name = "Cb_Item7DMCCD";
     this.Cb_Item7DMCCD.Size = new System.Drawing.Size(104, 21);
     this.Cb_Item7DMCCD.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.Cb_Item7DMCCD.TabIndex = 6;
     //
     // comboItem214
     //
     this.comboItem214.Text = "A��";
     //
     // comboItem215
     //
     this.comboItem215.Text = "B��";
     //
     // comboItem216
     //
     this.comboItem216.Text = "C��";
     //
     // comboItem217
     //
     this.comboItem217.Text = "D��";
     //
     // labelX17
     //
     //
     //
     //
     this.labelX17.BackgroundStyle.Class = "";
     this.labelX17.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX17.Location = new System.Drawing.Point(17, 236);
     this.labelX17.Name = "labelX17";
     this.labelX17.Size = new System.Drawing.Size(80, 32);
     this.labelX17.TabIndex = 5;
     this.labelX17.Text = "����ֲڶ�";
     //
     // Grp_Item6SF
     //
     this.Grp_Item6SF.Controls.Add(this.Cb_Item6SF);
     this.Grp_Item6SF.Controls.Add(this.Lb_Item6SF);
     this.Grp_Item6SF.Controls.Add(this.Tb_Item6SFDQFY);
     this.Grp_Item6SF.Controls.Add(this.Lb_Item6DQ);
     this.Grp_Item6SF.Controls.Add(this.Cb_Item6DQ);
     this.Grp_Item6SF.Controls.Add(this.Lb_Item6SFDQFY);
     this.Grp_Item6SF.Location = new System.Drawing.Point(11, 13);
     this.Grp_Item6SF.Name = "Grp_Item6SF";
     this.Grp_Item6SF.Size = new System.Drawing.Size(559, 92);
     this.Grp_Item6SF.TabIndex = 0;
     this.Grp_Item6SF.TabStop = false;
     this.Grp_Item6SF.Text = "��ʡ�ݲ�ѯ��ѹ";
     //
     // Cb_Item6SF
     //
     this.Cb_Item6SF.DisplayMember = "Text";
     this.Cb_Item6SF.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.Cb_Item6SF.FormattingEnabled = true;
     this.Cb_Item6SF.ItemHeight = 15;
     this.Cb_Item6SF.Items.AddRange(new object[] {
     this.comboItem37,
     this.comboItem38,
     this.comboItem39,
     this.comboItem40,
     this.comboItem41,
     this.comboItem42,
     this.comboItem43,
     this.comboItem44,
     this.comboItem45,
     this.comboItem46,
     this.comboItem47,
     this.comboItem48,
     this.comboItem49,
     this.comboItem50,
     this.comboItem51,
     this.comboItem52,
     this.comboItem53,
     this.comboItem54,
     this.comboItem55,
     this.comboItem56,
     this.comboItem57,
     this.comboItem58,
     this.comboItem59,
     this.comboItem60,
     this.comboItem61,
     this.comboItem62,
     this.comboItem63,
     this.comboItem71,
     this.comboItem75,
     this.comboItem142,
     this.comboItem143,
     this.comboItem144,
     this.comboItem145,
     this.comboItem146});
     this.Cb_Item6SF.Location = new System.Drawing.Point(41, 28);
     this.Cb_Item6SF.Name = "Cb_Item6SF";
     this.Cb_Item6SF.Size = new System.Drawing.Size(82, 21);
     this.Cb_Item6SF.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.Cb_Item6SF.TabIndex = 23;
     this.Cb_Item6SF.Text = "����";
     this.Cb_Item6SF.SelectedIndexChanged += new System.EventHandler(this.Cb_Item6SF_SelectedIndexChanged);
     //
     // comboItem37
     //
     this.comboItem37.Text = "����";
     //
     // comboItem38
     //
     this.comboItem38.Text = "���";
     //
     // comboItem39
     //
     this.comboItem39.Text = "�Ϻ�";
     //
     // comboItem40
     //
     this.comboItem40.Text = "����";
     //
     // comboItem41
     //
     this.comboItem41.Text = "�ӱ�";
     //
     // comboItem42
     //
     this.comboItem42.Text = "ɽ��";
     //
     // comboItem43
     //
     this.comboItem43.Text = "���ɹ�";
     //
     // comboItem44
     //
     this.comboItem44.Text = "����";
     //
     // comboItem45
     //
     this.comboItem45.Text = "����";
     //
     // comboItem46
     //
     this.comboItem46.Text = "������";
     //
     // comboItem47
     //
     this.comboItem47.Text = "ɽ��";
     //
     // comboItem48
     //
     this.comboItem48.Text = "����";
     //
     // comboItem49
     //
     this.comboItem49.Text = "�㽭";
     //
     // comboItem50
     //
     this.comboItem50.Text = "����";
     //
     // comboItem51
     //
     this.comboItem51.Text = "����";
     //
     // comboItem52
     //
     this.comboItem52.Text = "����";
     //
     // comboItem53
     //
     this.comboItem53.Text = "����";
     //
     // comboItem54
     //
     this.comboItem54.Text = "����";
     //
     // comboItem55
     //
     this.comboItem55.Text = "����";
     //
     // comboItem56
     //
     this.comboItem56.Text = "�ຣ";
     //
     // comboItem57
     //
     this.comboItem57.Text = "�½�";
     //
     // comboItem58
     //
     this.comboItem58.Text = "����";
     //
     // comboItem59
     //
     this.comboItem59.Text = "����";
     //
     // comboItem60
     //
     this.comboItem60.Text = "����";
     //
     // comboItem61
     //
     this.comboItem61.Text = "�㶫";
     //
     // comboItem62
     //
     this.comboItem62.Text = "����";
     //
     // comboItem63
     //
     this.comboItem63.Text = "����";
     //
     // comboItem71
     //
     this.comboItem71.Text = "�Ĵ�";
     //
     // comboItem75
     //
     this.comboItem75.Text = "����";
     //
     // comboItem142
     //
     this.comboItem142.Text = "����";
     //
     // comboItem143
     //
     this.comboItem143.Text = "����";
     //
     // comboItem144
     //
     this.comboItem144.Text = "̨��";
     //
     // comboItem145
     //
     this.comboItem145.Text = "���";
     //
     // comboItem146
     //
     this.comboItem146.Text = "����";
     //
     // Lb_Item6SF
     //
     //
     //
     //
     this.Lb_Item6SF.BackgroundStyle.Class = "";
     this.Lb_Item6SF.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.Lb_Item6SF.Location = new System.Drawing.Point(6, 28);
     this.Lb_Item6SF.Name = "Lb_Item6SF";
     this.Lb_Item6SF.Size = new System.Drawing.Size(42, 22);
     this.Lb_Item6SF.TabIndex = 2;
     this.Lb_Item6SF.Text = "ʡ�ݣ�";
     //
     // Tb_Item6SFDQFY
     //
     //
     //
     //
     this.Tb_Item6SFDQFY.Border.Class = "TextBoxBorder";
     this.Tb_Item6SFDQFY.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.Tb_Item6SFDQFY.Location = new System.Drawing.Point(455, 29);
     this.Tb_Item6SFDQFY.Name = "Tb_Item6SFDQFY";
     this.Tb_Item6SFDQFY.ReadOnly = true;
     this.Tb_Item6SFDQFY.Size = new System.Drawing.Size(69, 21);
     this.Tb_Item6SFDQFY.TabIndex = 22;
     this.Tb_Item6SFDQFY.Text = "0.30";
     this.Tb_Item6SFDQFY.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     //
     // Lb_Item6DQ
     //
     //
     //
     //
     this.Lb_Item6DQ.BackgroundStyle.Class = "";
     this.Lb_Item6DQ.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.Lb_Item6DQ.Location = new System.Drawing.Point(148, 29);
     this.Lb_Item6DQ.Name = "Lb_Item6DQ";
     this.Lb_Item6DQ.Size = new System.Drawing.Size(42, 22);
     this.Lb_Item6DQ.TabIndex = 3;
     this.Lb_Item6DQ.Text = "������";
     //
     // Cb_Item6DQ
     //
     this.Cb_Item6DQ.DisplayMember = "Text";
     this.Cb_Item6DQ.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.Cb_Item6DQ.FormattingEnabled = true;
     this.Cb_Item6DQ.ItemHeight = 15;
     this.Cb_Item6DQ.Location = new System.Drawing.Point(191, 29);
     this.Cb_Item6DQ.Name = "Cb_Item6DQ";
     this.Cb_Item6DQ.Size = new System.Drawing.Size(95, 21);
     this.Cb_Item6DQ.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.Cb_Item6DQ.TabIndex = 5;
     this.Cb_Item6DQ.Text = "����";
     this.Cb_Item6DQ.SelectedIndexChanged += new System.EventHandler(this.Cb_Item6DQ_SelectedIndexChanged);
     //
     // Lb_Item6SFDQFY
     //
     //
     //
     //
     this.Lb_Item6SFDQFY.BackgroundStyle.Class = "";
     this.Lb_Item6SFDQFY.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.Lb_Item6SFDQFY.Location = new System.Drawing.Point(293, 29);
     this.Lb_Item6SFDQFY.Name = "Lb_Item6SFDQFY";
     this.Lb_Item6SFDQFY.Size = new System.Drawing.Size(165, 28);
     this.Lb_Item6SFDQFY.TabIndex = 7;
     this.Lb_Item6SFDQFY.Text = "�õ����ķ�ѹ�ǣ�kN/m2����";
     //
     // groupBox9
     //
     this.groupBox9.Controls.Add(this.Lb_Item6SelfJBFY);
     this.groupBox9.Controls.Add(this.Chk_Item6Self);
     this.groupBox9.Controls.Add(this.DbInput_Item6SelfJBFY);
     this.groupBox9.Location = new System.Drawing.Point(11, 121);
     this.groupBox9.Name = "groupBox9";
     this.groupBox9.Size = new System.Drawing.Size(559, 92);
     this.groupBox9.TabIndex = 0;
     this.groupBox9.TabStop = false;
     this.groupBox9.Text = "�û���ѡ";
     //
     // Lb_Item6SelfJBFY
     //
     //
     //
     //
     this.Lb_Item6SelfJBFY.BackgroundStyle.Class = "";
     this.Lb_Item6SelfJBFY.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.Lb_Item6SelfJBFY.Enabled = false;
     this.Lb_Item6SelfJBFY.Location = new System.Drawing.Point(20, 48);
     this.Lb_Item6SelfJBFY.Name = "Lb_Item6SelfJBFY";
     this.Lb_Item6SelfJBFY.Size = new System.Drawing.Size(139, 35);
     this.Lb_Item6SelfJBFY.TabIndex = 1;
     this.Lb_Item6SelfJBFY.Text = "������ѹWo��kN/m2����";
     //
     // Chk_Item6Self
     //
     //
     //
     //
     this.Chk_Item6Self.BackgroundStyle.Class = "";
     this.Chk_Item6Self.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.Chk_Item6Self.Location = new System.Drawing.Point(20, 20);
     this.Chk_Item6Self.Name = "Chk_Item6Self";
     this.Chk_Item6Self.Size = new System.Drawing.Size(168, 31);
     this.Chk_Item6Self.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.Chk_Item6Self.TabIndex = 0;
     this.Chk_Item6Self.Text = "Ҫ�Լ��趨������ѹ��";
     this.Chk_Item6Self.CheckedChanged += new System.EventHandler(this.Chk_Item6Self_CheckedChanged);
     //
     // DbInput_Item6SelfJBFY
     //
     //
     //
     //
     this.DbInput_Item6SelfJBFY.BackgroundStyle.Class = "DateTimeInputBackground";
     this.DbInput_Item6SelfJBFY.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.DbInput_Item6SelfJBFY.ButtonFreeText.Shortcut = DevComponents.DotNetBar.eShortcut.F2;
     this.DbInput_Item6SelfJBFY.Enabled = false;
     this.DbInput_Item6SelfJBFY.Increment = 1;
     this.DbInput_Item6SelfJBFY.Location = new System.Drawing.Point(162, 51);
     this.DbInput_Item6SelfJBFY.Name = "DbInput_Item6SelfJBFY";
     this.DbInput_Item6SelfJBFY.ShowUpDown = true;
     this.DbInput_Item6SelfJBFY.Size = new System.Drawing.Size(105, 21);
     this.DbInput_Item6SelfJBFY.TabIndex = 3;
     //
     // LXtabItem6
     //
     this.LXtabItem6.AttachedControl = this.tabControlPanel6;
     this.LXtabItem6.Name = "LXtabItem6";
     this.LXtabItem6.Text = "����ز���+��ѹ�߶ȱ仯ϵ��";
     //
     // tabControlPanel5
     //
     this.tabControlPanel5.Controls.Add(this.Grp_Item5);
     this.tabControlPanel5.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabControlPanel5.Location = new System.Drawing.Point(0, 69);
     this.tabControlPanel5.Name = "tabControlPanel5";
     this.tabControlPanel5.Padding = new System.Windows.Forms.Padding(1);
     this.tabControlPanel5.Size = new System.Drawing.Size(638, 340);
     this.tabControlPanel5.Style.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(253)))), ((int)(((byte)(253)))), ((int)(((byte)(254)))));
     this.tabControlPanel5.Style.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(157)))), ((int)(((byte)(188)))), ((int)(((byte)(227)))));
     this.tabControlPanel5.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.tabControlPanel5.Style.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(146)))), ((int)(((byte)(165)))), ((int)(((byte)(199)))));
     this.tabControlPanel5.Style.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Right)
                 | DevComponents.DotNetBar.eBorderSide.Bottom)));
     this.tabControlPanel5.Style.GradientAngle = 90;
     this.tabControlPanel5.TabIndex = 5;
     this.tabControlPanel5.TabItem = this.LXtabItem5;
     //
     // Grp_Item5
     //
     this.Grp_Item5.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
     this.Grp_Item5.Controls.Add(this.DbInput_Item5HZBZ);
     this.Grp_Item5.Controls.Add(this.IntInput_Item5PSCS);
     this.Grp_Item5.Controls.Add(this.IntInput_Item5SGCS);
     this.Grp_Item5.Controls.Add(this.Cb_Item5YT);
     this.Grp_Item5.Controls.Add(this.Lb_Item5PSCS);
     this.Grp_Item5.Controls.Add(this.labelX24);
     this.Grp_Item5.Controls.Add(this.labelX23);
     this.Grp_Item5.Controls.Add(this.Lb_Item5YT);
     this.Grp_Item5.Dock = System.Windows.Forms.DockStyle.Fill;
     this.Grp_Item5.Location = new System.Drawing.Point(1, 1);
     this.Grp_Item5.Name = "Grp_Item5";
     this.Grp_Item5.Size = new System.Drawing.Size(636, 338);
     this.Grp_Item5.TabIndex = 0;
     this.Grp_Item5.TabStop = false;
     //
     // DbInput_Item5HZBZ
     //
     //
     //
     //
     this.DbInput_Item5HZBZ.BackgroundStyle.Class = "DateTimeInputBackground";
     this.DbInput_Item5HZBZ.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.DbInput_Item5HZBZ.ButtonFreeText.Shortcut = DevComponents.DotNetBar.eShortcut.F2;
     this.DbInput_Item5HZBZ.Increment = 0.1;
     this.DbInput_Item5HZBZ.Location = new System.Drawing.Point(232, 138);
     this.DbInput_Item5HZBZ.MinValue = 0;
     this.DbInput_Item5HZBZ.Name = "DbInput_Item5HZBZ";
     this.DbInput_Item5HZBZ.ShowUpDown = true;
     this.DbInput_Item5HZBZ.Size = new System.Drawing.Size(80, 21);
     this.DbInput_Item5HZBZ.TabIndex = 27;
     this.DbInput_Item5HZBZ.Value = 2;
     //
     // IntInput_Item5PSCS
     //
     //
     //
     //
     this.IntInput_Item5PSCS.BackgroundStyle.Class = "DateTimeInputBackground";
     this.IntInput_Item5PSCS.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.IntInput_Item5PSCS.ButtonFreeText.Shortcut = DevComponents.DotNetBar.eShortcut.F2;
     this.IntInput_Item5PSCS.Location = new System.Drawing.Point(234, 179);
     this.IntInput_Item5PSCS.MinValue = 0;
     this.IntInput_Item5PSCS.Name = "IntInput_Item5PSCS";
     this.IntInput_Item5PSCS.ShowUpDown = true;
     this.IntInput_Item5PSCS.Size = new System.Drawing.Size(78, 21);
     this.IntInput_Item5PSCS.TabIndex = 26;
     this.IntInput_Item5PSCS.Value = 1;
     //
     // IntInput_Item5SGCS
     //
     //
     //
     //
     this.IntInput_Item5SGCS.BackgroundStyle.Class = "DateTimeInputBackground";
     this.IntInput_Item5SGCS.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.IntInput_Item5SGCS.ButtonFreeText.Shortcut = DevComponents.DotNetBar.eShortcut.F2;
     this.IntInput_Item5SGCS.Location = new System.Drawing.Point(152, 95);
     this.IntInput_Item5SGCS.MinValue = 0;
     this.IntInput_Item5SGCS.Name = "IntInput_Item5SGCS";
     this.IntInput_Item5SGCS.ShowUpDown = true;
     this.IntInput_Item5SGCS.Size = new System.Drawing.Size(134, 21);
     this.IntInput_Item5SGCS.TabIndex = 26;
     this.IntInput_Item5SGCS.Value = 1;
     //
     // Cb_Item5YT
     //
     this.Cb_Item5YT.DisplayMember = "Text";
     this.Cb_Item5YT.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.Cb_Item5YT.FormattingEnabled = true;
     this.Cb_Item5YT.ItemHeight = 15;
     this.Cb_Item5YT.Items.AddRange(new object[] {
     this.comboItem34,
     this.comboItem35,
     this.comboItem36});
     this.Cb_Item5YT.Location = new System.Drawing.Point(151, 46);
     this.Cb_Item5YT.Name = "Cb_Item5YT";
     this.Cb_Item5YT.Size = new System.Drawing.Size(135, 21);
     this.Cb_Item5YT.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.Cb_Item5YT.TabIndex = 3;
     this.Cb_Item5YT.Text = "װ��ʩ�����ּ�";
     this.Cb_Item5YT.SelectedIndexChanged += new System.EventHandler(this.Cb_Item5YT_SelectedIndexChanged);
     //
     // comboItem34
     //
     this.comboItem34.Text = "װ��ʩ�����ּ�";
     //
     // comboItem35
     //
     this.comboItem35.Text = "�ṹʩ�����ּ�";
     //
     // comboItem36
     //
     this.comboItem36.Text = "������;���ּ�";
     //
     // Lb_Item5PSCS
     //
     //
     //
     //
     this.Lb_Item5PSCS.BackgroundStyle.Class = "";
     this.Lb_Item5PSCS.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.Lb_Item5PSCS.Location = new System.Drawing.Point(52, 178);
     this.Lb_Item5PSCS.Name = "Lb_Item5PSCS";
     this.Lb_Item5PSCS.Size = new System.Drawing.Size(185, 27);
     this.Lb_Item5PSCS.TabIndex = 2;
     this.Lb_Item5PSCS.Text = "���ְ塢���ˡ����Ű��������:";
     //
     // labelX24
     //
     //
     //
     //
     this.labelX24.BackgroundStyle.Class = "";
     this.labelX24.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX24.Location = new System.Drawing.Point(59, 132);
     this.labelX24.Name = "labelX24";
     this.labelX24.Size = new System.Drawing.Size(178, 41);
     this.labelX24.TabIndex = 2;
     this.labelX24.Text = "ʩ������ر�׼ֵ��kN/m2����";
     //
     // labelX23
     //
     //
     //
     //
     this.labelX23.BackgroundStyle.Class = "";
     this.labelX23.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX23.Location = new System.Drawing.Point(59, 85);
     this.labelX23.Name = "labelX23";
     this.labelX23.Size = new System.Drawing.Size(95, 41);
     this.labelX23.TabIndex = 1;
     this.labelX23.Text = "ͬʱʩ��������";
     //
     // Lb_Item5YT
     //
     //
     //
     //
     this.Lb_Item5YT.BackgroundStyle.Class = "";
     this.Lb_Item5YT.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.Lb_Item5YT.Location = new System.Drawing.Point(59, 38);
     this.Lb_Item5YT.Name = "Lb_Item5YT";
     this.Lb_Item5YT.Size = new System.Drawing.Size(86, 41);
     this.Lb_Item5YT.TabIndex = 0;
     this.Lb_Item5YT.Text = "���ּ���;��";
     //
     // LXtabItem5
     //
     this.LXtabItem5.AttachedControl = this.tabControlPanel5;
     this.LXtabItem5.Name = "LXtabItem5";
     this.LXtabItem5.Text = "�ɱ���ز���";
     //
     // tabControlPanel4
     //
     this.tabControlPanel4.Controls.Add(this.groupBox11);
     this.tabControlPanel4.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabControlPanel4.Location = new System.Drawing.Point(0, 69);
     this.tabControlPanel4.Name = "tabControlPanel4";
     this.tabControlPanel4.Padding = new System.Windows.Forms.Padding(1);
     this.tabControlPanel4.Size = new System.Drawing.Size(638, 340);
     this.tabControlPanel4.Style.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(253)))), ((int)(((byte)(253)))), ((int)(((byte)(254)))));
     this.tabControlPanel4.Style.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(157)))), ((int)(((byte)(188)))), ((int)(((byte)(227)))));
     this.tabControlPanel4.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.tabControlPanel4.Style.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(146)))), ((int)(((byte)(165)))), ((int)(((byte)(199)))));
     this.tabControlPanel4.Style.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Right)
                 | DevComponents.DotNetBar.eBorderSide.Bottom)));
     this.tabControlPanel4.Style.GradientAngle = 90;
     this.tabControlPanel4.TabIndex = 4;
     this.tabControlPanel4.TabItem = this.LXtabItem4;
     this.tabControlPanel4.Text = "���ú��ز���";
     //
     // groupBox11
     //
     this.groupBox11.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
     this.groupBox11.Controls.Add(this.IntInput_Item4PSCS);
     this.groupBox11.Controls.Add(this.Tb_Item4JBZZBZZ);
     this.groupBox11.Controls.Add(this.Tb_Item4JSBZZBZZ);
     this.groupBox11.Controls.Add(this.Cb_Item4JSBLB);
     this.groupBox11.Controls.Add(this.Lb_Item4JSBLB);
     this.groupBox11.Controls.Add(this.Tb_Item4AQW);
     this.groupBox11.Controls.Add(this.Lb_Item4AQW);
     this.groupBox11.Controls.Add(this.Cb_Item4JBLB);
     this.groupBox11.Controls.Add(this.Lb_Item4JBZZBZZ);
     this.groupBox11.Controls.Add(this.Lb_Item4JBLB);
     this.groupBox11.Controls.Add(this.Lb_Item4PSCS);
     this.groupBox11.Controls.Add(this.Lb_Item4JSBZZBZZ);
     this.groupBox11.Controls.Add(this.Tb_Item4GK);
     this.groupBox11.Controls.Add(this.labelX18);
     this.groupBox11.Dock = System.Windows.Forms.DockStyle.Fill;
     this.groupBox11.Location = new System.Drawing.Point(1, 1);
     this.groupBox11.Name = "groupBox11";
     this.groupBox11.Size = new System.Drawing.Size(636, 338);
     this.groupBox11.TabIndex = 2;
     this.groupBox11.TabStop = false;
     //
     // IntInput_Item4PSCS
     //
     //
     //
     //
     this.IntInput_Item4PSCS.BackgroundStyle.Class = "DateTimeInputBackground";
     this.IntInput_Item4PSCS.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.IntInput_Item4PSCS.ButtonFreeText.Shortcut = DevComponents.DotNetBar.eShortcut.F2;
     this.IntInput_Item4PSCS.Location = new System.Drawing.Point(126, 177);
     this.IntInput_Item4PSCS.MaxValue = 3;
     this.IntInput_Item4PSCS.MinValue = 0;
     this.IntInput_Item4PSCS.Name = "IntInput_Item4PSCS";
     this.IntInput_Item4PSCS.ShowUpDown = true;
     this.IntInput_Item4PSCS.Size = new System.Drawing.Size(49, 21);
     this.IntInput_Item4PSCS.TabIndex = 23;
     this.IntInput_Item4PSCS.Value = 3;
     //
     // Tb_Item4JBZZBZZ
     //
     //
     //
     //
     this.Tb_Item4JBZZBZZ.Border.Class = "TextBoxBorder";
     this.Tb_Item4JBZZBZZ.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.Tb_Item4JBZZBZZ.Location = new System.Drawing.Point(499, 132);
     this.Tb_Item4JBZZBZZ.Name = "Tb_Item4JBZZBZZ";
     this.Tb_Item4JBZZBZZ.ReadOnly = true;
     this.Tb_Item4JBZZBZZ.Size = new System.Drawing.Size(69, 21);
     this.Tb_Item4JBZZBZZ.TabIndex = 22;
     this.Tb_Item4JBZZBZZ.Text = "0.16";
     this.Tb_Item4JBZZBZZ.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     //
     // Tb_Item4JSBZZBZZ
     //
     //
     //
     //
     this.Tb_Item4JSBZZBZZ.Border.Class = "TextBoxBorder";
     this.Tb_Item4JSBZZBZZ.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.Tb_Item4JSBZZBZZ.Location = new System.Drawing.Point(499, 76);
     this.Tb_Item4JSBZZBZZ.Name = "Tb_Item4JSBZZBZZ";
     this.Tb_Item4JSBZZBZZ.ReadOnly = true;
     this.Tb_Item4JSBZZBZZ.Size = new System.Drawing.Size(69, 21);
     this.Tb_Item4JSBZZBZZ.TabIndex = 21;
     this.Tb_Item4JSBZZBZZ.Text = "0.30";
     this.Tb_Item4JSBZZBZZ.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     //
     // Cb_Item4JSBLB
     //
     this.Cb_Item4JSBLB.DisplayMember = "Text";
     this.Cb_Item4JSBLB.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.Cb_Item4JSBLB.FormattingEnabled = true;
     this.Cb_Item4JSBLB.ItemHeight = 15;
     this.Cb_Item4JSBLB.Items.AddRange(new object[] {
     this.comboItem4,
     this.comboItem5,
     this.comboItem6,
     this.comboItem7});
     this.Cb_Item4JSBLB.Location = new System.Drawing.Point(124, 79);
     this.Cb_Item4JSBLB.Name = "Cb_Item4JSBLB";
     this.Cb_Item4JSBLB.Size = new System.Drawing.Size(161, 21);
     this.Cb_Item4JSBLB.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.Cb_Item4JSBLB.TabIndex = 19;
     this.Cb_Item4JSBLB.Text = "��ѹ�ֽ��ְ�";
     this.Cb_Item4JSBLB.SelectedIndexChanged += new System.EventHandler(this.Cb_Item4JSBLB_SelectedIndexChanged_1);
     //
     // comboItem4
     //
     this.comboItem4.Text = "��ѹ�ֽ��ְ�";
     //
     // comboItem5
     //
     this.comboItem5.Text = "��Ƭ���ְ�";
     //
     // comboItem6
     //
     this.comboItem6.Text = "ľ���ְ�";
     //
     // comboItem7
     //
     this.comboItem7.Text = "��Ž��ְ�";
     //
     // Lb_Item4JSBLB
     //
     //
     //
     //
     this.Lb_Item4JSBLB.BackgroundStyle.Class = "";
     this.Lb_Item4JSBLB.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.Lb_Item4JSBLB.Location = new System.Drawing.Point(46, 79);
     this.Lb_Item4JSBLB.Name = "Lb_Item4JSBLB";
     this.Lb_Item4JSBLB.Size = new System.Drawing.Size(82, 23);
     this.Lb_Item4JSBLB.TabIndex = 18;
     this.Lb_Item4JSBLB.Text = "���ְ����";
     //
     // Tb_Item4AQW
     //
     //
     //
     //
     this.Tb_Item4AQW.Border.Class = "TextBoxBorder";
     this.Tb_Item4AQW.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.Tb_Item4AQW.Location = new System.Drawing.Point(390, 178);
     this.Tb_Item4AQW.Name = "Tb_Item4AQW";
     this.Tb_Item4AQW.Size = new System.Drawing.Size(56, 21);
     this.Tb_Item4AQW.TabIndex = 16;
     this.Tb_Item4AQW.Text = "0.02";
     this.Tb_Item4AQW.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     //
     // Lb_Item4AQW
     //
     //
     //
     //
     this.Lb_Item4AQW.BackgroundStyle.Class = "";
     this.Lb_Item4AQW.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.Lb_Item4AQW.Location = new System.Drawing.Point(210, 178);
     this.Lb_Item4AQW.Name = "Lb_Item4AQW";
     this.Lb_Item4AQW.Size = new System.Drawing.Size(179, 23);
     this.Lb_Item4AQW.TabIndex = 15;
     this.Lb_Item4AQW.Text = " ��ȫ�����ر�׼ֵ��kN/m2����";
     //
     // Cb_Item4JBLB
     //
     this.Cb_Item4JBLB.DisplayMember = "Text";
     this.Cb_Item4JBLB.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.Cb_Item4JBLB.FormattingEnabled = true;
     this.Cb_Item4JBLB.ItemHeight = 15;
     this.Cb_Item4JBLB.Items.AddRange(new object[] {
     this.comboItem8,
     this.comboItem9,
     this.comboItem10});
     this.Cb_Item4JBLB.Location = new System.Drawing.Point(123, 132);
     this.Cb_Item4JBLB.Name = "Cb_Item4JBLB";
     this.Cb_Item4JBLB.Size = new System.Drawing.Size(162, 21);
     this.Cb_Item4JBLB.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.Cb_Item4JBLB.TabIndex = 12;
     this.Cb_Item4JBLB.Text = "���ˡ���ѹ�ֽ��ְ嵲��";
     this.Cb_Item4JBLB.SelectedIndexChanged += new System.EventHandler(this.Cb_Item4JBLB_SelectedIndexChanged_1);
     //
     // comboItem8
     //
     this.comboItem8.Text = "���ˡ���ѹ�ֽ��ְ嵲��";
     //
     // comboItem9
     //
     this.comboItem9.Text = "���ˡ���Ƭ���ְ嵲��";
     //
     // comboItem10
     //
     this.comboItem10.Text = "���ˡ�ľ���ְ嵲��";
     //
     // Lb_Item4JBZZBZZ
     //
     //
     //
     //
     this.Lb_Item4JBZZBZZ.BackgroundStyle.Class = "";
     this.Lb_Item4JBZZBZZ.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.Lb_Item4JBZZBZZ.Location = new System.Drawing.Point(299, 131);
     this.Lb_Item4JBZZBZZ.Name = "Lb_Item4JBZZBZZ";
     this.Lb_Item4JBZZBZZ.Size = new System.Drawing.Size(211, 23);
     this.Lb_Item4JBZZBZZ.TabIndex = 11;
     this.Lb_Item4JBZZBZZ.Text = "  ���˵��Ű����ر�׼ֵ��kN/m����";
     //
     // Lb_Item4JBLB
     //
     //
     //
     //
     this.Lb_Item4JBLB.BackgroundStyle.Class = "";
     this.Lb_Item4JBLB.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.Lb_Item4JBLB.Location = new System.Drawing.Point(16, 130);
     this.Lb_Item4JBLB.Name = "Lb_Item4JBLB";
     this.Lb_Item4JBLB.Size = new System.Drawing.Size(112, 23);
     this.Lb_Item4JBLB.TabIndex = 10;
     this.Lb_Item4JBLB.Text = " ���˵��Ű����";
     //
     // Lb_Item4PSCS
     //
     //
     //
     //
     this.Lb_Item4PSCS.BackgroundStyle.Class = "";
     this.Lb_Item4PSCS.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.Lb_Item4PSCS.Location = new System.Drawing.Point(10, 175);
     this.Lb_Item4PSCS.Name = "Lb_Item4PSCS";
     this.Lb_Item4PSCS.Size = new System.Drawing.Size(121, 23);
     this.Lb_Item4PSCS.TabIndex = 9;
     this.Lb_Item4PSCS.Text = "  ���ְ����������";
     //
     // Lb_Item4JSBZZBZZ
     //
     //
     //
     //
     this.Lb_Item4JSBZZBZZ.BackgroundStyle.Class = "";
     this.Lb_Item4JSBZZBZZ.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.Lb_Item4JSBZZBZZ.Location = new System.Drawing.Point(321, 76);
     this.Lb_Item4JSBZZBZZ.Name = "Lb_Item4JSBZZBZZ";
     this.Lb_Item4JSBZZBZZ.Size = new System.Drawing.Size(181, 23);
     this.Lb_Item4JSBZZBZZ.TabIndex = 5;
     this.Lb_Item4JSBZZBZZ.Text = " ���ְ����ر�׼ֵ��kN/m2����";
     //
     // Tb_Item4GK
     //
     //
     //
     //
     this.Tb_Item4GK.Border.Class = "TextBoxBorder";
     this.Tb_Item4GK.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.Tb_Item4GK.Location = new System.Drawing.Point(289, 30);
     this.Tb_Item4GK.Name = "Tb_Item4GK";
     this.Tb_Item4GK.Size = new System.Drawing.Size(96, 21);
     this.Tb_Item4GK.TabIndex = 2;
     //
     // labelX18
     //
     //
     //
     //
     this.labelX18.BackgroundStyle.Class = "";
     this.labelX18.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX18.Location = new System.Drawing.Point(43, 25);
     this.labelX18.Name = "labelX18";
     this.labelX18.Size = new System.Drawing.Size(245, 34);
     this.labelX18.TabIndex = 1;
     this.labelX18.Text = "ÿ�����˳��ܵĽṹ���ر�׼ֵ��kN/m����";
     //
     // LXtabItem4
     //
     this.LXtabItem4.AttachedControl = this.tabControlPanel4;
     this.LXtabItem4.Name = "LXtabItem4";
     this.LXtabItem4.Text = "���ú��ز���";
     this.LXtabItem4.Click += new System.EventHandler(this.LXtabItem4_Click);
     //
     // tabControlPanel2
     //
     this.tabControlPanel2.CanvasColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
     this.tabControlPanel2.Controls.Add(this.Grp_Item2);
     this.tabControlPanel2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabControlPanel2.Location = new System.Drawing.Point(0, 69);
     this.tabControlPanel2.Name = "tabControlPanel2";
     this.tabControlPanel2.Padding = new System.Windows.Forms.Padding(1);
     this.tabControlPanel2.Size = new System.Drawing.Size(638, 340);
     this.tabControlPanel2.Style.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(253)))), ((int)(((byte)(253)))), ((int)(((byte)(254)))));
     this.tabControlPanel2.Style.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(157)))), ((int)(((byte)(188)))), ((int)(((byte)(227)))));
     this.tabControlPanel2.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.tabControlPanel2.Style.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(146)))), ((int)(((byte)(165)))), ((int)(((byte)(199)))));
     this.tabControlPanel2.Style.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Right)
                 | DevComponents.DotNetBar.eBorderSide.Bottom)));
     this.tabControlPanel2.Style.GradientAngle = 90;
     this.tabControlPanel2.TabIndex = 2;
     this.tabControlPanel2.TabItem = this.LXtabItem2;
     //
     // Grp_Item2
     //
     this.Grp_Item2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
     this.Grp_Item2.Controls.Add(this.Grp_Item2DHG);
     this.Grp_Item2.Controls.Add(this.Rdo_Item2XHG);
     this.Grp_Item2.Controls.Add(this.Grp_Item2XHG);
     this.Grp_Item2.Controls.Add(this.Rdo_Item2DHG);
     this.Grp_Item2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.Grp_Item2.Location = new System.Drawing.Point(1, 1);
     this.Grp_Item2.Name = "Grp_Item2";
     this.Grp_Item2.Size = new System.Drawing.Size(636, 338);
     this.Grp_Item2.TabIndex = 24;
     this.Grp_Item2.TabStop = false;
     this.Grp_Item2.Text = "��С��˲���";
     //
     // Grp_Item2DHG
     //
     this.Grp_Item2DHG.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
     this.Grp_Item2DHG.Controls.Add(this.Cb_Item2DHGGS);
     this.Grp_Item2DHG.Controls.Add(this.Lb_Item2DHGGS);
     this.Grp_Item2DHG.Location = new System.Drawing.Point(289, 95);
     this.Grp_Item2DHG.Name = "Grp_Item2DHG";
     this.Grp_Item2DHG.Size = new System.Drawing.Size(317, 81);
     this.Grp_Item2DHG.TabIndex = 5;
     this.Grp_Item2DHG.TabStop = false;
     this.Grp_Item2DHG.Text = "�������ϣ���Ű壩";
     //
     // Cb_Item2DHGGS
     //
     this.Cb_Item2DHGGS.DisplayMember = "Text";
     this.Cb_Item2DHGGS.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.Cb_Item2DHGGS.FormattingEnabled = true;
     this.Cb_Item2DHGGS.ItemHeight = 15;
     this.Cb_Item2DHGGS.Items.AddRange(new object[] {
     this.comboItem22,
     this.comboItem23,
     this.comboItem24,
     this.comboItem25});
     this.Cb_Item2DHGGS.Location = new System.Drawing.Point(251, 29);
     this.Cb_Item2DHGGS.Name = "Cb_Item2DHGGS";
     this.Cb_Item2DHGGS.Size = new System.Drawing.Size(52, 21);
     this.Cb_Item2DHGGS.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.Cb_Item2DHGGS.TabIndex = 22;
     this.Cb_Item2DHGGS.Text = "3";
     //
     // comboItem22
     //
     this.comboItem22.Text = "0";
     //
     // comboItem23
     //
     this.comboItem23.Text = "1";
     //
     // comboItem24
     //
     this.comboItem24.Text = "2";
     //
     // comboItem25
     //
     this.comboItem25.Text = "3";
     //
     // Lb_Item2DHGGS
     //
     //
     //
     //
     this.Lb_Item2DHGGS.BackgroundStyle.Class = "";
     this.Lb_Item2DHGGS.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.Lb_Item2DHGGS.Location = new System.Drawing.Point(13, 29);
     this.Lb_Item2DHGGS.Name = "Lb_Item2DHGGS";
     this.Lb_Item2DHGGS.Size = new System.Drawing.Size(243, 23);
     this.Lb_Item2DHGGS.TabIndex = 3;
     this.Lb_Item2DHGGS.Text = "������С����ϵĴ��˸������������ࣩ";
     //
     // Rdo_Item2XHG
     //
     this.Rdo_Item2XHG.AutoSize = true;
     this.Rdo_Item2XHG.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
     this.Rdo_Item2XHG.Location = new System.Drawing.Point(20, 46);
     this.Rdo_Item2XHG.Name = "Rdo_Item2XHG";
     this.Rdo_Item2XHG.Size = new System.Drawing.Size(83, 16);
     this.Rdo_Item2XHG.TabIndex = 23;
     this.Rdo_Item2XHG.Text = "�������";
     this.Rdo_Item2XHG.UseVisualStyleBackColor = false;
     this.Rdo_Item2XHG.CheckedChanged += new System.EventHandler(this.Rdo_Item2XHG_CheckedChanged);
     //
     // Grp_Item2XHG
     //
     this.Grp_Item2XHG.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
     this.Grp_Item2XHG.Controls.Add(this.Tb_Item2XHGJJ);
     this.Grp_Item2XHG.Controls.Add(this.Cb_Item2LGZJ);
     this.Grp_Item2XHG.Controls.Add(this.Lb_Item2LGZJ);
     this.Grp_Item2XHG.Controls.Add(this.Lb_Item2XHGJJ);
     this.Grp_Item2XHG.Enabled = false;
     this.Grp_Item2XHG.Location = new System.Drawing.Point(14, 82);
     this.Grp_Item2XHG.Name = "Grp_Item2XHG";
     this.Grp_Item2XHG.Size = new System.Drawing.Size(245, 94);
     this.Grp_Item2XHG.TabIndex = 0;
     this.Grp_Item2XHG.TabStop = false;
     this.Grp_Item2XHG.Text = "�������";
     //
     // Tb_Item2XHGJJ
     //
     this.Tb_Item2XHGJJ.Location = new System.Drawing.Point(121, 62);
     this.Tb_Item2XHGJJ.Name = "Tb_Item2XHGJJ";
     this.Tb_Item2XHGJJ.ReadOnly = true;
     this.Tb_Item2XHGJJ.Size = new System.Drawing.Size(80, 21);
     this.Tb_Item2XHGJJ.TabIndex = 24;
     this.Tb_Item2XHGJJ.Text = "1";
     this.Tb_Item2XHGJJ.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     //
     // Cb_Item2LGZJ
     //
     this.Cb_Item2LGZJ.DisplayMember = "Text";
     this.Cb_Item2LGZJ.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.Cb_Item2LGZJ.FormattingEnabled = true;
     this.Cb_Item2LGZJ.ItemHeight = 15;
     this.Cb_Item2LGZJ.Items.AddRange(new object[] {
     this.comboItem20,
     this.comboItem21});
     this.Cb_Item2LGZJ.Location = new System.Drawing.Point(97, 28);
     this.Cb_Item2LGZJ.Name = "Cb_Item2LGZJ";
     this.Cb_Item2LGZJ.Size = new System.Drawing.Size(104, 21);
     this.Cb_Item2LGZJ.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.Cb_Item2LGZJ.TabIndex = 23;
     this.Cb_Item2LGZJ.Text = "�����ݾ�la ";
     this.Cb_Item2LGZJ.SelectedIndexChanged += new System.EventHandler(this.Cb_Item2LGZJ_SelectedIndexChanged);
     //
     // comboItem20
     //
     this.comboItem20.Text = "�����ݾ�la/2 ";
     //
     // comboItem21
     //
     this.comboItem21.Text = "�����ݾ�la ";
     //
     // Lb_Item2LGZJ
     //
     //
     //
     //
     this.Lb_Item2LGZJ.BackgroundStyle.Class = "";
     this.Lb_Item2LGZJ.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.Lb_Item2LGZJ.Location = new System.Drawing.Point(15, 29);
     this.Lb_Item2LGZJ.Name = "Lb_Item2LGZJ";
     this.Lb_Item2LGZJ.Size = new System.Drawing.Size(91, 20);
     this.Lb_Item2LGZJ.TabIndex = 22;
     this.Lb_Item2LGZJ.Text = "�����ݾ�ѡ��";
     //
     // Lb_Item2XHGJJ
     //
     //
     //
     //
     this.Lb_Item2XHGJJ.BackgroundStyle.Class = "";
     this.Lb_Item2XHGJJ.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.Lb_Item2XHGJJ.Location = new System.Drawing.Point(10, 63);
     this.Lb_Item2XHGJJ.Name = "Lb_Item2XHGJJ";
     this.Lb_Item2XHGJJ.Size = new System.Drawing.Size(121, 20);
     this.Lb_Item2XHGJJ.TabIndex = 22;
     this.Lb_Item2XHGJJ.Text = " С��˼��S��m��:";
     //
     // Rdo_Item2DHG
     //
     this.Rdo_Item2DHG.AutoSize = true;
     this.Rdo_Item2DHG.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
     this.Rdo_Item2DHG.Checked = true;
     this.Rdo_Item2DHG.Location = new System.Drawing.Point(292, 50);
     this.Rdo_Item2DHG.Name = "Rdo_Item2DHG";
     this.Rdo_Item2DHG.Size = new System.Drawing.Size(143, 16);
     this.Rdo_Item2DHG.TabIndex = 23;
     this.Rdo_Item2DHG.TabStop = true;
     this.Rdo_Item2DHG.Text = "�������ϣ���Ű壩";
     this.Rdo_Item2DHG.UseVisualStyleBackColor = false;
     //
     // LXtabItem2
     //
     this.LXtabItem2.AttachedControl = this.tabControlPanel2;
     this.LXtabItem2.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
     this.LXtabItem2.Name = "LXtabItem2";
     this.LXtabItem2.Text = "��С��˲���";
     //
     // tabControlPanel9
     //
     this.tabControlPanel9.Controls.Add(this.Grp_Item9);
     this.tabControlPanel9.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabControlPanel9.Location = new System.Drawing.Point(0, 69);
     this.tabControlPanel9.Name = "tabControlPanel9";
     this.tabControlPanel9.Padding = new System.Windows.Forms.Padding(1);
     this.tabControlPanel9.Size = new System.Drawing.Size(638, 340);
     this.tabControlPanel9.Style.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(253)))), ((int)(((byte)(253)))), ((int)(((byte)(254)))));
     this.tabControlPanel9.Style.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(157)))), ((int)(((byte)(188)))), ((int)(((byte)(227)))));
     this.tabControlPanel9.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.tabControlPanel9.Style.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(146)))), ((int)(((byte)(165)))), ((int)(((byte)(199)))));
     this.tabControlPanel9.Style.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Right)
                 | DevComponents.DotNetBar.eBorderSide.Bottom)));
     this.tabControlPanel9.Style.GradientAngle = 90;
     this.tabControlPanel9.TabIndex = 9;
     this.tabControlPanel9.TabItem = this.LXtabItem9;
     //
     // Grp_Item9
     //
     this.Grp_Item9.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
     this.Grp_Item9.Controls.Add(this.Cb_Item9DJLX);
     this.Grp_Item9.Controls.Add(this.Lb_Item9DJLX);
     this.Grp_Item9.Controls.Add(this.Tb_Item9ZYCD);
     this.Grp_Item9.Controls.Add(this.Lb_Item9ZYCD);
     this.Grp_Item9.Controls.Add(this.DbIput_Item9DBK);
     this.Grp_Item9.Controls.Add(this.Lb_Item9DBK);
     this.Grp_Item9.Controls.Add(this.Btn_Item9SearchChart);
     this.Grp_Item9.Controls.Add(this.Tb_Item9DJCZL);
     this.Grp_Item9.Controls.Add(this.Lb_Item9DJCZL);
     this.Grp_Item9.Controls.Add(this.Cb_Item9DJTLX);
     this.Grp_Item9.Controls.Add(this.Lb_Item9DJTLX);
     this.Grp_Item9.Dock = System.Windows.Forms.DockStyle.Fill;
     this.Grp_Item9.Location = new System.Drawing.Point(1, 1);
     this.Grp_Item9.Name = "Grp_Item9";
     this.Grp_Item9.Size = new System.Drawing.Size(636, 338);
     this.Grp_Item9.TabIndex = 0;
     this.Grp_Item9.TabStop = false;
     this.Grp_Item9.Text = "���˵ػ�����������";
     //
     // Cb_Item9DJLX
     //
     this.Cb_Item9DJLX.DisplayMember = "Text";
     this.Cb_Item9DJLX.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.Cb_Item9DJLX.FormattingEnabled = true;
     this.Cb_Item9DJLX.ItemHeight = 15;
     this.Cb_Item9DJLX.Items.AddRange(new object[] {
     this.comboItem15,
     this.comboItem16});
     this.Cb_Item9DJLX.Location = new System.Drawing.Point(152, 156);
     this.Cb_Item9DJLX.Name = "Cb_Item9DJLX";
     this.Cb_Item9DJLX.Size = new System.Drawing.Size(136, 21);
     this.Cb_Item9DJLX.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.Cb_Item9DJLX.TabIndex = 20;
     //
     // comboItem15
     //
     this.comboItem15.Text = "��Ȼ�ػ�";
     //
     // comboItem16
     //
     this.comboItem16.Text = "�������ػ�";
     //
     // Lb_Item9DJLX
     //
     //
     //
     //
     this.Lb_Item9DJLX.BackgroundStyle.Class = "";
     this.Lb_Item9DJLX.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.Lb_Item9DJLX.Location = new System.Drawing.Point(31, 156);
     this.Lb_Item9DJLX.Name = "Lb_Item9DJLX";
     this.Lb_Item9DJLX.Size = new System.Drawing.Size(117, 23);
     this.Lb_Item9DJLX.TabIndex = 19;
     this.Lb_Item9DJLX.Text = "�ػ����ͣ�";
     this.Lb_Item9DJLX.TextAlignment = System.Drawing.StringAlignment.Far;
     //
     // Tb_Item9ZYCD
     //
     //
     //
     //
     this.Tb_Item9ZYCD.Border.Class = "TextBoxBorder";
     this.Tb_Item9ZYCD.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.Tb_Item9ZYCD.Location = new System.Drawing.Point(154, 125);
     this.Tb_Item9ZYCD.Name = "Tb_Item9ZYCD";
     this.Tb_Item9ZYCD.ReadOnly = true;
     this.Tb_Item9ZYCD.Size = new System.Drawing.Size(137, 21);
     this.Tb_Item9ZYCD.TabIndex = 18;
     this.Tb_Item9ZYCD.Text = "1.50";
     //
     // Lb_Item9ZYCD
     //
     //
     //
     //
     this.Lb_Item9ZYCD.BackgroundStyle.Class = "";
     this.Lb_Item9ZYCD.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.Lb_Item9ZYCD.Location = new System.Drawing.Point(26, 124);
     this.Lb_Item9ZYCD.Name = "Lb_Item9ZYCD";
     this.Lb_Item9ZYCD.Size = new System.Drawing.Size(128, 23);
     this.Lb_Item9ZYCD.TabIndex = 17;
     this.Lb_Item9ZYCD.Text = "�� �� �� �� ��m����";
     //
     // DbIput_Item9DBK
     //
     //
     //
     //
     this.DbIput_Item9DBK.BackgroundStyle.Class = "DateTimeInputBackground";
     this.DbIput_Item9DBK.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.DbIput_Item9DBK.ButtonFreeText.Shortcut = DevComponents.DotNetBar.eShortcut.F2;
     this.DbIput_Item9DBK.Increment = 0.1;
     this.DbIput_Item9DBK.InputHorizontalAlignment = DevComponents.Editors.eHorizontalAlignment.Center;
     this.DbIput_Item9DBK.Location = new System.Drawing.Point(153, 82);
     this.DbIput_Item9DBK.MinValue = 0;
     this.DbIput_Item9DBK.Name = "DbIput_Item9DBK";
     this.DbIput_Item9DBK.ShowUpDown = true;
     this.DbIput_Item9DBK.Size = new System.Drawing.Size(137, 21);
     this.DbIput_Item9DBK.TabIndex = 16;
     this.DbIput_Item9DBK.Value = 0.3;
     //
     // Lb_Item9DBK
     //
     //
     //
     //
     this.Lb_Item9DBK.BackgroundStyle.Class = "";
     this.Lb_Item9DBK.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.Lb_Item9DBK.Location = new System.Drawing.Point(20, 82);
     this.Lb_Item9DBK.Name = "Lb_Item9DBK";
     this.Lb_Item9DBK.Size = new System.Drawing.Size(146, 23);
     this.Lb_Item9DBK.TabIndex = 7;
     this.Lb_Item9DBK.Text = " ���ּܵ�����ף���";
     //
     // Btn_Item9SearchChart
     //
     this.Btn_Item9SearchChart.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.Btn_Item9SearchChart.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.Btn_Item9SearchChart.Font = new System.Drawing.Font("����", 7.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.Btn_Item9SearchChart.Image = global::Framework.Properties.Resources.Search;
     this.Btn_Item9SearchChart.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.Btn_Item9SearchChart.ImeMode = System.Windows.Forms.ImeMode.NoControl;
     this.Btn_Item9SearchChart.Location = new System.Drawing.Point(498, 28);
     this.Btn_Item9SearchChart.Name = "Btn_Item9SearchChart";
     this.Btn_Item9SearchChart.Size = new System.Drawing.Size(53, 50);
     this.Btn_Item9SearchChart.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.Btn_Item9SearchChart.TabIndex = 6;
     this.Btn_Item9SearchChart.Text = "��ѯͼ��";
     this.Btn_Item9SearchChart.Click += new System.EventHandler(this.Btn_Item9SearchChart_Click);
     //
     // Tb_Item9DJCZL
     //
     //
     //
     //
     this.Tb_Item9DJCZL.Border.Class = "TextBoxBorder";
     this.Tb_Item9DJCZL.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.Tb_Item9DJCZL.Location = new System.Drawing.Point(399, 39);
     this.Tb_Item9DJCZL.Name = "Tb_Item9DJCZL";
     this.Tb_Item9DJCZL.ReadOnly = true;
     this.Tb_Item9DJCZL.Size = new System.Drawing.Size(84, 21);
     this.Tb_Item9DJCZL.TabIndex = 5;
     this.Tb_Item9DJCZL.Text = "200";
     //
     // Lb_Item9DJCZL
     //
     //
     //
     //
     this.Lb_Item9DJCZL.BackgroundStyle.Class = "";
     this.Lb_Item9DJCZL.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.Lb_Item9DJCZL.Location = new System.Drawing.Point(224, 37);
     this.Lb_Item9DJCZL.Name = "Lb_Item9DJCZL";
     this.Lb_Item9DJCZL.Size = new System.Drawing.Size(180, 23);
     this.Lb_Item9DJCZL.TabIndex = 4;
     this.Lb_Item9DJCZL.Text = " �ػ���������׼ֵ��kN/m2����";
     //
     // Cb_Item9DJTLX
     //
     this.Cb_Item9DJTLX.DisplayMember = "Text";
     this.Cb_Item9DJTLX.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.Cb_Item9DJTLX.FormattingEnabled = true;
     this.Cb_Item9DJTLX.ItemHeight = 15;
     this.Cb_Item9DJTLX.Items.AddRange(new object[] {
     this.comboItem17,
     this.comboItem18,
     this.comboItem19,
     this.comboItem64,
     this.comboItem65,
     this.comboItem67,
     this.comboItem68,
     this.comboItem69});
     this.Cb_Item9DJTLX.Location = new System.Drawing.Point(104, 36);
     this.Cb_Item9DJTLX.Name = "Cb_Item9DJTLX";
     this.Cb_Item9DJTLX.Size = new System.Drawing.Size(111, 21);
     this.Cb_Item9DJTLX.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.Cb_Item9DJTLX.TabIndex = 3;
     this.Cb_Item9DJTLX.SelectedIndexChanged += new System.EventHandler(this.Cb_Item9DJTLX_SelectedIndexChanged);
     //
     // comboItem17
     //
     this.comboItem17.Text = "��ʯ";
     //
     // comboItem18
     //
     this.comboItem18.Text = "��ʯ��";
     //
     // comboItem19
     //
     this.comboItem19.Text = "ɰ��";
     //
     // comboItem64
     //
     this.comboItem64.Text = "����";
     //
     // comboItem65
     //
     this.comboItem65.Text = "������";
     //
     // comboItem67
     //
     this.comboItem67.Text = "��ճ��";
     //
     // comboItem68
     //
     this.comboItem68.Text = "ճ����";
     //
     // comboItem69
     //
     this.comboItem69.Text = "��������";
     //
     // Lb_Item9DJTLX
     //
     //
     //
     //
     this.Lb_Item9DJTLX.BackgroundStyle.Class = "";
     this.Lb_Item9DJTLX.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.Lb_Item9DJTLX.Location = new System.Drawing.Point(29, 36);
     this.Lb_Item9DJTLX.Name = "Lb_Item9DJTLX";
     this.Lb_Item9DJTLX.Size = new System.Drawing.Size(91, 23);
     this.Lb_Item9DJTLX.TabIndex = 2;
     this.Lb_Item9DJTLX.Text = "�ػ������ͣ�";
     //
     // LXtabItem9
     //
     this.LXtabItem9.AttachedControl = this.tabControlPanel9;
     this.LXtabItem9.Name = "LXtabItem9";
     this.LXtabItem9.Text = "���˵ػ�������";
     //
     // tabControlPanel17
     //
     this.tabControlPanel17.Controls.Add(this.groupBox8);
     this.tabControlPanel17.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabControlPanel17.Location = new System.Drawing.Point(0, 69);
     this.tabControlPanel17.Name = "tabControlPanel17";
     this.tabControlPanel17.Padding = new System.Windows.Forms.Padding(1);
     this.tabControlPanel17.Size = new System.Drawing.Size(638, 340);
     this.tabControlPanel17.Style.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(253)))), ((int)(((byte)(253)))), ((int)(((byte)(254)))));
     this.tabControlPanel17.Style.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(157)))), ((int)(((byte)(188)))), ((int)(((byte)(227)))));
     this.tabControlPanel17.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.tabControlPanel17.Style.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(146)))), ((int)(((byte)(165)))), ((int)(((byte)(199)))));
     this.tabControlPanel17.Style.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Right)
                 | DevComponents.DotNetBar.eBorderSide.Bottom)));
     this.tabControlPanel17.Style.GradientAngle = 90;
     this.tabControlPanel17.TabIndex = 18;
     this.tabControlPanel17.TabItem = this.LX5tabItem1;
     //
     // groupBox8
     //
     this.groupBox8.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
     this.groupBox8.Controls.Add(this.IntInput_Lx5Item1NO);
     this.groupBox8.Controls.Add(this.IntInput_Lx5Item1LDX);
     this.groupBox8.Controls.Add(this.IntInput_Lx5Item1SPX);
     this.groupBox8.Controls.Add(this.Cbx_Lx5Item1LGJXG);
     this.groupBox8.Controls.Add(this.Cbx_Lx5Item1DKJ);
     this.groupBox8.Controls.Add(this.Cbx_Lx5Item1WXGBZ);
     this.groupBox8.Controls.Add(this.labelX48);
     this.groupBox8.Controls.Add(this.labelX52);
     this.groupBox8.Controls.Add(this.labelX49);
     this.groupBox8.Controls.Add(this.labelX62);
     this.groupBox8.Controls.Add(this.labelX50);
     this.groupBox8.Controls.Add(this.labelX51);
     this.groupBox8.Controls.Add(this.Cbx_Lx5Item1LDX);
     this.groupBox8.Controls.Add(this.Cbx_Lx5Item1SPX);
     this.groupBox8.Controls.Add(this.Cbx_Lx5Item1WXG);
     this.groupBox8.Controls.Add(this.labelX45);
     this.groupBox8.Controls.Add(this.labelX46);
     this.groupBox8.Controls.Add(this.labelX47);
     this.groupBox8.Controls.Add(this.Cbx_Lx5Item1LGG);
     this.groupBox8.Controls.Add(this.labelX44);
     this.groupBox8.Controls.Add(this.Cbx_Lx5Item1HJ);
     this.groupBox8.Controls.Add(this.Cbx_Lx5Item1JHG);
     this.groupBox8.Controls.Add(this.Cbx_Lx5Item1ZJ);
     this.groupBox8.Controls.Add(this.labelX39);
     this.groupBox8.Controls.Add(this.labelX40);
     this.groupBox8.Controls.Add(this.labelX41);
     this.groupBox8.Controls.Add(this.labelX43);
     this.groupBox8.Controls.Add(this.DbInput_Lx5Item2GD);
     this.groupBox8.Controls.Add(this.DbInput_Lx5Item1BJ);
     this.groupBox8.Controls.Add(this.labelX38);
     this.groupBox8.Dock = System.Windows.Forms.DockStyle.Fill;
     this.groupBox8.Location = new System.Drawing.Point(1, 1);
     this.groupBox8.Name = "groupBox8";
     this.groupBox8.Size = new System.Drawing.Size(636, 338);
     this.groupBox8.TabIndex = 3;
     this.groupBox8.TabStop = false;
     //
     // IntInput_Lx5Item1NO
     //
     //
     //
     //
     this.IntInput_Lx5Item1NO.BackgroundStyle.Class = "DateTimeInputBackground";
     this.IntInput_Lx5Item1NO.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.IntInput_Lx5Item1NO.ButtonFreeText.Shortcut = DevComponents.DotNetBar.eShortcut.F2;
     this.IntInput_Lx5Item1NO.Location = new System.Drawing.Point(465, 211);
     this.IntInput_Lx5Item1NO.MinValue = 0;
     this.IntInput_Lx5Item1NO.Name = "IntInput_Lx5Item1NO";
     this.IntInput_Lx5Item1NO.ShowUpDown = true;
     this.IntInput_Lx5Item1NO.Size = new System.Drawing.Size(80, 21);
     this.IntInput_Lx5Item1NO.TabIndex = 99;
     this.IntInput_Lx5Item1NO.Value = 30;
     //
     // IntInput_Lx5Item1LDX
     //
     //
     //
     //
     this.IntInput_Lx5Item1LDX.BackgroundStyle.Class = "DateTimeInputBackground";
     this.IntInput_Lx5Item1LDX.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.IntInput_Lx5Item1LDX.ButtonFreeText.Shortcut = DevComponents.DotNetBar.eShortcut.F2;
     this.IntInput_Lx5Item1LDX.Location = new System.Drawing.Point(465, 168);
     this.IntInput_Lx5Item1LDX.MinValue = 1;
     this.IntInput_Lx5Item1LDX.Name = "IntInput_Lx5Item1LDX";
     this.IntInput_Lx5Item1LDX.ShowUpDown = true;
     this.IntInput_Lx5Item1LDX.Size = new System.Drawing.Size(80, 21);
     this.IntInput_Lx5Item1LDX.TabIndex = 99;
     this.IntInput_Lx5Item1LDX.Value = 1;
     //
     // IntInput_Lx5Item1SPX
     //
     //
     //
     //
     this.IntInput_Lx5Item1SPX.BackgroundStyle.Class = "DateTimeInputBackground";
     this.IntInput_Lx5Item1SPX.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.IntInput_Lx5Item1SPX.ButtonFreeText.Shortcut = DevComponents.DotNetBar.eShortcut.F2;
     this.IntInput_Lx5Item1SPX.Location = new System.Drawing.Point(465, 125);
     this.IntInput_Lx5Item1SPX.MinValue = 1;
     this.IntInput_Lx5Item1SPX.Name = "IntInput_Lx5Item1SPX";
     this.IntInput_Lx5Item1SPX.ShowUpDown = true;
     this.IntInput_Lx5Item1SPX.Size = new System.Drawing.Size(80, 21);
     this.IntInput_Lx5Item1SPX.TabIndex = 100;
     this.IntInput_Lx5Item1SPX.Value = 1;
     //
     // Cbx_Lx5Item1LGJXG
     //
     this.Cbx_Lx5Item1LGJXG.DisplayMember = "Text";
     this.Cbx_Lx5Item1LGJXG.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.Cbx_Lx5Item1LGJXG.FormattingEnabled = true;
     this.Cbx_Lx5Item1LGJXG.ItemHeight = 15;
     this.Cbx_Lx5Item1LGJXG.Items.AddRange(new object[] {
     this.comboItem212,
     this.comboItem213});
     this.Cbx_Lx5Item1LGJXG.Location = new System.Drawing.Point(465, 254);
     this.Cbx_Lx5Item1LGJXG.Name = "Cbx_Lx5Item1LGJXG";
     this.Cbx_Lx5Item1LGJXG.Size = new System.Drawing.Size(80, 21);
     this.Cbx_Lx5Item1LGJXG.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.Cbx_Lx5Item1LGJXG.TabIndex = 97;
     //
     // comboItem212
     //
     this.comboItem212.Text = "���˼���б��";
     //
     // comboItem213
     //
     this.comboItem213.Text = "���˼���б��";
     //
     // Cbx_Lx5Item1DKJ
     //
     this.Cbx_Lx5Item1DKJ.DisplayMember = "Text";
     this.Cbx_Lx5Item1DKJ.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.Cbx_Lx5Item1DKJ.FormattingEnabled = true;
     this.Cbx_Lx5Item1DKJ.ItemHeight = 15;
     this.Cbx_Lx5Item1DKJ.Items.AddRange(new object[] {
     this.comboItem201,
     this.comboItem202});
     this.Cbx_Lx5Item1DKJ.Location = new System.Drawing.Point(465, 39);
     this.Cbx_Lx5Item1DKJ.Name = "Cbx_Lx5Item1DKJ";
     this.Cbx_Lx5Item1DKJ.Size = new System.Drawing.Size(80, 21);
     this.Cbx_Lx5Item1DKJ.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.Cbx_Lx5Item1DKJ.TabIndex = 97;
     //
     // comboItem201
     //
     this.comboItem201.Text = "1";
     //
     // comboItem202
     //
     this.comboItem202.Text = "2";
     //
     // Cbx_Lx5Item1WXGBZ
     //
     this.Cbx_Lx5Item1WXGBZ.DisplayMember = "Text";
     this.Cbx_Lx5Item1WXGBZ.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.Cbx_Lx5Item1WXGBZ.FormattingEnabled = true;
     this.Cbx_Lx5Item1WXGBZ.ItemHeight = 15;
     this.Cbx_Lx5Item1WXGBZ.Items.AddRange(new object[] {
     this.comboItem203,
     this.comboItem204,
     this.comboItem205,
     this.comboItem206,
     this.comboItem207,
     this.comboItem208});
     this.Cbx_Lx5Item1WXGBZ.Location = new System.Drawing.Point(465, 82);
     this.Cbx_Lx5Item1WXGBZ.Name = "Cbx_Lx5Item1WXGBZ";
     this.Cbx_Lx5Item1WXGBZ.Size = new System.Drawing.Size(80, 21);
     this.Cbx_Lx5Item1WXGBZ.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.Cbx_Lx5Item1WXGBZ.TabIndex = 98;
     //
     // comboItem203
     //
     this.comboItem203.Text = "1";
     //
     // comboItem204
     //
     this.comboItem204.Text = "2";
     //
     // comboItem205
     //
     this.comboItem205.Text = "3";
     //
     // comboItem206
     //
     this.comboItem206.Text = "4";
     //
     // comboItem207
     //
     this.comboItem207.Text = "5";
     //
     // comboItem208
     //
     this.comboItem208.Text = "6";
     //
     // labelX48
     //
     this.labelX48.BackColor = System.Drawing.SystemColors.Control;
     //
     //
     //
     this.labelX48.BackgroundStyle.Class = "";
     this.labelX48.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX48.Location = new System.Drawing.Point(292, 126);
     this.labelX48.Name = "labelX48";
     this.labelX48.Size = new System.Drawing.Size(171, 20);
     this.labelX48.TabIndex = 95;
     this.labelX48.Text = "ˮƽб�˲���(����һ��)";
     this.labelX48.TextAlignment = System.Drawing.StringAlignment.Far;
     //
     // labelX52
     //
     this.labelX52.BackColor = System.Drawing.SystemColors.Control;
     //
     //
     //
     this.labelX52.BackgroundStyle.Class = "";
     this.labelX52.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX52.Location = new System.Drawing.Point(292, 212);
     this.labelX52.Name = "labelX52";
     this.labelX52.Size = new System.Drawing.Size(171, 20);
     this.labelX52.TabIndex = 96;
     this.labelX52.Text = "�ɵ���������������ֵN0(kN)";
     this.labelX52.TextAlignment = System.Drawing.StringAlignment.Far;
     //
     // labelX49
     //
     this.labelX49.BackColor = System.Drawing.SystemColors.Control;
     //
     //
     //
     this.labelX49.BackgroundStyle.Class = "";
     this.labelX49.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX49.Location = new System.Drawing.Point(292, 169);
     this.labelX49.Name = "labelX49";
     this.labelX49.Size = new System.Drawing.Size(171, 20);
     this.labelX49.TabIndex = 96;
     this.labelX49.Text = "�ȵ�б�˲���(����һ��)";
     this.labelX49.TextAlignment = System.Drawing.StringAlignment.Far;
     //
     // labelX62
     //
     this.labelX62.BackColor = System.Drawing.SystemColors.Control;
     //
     //
     //
     this.labelX62.BackgroundStyle.Class = "";
     this.labelX62.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX62.Location = new System.Drawing.Point(292, 255);
     this.labelX62.Name = "labelX62";
     this.labelX62.Size = new System.Drawing.Size(171, 20);
     this.labelX62.TabIndex = 93;
     this.labelX62.Text = "���˼�б������";
     this.labelX62.TextAlignment = System.Drawing.StringAlignment.Far;
     //
     // labelX50
     //
     this.labelX50.BackColor = System.Drawing.SystemColors.Control;
     //
     //
     //
     this.labelX50.BackgroundStyle.Class = "";
     this.labelX50.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX50.Location = new System.Drawing.Point(292, 40);
     this.labelX50.Name = "labelX50";
     this.labelX50.Size = new System.Drawing.Size(171, 20);
     this.labelX50.TabIndex = 93;
     this.labelX50.Text = "������˸���njg";
     this.labelX50.TextAlignment = System.Drawing.StringAlignment.Far;
     //
     // labelX51
     //
     this.labelX51.BackColor = System.Drawing.SystemColors.Control;
     //
     //
     //
     this.labelX51.BackgroundStyle.Class = "";
     this.labelX51.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX51.Location = new System.Drawing.Point(292, 83);
     this.labelX51.Name = "labelX51";
     this.labelX51.Size = new System.Drawing.Size(171, 20);
     this.labelX51.TabIndex = 94;
     this.labelX51.Text = "��б�˲���(����һ��)";
     this.labelX51.TextAlignment = System.Drawing.StringAlignment.Far;
     //
     // Cbx_Lx5Item1LDX
     //
     this.Cbx_Lx5Item1LDX.DisplayMember = "Text";
     this.Cbx_Lx5Item1LDX.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.Cbx_Lx5Item1LDX.FormattingEnabled = true;
     this.Cbx_Lx5Item1LDX.ItemHeight = 15;
     this.Cbx_Lx5Item1LDX.Items.AddRange(new object[] {
     this.comboItem188,
     this.comboItem189,
     this.comboItem190,
     this.comboItem191,
     this.comboItem192});
     this.Cbx_Lx5Item1LDX.Location = new System.Drawing.Point(147, 297);
     this.Cbx_Lx5Item1LDX.Name = "Cbx_Lx5Item1LDX";
     this.Cbx_Lx5Item1LDX.Size = new System.Drawing.Size(86, 21);
     this.Cbx_Lx5Item1LDX.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.Cbx_Lx5Item1LDX.TabIndex = 90;
     //
     // comboItem188
     //
     this.comboItem188.Text = "XG-0912";
     //
     // comboItem189
     //
     this.comboItem189.Text = "XG-1212";
     //
     // comboItem190
     //
     this.comboItem190.Text = "XG-1218";
     //
     // comboItem191
     //
     this.comboItem191.Text = "XG-1518";
     //
     // comboItem192
     //
     this.comboItem192.Text = "XG-1818";
     //
     // Cbx_Lx5Item1SPX
     //
     this.Cbx_Lx5Item1SPX.DisplayMember = "Text";
     this.Cbx_Lx5Item1SPX.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.Cbx_Lx5Item1SPX.FormattingEnabled = true;
     this.Cbx_Lx5Item1SPX.ItemHeight = 15;
     this.Cbx_Lx5Item1SPX.Items.AddRange(new object[] {
     this.comboItem193,
     this.comboItem194,
     this.comboItem195});
     this.Cbx_Lx5Item1SPX.Location = new System.Drawing.Point(147, 261);
     this.Cbx_Lx5Item1SPX.Name = "Cbx_Lx5Item1SPX";
     this.Cbx_Lx5Item1SPX.Size = new System.Drawing.Size(86, 21);
     this.Cbx_Lx5Item1SPX.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.Cbx_Lx5Item1SPX.TabIndex = 91;
     //
     // comboItem193
     //
     this.comboItem193.Text = "ZXG-0912";
     //
     // comboItem194
     //
     this.comboItem194.Text = "ZXG-1212";
     //
     // comboItem195
     //
     this.comboItem195.Text = "ZXG-1218";
     //
     // Cbx_Lx5Item1WXG
     //
     this.Cbx_Lx5Item1WXG.DisplayMember = "Text";
     this.Cbx_Lx5Item1WXG.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.Cbx_Lx5Item1WXG.FormattingEnabled = true;
     this.Cbx_Lx5Item1WXG.ItemHeight = 15;
     this.Cbx_Lx5Item1WXG.Items.AddRange(new object[] {
     this.comboItem196,
     this.comboItem197,
     this.comboItem198,
     this.comboItem199,
     this.comboItem200});
     this.Cbx_Lx5Item1WXG.Location = new System.Drawing.Point(147, 225);
     this.Cbx_Lx5Item1WXG.Name = "Cbx_Lx5Item1WXG";
     this.Cbx_Lx5Item1WXG.Size = new System.Drawing.Size(86, 21);
     this.Cbx_Lx5Item1WXG.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.Cbx_Lx5Item1WXG.TabIndex = 92;
     //
     // comboItem196
     //
     this.comboItem196.Text = "XG-0912";
     //
     // comboItem197
     //
     this.comboItem197.Text = "XG-1212";
     //
     // comboItem198
     //
     this.comboItem198.Text = "XG-1218";
     //
     // comboItem199
     //
     this.comboItem199.Text = "XG-1518";
     //
     // comboItem200
     //
     this.comboItem200.Text = "XG-1818";
     //
     // labelX45
     //
     this.labelX45.BackColor = System.Drawing.SystemColors.Control;
     //
     //
     //
     this.labelX45.BackgroundStyle.Class = "";
     this.labelX45.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX45.Location = new System.Drawing.Point(16, 296);
     this.labelX45.Name = "labelX45";
     this.labelX45.Size = new System.Drawing.Size(130, 20);
     this.labelX45.TabIndex = 88;
     this.labelX45.Text = "�ȵ�б�˸ֹ�����";
     this.labelX45.TextAlignment = System.Drawing.StringAlignment.Far;
     //
     // labelX46
     //
     this.labelX46.BackColor = System.Drawing.SystemColors.Control;
     //
     //
     //
     this.labelX46.BackgroundStyle.Class = "";
     this.labelX46.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX46.Location = new System.Drawing.Point(16, 260);
     this.labelX46.Name = "labelX46";
     this.labelX46.Size = new System.Drawing.Size(130, 20);
     this.labelX46.TabIndex = 87;
     this.labelX46.Text = "ˮƽб�˸ֹ�����";
     this.labelX46.TextAlignment = System.Drawing.StringAlignment.Far;
     //
     // labelX47
     //
     this.labelX47.BackColor = System.Drawing.SystemColors.Control;
     //
     //
     //
     this.labelX47.BackgroundStyle.Class = "";
     this.labelX47.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX47.Location = new System.Drawing.Point(16, 224);
     this.labelX47.Name = "labelX47";
     this.labelX47.Size = new System.Drawing.Size(130, 20);
     this.labelX47.TabIndex = 89;
     this.labelX47.Text = "��б�˸ֹ�����";
     this.labelX47.TextAlignment = System.Drawing.StringAlignment.Far;
     //
     // Cbx_Lx5Item1LGG
     //
     this.Cbx_Lx5Item1LGG.DisplayMember = "Text";
     this.Cbx_Lx5Item1LGG.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.Cbx_Lx5Item1LGG.FormattingEnabled = true;
     this.Cbx_Lx5Item1LGG.ItemHeight = 15;
     this.Cbx_Lx5Item1LGG.Items.AddRange(new object[] {
     this.comboItem184,
     this.comboItem185,
     this.comboItem186,
     this.comboItem187});
     this.Cbx_Lx5Item1LGG.Location = new System.Drawing.Point(147, 189);
     this.Cbx_Lx5Item1LGG.Name = "Cbx_Lx5Item1LGG";
     this.Cbx_Lx5Item1LGG.Size = new System.Drawing.Size(86, 21);
     this.Cbx_Lx5Item1LGG.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.Cbx_Lx5Item1LGG.TabIndex = 86;
     //
     // comboItem184
     //
     this.comboItem184.Text = "LG-120";
     //
     // comboItem185
     //
     this.comboItem185.Text = "LG-180";
     //
     // comboItem186
     //
     this.comboItem186.Text = "LG-240";
     //
     // comboItem187
     //
     this.comboItem187.Text = "LG-300";
     //
     // labelX44
     //
     this.labelX44.BackColor = System.Drawing.SystemColors.Control;
     //
     //
     //
     this.labelX44.BackgroundStyle.Class = "";
     this.labelX44.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX44.Location = new System.Drawing.Point(16, 188);
     this.labelX44.Name = "labelX44";
     this.labelX44.Size = new System.Drawing.Size(130, 20);
     this.labelX44.TabIndex = 85;
     this.labelX44.Text = "���˸ֹ�����";
     this.labelX44.TextAlignment = System.Drawing.StringAlignment.Far;
     //
     // Cbx_Lx5Item1HJ
     //
     this.Cbx_Lx5Item1HJ.DisplayMember = "Text";
     this.Cbx_Lx5Item1HJ.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.Cbx_Lx5Item1HJ.FormattingEnabled = true;
     this.Cbx_Lx5Item1HJ.ItemHeight = 15;
     this.Cbx_Lx5Item1HJ.Items.AddRange(new object[] {
     this.comboItem168,
     this.comboItem169,
     this.comboItem170,
     this.comboItem171,
     this.comboItem172,
     this.comboItem173});
     this.Cbx_Lx5Item1HJ.Location = new System.Drawing.Point(147, 117);
     this.Cbx_Lx5Item1HJ.Name = "Cbx_Lx5Item1HJ";
     this.Cbx_Lx5Item1HJ.Size = new System.Drawing.Size(86, 21);
     this.Cbx_Lx5Item1HJ.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.Cbx_Lx5Item1HJ.TabIndex = 82;
     //
     // comboItem168
     //
     this.comboItem168.Text = "0.3";
     //
     // comboItem169
     //
     this.comboItem169.Text = "0.6";
     //
     // comboItem170
     //
     this.comboItem170.Text = "0.9";
     //
     // comboItem171
     //
     this.comboItem171.Text = "1.2";
     //
     // comboItem172
     //
     this.comboItem172.Text = "1.5";
     //
     // comboItem173
     //
     this.comboItem173.Text = "1.8";
     //
     // Cbx_Lx5Item1JHG
     //
     this.Cbx_Lx5Item1JHG.DisplayMember = "Text";
     this.Cbx_Lx5Item1JHG.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.Cbx_Lx5Item1JHG.FormattingEnabled = true;
     this.Cbx_Lx5Item1JHG.ItemHeight = 15;
     this.Cbx_Lx5Item1JHG.Items.AddRange(new object[] {
     this.comboItem174,
     this.comboItem175,
     this.comboItem176,
     this.comboItem177});
     this.Cbx_Lx5Item1JHG.Location = new System.Drawing.Point(147, 153);
     this.Cbx_Lx5Item1JHG.Name = "Cbx_Lx5Item1JHG";
     this.Cbx_Lx5Item1JHG.Size = new System.Drawing.Size(86, 21);
     this.Cbx_Lx5Item1JHG.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.Cbx_Lx5Item1JHG.TabIndex = 83;
     //
     // comboItem174
     //
     this.comboItem174.Text = "JHG-90";
     //
     // comboItem175
     //
     this.comboItem175.Text = "JHG-120";
     //
     // comboItem176
     //
     this.comboItem176.Text = "JHG-120+30";
     //
     // comboItem177
     //
     this.comboItem177.Text = "JHG-120+60";
     //
     // Cbx_Lx5Item1ZJ
     //
     this.Cbx_Lx5Item1ZJ.DisplayMember = "Text";
     this.Cbx_Lx5Item1ZJ.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.Cbx_Lx5Item1ZJ.FormattingEnabled = true;
     this.Cbx_Lx5Item1ZJ.ItemHeight = 15;
     this.Cbx_Lx5Item1ZJ.Items.AddRange(new object[] {
     this.comboItem178,
     this.comboItem179,
     this.comboItem180,
     this.comboItem181,
     this.comboItem182,
     this.comboItem183});
     this.Cbx_Lx5Item1ZJ.Location = new System.Drawing.Point(148, 81);
     this.Cbx_Lx5Item1ZJ.Name = "Cbx_Lx5Item1ZJ";
     this.Cbx_Lx5Item1ZJ.Size = new System.Drawing.Size(86, 21);
     this.Cbx_Lx5Item1ZJ.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.Cbx_Lx5Item1ZJ.TabIndex = 84;
     //
     // comboItem178
     //
     this.comboItem178.Text = "0.3";
     //
     // comboItem179
     //
     this.comboItem179.Text = "0.6";
     //
     // comboItem180
     //
     this.comboItem180.Text = "0.9";
     //
     // comboItem181
     //
     this.comboItem181.Text = "1.2";
     //
     // comboItem182
     //
     this.comboItem182.Text = "1.5";
     //
     // comboItem183
     //
     this.comboItem183.Text = "1.8";
     //
     // labelX39
     //
     this.labelX39.BackColor = System.Drawing.SystemColors.Control;
     //
     //
     //
     this.labelX39.BackgroundStyle.Class = "";
     this.labelX39.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX39.Location = new System.Drawing.Point(16, 152);
     this.labelX39.Name = "labelX39";
     this.labelX39.Size = new System.Drawing.Size(130, 20);
     this.labelX39.TabIndex = 80;
     this.labelX39.Text = "���˸ֹ�����";
     this.labelX39.TextAlignment = System.Drawing.StringAlignment.Far;
     //
     // labelX40
     //
     this.labelX40.BackColor = System.Drawing.SystemColors.Control;
     //
     //
     //
     this.labelX40.BackgroundStyle.Class = "";
     this.labelX40.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX40.Location = new System.Drawing.Point(16, 80);
     this.labelX40.Name = "labelX40";
     this.labelX40.Size = new System.Drawing.Size(130, 20);
     this.labelX40.TabIndex = 79;
     this.labelX40.Text = "�����ݾ�la(m)";
     this.labelX40.TextAlignment = System.Drawing.StringAlignment.Far;
     //
     // labelX41
     //
     this.labelX41.BackColor = System.Drawing.SystemColors.Control;
     //
     //
     //
     this.labelX41.BackgroundStyle.Class = "";
     this.labelX41.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX41.Location = new System.Drawing.Point(16, 116);
     this.labelX41.Name = "labelX41";
     this.labelX41.Size = new System.Drawing.Size(130, 20);
     this.labelX41.TabIndex = 81;
     this.labelX41.Text = "���˺��lb(m)";
     this.labelX41.TextAlignment = System.Drawing.StringAlignment.Far;
     //
     // labelX43
     //
     this.labelX43.BackColor = System.Drawing.SystemColors.Control;
     //
     //
     //
     this.labelX43.BackgroundStyle.Class = "";
     this.labelX43.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX43.Location = new System.Drawing.Point(16, 44);
     this.labelX43.Name = "labelX43";
     this.labelX43.Size = new System.Drawing.Size(130, 20);
     this.labelX43.TabIndex = 77;
     this.labelX43.Text = "���ּܴ���߶�H(m)";
     this.labelX43.TextAlignment = System.Drawing.StringAlignment.Far;
     //
     // DbInput_Lx5Item2GD
     //
     //
     //
     //
     this.DbInput_Lx5Item2GD.BackgroundStyle.Class = "DateTimeInputBackground";
     this.DbInput_Lx5Item2GD.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.DbInput_Lx5Item2GD.ButtonFreeText.Shortcut = DevComponents.DotNetBar.eShortcut.F2;
     this.DbInput_Lx5Item2GD.Increment = 0.1;
     this.DbInput_Lx5Item2GD.Location = new System.Drawing.Point(148, 45);
     this.DbInput_Lx5Item2GD.MaxValue = 50;
     this.DbInput_Lx5Item2GD.MinValue = 0;
     this.DbInput_Lx5Item2GD.Name = "DbInput_Lx5Item2GD";
     this.DbInput_Lx5Item2GD.ShowUpDown = true;
     this.DbInput_Lx5Item2GD.Size = new System.Drawing.Size(87, 21);
     this.DbInput_Lx5Item2GD.TabIndex = 78;
     this.DbInput_Lx5Item2GD.Value = 15;
     //
     // DbInput_Lx5Item1BJ
     //
     //
     //
     //
     this.DbInput_Lx5Item1BJ.BackgroundStyle.Class = "DateTimeInputBackground";
     this.DbInput_Lx5Item1BJ.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.DbInput_Lx5Item1BJ.ButtonFreeText.Shortcut = DevComponents.DotNetBar.eShortcut.F2;
     this.DbInput_Lx5Item1BJ.Increment = 1;
     this.DbInput_Lx5Item1BJ.Location = new System.Drawing.Point(148, 9);
     this.DbInput_Lx5Item1BJ.MaxValue = 1.8;
     this.DbInput_Lx5Item1BJ.MinValue = 1.2;
     this.DbInput_Lx5Item1BJ.Name = "DbInput_Lx5Item1BJ";
     this.DbInput_Lx5Item1BJ.ShowUpDown = true;
     this.DbInput_Lx5Item1BJ.Size = new System.Drawing.Size(87, 21);
     this.DbInput_Lx5Item1BJ.TabIndex = 74;
     this.DbInput_Lx5Item1BJ.Value = 1.8;
     //
     // labelX38
     //
     this.labelX38.BackColor = System.Drawing.SystemColors.Control;
     //
     //
     //
     this.labelX38.BackgroundStyle.Class = "";
     this.labelX38.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX38.Location = new System.Drawing.Point(16, 8);
     this.labelX38.Name = "labelX38";
     this.labelX38.Size = new System.Drawing.Size(130, 20);
     this.labelX38.TabIndex = 73;
     this.labelX38.Text = "����h(m)";
     this.labelX38.TextAlignment = System.Drawing.StringAlignment.Far;
     //
     // LX5tabItem1
     //
     this.LX5tabItem1.AttachedControl = this.tabControlPanel17;
     this.LX5tabItem1.Name = "LX5tabItem1";
     this.LX5tabItem1.Text = "5���ּܴ������";
     this.LX5tabItem1.Visible = false;
     //
     // tabControlPanel16
     //
     this.tabControlPanel16.Controls.Add(this.groupBox19);
     this.tabControlPanel16.Controls.Add(this.groupBox7);
     this.tabControlPanel16.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabControlPanel16.Location = new System.Drawing.Point(0, 69);
     this.tabControlPanel16.Name = "tabControlPanel16";
     this.tabControlPanel16.Padding = new System.Windows.Forms.Padding(1);
     this.tabControlPanel16.Size = new System.Drawing.Size(638, 340);
     this.tabControlPanel16.Style.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(253)))), ((int)(((byte)(253)))), ((int)(((byte)(254)))));
     this.tabControlPanel16.Style.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(157)))), ((int)(((byte)(188)))), ((int)(((byte)(227)))));
     this.tabControlPanel16.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.tabControlPanel16.Style.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(146)))), ((int)(((byte)(165)))), ((int)(((byte)(199)))));
     this.tabControlPanel16.Style.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Right)
                 | DevComponents.DotNetBar.eBorderSide.Bottom)));
     this.tabControlPanel16.Style.GradientAngle = 90;
     this.tabControlPanel16.TabIndex = 17;
     this.tabControlPanel16.TabItem = this.LX4tabItem4;
     //
     // groupBox19
     //
     this.groupBox19.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
     this.groupBox19.Controls.Add(this.Btn_Lx4Item4Search1);
     this.groupBox19.Controls.Add(this.DbInput_Lx4Item4TZXS);
     this.groupBox19.Controls.Add(this.Btn_Lx4Item4Search2);
     this.groupBox19.Controls.Add(this.Tb_Lx4Item4DJCZL);
     this.groupBox19.Controls.Add(this.labelX37);
     this.groupBox19.Controls.Add(this.labelX33);
     this.groupBox19.Controls.Add(this.Cb_Lx4Item4DJTLX);
     this.groupBox19.Controls.Add(this.groupBox20);
     this.groupBox19.Controls.Add(this.labelX32);
     this.groupBox19.Dock = System.Windows.Forms.DockStyle.Right;
     this.groupBox19.Location = new System.Drawing.Point(292, 1);
     this.groupBox19.Name = "groupBox19";
     this.groupBox19.Size = new System.Drawing.Size(345, 338);
     this.groupBox19.TabIndex = 2;
     this.groupBox19.TabStop = false;
     this.groupBox19.Text = "�ػ�������";
     //
     // Btn_Lx4Item4Search1
     //
     this.Btn_Lx4Item4Search1.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.Btn_Lx4Item4Search1.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.Btn_Lx4Item4Search1.Font = new System.Drawing.Font("����", 7.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.Btn_Lx4Item4Search1.Image = global::Framework.Properties.Resources.Search;
     this.Btn_Lx4Item4Search1.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.Btn_Lx4Item4Search1.ImeMode = System.Windows.Forms.ImeMode.NoControl;
     this.Btn_Lx4Item4Search1.Location = new System.Drawing.Point(282, 37);
     this.Btn_Lx4Item4Search1.Name = "Btn_Lx4Item4Search1";
     this.Btn_Lx4Item4Search1.Size = new System.Drawing.Size(57, 52);
     this.Btn_Lx4Item4Search1.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.Btn_Lx4Item4Search1.TabIndex = 10;
     this.Btn_Lx4Item4Search1.Text = "��ѯͼ��";
     this.Btn_Lx4Item4Search1.Click += new System.EventHandler(this.Btn_Lx4Item4Search1_Click);
     //
     // DbInput_Lx4Item4TZXS
     //
     //
     //
     //
     this.DbInput_Lx4Item4TZXS.BackgroundStyle.Class = "DateTimeInputBackground";
     this.DbInput_Lx4Item4TZXS.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.DbInput_Lx4Item4TZXS.ButtonFreeText.Shortcut = DevComponents.DotNetBar.eShortcut.F2;
     this.DbInput_Lx4Item4TZXS.Increment = 0.1;
     this.DbInput_Lx4Item4TZXS.Location = new System.Drawing.Point(148, 227);
     this.DbInput_Lx4Item4TZXS.MaxValue = 1;
     this.DbInput_Lx4Item4TZXS.MinValue = 0;
     this.DbInput_Lx4Item4TZXS.Name = "DbInput_Lx4Item4TZXS";
     this.DbInput_Lx4Item4TZXS.ShowUpDown = true;
     this.DbInput_Lx4Item4TZXS.Size = new System.Drawing.Size(80, 21);
     this.DbInput_Lx4Item4TZXS.TabIndex = 9;
     this.DbInput_Lx4Item4TZXS.Value = 1;
     //
     // Btn_Lx4Item4Search2
     //
     this.Btn_Lx4Item4Search2.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.Btn_Lx4Item4Search2.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.Btn_Lx4Item4Search2.Font = new System.Drawing.Font("����", 7.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.Btn_Lx4Item4Search2.Image = global::Framework.Properties.Resources.Search;
     this.Btn_Lx4Item4Search2.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.Btn_Lx4Item4Search2.ImeMode = System.Windows.Forms.ImeMode.NoControl;
     this.Btn_Lx4Item4Search2.Location = new System.Drawing.Point(242, 211);
     this.Btn_Lx4Item4Search2.Name = "Btn_Lx4Item4Search2";
     this.Btn_Lx4Item4Search2.Size = new System.Drawing.Size(57, 52);
     this.Btn_Lx4Item4Search2.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.Btn_Lx4Item4Search2.TabIndex = 8;
     this.Btn_Lx4Item4Search2.Text = "��ѯͼ��";
     this.Btn_Lx4Item4Search2.Click += new System.EventHandler(this.Btn_Lx4Item4Search2_Click);
     //
     // Tb_Lx4Item4DJCZL
     //
     //
     //
     //
     this.Tb_Lx4Item4DJCZL.Border.Class = "TextBoxBorder";
     this.Tb_Lx4Item4DJCZL.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.Tb_Lx4Item4DJCZL.Location = new System.Drawing.Point(193, 67);
     this.Tb_Lx4Item4DJCZL.Name = "Tb_Lx4Item4DJCZL";
     this.Tb_Lx4Item4DJCZL.ReadOnly = true;
     this.Tb_Lx4Item4DJCZL.Size = new System.Drawing.Size(84, 21);
     this.Tb_Lx4Item4DJCZL.TabIndex = 7;
     this.Tb_Lx4Item4DJCZL.Text = "200";
     //
     // labelX37
     //
     //
     //
     //
     this.labelX37.BackgroundStyle.Class = "";
     this.labelX37.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX37.Location = new System.Drawing.Point(25, 225);
     this.labelX37.Name = "labelX37";
     this.labelX37.Size = new System.Drawing.Size(129, 23);
     this.labelX37.TabIndex = 6;
     this.labelX37.Text = "�ػ�����������ϵ����";
     //
     // labelX33
     //
     //
     //
     //
     this.labelX33.BackgroundStyle.Class = "";
     this.labelX33.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX33.Location = new System.Drawing.Point(18, 65);
     this.labelX33.Name = "labelX33";
     this.labelX33.Size = new System.Drawing.Size(180, 23);
     this.labelX33.TabIndex = 6;
     this.labelX33.Text = " �ػ���������׼ֵ��kN/m2����";
     //
     // Cb_Lx4Item4DJTLX
     //
     this.Cb_Lx4Item4DJTLX.DisplayMember = "Text";
     this.Cb_Lx4Item4DJTLX.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.Cb_Lx4Item4DJTLX.FormattingEnabled = true;
     this.Cb_Lx4Item4DJTLX.ItemHeight = 15;
     this.Cb_Lx4Item4DJTLX.Items.AddRange(new object[] {
     this.comboItem160,
     this.comboItem161,
     this.comboItem162,
     this.comboItem163,
     this.comboItem164,
     this.comboItem165,
     this.comboItem166,
     this.comboItem167});
     this.Cb_Lx4Item4DJTLX.Location = new System.Drawing.Point(100, 36);
     this.Cb_Lx4Item4DJTLX.Name = "Cb_Lx4Item4DJTLX";
     this.Cb_Lx4Item4DJTLX.Size = new System.Drawing.Size(177, 21);
     this.Cb_Lx4Item4DJTLX.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.Cb_Lx4Item4DJTLX.TabIndex = 5;
     this.Cb_Lx4Item4DJTLX.SelectedIndexChanged += new System.EventHandler(this.Cb_Lx4Item4DJTLX_SelectedIndexChanged);
     //
     // comboItem160
     //
     this.comboItem160.Text = "��ʯ";
     //
     // comboItem161
     //
     this.comboItem161.Text = "��ʯ��";
     //
     // comboItem162
     //
     this.comboItem162.Text = "ɰ��";
     //
     // comboItem163
     //
     this.comboItem163.Text = "����";
     //
     // comboItem164
     //
     this.comboItem164.Text = "������";
     //
     // comboItem165
     //
     this.comboItem165.Text = "��ճ��";
     //
     // comboItem166
     //
     this.comboItem166.Text = "ճ����";
     //
     // comboItem167
     //
     this.comboItem167.Text = "��������";
     //
     // groupBox20
     //
     this.groupBox20.Controls.Add(this.DbIput_Lx4Item4DBK);
     this.groupBox20.Controls.Add(this.DbIput_Lx4Item4DBC);
     this.groupBox20.Controls.Add(this.labelX36);
     this.groupBox20.Controls.Add(this.labelX35);
     this.groupBox20.Location = new System.Drawing.Point(25, 114);
     this.groupBox20.Name = "groupBox20";
     this.groupBox20.Size = new System.Drawing.Size(219, 85);
     this.groupBox20.TabIndex = 8;
     this.groupBox20.TabStop = false;
     this.groupBox20.Text = "���ּܵ��ߴ�";
     //
     // DbIput_Lx4Item4DBK
     //
     //
     //
     //
     this.DbIput_Lx4Item4DBK.BackgroundStyle.Class = "DateTimeInputBackground";
     this.DbIput_Lx4Item4DBK.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.DbIput_Lx4Item4DBK.ButtonFreeText.Shortcut = DevComponents.DotNetBar.eShortcut.F2;
     this.DbIput_Lx4Item4DBK.Increment = 1;
     this.DbIput_Lx4Item4DBK.InputHorizontalAlignment = DevComponents.Editors.eHorizontalAlignment.Center;
     this.DbIput_Lx4Item4DBK.Location = new System.Drawing.Point(118, 47);
     this.DbIput_Lx4Item4DBK.MinValue = 0;
     this.DbIput_Lx4Item4DBK.Name = "DbIput_Lx4Item4DBK";
     this.DbIput_Lx4Item4DBK.ShowUpDown = true;
     this.DbIput_Lx4Item4DBK.Size = new System.Drawing.Size(85, 21);
     this.DbIput_Lx4Item4DBK.TabIndex = 22;
     this.DbIput_Lx4Item4DBK.Value = 0.3;
     //
     // DbIput_Lx4Item4DBC
     //
     //
     //
     //
     this.DbIput_Lx4Item4DBC.BackgroundStyle.Class = "DateTimeInputBackground";
     this.DbIput_Lx4Item4DBC.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.DbIput_Lx4Item4DBC.ButtonFreeText.Shortcut = DevComponents.DotNetBar.eShortcut.F2;
     this.DbIput_Lx4Item4DBC.Increment = 1;
     this.DbIput_Lx4Item4DBC.InputHorizontalAlignment = DevComponents.Editors.eHorizontalAlignment.Center;
     this.DbIput_Lx4Item4DBC.Location = new System.Drawing.Point(118, 20);
     this.DbIput_Lx4Item4DBC.MinValue = 0;
     this.DbIput_Lx4Item4DBC.Name = "DbIput_Lx4Item4DBC";
     this.DbIput_Lx4Item4DBC.ShowUpDown = true;
     this.DbIput_Lx4Item4DBC.Size = new System.Drawing.Size(85, 21);
     this.DbIput_Lx4Item4DBC.TabIndex = 22;
     this.DbIput_Lx4Item4DBC.Value = 0.3;
     //
     // labelX36
     //
     //
     //
     //
     this.labelX36.BackgroundStyle.Class = "";
     this.labelX36.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX36.Location = new System.Drawing.Point(58, 20);
     this.labelX36.Name = "labelX36";
     this.labelX36.Size = new System.Drawing.Size(60, 23);
     this.labelX36.TabIndex = 21;
     this.labelX36.Text = "��峤a��";
     //
     // labelX35
     //
     //
     //
     //
     this.labelX35.BackgroundStyle.Class = "";
     this.labelX35.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX35.Location = new System.Drawing.Point(58, 47);
     this.labelX35.Name = "labelX35";
     this.labelX35.Size = new System.Drawing.Size(60, 23);
     this.labelX35.TabIndex = 21;
     this.labelX35.Text = "����b��";
     //
     // labelX32
     //
     //
     //
     //
     this.labelX32.BackgroundStyle.Class = "";
     this.labelX32.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX32.Location = new System.Drawing.Point(25, 36);
     this.labelX32.Name = "labelX32";
     this.labelX32.Size = new System.Drawing.Size(79, 23);
     this.labelX32.TabIndex = 4;
     this.labelX32.Text = "�ػ������ͣ�";
     //
     // groupBox7
     //
     this.groupBox7.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
     this.groupBox7.Controls.Add(this.DbIput_Lx4Item4DFMJ);
     this.groupBox7.Controls.Add(this.labelX30);
     this.groupBox7.Controls.Add(this.Tb_Lx4Item4YFMJ);
     this.groupBox7.Controls.Add(this.labelX31);
     this.groupBox7.Controls.Add(this.groupBox18);
     this.groupBox7.Dock = System.Windows.Forms.DockStyle.Left;
     this.groupBox7.Location = new System.Drawing.Point(1, 1);
     this.groupBox7.Name = "groupBox7";
     this.groupBox7.Size = new System.Drawing.Size(290, 338);
     this.groupBox7.TabIndex = 2;
     this.groupBox7.TabStop = false;
     this.groupBox7.Text = "���������ϵ��";
     //
     // DbIput_Lx4Item4DFMJ
     //
     //
     //
     //
     this.DbIput_Lx4Item4DFMJ.BackgroundStyle.Class = "DateTimeInputBackground";
     this.DbIput_Lx4Item4DFMJ.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.DbIput_Lx4Item4DFMJ.ButtonFreeText.Shortcut = DevComponents.DotNetBar.eShortcut.F2;
     this.DbIput_Lx4Item4DFMJ.Increment = 1;
     this.DbIput_Lx4Item4DFMJ.InputHorizontalAlignment = DevComponents.Editors.eHorizontalAlignment.Center;
     this.DbIput_Lx4Item4DFMJ.Location = new System.Drawing.Point(115, 173);
     this.DbIput_Lx4Item4DFMJ.Name = "DbIput_Lx4Item4DFMJ";
     this.DbIput_Lx4Item4DFMJ.ShowUpDown = true;
     this.DbIput_Lx4Item4DFMJ.Size = new System.Drawing.Size(91, 21);
     this.DbIput_Lx4Item4DFMJ.TabIndex = 22;
     this.DbIput_Lx4Item4DFMJ.Value = 66.67;
     //
     // labelX30
     //
     //
     //
     //
     this.labelX30.BackgroundStyle.Class = "";
     this.labelX30.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX30.Location = new System.Drawing.Point(11, 176);
     this.labelX30.Name = "labelX30";
     this.labelX30.Size = new System.Drawing.Size(104, 23);
     this.labelX30.TabIndex = 21;
     this.labelX30.Text = "�������An(m2)��";
     //
     // Tb_Lx4Item4YFMJ
     //
     //
     //
     //
     this.Tb_Lx4Item4YFMJ.Border.Class = "TextBoxBorder";
     this.Tb_Lx4Item4YFMJ.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.Tb_Lx4Item4YFMJ.Location = new System.Drawing.Point(115, 140);
     this.Tb_Lx4Item4YFMJ.Name = "Tb_Lx4Item4YFMJ";
     this.Tb_Lx4Item4YFMJ.ReadOnly = true;
     this.Tb_Lx4Item4YFMJ.Size = new System.Drawing.Size(91, 21);
     this.Tb_Lx4Item4YFMJ.TabIndex = 20;
     this.Tb_Lx4Item4YFMJ.Text = "100";
     this.Tb_Lx4Item4YFMJ.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     //
     // labelX31
     //
     //
     //
     //
     this.labelX31.BackgroundStyle.Class = "";
     this.labelX31.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX31.Location = new System.Drawing.Point(36, 140);
     this.labelX31.Name = "labelX31";
     this.labelX31.Size = new System.Drawing.Size(85, 23);
     this.labelX31.TabIndex = 19;
     this.labelX31.Text = "ӭ�����Aw��";
     //
     // groupBox18
     //
     this.groupBox18.Controls.Add(this.Rdo_Lx4Item4CK);
     this.groupBox18.Controls.Add(this.Rdo_Lx4Item4QF);
     this.groupBox18.Location = new System.Drawing.Point(17, 38);
     this.groupBox18.Name = "groupBox18";
     this.groupBox18.Size = new System.Drawing.Size(207, 85);
     this.groupBox18.TabIndex = 8;
     this.groupBox18.TabStop = false;
     this.groupBox18.Text = "���ּܼ�����������״��";
     //
     // Rdo_Lx4Item4CK
     //
     this.Rdo_Lx4Item4CK.AutoSize = true;
     this.Rdo_Lx4Item4CK.Location = new System.Drawing.Point(14, 50);
     this.Rdo_Lx4Item4CK.Name = "Rdo_Lx4Item4CK";
     this.Rdo_Lx4Item4CK.Size = new System.Drawing.Size(131, 16);
     this.Rdo_Lx4Item4CK.TabIndex = 5;
     this.Rdo_Lx4Item4CK.TabStop = true;
     this.Rdo_Lx4Item4CK.Text = "��������ܺͿ���ǽ";
     this.Rdo_Lx4Item4CK.UseVisualStyleBackColor = true;
     //
     // Rdo_Lx4Item4QF
     //
     this.Rdo_Lx4Item4QF.AutoSize = true;
     this.Rdo_Lx4Item4QF.Checked = true;
     this.Rdo_Lx4Item4QF.Location = new System.Drawing.Point(14, 23);
     this.Rdo_Lx4Item4QF.Name = "Rdo_Lx4Item4QF";
     this.Rdo_Lx4Item4QF.Size = new System.Drawing.Size(71, 16);
     this.Rdo_Lx4Item4QF.TabIndex = 5;
     this.Rdo_Lx4Item4QF.TabStop = true;
     this.Rdo_Lx4Item4QF.Text = "ȫ���ǽ";
     this.Rdo_Lx4Item4QF.UseVisualStyleBackColor = true;
     //
     // LX4tabItem4
     //
     this.LX4tabItem4.AttachedControl = this.tabControlPanel16;
     this.LX4tabItem4.Name = "LX4tabItem4";
     this.LX4tabItem4.Text = "4���������ϵ��+�ػ�������";
     this.LX4tabItem4.Visible = false;
     //
     // tabControlPanel15
     //
     this.tabControlPanel15.Controls.Add(this.groupBox17);
     this.tabControlPanel15.Controls.Add(this.groupBox4);
     this.tabControlPanel15.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabControlPanel15.Location = new System.Drawing.Point(0, 69);
     this.tabControlPanel15.Name = "tabControlPanel15";
     this.tabControlPanel15.Padding = new System.Windows.Forms.Padding(1);
     this.tabControlPanel15.Size = new System.Drawing.Size(638, 340);
     this.tabControlPanel15.Style.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(253)))), ((int)(((byte)(253)))), ((int)(((byte)(254)))));
     this.tabControlPanel15.Style.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(157)))), ((int)(((byte)(188)))), ((int)(((byte)(227)))));
     this.tabControlPanel15.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.tabControlPanel15.Style.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(146)))), ((int)(((byte)(165)))), ((int)(((byte)(199)))));
     this.tabControlPanel15.Style.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Right)
                 | DevComponents.DotNetBar.eBorderSide.Bottom)));
     this.tabControlPanel15.Style.GradientAngle = 90;
     this.tabControlPanel15.TabIndex = 16;
     this.tabControlPanel15.TabItem = this.LX4tabItem3;
     //
     // groupBox17
     //
     this.groupBox17.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
     this.groupBox17.Controls.Add(this.DbInput_Lx4Item3SG);
     this.groupBox17.Controls.Add(this.IntInput_Lx4Item3CS);
     this.groupBox17.Controls.Add(this.Cbx_Lx4Item3YT);
     this.groupBox17.Controls.Add(this.labelX27);
     this.groupBox17.Controls.Add(this.labelX28);
     this.groupBox17.Controls.Add(this.labelX29);
     this.groupBox17.Dock = System.Windows.Forms.DockStyle.Right;
     this.groupBox17.Location = new System.Drawing.Point(308, 1);
     this.groupBox17.Name = "groupBox17";
     this.groupBox17.Size = new System.Drawing.Size(329, 338);
     this.groupBox17.TabIndex = 33;
     this.groupBox17.TabStop = false;
     this.groupBox17.Text = "����ز���";
     //
     // DbInput_Lx4Item3SG
     //
     //
     //
     //
     this.DbInput_Lx4Item3SG.BackgroundStyle.Class = "DateTimeInputBackground";
     this.DbInput_Lx4Item3SG.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.DbInput_Lx4Item3SG.ButtonFreeText.Shortcut = DevComponents.DotNetBar.eShortcut.F2;
     this.DbInput_Lx4Item3SG.Increment = 0.1;
     this.DbInput_Lx4Item3SG.Location = new System.Drawing.Point(133, 151);
     this.DbInput_Lx4Item3SG.MinValue = 0;
     this.DbInput_Lx4Item3SG.Name = "DbInput_Lx4Item3SG";
     this.DbInput_Lx4Item3SG.ShowUpDown = true;
     this.DbInput_Lx4Item3SG.Size = new System.Drawing.Size(135, 21);
     this.DbInput_Lx4Item3SG.TabIndex = 33;
     this.DbInput_Lx4Item3SG.Value = 3;
     //
     // IntInput_Lx4Item3CS
     //
     //
     //
     //
     this.IntInput_Lx4Item3CS.BackgroundStyle.Class = "DateTimeInputBackground";
     this.IntInput_Lx4Item3CS.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.IntInput_Lx4Item3CS.ButtonFreeText.Shortcut = DevComponents.DotNetBar.eShortcut.F2;
     this.IntInput_Lx4Item3CS.Location = new System.Drawing.Point(134, 101);
     this.IntInput_Lx4Item3CS.MinValue = 0;
     this.IntInput_Lx4Item3CS.Name = "IntInput_Lx4Item3CS";
     this.IntInput_Lx4Item3CS.ShowUpDown = true;
     this.IntInput_Lx4Item3CS.Size = new System.Drawing.Size(134, 21);
     this.IntInput_Lx4Item3CS.TabIndex = 32;
     this.IntInput_Lx4Item3CS.Value = 1;
     //
     // Cbx_Lx4Item3YT
     //
     this.Cbx_Lx4Item3YT.DisplayMember = "Text";
     this.Cbx_Lx4Item3YT.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.Cbx_Lx4Item3YT.FormattingEnabled = true;
     this.Cbx_Lx4Item3YT.ItemHeight = 15;
     this.Cbx_Lx4Item3YT.Items.AddRange(new object[] {
     this.comboItem158,
     this.comboItem159});
     this.Cbx_Lx4Item3YT.Location = new System.Drawing.Point(133, 54);
     this.Cbx_Lx4Item3YT.Name = "Cbx_Lx4Item3YT";
     this.Cbx_Lx4Item3YT.Size = new System.Drawing.Size(135, 21);
     this.Cbx_Lx4Item3YT.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.Cbx_Lx4Item3YT.TabIndex = 31;
     //
     // comboItem158
     //
     this.comboItem158.Text = "װ��ʩ�����ּ�";
     //
     // comboItem159
     //
     this.comboItem159.Text = "�ṹʩ�����ּ�";
     //
     // labelX27
     //
     //
     //
     //
     this.labelX27.BackgroundStyle.Class = "";
     this.labelX27.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX27.Location = new System.Drawing.Point(22, 150);
     this.labelX27.Name = "labelX27";
     this.labelX27.Size = new System.Drawing.Size(120, 41);
     this.labelX27.TabIndex = 30;
     this.labelX27.Text = "ʩ������ر�׼ֵ��\r\n   ��kN/m2�� ";
     //
     // labelX28
     //
     //
     //
     //
     this.labelX28.BackgroundStyle.Class = "";
     this.labelX28.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX28.Location = new System.Drawing.Point(46, 89);
     this.labelX28.Name = "labelX28";
     this.labelX28.Size = new System.Drawing.Size(95, 41);
     this.labelX28.TabIndex = 29;
     this.labelX28.Text = "ͬʱʩ��������";
     //
     // labelX29
     //
     //
     //
     //
     this.labelX29.BackgroundStyle.Class = "";
     this.labelX29.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX29.Location = new System.Drawing.Point(49, 43);
     this.labelX29.Name = "labelX29";
     this.labelX29.Size = new System.Drawing.Size(86, 41);
     this.labelX29.TabIndex = 28;
     this.labelX29.Text = "���ּ���;��";
     this.labelX29.TextAlignment = System.Drawing.StringAlignment.Far;
     //
     // groupBox4
     //
     this.groupBox4.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
     this.groupBox4.Controls.Add(this.groupBox14);
     this.groupBox4.Controls.Add(this.groupBox16);
     this.groupBox4.Dock = System.Windows.Forms.DockStyle.Left;
     this.groupBox4.Location = new System.Drawing.Point(1, 1);
     this.groupBox4.Name = "groupBox4";
     this.groupBox4.Size = new System.Drawing.Size(306, 338);
     this.groupBox4.TabIndex = 2;
     this.groupBox4.TabStop = false;
     this.groupBox4.Text = "���ú���";
     //
     // groupBox14
     //
     this.groupBox14.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
     this.groupBox14.Controls.Add(this.DbInput_Lx4Item3HL);
     this.groupBox14.Controls.Add(this.DbInput_Lx4Item3AQW);
     this.groupBox14.Controls.Add(this.Cbx_Lx4Item3JGJ);
     this.groupBox14.Controls.Add(this.labelX22);
     this.groupBox14.Controls.Add(this.labelX25);
     this.groupBox14.Controls.Add(this.labelX26);
     this.groupBox14.Location = new System.Drawing.Point(20, 165);
     this.groupBox14.Name = "groupBox14";
     this.groupBox14.Size = new System.Drawing.Size(276, 122);
     this.groupBox14.TabIndex = 33;
     this.groupBox14.TabStop = false;
     this.groupBox14.Text = "ÿ�׸߽��ּܽṹ���ز���";
     //
     // DbInput_Lx4Item3HL
     //
     //
     //
     //
     this.DbInput_Lx4Item3HL.BackgroundStyle.Class = "DateTimeInputBackground";
     this.DbInput_Lx4Item3HL.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.DbInput_Lx4Item3HL.ButtonFreeText.Shortcut = DevComponents.DotNetBar.eShortcut.F2;
     this.DbInput_Lx4Item3HL.Increment = 1;
     this.DbInput_Lx4Item3HL.Location = new System.Drawing.Point(126, 90);
     this.DbInput_Lx4Item3HL.MinValue = 0;
     this.DbInput_Lx4Item3HL.Name = "DbInput_Lx4Item3HL";
     this.DbInput_Lx4Item3HL.ShowUpDown = true;
     this.DbInput_Lx4Item3HL.Size = new System.Drawing.Size(143, 21);
     this.DbInput_Lx4Item3HL.TabIndex = 21;
     this.DbInput_Lx4Item3HL.Value = 0.2;
     //
     // DbInput_Lx4Item3AQW
     //
     //
     //
     //
     this.DbInput_Lx4Item3AQW.BackgroundStyle.Class = "DateTimeInputBackground";
     this.DbInput_Lx4Item3AQW.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.DbInput_Lx4Item3AQW.ButtonFreeText.Shortcut = DevComponents.DotNetBar.eShortcut.F2;
     this.DbInput_Lx4Item3AQW.Increment = 1;
     this.DbInput_Lx4Item3AQW.Location = new System.Drawing.Point(126, 56);
     this.DbInput_Lx4Item3AQW.MinValue = 0;
     this.DbInput_Lx4Item3AQW.Name = "DbInput_Lx4Item3AQW";
     this.DbInput_Lx4Item3AQW.ShowUpDown = true;
     this.DbInput_Lx4Item3AQW.Size = new System.Drawing.Size(143, 21);
     this.DbInput_Lx4Item3AQW.TabIndex = 21;
     this.DbInput_Lx4Item3AQW.Value = 0.2;
     //
     // Cbx_Lx4Item3JGJ
     //
     this.Cbx_Lx4Item3JGJ.DisplayMember = "Text";
     this.Cbx_Lx4Item3JGJ.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.Cbx_Lx4Item3JGJ.FormattingEnabled = true;
     this.Cbx_Lx4Item3JGJ.ItemHeight = 15;
     this.Cbx_Lx4Item3JGJ.Items.AddRange(new object[] {
     this.comboItem156,
     this.comboItem157});
     this.Cbx_Lx4Item3JGJ.Location = new System.Drawing.Point(126, 25);
     this.Cbx_Lx4Item3JGJ.Name = "Cbx_Lx4Item3JGJ";
     this.Cbx_Lx4Item3JGJ.Size = new System.Drawing.Size(143, 21);
     this.Cbx_Lx4Item3JGJ.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.Cbx_Lx4Item3JGJ.TabIndex = 20;
     //
     // comboItem156
     //
     this.comboItem156.Text = "0.06����42.0��2.5��";
     //
     // comboItem157
     //
     this.comboItem157.Text = "0.04����48.0��3.5��";
     //
     // labelX22
     //
     //
     //
     //
     this.labelX22.BackgroundStyle.Class = "";
     this.labelX22.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX22.Location = new System.Drawing.Point(16, 91);
     this.labelX22.Name = "labelX22";
     this.labelX22.Size = new System.Drawing.Size(113, 20);
     this.labelX22.TabIndex = 12;
     this.labelX22.Text = "��������(kN/m)��";
     this.labelX22.TextAlignment = System.Drawing.StringAlignment.Far;
     //
     // labelX25
     //
     //
     //
     //
     this.labelX25.BackgroundStyle.Class = "";
     this.labelX25.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX25.Location = new System.Drawing.Point(11, 57);
     this.labelX25.Name = "labelX25";
     this.labelX25.Size = new System.Drawing.Size(118, 20);
     this.labelX25.TabIndex = 12;
     this.labelX25.Text = "��ȫ������(kN/m)��";
     this.labelX25.TextAlignment = System.Drawing.StringAlignment.Far;
     //
     // labelX26
     //
     //
     //
     //
     this.labelX26.BackgroundStyle.Class = "";
     this.labelX26.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX26.Location = new System.Drawing.Point(5, 25);
     this.labelX26.Name = "labelX26";
     this.labelX26.Size = new System.Drawing.Size(125, 20);
     this.labelX26.TabIndex = 12;
     this.labelX26.Text = "�ӹ̼����� (kN/m)��";
     this.labelX26.TextAlignment = System.Drawing.StringAlignment.Far;
     //
     // groupBox16
     //
     this.groupBox16.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
     this.groupBox16.Controls.Add(this.Cbx_Lx4Item3JSB);
     this.groupBox16.Controls.Add(this.IntInput_Lx4Item3SPJ);
     this.groupBox16.Controls.Add(this.IntInput_Lx4Item3JSB);
     this.groupBox16.Controls.Add(this.labelX63);
     this.groupBox16.Controls.Add(this.labelX34);
     this.groupBox16.Controls.Add(this.labelX21);
     this.groupBox16.Controls.Add(this.labelX20);
     this.groupBox16.Controls.Add(this.labelX19);
     this.groupBox16.Location = new System.Drawing.Point(20, 32);
     this.groupBox16.Name = "groupBox16";
     this.groupBox16.Size = new System.Drawing.Size(276, 122);
     this.groupBox16.TabIndex = 32;
     this.groupBox16.TabStop = false;
     this.groupBox16.Text = "ÿ�׸߽��ּܽṹ���ز���";
     //
     // Cbx_Lx4Item3JSB
     //
     this.Cbx_Lx4Item3JSB.DisplayMember = "Text";
     this.Cbx_Lx4Item3JSB.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.Cbx_Lx4Item3JSB.FormattingEnabled = true;
     this.Cbx_Lx4Item3JSB.ItemHeight = 15;
     this.Cbx_Lx4Item3JSB.Items.AddRange(new object[] {
     this.comboItem151,
     this.comboItem153,
     this.comboItem154,
     this.comboItem155});
     this.Cbx_Lx4Item3JSB.Location = new System.Drawing.Point(118, 91);
     this.Cbx_Lx4Item3JSB.Name = "Cbx_Lx4Item3JSB";
     this.Cbx_Lx4Item3JSB.Size = new System.Drawing.Size(98, 21);
     this.Cbx_Lx4Item3JSB.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.Cbx_Lx4Item3JSB.TabIndex = 20;
     //
     // comboItem151
     //
     this.comboItem151.Text = "P1803";
     //
     // comboItem153
     //
     this.comboItem153.Text = "P1804";
     //
     // comboItem154
     //
     this.comboItem154.Text = "P1805";
     //
     // comboItem155
     //
     this.comboItem155.Text = "P1806";
     //
     // IntInput_Lx4Item3SPJ
     //
     //
     //
     //
     this.IntInput_Lx4Item3SPJ.BackgroundStyle.Class = "DateTimeInputBackground";
     this.IntInput_Lx4Item3SPJ.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.IntInput_Lx4Item3SPJ.ButtonFreeText.Shortcut = DevComponents.DotNetBar.eShortcut.F2;
     this.IntInput_Lx4Item3SPJ.Location = new System.Drawing.Point(121, 56);
     this.IntInput_Lx4Item3SPJ.MinValue = 0;
     this.IntInput_Lx4Item3SPJ.Name = "IntInput_Lx4Item3SPJ";
     this.IntInput_Lx4Item3SPJ.ShowUpDown = true;
     this.IntInput_Lx4Item3SPJ.Size = new System.Drawing.Size(55, 21);
     this.IntInput_Lx4Item3SPJ.TabIndex = 13;
     this.IntInput_Lx4Item3SPJ.Value = 1;
     //
     // IntInput_Lx4Item3JSB
     //
     //
     //
     //
     this.IntInput_Lx4Item3JSB.BackgroundStyle.Class = "DateTimeInputBackground";
     this.IntInput_Lx4Item3JSB.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.IntInput_Lx4Item3JSB.ButtonFreeText.Shortcut = DevComponents.DotNetBar.eShortcut.F2;
     this.IntInput_Lx4Item3JSB.Location = new System.Drawing.Point(121, 25);
     this.IntInput_Lx4Item3JSB.MinValue = 0;
     this.IntInput_Lx4Item3JSB.Name = "IntInput_Lx4Item3JSB";
     this.IntInput_Lx4Item3JSB.ShowUpDown = true;
     this.IntInput_Lx4Item3JSB.Size = new System.Drawing.Size(55, 21);
     this.IntInput_Lx4Item3JSB.TabIndex = 13;
     this.IntInput_Lx4Item3JSB.Value = 1;
     //
     // labelX63
     //
     //
     //
     //
     this.labelX63.BackgroundStyle.Class = "";
     this.labelX63.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX63.Location = new System.Drawing.Point(174, 57);
     this.labelX63.Name = "labelX63";
     this.labelX63.Size = new System.Drawing.Size(43, 20);
     this.labelX63.TabIndex = 12;
     this.labelX63.Text = "��һ��";
     this.labelX63.TextAlignment = System.Drawing.StringAlignment.Far;
     //
     // labelX34
     //
     //
     //
     //
     this.labelX34.BackgroundStyle.Class = "";
     this.labelX34.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX34.Location = new System.Drawing.Point(173, 25);
     this.labelX34.Name = "labelX34";
     this.labelX34.Size = new System.Drawing.Size(43, 20);
     this.labelX34.TabIndex = 12;
     this.labelX34.Text = "��һ��";
     this.labelX34.TextAlignment = System.Drawing.StringAlignment.Far;
     //
     // labelX21
     //
     //
     //
     //
     this.labelX21.BackgroundStyle.Class = "";
     this.labelX21.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX21.Location = new System.Drawing.Point(9, 91);
     this.labelX21.Name = "labelX21";
     this.labelX21.Size = new System.Drawing.Size(113, 20);
     this.labelX21.TabIndex = 12;
     this.labelX21.Text = "���ְ����";
     this.labelX21.TextAlignment = System.Drawing.StringAlignment.Far;
     //
     // labelX20
     //
     //
     //
     //
     this.labelX20.BackgroundStyle.Class = "";
     this.labelX20.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX20.Location = new System.Drawing.Point(12, 57);
     this.labelX20.Name = "labelX20";
     this.labelX20.Size = new System.Drawing.Size(113, 20);
     this.labelX20.TabIndex = 12;
     this.labelX20.Text = "ˮƽ�ܴ��跽ʽ��";
     this.labelX20.TextAlignment = System.Drawing.StringAlignment.Far;
     //
     // labelX19
     //
     //
     //
     //
     this.labelX19.BackgroundStyle.Class = "";
     this.labelX19.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX19.Location = new System.Drawing.Point(12, 25);
     this.labelX19.Name = "labelX19";
     this.labelX19.Size = new System.Drawing.Size(113, 20);
     this.labelX19.TabIndex = 12;
     this.labelX19.Text = "���ְ���跽ʽ��";
     this.labelX19.TextAlignment = System.Drawing.StringAlignment.Far;
     //
     // LX4tabItem3
     //
     this.LX4tabItem3.AttachedControl = this.tabControlPanel15;
     this.LX4tabItem3.Name = "LX4tabItem3";
     this.LX4tabItem3.Text = "4���ú���+�����";
     this.LX4tabItem3.Visible = false;
     //
     // tabControlPanel14
     //
     this.tabControlPanel14.Controls.Add(this.groupBox3);
     this.tabControlPanel14.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabControlPanel14.Location = new System.Drawing.Point(0, 69);
     this.tabControlPanel14.Name = "tabControlPanel14";
     this.tabControlPanel14.Padding = new System.Windows.Forms.Padding(1);
     this.tabControlPanel14.Size = new System.Drawing.Size(638, 340);
     this.tabControlPanel14.Style.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(253)))), ((int)(((byte)(253)))), ((int)(((byte)(254)))));
     this.tabControlPanel14.Style.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(157)))), ((int)(((byte)(188)))), ((int)(((byte)(227)))));
     this.tabControlPanel14.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.tabControlPanel14.Style.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(146)))), ((int)(((byte)(165)))), ((int)(((byte)(199)))));
     this.tabControlPanel14.Style.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Right)
                 | DevComponents.DotNetBar.eBorderSide.Bottom)));
     this.tabControlPanel14.Style.GradientAngle = 90;
     this.tabControlPanel14.TabIndex = 15;
     this.tabControlPanel14.TabItem = this.LX4tabItem2;
     //
     // groupBox3
     //
     this.groupBox3.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
     this.groupBox3.Controls.Add(this.DbInput_Lx4Item2SP);
     this.groupBox3.Controls.Add(this.DbInput_Lx4Item2SX);
     this.groupBox3.Controls.Add(this.labelX64);
     this.groupBox3.Controls.Add(this.labelX65);
     this.groupBox3.Controls.Add(this.Grp_Lx4Item2HF);
     this.groupBox3.Controls.Add(this.Grp_Lx4Item2KJ);
     this.groupBox3.Controls.Add(this.Cbx_Lx4Item2LJFS);
     this.groupBox3.Controls.Add(this.DbInput_Lx4Item2BJ);
     this.groupBox3.Controls.Add(this.DbInput_Lx4Item2CD);
     this.groupBox3.Controls.Add(this.labelX11);
     this.groupBox3.Controls.Add(this.labelX9);
     this.groupBox3.Controls.Add(this.labelX7);
     this.groupBox3.Dock = System.Windows.Forms.DockStyle.Fill;
     this.groupBox3.Location = new System.Drawing.Point(1, 1);
     this.groupBox3.Name = "groupBox3";
     this.groupBox3.Size = new System.Drawing.Size(636, 338);
     this.groupBox3.TabIndex = 2;
     this.groupBox3.TabStop = false;
     //
     // DbInput_Lx4Item2SP
     //
     //
     //
     //
     this.DbInput_Lx4Item2SP.BackgroundStyle.Class = "DateTimeInputBackground";
     this.DbInput_Lx4Item2SP.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.DbInput_Lx4Item2SP.ButtonFreeText.Shortcut = DevComponents.DotNetBar.eShortcut.F2;
     this.DbInput_Lx4Item2SP.Increment = 0.1;
     this.DbInput_Lx4Item2SP.Location = new System.Drawing.Point(178, 158);
     this.DbInput_Lx4Item2SP.MaxValue = 8;
     this.DbInput_Lx4Item2SP.MinValue = 0;
     this.DbInput_Lx4Item2SP.Name = "DbInput_Lx4Item2SP";
     this.DbInput_Lx4Item2SP.ShowUpDown = true;
     this.DbInput_Lx4Item2SP.Size = new System.Drawing.Size(80, 21);
     this.DbInput_Lx4Item2SP.TabIndex = 96;
     this.DbInput_Lx4Item2SP.Value = 1.8;
     //
     // DbInput_Lx4Item2SX
     //
     //
     //
     //
     this.DbInput_Lx4Item2SX.BackgroundStyle.Class = "DateTimeInputBackground";
     this.DbInput_Lx4Item2SX.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.DbInput_Lx4Item2SX.ButtonFreeText.Shortcut = DevComponents.DotNetBar.eShortcut.F2;
     this.DbInput_Lx4Item2SX.Increment = 0.1;
     this.DbInput_Lx4Item2SX.Location = new System.Drawing.Point(178, 112);
     this.DbInput_Lx4Item2SX.MaxValue = 8;
     this.DbInput_Lx4Item2SX.MinValue = 0;
     this.DbInput_Lx4Item2SX.Name = "DbInput_Lx4Item2SX";
     this.DbInput_Lx4Item2SX.ShowUpDown = true;
     this.DbInput_Lx4Item2SX.Size = new System.Drawing.Size(80, 21);
     this.DbInput_Lx4Item2SX.TabIndex = 97;
     this.DbInput_Lx4Item2SX.Value = 1.8;
     //
     // labelX64
     //
     this.labelX64.BackColor = System.Drawing.Color.Transparent;
     //
     //
     //
     this.labelX64.BackgroundStyle.Class = "";
     this.labelX64.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX64.Location = new System.Drawing.Point(19, 158);
     this.labelX64.Name = "labelX64";
     this.labelX64.Size = new System.Drawing.Size(156, 20);
     this.labelX64.TabIndex = 94;
     this.labelX64.Text = "��ǽ��ˮƽ���H1(m):";
     this.labelX64.TextAlignment = System.Drawing.StringAlignment.Far;
     //
     // labelX65
     //
     this.labelX65.BackColor = System.Drawing.Color.Transparent;
     //
     //
     //
     this.labelX65.BackgroundStyle.Class = "";
     this.labelX65.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX65.Location = new System.Drawing.Point(27, 112);
     this.labelX65.Name = "labelX65";
     this.labelX65.Size = new System.Drawing.Size(156, 20);
     this.labelX65.TabIndex = 95;
     this.labelX65.Text = "��ǽ��������H1(m)��";
     this.labelX65.TextAlignment = System.Drawing.StringAlignment.Far;
     //
     // Grp_Lx4Item2HF
     //
     this.Grp_Lx4Item2HF.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
     this.Grp_Lx4Item2HF.Controls.Add(this.labelX12);
     this.Grp_Lx4Item2HF.Controls.Add(this.DbInput_Lx4Item2DJ);
     this.Grp_Lx4Item2HF.Enabled = false;
     this.Grp_Lx4Item2HF.Location = new System.Drawing.Point(323, 176);
     this.Grp_Lx4Item2HF.Name = "Grp_Lx4Item2HF";
     this.Grp_Lx4Item2HF.Size = new System.Drawing.Size(302, 82);
     this.Grp_Lx4Item2HF.TabIndex = 31;
     this.Grp_Lx4Item2HF.TabStop = false;
     this.Grp_Lx4Item2HF.Text = "��ǽ����ʽѡ�񡰺������ӡ�ʱ������д��������";
     //
     // labelX12
     //
     //
     //
     //
     this.labelX12.BackgroundStyle.Class = "";
     this.labelX12.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX12.Location = new System.Drawing.Point(5, 34);
     this.labelX12.Name = "labelX12";
     this.labelX12.Size = new System.Drawing.Size(211, 20);
     this.labelX12.TabIndex = 13;
     this.labelX12.Text = "�ԽӺ���Ŀ�����ѹǿ�ȣ�N/mm2����";
     this.labelX12.TextAlignment = System.Drawing.StringAlignment.Far;
     //
     // DbInput_Lx4Item2DJ
     //
     //
     //
     //
     this.DbInput_Lx4Item2DJ.BackgroundStyle.Class = "DateTimeInputBackground";
     this.DbInput_Lx4Item2DJ.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.DbInput_Lx4Item2DJ.ButtonFreeText.Shortcut = DevComponents.DotNetBar.eShortcut.F2;
     this.DbInput_Lx4Item2DJ.Increment = 1;
     this.DbInput_Lx4Item2DJ.Location = new System.Drawing.Point(217, 33);
     this.DbInput_Lx4Item2DJ.MaxValue = 10000;
     this.DbInput_Lx4Item2DJ.MinValue = 0;
     this.DbInput_Lx4Item2DJ.Name = "DbInput_Lx4Item2DJ";
     this.DbInput_Lx4Item2DJ.ShowUpDown = true;
     this.DbInput_Lx4Item2DJ.Size = new System.Drawing.Size(79, 21);
     this.DbInput_Lx4Item2DJ.TabIndex = 27;
     this.DbInput_Lx4Item2DJ.Value = 205;
     //
     // Grp_Lx4Item2KJ
     //
     this.Grp_Lx4Item2KJ.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
     this.Grp_Lx4Item2KJ.Controls.Add(this.Rdo_Lx4Item2S);
     this.Grp_Lx4Item2KJ.Controls.Add(this.Rdo_Lx4Item2D);
     this.Grp_Lx4Item2KJ.Location = new System.Drawing.Point(321, 63);
     this.Grp_Lx4Item2KJ.Name = "Grp_Lx4Item2KJ";
     this.Grp_Lx4Item2KJ.Size = new System.Drawing.Size(304, 81);
     this.Grp_Lx4Item2KJ.TabIndex = 31;
     this.Grp_Lx4Item2KJ.TabStop = false;
     this.Grp_Lx4Item2KJ.Text = "��ǽ����ʽѡ�񡰿ۼ����ӡ�ʱ����ѡ��/˫�ۼ�";
     //
     // Rdo_Lx4Item2S
     //
     this.Rdo_Lx4Item2S.AutoSize = true;
     this.Rdo_Lx4Item2S.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
     this.Rdo_Lx4Item2S.Location = new System.Drawing.Point(141, 45);
     this.Rdo_Lx4Item2S.Name = "Rdo_Lx4Item2S";
     this.Rdo_Lx4Item2S.Size = new System.Drawing.Size(59, 16);
     this.Rdo_Lx4Item2S.TabIndex = 24;
     this.Rdo_Lx4Item2S.TabStop = true;
     this.Rdo_Lx4Item2S.Text = "˫�ۼ�";
     this.Rdo_Lx4Item2S.UseVisualStyleBackColor = false;
     //
     // Rdo_Lx4Item2D
     //
     this.Rdo_Lx4Item2D.AutoSize = true;
     this.Rdo_Lx4Item2D.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
     this.Rdo_Lx4Item2D.Checked = true;
     this.Rdo_Lx4Item2D.Location = new System.Drawing.Point(43, 42);
     this.Rdo_Lx4Item2D.Name = "Rdo_Lx4Item2D";
     this.Rdo_Lx4Item2D.Size = new System.Drawing.Size(59, 16);
     this.Rdo_Lx4Item2D.TabIndex = 24;
     this.Rdo_Lx4Item2D.TabStop = true;
     this.Rdo_Lx4Item2D.Text = "���ۼ�";
     this.Rdo_Lx4Item2D.UseVisualStyleBackColor = false;
     //
     // Cbx_Lx4Item2LJFS
     //
     this.Cbx_Lx4Item2LJFS.DisplayMember = "Text";
     this.Cbx_Lx4Item2LJFS.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.Cbx_Lx4Item2LJFS.FormattingEnabled = true;
     this.Cbx_Lx4Item2LJFS.ItemHeight = 15;
     this.Cbx_Lx4Item2LJFS.Items.AddRange(new object[] {
     this.comboItem150,
     this.comboItem152});
     this.Cbx_Lx4Item2LJFS.Location = new System.Drawing.Point(434, 23);
     this.Cbx_Lx4Item2LJFS.Name = "Cbx_Lx4Item2LJFS";
     this.Cbx_Lx4Item2LJFS.Size = new System.Drawing.Size(82, 21);
     this.Cbx_Lx4Item2LJFS.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.Cbx_Lx4Item2LJFS.TabIndex = 30;
     this.Cbx_Lx4Item2LJFS.Text = " ";
     this.Cbx_Lx4Item2LJFS.SelectedIndexChanged += new System.EventHandler(this.Cbx_Lx4Item2LJFS_SelectedIndexChanged);
     //
     // comboItem150
     //
     this.comboItem150.Text = "�ۼ�����";
     //
     // comboItem152
     //
     this.comboItem152.Text = "��������";
     //
     // DbInput_Lx4Item2BJ
     //
     //
     //
     //
     this.DbInput_Lx4Item2BJ.BackgroundStyle.Class = "DateTimeInputBackground";
     this.DbInput_Lx4Item2BJ.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.DbInput_Lx4Item2BJ.ButtonFreeText.Shortcut = DevComponents.DotNetBar.eShortcut.F2;
     this.DbInput_Lx4Item2BJ.Increment = 1;
     this.DbInput_Lx4Item2BJ.Location = new System.Drawing.Point(178, 74);
     this.DbInput_Lx4Item2BJ.MinValue = 0;
     this.DbInput_Lx4Item2BJ.Name = "DbInput_Lx4Item2BJ";
     this.DbInput_Lx4Item2BJ.ShowUpDown = true;
     this.DbInput_Lx4Item2BJ.Size = new System.Drawing.Size(80, 21);
     this.DbInput_Lx4Item2BJ.TabIndex = 28;
     this.DbInput_Lx4Item2BJ.Value = 15.8;
     //
     // DbInput_Lx4Item2CD
     //
     //
     //
     //
     this.DbInput_Lx4Item2CD.BackgroundStyle.Class = "DateTimeInputBackground";
     this.DbInput_Lx4Item2CD.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.DbInput_Lx4Item2CD.ButtonFreeText.Shortcut = DevComponents.DotNetBar.eShortcut.F2;
     this.DbInput_Lx4Item2CD.Increment = 1;
     this.DbInput_Lx4Item2CD.Location = new System.Drawing.Point(178, 22);
     this.DbInput_Lx4Item2CD.MaxValue = 2000;
     this.DbInput_Lx4Item2CD.MinValue = 0;
     this.DbInput_Lx4Item2CD.Name = "DbInput_Lx4Item2CD";
     this.DbInput_Lx4Item2CD.ShowUpDown = true;
     this.DbInput_Lx4Item2CD.Size = new System.Drawing.Size(80, 21);
     this.DbInput_Lx4Item2CD.TabIndex = 27;
     this.DbInput_Lx4Item2CD.Value = 600;
     //
     // labelX11
     //
     //
     //
     //
     this.labelX11.BackgroundStyle.Class = "";
     this.labelX11.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX11.Location = new System.Drawing.Point(317, 23);
     this.labelX11.Name = "labelX11";
     this.labelX11.Size = new System.Drawing.Size(111, 20);
     this.labelX11.TabIndex = 13;
     this.labelX11.Text = "��ǽ�����ӷ�ʽ��";
     this.labelX11.TextAlignment = System.Drawing.StringAlignment.Far;
     //
     // labelX9
     //
     //
     //
     //
     this.labelX9.BackgroundStyle.Class = "";
     this.labelX9.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX9.Location = new System.Drawing.Point(17, 75);
     this.labelX9.Name = "labelX9";
     this.labelX9.Size = new System.Drawing.Size(168, 20);
     this.labelX9.TabIndex = 13;
     this.labelX9.Text = "��ǽ�������ת�뾶i(mm)��";
     this.labelX9.TextAlignment = System.Drawing.StringAlignment.Far;
     //
     // labelX7
     //
     //
     //
     //
     this.labelX7.BackgroundStyle.Class = "";
     this.labelX7.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX7.Location = new System.Drawing.Point(28, 23);
     this.labelX7.Name = "labelX7";
     this.labelX7.Size = new System.Drawing.Size(157, 20);
     this.labelX7.TabIndex = 13;
     this.labelX7.Text = "��ǽ�����㳤��l0 (mm)��";
     this.labelX7.TextAlignment = System.Drawing.StringAlignment.Far;
     //
     // LX4tabItem2
     //
     this.LX4tabItem2.AttachedControl = this.tabControlPanel14;
     this.LX4tabItem2.Name = "LX4tabItem2";
     this.LX4tabItem2.Text = "4��ǽ��";
     this.LX4tabItem2.Visible = false;
     //
     // tabControlPanel11
     //
     this.tabControlPanel11.Controls.Add(this.Grp_Item11);
     this.tabControlPanel11.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabControlPanel11.Location = new System.Drawing.Point(0, 69);
     this.tabControlPanel11.Name = "tabControlPanel11";
     this.tabControlPanel11.Padding = new System.Windows.Forms.Padding(1);
     this.tabControlPanel11.Size = new System.Drawing.Size(638, 340);
     this.tabControlPanel11.Style.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(253)))), ((int)(((byte)(253)))), ((int)(((byte)(254)))));
     this.tabControlPanel11.Style.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(157)))), ((int)(((byte)(188)))), ((int)(((byte)(227)))));
     this.tabControlPanel11.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.tabControlPanel11.Style.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(146)))), ((int)(((byte)(165)))), ((int)(((byte)(199)))));
     this.tabControlPanel11.Style.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Right)
                 | DevComponents.DotNetBar.eBorderSide.Bottom)));
     this.tabControlPanel11.Style.GradientAngle = 90;
     this.tabControlPanel11.TabIndex = 11;
     this.tabControlPanel11.TabItem = this.LXtabItem11;
     //
     // Grp_Item11
     //
     this.Grp_Item11.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
     this.Grp_Item11.Controls.Add(this.Tb_Item11MGXGJL);
     this.Grp_Item11.Controls.Add(this.Lb_Item11LBHNTQD);
     this.Grp_Item11.Controls.Add(this.Lb_Item11MGXGJL);
     this.Grp_Item11.Controls.Add(this.Cb_Item11ULSZJ);
     this.Grp_Item11.Controls.Add(this.Lb_Item11ULSZJ);
     this.Grp_Item11.Controls.Add(this.Cb_Item11LBHNTQD);
     this.Grp_Item11.Dock = System.Windows.Forms.DockStyle.Fill;
     this.Grp_Item11.Location = new System.Drawing.Point(1, 1);
     this.Grp_Item11.Name = "Grp_Item11";
     this.Grp_Item11.Size = new System.Drawing.Size(636, 338);
     this.Grp_Item11.TabIndex = 29;
     this.Grp_Item11.TabStop = false;
     this.Grp_Item11.Text = "�͸���¥��ê��";
     //
     // Tb_Item11MGXGJL
     //
     this.Tb_Item11MGXGJL.Location = new System.Drawing.Point(205, 82);
     this.Tb_Item11MGXGJL.Name = "Tb_Item11MGXGJL";
     this.Tb_Item11MGXGJL.ReadOnly = true;
     this.Tb_Item11MGXGJL.Size = new System.Drawing.Size(76, 21);
     this.Tb_Item11MGXGJL.TabIndex = 29;
     this.Tb_Item11MGXGJL.Text = "0.2";
     this.Tb_Item11MGXGJL.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     //
     // Lb_Item11LBHNTQD
     //
     this.Lb_Item11LBHNTQD.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
     //
     //
     //
     this.Lb_Item11LBHNTQD.BackgroundStyle.Class = "";
     this.Lb_Item11LBHNTQD.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.Lb_Item11LBHNTQD.Location = new System.Drawing.Point(71, 131);
     this.Lb_Item11LBHNTQD.Name = "Lb_Item11LBHNTQD";
     this.Lb_Item11LBHNTQD.Size = new System.Drawing.Size(134, 23);
     this.Lb_Item11LBHNTQD.TabIndex = 28;
     this.Lb_Item11LBHNTQD.Text = " ¥�������ǿ�ȵȼ���";
     //
     // Lb_Item11MGXGJL
     //
     this.Lb_Item11MGXGJL.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
     //
     //
     //
     this.Lb_Item11MGXGJL.BackgroundStyle.Class = "";
     this.Lb_Item11MGXGJL.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.Lb_Item11MGXGJL.Location = new System.Drawing.Point(35, 81);
     this.Lb_Item11MGXGJL.Name = "Lb_Item11MGXGJL";
     this.Lb_Item11MGXGJL.Size = new System.Drawing.Size(172, 23);
     this.Lb_Item11MGXGJL.TabIndex = 28;
     this.Lb_Item11MGXGJL.Text = "ê��λ�����͸�β������(m)��";
     //
     // Cb_Item11ULSZJ
     //
     this.Cb_Item11ULSZJ.DisplayMember = "Text";
     this.Cb_Item11ULSZJ.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.Cb_Item11ULSZJ.FormattingEnabled = true;
     this.Cb_Item11ULSZJ.ItemHeight = 15;
     this.Cb_Item11ULSZJ.Items.AddRange(new object[] {
     this.comboItem120,
     this.comboItem121,
     this.comboItem122,
     this.comboItem123,
     this.comboItem124,
     this.comboItem125,
     this.comboItem126});
     this.Cb_Item11ULSZJ.Location = new System.Drawing.Point(205, 34);
     this.Cb_Item11ULSZJ.Name = "Cb_Item11ULSZJ";
     this.Cb_Item11ULSZJ.Size = new System.Drawing.Size(76, 21);
     this.Cb_Item11ULSZJ.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.Cb_Item11ULSZJ.TabIndex = 27;
     //
     // comboItem120
     //
     this.comboItem120.Text = "12";
     //
     // comboItem121
     //
     this.comboItem121.Text = "14";
     //
     // comboItem122
     //
     this.comboItem122.Text = "16";
     //
     // comboItem123
     //
     this.comboItem123.Text = "18";
     //
     // comboItem124
     //
     this.comboItem124.Text = "20";
     //
     // comboItem125
     //
     this.comboItem125.Text = "22";
     //
     // comboItem126
     //
     this.comboItem126.Text = "24";
     //
     // Lb_Item11ULSZJ
     //
     this.Lb_Item11ULSZJ.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
     //
     //
     //
     this.Lb_Item11ULSZJ.BackgroundStyle.Class = "";
     this.Lb_Item11ULSZJ.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.Lb_Item11ULSZJ.Location = new System.Drawing.Point(12, 33);
     this.Lb_Item11ULSZJ.Name = "Lb_Item11ULSZJ";
     this.Lb_Item11ULSZJ.Size = new System.Drawing.Size(190, 23);
     this.Lb_Item11ULSZJ.TabIndex = 28;
     this.Lb_Item11ULSZJ.Text = " U�͸ֽ���������˨ֱ����mm����";
     //
     // Cb_Item11LBHNTQD
     //
     this.Cb_Item11LBHNTQD.DisplayMember = "Text";
     this.Cb_Item11LBHNTQD.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.Cb_Item11LBHNTQD.FormattingEnabled = true;
     this.Cb_Item11LBHNTQD.ItemHeight = 15;
     this.Cb_Item11LBHNTQD.Items.AddRange(new object[] {
     this.comboItem127,
     this.comboItem128,
     this.comboItem129,
     this.comboItem130,
     this.comboItem131,
     this.comboItem132,
     this.comboItem133});
     this.Cb_Item11LBHNTQD.Location = new System.Drawing.Point(205, 130);
     this.Cb_Item11LBHNTQD.Name = "Cb_Item11LBHNTQD";
     this.Cb_Item11LBHNTQD.Size = new System.Drawing.Size(76, 21);
     this.Cb_Item11LBHNTQD.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.Cb_Item11LBHNTQD.TabIndex = 27;
     //
     // comboItem127
     //
     this.comboItem127.Text = "C20";
     //
     // comboItem128
     //
     this.comboItem128.Text = "C25";
     //
     // comboItem129
     //
     this.comboItem129.Text = "C30";
     //
     // comboItem130
     //
     this.comboItem130.Text = "C35";
     //
     // comboItem131
     //
     this.comboItem131.Text = "C40";
     //
     // comboItem132
     //
     this.comboItem132.Text = "C45";
     //
     // comboItem133
     //
     this.comboItem133.Text = "C50";
     //
     // LXtabItem11
     //
     this.LXtabItem11.AttachedControl = this.tabControlPanel11;
     this.LXtabItem11.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
     this.LXtabItem11.Name = "LXtabItem11";
     this.LXtabItem11.Text = "�͸���¥��ê��";
     this.LXtabItem11.Visible = false;
     //
     // tabControlPanel10
     //
     this.tabControlPanel10.CanvasColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
     this.tabControlPanel10.Controls.Add(this.Grp_Item10);
     this.tabControlPanel10.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabControlPanel10.Location = new System.Drawing.Point(0, 69);
     this.tabControlPanel10.Name = "tabControlPanel10";
     this.tabControlPanel10.Padding = new System.Windows.Forms.Padding(1);
     this.tabControlPanel10.Size = new System.Drawing.Size(638, 340);
     this.tabControlPanel10.Style.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(253)))), ((int)(((byte)(253)))), ((int)(((byte)(254)))));
     this.tabControlPanel10.Style.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(157)))), ((int)(((byte)(188)))), ((int)(((byte)(227)))));
     this.tabControlPanel10.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.tabControlPanel10.Style.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(146)))), ((int)(((byte)(165)))), ((int)(((byte)(199)))));
     this.tabControlPanel10.Style.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Right)
                 | DevComponents.DotNetBar.eBorderSide.Bottom)));
     this.tabControlPanel10.Style.GradientAngle = 90;
     this.tabControlPanel10.TabIndex = 10;
     this.tabControlPanel10.TabItem = this.LXtabItem10;
     //
     // Grp_Item10
     //
     this.Grp_Item10.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
     this.Grp_Item10.Controls.Add(this.Lb_Item10GLXH);
     this.Grp_Item10.Controls.Add(this.Cb_Item10GLXH);
     this.Grp_Item10.Controls.Add(this.Tb_Item10RXND);
     this.Grp_Item10.Controls.Add(this.Lb_Item10RXND1);
     this.Grp_Item10.Controls.Add(this.DbInput_Item10MGD);
     this.Grp_Item10.Controls.Add(this.Cb_Item10RXND);
     this.Grp_Item10.Controls.Add(this.Lb_Item10MGD);
     this.Grp_Item10.Controls.Add(this.Lb_Item10RXND2);
     this.Grp_Item10.Controls.Add(this.DbInput_Item10XTD);
     this.Grp_Item10.Controls.Add(this.Lb_Item10XTD);
     this.Grp_Item10.Dock = System.Windows.Forms.DockStyle.Fill;
     this.Grp_Item10.Location = new System.Drawing.Point(1, 1);
     this.Grp_Item10.Name = "Grp_Item10";
     this.Grp_Item10.Size = new System.Drawing.Size(636, 338);
     this.Grp_Item10.TabIndex = 28;
     this.Grp_Item10.TabStop = false;
     this.Grp_Item10.Text = "�͸�������ּ�";
     //
     // Lb_Item10GLXH
     //
     this.Lb_Item10GLXH.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
     //
     //
     //
     this.Lb_Item10GLXH.BackgroundStyle.Class = "";
     this.Lb_Item10GLXH.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.Lb_Item10GLXH.Location = new System.Drawing.Point(21, 33);
     this.Lb_Item10GLXH.Name = "Lb_Item10GLXH";
     this.Lb_Item10GLXH.Size = new System.Drawing.Size(141, 23);
     this.Lb_Item10GLXH.TabIndex = 1;
     this.Lb_Item10GLXH.Text = "�����ͺţ�";
     this.Lb_Item10GLXH.TextAlignment = System.Drawing.StringAlignment.Far;
     //
     // Cb_Item10GLXH
     //
     this.Cb_Item10GLXH.DisplayMember = "Text";
     this.Cb_Item10GLXH.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.Cb_Item10GLXH.DropDownHeight = 200;
     this.Cb_Item10GLXH.FormattingEnabled = true;
     this.Cb_Item10GLXH.IntegralHeight = false;
     this.Cb_Item10GLXH.ItemHeight = 15;
     this.Cb_Item10GLXH.Items.AddRange(new object[] {
     this.comboItem76,
     this.comboItem77,
     this.comboItem78,
     this.comboItem79,
     this.comboItem80,
     this.comboItem81,
     this.comboItem82,
     this.comboItem83,
     this.comboItem84,
     this.comboItem85,
     this.comboItem86,
     this.comboItem87,
     this.comboItem88,
     this.comboItem89,
     this.comboItem90,
     this.comboItem91,
     this.comboItem92,
     this.comboItem93,
     this.comboItem94,
     this.comboItem95,
     this.comboItem96,
     this.comboItem97,
     this.comboItem98,
     this.comboItem99,
     this.comboItem100,
     this.comboItem101,
     this.comboItem102,
     this.comboItem103,
     this.comboItem104,
     this.comboItem105,
     this.comboItem106,
     this.comboItem107,
     this.comboItem108,
     this.comboItem109,
     this.comboItem110,
     this.comboItem111,
     this.comboItem112,
     this.comboItem113,
     this.comboItem114,
     this.comboItem115,
     this.comboItem116,
     this.comboItem117});
     this.Cb_Item10GLXH.Location = new System.Drawing.Point(164, 35);
     this.Cb_Item10GLXH.Name = "Cb_Item10GLXH";
     this.Cb_Item10GLXH.Size = new System.Drawing.Size(114, 21);
     this.Cb_Item10GLXH.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.Cb_Item10GLXH.TabIndex = 18;
     //
     // comboItem76
     //
     this.comboItem76.Text = "16�Ź��ָ�";
     //
     // comboItem77
     //
     this.comboItem77.Text = "18�Ź��ָ�";
     //
     // comboItem78
     //
     this.comboItem78.Text = "20a�Ź��ָ�";
     //
     // comboItem79
     //
     this.comboItem79.Text = "20b�Ź��ָ�";
     //
     // comboItem80
     //
     this.comboItem80.Text = "22a�Ź��ָ�";
     //
     // comboItem81
     //
     this.comboItem81.Text = "22b�Ź��ָ�";
     //
     // comboItem82
     //
     this.comboItem82.Text = "24a�Ź��ָ�";
     //
     // comboItem83
     //
     this.comboItem83.Text = "24b�Ź��ָ�";
     //
     // comboItem84
     //
     this.comboItem84.Text = "25a�Ź��ָ�";
     //
     // comboItem85
     //
     this.comboItem85.Text = "25b�Ź��ָ�";
     //
     // comboItem86
     //
     this.comboItem86.Text = "27a�Ź��ָ�";
     //
     // comboItem87
     //
     this.comboItem87.Text = "27b�Ź��ָ�";
     //
     // comboItem88
     //
     this.comboItem88.Text = "28a�Ź��ָ�";
     //
     // comboItem89
     //
     this.comboItem89.Text = "28b�Ź��ָ�";
     //
     // comboItem90
     //
     this.comboItem90.Text = "30a�Ź��ָ�";
     //
     // comboItem91
     //
     this.comboItem91.Text = "30b�Ź��ָ�";
     //
     // comboItem92
     //
     this.comboItem92.Text = "30c�Ź��ָ�";
     //
     // comboItem93
     //
     this.comboItem93.Text = "32a�Ź��ָ�";
     //
     // comboItem94
     //
     this.comboItem94.Text = "32b�Ź��ָ�";
     //
     // comboItem95
     //
     this.comboItem95.Text = "32c�Ź��ָ�";
     //
     // comboItem96
     //
     this.comboItem96.Text = "36a�Ź��ָ�";
     //
     // comboItem97
     //
     this.comboItem97.Text = "36b�Ź��ָ�";
     //
     // comboItem98
     //
     this.comboItem98.Text = "36c�Ź��ָ�";
     //
     // comboItem99
     //
     this.comboItem99.Text = "40a�Ź��ָ�";
     //
     // comboItem100
     //
     this.comboItem100.Text = "40b�Ź��ָ�";
     //
     // comboItem101
     //
     this.comboItem101.Text = "40c�Ź��ָ�";
     //
     // comboItem102
     //
     this.comboItem102.Text = "45a�Ź��ָ�";
     //
     // comboItem103
     //
     this.comboItem103.Text = "45b�Ź��ָ�";
     //
     // comboItem104
     //
     this.comboItem104.Text = "45c�Ź��ָ�";
     //
     // comboItem105
     //
     this.comboItem105.Text = "50a�Ź��ָ�";
     //
     // comboItem106
     //
     this.comboItem106.Text = "50b�Ź��ָ�";
     //
     // comboItem107
     //
     this.comboItem107.Text = "50c�Ź��ָ�";
     //
     // comboItem108
     //
     this.comboItem108.Text = "56a�Ź��ָ�";
     //
     // comboItem109
     //
     this.comboItem109.Text = "56b�Ź��ָ�";
     //
     // comboItem110
     //
     this.comboItem110.Text = "56c�Ź��ָ�";
     //
     // comboItem111
     //
     this.comboItem111.Text = "63a�Ź��ָ�";
     //
     // comboItem112
     //
     this.comboItem112.Text = "63b�Ź��ָ�";
     //
     // comboItem113
     //
     this.comboItem113.Text = "63c�Ź��ָ�";
     //
     // Tb_Item10RXND
     //
     this.Tb_Item10RXND.Location = new System.Drawing.Point(164, 190);
     this.Tb_Item10RXND.Name = "Tb_Item10RXND";
     this.Tb_Item10RXND.ReadOnly = true;
     this.Tb_Item10RXND.Size = new System.Drawing.Size(116, 21);
     this.Tb_Item10RXND.TabIndex = 27;
     this.Tb_Item10RXND.Text = "0.0104";
     this.Tb_Item10RXND.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     //
     // Lb_Item10RXND1
     //
     this.Lb_Item10RXND1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
     //
     //
     //
     this.Lb_Item10RXND1.BackgroundStyle.Class = "";
     this.Lb_Item10RXND1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.Lb_Item10RXND1.Location = new System.Drawing.Point(31, 149);
     this.Lb_Item10RXND1.Name = "Lb_Item10RXND1";
     this.Lb_Item10RXND1.Size = new System.Drawing.Size(133, 23);
     this.Lb_Item10RXND1.TabIndex = 26;
     this.Lb_Item10RXND1.Text = "�����������Ӷ�ѡ��";
     this.Lb_Item10RXND1.TextAlignment = System.Drawing.StringAlignment.Far;
     //
     // DbInput_Item10MGD
     //
     this.DbInput_Item10MGD.BackColor = System.Drawing.SystemColors.ActiveCaptionText;
     //
     //
     //
     this.DbInput_Item10MGD.BackgroundStyle.Class = "DateTimeInputBackground";
     this.DbInput_Item10MGD.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.DbInput_Item10MGD.ButtonFreeText.Shortcut = DevComponents.DotNetBar.eShortcut.F2;
     this.DbInput_Item10MGD.Colors.Highlight = System.Drawing.Color.White;
     this.DbInput_Item10MGD.Colors.HighlightText = System.Drawing.Color.White;
     this.DbInput_Item10MGD.Increment = 0.1;
     this.DbInput_Item10MGD.InputHorizontalAlignment = DevComponents.Editors.eHorizontalAlignment.Center;
     this.DbInput_Item10MGD.Location = new System.Drawing.Point(166, 66);
     this.DbInput_Item10MGD.Name = "DbInput_Item10MGD";
     this.DbInput_Item10MGD.ShowUpDown = true;
     this.DbInput_Item10MGD.Size = new System.Drawing.Size(112, 21);
     this.DbInput_Item10MGD.TabIndex = 17;
     this.DbInput_Item10MGD.Value = 2;
     //
     // Cb_Item10RXND
     //
     this.Cb_Item10RXND.DisplayMember = "Text";
     this.Cb_Item10RXND.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.Cb_Item10RXND.FormattingEnabled = true;
     this.Cb_Item10RXND.ItemHeight = 15;
     this.Cb_Item10RXND.Items.AddRange(new object[] {
     this.comboItem118,
     this.comboItem119});
     this.Cb_Item10RXND.Location = new System.Drawing.Point(164, 149);
     this.Cb_Item10RXND.Name = "Cb_Item10RXND";
     this.Cb_Item10RXND.Size = new System.Drawing.Size(116, 21);
     this.Cb_Item10RXND.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.Cb_Item10RXND.TabIndex = 24;
     this.Cb_Item10RXND.SelectedIndexChanged += new System.EventHandler(this.Cb_Item10RXND_SelectedIndexChanged);
     //
     // comboItem118
     //
     this.comboItem118.Text = "2���������/250";
     //
     // comboItem119
     //
     this.comboItem119.Text = "2���������/400";
     //
     // Lb_Item10MGD
     //
     this.Lb_Item10MGD.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
     //
     //
     //
     this.Lb_Item10MGD.BackgroundStyle.Class = "";
     this.Lb_Item10MGD.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.Lb_Item10MGD.Location = new System.Drawing.Point(11, 68);
     this.Lb_Item10MGD.Name = "Lb_Item10MGD";
     this.Lb_Item10MGD.Size = new System.Drawing.Size(153, 23);
     this.Lb_Item10MGD.TabIndex = 19;
     this.Lb_Item10MGD.Text = "������ê�̶γ��ȣ�m����";
     this.Lb_Item10MGD.TextAlignment = System.Drawing.StringAlignment.Far;
     //
     // Lb_Item10RXND2
     //
     this.Lb_Item10RXND2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
     //
     //
     //
     this.Lb_Item10RXND2.BackgroundStyle.Class = "";
     this.Lb_Item10RXND2.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.Lb_Item10RXND2.Location = new System.Drawing.Point(7, 187);
     this.Lb_Item10RXND2.Name = "Lb_Item10RXND2";
     this.Lb_Item10RXND2.Size = new System.Drawing.Size(157, 23);
     this.Lb_Item10RXND2.TabIndex = 23;
     this.Lb_Item10RXND2.Text = "�����������Ӷ� �� m����";
     this.Lb_Item10RXND2.TextAlignment = System.Drawing.StringAlignment.Far;
     //
     // DbInput_Item10XTD
     //
     this.DbInput_Item10XTD.BackColor = System.Drawing.Color.White;
     //
     //
     //
     this.DbInput_Item10XTD.BackgroundStyle.Class = "DateTimeInputBackground";
     this.DbInput_Item10XTD.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.DbInput_Item10XTD.ButtonFreeText.Shortcut = DevComponents.DotNetBar.eShortcut.F2;
     this.DbInput_Item10XTD.Increment = 0.1;
     this.DbInput_Item10XTD.InputHorizontalAlignment = DevComponents.Editors.eHorizontalAlignment.Center;
     this.DbInput_Item10XTD.Location = new System.Drawing.Point(166, 106);
     this.DbInput_Item10XTD.MaxValue = 10;
     this.DbInput_Item10XTD.MinValue = 0.6;
     this.DbInput_Item10XTD.Name = "DbInput_Item10XTD";
     this.DbInput_Item10XTD.ShowUpDown = true;
     this.DbInput_Item10XTD.Size = new System.Drawing.Size(112, 21);
     this.DbInput_Item10XTD.TabIndex = 20;
     this.DbInput_Item10XTD.Value = 1.3;
     //
     // Lb_Item10XTD
     //
     this.Lb_Item10XTD.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
     //
     //
     //
     this.Lb_Item10XTD.BackgroundStyle.Class = "";
     this.Lb_Item10XTD.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.Lb_Item10XTD.Location = new System.Drawing.Point(11, 108);
     this.Lb_Item10XTD.Name = "Lb_Item10XTD";
     this.Lb_Item10XTD.Size = new System.Drawing.Size(153, 23);
     this.Lb_Item10XTD.TabIndex = 21;
     this.Lb_Item10XTD.Text = "����������γ��ȣ�m����";
     this.Lb_Item10XTD.TextAlignment = System.Drawing.StringAlignment.Far;
     //
     // LXtabItem10
     //
     this.LXtabItem10.AttachedControl = this.tabControlPanel10;
     this.LXtabItem10.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
     this.LXtabItem10.Name = "LXtabItem10";
     this.LXtabItem10.Text = "�͸�������ּ�";
     this.LXtabItem10.Visible = false;
     //
     // tabControlPanel8
     //
     this.tabControlPanel8.Controls.Add(this.Grp_Item8);
     this.tabControlPanel8.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabControlPanel8.Location = new System.Drawing.Point(0, 69);
     this.tabControlPanel8.Name = "tabControlPanel8";
     this.tabControlPanel8.Padding = new System.Windows.Forms.Padding(1);
     this.tabControlPanel8.Size = new System.Drawing.Size(638, 340);
     this.tabControlPanel8.Style.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(253)))), ((int)(((byte)(253)))), ((int)(((byte)(254)))));
     this.tabControlPanel8.Style.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(157)))), ((int)(((byte)(188)))), ((int)(((byte)(227)))));
     this.tabControlPanel8.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.tabControlPanel8.Style.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(146)))), ((int)(((byte)(165)))), ((int)(((byte)(199)))));
     this.tabControlPanel8.Style.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Right)
                 | DevComponents.DotNetBar.eBorderSide.Bottom)));
     this.tabControlPanel8.Style.GradientAngle = 90;
     this.tabControlPanel8.TabIndex = 8;
     this.tabControlPanel8.TabItem = this.LXtabItem8;
     //
     // Grp_Item8
     //
     this.Grp_Item8.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
     this.Grp_Item8.Controls.Add(this.Tb_Item8DFXS1);
     this.Grp_Item8.Controls.Add(this.Lb_Item8DFXS1);
     this.Grp_Item8.Controls.Add(this.Grp_Item8FBS);
     this.Grp_Item8.Controls.Add(this.groupBox15);
     this.Grp_Item8.Dock = System.Windows.Forms.DockStyle.Fill;
     this.Grp_Item8.ForeColor = System.Drawing.SystemColors.ControlText;
     this.Grp_Item8.Location = new System.Drawing.Point(1, 1);
     this.Grp_Item8.Name = "Grp_Item8";
     this.Grp_Item8.Size = new System.Drawing.Size(636, 338);
     this.Grp_Item8.TabIndex = 0;
     this.Grp_Item8.TabStop = false;
     //
     // Tb_Item8DFXS1
     //
     //
     //
     //
     this.Tb_Item8DFXS1.Border.Class = "TextBoxBorder";
     this.Tb_Item8DFXS1.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.Tb_Item8DFXS1.Enabled = false;
     this.Tb_Item8DFXS1.Location = new System.Drawing.Point(434, 254);
     this.Tb_Item8DFXS1.Name = "Tb_Item8DFXS1";
     this.Tb_Item8DFXS1.ReadOnly = true;
     this.Tb_Item8DFXS1.Size = new System.Drawing.Size(71, 21);
     this.Tb_Item8DFXS1.TabIndex = 5;
     this.Tb_Item8DFXS1.Text = "0.8";
     //
     // Lb_Item8DFXS1
     //
     //
     //
     //
     this.Lb_Item8DFXS1.BackgroundStyle.Class = "";
     this.Lb_Item8DFXS1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.Lb_Item8DFXS1.Location = new System.Drawing.Point(328, 256);
     this.Lb_Item8DFXS1.Name = "Lb_Item8DFXS1";
     this.Lb_Item8DFXS1.Size = new System.Drawing.Size(91, 23);
     this.Lb_Item8DFXS1.TabIndex = 4;
     this.Lb_Item8DFXS1.Text = "����ϵ����";
     //
     // Grp_Item8FBS
     //
     this.Grp_Item8FBS.Controls.Add(this.Grp_Item8ADFMJ);
     this.Grp_Item8FBS.Controls.Add(this.Rdo_Item8ADFMJ);
     this.Grp_Item8FBS.Controls.Add(this.Rdo_Item8QMM);
     this.Grp_Item8FBS.Location = new System.Drawing.Point(302, 31);
     this.Grp_Item8FBS.Name = "Grp_Item8FBS";
     this.Grp_Item8FBS.Size = new System.Drawing.Size(317, 199);
     this.Grp_Item8FBS.TabIndex = 4;
     this.Grp_Item8FBS.TabStop = false;
     this.Grp_Item8FBS.Text = "���ʽ���ּ�";
     //
     // Grp_Item8ADFMJ
     //
     this.Grp_Item8ADFMJ.Controls.Add(this.DbIput_Item8DFMJ);
     this.Grp_Item8ADFMJ.Controls.Add(this.labelX42);
     this.Grp_Item8ADFMJ.Controls.Add(this.Tb_Item8YFMJ);
     this.Grp_Item8ADFMJ.Controls.Add(this.Lb_Item8YFMJ);
     this.Grp_Item8ADFMJ.Enabled = false;
     this.Grp_Item8ADFMJ.Location = new System.Drawing.Point(25, 85);
     this.Grp_Item8ADFMJ.Name = "Grp_Item8ADFMJ";
     this.Grp_Item8ADFMJ.Size = new System.Drawing.Size(265, 91);
     this.Grp_Item8ADFMJ.TabIndex = 7;
     this.Grp_Item8ADFMJ.TabStop = false;
     //
     // DbIput_Item8DFMJ
     //
     //
     //
     //
     this.DbIput_Item8DFMJ.BackgroundStyle.Class = "DateTimeInputBackground";
     this.DbIput_Item8DFMJ.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.DbIput_Item8DFMJ.ButtonFreeText.Shortcut = DevComponents.DotNetBar.eShortcut.F2;
     this.DbIput_Item8DFMJ.Increment = 1;
     this.DbIput_Item8DFMJ.InputHorizontalAlignment = DevComponents.Editors.eHorizontalAlignment.Center;
     this.DbIput_Item8DFMJ.Location = new System.Drawing.Point(125, 53);
     this.DbIput_Item8DFMJ.Name = "DbIput_Item8DFMJ";
     this.DbIput_Item8DFMJ.ShowUpDown = true;
     this.DbIput_Item8DFMJ.Size = new System.Drawing.Size(68, 21);
     this.DbIput_Item8DFMJ.TabIndex = 18;
     this.DbIput_Item8DFMJ.Value = 66.67;
     this.DbIput_Item8DFMJ.ValueChanged += new System.EventHandler(this.DbIput_Item8DFMJ_ValueChanged);
     //
     // labelX42
     //
     //
     //
     //
     this.labelX42.BackgroundStyle.Class = "";
     this.labelX42.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX42.Location = new System.Drawing.Point(11, 56);
     this.labelX42.Name = "labelX42";
     this.labelX42.Size = new System.Drawing.Size(86, 23);
     this.labelX42.TabIndex = 17;
     this.labelX42.Text = "�������An��";
     //
     // Tb_Item8YFMJ
     //
     //
     //
     //
     this.Tb_Item8YFMJ.Border.Class = "TextBoxBorder";
     this.Tb_Item8YFMJ.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.Tb_Item8YFMJ.Location = new System.Drawing.Point(125, 20);
     this.Tb_Item8YFMJ.Name = "Tb_Item8YFMJ";
     this.Tb_Item8YFMJ.ReadOnly = true;
     this.Tb_Item8YFMJ.Size = new System.Drawing.Size(68, 21);
     this.Tb_Item8YFMJ.TabIndex = 8;
     this.Tb_Item8YFMJ.Text = "100";
     this.Tb_Item8YFMJ.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     //
     // Lb_Item8YFMJ
     //
     //
     //
     //
     this.Lb_Item8YFMJ.BackgroundStyle.Class = "";
     this.Lb_Item8YFMJ.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.Lb_Item8YFMJ.Location = new System.Drawing.Point(12, 20);
     this.Lb_Item8YFMJ.Name = "Lb_Item8YFMJ";
     this.Lb_Item8YFMJ.Size = new System.Drawing.Size(85, 23);
     this.Lb_Item8YFMJ.TabIndex = 2;
     this.Lb_Item8YFMJ.Text = "ӭ�����Aw��";
     //
     // Rdo_Item8ADFMJ
     //
     this.Rdo_Item8ADFMJ.AutoSize = true;
     this.Rdo_Item8ADFMJ.Location = new System.Drawing.Point(5, 62);
     this.Rdo_Item8ADFMJ.Name = "Rdo_Item8ADFMJ";
     this.Rdo_Item8ADFMJ.Size = new System.Drawing.Size(167, 16);
     this.Rdo_Item8ADFMJ.TabIndex = 0;
     this.Rdo_Item8ADFMJ.Text = "������������� 1.2*An/Aw";
     this.Rdo_Item8ADFMJ.UseVisualStyleBackColor = true;
     this.Rdo_Item8ADFMJ.CheckedChanged += new System.EventHandler(this.Rdo_Item8ADFMJ_CheckedChanged);
     //
     // Rdo_Item8QMM
     //
     this.Rdo_Item8QMM.AutoSize = true;
     this.Rdo_Item8QMM.Checked = true;
     this.Rdo_Item8QMM.ForeColor = System.Drawing.SystemColors.ControlText;
     this.Rdo_Item8QMM.Location = new System.Drawing.Point(6, 28);
     this.Rdo_Item8QMM.Name = "Rdo_Item8QMM";
     this.Rdo_Item8QMM.Size = new System.Drawing.Size(107, 16);
     this.Rdo_Item8QMM.TabIndex = 0;
     this.Rdo_Item8QMM.TabStop = true;
     this.Rdo_Item8QMM.Text = "ȡ��Ŀ��Ĭ��ֵ";
     this.Rdo_Item8QMM.UseVisualStyleBackColor = true;
     //
     // groupBox15
     //
     this.groupBox15.Controls.Add(this.Rdo_Item8FBSK);
     this.groupBox15.Controls.Add(this.Rdo_Item8WMMW);
     this.groupBox15.Controls.Add(this.Rdo_Item8FBSQ);
     this.groupBox15.Location = new System.Drawing.Point(11, 24);
     this.groupBox15.Name = "groupBox15";
     this.groupBox15.Size = new System.Drawing.Size(256, 313);
     this.groupBox15.TabIndex = 7;
     this.groupBox15.TabStop = false;
     this.groupBox15.Text = "���ּܼ�����������״��";
     //
     // Rdo_Item8FBSK
     //
     this.Rdo_Item8FBSK.AutoSize = true;
     this.Rdo_Item8FBSK.Checked = true;
     this.Rdo_Item8FBSK.Location = new System.Drawing.Point(14, 97);
     this.Rdo_Item8FBSK.Name = "Rdo_Item8FBSK";
     this.Rdo_Item8FBSK.Size = new System.Drawing.Size(239, 16);
     this.Rdo_Item8FBSK.TabIndex = 5;
     this.Rdo_Item8FBSK.TabStop = true;
     this.Rdo_Item8FBSK.Text = "���ʽ���ּܱ�����������ܺͿ���ǽ��";
     this.Rdo_Item8FBSK.UseVisualStyleBackColor = true;
     this.Rdo_Item8FBSK.CheckedChanged += new System.EventHandler(this.Rdo_Item8FBSK_CheckedChanged);
     //
     // Rdo_Item8WMMW
     //
     this.Rdo_Item8WMMW.AutoSize = true;
     this.Rdo_Item8WMMW.Location = new System.Drawing.Point(14, 22);
     this.Rdo_Item8WMMW.Name = "Rdo_Item8WMMW";
     this.Rdo_Item8WMMW.Size = new System.Drawing.Size(167, 16);
     this.Rdo_Item8WMMW.TabIndex = 5;
     this.Rdo_Item8WMMW.Text = "����ʽ���ּܣ�����Ŀ����";
     this.Rdo_Item8WMMW.UseVisualStyleBackColor = true;
     this.Rdo_Item8WMMW.CheckedChanged += new System.EventHandler(this.Rdo_Item8WMMW_CheckedChanged);
     //
     // Rdo_Item8FBSQ
     //
     this.Rdo_Item8FBSQ.AutoSize = true;
     this.Rdo_Item8FBSQ.Location = new System.Drawing.Point(13, 172);
     this.Rdo_Item8FBSQ.Name = "Rdo_Item8FBSQ";
     this.Rdo_Item8FBSQ.Size = new System.Drawing.Size(167, 16);
     this.Rdo_Item8FBSQ.TabIndex = 5;
     this.Rdo_Item8FBSQ.Text = "���ʽ���ּܱ���ȫ���ǽ";
     this.Rdo_Item8FBSQ.UseVisualStyleBackColor = true;
     this.Rdo_Item8FBSQ.CheckedChanged += new System.EventHandler(this.Rdo_Item8FBSQ_CheckedChanged);
     //
     // LXtabItem8
     //
     this.LXtabItem8.AttachedControl = this.tabControlPanel8;
     this.LXtabItem8.Name = "LXtabItem8";
     this.LXtabItem8.Text = "���������ϵ��";
     //
     // tabControlPanel12
     //
     this.tabControlPanel12.Controls.Add(this.Cb_Item3FS);
     this.tabControlPanel12.Controls.Add(this.Cb_Item3JJ);
     this.tabControlPanel12.Controls.Add(this.Lb_Item3FS);
     this.tabControlPanel12.Controls.Add(this.Lb_Item3LQJJJ);
     this.tabControlPanel12.Controls.Add(this.Grp_Item3);
     this.tabControlPanel12.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabControlPanel12.Location = new System.Drawing.Point(0, 69);
     this.tabControlPanel12.Name = "tabControlPanel12";
     this.tabControlPanel12.Padding = new System.Windows.Forms.Padding(1);
     this.tabControlPanel12.Size = new System.Drawing.Size(638, 340);
     this.tabControlPanel12.Style.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(253)))), ((int)(((byte)(253)))), ((int)(((byte)(254)))));
     this.tabControlPanel12.Style.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(157)))), ((int)(((byte)(188)))), ((int)(((byte)(227)))));
     this.tabControlPanel12.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.tabControlPanel12.Style.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(146)))), ((int)(((byte)(165)))), ((int)(((byte)(199)))));
     this.tabControlPanel12.Style.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Right)
                 | DevComponents.DotNetBar.eBorderSide.Bottom)));
     this.tabControlPanel12.Style.GradientAngle = 90;
     this.tabControlPanel12.TabIndex = 13;
     this.tabControlPanel12.TabItem = this.LXtabItem3;
     //
     // Cb_Item3FS
     //
     this.Cb_Item3FS.DisplayMember = "Text";
     this.Cb_Item3FS.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.Cb_Item3FS.FormattingEnabled = true;
     this.Cb_Item3FS.ItemHeight = 15;
     this.Cb_Item3FS.Items.AddRange(new object[] {
     this.comboItem11,
     this.comboItem12,
     this.comboItem13,
     this.comboItem14,
     this.comboItem134});
     this.Cb_Item3FS.Location = new System.Drawing.Point(116, 109);
     this.Cb_Item3FS.Name = "Cb_Item3FS";
     this.Cb_Item3FS.Size = new System.Drawing.Size(121, 21);
     this.Cb_Item3FS.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.Cb_Item3FS.TabIndex = 18;
     this.Cb_Item3FS.SelectedIndexChanged += new System.EventHandler(this.Cb_Item3FS_SelectedIndexChanged);
     //
     // comboItem11
     //
     this.comboItem11.Text = "�ۼ�����";
     //
     // comboItem12
     //
     this.comboItem12.Text = "��˨����";
     //
     // comboItem13
     //
     this.comboItem13.Text = "��������";
     //
     // comboItem14
     //
     this.comboItem14.Text = "����Ӳ��";
     //
     // comboItem134
     //
     this.comboItem134.Text = "������˨";
     //
     // Cb_Item3JJ
     //
     this.Cb_Item3JJ.DisplayMember = "Text";
     this.Cb_Item3JJ.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.Cb_Item3JJ.FormattingEnabled = true;
     this.Cb_Item3JJ.ItemHeight = 15;
     this.Cb_Item3JJ.Items.AddRange(new object[] {
     this.comboItem136,
     this.comboItem137});
     this.Cb_Item3JJ.Location = new System.Drawing.Point(116, 63);
     this.Cb_Item3JJ.Name = "Cb_Item3JJ";
     this.Cb_Item3JJ.Size = new System.Drawing.Size(121, 21);
     this.Cb_Item3JJ.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.Cb_Item3JJ.TabIndex = 17;
     //
     // comboItem136
     //
     this.comboItem136.Text = "��������";
     //
     // comboItem137
     //
     this.comboItem137.Text = "��������";
     //
     // Lb_Item3FS
     //
     this.Lb_Item3FS.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
     //
     //
     //
     this.Lb_Item3FS.BackgroundStyle.Class = "";
     this.Lb_Item3FS.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.Lb_Item3FS.Location = new System.Drawing.Point(25, 104);
     this.Lb_Item3FS.Name = "Lb_Item3FS";
     this.Lb_Item3FS.Size = new System.Drawing.Size(85, 26);
     this.Lb_Item3FS.TabIndex = 15;
     this.Lb_Item3FS.Text = "��ǽ����ʽ";
     //
     // Lb_Item3LQJJJ
     //
     this.Lb_Item3LQJJJ.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
     //
     //
     //
     this.Lb_Item3LQJJJ.BackgroundStyle.Class = "";
     this.Lb_Item3LQJJJ.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.Lb_Item3LQJJJ.Location = new System.Drawing.Point(25, 63);
     this.Lb_Item3LQJJJ.Name = "Lb_Item3LQJJJ";
     this.Lb_Item3LQJJJ.Size = new System.Drawing.Size(85, 26);
     this.Lb_Item3LQJJJ.TabIndex = 14;
     this.Lb_Item3LQJJJ.Text = "��ǽ�����";
     //
     // Grp_Item3
     //
     this.Grp_Item3.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
     this.Grp_Item3.Controls.Add(this.DbInput_Item3ZXL);
     this.Grp_Item3.Controls.Add(this.Grp_Item3FSKJLJ);
     this.Grp_Item3.Controls.Add(this.Lb_Item3ZXL);
     this.Grp_Item3.Dock = System.Windows.Forms.DockStyle.Fill;
     this.Grp_Item3.Location = new System.Drawing.Point(1, 1);
     this.Grp_Item3.Name = "Grp_Item3";
     this.Grp_Item3.Size = new System.Drawing.Size(636, 338);
     this.Grp_Item3.TabIndex = 21;
     this.Grp_Item3.TabStop = false;
     this.Grp_Item3.Text = "��ǽ����������";
     //
     // DbInput_Item3ZXL
     //
     //
     //
     //
     this.DbInput_Item3ZXL.BackgroundStyle.Class = "DateTimeInputBackground";
     this.DbInput_Item3ZXL.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.DbInput_Item3ZXL.ButtonFreeText.Shortcut = DevComponents.DotNetBar.eShortcut.F2;
     this.DbInput_Item3ZXL.Increment = 0.1;
     this.DbInput_Item3ZXL.Location = new System.Drawing.Point(302, 284);
     this.DbInput_Item3ZXL.MaxValue = 3;
     this.DbInput_Item3ZXL.MinValue = 0;
     this.DbInput_Item3ZXL.Name = "DbInput_Item3ZXL";
     this.DbInput_Item3ZXL.ShowUpDown = true;
     this.DbInput_Item3ZXL.Size = new System.Drawing.Size(80, 21);
     this.DbInput_Item3ZXL.TabIndex = 22;
     this.DbInput_Item3ZXL.Value = 3;
     this.DbInput_Item3ZXL.WatermarkColor = System.Drawing.SystemColors.ControlLightLight;
     //
     // Grp_Item3FSKJLJ
     //
     this.Grp_Item3FSKJLJ.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
     this.Grp_Item3FSKJLJ.Controls.Add(this.radioButton2);
     this.Grp_Item3FSKJLJ.Controls.Add(this.radioButton1);
     this.Grp_Item3FSKJLJ.Location = new System.Drawing.Point(20, 153);
     this.Grp_Item3FSKJLJ.Name = "Grp_Item3FSKJLJ";
     this.Grp_Item3FSKJLJ.Size = new System.Drawing.Size(310, 97);
     this.Grp_Item3FSKJLJ.TabIndex = 21;
     this.Grp_Item3FSKJLJ.TabStop = false;
     this.Grp_Item3FSKJLJ.Text = "��ǽ����ʽѡ�񡰿ۼ����ӡ�ʱ����ѡ��˫�ۼ�";
     //
     // radioButton2
     //
     this.radioButton2.AutoSize = true;
     this.radioButton2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
     this.radioButton2.Enabled = false;
     this.radioButton2.Location = new System.Drawing.Point(141, 45);
     this.radioButton2.Name = "radioButton2";
     this.radioButton2.Size = new System.Drawing.Size(59, 16);
     this.radioButton2.TabIndex = 24;
     this.radioButton2.Text = "˫�ۼ�";
     this.radioButton2.UseVisualStyleBackColor = false;
     //
     // radioButton1
     //
     this.radioButton1.AutoSize = true;
     this.radioButton1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
     this.radioButton1.Checked = true;
     this.radioButton1.Enabled = false;
     this.radioButton1.Location = new System.Drawing.Point(43, 42);
     this.radioButton1.Name = "radioButton1";
     this.radioButton1.Size = new System.Drawing.Size(59, 16);
     this.radioButton1.TabIndex = 24;
     this.radioButton1.TabStop = true;
     this.radioButton1.Text = "���ۼ�";
     this.radioButton1.UseVisualStyleBackColor = false;
     //
     // Lb_Item3ZXL
     //
     this.Lb_Item3ZXL.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
     //
     //
     //
     this.Lb_Item3ZXL.BackgroundStyle.Class = "";
     this.Lb_Item3ZXL.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.Lb_Item3ZXL.Location = new System.Drawing.Point(20, 284);
     this.Lb_Item3ZXL.Name = "Lb_Item3ZXL";
     this.Lb_Item3ZXL.Size = new System.Drawing.Size(288, 26);
     this.Lb_Item3ZXL.TabIndex = 16;
     this.Lb_Item3ZXL.Text = "��ǽ��Լ�����ּ�ƽ������β�����������No(kN)";
     //
     // LXtabItem3
     //
     this.LXtabItem3.AttachedControl = this.tabControlPanel12;
     this.LXtabItem3.Name = "LXtabItem3";
     this.LXtabItem3.Text = "��ǽ������";
     //
     // tabControlPanel18
     //
     this.tabControlPanel18.Controls.Add(this.groupBox21);
     this.tabControlPanel18.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabControlPanel18.Location = new System.Drawing.Point(0, 69);
     this.tabControlPanel18.Name = "tabControlPanel18";
     this.tabControlPanel18.Padding = new System.Windows.Forms.Padding(1);
     this.tabControlPanel18.Size = new System.Drawing.Size(638, 340);
     this.tabControlPanel18.Style.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(253)))), ((int)(((byte)(253)))), ((int)(((byte)(254)))));
     this.tabControlPanel18.Style.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(157)))), ((int)(((byte)(188)))), ((int)(((byte)(227)))));
     this.tabControlPanel18.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.tabControlPanel18.Style.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(146)))), ((int)(((byte)(165)))), ((int)(((byte)(199)))));
     this.tabControlPanel18.Style.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Right)
                 | DevComponents.DotNetBar.eBorderSide.Bottom)));
     this.tabControlPanel18.Style.GradientAngle = 90;
     this.tabControlPanel18.TabIndex = 19;
     this.tabControlPanel18.TabItem = this.LX5tabItem2;
     this.tabControlPanel18.Text = "��ǽ��";
     //
     // groupBox21
     //
     this.groupBox21.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
     this.groupBox21.Controls.Add(this.Grp_Lx5Item2HF);
     this.groupBox21.Controls.Add(this.Grp_Lx5Item2RL);
     this.groupBox21.Controls.Add(this.Grp_Lx5Item2KJ);
     this.groupBox21.Controls.Add(this.Cbx_Lx5Item2LQJ);
     this.groupBox21.Controls.Add(this.DbInput_Lx5Item2MJ);
     this.groupBox21.Controls.Add(this.DbInput_Lx5Item2BJ);
     this.groupBox21.Controls.Add(this.DbInput_Lx5Item2L0);
     this.groupBox21.Controls.Add(this.DbInput_Lx5Item2SP);
     this.groupBox21.Controls.Add(this.DbInput_Lx5Item2SX);
     this.groupBox21.Controls.Add(this.labelX59);
     this.groupBox21.Controls.Add(this.labelX57);
     this.groupBox21.Controls.Add(this.labelX56);
     this.groupBox21.Controls.Add(this.labelX53);
     this.groupBox21.Controls.Add(this.labelX61);
     this.groupBox21.Controls.Add(this.labelX55);
     this.groupBox21.Dock = System.Windows.Forms.DockStyle.Fill;
     this.groupBox21.Location = new System.Drawing.Point(1, 1);
     this.groupBox21.Name = "groupBox21";
     this.groupBox21.Size = new System.Drawing.Size(636, 338);
     this.groupBox21.TabIndex = 4;
     this.groupBox21.TabStop = false;
     //
     // Grp_Lx5Item2HF
     //
     this.Grp_Lx5Item2HF.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
     this.Grp_Lx5Item2HF.Controls.Add(this.labelX58);
     this.Grp_Lx5Item2HF.Controls.Add(this.DbInput_Lx5Item2DJ);
     this.Grp_Lx5Item2HF.Enabled = false;
     this.Grp_Lx5Item2HF.Location = new System.Drawing.Point(330, 121);
     this.Grp_Lx5Item2HF.Name = "Grp_Lx5Item2HF";
     this.Grp_Lx5Item2HF.Size = new System.Drawing.Size(307, 74);
     this.Grp_Lx5Item2HF.TabIndex = 99;
     this.Grp_Lx5Item2HF.TabStop = false;
     this.Grp_Lx5Item2HF.Text = "��ǽ����ʽѡ�񡰺������ӡ�ʱ";
     //
     // labelX58
     //
     //
     //
     //
     this.labelX58.BackgroundStyle.Class = "";
     this.labelX58.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX58.Location = new System.Drawing.Point(9, 34);
     this.labelX58.Name = "labelX58";
     this.labelX58.Size = new System.Drawing.Size(211, 20);
     this.labelX58.TabIndex = 13;
     this.labelX58.Text = "�ԽӺ���Ŀ�����ѹǿ�ȣ�N/mm2����";
     this.labelX58.TextAlignment = System.Drawing.StringAlignment.Far;
     //
     // DbInput_Lx5Item2DJ
     //
     //
     //
     //
     this.DbInput_Lx5Item2DJ.BackgroundStyle.Class = "DateTimeInputBackground";
     this.DbInput_Lx5Item2DJ.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.DbInput_Lx5Item2DJ.ButtonFreeText.Shortcut = DevComponents.DotNetBar.eShortcut.F2;
     this.DbInput_Lx5Item2DJ.Increment = 1;
     this.DbInput_Lx5Item2DJ.Location = new System.Drawing.Point(222, 33);
     this.DbInput_Lx5Item2DJ.MaxValue = 10000;
     this.DbInput_Lx5Item2DJ.MinValue = 0;
     this.DbInput_Lx5Item2DJ.Name = "DbInput_Lx5Item2DJ";
     this.DbInput_Lx5Item2DJ.ShowUpDown = true;
     this.DbInput_Lx5Item2DJ.Size = new System.Drawing.Size(80, 21);
     this.DbInput_Lx5Item2DJ.TabIndex = 27;
     this.DbInput_Lx5Item2DJ.Value = 205;
     //
     // Grp_Lx5Item2RL
     //
     this.Grp_Lx5Item2RL.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
     this.Grp_Lx5Item2RL.Controls.Add(this.labelX60);
     this.Grp_Lx5Item2RL.Controls.Add(this.DbInput_Lx5Item2LJ);
     this.Grp_Lx5Item2RL.Enabled = false;
     this.Grp_Lx5Item2RL.Location = new System.Drawing.Point(333, 210);
     this.Grp_Lx5Item2RL.Name = "Grp_Lx5Item2RL";
     this.Grp_Lx5Item2RL.Size = new System.Drawing.Size(300, 74);
     this.Grp_Lx5Item2RL.TabIndex = 98;
     this.Grp_Lx5Item2RL.TabStop = false;
     this.Grp_Lx5Item2RL.Text = "��ǽ����ʽѡ������Ӳ�š�ʱ";
     //
     // labelX60
     //
     //
     //
     //
     this.labelX60.BackgroundStyle.Class = "";
     this.labelX60.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX60.Location = new System.Drawing.Point(7, 34);
     this.labelX60.Name = "labelX60";
     this.labelX60.Size = new System.Drawing.Size(187, 20);
     this.labelX60.TabIndex = 13;
     this.labelX60.Text = "���Ӹֽ�Ŀ���ǿ�ȣ�N/mm2����";
     this.labelX60.TextAlignment = System.Drawing.StringAlignment.Far;
     //
     // DbInput_Lx5Item2LJ
     //
     //
     //
     //
     this.DbInput_Lx5Item2LJ.BackgroundStyle.Class = "DateTimeInputBackground";
     this.DbInput_Lx5Item2LJ.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.DbInput_Lx5Item2LJ.ButtonFreeText.Shortcut = DevComponents.DotNetBar.eShortcut.F2;
     this.DbInput_Lx5Item2LJ.Increment = 1;
     this.DbInput_Lx5Item2LJ.Location = new System.Drawing.Point(197, 33);
     this.DbInput_Lx5Item2LJ.MaxValue = 10000;
     this.DbInput_Lx5Item2LJ.MinValue = 0;
     this.DbInput_Lx5Item2LJ.Name = "DbInput_Lx5Item2LJ";
     this.DbInput_Lx5Item2LJ.ShowUpDown = true;
     this.DbInput_Lx5Item2LJ.Size = new System.Drawing.Size(79, 21);
     this.DbInput_Lx5Item2LJ.TabIndex = 27;
     this.DbInput_Lx5Item2LJ.Value = 205;
     //
     // Grp_Lx5Item2KJ
     //
     this.Grp_Lx5Item2KJ.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
     this.Grp_Lx5Item2KJ.Controls.Add(this.Rdo_Lx5Item2S);
     this.Grp_Lx5Item2KJ.Controls.Add(this.Rdo_Lx5Item2D);
     this.Grp_Lx5Item2KJ.Controls.Add(this.labelX54);
     this.Grp_Lx5Item2KJ.Controls.Add(this.DbInput_Lx5Item2KJ);
     this.Grp_Lx5Item2KJ.Location = new System.Drawing.Point(328, 20);
     this.Grp_Lx5Item2KJ.Name = "Grp_Lx5Item2KJ";
     this.Grp_Lx5Item2KJ.Size = new System.Drawing.Size(304, 89);
     this.Grp_Lx5Item2KJ.TabIndex = 97;
     this.Grp_Lx5Item2KJ.TabStop = false;
     this.Grp_Lx5Item2KJ.Text = "��ǽ����ʽѡ�񡰿ۼ����ӡ�ʱ";
     //
     // Rdo_Lx5Item2S
     //
     this.Rdo_Lx5Item2S.AutoSize = true;
     this.Rdo_Lx5Item2S.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
     this.Rdo_Lx5Item2S.Location = new System.Drawing.Point(122, 28);
     this.Rdo_Lx5Item2S.Name = "Rdo_Lx5Item2S";
     this.Rdo_Lx5Item2S.Size = new System.Drawing.Size(59, 16);
     this.Rdo_Lx5Item2S.TabIndex = 24;
     this.Rdo_Lx5Item2S.Text = "˫�ۼ�";
     this.Rdo_Lx5Item2S.UseVisualStyleBackColor = false;
     //
     // Rdo_Lx5Item2D
     //
     this.Rdo_Lx5Item2D.AutoSize = true;
     this.Rdo_Lx5Item2D.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
     this.Rdo_Lx5Item2D.Checked = true;
     this.Rdo_Lx5Item2D.Location = new System.Drawing.Point(16, 28);
     this.Rdo_Lx5Item2D.Name = "Rdo_Lx5Item2D";
     this.Rdo_Lx5Item2D.Size = new System.Drawing.Size(59, 16);
     this.Rdo_Lx5Item2D.TabIndex = 24;
     this.Rdo_Lx5Item2D.TabStop = true;
     this.Rdo_Lx5Item2D.Text = "���ۼ�";
     this.Rdo_Lx5Item2D.UseVisualStyleBackColor = false;
     //
     // labelX54
     //
     this.labelX54.BackColor = System.Drawing.Color.Transparent;
     //
     //
     //
     this.labelX54.BackgroundStyle.Class = "";
     this.labelX54.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX54.Location = new System.Drawing.Point(13, 53);
     this.labelX54.Name = "labelX54";
     this.labelX54.Size = new System.Drawing.Size(118, 20);
     this.labelX54.TabIndex = 88;
     this.labelX54.Text = "�ۼ��������ۼ�ϵ��";
     this.labelX54.TextAlignment = System.Drawing.StringAlignment.Far;
     //
     // DbInput_Lx5Item2KJ
     //
     //
     //
     //
     this.DbInput_Lx5Item2KJ.BackgroundStyle.Class = "DateTimeInputBackground";
     this.DbInput_Lx5Item2KJ.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.DbInput_Lx5Item2KJ.ButtonFreeText.Shortcut = DevComponents.DotNetBar.eShortcut.F2;
     this.DbInput_Lx5Item2KJ.Increment = 0.1;
     this.DbInput_Lx5Item2KJ.Location = new System.Drawing.Point(131, 52);
     this.DbInput_Lx5Item2KJ.MaxValue = 1;
     this.DbInput_Lx5Item2KJ.MinValue = 0;
     this.DbInput_Lx5Item2KJ.Name = "DbInput_Lx5Item2KJ";
     this.DbInput_Lx5Item2KJ.ShowUpDown = true;
     this.DbInput_Lx5Item2KJ.Size = new System.Drawing.Size(53, 21);
     this.DbInput_Lx5Item2KJ.TabIndex = 92;
     this.DbInput_Lx5Item2KJ.Value = 0.9;
     //
     // Cbx_Lx5Item2LQJ
     //
     this.Cbx_Lx5Item2LQJ.DisplayMember = "Text";
     this.Cbx_Lx5Item2LQJ.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.Cbx_Lx5Item2LQJ.FormattingEnabled = true;
     this.Cbx_Lx5Item2LQJ.ItemHeight = 15;
     this.Cbx_Lx5Item2LQJ.Items.AddRange(new object[] {
     this.comboItem209,
     this.comboItem210,
     this.comboItem211});
     this.Cbx_Lx5Item2LQJ.Location = new System.Drawing.Point(184, 248);
     this.Cbx_Lx5Item2LQJ.Name = "Cbx_Lx5Item2LQJ";
     this.Cbx_Lx5Item2LQJ.Size = new System.Drawing.Size(80, 21);
     this.Cbx_Lx5Item2LQJ.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.Cbx_Lx5Item2LQJ.TabIndex = 96;
     this.Cbx_Lx5Item2LQJ.SelectedIndexChanged += new System.EventHandler(this.Cbx_Lx5Item2LQJ_SelectedIndexChanged);
     //
     // comboItem209
     //
     this.comboItem209.Text = "�ۼ�����";
     //
     // comboItem210
     //
     this.comboItem210.Text = "��������";
     //
     // comboItem211
     //
     this.comboItem211.Text = "����Ӳ��";
     //
     // DbInput_Lx5Item2MJ
     //
     //
     //
     //
     this.DbInput_Lx5Item2MJ.BackgroundStyle.Class = "DateTimeInputBackground";
     this.DbInput_Lx5Item2MJ.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.DbInput_Lx5Item2MJ.ButtonFreeText.Shortcut = DevComponents.DotNetBar.eShortcut.F2;
     this.DbInput_Lx5Item2MJ.Increment = 1;
     this.DbInput_Lx5Item2MJ.Location = new System.Drawing.Point(184, 207);
     this.DbInput_Lx5Item2MJ.MinValue = 0;
     this.DbInput_Lx5Item2MJ.Name = "DbInput_Lx5Item2MJ";
     this.DbInput_Lx5Item2MJ.ShowUpDown = true;
     this.DbInput_Lx5Item2MJ.Size = new System.Drawing.Size(80, 21);
     this.DbInput_Lx5Item2MJ.TabIndex = 94;
     this.DbInput_Lx5Item2MJ.Value = 489;
     //
     // DbInput_Lx5Item2BJ
     //
     //
     //
     //
     this.DbInput_Lx5Item2BJ.BackgroundStyle.Class = "DateTimeInputBackground";
     this.DbInput_Lx5Item2BJ.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.DbInput_Lx5Item2BJ.ButtonFreeText.Shortcut = DevComponents.DotNetBar.eShortcut.F2;
     this.DbInput_Lx5Item2BJ.Increment = 1;
     this.DbInput_Lx5Item2BJ.Location = new System.Drawing.Point(184, 159);
     this.DbInput_Lx5Item2BJ.MinValue = 0;
     this.DbInput_Lx5Item2BJ.Name = "DbInput_Lx5Item2BJ";
     this.DbInput_Lx5Item2BJ.ShowUpDown = true;
     this.DbInput_Lx5Item2BJ.Size = new System.Drawing.Size(80, 21);
     this.DbInput_Lx5Item2BJ.TabIndex = 94;
     this.DbInput_Lx5Item2BJ.Value = 15.8;
     //
     // DbInput_Lx5Item2L0
     //
     //
     //
     //
     this.DbInput_Lx5Item2L0.BackgroundStyle.Class = "DateTimeInputBackground";
     this.DbInput_Lx5Item2L0.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.DbInput_Lx5Item2L0.ButtonFreeText.Shortcut = DevComponents.DotNetBar.eShortcut.F2;
     this.DbInput_Lx5Item2L0.Increment = 0.1;
     this.DbInput_Lx5Item2L0.Location = new System.Drawing.Point(184, 111);
     this.DbInput_Lx5Item2L0.MaxValue = 2000;
     this.DbInput_Lx5Item2L0.MinValue = 0;
     this.DbInput_Lx5Item2L0.Name = "DbInput_Lx5Item2L0";
     this.DbInput_Lx5Item2L0.ShowUpDown = true;
     this.DbInput_Lx5Item2L0.Size = new System.Drawing.Size(80, 21);
     this.DbInput_Lx5Item2L0.TabIndex = 91;
     this.DbInput_Lx5Item2L0.Value = 600;
     //
     // DbInput_Lx5Item2SP
     //
     //
     //
     //
     this.DbInput_Lx5Item2SP.BackgroundStyle.Class = "DateTimeInputBackground";
     this.DbInput_Lx5Item2SP.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.DbInput_Lx5Item2SP.ButtonFreeText.Shortcut = DevComponents.DotNetBar.eShortcut.F2;
     this.DbInput_Lx5Item2SP.Increment = 0.1;
     this.DbInput_Lx5Item2SP.Location = new System.Drawing.Point(184, 61);
     this.DbInput_Lx5Item2SP.MaxValue = 8;
     this.DbInput_Lx5Item2SP.MinValue = 0;
     this.DbInput_Lx5Item2SP.Name = "DbInput_Lx5Item2SP";
     this.DbInput_Lx5Item2SP.ShowUpDown = true;
     this.DbInput_Lx5Item2SP.Size = new System.Drawing.Size(80, 21);
     this.DbInput_Lx5Item2SP.TabIndex = 93;
     this.DbInput_Lx5Item2SP.Value = 1.8;
     //
     // DbInput_Lx5Item2SX
     //
     //
     //
     //
     this.DbInput_Lx5Item2SX.BackgroundStyle.Class = "DateTimeInputBackground";
     this.DbInput_Lx5Item2SX.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.DbInput_Lx5Item2SX.ButtonFreeText.Shortcut = DevComponents.DotNetBar.eShortcut.F2;
     this.DbInput_Lx5Item2SX.Increment = 0.1;
     this.DbInput_Lx5Item2SX.Location = new System.Drawing.Point(184, 15);
     this.DbInput_Lx5Item2SX.MaxValue = 8;
     this.DbInput_Lx5Item2SX.MinValue = 0;
     this.DbInput_Lx5Item2SX.Name = "DbInput_Lx5Item2SX";
     this.DbInput_Lx5Item2SX.ShowUpDown = true;
     this.DbInput_Lx5Item2SX.Size = new System.Drawing.Size(80, 21);
     this.DbInput_Lx5Item2SX.TabIndex = 93;
     this.DbInput_Lx5Item2SX.Value = 1.8;
     //
     // labelX59
     //
     this.labelX59.BackColor = System.Drawing.SystemColors.Control;
     //
     //
     //
     this.labelX59.BackgroundStyle.Class = "";
     this.labelX59.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX59.Location = new System.Drawing.Point(23, 248);
     this.labelX59.Name = "labelX59";
     this.labelX59.Size = new System.Drawing.Size(158, 20);
     this.labelX59.TabIndex = 89;
     this.labelX59.Text = "��ǽ�����ӷ�ʽ";
     this.labelX59.TextAlignment = System.Drawing.StringAlignment.Far;
     //
     // labelX57
     //
     this.labelX57.BackColor = System.Drawing.SystemColors.Control;
     //
     //
     //
     this.labelX57.BackgroundStyle.Class = "";
     this.labelX57.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX57.Location = new System.Drawing.Point(25, 207);
     this.labelX57.Name = "labelX57";
     this.labelX57.Size = new System.Drawing.Size(156, 20);
     this.labelX57.TabIndex = 89;
     this.labelX57.Text = "��ǽ���������Ac(mm2)";
     this.labelX57.TextAlignment = System.Drawing.StringAlignment.Far;
     //
     // labelX56
     //
     this.labelX56.BackColor = System.Drawing.SystemColors.Control;
     //
     //
     //
     this.labelX56.BackgroundStyle.Class = "";
     this.labelX56.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX56.Location = new System.Drawing.Point(25, 159);
     this.labelX56.Name = "labelX56";
     this.labelX56.Size = new System.Drawing.Size(156, 20);
     this.labelX56.TabIndex = 89;
     this.labelX56.Text = "��ǽ�������ת�뾶i(mm)";
     this.labelX56.TextAlignment = System.Drawing.StringAlignment.Far;
     //
     // labelX53
     //
     this.labelX53.BackColor = System.Drawing.SystemColors.Control;
     //
     //
     //
     this.labelX53.BackgroundStyle.Class = "";
     this.labelX53.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX53.Location = new System.Drawing.Point(25, 111);
     this.labelX53.Name = "labelX53";
     this.labelX53.Size = new System.Drawing.Size(156, 20);
     this.labelX53.TabIndex = 89;
     this.labelX53.Text = "��ǽ�����㳤��l0 (mm)";
     this.labelX53.TextAlignment = System.Drawing.StringAlignment.Far;
     //
     // labelX61
     //
     this.labelX61.BackColor = System.Drawing.SystemColors.Control;
     //
     //
     //
     this.labelX61.BackgroundStyle.Class = "";
     this.labelX61.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX61.Location = new System.Drawing.Point(25, 61);
     this.labelX61.Name = "labelX61";
     this.labelX61.Size = new System.Drawing.Size(156, 20);
     this.labelX61.TabIndex = 90;
     this.labelX61.Text = "��ǽ��ˮƽ���H1(m)";
     this.labelX61.TextAlignment = System.Drawing.StringAlignment.Far;
     //
     // labelX55
     //
     this.labelX55.BackColor = System.Drawing.SystemColors.Control;
     //
     //
     //
     this.labelX55.BackgroundStyle.Class = "";
     this.labelX55.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX55.Location = new System.Drawing.Point(25, 15);
     this.labelX55.Name = "labelX55";
     this.labelX55.Size = new System.Drawing.Size(156, 20);
     this.labelX55.TabIndex = 90;
     this.labelX55.Text = "��ǽ��������H1(m)";
     this.labelX55.TextAlignment = System.Drawing.StringAlignment.Far;
     //
     // LX5tabItem2
     //
     this.LX5tabItem2.AttachedControl = this.tabControlPanel18;
     this.LX5tabItem2.Name = "LX5tabItem2";
     this.LX5tabItem2.Text = "5��ǽ��";
     this.LX5tabItem2.Visible = false;
     //
     // tabControlPanel3
     //
     this.tabControlPanel3.Controls.Add(this.groupBox5);
     this.tabControlPanel3.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabControlPanel3.Location = new System.Drawing.Point(0, 69);
     this.tabControlPanel3.Name = "tabControlPanel3";
     this.tabControlPanel3.Padding = new System.Windows.Forms.Padding(1);
     this.tabControlPanel3.Size = new System.Drawing.Size(638, 340);
     this.tabControlPanel3.Style.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(253)))), ((int)(((byte)(253)))), ((int)(((byte)(254)))));
     this.tabControlPanel3.Style.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(157)))), ((int)(((byte)(188)))), ((int)(((byte)(227)))));
     this.tabControlPanel3.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.tabControlPanel3.Style.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(146)))), ((int)(((byte)(165)))), ((int)(((byte)(199)))));
     this.tabControlPanel3.Style.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Right)
                 | DevComponents.DotNetBar.eBorderSide.Bottom)));
     this.tabControlPanel3.Style.GradientAngle = 90;
     this.tabControlPanel3.TabIndex = 3;
     //
     // groupBox5
     //
     this.groupBox5.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
     this.groupBox5.Controls.Add(this.groupBox6);
     this.groupBox5.Controls.Add(this.doubleInput8);
     this.groupBox5.Controls.Add(this.comboBoxEx3);
     this.groupBox5.Controls.Add(this.comboBoxEx4);
     this.groupBox5.Controls.Add(this.labelX14);
     this.groupBox5.Controls.Add(this.labelX13);
     this.groupBox5.Controls.Add(this.labelX16);
     this.groupBox5.Dock = System.Windows.Forms.DockStyle.Fill;
     this.groupBox5.Location = new System.Drawing.Point(1, 1);
     this.groupBox5.Name = "groupBox5";
     this.groupBox5.Size = new System.Drawing.Size(636, 338);
     this.groupBox5.TabIndex = 0;
     this.groupBox5.TabStop = false;
     this.groupBox5.Text = "��ǽ����������";
     //
     // groupBox6
     //
     this.groupBox6.Controls.Add(this.checkBoxX4);
     this.groupBox6.Controls.Add(this.checkBoxX3);
     this.groupBox6.Controls.Add(this.labelX15);
     this.groupBox6.Location = new System.Drawing.Point(29, 122);
     this.groupBox6.Name = "groupBox6";
     this.groupBox6.Size = new System.Drawing.Size(598, 97);
     this.groupBox6.TabIndex = 6;
     this.groupBox6.TabStop = false;
     this.groupBox6.Text = "��ѡ�ˡ��ۼ����ӡ�";
     //
     // checkBoxX4
     //
     //
     //
     //
     this.checkBoxX4.BackgroundStyle.Class = "";
     this.checkBoxX4.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.checkBoxX4.Location = new System.Drawing.Point(300, 31);
     this.checkBoxX4.Name = "checkBoxX4";
     this.checkBoxX4.Size = new System.Drawing.Size(100, 23);
     this.checkBoxX4.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.checkBoxX4.TabIndex = 2;
     this.checkBoxX4.Text = "˫�ۼ�";
     //
     // checkBoxX3
     //
     //
     //
     //
     this.checkBoxX3.BackgroundStyle.Class = "";
     this.checkBoxX3.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.checkBoxX3.Location = new System.Drawing.Point(183, 31);
     this.checkBoxX3.Name = "checkBoxX3";
     this.checkBoxX3.Size = new System.Drawing.Size(100, 23);
     this.checkBoxX3.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.checkBoxX3.TabIndex = 1;
     this.checkBoxX3.Text = "���ۼ�";
     //
     // labelX15
     //
     //
     //
     //
     this.labelX15.BackgroundStyle.Class = "";
     this.labelX15.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX15.Location = new System.Drawing.Point(43, 26);
     this.labelX15.Name = "labelX15";
     this.labelX15.Size = new System.Drawing.Size(113, 34);
     this.labelX15.TabIndex = 0;
     this.labelX15.Text = "��ѡ��˫�ۼ�";
     //
     // doubleInput8
     //
     //
     //
     //
     this.doubleInput8.BackgroundStyle.Class = "DateTimeInputBackground";
     this.doubleInput8.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.doubleInput8.ButtonFreeText.Shortcut = DevComponents.DotNetBar.eShortcut.F2;
     this.doubleInput8.Increment = 1;
     this.doubleInput8.Location = new System.Drawing.Point(350, 230);
     this.doubleInput8.Name = "doubleInput8";
     this.doubleInput8.ShowUpDown = true;
     this.doubleInput8.Size = new System.Drawing.Size(85, 21);
     this.doubleInput8.TabIndex = 5;
     this.doubleInput8.Value = 3;
     //
     // comboBoxEx3
     //
     this.comboBoxEx3.DisplayMember = "Text";
     this.comboBoxEx3.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.comboBoxEx3.FormattingEnabled = true;
     this.comboBoxEx3.ItemHeight = 15;
     this.comboBoxEx3.Items.AddRange(new object[] {
     this.comboItem29,
     this.comboItem30,
     this.comboItem31,
     this.comboItem32,
     this.comboItem33});
     this.comboBoxEx3.Location = new System.Drawing.Point(126, 84);
     this.comboBoxEx3.Name = "comboBoxEx3";
     this.comboBoxEx3.Size = new System.Drawing.Size(121, 21);
     this.comboBoxEx3.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.comboBoxEx3.TabIndex = 4;
     //
     // comboItem29
     //
     this.comboItem29.Text = "�ۼ�����";
     //
     // comboItem30
     //
     this.comboItem30.Text = "��˨����";
     //
     // comboItem31
     //
     this.comboItem31.Text = "��������";
     //
     // comboItem32
     //
     this.comboItem32.Text = "����Ӳ��";
     //
     // comboItem33
     //
     this.comboItem33.Text = "������˨";
     //
     // comboBoxEx4
     //
     this.comboBoxEx4.DisplayMember = "Text";
     this.comboBoxEx4.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.comboBoxEx4.FormattingEnabled = true;
     this.comboBoxEx4.ItemHeight = 15;
     this.comboBoxEx4.Items.AddRange(new object[] {
     this.comboItem26,
     this.comboItem27,
     this.comboItem28});
     this.comboBoxEx4.Location = new System.Drawing.Point(126, 38);
     this.comboBoxEx4.Name = "comboBoxEx4";
     this.comboBoxEx4.Size = new System.Drawing.Size(121, 21);
     this.comboBoxEx4.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.comboBoxEx4.TabIndex = 3;
     //
     // comboItem26
     //
     this.comboItem26.Text = "��������";
     //
     // comboItem27
     //
     this.comboItem27.Text = "��������";
     //
     // comboItem28
     //
     this.comboItem28.Text = "��������";
     //
     // labelX14
     //
     //
     //
     //
     this.labelX14.BackgroundStyle.Class = "";
     this.labelX14.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX14.Location = new System.Drawing.Point(35, 230);
     this.labelX14.Name = "labelX14";
     this.labelX14.Size = new System.Drawing.Size(304, 26);
     this.labelX14.TabIndex = 2;
     this.labelX14.Text = "��ǽ��Լ�����ּ�ƽ������β�����������No(kN)";
     //
     // labelX13
     //
     //
     //
     //
     this.labelX13.BackgroundStyle.Class = "";
     this.labelX13.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX13.Location = new System.Drawing.Point(35, 79);
     this.labelX13.Name = "labelX13";
     this.labelX13.Size = new System.Drawing.Size(119, 26);
     this.labelX13.TabIndex = 1;
     this.labelX13.Text = "��ǽ����ʽ";
     //
     // labelX16
     //
     //
     //
     //
     this.labelX16.BackgroundStyle.Class = "";
     this.labelX16.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX16.Location = new System.Drawing.Point(35, 38);
     this.labelX16.Name = "labelX16";
     this.labelX16.Size = new System.Drawing.Size(119, 26);
     this.labelX16.TabIndex = 0;
     this.labelX16.Text = "��ǽ�����";
     //
     // FrmScaffoldPowerCalculate
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.ClientSize = new System.Drawing.Size(638, 482);
     this.Controls.Add(this.panelEx3);
     this.Controls.Add(this.panelEx2);
     this.Controls.Add(this.panelEx1);
     this.DoubleBuffered = true;
     this.Name = "FrmScaffoldPowerCalculate";
     this.Text = "���ּܼ���-��ѧ����";
     //this.Load += new System.EventHandler(this.FrmScaffoldPowerCalculate_Load);
     this.panelEx1.ResumeLayout(false);
     this.panelEx2.ResumeLayout(false);
     this.panelEx2.PerformLayout();
     this.panelEx3.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.TabScaffloldPower)).EndInit();
     this.TabScaffloldPower.ResumeLayout(false);
     this.tabControlPanel1.ResumeLayout(false);
     this.Grp_Item1.ResumeLayout(false);
     this.groupBox2.ResumeLayout(false);
     this.groupBox2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.DbInput_Item1SKJ)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DbInput_Item1DKJ)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DbInput_Item1LQJL)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DbInput_Item1DSGD)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DbInput_Item1BJ)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DbInput_Item1XHGWSCD)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DbInput_Item1LGHJ)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DbInput_Item1LGZJ)).EndInit();
     this.tabControlPanel13.ResumeLayout(false);
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.DbInput_Lx4Item1S)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DbInput_Lx4Item1D)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DbInput_Lx4Item1GD)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DbInput_Lx4Item1KJ)).EndInit();
     this.groupBox10.ResumeLayout(false);
     this.groupBox10.PerformLayout();
     this.tabControlPanel6.ResumeLayout(false);
     this.Grp_Item6.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.DbInput_Item6Uz)).EndInit();
     this.Grp_Item6SF.ResumeLayout(false);
     this.groupBox9.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.DbInput_Item6SelfJBFY)).EndInit();
     this.tabControlPanel5.ResumeLayout(false);
     this.Grp_Item5.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.DbInput_Item5HZBZ)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.IntInput_Item5PSCS)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.IntInput_Item5SGCS)).EndInit();
     this.tabControlPanel4.ResumeLayout(false);
     this.groupBox11.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.IntInput_Item4PSCS)).EndInit();
     this.tabControlPanel2.ResumeLayout(false);
     this.Grp_Item2.ResumeLayout(false);
     this.Grp_Item2.PerformLayout();
     this.Grp_Item2DHG.ResumeLayout(false);
     this.Grp_Item2XHG.ResumeLayout(false);
     this.Grp_Item2XHG.PerformLayout();
     this.tabControlPanel9.ResumeLayout(false);
     this.Grp_Item9.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.DbIput_Item9DBK)).EndInit();
     this.tabControlPanel17.ResumeLayout(false);
     this.groupBox8.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.IntInput_Lx5Item1NO)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.IntInput_Lx5Item1LDX)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.IntInput_Lx5Item1SPX)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DbInput_Lx5Item2GD)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DbInput_Lx5Item1BJ)).EndInit();
     this.tabControlPanel16.ResumeLayout(false);
     this.groupBox19.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.DbInput_Lx4Item4TZXS)).EndInit();
     this.groupBox20.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.DbIput_Lx4Item4DBK)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DbIput_Lx4Item4DBC)).EndInit();
     this.groupBox7.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.DbIput_Lx4Item4DFMJ)).EndInit();
     this.groupBox18.ResumeLayout(false);
     this.groupBox18.PerformLayout();
     this.tabControlPanel15.ResumeLayout(false);
     this.groupBox17.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.DbInput_Lx4Item3SG)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.IntInput_Lx4Item3CS)).EndInit();
     this.groupBox4.ResumeLayout(false);
     this.groupBox14.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.DbInput_Lx4Item3HL)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DbInput_Lx4Item3AQW)).EndInit();
     this.groupBox16.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.IntInput_Lx4Item3SPJ)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.IntInput_Lx4Item3JSB)).EndInit();
     this.tabControlPanel14.ResumeLayout(false);
     this.groupBox3.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.DbInput_Lx4Item2SP)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DbInput_Lx4Item2SX)).EndInit();
     this.Grp_Lx4Item2HF.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.DbInput_Lx4Item2DJ)).EndInit();
     this.Grp_Lx4Item2KJ.ResumeLayout(false);
     this.Grp_Lx4Item2KJ.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.DbInput_Lx4Item2BJ)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DbInput_Lx4Item2CD)).EndInit();
     this.tabControlPanel11.ResumeLayout(false);
     this.Grp_Item11.ResumeLayout(false);
     this.Grp_Item11.PerformLayout();
     this.tabControlPanel10.ResumeLayout(false);
     this.Grp_Item10.ResumeLayout(false);
     this.Grp_Item10.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.DbInput_Item10MGD)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DbInput_Item10XTD)).EndInit();
     this.tabControlPanel8.ResumeLayout(false);
     this.Grp_Item8.ResumeLayout(false);
     this.Grp_Item8FBS.ResumeLayout(false);
     this.Grp_Item8FBS.PerformLayout();
     this.Grp_Item8ADFMJ.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.DbIput_Item8DFMJ)).EndInit();
     this.groupBox15.ResumeLayout(false);
     this.groupBox15.PerformLayout();
     this.tabControlPanel12.ResumeLayout(false);
     this.Grp_Item3.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.DbInput_Item3ZXL)).EndInit();
     this.Grp_Item3FSKJLJ.ResumeLayout(false);
     this.Grp_Item3FSKJLJ.PerformLayout();
     this.tabControlPanel18.ResumeLayout(false);
     this.groupBox21.ResumeLayout(false);
     this.Grp_Lx5Item2HF.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.DbInput_Lx5Item2DJ)).EndInit();
     this.Grp_Lx5Item2RL.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.DbInput_Lx5Item2LJ)).EndInit();
     this.Grp_Lx5Item2KJ.ResumeLayout(false);
     this.Grp_Lx5Item2KJ.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.DbInput_Lx5Item2KJ)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DbInput_Lx5Item2MJ)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DbInput_Lx5Item2BJ)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DbInput_Lx5Item2L0)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DbInput_Lx5Item2SP)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DbInput_Lx5Item2SX)).EndInit();
     this.tabControlPanel3.ResumeLayout(false);
     this.groupBox5.ResumeLayout(false);
     this.groupBox6.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.doubleInput8)).EndInit();
     this.ResumeLayout(false);
 }
コード例 #28
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ObjViewer));
     this.lvProps  = new System.Windows.Forms.ListView();
     this.colName  = new System.Windows.Forms.ColumnHeader();
     this.colValue = new System.Windows.Forms.ColumnHeader();
     this.lblName  = new System.Windows.Forms.Label();
     this.lblKind  = new System.Windows.Forms.Label();
     this.panelEx1 = new DevComponents.DotNetBar.PanelEx();
     this.panelEx1.SuspendLayout();
     this.SuspendLayout();
     //
     // lvProps
     //
     this.lvProps.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
         this.colName,
         this.colValue
     });
     resources.ApplyResources(this.lvProps, "lvProps");
     this.lvProps.FullRowSelect = true;
     this.lvProps.GridLines     = true;
     this.lvProps.Name          = "lvProps";
     this.lvProps.UseCompatibleStateImageBehavior = false;
     this.lvProps.View = System.Windows.Forms.View.Details;
     //
     // colName
     //
     resources.ApplyResources(this.colName, "colName");
     //
     // colValue
     //
     resources.ApplyResources(this.colValue, "colValue");
     //
     // lblName
     //
     this.lblName.BackColor = System.Drawing.Color.Transparent;
     resources.ApplyResources(this.lblName, "lblName");
     this.lblName.Name   = "lblName";
     this.lblName.Click += new System.EventHandler(this.lblName_Click);
     //
     // lblKind
     //
     this.lblKind.BackColor = System.Drawing.Color.Transparent;
     resources.ApplyResources(this.lblKind, "lblKind");
     this.lblKind.ForeColor = System.Drawing.SystemColors.ControlText;
     this.lblKind.Name      = "lblKind";
     //
     // panelEx1
     //
     this.panelEx1.Controls.Add(this.lblName);
     this.panelEx1.Controls.Add(this.lblKind);
     resources.ApplyResources(this.panelEx1, "panelEx1");
     this.panelEx1.Name            = "panelEx1";
     this.panelEx1.Style.Alignment = System.Drawing.StringAlignment.Center;
     this.panelEx1.Style.BackColor1.ColorSchemePart  = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
     this.panelEx1.Style.BackColor2.ColorSchemePart  = DevComponents.DotNetBar.eColorSchemePart.BarBackground2;
     this.panelEx1.Style.BackgroundImagePosition     = DevComponents.DotNetBar.eBackgroundImagePosition.Tile;
     this.panelEx1.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarDockedBorder;
     this.panelEx1.Style.ForeColor.ColorSchemePart   = DevComponents.DotNetBar.eColorSchemePart.ItemText;
     this.panelEx1.Style.GradientAngle = 90;
     //
     // ObjViewer
     //
     this.Controls.Add(this.lvProps);
     this.Controls.Add(this.panelEx1);
     this.Name = "ObjViewer";
     resources.ApplyResources(this, "$this");
     this.panelEx1.ResumeLayout(false);
     this.ResumeLayout(false);
 }
コード例 #29
0
ファイル: form1.cs プロジェクト: xy19xiaoyu/DotNetBar2Demos
 /// <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.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(Form1));
     this.bubbleBar1     = new DevComponents.DotNetBar.BubbleBar();
     this.bubbleBarTab1  = new DevComponents.DotNetBar.BubbleBarTab(this.components);
     this.bubbleButton4  = new DevComponents.DotNetBar.BubbleButton();
     this.bubbleButton3  = new DevComponents.DotNetBar.BubbleButton();
     this.bubbleButton1  = new DevComponents.DotNetBar.BubbleButton();
     this.bubbleButton2  = new DevComponents.DotNetBar.BubbleButton();
     this.bubbleButton5  = new DevComponents.DotNetBar.BubbleButton();
     this.bubbleButton6  = new DevComponents.DotNetBar.BubbleButton();
     this.bubbleButton10 = new DevComponents.DotNetBar.BubbleButton();
     this.bubbleButton8  = new DevComponents.DotNetBar.BubbleButton();
     this.bubbleButton9  = new DevComponents.DotNetBar.BubbleButton();
     this.bubbleButton7  = new DevComponents.DotNetBar.BubbleButton();
     this.bubbleBarTab2  = new DevComponents.DotNetBar.BubbleBarTab(this.components);
     this.bubbleButton11 = new DevComponents.DotNetBar.BubbleButton();
     this.bubbleButton12 = new DevComponents.DotNetBar.BubbleButton();
     this.bubbleButton13 = new DevComponents.DotNetBar.BubbleButton();
     this.bubbleButton14 = new DevComponents.DotNetBar.BubbleButton();
     this.bubbleButton15 = new DevComponents.DotNetBar.BubbleButton();
     this.bubbleButton16 = new DevComponents.DotNetBar.BubbleButton();
     this.bubbleButton17 = new DevComponents.DotNetBar.BubbleButton();
     this.bubbleButton18 = new DevComponents.DotNetBar.BubbleButton();
     this.label1         = new System.Windows.Forms.Label();
     this.label2         = new System.Windows.Forms.Label();
     this.panelEx1       = new DevComponents.DotNetBar.PanelEx();
     this.numericUpDown2 = new System.Windows.Forms.NumericUpDown();
     this.numericUpDown1 = new System.Windows.Forms.NumericUpDown();
     this.label4         = new System.Windows.Forms.Label();
     this.label3         = new System.Windows.Forms.Label();
     this.checkBox2      = new System.Windows.Forms.CheckBox();
     this.textBox1       = new System.Windows.Forms.TextBox();
     this.checkBox1      = new System.Windows.Forms.CheckBox();
     ((System.ComponentModel.ISupportInitialize)(this.bubbleBar1)).BeginInit();
     this.panelEx1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDown2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDown1)).BeginInit();
     this.SuspendLayout();
     //
     // bubbleBar1
     //
     this.bubbleBar1.Alignment = DevComponents.DotNetBar.eBubbleButtonAlignment.Bottom;
     this.bubbleBar1.AntiAlias = true;
     this.bubbleBar1.BackColor = System.Drawing.Color.Transparent;
     //
     // bubbleBar1.ButtonBackAreaStyle
     //
     this.bubbleBar1.ButtonBackAreaStyle.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(66)), ((System.Byte)(105)), ((System.Byte)(105)), ((System.Byte)(105)));
     this.bubbleBar1.ButtonBackAreaStyle.BackgroundImagePosition = DevComponents.DotNetBar.eStyleBackgroundImage.Tile;
     this.bubbleBar1.ButtonBackAreaStyle.BorderBottom            = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.bubbleBar1.ButtonBackAreaStyle.BorderBottomWidth       = 1;
     this.bubbleBar1.ButtonBackAreaStyle.BorderColor             = System.Drawing.Color.FromArgb(((System.Byte)(180)), ((System.Byte)(245)), ((System.Byte)(245)), ((System.Byte)(245)));
     this.bubbleBar1.ButtonBackAreaStyle.BorderLeft       = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.bubbleBar1.ButtonBackAreaStyle.BorderLeftWidth  = 1;
     this.bubbleBar1.ButtonBackAreaStyle.BorderRight      = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.bubbleBar1.ButtonBackAreaStyle.BorderRightWidth = 1;
     this.bubbleBar1.ButtonBackAreaStyle.BorderTop        = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.bubbleBar1.ButtonBackAreaStyle.BorderTopWidth   = 1;
     this.bubbleBar1.ButtonBackAreaStyle.PaddingBottom    = 3;
     this.bubbleBar1.ButtonBackAreaStyle.PaddingLeft      = 3;
     this.bubbleBar1.ButtonBackAreaStyle.PaddingRight     = 3;
     this.bubbleBar1.ButtonBackAreaStyle.PaddingTop       = 3;
     this.bubbleBar1.Dock            = System.Windows.Forms.DockStyle.Bottom;
     this.bubbleBar1.ImageSizeLarge  = new System.Drawing.Size(64, 64);
     this.bubbleBar1.ImageSizeNormal = new System.Drawing.Size(32, 32);
     this.bubbleBar1.Location        = new System.Drawing.Point(0, 220);
     this.bubbleBar1.MouseOverTabColors.BorderColor = System.Drawing.SystemColors.Highlight;
     this.bubbleBar1.Name        = "bubbleBar1";
     this.bubbleBar1.SelectedTab = this.bubbleBarTab1;
     this.bubbleBar1.SelectedTabColors.BorderColor = System.Drawing.Color.Black;
     this.bubbleBar1.Size     = new System.Drawing.Size(488, 58);
     this.bubbleBar1.TabIndex = 0;
     this.bubbleBar1.Tabs.Add(this.bubbleBarTab1);
     this.bubbleBar1.Tabs.Add(this.bubbleBarTab2);
     this.bubbleBar1.Text        = "bubbleBar1";
     this.bubbleBar1.TooltipFont = new System.Drawing.Font("Arial", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     //
     // bubbleBarTab1
     //
     this.bubbleBarTab1.BackColor  = System.Drawing.Color.FromArgb(((System.Byte)(221)), ((System.Byte)(230)), ((System.Byte)(247)));
     this.bubbleBarTab1.BackColor2 = System.Drawing.Color.FromArgb(((System.Byte)(138)), ((System.Byte)(168)), ((System.Byte)(228)));
     this.bubbleBarTab1.Buttons.AddRange(new DevComponents.DotNetBar.BubbleButton[] {
         this.bubbleButton4,
         this.bubbleButton3,
         this.bubbleButton1,
         this.bubbleButton2,
         this.bubbleButton5,
         this.bubbleButton6,
         this.bubbleButton10,
         this.bubbleButton8,
         this.bubbleButton9,
         this.bubbleButton7
     });
     this.bubbleBarTab1.DarkBorderColor  = System.Drawing.Color.FromArgb(((System.Byte)(190)), ((System.Byte)(105)), ((System.Byte)(105)), ((System.Byte)(105)));
     this.bubbleBarTab1.LightBorderColor = System.Drawing.Color.FromArgb(((System.Byte)(128)), ((System.Byte)(255)), ((System.Byte)(255)), ((System.Byte)(255)));
     this.bubbleBarTab1.Name             = "bubbleBarTab1";
     this.bubbleBarTab1.PredefinedColor  = DevComponents.DotNetBar.eTabItemColor.Blue;
     this.bubbleBarTab1.Text             = "Main";
     this.bubbleBarTab1.TextColor        = System.Drawing.Color.Black;
     //
     // bubbleButton4
     //
     this.bubbleButton4.Image       = ((System.Drawing.Bitmap)(resources.GetObject("bubbleButton4.Image")));
     this.bubbleButton4.ImageLarge  = ((System.Drawing.Bitmap)(resources.GetObject("bubbleButton4.ImageLarge")));
     this.bubbleButton4.Name        = "bubbleButton4";
     this.bubbleButton4.TooltipText = "Create New File";
     this.bubbleButton4.Click      += new DevComponents.DotNetBar.ClickEventHandler(this.bubbleButton_Click);
     //
     // bubbleButton3
     //
     this.bubbleButton3.Image       = ((System.Drawing.Bitmap)(resources.GetObject("bubbleButton3.Image")));
     this.bubbleButton3.ImageLarge  = ((System.Drawing.Bitmap)(resources.GetObject("bubbleButton3.ImageLarge")));
     this.bubbleButton3.Name        = "bubbleButton3";
     this.bubbleButton3.TooltipText = "Send E-mail";
     this.bubbleButton3.Click      += new DevComponents.DotNetBar.ClickEventHandler(this.bubbleButton_Click);
     //
     // bubbleButton1
     //
     this.bubbleButton1.Image       = ((System.Drawing.Bitmap)(resources.GetObject("bubbleButton1.Image")));
     this.bubbleButton1.ImageLarge  = ((System.Drawing.Bitmap)(resources.GetObject("bubbleButton1.ImageLarge")));
     this.bubbleButton1.Name        = "bubbleButton1";
     this.bubbleButton1.TooltipText = "Account List";
     this.bubbleButton1.Click      += new DevComponents.DotNetBar.ClickEventHandler(this.bubbleButton_Click);
     //
     // bubbleButton2
     //
     this.bubbleButton2.Image       = ((System.Drawing.Bitmap)(resources.GetObject("bubbleButton2.Image")));
     this.bubbleButton2.ImageLarge  = ((System.Drawing.Bitmap)(resources.GetObject("bubbleButton2.ImageLarge")));
     this.bubbleButton2.Name        = "bubbleButton2";
     this.bubbleButton2.TooltipText = "Search";
     this.bubbleButton2.Click      += new DevComponents.DotNetBar.ClickEventHandler(this.bubbleButton_Click);
     //
     // bubbleButton5
     //
     this.bubbleButton5.Enabled     = false;
     this.bubbleButton5.Image       = ((System.Drawing.Bitmap)(resources.GetObject("bubbleButton5.Image")));
     this.bubbleButton5.ImageLarge  = ((System.Drawing.Bitmap)(resources.GetObject("bubbleButton5.ImageLarge")));
     this.bubbleButton5.Name        = "bubbleButton5";
     this.bubbleButton5.TooltipText = "Notes (This button is disabled)";
     this.bubbleButton5.Click      += new DevComponents.DotNetBar.ClickEventHandler(this.bubbleButton_Click);
     //
     // bubbleButton6
     //
     this.bubbleButton6.Image       = ((System.Drawing.Bitmap)(resources.GetObject("bubbleButton6.Image")));
     this.bubbleButton6.ImageLarge  = ((System.Drawing.Bitmap)(resources.GetObject("bubbleButton6.ImageLarge")));
     this.bubbleButton6.Name        = "bubbleButton6";
     this.bubbleButton6.TooltipText = "Write CD";
     this.bubbleButton6.Click      += new DevComponents.DotNetBar.ClickEventHandler(this.bubbleButton_Click);
     //
     // bubbleButton10
     //
     this.bubbleButton10.Image      = ((System.Drawing.Bitmap)(resources.GetObject("bubbleButton10.Image")));
     this.bubbleButton10.ImageLarge = ((System.Drawing.Bitmap)(resources.GetObject("bubbleButton10.ImageLarge")));
     this.bubbleButton10.Name       = "bubbleButton10";
     this.bubbleButton10.Click     += new DevComponents.DotNetBar.ClickEventHandler(this.bubbleButton_Click);
     //
     // bubbleButton8
     //
     this.bubbleButton8.Image       = ((System.Drawing.Bitmap)(resources.GetObject("bubbleButton8.Image")));
     this.bubbleButton8.ImageLarge  = ((System.Drawing.Bitmap)(resources.GetObject("bubbleButton8.ImageLarge")));
     this.bubbleButton8.Name        = "bubbleButton8";
     this.bubbleButton8.TooltipText = "System Users";
     this.bubbleButton8.Click      += new DevComponents.DotNetBar.ClickEventHandler(this.bubbleButton_Click);
     //
     // bubbleButton9
     //
     this.bubbleButton9.Image       = ((System.Drawing.Bitmap)(resources.GetObject("bubbleButton9.Image")));
     this.bubbleButton9.ImageLarge  = ((System.Drawing.Bitmap)(resources.GetObject("bubbleButton9.ImageLarge")));
     this.bubbleButton9.Name        = "bubbleButton9";
     this.bubbleButton9.TooltipText = "Exit";
     this.bubbleButton9.Click      += new DevComponents.DotNetBar.ClickEventHandler(this.bubbleButton_Click);
     //
     // bubbleButton7
     //
     this.bubbleButton7.Image       = ((System.Drawing.Bitmap)(resources.GetObject("bubbleButton7.Image")));
     this.bubbleButton7.ImageLarge  = ((System.Drawing.Bitmap)(resources.GetObject("bubbleButton7.ImageLarge")));
     this.bubbleButton7.Name        = "bubbleButton7";
     this.bubbleButton7.TooltipText = "Help";
     this.bubbleButton7.Click      += new DevComponents.DotNetBar.ClickEventHandler(this.bubbleButton_Click);
     //
     // bubbleBarTab2
     //
     this.bubbleBarTab2.BackColor  = System.Drawing.Color.FromArgb(((System.Byte)(249)), ((System.Byte)(225)), ((System.Byte)(226)));
     this.bubbleBarTab2.BackColor2 = System.Drawing.Color.FromArgb(((System.Byte)(238)), ((System.Byte)(149)), ((System.Byte)(151)));
     this.bubbleBarTab2.Buttons.AddRange(new DevComponents.DotNetBar.BubbleButton[] {
         this.bubbleButton11,
         this.bubbleButton12,
         this.bubbleButton13,
         this.bubbleButton14,
         this.bubbleButton15,
         this.bubbleButton16,
         this.bubbleButton17,
         this.bubbleButton18
     });
     this.bubbleBarTab2.DarkBorderColor  = System.Drawing.Color.FromArgb(((System.Byte)(190)), ((System.Byte)(105)), ((System.Byte)(105)), ((System.Byte)(105)));
     this.bubbleBarTab2.LightBorderColor = System.Drawing.Color.FromArgb(((System.Byte)(128)), ((System.Byte)(255)), ((System.Byte)(255)), ((System.Byte)(255)));
     this.bubbleBarTab2.Name             = "bubbleBarTab2";
     this.bubbleBarTab2.PredefinedColor  = DevComponents.DotNetBar.eTabItemColor.Red;
     this.bubbleBarTab2.Text             = "Notes";
     this.bubbleBarTab2.TextColor        = System.Drawing.Color.Black;
     //
     // bubbleButton11
     //
     this.bubbleButton11.Image = ((System.Drawing.Bitmap)(resources.GetObject("bubbleButton11.Image")));
     this.bubbleButton11.Name  = "bubbleButton11";
     //
     // bubbleButton12
     //
     this.bubbleButton12.Image = ((System.Drawing.Bitmap)(resources.GetObject("bubbleButton12.Image")));
     this.bubbleButton12.Name  = "bubbleButton12";
     //
     // bubbleButton13
     //
     this.bubbleButton13.Image = ((System.Drawing.Bitmap)(resources.GetObject("bubbleButton13.Image")));
     this.bubbleButton13.Name  = "bubbleButton13";
     //
     // bubbleButton14
     //
     this.bubbleButton14.Image = ((System.Drawing.Bitmap)(resources.GetObject("bubbleButton14.Image")));
     this.bubbleButton14.Name  = "bubbleButton14";
     //
     // bubbleButton15
     //
     this.bubbleButton15.Image = ((System.Drawing.Bitmap)(resources.GetObject("bubbleButton15.Image")));
     this.bubbleButton15.Name  = "bubbleButton15";
     //
     // bubbleButton16
     //
     this.bubbleButton16.Image = ((System.Drawing.Bitmap)(resources.GetObject("bubbleButton16.Image")));
     this.bubbleButton16.Name  = "bubbleButton16";
     //
     // bubbleButton17
     //
     this.bubbleButton17.Image = ((System.Drawing.Bitmap)(resources.GetObject("bubbleButton17.Image")));
     this.bubbleButton17.Name  = "bubbleButton17";
     //
     // bubbleButton18
     //
     this.bubbleButton18.Image = ((System.Drawing.Bitmap)(resources.GetObject("bubbleButton18.Image")));
     this.bubbleButton18.Name  = "bubbleButton18";
     //
     // label1
     //
     this.label1.BackColor = System.Drawing.Color.Transparent;
     this.label1.Font      = new System.Drawing.Font("Times New Roman", 12F, (System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic), System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label1.Location  = new System.Drawing.Point(8, 8);
     this.label1.Name      = "label1";
     this.label1.Size      = new System.Drawing.Size(264, 24);
     this.label1.TabIndex  = 1;
     this.label1.Text      = "BubbleBar in action...";
     //
     // label2
     //
     this.label2.Anchor    = System.Windows.Forms.AnchorStyles.Bottom;
     this.label2.BackColor = System.Drawing.Color.Transparent;
     this.label2.Location  = new System.Drawing.Point(8, 200);
     this.label2.Name      = "label2";
     this.label2.Size      = new System.Drawing.Size(88, 16);
     this.label2.TabIndex  = 2;
     this.label2.Text      = "Last click event:";
     //
     // panelEx1
     //
     this.panelEx1.Controls.AddRange(new System.Windows.Forms.Control[] {
         this.numericUpDown2,
         this.numericUpDown1,
         this.label4,
         this.label3,
         this.checkBox2,
         this.textBox1,
         this.checkBox1,
         this.label1,
         this.bubbleBar1,
         this.label2
     });
     this.panelEx1.Dock            = System.Windows.Forms.DockStyle.Fill;
     this.panelEx1.Name            = "panelEx1";
     this.panelEx1.Size            = new System.Drawing.Size(488, 278);
     this.panelEx1.Style.Alignment = System.Drawing.StringAlignment.Center;
     this.panelEx1.Style.BackColor1.ColorSchemePart  = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
     this.panelEx1.Style.BackColor2.ColorSchemePart  = DevComponents.DotNetBar.eColorSchemePart.BarBackground2;
     this.panelEx1.Style.BackgroundImagePosition     = DevComponents.DotNetBar.eBackgroundImagePosition.Tile;
     this.panelEx1.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarDockedBorder;
     this.panelEx1.Style.ForeColor.ColorSchemePart   = DevComponents.DotNetBar.eColorSchemePart.ItemText;
     this.panelEx1.Style.GradientAngle = 90;
     this.panelEx1.TabIndex            = 4;
     //
     // numericUpDown2
     //
     this.numericUpDown2.Location = new System.Drawing.Point(336, 64);
     this.numericUpDown2.Maximum  = new System.Decimal(new int[] {
         128,
         0,
         0,
         0
     });
     this.numericUpDown2.Minimum = new System.Decimal(new int[] {
         33,
         0,
         0,
         0
     });
     this.numericUpDown2.Name     = "numericUpDown2";
     this.numericUpDown2.Size     = new System.Drawing.Size(48, 20);
     this.numericUpDown2.TabIndex = 10;
     this.numericUpDown2.Value    = new System.Decimal(new int[] {
         64,
         0,
         0,
         0
     });
     this.numericUpDown2.ValueChanged += new System.EventHandler(this.numericUpDown2_ValueChanged);
     //
     // numericUpDown1
     //
     this.numericUpDown1.Location = new System.Drawing.Point(336, 40);
     this.numericUpDown1.Maximum  = new System.Decimal(new int[] {
         32,
         0,
         0,
         0
     });
     this.numericUpDown1.Minimum = new System.Decimal(new int[] {
         16,
         0,
         0,
         0
     });
     this.numericUpDown1.Name     = "numericUpDown1";
     this.numericUpDown1.Size     = new System.Drawing.Size(48, 20);
     this.numericUpDown1.TabIndex = 9;
     this.numericUpDown1.Value    = new System.Decimal(new int[] {
         32,
         0,
         0,
         0
     });
     this.numericUpDown1.ValueChanged += new System.EventHandler(this.numericUpDown1_ValueChanged);
     //
     // label4
     //
     this.label4.BackColor = System.Drawing.Color.Transparent;
     this.label4.Location  = new System.Drawing.Point(232, 72);
     this.label4.Name      = "label4";
     this.label4.Size      = new System.Drawing.Size(96, 16);
     this.label4.TabIndex  = 8;
     this.label4.Text      = "Large Image Size:";
     //
     // label3
     //
     this.label3.BackColor = System.Drawing.Color.Transparent;
     this.label3.Location  = new System.Drawing.Point(232, 48);
     this.label3.Name      = "label3";
     this.label3.Size      = new System.Drawing.Size(104, 16);
     this.label3.TabIndex  = 7;
     this.label3.Text      = "Normal Image Size:";
     //
     // checkBox2
     //
     this.checkBox2.BackColor       = System.Drawing.Color.Transparent;
     this.checkBox2.Checked         = true;
     this.checkBox2.CheckState      = System.Windows.Forms.CheckState.Checked;
     this.checkBox2.Location        = new System.Drawing.Point(8, 64);
     this.checkBox2.Name            = "checkBox2";
     this.checkBox2.Size            = new System.Drawing.Size(160, 16);
     this.checkBox2.TabIndex        = 6;
     this.checkBox2.Text            = "Stretch button background";
     this.checkBox2.CheckedChanged += new System.EventHandler(this.checkBox2_CheckedChanged);
     //
     // textBox1
     //
     this.textBox1.Anchor   = System.Windows.Forms.AnchorStyles.Bottom;
     this.textBox1.Location = new System.Drawing.Point(112, 192);
     this.textBox1.Name     = "textBox1";
     this.textBox1.Size     = new System.Drawing.Size(264, 20);
     this.textBox1.TabIndex = 5;
     this.textBox1.Text     = "";
     //
     // checkBox1
     //
     this.checkBox1.BackColor       = System.Drawing.Color.Transparent;
     this.checkBox1.Checked         = true;
     this.checkBox1.CheckState      = System.Windows.Forms.CheckState.Checked;
     this.checkBox1.Location        = new System.Drawing.Point(8, 40);
     this.checkBox1.Name            = "checkBox1";
     this.checkBox1.Size            = new System.Drawing.Size(128, 24);
     this.checkBox1.TabIndex        = 4;
     this.checkBox1.Text            = "Enable Animation";
     this.checkBox1.CheckedChanged += new System.EventHandler(this.checkBox1_CheckedChanged);
     //
     // Form1
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.BackColor         = System.Drawing.Color.CornflowerBlue;
     this.ClientSize        = new System.Drawing.Size(488, 278);
     this.Controls.AddRange(new System.Windows.Forms.Control[] {
         this.panelEx1
     });
     this.Name = "Form1";
     this.Text = "Form1";
     ((System.ComponentModel.ISupportInitialize)(this.bubbleBar1)).EndInit();
     this.panelEx1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDown2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDown1)).EndInit();
     this.ResumeLayout(false);
 }
コード例 #30
0
ファイル: InfoDialog.cs プロジェクト: xuchuansheng/GenXSource
		/// <summary>
		/// Required method for Designer support - do not modify
		/// the contents of this method with the code editor.
		/// </summary>
		private void InitializeComponent()
		{
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(InfoDialog));
            this.tbInfo = new System.Windows.Forms.TextBox();
            this.lblTopic = new System.Windows.Forms.Label();
            this.btnSave = new Janus.Windows.EditControls.UIButton();
            this.panelEx1 = new DevComponents.DotNetBar.PanelEx();
            this.btnbutton1 = new Janus.Windows.EditControls.UIButton();
            this.panelEx1.SuspendLayout();
            this.SuspendLayout();
            // 
            // tbInfo
            // 
            this.tbInfo.BackColor = System.Drawing.SystemColors.Info;
            this.tbInfo.Dock = System.Windows.Forms.DockStyle.Fill;
            this.tbInfo.Font = new System.Drawing.Font("Courier New", 9.75F);
            this.tbInfo.Location = new System.Drawing.Point(0, 40);
            this.tbInfo.MaxLength = 1000000;
            this.tbInfo.Multiline = true;
            this.tbInfo.Name = "tbInfo";
            this.tbInfo.ScrollBars = System.Windows.Forms.ScrollBars.Both;
            this.tbInfo.Size = new System.Drawing.Size(542, 576);
            this.tbInfo.TabIndex = 0;
            this.tbInfo.Text = "Info";
            this.tbInfo.WordWrap = false;
            // 
            // lblTopic
            // 
            this.lblTopic.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                        | System.Windows.Forms.AnchorStyles.Right)));
            this.lblTopic.BackColor = System.Drawing.Color.Transparent;
            this.lblTopic.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F);
            this.lblTopic.Location = new System.Drawing.Point(8, 8);
            this.lblTopic.Name = "lblTopic";
            this.lblTopic.Size = new System.Drawing.Size(374, 24);
            this.lblTopic.TabIndex = 1;
            this.lblTopic.Text = "Info";
            this.lblTopic.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            // 
            // btnSave
            // 
            this.btnSave.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.btnSave.BackColor = System.Drawing.SystemColors.Control;
            this.btnSave.Location = new System.Drawing.Point(390, 8);
            this.btnSave.Name = "btnSave";
            this.btnSave.Size = new System.Drawing.Size(72, 24);
            this.btnSave.TabIndex = 2;
            this.btnSave.Text = "&Save";
            this.btnSave.VisualStyle = Janus.Windows.UI.VisualStyle.Office2003;
            this.btnSave.Click += new System.EventHandler(this.btnSave_Click);
            // 
            // panelEx1
            // 
            this.panelEx1.Controls.Add(this.btnbutton1);
            this.panelEx1.Controls.Add(this.lblTopic);
            this.panelEx1.Controls.Add(this.btnSave);
            this.panelEx1.Dock = System.Windows.Forms.DockStyle.Top;
            this.panelEx1.Location = new System.Drawing.Point(0, 0);
            this.panelEx1.Name = "panelEx1";
            this.panelEx1.Size = new System.Drawing.Size(542, 40);
            this.panelEx1.Style.Alignment = System.Drawing.StringAlignment.Center;
            this.panelEx1.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
            this.panelEx1.Style.BackColor2.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground2;
            this.panelEx1.Style.BackgroundImagePosition = DevComponents.DotNetBar.eBackgroundImagePosition.Tile;
            this.panelEx1.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarDockedBorder;
            this.panelEx1.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemText;
            this.panelEx1.Style.GradientAngle = 90;
            this.panelEx1.TabIndex = 3;
            // 
            // btnbutton1
            // 
            this.btnbutton1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.btnbutton1.BackColor = System.Drawing.SystemColors.Control;
            this.btnbutton1.Location = new System.Drawing.Point(462, 8);
            this.btnbutton1.Name = "btnbutton1";
            this.btnbutton1.Size = new System.Drawing.Size(72, 24);
            this.btnbutton1.TabIndex = 3;
            this.btnbutton1.Text = "Cancel";
            this.btnbutton1.VisualStyle = Janus.Windows.UI.VisualStyle.Office2003;
            this.btnbutton1.Click += new System.EventHandler(this.btnbutton1_Click);
            // 
            // InfoDialog
            // 
            this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
            this.ClientSize = new System.Drawing.Size(542, 616);
            this.Controls.Add(this.tbInfo);
            this.Controls.Add(this.panelEx1);
            this.DoubleBuffered = true;
            this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
            this.Name = "InfoDialog";
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
            this.Text = "Disassembly";
            this.panelEx1.ResumeLayout(false);
            this.ResumeLayout(false);
            this.PerformLayout();

		}
コード例 #31
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     this.panelEx1 = new DevComponents.DotNetBar.PanelEx();
     this.panelEx2 = new DevComponents.DotNetBar.PanelEx();
     this.grpthaotac = new DevComponents.DotNetBar.Controls.GroupPanel();
     this.btnthoat = new DevComponents.DotNetBar.ButtonX();
     this.btnsua = new DevComponents.DotNetBar.ButtonX();
     this.btnxoa = new DevComponents.DotNetBar.ButtonX();
     this.btnthembenhnhan = new DevComponents.DotNetBar.ButtonX();
     this.panelEx4 = new DevComponents.DotNetBar.PanelEx();
     this.groupPanel3 = new DevComponents.DotNetBar.Controls.GroupPanel();
     this.lvDanhSachBenhNhan = new System.Windows.Forms.ListView();
     this.columnHeader0 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.columnHeader1 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.columnHeader2 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.columnHeader3 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.columnHeader4 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.columnHeader5 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.columnHeader6 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.groupPanel6 = new DevComponents.DotNetBar.Controls.GroupPanel();
     this.labelX6 = new DevComponents.DotNetBar.LabelX();
     this.labelX7 = new DevComponents.DotNetBar.LabelX();
     this.txtmabn = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.txthoten = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.pthongtin = new DevComponents.DotNetBar.PanelEx();
     this.grpthongtin = new DevComponents.DotNetBar.Controls.GroupPanel();
     this.txtsodienthoai = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.labelX8 = new DevComponents.DotNetBar.LabelX();
     this.txtnamsinh = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.cmbgioitinh = new System.Windows.Forms.ComboBox();
     this.txtdiachi = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.txthotenbenhnhan = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.txtmabenhnhan = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.labelX5 = new DevComponents.DotNetBar.LabelX();
     this.labelX4 = new DevComponents.DotNetBar.LabelX();
     this.labelX3 = new DevComponents.DotNetBar.LabelX();
     this.labelX2 = new DevComponents.DotNetBar.LabelX();
     this.labelX1 = new DevComponents.DotNetBar.LabelX();
     this.bENHNHANBindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.panelEx1.SuspendLayout();
     this.grpthaotac.SuspendLayout();
     this.groupPanel3.SuspendLayout();
     this.groupPanel6.SuspendLayout();
     this.grpthongtin.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.bENHNHANBindingSource)).BeginInit();
     this.SuspendLayout();
     //
     // panelEx1
     //
     this.panelEx1.CanvasColor = System.Drawing.SystemColors.Control;
     this.panelEx1.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.panelEx1.Controls.Add(this.panelEx2);
     this.panelEx1.Controls.Add(this.grpthaotac);
     this.panelEx1.Controls.Add(this.panelEx4);
     this.panelEx1.Controls.Add(this.groupPanel3);
     this.panelEx1.Controls.Add(this.pthongtin);
     this.panelEx1.Controls.Add(this.grpthongtin);
     this.panelEx1.Location = new System.Drawing.Point(0, 0);
     this.panelEx1.Name = "panelEx1";
     this.panelEx1.Size = new System.Drawing.Size(928, 535);
     this.panelEx1.Style.Alignment = System.Drawing.StringAlignment.Center;
     this.panelEx1.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.panelEx1.Style.BackColor2.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.panelEx1.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.panelEx1.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.panelEx1.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.panelEx1.Style.GradientAngle = 90;
     this.panelEx1.TabIndex = 0;
     //
     // panelEx2
     //
     this.panelEx2.CanvasColor = System.Drawing.SystemColors.Control;
     this.panelEx2.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.panelEx2.Location = new System.Drawing.Point(20, 377);
     this.panelEx2.Name = "panelEx2";
     this.panelEx2.Size = new System.Drawing.Size(211, 33);
     this.panelEx2.Style.Alignment = System.Drawing.StringAlignment.Center;
     this.panelEx2.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.panelEx2.Style.BackColor2.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.panelEx2.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.panelEx2.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.panelEx2.Style.CornerType = DevComponents.DotNetBar.eCornerType.Rounded;
     this.panelEx2.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.panelEx2.Style.GradientAngle = 90;
     this.panelEx2.TabIndex = 4;
     this.panelEx2.Text = "Thao tác";
     //
     // grpthaotac
     //
     this.grpthaotac.CanvasColor = System.Drawing.SystemColors.Control;
     this.grpthaotac.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.grpthaotac.Controls.Add(this.btnthoat);
     this.grpthaotac.Controls.Add(this.btnsua);
     this.grpthaotac.Controls.Add(this.btnxoa);
     this.grpthaotac.Controls.Add(this.btnthembenhnhan);
     this.grpthaotac.Location = new System.Drawing.Point(12, 388);
     this.grpthaotac.Name = "grpthaotac";
     this.grpthaotac.Size = new System.Drawing.Size(250, 139);
     //
     //
     //
     this.grpthaotac.Style.BackColor = System.Drawing.Color.White;
     this.grpthaotac.Style.BackColor2 = System.Drawing.Color.White;
     this.grpthaotac.Style.BackColorGradientAngle = 90;
     this.grpthaotac.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.grpthaotac.Style.BorderBottomWidth = 2;
     this.grpthaotac.Style.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(255)))));
     this.grpthaotac.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.grpthaotac.Style.BorderLeftWidth = 2;
     this.grpthaotac.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.grpthaotac.Style.BorderRightWidth = 2;
     this.grpthaotac.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.grpthaotac.Style.BorderTopWidth = 2;
     this.grpthaotac.Style.CornerDiameter = 4;
     this.grpthaotac.Style.CornerType = DevComponents.DotNetBar.eCornerType.Rounded;
     this.grpthaotac.Style.TextAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Center;
     this.grpthaotac.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.grpthaotac.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near;
     this.grpthaotac.TabIndex = 2;
     //
     // btnthoat
     //
     this.btnthoat.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btnthoat.ColorTable = DevComponents.DotNetBar.eButtonColor.BlueOrb;
     this.btnthoat.Location = new System.Drawing.Point(36, 82);
     this.btnthoat.Name = "btnthoat";
     this.btnthoat.Size = new System.Drawing.Size(75, 22);
     this.btnthoat.TabIndex = 3;
     this.btnthoat.Text = "Hủy";
     this.btnthoat.Click += new System.EventHandler(this.btnthoat_Click);
     //
     // btnsua
     //
     this.btnsua.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btnsua.ColorTable = DevComponents.DotNetBar.eButtonColor.Office2007WithBackground;
     this.btnsua.Location = new System.Drawing.Point(132, 80);
     this.btnsua.Name = "btnsua";
     this.btnsua.Size = new System.Drawing.Size(75, 24);
     this.btnsua.TabIndex = 2;
     this.btnsua.Text = "Sửa";
     this.btnsua.Click += new System.EventHandler(this.btnsua_Click);
     //
     // btnxoa
     //
     this.btnxoa.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btnxoa.ColorTable = DevComponents.DotNetBar.eButtonColor.Office2007WithBackground;
     this.btnxoa.Location = new System.Drawing.Point(132, 51);
     this.btnxoa.Name = "btnxoa";
     this.btnxoa.Size = new System.Drawing.Size(75, 23);
     this.btnxoa.TabIndex = 1;
     this.btnxoa.Text = "Xóa";
     this.btnxoa.Click += new System.EventHandler(this.btnxoa_Click);
     //
     // btnthembenhnhan
     //
     this.btnthembenhnhan.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btnthembenhnhan.ColorTable = DevComponents.DotNetBar.eButtonColor.Office2007WithBackground;
     this.btnthembenhnhan.Location = new System.Drawing.Point(36, 51);
     this.btnthembenhnhan.Name = "btnthembenhnhan";
     this.btnthembenhnhan.Size = new System.Drawing.Size(75, 23);
     this.btnthembenhnhan.TabIndex = 0;
     this.btnthembenhnhan.Text = "Thêm ";
     this.btnthembenhnhan.Click += new System.EventHandler(this.btnthembenhnhan_Click);
     //
     // panelEx4
     //
     this.panelEx4.CanvasColor = System.Drawing.SystemColors.Control;
     this.panelEx4.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.panelEx4.Location = new System.Drawing.Point(290, 12);
     this.panelEx4.Name = "panelEx4";
     this.panelEx4.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.panelEx4.Size = new System.Drawing.Size(551, 33);
     this.panelEx4.Style.Alignment = System.Drawing.StringAlignment.Center;
     this.panelEx4.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.panelEx4.Style.BackColor2.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.panelEx4.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.panelEx4.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.panelEx4.Style.CornerType = DevComponents.DotNetBar.eCornerType.Rounded;
     this.panelEx4.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.panelEx4.Style.GradientAngle = 90;
     this.panelEx4.TabIndex = 2;
     this.panelEx4.Text = "Danh sách bệnh nhân";
     //
     // groupPanel3
     //
     this.groupPanel3.BackColor = System.Drawing.Color.Transparent;
     this.groupPanel3.CanvasColor = System.Drawing.SystemColors.Control;
     this.groupPanel3.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.groupPanel3.Controls.Add(this.lvDanhSachBenhNhan);
     this.groupPanel3.Controls.Add(this.groupPanel6);
     this.groupPanel3.Location = new System.Drawing.Point(284, 19);
     this.groupPanel3.Name = "groupPanel3";
     this.groupPanel3.Size = new System.Drawing.Size(641, 508);
     //
     //
     //
     this.groupPanel3.Style.BackColor = System.Drawing.Color.White;
     this.groupPanel3.Style.BackColor2 = System.Drawing.Color.White;
     this.groupPanel3.Style.BackColorGradientAngle = 90;
     this.groupPanel3.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel3.Style.BorderBottomWidth = 2;
     this.groupPanel3.Style.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(255)))));
     this.groupPanel3.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel3.Style.BorderLeftWidth = 2;
     this.groupPanel3.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel3.Style.BorderRightWidth = 2;
     this.groupPanel3.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel3.Style.BorderTopWidth = 2;
     this.groupPanel3.Style.CornerDiameter = 4;
     this.groupPanel3.Style.CornerType = DevComponents.DotNetBar.eCornerType.Rounded;
     this.groupPanel3.Style.TextAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Center;
     this.groupPanel3.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.groupPanel3.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near;
     this.groupPanel3.TabIndex = 4;
     //
     // lvDanhSachBenhNhan
     //
     this.lvDanhSachBenhNhan.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
     this.columnHeader0,
     this.columnHeader1,
     this.columnHeader2,
     this.columnHeader3,
     this.columnHeader4,
     this.columnHeader5,
     this.columnHeader6});
     this.lvDanhSachBenhNhan.Font = new System.Drawing.Font("Times New Roman", 10.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lvDanhSachBenhNhan.FullRowSelect = true;
     this.lvDanhSachBenhNhan.GridLines = true;
     this.lvDanhSachBenhNhan.Location = new System.Drawing.Point(3, 121);
     this.lvDanhSachBenhNhan.Name = "lvDanhSachBenhNhan";
     this.lvDanhSachBenhNhan.Size = new System.Drawing.Size(629, 378);
     this.lvDanhSachBenhNhan.TabIndex = 9;
     this.lvDanhSachBenhNhan.UseCompatibleStateImageBehavior = false;
     this.lvDanhSachBenhNhan.View = System.Windows.Forms.View.Details;
     this.lvDanhSachBenhNhan.SelectedIndexChanged += new System.EventHandler(this.lvDanhSachBenhNhan_SelectedIndexChanged);
     //
     // columnHeader0
     //
     this.columnHeader0.Text = "STT";
     this.columnHeader0.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.columnHeader0.Width = 40;
     //
     // columnHeader1
     //
     this.columnHeader1.Text = "Mã Bệnh Nhân";
     this.columnHeader1.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.columnHeader1.Width = 100;
     //
     // columnHeader2
     //
     this.columnHeader2.Text = "Họ Tên";
     this.columnHeader2.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.columnHeader2.Width = 150;
     //
     // columnHeader3
     //
     this.columnHeader3.Text = "Giới Tính";
     this.columnHeader3.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.columnHeader3.Width = 80;
     //
     // columnHeader4
     //
     this.columnHeader4.Text = "Năm sinh";
     this.columnHeader4.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.columnHeader4.Width = 70;
     //
     // columnHeader5
     //
     this.columnHeader5.Text = "Số điện thoại";
     this.columnHeader5.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.columnHeader5.Width = 90;
     //
     // columnHeader6
     //
     this.columnHeader6.Text = "Địa chỉ";
     this.columnHeader6.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.columnHeader6.Width = 170;
     //
     // groupPanel6
     //
     this.groupPanel6.CanvasColor = System.Drawing.SystemColors.Control;
     this.groupPanel6.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.groupPanel6.Controls.Add(this.labelX6);
     this.groupPanel6.Controls.Add(this.labelX7);
     this.groupPanel6.Controls.Add(this.txtmabn);
     this.groupPanel6.Controls.Add(this.txthoten);
     this.groupPanel6.Location = new System.Drawing.Point(3, 29);
     this.groupPanel6.Name = "groupPanel6";
     this.groupPanel6.Size = new System.Drawing.Size(551, 86);
     //
     //
     //
     this.groupPanel6.Style.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.groupPanel6.Style.BackColorGradientAngle = 90;
     this.groupPanel6.Style.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.groupPanel6.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel6.Style.BorderBottomWidth = 1;
     this.groupPanel6.Style.BorderColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.groupPanel6.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel6.Style.BorderLeftWidth = 1;
     this.groupPanel6.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel6.Style.BorderRightWidth = 1;
     this.groupPanel6.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel6.Style.BorderTopWidth = 1;
     this.groupPanel6.Style.CornerDiameter = 4;
     this.groupPanel6.Style.CornerType = DevComponents.DotNetBar.eCornerType.Rounded;
     this.groupPanel6.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.groupPanel6.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near;
     this.groupPanel6.TabIndex = 5;
     this.groupPanel6.Text = "Tìm bệnh nhân               ";
     //
     // labelX6
     //
     this.labelX6.BackColor = System.Drawing.Color.Transparent;
     //
     //
     //
     this.labelX6.BackgroundStyle.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.labelX6.BackgroundStyle.BorderBottomWidth = 2;
     this.labelX6.BackgroundStyle.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.labelX6.BackgroundStyle.BorderLeftWidth = 2;
     this.labelX6.BackgroundStyle.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.labelX6.BackgroundStyle.BorderRightWidth = 2;
     this.labelX6.BackgroundStyle.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.labelX6.BackgroundStyle.BorderTopWidth = 2;
     this.labelX6.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelX6.Location = new System.Drawing.Point(43, 31);
     this.labelX6.Name = "labelX6";
     this.labelX6.Size = new System.Drawing.Size(52, 23);
     this.labelX6.TabIndex = 6;
     this.labelX6.Text = "Họ tên :";
     //
     // labelX7
     //
     this.labelX7.BackColor = System.Drawing.Color.Transparent;
     //
     //
     //
     this.labelX7.BackgroundStyle.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.labelX7.BackgroundStyle.BorderBottomWidth = 2;
     this.labelX7.BackgroundStyle.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.labelX7.BackgroundStyle.BorderLeftWidth = 2;
     this.labelX7.BackgroundStyle.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.labelX7.BackgroundStyle.BorderRightWidth = 2;
     this.labelX7.BackgroundStyle.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.labelX7.BackgroundStyle.BorderTopWidth = 2;
     this.labelX7.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelX7.Location = new System.Drawing.Point(3, 3);
     this.labelX7.Name = "labelX7";
     this.labelX7.Size = new System.Drawing.Size(101, 23);
     this.labelX7.TabIndex = 5;
     this.labelX7.Text = "Mã bệnh nhân :";
     //
     // txtmabn
     //
     //
     //
     //
     this.txtmabn.Border.Class = "TextBoxBorder";
     this.txtmabn.Location = new System.Drawing.Point(110, 3);
     this.txtmabn.Name = "txtmabn";
     this.txtmabn.Size = new System.Drawing.Size(145, 20);
     this.txtmabn.TabIndex = 3;
     this.txtmabn.TextChanged += new System.EventHandler(this.txtmabn_TextChanged);
     //
     // txthoten
     //
     //
     //
     //
     this.txthoten.Border.Class = "TextBoxBorder";
     this.txthoten.Location = new System.Drawing.Point(110, 31);
     this.txthoten.Name = "txthoten";
     this.txthoten.Size = new System.Drawing.Size(145, 20);
     this.txthoten.TabIndex = 4;
     this.txthoten.TextChanged += new System.EventHandler(this.txthoten_TextChanged);
     //
     // pthongtin
     //
     this.pthongtin.CanvasColor = System.Drawing.SystemColors.Control;
     this.pthongtin.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.pthongtin.Location = new System.Drawing.Point(20, 12);
     this.pthongtin.Name = "pthongtin";
     this.pthongtin.Size = new System.Drawing.Size(208, 33);
     this.pthongtin.Style.Alignment = System.Drawing.StringAlignment.Center;
     this.pthongtin.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.pthongtin.Style.BackColor2.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.pthongtin.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.pthongtin.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.pthongtin.Style.CornerType = DevComponents.DotNetBar.eCornerType.Rounded;
     this.pthongtin.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.pthongtin.Style.GradientAngle = 90;
     this.pthongtin.TabIndex = 1;
     this.pthongtin.Text = "Thông tin bệnh nhân";
     //
     // grpthongtin
     //
     this.grpthongtin.BackColor = System.Drawing.Color.Transparent;
     this.grpthongtin.CanvasColor = System.Drawing.SystemColors.Control;
     this.grpthongtin.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.grpthongtin.Controls.Add(this.txtsodienthoai);
     this.grpthongtin.Controls.Add(this.labelX8);
     this.grpthongtin.Controls.Add(this.txtnamsinh);
     this.grpthongtin.Controls.Add(this.cmbgioitinh);
     this.grpthongtin.Controls.Add(this.txtdiachi);
     this.grpthongtin.Controls.Add(this.txthotenbenhnhan);
     this.grpthongtin.Controls.Add(this.txtmabenhnhan);
     this.grpthongtin.Controls.Add(this.labelX5);
     this.grpthongtin.Controls.Add(this.labelX4);
     this.grpthongtin.Controls.Add(this.labelX3);
     this.grpthongtin.Controls.Add(this.labelX2);
     this.grpthongtin.Controls.Add(this.labelX1);
     this.grpthongtin.Location = new System.Drawing.Point(12, 23);
     this.grpthongtin.Name = "grpthongtin";
     this.grpthongtin.Size = new System.Drawing.Size(251, 336);
     //
     //
     //
     this.grpthongtin.Style.BackColor = System.Drawing.Color.White;
     this.grpthongtin.Style.BackColor2 = System.Drawing.Color.White;
     this.grpthongtin.Style.BackColorGradientAngle = 90;
     this.grpthongtin.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.grpthongtin.Style.BorderBottomWidth = 2;
     this.grpthongtin.Style.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(255)))));
     this.grpthongtin.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.grpthongtin.Style.BorderLeftWidth = 2;
     this.grpthongtin.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.grpthongtin.Style.BorderRightWidth = 2;
     this.grpthongtin.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.grpthongtin.Style.BorderTopWidth = 2;
     this.grpthongtin.Style.CornerDiameter = 4;
     this.grpthongtin.Style.CornerType = DevComponents.DotNetBar.eCornerType.Rounded;
     this.grpthongtin.Style.TextAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Center;
     this.grpthongtin.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.grpthongtin.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near;
     this.grpthongtin.TabIndex = 0;
     //
     // txtsodienthoai
     //
     //
     //
     //
     this.txtsodienthoai.Border.Class = "TextBoxBorder";
     this.txtsodienthoai.Location = new System.Drawing.Point(79, 211);
     this.txtsodienthoai.MaxLength = 11;
     this.txtsodienthoai.Name = "txtsodienthoai";
     this.txtsodienthoai.Size = new System.Drawing.Size(134, 20);
     this.txtsodienthoai.TabIndex = 20;
     this.txtsodienthoai.TextChanged += new System.EventHandler(this.txtsodienthoai_TextChanged);
     //
     // labelX8
     //
     this.labelX8.Location = new System.Drawing.Point(17, 208);
     this.labelX8.Name = "labelX8";
     this.labelX8.Size = new System.Drawing.Size(75, 23);
     this.labelX8.TabIndex = 19;
     this.labelX8.Text = "Số DT";
     //
     // txtnamsinh
     //
     //
     //
     //
     this.txtnamsinh.Border.Class = "TextBoxBorder";
     this.txtnamsinh.Location = new System.Drawing.Point(79, 172);
     this.txtnamsinh.MaxLength = 4;
     this.txtnamsinh.Name = "txtnamsinh";
     this.txtnamsinh.Size = new System.Drawing.Size(134, 20);
     this.txtnamsinh.TabIndex = 18;
     this.txtnamsinh.TextChanged += new System.EventHandler(this.txtnamsinh_TextChanged);
     //
     // cmbgioitinh
     //
     this.cmbgioitinh.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cmbgioitinh.FormattingEnabled = true;
     this.cmbgioitinh.Items.AddRange(new object[] {
     "Nam",
     "Nữ"});
     this.cmbgioitinh.Location = new System.Drawing.Point(79, 130);
     this.cmbgioitinh.Name = "cmbgioitinh";
     this.cmbgioitinh.Size = new System.Drawing.Size(134, 21);
     this.cmbgioitinh.TabIndex = 17;
     this.cmbgioitinh.SelectedIndexChanged += new System.EventHandler(this.cmbgioitinh_SelectedIndexChanged);
     //
     // txtdiachi
     //
     //
     //
     //
     this.txtdiachi.Border.Class = "TextBoxBorder";
     this.txtdiachi.Location = new System.Drawing.Point(79, 247);
     this.txtdiachi.Multiline = true;
     this.txtdiachi.Name = "txtdiachi";
     this.txtdiachi.Size = new System.Drawing.Size(134, 52);
     this.txtdiachi.TabIndex = 14;
     this.txtdiachi.TextChanged += new System.EventHandler(this.txtdiachi_TextChanged);
     //
     // txthotenbenhnhan
     //
     //
     //
     //
     this.txthotenbenhnhan.Border.Class = "TextBoxBorder";
     this.txthotenbenhnhan.Location = new System.Drawing.Point(79, 91);
     this.txthotenbenhnhan.Name = "txthotenbenhnhan";
     this.txthotenbenhnhan.Size = new System.Drawing.Size(134, 20);
     this.txthotenbenhnhan.TabIndex = 13;
     this.txthotenbenhnhan.TextChanged += new System.EventHandler(this.txthotenbenhnhan_TextChanged);
     //
     // txtmabenhnhan
     //
     //
     //
     //
     this.txtmabenhnhan.Border.Class = "TextBoxBorder";
     this.txtmabenhnhan.Enabled = false;
     this.txtmabenhnhan.Location = new System.Drawing.Point(79, 48);
     this.txtmabenhnhan.Name = "txtmabenhnhan";
     this.txtmabenhnhan.Size = new System.Drawing.Size(134, 20);
     this.txtmabenhnhan.TabIndex = 12;
     //
     // labelX5
     //
     this.labelX5.Location = new System.Drawing.Point(17, 247);
     this.labelX5.Name = "labelX5";
     this.labelX5.Size = new System.Drawing.Size(75, 23);
     this.labelX5.TabIndex = 9;
     this.labelX5.Text = "Địa chỉ :";
     //
     // labelX4
     //
     this.labelX4.Location = new System.Drawing.Point(17, 169);
     this.labelX4.Name = "labelX4";
     this.labelX4.Size = new System.Drawing.Size(75, 23);
     this.labelX4.TabIndex = 8;
     this.labelX4.Text = "Năm sinh ";
     //
     // labelX3
     //
     this.labelX3.Location = new System.Drawing.Point(17, 130);
     this.labelX3.Name = "labelX3";
     this.labelX3.Size = new System.Drawing.Size(75, 23);
     this.labelX3.TabIndex = 7;
     this.labelX3.Text = "Giới tính ";
     //
     // labelX2
     //
     this.labelX2.Location = new System.Drawing.Point(17, 91);
     this.labelX2.Name = "labelX2";
     this.labelX2.Size = new System.Drawing.Size(56, 23);
     this.labelX2.TabIndex = 6;
     this.labelX2.Text = "Họ tên ";
     //
     // labelX1
     //
     this.labelX1.Location = new System.Drawing.Point(17, 46);
     this.labelX1.Name = "labelX1";
     this.labelX1.Size = new System.Drawing.Size(56, 23);
     this.labelX1.TabIndex = 5;
     this.labelX1.Text = "Mã BN";
     //
     // frmbenhnhan
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor = System.Drawing.SystemColors.Control;
     this.ClientSize = new System.Drawing.Size(932, 537);
     this.Controls.Add(this.panelEx1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     this.IsMdiContainer = true;
     this.MaximizeBox = false;
     this.Name = "frmbenhnhan";
     this.ShowInTaskbar = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Bệnh nhân ";
     this.Load += new System.EventHandler(this.frmbenhnhan_Load);
     this.panelEx1.ResumeLayout(false);
     this.grpthaotac.ResumeLayout(false);
     this.groupPanel3.ResumeLayout(false);
     this.groupPanel6.ResumeLayout(false);
     this.grpthongtin.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.bENHNHANBindingSource)).EndInit();
     this.ResumeLayout(false);
 }
コード例 #32
0
 /// <summary> 
 /// Required method for Designer support - do not modify 
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     this.btnRemov = new DevComponents.DotNetBar.ButtonX();
     this.saveButton = new DevComponents.DotNetBar.ButtonX();
     this.labelX5 = new DevComponents.DotNetBar.LabelX();
     this.lbSelList = new System.Windows.Forms.ListBox();
     this.cancelButton = new DevComponents.DotNetBar.ButtonX();
     this.labelXTitle = new DevComponents.DotNetBar.LabelX();
     this.pictureBox1 = new System.Windows.Forms.PictureBox();
     this.toolTip1 = new System.Windows.Forms.ToolTip(this.components);
     this.cmbContinuationType = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.cmbHistoricalPeriod = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.comboItem_tick = new DevComponents.Editors.ComboItem();
     this.comboItem1 = new DevComponents.Editors.ComboItem();
     this.comboItem2 = new DevComponents.Editors.ComboItem();
     this.comboItem3 = new DevComponents.Editors.ComboItem();
     this.comboItem4 = new DevComponents.Editors.ComboItem();
     this.comboItem5 = new DevComponents.Editors.ComboItem();
     this.comboItem6 = new DevComponents.Editors.ComboItem();
     this.comboItem7 = new DevComponents.Editors.ComboItem();
     this.comboItem8 = new DevComponents.Editors.ComboItem();
     this.comboItem9 = new DevComponents.Editors.ComboItem();
     this.comboItem10 = new DevComponents.Editors.ComboItem();
     this.comboItem11 = new DevComponents.Editors.ComboItem();
     this.comboItem12 = new DevComponents.Editors.ComboItem();
     this.comboItem13 = new DevComponents.Editors.ComboItem();
     this.comboItem14 = new DevComponents.Editors.ComboItem();
     this.comboItem15 = new DevComponents.Editors.ComboItem();
     this.textBoxXListName = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.labelX1 = new DevComponents.DotNetBar.LabelX();
     this.labelX2 = new DevComponents.DotNetBar.LabelX();
     this.labelX3 = new DevComponents.DotNetBar.LabelX();
     this.checkBoxX_repeat_dialy = new DevComponents.DotNetBar.Controls.CheckBoxX();
     this.panelEx1 = new DevComponents.DotNetBar.PanelEx();
     this.buttonX_add_date = new DevComponents.DotNetBar.ButtonX();
     this.listViewEx_dates = new DevComponents.DotNetBar.Controls.ListViewEx();
     this.columnHeader1 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.contextMenuStrip2 = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.toolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
     this.dateTimeInput_date = new DevComponents.Editors.DateTimeAdv.DateTimeInput();
     this.buttonX_add = new DevComponents.DotNetBar.ButtonX();
     this.dateTimeInput2 = new DevComponents.Editors.DateTimeAdv.DateTimeInput();
     this.dateTimeInput1 = new DevComponents.Editors.DateTimeAdv.DateTimeInput();
     this.checkedListBox_rd = new System.Windows.Forms.CheckedListBox();
     this.checkBoxX_parttime = new DevComponents.DotNetBar.Controls.CheckBoxX();
     this.listViewEx_times = new DevComponents.DotNetBar.Controls.ListViewEx();
     this.columnHeader2 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.columnHeader3 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.deleteToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.labelX4 = new DevComponents.DotNetBar.LabelX();
     this.ui_nudDOMDepth = new System.Windows.Forms.NumericUpDown();
     this.labelX6 = new DevComponents.DotNetBar.LabelX();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
     this.panelEx1.SuspendLayout();
     this.contextMenuStrip2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dateTimeInput_date)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateTimeInput2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateTimeInput1)).BeginInit();
     this.contextMenuStrip1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ui_nudDOMDepth)).BeginInit();
     this.SuspendLayout();
     //
     // btnRemov
     //
     this.btnRemov.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btnRemov.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.btnRemov.Location = new System.Drawing.Point(696, 45);
     this.btnRemov.Name = "btnRemov";
     this.btnRemov.Size = new System.Drawing.Size(75, 24);
     this.btnRemov.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.btnRemov.TabIndex = 73;
     this.btnRemov.Text = "<";
     this.btnRemov.Click += new System.EventHandler(this.btnRemov_Click);
     //
     // saveButton
     //
     this.saveButton.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.saveButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.saveButton.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.saveButton.Location = new System.Drawing.Point(542, 404);
     this.saveButton.Name = "saveButton";
     this.saveButton.Size = new System.Drawing.Size(105, 31);
     this.saveButton.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.saveButton.TabIndex = 70;
     this.saveButton.Text = "Save";
     //
     // labelX5
     //
     //
     //
     //
     this.labelX5.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX5.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
     this.labelX5.Location = new System.Drawing.Point(546, 48);
     this.labelX5.Name = "labelX5";
     this.labelX5.Size = new System.Drawing.Size(131, 21);
     this.labelX5.TabIndex = 68;
     this.labelX5.Text = "Selected symbols:";
     //
     // lbSelList
     //
     this.lbSelList.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.lbSelList.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
     this.lbSelList.FormattingEnabled = true;
     this.lbSelList.ItemHeight = 15;
     this.lbSelList.Location = new System.Drawing.Point(542, 71);
     this.lbSelList.Name = "lbSelList";
     this.lbSelList.SelectionMode = System.Windows.Forms.SelectionMode.MultiExtended;
     this.lbSelList.Size = new System.Drawing.Size(229, 319);
     this.lbSelList.TabIndex = 58;
     //
     // cancelButton
     //
     this.cancelButton.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.cancelButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.cancelButton.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.cancelButton.Location = new System.Drawing.Point(666, 404);
     this.cancelButton.Name = "cancelButton";
     this.cancelButton.Size = new System.Drawing.Size(105, 31);
     this.cancelButton.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.cancelButton.TabIndex = 21;
     this.cancelButton.Text = "Cancel";
     this.toolTip1.SetToolTip(this.cancelButton, "Return without saving");
     //
     // labelXTitle
     //
     //
     //
     //
     this.labelXTitle.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelXTitle.Font = new System.Drawing.Font("Segoe UI", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelXTitle.Location = new System.Drawing.Point(101, 4);
     this.labelXTitle.Name = "labelXTitle";
     this.labelXTitle.Size = new System.Drawing.Size(239, 34);
     this.labelXTitle.TabIndex = 19;
     this.labelXTitle.Text = "EDIT SYMBOLS LIST";
     //
     // pictureBox1
     //
     this.pictureBox1.Image = global::TickNetClient.Properties.Resources.backbutton1;
     this.pictureBox1.Location = new System.Drawing.Point(3, 3);
     this.pictureBox1.Name = "pictureBox1";
     this.pictureBox1.Size = new System.Drawing.Size(44, 44);
     this.pictureBox1.TabIndex = 12;
     this.pictureBox1.TabStop = false;
     this.toolTip1.SetToolTip(this.pictureBox1, "Cancel");
     this.pictureBox1.Click += new System.EventHandler(this.pictureBox1_Click);
     //
     // cmbContinuationType
     //
     this.cmbContinuationType.DisplayMember = "Text";
     this.cmbContinuationType.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.cmbContinuationType.FormattingEnabled = true;
     this.cmbContinuationType.ItemHeight = 17;
     this.cmbContinuationType.Location = new System.Drawing.Point(185, 129);
     this.cmbContinuationType.Name = "cmbContinuationType";
     this.cmbContinuationType.Size = new System.Drawing.Size(198, 23);
     this.cmbContinuationType.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.cmbContinuationType.TabIndex = 88;
     //
     // cmbHistoricalPeriod
     //
     this.cmbHistoricalPeriod.DisplayMember = "Text";
     this.cmbHistoricalPeriod.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.cmbHistoricalPeriod.FormattingEnabled = true;
     this.cmbHistoricalPeriod.ItemHeight = 17;
     this.cmbHistoricalPeriod.Items.AddRange(new object[] {
     this.comboItem_tick,
     this.comboItem1,
     this.comboItem2,
     this.comboItem3,
     this.comboItem4,
     this.comboItem5,
     this.comboItem6,
     this.comboItem7,
     this.comboItem8,
     this.comboItem9,
     this.comboItem10,
     this.comboItem11,
     this.comboItem12,
     this.comboItem13,
     this.comboItem14,
     this.comboItem15});
     this.cmbHistoricalPeriod.Location = new System.Drawing.Point(185, 100);
     this.cmbHistoricalPeriod.Name = "cmbHistoricalPeriod";
     this.cmbHistoricalPeriod.Size = new System.Drawing.Size(351, 23);
     this.cmbHistoricalPeriod.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.cmbHistoricalPeriod.TabIndex = 87;
     //
     // comboItem_tick
     //
     this.comboItem_tick.Text = "tick";
     //
     // comboItem1
     //
     this.comboItem1.Text = "1 minute";
     //
     // comboItem2
     //
     this.comboItem2.Text = "2 minutes";
     //
     // comboItem3
     //
     this.comboItem3.Text = "3 minutes";
     //
     // comboItem4
     //
     this.comboItem4.Text = "5 minutes";
     //
     // comboItem5
     //
     this.comboItem5.Text = "10 minutes";
     //
     // comboItem6
     //
     this.comboItem6.Text = "15 minutes";
     //
     // comboItem7
     //
     this.comboItem7.Text = "30 minutes";
     //
     // comboItem8
     //
     this.comboItem8.Text = "60 minutes";
     //
     // comboItem9
     //
     this.comboItem9.Text = "240 minutes";
     //
     // comboItem10
     //
     this.comboItem10.Text = "Daily";
     //
     // comboItem11
     //
     this.comboItem11.Text = "Weekly";
     //
     // comboItem12
     //
     this.comboItem12.Text = "Monthly";
     //
     // comboItem13
     //
     this.comboItem13.Text = "Quarterly";
     //
     // comboItem14
     //
     this.comboItem14.Text = "Semiannual";
     //
     // comboItem15
     //
     this.comboItem15.Text = "Yearly";
     //
     // textBoxXListName
     //
     this.textBoxXListName.BackColor = System.Drawing.Color.White;
     //
     //
     //
     this.textBoxXListName.Border.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.textBoxXListName.Border.BorderLeftColor = System.Drawing.Color.Green;
     this.textBoxXListName.Border.BorderLeftWidth = 3;
     this.textBoxXListName.Border.Class = "TextBoxBorder";
     this.textBoxXListName.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.textBoxXListName.ForeColor = System.Drawing.Color.Black;
     this.textBoxXListName.Location = new System.Drawing.Point(185, 71);
     this.textBoxXListName.Name = "textBoxXListName";
     this.textBoxXListName.Size = new System.Drawing.Size(351, 23);
     this.textBoxXListName.TabIndex = 83;
     //
     // labelX1
     //
     //
     //
     //
     this.labelX1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX1.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
     this.labelX1.Location = new System.Drawing.Point(104, 71);
     this.labelX1.Name = "labelX1";
     this.labelX1.Size = new System.Drawing.Size(75, 21);
     this.labelX1.TabIndex = 84;
     this.labelX1.Text = "List Name:";
     this.labelX1.TextAlignment = System.Drawing.StringAlignment.Far;
     //
     // labelX2
     //
     //
     //
     //
     this.labelX2.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX2.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
     this.labelX2.Location = new System.Drawing.Point(104, 100);
     this.labelX2.Name = "labelX2";
     this.labelX2.Size = new System.Drawing.Size(75, 21);
     this.labelX2.TabIndex = 85;
     this.labelX2.Text = "Timeframe:";
     this.labelX2.TextAlignment = System.Drawing.StringAlignment.Far;
     //
     // labelX3
     //
     //
     //
     //
     this.labelX3.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX3.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
     this.labelX3.Location = new System.Drawing.Point(45, 127);
     this.labelX3.Name = "labelX3";
     this.labelX3.Size = new System.Drawing.Size(134, 21);
     this.labelX3.TabIndex = 86;
     this.labelX3.Text = "Continuation Types:";
     this.labelX3.TextAlignment = System.Drawing.StringAlignment.Far;
     //
     // checkBoxX_repeat_dialy
     //
     //
     //
     //
     this.checkBoxX_repeat_dialy.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.checkBoxX_repeat_dialy.Location = new System.Drawing.Point(212, 28);
     this.checkBoxX_repeat_dialy.Name = "checkBoxX_repeat_dialy";
     this.checkBoxX_repeat_dialy.Size = new System.Drawing.Size(136, 23);
     this.checkBoxX_repeat_dialy.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.checkBoxX_repeat_dialy.TabIndex = 89;
     this.checkBoxX_repeat_dialy.Text = "Days required";
     this.checkBoxX_repeat_dialy.CheckedChanged += new System.EventHandler(this.checkBoxX_repeat_dialy_CheckedChanged);
     //
     // panelEx1
     //
     this.panelEx1.CanvasColor = System.Drawing.SystemColors.Control;
     this.panelEx1.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.panelEx1.Controls.Add(this.buttonX_add_date);
     this.panelEx1.Controls.Add(this.listViewEx_dates);
     this.panelEx1.Controls.Add(this.dateTimeInput_date);
     this.panelEx1.Controls.Add(this.buttonX_add);
     this.panelEx1.Controls.Add(this.dateTimeInput2);
     this.panelEx1.Controls.Add(this.dateTimeInput1);
     this.panelEx1.Controls.Add(this.checkedListBox_rd);
     this.panelEx1.Controls.Add(this.checkBoxX_parttime);
     this.panelEx1.Controls.Add(this.listViewEx_times);
     this.panelEx1.Controls.Add(this.labelX4);
     this.panelEx1.Controls.Add(this.checkBoxX_repeat_dialy);
     this.panelEx1.Location = new System.Drawing.Point(24, 172);
     this.panelEx1.Name = "panelEx1";
     this.panelEx1.Size = new System.Drawing.Size(512, 218);
     this.panelEx1.Style.Alignment = System.Drawing.StringAlignment.Center;
     this.panelEx1.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.panelEx1.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.panelEx1.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.panelEx1.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.panelEx1.Style.GradientAngle = 90;
     this.panelEx1.TabIndex = 90;
     //
     // buttonX_add_date
     //
     this.buttonX_add_date.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.buttonX_add_date.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.buttonX_add_date.Location = new System.Drawing.Point(448, 28);
     this.buttonX_add_date.Name = "buttonX_add_date";
     this.buttonX_add_date.Size = new System.Drawing.Size(49, 23);
     this.buttonX_add_date.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.buttonX_add_date.TabIndex = 103;
     this.buttonX_add_date.Text = "Add";
     this.buttonX_add_date.Click += new System.EventHandler(this.buttonX_add_date_Click);
     //
     // listViewEx_dates
     //
     this.listViewEx_dates.BackColor = System.Drawing.Color.White;
     //
     //
     //
     this.listViewEx_dates.Border.Class = "ListViewBorder";
     this.listViewEx_dates.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.listViewEx_dates.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
     this.columnHeader1});
     this.listViewEx_dates.ContextMenuStrip = this.contextMenuStrip2;
     this.listViewEx_dates.ForeColor = System.Drawing.Color.Black;
     this.listViewEx_dates.Location = new System.Drawing.Point(354, 57);
     this.listViewEx_dates.Name = "listViewEx_dates";
     this.listViewEx_dates.Size = new System.Drawing.Size(143, 149);
     this.listViewEx_dates.TabIndex = 102;
     this.listViewEx_dates.UseCompatibleStateImageBehavior = false;
     this.listViewEx_dates.View = System.Windows.Forms.View.Details;
     //
     // columnHeader1
     //
     this.columnHeader1.Text = "Date";
     this.columnHeader1.Width = 120;
     //
     // contextMenuStrip2
     //
     this.contextMenuStrip2.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.toolStripMenuItem1});
     this.contextMenuStrip2.Name = "contextMenuStrip1";
     this.contextMenuStrip2.Size = new System.Drawing.Size(108, 26);
     //
     // toolStripMenuItem1
     //
     this.toolStripMenuItem1.Name = "toolStripMenuItem1";
     this.toolStripMenuItem1.Size = new System.Drawing.Size(107, 22);
     this.toolStripMenuItem1.Text = "Delete";
     this.toolStripMenuItem1.Click += new System.EventHandler(this.toolStripMenuItem1_Click);
     //
     // dateTimeInput_date
     //
     //
     //
     //
     this.dateTimeInput_date.BackgroundStyle.Class = "DateTimeInputBackground";
     this.dateTimeInput_date.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dateTimeInput_date.ButtonDropDown.Shortcut = DevComponents.DotNetBar.eShortcut.AltDown;
     this.dateTimeInput_date.ButtonDropDown.Visible = true;
     this.dateTimeInput_date.IsPopupCalendarOpen = false;
     this.dateTimeInput_date.Location = new System.Drawing.Point(354, 28);
     //
     //
     //
     this.dateTimeInput_date.MonthCalendar.AnnuallyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.dateTimeInput_date.MonthCalendar.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dateTimeInput_date.MonthCalendar.CalendarDimensions = new System.Drawing.Size(1, 1);
     this.dateTimeInput_date.MonthCalendar.ClearButtonVisible = true;
     //
     //
     //
     this.dateTimeInput_date.MonthCalendar.CommandsBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground2;
     this.dateTimeInput_date.MonthCalendar.CommandsBackgroundStyle.BackColorGradientAngle = 90;
     this.dateTimeInput_date.MonthCalendar.CommandsBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
     this.dateTimeInput_date.MonthCalendar.CommandsBackgroundStyle.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.dateTimeInput_date.MonthCalendar.CommandsBackgroundStyle.BorderTopColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarDockedBorder;
     this.dateTimeInput_date.MonthCalendar.CommandsBackgroundStyle.BorderTopWidth = 1;
     this.dateTimeInput_date.MonthCalendar.CommandsBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dateTimeInput_date.MonthCalendar.DisplayMonth = new System.DateTime(2013, 12, 1, 0, 0, 0, 0);
     this.dateTimeInput_date.MonthCalendar.FirstDayOfWeek = System.DayOfWeek.Monday;
     this.dateTimeInput_date.MonthCalendar.MarkedDates = new System.DateTime[0];
     this.dateTimeInput_date.MonthCalendar.MonthlyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.dateTimeInput_date.MonthCalendar.NavigationBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.dateTimeInput_date.MonthCalendar.NavigationBackgroundStyle.BackColorGradientAngle = 90;
     this.dateTimeInput_date.MonthCalendar.NavigationBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.dateTimeInput_date.MonthCalendar.NavigationBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dateTimeInput_date.MonthCalendar.TodayButtonVisible = true;
     this.dateTimeInput_date.MonthCalendar.WeeklyMarkedDays = new System.DayOfWeek[0];
     this.dateTimeInput_date.Name = "dateTimeInput_date";
     this.dateTimeInput_date.Size = new System.Drawing.Size(88, 23);
     this.dateTimeInput_date.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.dateTimeInput_date.TabIndex = 101;
     this.dateTimeInput_date.Value = new System.DateTime(2013, 12, 17, 0, 0, 0, 0);
     //
     // buttonX_add
     //
     this.buttonX_add.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.buttonX_add.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.buttonX_add.Enabled = false;
     this.buttonX_add.Location = new System.Drawing.Point(155, 57);
     this.buttonX_add.Name = "buttonX_add";
     this.buttonX_add.Size = new System.Drawing.Size(49, 23);
     this.buttonX_add.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.buttonX_add.TabIndex = 100;
     this.buttonX_add.Text = "Add";
     this.buttonX_add.Click += new System.EventHandler(this.buttonX_add_Click);
     //
     // dateTimeInput2
     //
     //
     //
     //
     this.dateTimeInput2.BackgroundStyle.Class = "DateTimeInputBackground";
     this.dateTimeInput2.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dateTimeInput2.ButtonDropDown.Shortcut = DevComponents.DotNetBar.eShortcut.AltDown;
     this.dateTimeInput2.ButtonDropDown.Visible = true;
     this.dateTimeInput2.Enabled = false;
     this.dateTimeInput2.Format = DevComponents.Editors.eDateTimePickerFormat.ShortTime;
     this.dateTimeInput2.IsPopupCalendarOpen = false;
     this.dateTimeInput2.Location = new System.Drawing.Point(79, 58);
     //
     //
     //
     this.dateTimeInput2.MonthCalendar.AnnuallyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.dateTimeInput2.MonthCalendar.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dateTimeInput2.MonthCalendar.CalendarDimensions = new System.Drawing.Size(1, 1);
     this.dateTimeInput2.MonthCalendar.ClearButtonVisible = true;
     //
     //
     //
     this.dateTimeInput2.MonthCalendar.CommandsBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground2;
     this.dateTimeInput2.MonthCalendar.CommandsBackgroundStyle.BackColorGradientAngle = 90;
     this.dateTimeInput2.MonthCalendar.CommandsBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
     this.dateTimeInput2.MonthCalendar.CommandsBackgroundStyle.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.dateTimeInput2.MonthCalendar.CommandsBackgroundStyle.BorderTopColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarDockedBorder;
     this.dateTimeInput2.MonthCalendar.CommandsBackgroundStyle.BorderTopWidth = 1;
     this.dateTimeInput2.MonthCalendar.CommandsBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dateTimeInput2.MonthCalendar.DisplayMonth = new System.DateTime(2013, 12, 1, 0, 0, 0, 0);
     this.dateTimeInput2.MonthCalendar.FirstDayOfWeek = System.DayOfWeek.Monday;
     this.dateTimeInput2.MonthCalendar.MarkedDates = new System.DateTime[0];
     this.dateTimeInput2.MonthCalendar.MonthlyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.dateTimeInput2.MonthCalendar.NavigationBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.dateTimeInput2.MonthCalendar.NavigationBackgroundStyle.BackColorGradientAngle = 90;
     this.dateTimeInput2.MonthCalendar.NavigationBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.dateTimeInput2.MonthCalendar.NavigationBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dateTimeInput2.MonthCalendar.TodayButtonVisible = true;
     this.dateTimeInput2.MonthCalendar.Visible = false;
     this.dateTimeInput2.MonthCalendar.WeeklyMarkedDays = new System.DayOfWeek[0];
     this.dateTimeInput2.Name = "dateTimeInput2";
     this.dateTimeInput2.Size = new System.Drawing.Size(64, 23);
     this.dateTimeInput2.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.dateTimeInput2.TabIndex = 99;
     this.dateTimeInput2.Value = new System.DateTime(2013, 12, 17, 0, 0, 0, 0);
     //
     // dateTimeInput1
     //
     //
     //
     //
     this.dateTimeInput1.BackgroundStyle.Class = "DateTimeInputBackground";
     this.dateTimeInput1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dateTimeInput1.ButtonDropDown.Shortcut = DevComponents.DotNetBar.eShortcut.AltDown;
     this.dateTimeInput1.ButtonDropDown.Visible = true;
     this.dateTimeInput1.Enabled = false;
     this.dateTimeInput1.Format = DevComponents.Editors.eDateTimePickerFormat.ShortTime;
     this.dateTimeInput1.IsPopupCalendarOpen = false;
     this.dateTimeInput1.Location = new System.Drawing.Point(12, 58);
     //
     //
     //
     this.dateTimeInput1.MonthCalendar.AnnuallyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.dateTimeInput1.MonthCalendar.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dateTimeInput1.MonthCalendar.CalendarDimensions = new System.Drawing.Size(1, 1);
     this.dateTimeInput1.MonthCalendar.ClearButtonVisible = true;
     //
     //
     //
     this.dateTimeInput1.MonthCalendar.CommandsBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground2;
     this.dateTimeInput1.MonthCalendar.CommandsBackgroundStyle.BackColorGradientAngle = 90;
     this.dateTimeInput1.MonthCalendar.CommandsBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
     this.dateTimeInput1.MonthCalendar.CommandsBackgroundStyle.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.dateTimeInput1.MonthCalendar.CommandsBackgroundStyle.BorderTopColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarDockedBorder;
     this.dateTimeInput1.MonthCalendar.CommandsBackgroundStyle.BorderTopWidth = 1;
     this.dateTimeInput1.MonthCalendar.CommandsBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dateTimeInput1.MonthCalendar.DisplayMonth = new System.DateTime(2013, 12, 1, 0, 0, 0, 0);
     this.dateTimeInput1.MonthCalendar.FirstDayOfWeek = System.DayOfWeek.Monday;
     this.dateTimeInput1.MonthCalendar.MarkedDates = new System.DateTime[0];
     this.dateTimeInput1.MonthCalendar.MonthlyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.dateTimeInput1.MonthCalendar.NavigationBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.dateTimeInput1.MonthCalendar.NavigationBackgroundStyle.BackColorGradientAngle = 90;
     this.dateTimeInput1.MonthCalendar.NavigationBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.dateTimeInput1.MonthCalendar.NavigationBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dateTimeInput1.MonthCalendar.TodayButtonVisible = true;
     this.dateTimeInput1.MonthCalendar.Visible = false;
     this.dateTimeInput1.MonthCalendar.WeeklyMarkedDays = new System.DayOfWeek[0];
     this.dateTimeInput1.Name = "dateTimeInput1";
     this.dateTimeInput1.Size = new System.Drawing.Size(64, 23);
     this.dateTimeInput1.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.dateTimeInput1.TabIndex = 98;
     this.dateTimeInput1.Value = new System.DateTime(2013, 12, 17, 0, 0, 0, 0);
     //
     // checkedListBox_rd
     //
     this.checkedListBox_rd.Enabled = false;
     this.checkedListBox_rd.FormattingEnabled = true;
     this.checkedListBox_rd.Items.AddRange(new object[] {
     "Sunday",
     "Monday",
     "Tuesday",
     "Wednesday",
     "Thursday",
     "Friday",
     "Saturday"});
     this.checkedListBox_rd.Location = new System.Drawing.Point(212, 57);
     this.checkedListBox_rd.Name = "checkedListBox_rd";
     this.checkedListBox_rd.Size = new System.Drawing.Size(136, 148);
     this.checkedListBox_rd.TabIndex = 96;
     //
     // checkBoxX_parttime
     //
     //
     //
     //
     this.checkBoxX_parttime.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.checkBoxX_parttime.Location = new System.Drawing.Point(12, 28);
     this.checkBoxX_parttime.Name = "checkBoxX_parttime";
     this.checkBoxX_parttime.Size = new System.Drawing.Size(192, 23);
     this.checkBoxX_parttime.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.checkBoxX_parttime.TabIndex = 95;
     this.checkBoxX_parttime.Text = "Is particular?";
     this.checkBoxX_parttime.CheckedChanged += new System.EventHandler(this.checkBoxX_parttime_CheckedChanged);
     //
     // listViewEx_times
     //
     this.listViewEx_times.BackColor = System.Drawing.Color.White;
     //
     //
     //
     this.listViewEx_times.Border.Class = "ListViewBorder";
     this.listViewEx_times.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.listViewEx_times.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
     this.columnHeader2,
     this.columnHeader3});
     this.listViewEx_times.ContextMenuStrip = this.contextMenuStrip1;
     this.listViewEx_times.Enabled = false;
     this.listViewEx_times.ForeColor = System.Drawing.Color.Black;
     this.listViewEx_times.Location = new System.Drawing.Point(12, 87);
     this.listViewEx_times.Name = "listViewEx_times";
     this.listViewEx_times.Size = new System.Drawing.Size(192, 116);
     this.listViewEx_times.TabIndex = 94;
     this.listViewEx_times.UseCompatibleStateImageBehavior = false;
     this.listViewEx_times.View = System.Windows.Forms.View.Details;
     //
     // columnHeader2
     //
     this.columnHeader2.Text = "Time Start";
     this.columnHeader2.Width = 80;
     //
     // columnHeader3
     //
     this.columnHeader3.Text = "Time End";
     this.columnHeader3.Width = 80;
     //
     // contextMenuStrip1
     //
     this.contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.deleteToolStripMenuItem});
     this.contextMenuStrip1.Name = "contextMenuStrip1";
     this.contextMenuStrip1.Size = new System.Drawing.Size(108, 26);
     //
     // deleteToolStripMenuItem
     //
     this.deleteToolStripMenuItem.Name = "deleteToolStripMenuItem";
     this.deleteToolStripMenuItem.Size = new System.Drawing.Size(107, 22);
     this.deleteToolStripMenuItem.Text = "Delete";
     this.deleteToolStripMenuItem.Click += new System.EventHandler(this.deleteToolStripMenuItem_Click);
     //
     // labelX4
     //
     //
     //
     //
     this.labelX4.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX4.Font = new System.Drawing.Font("Segoe UI Semibold", 9F);
     this.labelX4.Location = new System.Drawing.Point(3, 3);
     this.labelX4.Name = "labelX4";
     this.labelX4.PaddingLeft = 10;
     this.labelX4.Size = new System.Drawing.Size(110, 23);
     this.labelX4.TabIndex = 90;
     this.labelX4.Text = "Schedule";
     //
     // ui_nudDOMDepth
     //
     this.ui_nudDOMDepth.BackColor = System.Drawing.Color.White;
     this.ui_nudDOMDepth.ForeColor = System.Drawing.Color.Black;
     this.ui_nudDOMDepth.Location = new System.Drawing.Point(485, 128);
     this.ui_nudDOMDepth.Maximum = new decimal(new int[] {
     500,
     0,
     0,
     0});
     this.ui_nudDOMDepth.Name = "ui_nudDOMDepth";
     this.ui_nudDOMDepth.Size = new System.Drawing.Size(51, 23);
     this.ui_nudDOMDepth.TabIndex = 92;
     this.ui_nudDOMDepth.Value = new decimal(new int[] {
     1,
     0,
     0,
     0});
     //
     // labelX6
     //
     //
     //
     //
     this.labelX6.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX6.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
     this.labelX6.Location = new System.Drawing.Point(389, 127);
     this.labelX6.Name = "labelX6";
     this.labelX6.Size = new System.Drawing.Size(90, 21);
     this.labelX6.TabIndex = 93;
     this.labelX6.Text = "Depth";
     this.labelX6.TextAlignment = System.Drawing.StringAlignment.Far;
     //
     // EditListControl
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor = System.Drawing.Color.White;
     this.Controls.Add(this.labelX6);
     this.Controls.Add(this.ui_nudDOMDepth);
     this.Controls.Add(this.panelEx1);
     this.Controls.Add(this.cmbContinuationType);
     this.Controls.Add(this.cmbHistoricalPeriod);
     this.Controls.Add(this.textBoxXListName);
     this.Controls.Add(this.labelX1);
     this.Controls.Add(this.labelX2);
     this.Controls.Add(this.labelX3);
     this.Controls.Add(this.pictureBox1);
     this.Controls.Add(this.labelXTitle);
     this.Controls.Add(this.btnRemov);
     this.Controls.Add(this.cancelButton);
     this.Controls.Add(this.saveButton);
     this.Controls.Add(this.labelX5);
     this.Controls.Add(this.lbSelList);
     this.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
     this.Name = "EditListControl";
     this.Size = new System.Drawing.Size(800, 482);
     this.Load += new System.EventHandler(this.EditListControl_Load);
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
     this.panelEx1.ResumeLayout(false);
     this.contextMenuStrip2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.dateTimeInput_date)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateTimeInput2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateTimeInput1)).EndInit();
     this.contextMenuStrip1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ui_nudDOMDepth)).EndInit();
     this.ResumeLayout(false);
 }
コード例 #33
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(SetOp));
     this.skinEngine1 = new Sunisoft.IrisSkin.SkinEngine(((System.ComponentModel.Component)(this)));
     this.dotNetBarManager1 = new DevComponents.DotNetBar.DotNetBarManager(this.components);
     this.dockSite4 = new DevComponents.DotNetBar.DockSite();
     this.dockSite1 = new DevComponents.DotNetBar.DockSite();
     this.dockSite2 = new DevComponents.DotNetBar.DockSite();
     this.dockSite8 = new DevComponents.DotNetBar.DockSite();
     this.dockSite5 = new DevComponents.DotNetBar.DockSite();
     this.dockSite6 = new DevComponents.DotNetBar.DockSite();
     this.dockSite7 = new DevComponents.DotNetBar.DockSite();
     this.bar1 = new DevComponents.DotNetBar.Bar();
     this.btnItm_Sav = new DevComponents.DotNetBar.ButtonItem();
     this.btnItm_Modify = new DevComponents.DotNetBar.ButtonItem();
     this.btnItm_Del = new DevComponents.DotNetBar.ButtonItem();
     this.btnItm_Search = new DevComponents.DotNetBar.ButtonItem();
     this.BtnSave = new DevComponents.DotNetBar.ButtonItem();
     this.BtnCancle = new DevComponents.DotNetBar.ButtonItem();
     this.btnItm_Exit = new DevComponents.DotNetBar.ButtonItem();
     this.customizeItem1 = new DevComponents.DotNetBar.CustomizeItem();
     this.dockSite3 = new DevComponents.DotNetBar.DockSite();
     this.panelEx1 = new DevComponents.DotNetBar.PanelEx();
     this.groupPanel3 = new DevComponents.DotNetBar.Controls.GroupPanel();
     this.treeView2 = new System.Windows.Forms.TreeView();
     this.groupPanel2 = new DevComponents.DotNetBar.Controls.GroupPanel();
     this.treeView1 = new System.Windows.Forms.TreeView();
     this.imageList1 = new System.Windows.Forms.ImageList(this.components);
     this.groupPanel1 = new DevComponents.DotNetBar.Controls.GroupPanel();
     this.comboBoxEx2 = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.TxtTel = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.TxtPws = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.labelX3 = new DevComponents.DotNetBar.LabelX();
     this.labelX2 = new DevComponents.DotNetBar.LabelX();
     this.labelX1 = new DevComponents.DotNetBar.LabelX();
     this.lblX3 = new DevComponents.DotNetBar.LabelX();
     this.lblX2 = new DevComponents.DotNetBar.LabelX();
     this.lblX1 = new DevComponents.DotNetBar.LabelX();
     this.linkLabel1 = new System.Windows.Forms.LinkLabel();
     this.comboBoxEx1 = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.txtBoxX2 = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.txtBoxX1 = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.dockSite7.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.bar1)).BeginInit();
     this.panelEx1.SuspendLayout();
     this.groupPanel3.SuspendLayout();
     this.groupPanel2.SuspendLayout();
     this.groupPanel1.SuspendLayout();
     this.SuspendLayout();
     //
     // skinEngine1
     //
     this.skinEngine1.SerialNumber = "";
     this.skinEngine1.SkinFile = null;
     //
     // dotNetBarManager1
     //
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.F1);
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlC);
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlA);
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlV);
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlX);
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlZ);
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlY);
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.Del);
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.Ins);
     this.dotNetBarManager1.BottomDockSite = this.dockSite4;
     this.dotNetBarManager1.DefinitionName = "";
     this.dotNetBarManager1.EnableFullSizeDock = false;
     this.dotNetBarManager1.LeftDockSite = this.dockSite1;
     this.dotNetBarManager1.ParentForm = this;
     this.dotNetBarManager1.RightDockSite = this.dockSite2;
     this.dotNetBarManager1.Style = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.dotNetBarManager1.ToolbarBottomDockSite = this.dockSite8;
     this.dotNetBarManager1.ToolbarLeftDockSite = this.dockSite5;
     this.dotNetBarManager1.ToolbarRightDockSite = this.dockSite6;
     this.dotNetBarManager1.ToolbarTopDockSite = this.dockSite7;
     this.dotNetBarManager1.TopDockSite = this.dockSite3;
     //
     // dockSite4
     //
     this.dockSite4.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite4.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.dockSite4.DocumentDockContainer = new DevComponents.DotNetBar.DocumentDockContainer();
     this.dockSite4.Location = new System.Drawing.Point(0, 559);
     this.dockSite4.Name = "dockSite4";
     this.dockSite4.Size = new System.Drawing.Size(638, 0);
     this.dockSite4.TabIndex = 3;
     this.dockSite4.TabStop = false;
     //
     // dockSite1
     //
     this.dockSite1.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite1.Dock = System.Windows.Forms.DockStyle.Left;
     this.dockSite1.DocumentDockContainer = new DevComponents.DotNetBar.DocumentDockContainer();
     this.dockSite1.Location = new System.Drawing.Point(0, 57);
     this.dockSite1.Name = "dockSite1";
     this.dockSite1.Size = new System.Drawing.Size(0, 502);
     this.dockSite1.TabIndex = 0;
     this.dockSite1.TabStop = false;
     //
     // dockSite2
     //
     this.dockSite2.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite2.Dock = System.Windows.Forms.DockStyle.Right;
     this.dockSite2.DocumentDockContainer = new DevComponents.DotNetBar.DocumentDockContainer();
     this.dockSite2.Location = new System.Drawing.Point(638, 57);
     this.dockSite2.Name = "dockSite2";
     this.dockSite2.Size = new System.Drawing.Size(0, 502);
     this.dockSite2.TabIndex = 1;
     this.dockSite2.TabStop = false;
     //
     // dockSite8
     //
     this.dockSite8.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite8.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.dockSite8.Location = new System.Drawing.Point(0, 559);
     this.dockSite8.Name = "dockSite8";
     this.dockSite8.Size = new System.Drawing.Size(638, 0);
     this.dockSite8.TabIndex = 7;
     this.dockSite8.TabStop = false;
     //
     // dockSite5
     //
     this.dockSite5.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite5.Dock = System.Windows.Forms.DockStyle.Left;
     this.dockSite5.Location = new System.Drawing.Point(0, 57);
     this.dockSite5.Name = "dockSite5";
     this.dockSite5.Size = new System.Drawing.Size(0, 502);
     this.dockSite5.TabIndex = 4;
     this.dockSite5.TabStop = false;
     //
     // dockSite6
     //
     this.dockSite6.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite6.Dock = System.Windows.Forms.DockStyle.Right;
     this.dockSite6.Location = new System.Drawing.Point(638, 57);
     this.dockSite6.Name = "dockSite6";
     this.dockSite6.Size = new System.Drawing.Size(0, 502);
     this.dockSite6.TabIndex = 5;
     this.dockSite6.TabStop = false;
     //
     // dockSite7
     //
     this.dockSite7.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite7.Controls.Add(this.bar1);
     this.dockSite7.Dock = System.Windows.Forms.DockStyle.Top;
     this.dockSite7.Location = new System.Drawing.Point(0, 0);
     this.dockSite7.Name = "dockSite7";
     this.dockSite7.Size = new System.Drawing.Size(638, 57);
     this.dockSite7.TabIndex = 6;
     this.dockSite7.TabStop = false;
     //
     // bar1
     //
     this.bar1.AccessibleDescription = "DotNetBar Bar (bar1)";
     this.bar1.AccessibleName = "DotNetBar Bar";
     this.bar1.AccessibleRole = System.Windows.Forms.AccessibleRole.ToolBar;
     this.bar1.DockSide = DevComponents.DotNetBar.eDockSide.Top;
     this.bar1.GrabHandleStyle = DevComponents.DotNetBar.eGrabHandleStyle.Office2003;
     this.bar1.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.btnItm_Sav,
     this.btnItm_Modify,
     this.btnItm_Del,
     this.btnItm_Search,
     this.BtnSave,
     this.BtnCancle,
     this.btnItm_Exit,
     this.customizeItem1});
     this.bar1.Location = new System.Drawing.Point(0, 0);
     this.bar1.Name = "bar1";
     this.bar1.Size = new System.Drawing.Size(300, 57);
     this.bar1.Style = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.bar1.TabIndex = 0;
     this.bar1.TabStop = false;
     this.bar1.Text = "bar1";
     //
     // btnItm_Sav
     //
     this.btnItm_Sav.Image = ((System.Drawing.Image)(resources.GetObject("btnItm_Sav.Image")));
     this.btnItm_Sav.ImageFixedSize = new System.Drawing.Size(32, 32);
     this.btnItm_Sav.ImagePaddingHorizontal = 8;
     this.btnItm_Sav.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.btnItm_Sav.Name = "btnItm_Sav";
     this.btnItm_Sav.Text = "添加";
     this.btnItm_Sav.Click += new System.EventHandler(this.btnItm_Sav_Click);
     //
     // btnItm_Modify
     //
     this.btnItm_Modify.Image = ((System.Drawing.Image)(resources.GetObject("btnItm_Modify.Image")));
     this.btnItm_Modify.ImageFixedSize = new System.Drawing.Size(32, 32);
     this.btnItm_Modify.ImagePaddingHorizontal = 8;
     this.btnItm_Modify.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.btnItm_Modify.Name = "btnItm_Modify";
     this.btnItm_Modify.Text = "修改";
     this.btnItm_Modify.Click += new System.EventHandler(this.btnItm_Modify_Click);
     //
     // btnItm_Del
     //
     this.btnItm_Del.Image = ((System.Drawing.Image)(resources.GetObject("btnItm_Del.Image")));
     this.btnItm_Del.ImageFixedSize = new System.Drawing.Size(32, 32);
     this.btnItm_Del.ImagePaddingHorizontal = 8;
     this.btnItm_Del.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.btnItm_Del.Name = "btnItm_Del";
     this.btnItm_Del.Text = "删除";
     this.btnItm_Del.Click += new System.EventHandler(this.btnItm_Del_Click);
     //
     // btnItm_Search
     //
     this.btnItm_Search.Image = ((System.Drawing.Image)(resources.GetObject("btnItm_Search.Image")));
     this.btnItm_Search.ImageFixedSize = new System.Drawing.Size(32, 32);
     this.btnItm_Search.ImagePaddingHorizontal = 8;
     this.btnItm_Search.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.btnItm_Search.Name = "btnItm_Search";
     this.btnItm_Search.Text = "查询";
     this.btnItm_Search.Click += new System.EventHandler(this.btnItm_search_Click);
     //
     // BtnSave
     //
     this.BtnSave.Image = ((System.Drawing.Image)(resources.GetObject("BtnSave.Image")));
     this.BtnSave.ImagePaddingHorizontal = 8;
     this.BtnSave.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.BtnSave.Name = "BtnSave";
     this.BtnSave.Text = "保存";
     this.BtnSave.Click += new System.EventHandler(this.BtnSave_Click);
     //
     // BtnCancle
     //
     this.BtnCancle.Image = ((System.Drawing.Image)(resources.GetObject("BtnCancle.Image")));
     this.BtnCancle.ImagePaddingHorizontal = 8;
     this.BtnCancle.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.BtnCancle.Name = "BtnCancle";
     this.BtnCancle.Text = "撤消";
     this.BtnCancle.Click += new System.EventHandler(this.BtnCancle_Click);
     //
     // btnItm_Exit
     //
     this.btnItm_Exit.Image = ((System.Drawing.Image)(resources.GetObject("btnItm_Exit.Image")));
     this.btnItm_Exit.ImageFixedSize = new System.Drawing.Size(32, 32);
     this.btnItm_Exit.ImagePaddingHorizontal = 8;
     this.btnItm_Exit.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.btnItm_Exit.Name = "btnItm_Exit";
     this.btnItm_Exit.Text = "关闭";
     this.btnItm_Exit.Click += new System.EventHandler(this.btnItm_exit_Click);
     //
     // customizeItem1
     //
     this.customizeItem1.Name = "customizeItem1";
     this.customizeItem1.Text = "添加或删除按钮(&A)";
     this.customizeItem1.Tooltip = "工具栏选项";
     //
     // dockSite3
     //
     this.dockSite3.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite3.Dock = System.Windows.Forms.DockStyle.Top;
     this.dockSite3.DocumentDockContainer = new DevComponents.DotNetBar.DocumentDockContainer();
     this.dockSite3.Location = new System.Drawing.Point(0, 57);
     this.dockSite3.Name = "dockSite3";
     this.dockSite3.Size = new System.Drawing.Size(638, 0);
     this.dockSite3.TabIndex = 2;
     this.dockSite3.TabStop = false;
     //
     // panelEx1
     //
     this.panelEx1.CanvasColor = System.Drawing.SystemColors.Control;
     this.panelEx1.ColorScheme.ItemDesignTimeBorder = System.Drawing.Color.Black;
     this.panelEx1.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.panelEx1.Controls.Add(this.groupPanel3);
     this.panelEx1.Controls.Add(this.groupPanel2);
     this.panelEx1.Controls.Add(this.groupPanel1);
     this.panelEx1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panelEx1.Location = new System.Drawing.Point(0, 57);
     this.panelEx1.Name = "panelEx1";
     this.panelEx1.Size = new System.Drawing.Size(638, 502);
     this.panelEx1.Style.Alignment = System.Drawing.StringAlignment.Center;
     this.panelEx1.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.panelEx1.Style.BackColor2.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.panelEx1.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.panelEx1.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.panelEx1.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.panelEx1.Style.GradientAngle = 90;
     this.panelEx1.TabIndex = 8;
     //
     // groupPanel3
     //
     this.groupPanel3.CanvasColor = System.Drawing.SystemColors.Control;
     this.groupPanel3.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.groupPanel3.Controls.Add(this.treeView2);
     this.groupPanel3.Location = new System.Drawing.Point(276, 9);
     this.groupPanel3.Name = "groupPanel3";
     this.groupPanel3.Size = new System.Drawing.Size(350, 490);
     //
     //
     //
     this.groupPanel3.Style.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.groupPanel3.Style.BackColorGradientAngle = 90;
     this.groupPanel3.Style.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.groupPanel3.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel3.Style.BorderBottomWidth = 1;
     this.groupPanel3.Style.BorderColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.groupPanel3.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel3.Style.BorderLeftWidth = 1;
     this.groupPanel3.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel3.Style.BorderRightWidth = 1;
     this.groupPanel3.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel3.Style.BorderTopWidth = 1;
     this.groupPanel3.Style.CornerDiameter = 4;
     this.groupPanel3.Style.CornerType = DevComponents.DotNetBar.eCornerType.Rounded;
     this.groupPanel3.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.groupPanel3.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near;
     this.groupPanel3.TabIndex = 2;
     this.groupPanel3.Text = "操作员权限";
     //
     // treeView2
     //
     this.treeView2.Location = new System.Drawing.Point(13, 13);
     this.treeView2.Name = "treeView2";
     this.treeView2.Size = new System.Drawing.Size(328, 448);
     this.treeView2.TabIndex = 0;
     //
     // groupPanel2
     //
     this.groupPanel2.CanvasColor = System.Drawing.SystemColors.Control;
     this.groupPanel2.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.groupPanel2.Controls.Add(this.treeView1);
     this.groupPanel2.Location = new System.Drawing.Point(12, 241);
     this.groupPanel2.Name = "groupPanel2";
     this.groupPanel2.Size = new System.Drawing.Size(249, 258);
     //
     //
     //
     this.groupPanel2.Style.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.groupPanel2.Style.BackColorGradientAngle = 90;
     this.groupPanel2.Style.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.groupPanel2.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel2.Style.BorderBottomWidth = 1;
     this.groupPanel2.Style.BorderColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.groupPanel2.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel2.Style.BorderLeftWidth = 1;
     this.groupPanel2.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel2.Style.BorderRightWidth = 1;
     this.groupPanel2.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel2.Style.BorderTopWidth = 1;
     this.groupPanel2.Style.CornerDiameter = 4;
     this.groupPanel2.Style.CornerType = DevComponents.DotNetBar.eCornerType.Rounded;
     this.groupPanel2.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.groupPanel2.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near;
     this.groupPanel2.TabIndex = 1;
     this.groupPanel2.Text = "操作员列表";
     //
     // treeView1
     //
     this.treeView1.ImageIndex = 0;
     this.treeView1.ImageList = this.imageList1;
     this.treeView1.Location = new System.Drawing.Point(3, 3);
     this.treeView1.Name = "treeView1";
     this.treeView1.SelectedImageIndex = 0;
     this.treeView1.Size = new System.Drawing.Size(237, 226);
     this.treeView1.TabIndex = 0;
     this.treeView1.NodeMouseClick += new System.Windows.Forms.TreeNodeMouseClickEventHandler(this.treeView1_NodeMouseClick);
     //
     // imageList1
     //
     this.imageList1.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
     this.imageList1.TransparentColor = System.Drawing.Color.Transparent;
     this.imageList1.Images.SetKeyName(0, "I156.ICO");
     this.imageList1.Images.SetKeyName(1, "msnnew_009.ico");
     this.imageList1.Images.SetKeyName(2, "msnnew_019.ico");
     //
     // groupPanel1
     //
     this.groupPanel1.CanvasColor = System.Drawing.SystemColors.Control;
     this.groupPanel1.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.groupPanel1.Controls.Add(this.comboBoxEx2);
     this.groupPanel1.Controls.Add(this.TxtTel);
     this.groupPanel1.Controls.Add(this.TxtPws);
     this.groupPanel1.Controls.Add(this.labelX3);
     this.groupPanel1.Controls.Add(this.labelX2);
     this.groupPanel1.Controls.Add(this.labelX1);
     this.groupPanel1.Controls.Add(this.lblX3);
     this.groupPanel1.Controls.Add(this.lblX2);
     this.groupPanel1.Controls.Add(this.lblX1);
     this.groupPanel1.Controls.Add(this.linkLabel1);
     this.groupPanel1.Controls.Add(this.comboBoxEx1);
     this.groupPanel1.Controls.Add(this.txtBoxX2);
     this.groupPanel1.Controls.Add(this.txtBoxX1);
     this.groupPanel1.Location = new System.Drawing.Point(12, 8);
     this.groupPanel1.Name = "groupPanel1";
     this.groupPanel1.Size = new System.Drawing.Size(249, 225);
     //
     //
     //
     this.groupPanel1.Style.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.groupPanel1.Style.BackColorGradientAngle = 90;
     this.groupPanel1.Style.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.groupPanel1.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel1.Style.BorderBottomWidth = 1;
     this.groupPanel1.Style.BorderColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.groupPanel1.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel1.Style.BorderLeftWidth = 1;
     this.groupPanel1.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel1.Style.BorderRightWidth = 1;
     this.groupPanel1.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel1.Style.BorderTopWidth = 1;
     this.groupPanel1.Style.CornerDiameter = 4;
     this.groupPanel1.Style.CornerType = DevComponents.DotNetBar.eCornerType.Rounded;
     this.groupPanel1.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.groupPanel1.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near;
     this.groupPanel1.TabIndex = 0;
     this.groupPanel1.Text = "操作员信息";
     //
     // comboBoxEx2
     //
     this.comboBoxEx2.DisplayMember = "Text";
     this.comboBoxEx2.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.comboBoxEx2.FormattingEnabled = true;
     this.comboBoxEx2.Location = new System.Drawing.Point(64, 137);
     this.comboBoxEx2.Name = "comboBoxEx2";
     this.comboBoxEx2.Size = new System.Drawing.Size(121, 22);
     this.comboBoxEx2.TabIndex = 17;
     //
     // TxtTel
     //
     //
     //
     //
     this.TxtTel.Border.Class = "TextBoxBorder";
     this.TxtTel.Location = new System.Drawing.Point(64, 103);
     this.TxtTel.Name = "TxtTel";
     this.TxtTel.Size = new System.Drawing.Size(100, 21);
     this.TxtTel.TabIndex = 16;
     //
     // TxtPws
     //
     this.TxtPws.BackColor = System.Drawing.Color.YellowGreen;
     //
     //
     //
     this.TxtPws.Border.Class = "TextBoxBorder";
     this.TxtPws.Location = new System.Drawing.Point(64, 73);
     this.TxtPws.MaxLength = 16;
     this.TxtPws.Name = "TxtPws";
     this.TxtPws.PasswordChar = '*';
     this.TxtPws.Size = new System.Drawing.Size(100, 21);
     this.TxtPws.TabIndex = 15;
     this.TxtPws.UseSystemPasswordChar = true;
     //
     // labelX3
     //
     this.labelX3.BackColor = System.Drawing.Color.Transparent;
     this.labelX3.Location = new System.Drawing.Point(3, 106);
     this.labelX3.Name = "labelX3";
     this.labelX3.Size = new System.Drawing.Size(43, 23);
     this.labelX3.TabIndex = 14;
     this.labelX3.Text = "电话:";
     //
     // labelX2
     //
     this.labelX2.BackColor = System.Drawing.Color.Transparent;
     this.labelX2.Location = new System.Drawing.Point(3, 74);
     this.labelX2.Name = "labelX2";
     this.labelX2.Size = new System.Drawing.Size(43, 23);
     this.labelX2.TabIndex = 13;
     this.labelX2.Text = "密码:";
     //
     // labelX1
     //
     this.labelX1.BackColor = System.Drawing.Color.Transparent;
     this.labelX1.Location = new System.Drawing.Point(3, 137);
     this.labelX1.Name = "labelX1";
     this.labelX1.Size = new System.Drawing.Size(72, 23);
     this.labelX1.TabIndex = 12;
     this.labelX1.Text = "所属部门:";
     //
     // lblX3
     //
     this.lblX3.BackColor = System.Drawing.Color.Transparent;
     this.lblX3.Location = new System.Drawing.Point(3, 172);
     this.lblX3.Name = "lblX3";
     this.lblX3.Size = new System.Drawing.Size(55, 23);
     this.lblX3.TabIndex = 9;
     this.lblX3.Text = "权限:";
     //
     // lblX2
     //
     this.lblX2.BackColor = System.Drawing.Color.Transparent;
     this.lblX2.Location = new System.Drawing.Point(3, 42);
     this.lblX2.Name = "lblX2";
     this.lblX2.Size = new System.Drawing.Size(43, 23);
     this.lblX2.TabIndex = 8;
     this.lblX2.Text = "姓名:";
     //
     // lblX1
     //
     this.lblX1.BackColor = System.Drawing.Color.Transparent;
     this.lblX1.Location = new System.Drawing.Point(3, 13);
     this.lblX1.Name = "lblX1";
     this.lblX1.Size = new System.Drawing.Size(55, 23);
     this.lblX1.TabIndex = 7;
     this.lblX1.Text = "工号:";
     //
     // linkLabel1
     //
     this.linkLabel1.AutoSize = true;
     this.linkLabel1.BackColor = System.Drawing.Color.MistyRose;
     this.linkLabel1.Location = new System.Drawing.Point(179, 15);
     this.linkLabel1.Name = "linkLabel1";
     this.linkLabel1.Size = new System.Drawing.Size(29, 12);
     this.linkLabel1.TabIndex = 6;
     this.linkLabel1.TabStop = true;
     this.linkLabel1.Text = "检查";
     this.linkLabel1.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel1_LinkClicked);
     //
     // comboBoxEx1
     //
     this.comboBoxEx1.DisplayMember = "Text";
     this.comboBoxEx1.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.comboBoxEx1.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.comboBoxEx1.FormattingEnabled = true;
     this.comboBoxEx1.Location = new System.Drawing.Point(64, 173);
     this.comboBoxEx1.Name = "comboBoxEx1";
     this.comboBoxEx1.Size = new System.Drawing.Size(121, 22);
     this.comboBoxEx1.TabIndex = 5;
     this.comboBoxEx1.SelectionChangeCommitted += new System.EventHandler(this.comboBoxEx1_SelectionChangeCommitted);
     //
     // txtBoxX2
     //
     this.txtBoxX2.BackColor = System.Drawing.Color.YellowGreen;
     //
     //
     //
     this.txtBoxX2.Border.Class = "TextBoxBorder";
     this.txtBoxX2.Location = new System.Drawing.Point(64, 42);
     this.txtBoxX2.Name = "txtBoxX2";
     this.txtBoxX2.Size = new System.Drawing.Size(100, 21);
     this.txtBoxX2.TabIndex = 1;
     //
     // txtBoxX1
     //
     this.txtBoxX1.BackColor = System.Drawing.Color.YellowGreen;
     //
     //
     //
     this.txtBoxX1.Border.Class = "TextBoxBorder";
     this.txtBoxX1.Location = new System.Drawing.Point(64, 13);
     this.txtBoxX1.Name = "txtBoxX1";
     this.txtBoxX1.Size = new System.Drawing.Size(100, 21);
     this.txtBoxX1.TabIndex = 0;
     this.txtBoxX1.TextChanged += new System.EventHandler(this.txtBoxX1_TextChanged);
     this.txtBoxX1.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtBoxX1_KeyPress);
     //
     // SetOp
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(638, 559);
     this.Controls.Add(this.panelEx1);
     this.Controls.Add(this.dockSite1);
     this.Controls.Add(this.dockSite2);
     this.Controls.Add(this.dockSite3);
     this.Controls.Add(this.dockSite4);
     this.Controls.Add(this.dockSite5);
     this.Controls.Add(this.dockSite6);
     this.Controls.Add(this.dockSite7);
     this.Controls.Add(this.dockSite8);
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name = "SetOp";
     this.Text = "操作员设置";
     this.Load += new System.EventHandler(this.SetOp_Load);
     this.dockSite7.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.bar1)).EndInit();
     this.panelEx1.ResumeLayout(false);
     this.groupPanel3.ResumeLayout(false);
     this.groupPanel2.ResumeLayout(false);
     this.groupPanel1.ResumeLayout(false);
     this.groupPanel1.PerformLayout();
     this.ResumeLayout(false);
 }
コード例 #34
0
ファイル: FormMain.designer.cs プロジェクト: marlonnn/TSP_FCT
 /// <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(FormMain));
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle();
     this.styleManager1 = new DevComponents.DotNetBar.StyleManager(this.components);
     this.buttonItem1 = new DevComponents.DotNetBar.ButtonItem();
     this.ribbonControl1 = new DevComponents.DotNetBar.RibbonControl();
     this.ribbonPanel1 = new DevComponents.DotNetBar.RibbonPanel();
     this.ribbonBar3 = new DevComponents.DotNetBar.RibbonBar();
     this.itemContainer6 = new DevComponents.DotNetBar.ItemContainer();
     this.btnQuery = new DevComponents.DotNetBar.ButtonItem();
     this.ribbonBar2 = new DevComponents.DotNetBar.RibbonBar();
     this.itemContainer5 = new DevComponents.DotNetBar.ItemContainer();
     this.btnStart = new DevComponents.DotNetBar.ButtonItem();
     this.btnFinish = new DevComponents.DotNetBar.ButtonItem();
     this.ribbonBar5 = new DevComponents.DotNetBar.RibbonBar();
     this.btnTest = new DevComponents.DotNetBar.ButtonItem();
     this.ribbonBar4 = new DevComponents.DotNetBar.RibbonBar();
     this.itemContainer7 = new DevComponents.DotNetBar.ItemContainer();
     this.btnShakeHand = new DevComponents.DotNetBar.ButtonItem();
     this.ribbonTabItem1 = new DevComponents.DotNetBar.RibbonTabItem();
     this.office2007StartButton1 = new DevComponents.DotNetBar.Office2007StartButton();
     this.itemContainer1 = new DevComponents.DotNetBar.ItemContainer();
     this.itemContainer2 = new DevComponents.DotNetBar.ItemContainer();
     this.itemContainer3 = new DevComponents.DotNetBar.ItemContainer();
     this.btnAbout = new DevComponents.DotNetBar.ButtonItem();
     this.lblResult = new DevComponents.DotNetBar.LabelX();
     this.lblTime = new DevComponents.DotNetBar.LabelX();
     this.mainTimer = new System.Windows.Forms.Timer(this.components);
     this.panelEx1 = new DevComponents.DotNetBar.PanelEx();
     this.loadCircle = new CNPOPSOFT.Controls.LoadingCircle();
     this.logList = new DevComponents.DotNetBar.Controls.DataGridViewX();
     this.Column1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Column2 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Column3 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.panelEx2 = new DevComponents.DotNetBar.PanelEx();
     this.rackAdvTree = new DevComponents.AdvTree.AdvTree();
     this.node1 = new DevComponents.AdvTree.Node();
     this.nodeConnector1 = new DevComponents.AdvTree.NodeConnector();
     this.elementStyle1 = new DevComponents.DotNetBar.ElementStyle();
     this.panelEx3 = new DevComponents.DotNetBar.PanelEx();
     this.ribbonControl1.SuspendLayout();
     this.ribbonPanel1.SuspendLayout();
     this.panelEx1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.logList)).BeginInit();
     this.panelEx2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.rackAdvTree)).BeginInit();
     this.panelEx3.SuspendLayout();
     this.SuspendLayout();
     //
     // styleManager1
     //
     this.styleManager1.ManagerStyle = DevComponents.DotNetBar.eStyle.Office2007Blue;
     //
     // buttonItem1
     //
     this.buttonItem1.Name = "buttonItem1";
     this.buttonItem1.Text = "buttonItem1";
     //
     // ribbonControl1
     //
     //
     //
     //
     this.ribbonControl1.BackgroundStyle.Class = "";
     this.ribbonControl1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribbonControl1.CaptionVisible = true;
     this.ribbonControl1.Controls.Add(this.ribbonPanel1);
     this.ribbonControl1.Dock = System.Windows.Forms.DockStyle.Top;
     this.ribbonControl1.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.ribbonTabItem1});
     this.ribbonControl1.KeyTipsFont = new System.Drawing.Font("Tahoma", 7F);
     this.ribbonControl1.Location = new System.Drawing.Point(5, 1);
     this.ribbonControl1.Name = "ribbonControl1";
     this.ribbonControl1.Padding = new System.Windows.Forms.Padding(0, 0, 0, 2);
     this.ribbonControl1.QuickToolbarItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.office2007StartButton1});
     this.ribbonControl1.Size = new System.Drawing.Size(896, 154);
     this.ribbonControl1.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.ribbonControl1.TabGroupHeight = 14;
     this.ribbonControl1.TabIndex = 0;
     this.ribbonControl1.Text = "ribbonControl1";
     //
     // ribbonPanel1
     //
     this.ribbonPanel1.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.ribbonPanel1.Controls.Add(this.ribbonBar3);
     this.ribbonPanel1.Controls.Add(this.ribbonBar2);
     this.ribbonPanel1.Controls.Add(this.ribbonBar5);
     this.ribbonPanel1.Controls.Add(this.ribbonBar4);
     this.ribbonPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.ribbonPanel1.Location = new System.Drawing.Point(0, 56);
     this.ribbonPanel1.Name = "ribbonPanel1";
     this.ribbonPanel1.Padding = new System.Windows.Forms.Padding(3, 0, 3, 3);
     this.ribbonPanel1.Size = new System.Drawing.Size(896, 96);
     //
     //
     //
     this.ribbonPanel1.Style.Class = "";
     this.ribbonPanel1.Style.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonPanel1.StyleMouseDown.Class = "";
     this.ribbonPanel1.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonPanel1.StyleMouseOver.Class = "";
     this.ribbonPanel1.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribbonPanel1.TabIndex = 1;
     //
     // ribbonBar3
     //
     this.ribbonBar3.AutoOverflowEnabled = true;
     //
     //
     //
     this.ribbonBar3.BackgroundMouseOverStyle.Class = "";
     this.ribbonBar3.BackgroundMouseOverStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBar3.BackgroundStyle.Class = "";
     this.ribbonBar3.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribbonBar3.ContainerControlProcessDialogKey = true;
     this.ribbonBar3.Dock = System.Windows.Forms.DockStyle.Left;
     this.ribbonBar3.HorizontalItemAlignment = DevComponents.DotNetBar.eHorizontalItemsAlignment.Center;
     this.ribbonBar3.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.itemContainer6});
     this.ribbonBar3.LicenseKey = "F962CEC7-CD8F-4911-A9E9-CAB39962FC1F";
     this.ribbonBar3.Location = new System.Drawing.Point(291, 0);
     this.ribbonBar3.Name = "ribbonBar3";
     this.ribbonBar3.Size = new System.Drawing.Size(78, 93);
     this.ribbonBar3.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.ribbonBar3.TabIndex = 22;
     this.ribbonBar3.Text = "查询";
     //
     //
     //
     this.ribbonBar3.TitleStyle.Class = "";
     this.ribbonBar3.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBar3.TitleStyleMouseOver.Class = "";
     this.ribbonBar3.TitleStyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribbonBar3.VerticalItemAlignment = DevComponents.DotNetBar.eVerticalItemsAlignment.Middle;
     //
     // itemContainer6
     //
     //
     //
     //
     this.itemContainer6.BackgroundStyle.Class = "";
     this.itemContainer6.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.itemContainer6.HorizontalItemAlignment = DevComponents.DotNetBar.eHorizontalItemsAlignment.Center;
     this.itemContainer6.Name = "itemContainer6";
     this.itemContainer6.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.btnQuery});
     this.itemContainer6.VerticalItemAlignment = DevComponents.DotNetBar.eVerticalItemsAlignment.Middle;
     //
     // btnQuery
     //
     this.btnQuery.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.btnQuery.Image = ((System.Drawing.Image)(resources.GetObject("btnQuery.Image")));
     this.btnQuery.ImageFixedSize = new System.Drawing.Size(32, 32);
     this.btnQuery.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.btnQuery.Name = "btnQuery";
     this.btnQuery.Text = "数据查询";
     this.btnQuery.Click += new System.EventHandler(this.btnQuery_Click);
     //
     // ribbonBar2
     //
     this.ribbonBar2.AutoOverflowEnabled = true;
     //
     //
     //
     this.ribbonBar2.BackgroundMouseOverStyle.Class = "";
     this.ribbonBar2.BackgroundMouseOverStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBar2.BackgroundStyle.Class = "";
     this.ribbonBar2.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribbonBar2.ContainerControlProcessDialogKey = true;
     this.ribbonBar2.Dock = System.Windows.Forms.DockStyle.Left;
     this.ribbonBar2.HorizontalItemAlignment = DevComponents.DotNetBar.eHorizontalItemsAlignment.Center;
     this.ribbonBar2.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.itemContainer5,
     this.btnFinish});
     this.ribbonBar2.LicenseKey = "F962CEC7-CD8F-4911-A9E9-CAB39962FC1F";
     this.ribbonBar2.Location = new System.Drawing.Point(158, 0);
     this.ribbonBar2.Name = "ribbonBar2";
     this.ribbonBar2.Size = new System.Drawing.Size(133, 93);
     this.ribbonBar2.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.ribbonBar2.TabIndex = 20;
     this.ribbonBar2.Text = "测试";
     //
     //
     //
     this.ribbonBar2.TitleStyle.Class = "";
     this.ribbonBar2.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBar2.TitleStyleMouseOver.Class = "";
     this.ribbonBar2.TitleStyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribbonBar2.VerticalItemAlignment = DevComponents.DotNetBar.eVerticalItemsAlignment.Middle;
     //
     // itemContainer5
     //
     //
     //
     //
     this.itemContainer5.BackgroundStyle.Class = "";
     this.itemContainer5.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.itemContainer5.HorizontalItemAlignment = DevComponents.DotNetBar.eHorizontalItemsAlignment.Center;
     this.itemContainer5.Name = "itemContainer5";
     this.itemContainer5.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.btnStart});
     this.itemContainer5.VerticalItemAlignment = DevComponents.DotNetBar.eVerticalItemsAlignment.Middle;
     //
     // btnStart
     //
     this.btnStart.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.btnStart.Image = ((System.Drawing.Image)(resources.GetObject("btnStart.Image")));
     this.btnStart.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.btnStart.Name = "btnStart";
     this.btnStart.Text = "开始测试";
     this.btnStart.Click += new System.EventHandler(this.btnStart_Click);
     //
     // btnFinish
     //
     this.btnFinish.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.btnFinish.Image = ((System.Drawing.Image)(resources.GetObject("btnFinish.Image")));
     this.btnFinish.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.btnFinish.Name = "btnFinish";
     this.btnFinish.Text = "停止测试";
     this.btnFinish.Click += new System.EventHandler(this.btnFinish_Click);
     //
     // ribbonBar5
     //
     this.ribbonBar5.AutoOverflowEnabled = true;
     //
     //
     //
     this.ribbonBar5.BackgroundMouseOverStyle.Class = "";
     this.ribbonBar5.BackgroundMouseOverStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBar5.BackgroundStyle.Class = "";
     this.ribbonBar5.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribbonBar5.ContainerControlProcessDialogKey = true;
     this.ribbonBar5.Dock = System.Windows.Forms.DockStyle.Left;
     this.ribbonBar5.HorizontalItemAlignment = DevComponents.DotNetBar.eHorizontalItemsAlignment.Center;
     this.ribbonBar5.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.btnTest});
     this.ribbonBar5.LicenseKey = "F962CEC7-CD8F-4911-A9E9-CAB39962FC1F";
     this.ribbonBar5.Location = new System.Drawing.Point(76, 0);
     this.ribbonBar5.Name = "ribbonBar5";
     this.ribbonBar5.Size = new System.Drawing.Size(82, 93);
     this.ribbonBar5.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.ribbonBar5.TabIndex = 19;
     this.ribbonBar5.Text = "设置";
     //
     //
     //
     this.ribbonBar5.TitleStyle.Class = "";
     this.ribbonBar5.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBar5.TitleStyleMouseOver.Class = "";
     this.ribbonBar5.TitleStyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribbonBar5.VerticalItemAlignment = DevComponents.DotNetBar.eVerticalItemsAlignment.Middle;
     //
     // btnTest
     //
     this.btnTest.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.btnTest.Image = ((System.Drawing.Image)(resources.GetObject("btnTest.Image")));
     this.btnTest.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.btnTest.Name = "btnTest";
     this.btnTest.Text = "测试预设";
     this.btnTest.Click += new System.EventHandler(this.btnTest_Click);
     //
     // ribbonBar4
     //
     this.ribbonBar4.AutoOverflowEnabled = true;
     //
     //
     //
     this.ribbonBar4.BackgroundMouseOverStyle.Class = "";
     this.ribbonBar4.BackgroundMouseOverStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBar4.BackgroundStyle.Class = "";
     this.ribbonBar4.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribbonBar4.ContainerControlProcessDialogKey = true;
     this.ribbonBar4.Dock = System.Windows.Forms.DockStyle.Left;
     this.ribbonBar4.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.itemContainer7});
     this.ribbonBar4.LicenseKey = "F962CEC7-CD8F-4911-A9E9-CAB39962FC1F";
     this.ribbonBar4.Location = new System.Drawing.Point(3, 0);
     this.ribbonBar4.Name = "ribbonBar4";
     this.ribbonBar4.Size = new System.Drawing.Size(73, 93);
     this.ribbonBar4.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.ribbonBar4.TabIndex = 18;
     this.ribbonBar4.Text = "握手";
     //
     //
     //
     this.ribbonBar4.TitleStyle.Class = "";
     this.ribbonBar4.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBar4.TitleStyleMouseOver.Class = "";
     this.ribbonBar4.TitleStyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     // itemContainer7
     //
     //
     //
     //
     this.itemContainer7.BackgroundStyle.Class = "";
     this.itemContainer7.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.itemContainer7.HorizontalItemAlignment = DevComponents.DotNetBar.eHorizontalItemsAlignment.Center;
     this.itemContainer7.Name = "itemContainer7";
     this.itemContainer7.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.btnShakeHand});
     this.itemContainer7.VerticalItemAlignment = DevComponents.DotNetBar.eVerticalItemsAlignment.Middle;
     //
     // btnShakeHand
     //
     this.btnShakeHand.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.btnShakeHand.Image = ((System.Drawing.Image)(resources.GetObject("btnShakeHand.Image")));
     this.btnShakeHand.ImageFixedSize = new System.Drawing.Size(32, 32);
     this.btnShakeHand.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.btnShakeHand.Name = "btnShakeHand";
     this.btnShakeHand.Text = "开始握手";
     this.btnShakeHand.Click += new System.EventHandler(this.btnShakeHand_Click);
     //
     // ribbonTabItem1
     //
     this.ribbonTabItem1.Checked = true;
     this.ribbonTabItem1.Name = "ribbonTabItem1";
     this.ribbonTabItem1.Panel = this.ribbonPanel1;
     this.ribbonTabItem1.Text = "TSP";
     //
     // office2007StartButton1
     //
     this.office2007StartButton1.AutoExpandOnClick = true;
     this.office2007StartButton1.CanCustomize = false;
     this.office2007StartButton1.HotTrackingStyle = DevComponents.DotNetBar.eHotTrackingStyle.Image;
     this.office2007StartButton1.Image = ((System.Drawing.Image)(resources.GetObject("office2007StartButton1.Image")));
     this.office2007StartButton1.ImagePaddingHorizontal = 2;
     this.office2007StartButton1.ImagePaddingVertical = 2;
     this.office2007StartButton1.Name = "office2007StartButton1";
     this.office2007StartButton1.ShowSubItems = false;
     this.office2007StartButton1.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.itemContainer1});
     this.office2007StartButton1.Text = "&File";
     //
     // itemContainer1
     //
     //
     //
     //
     this.itemContainer1.BackgroundStyle.Class = "RibbonFileMenuContainer";
     this.itemContainer1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.itemContainer1.LayoutOrientation = DevComponents.DotNetBar.eOrientation.Vertical;
     this.itemContainer1.Name = "itemContainer1";
     this.itemContainer1.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.itemContainer2});
     //
     // itemContainer2
     //
     //
     //
     //
     this.itemContainer2.BackgroundStyle.Class = "RibbonFileMenuTwoColumnContainer";
     this.itemContainer2.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.itemContainer2.ItemSpacing = 0;
     this.itemContainer2.Name = "itemContainer2";
     this.itemContainer2.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.itemContainer3});
     //
     // itemContainer3
     //
     //
     //
     //
     this.itemContainer3.BackgroundStyle.Class = "RibbonFileMenuColumnOneContainer";
     this.itemContainer3.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.itemContainer3.LayoutOrientation = DevComponents.DotNetBar.eOrientation.Vertical;
     this.itemContainer3.MinimumSize = new System.Drawing.Size(120, 0);
     this.itemContainer3.Name = "itemContainer3";
     this.itemContainer3.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.btnAbout});
     //
     // btnAbout
     //
     this.btnAbout.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.btnAbout.Image = ((System.Drawing.Image)(resources.GetObject("btnAbout.Image")));
     this.btnAbout.Name = "btnAbout";
     this.btnAbout.SubItemsExpandWidth = 24;
     this.btnAbout.Text = "关于";
     this.btnAbout.Click += new System.EventHandler(this.btnAbout_Click);
     //
     // lblResult
     //
     this.lblResult.BackColor = System.Drawing.Color.Transparent;
     //
     //
     //
     this.lblResult.BackgroundStyle.Class = "";
     this.lblResult.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.lblResult.BackgroundStyle.TextAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Center;
     this.lblResult.Dock = System.Windows.Forms.DockStyle.Right;
     this.lblResult.Font = new System.Drawing.Font("宋体", 21.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.lblResult.ForeColor = System.Drawing.SystemColors.ControlText;
     this.lblResult.Location = new System.Drawing.Point(720, 0);
     this.lblResult.Name = "lblResult";
     this.lblResult.SingleLineColor = System.Drawing.SystemColors.Control;
     this.lblResult.Size = new System.Drawing.Size(176, 57);
     this.lblResult.TabIndex = 21;
     this.lblResult.Text = "Preparing...";
     this.lblResult.TextAlignment = System.Drawing.StringAlignment.Center;
     //
     // lblTime
     //
     this.lblTime.BackColor = System.Drawing.Color.Transparent;
     //
     //
     //
     this.lblTime.BackgroundStyle.Class = "";
     this.lblTime.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.lblTime.Dock = System.Windows.Forms.DockStyle.Left;
     this.lblTime.Font = new System.Drawing.Font("Calibri", 24F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblTime.Location = new System.Drawing.Point(0, 0);
     this.lblTime.Name = "lblTime";
     this.lblTime.Size = new System.Drawing.Size(174, 57);
     this.lblTime.TabIndex = 19;
     this.lblTime.Text = "00:00:00";
     //
     // mainTimer
     //
     this.mainTimer.Interval = 500;
     this.mainTimer.Tick += new System.EventHandler(this.mainTimer_Tick);
     //
     // panelEx1
     //
     this.panelEx1.CanvasColor = System.Drawing.SystemColors.Control;
     this.panelEx1.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.panelEx1.Controls.Add(this.loadCircle);
     this.panelEx1.Controls.Add(this.logList);
     this.panelEx1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panelEx1.Location = new System.Drawing.Point(230, 155);
     this.panelEx1.Name = "panelEx1";
     this.panelEx1.Size = new System.Drawing.Size(671, 497);
     this.panelEx1.Style.Alignment = System.Drawing.StringAlignment.Center;
     this.panelEx1.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.panelEx1.Style.BackColor2.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.panelEx1.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.panelEx1.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.panelEx1.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.panelEx1.Style.GradientAngle = 90;
     this.panelEx1.TabIndex = 3;
     this.panelEx1.Text = "panelEx1";
     //
     // loadCircle
     //
     this.loadCircle.Active = false;
     this.loadCircle.Color = System.Drawing.Color.Maroon;
     this.loadCircle.InnerCircleRadius = 5;
     this.loadCircle.Location = new System.Drawing.Point(256, 180);
     this.loadCircle.Name = "loadCircle";
     this.loadCircle.NumberSpoke = 12;
     this.loadCircle.OuterCircleRadius = 11;
     this.loadCircle.RotationSpeed = 100;
     this.loadCircle.Size = new System.Drawing.Size(132, 115);
     this.loadCircle.SpokeThickness = 2;
     this.loadCircle.StylePreset = CNPOPSOFT.Controls.LoadingCircle.StylePresets.MacOSX;
     this.loadCircle.TabIndex = 1;
     this.loadCircle.Text = "loadingCircle1";
     this.loadCircle.Visible = false;
     //
     // logList
     //
     this.logList.AllowUserToAddRows = false;
     this.logList.AllowUserToDeleteRows = false;
     this.logList.AllowUserToResizeRows = false;
     this.logList.BackgroundColor = System.Drawing.Color.White;
     this.logList.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.logList.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.Column1,
     this.Column2,
     this.Column3});
     dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle1.BackColor = System.Drawing.SystemColors.Window;
     dataGridViewCellStyle1.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     dataGridViewCellStyle1.ForeColor = System.Drawing.SystemColors.ControlText;
     dataGridViewCellStyle1.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle1.SelectionForeColor = System.Drawing.SystemColors.ControlText;
     dataGridViewCellStyle1.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
     this.logList.DefaultCellStyle = dataGridViewCellStyle1;
     this.logList.Dock = System.Windows.Forms.DockStyle.Fill;
     this.logList.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(208)))), ((int)(((byte)(215)))), ((int)(((byte)(229)))));
     this.logList.Location = new System.Drawing.Point(0, 0);
     this.logList.MultiSelect = false;
     this.logList.Name = "logList";
     this.logList.ReadOnly = true;
     this.logList.RowHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.None;
     dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle2.BackColor = System.Drawing.SystemColors.Control;
     dataGridViewCellStyle2.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     dataGridViewCellStyle2.ForeColor = System.Drawing.SystemColors.WindowText;
     dataGridViewCellStyle2.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle2.SelectionForeColor = System.Drawing.SystemColors.Info;
     dataGridViewCellStyle2.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
     this.logList.RowHeadersDefaultCellStyle = dataGridViewCellStyle2;
     this.logList.RowHeadersVisible = false;
     this.logList.RowHeadersWidthSizeMode = System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode.DisableResizing;
     this.logList.RowTemplate.Height = 23;
     this.logList.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
     this.logList.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
     this.logList.Size = new System.Drawing.Size(671, 497);
     this.logList.TabIndex = 0;
     //
     // Column1
     //
     this.Column1.HeaderText = "时间";
     this.Column1.Name = "Column1";
     this.Column1.ReadOnly = true;
     this.Column1.Width = 150;
     //
     // Column2
     //
     this.Column2.HeaderText = "板卡";
     this.Column2.Name = "Column2";
     this.Column2.ReadOnly = true;
     //
     // Column3
     //
     this.Column3.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
     this.Column3.HeaderText = "状态";
     this.Column3.Name = "Column3";
     this.Column3.ReadOnly = true;
     //
     // panelEx2
     //
     this.panelEx2.CanvasColor = System.Drawing.SystemColors.Control;
     this.panelEx2.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.panelEx2.Controls.Add(this.rackAdvTree);
     this.panelEx2.Dock = System.Windows.Forms.DockStyle.Left;
     this.panelEx2.Location = new System.Drawing.Point(5, 155);
     this.panelEx2.Name = "panelEx2";
     this.panelEx2.Size = new System.Drawing.Size(225, 497);
     this.panelEx2.Style.Alignment = System.Drawing.StringAlignment.Center;
     this.panelEx2.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.panelEx2.Style.BackColor2.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.panelEx2.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.panelEx2.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.panelEx2.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.panelEx2.Style.GradientAngle = 90;
     this.panelEx2.TabIndex = 1;
     this.panelEx2.Text = "panelEx2";
     //
     // rackAdvTree
     //
     this.rackAdvTree.AccessibleRole = System.Windows.Forms.AccessibleRole.Outline;
     this.rackAdvTree.AllowDrop = true;
     this.rackAdvTree.BackColor = System.Drawing.SystemColors.Window;
     //
     //
     //
     this.rackAdvTree.BackgroundStyle.Class = "TreeBorderKey";
     this.rackAdvTree.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.rackAdvTree.Dock = System.Windows.Forms.DockStyle.Fill;
     this.rackAdvTree.LicenseKey = "F962CEC7-CD8F-4911-A9E9-CAB39962FC1F";
     this.rackAdvTree.Location = new System.Drawing.Point(0, 0);
     this.rackAdvTree.Name = "rackAdvTree";
     this.rackAdvTree.Nodes.AddRange(new DevComponents.AdvTree.Node[] {
     this.node1});
     this.rackAdvTree.NodesConnector = this.nodeConnector1;
     this.rackAdvTree.NodeStyle = this.elementStyle1;
     this.rackAdvTree.PathSeparator = ";";
     this.rackAdvTree.Size = new System.Drawing.Size(225, 497);
     this.rackAdvTree.Styles.Add(this.elementStyle1);
     this.rackAdvTree.TabIndex = 0;
     this.rackAdvTree.AfterCheck += new DevComponents.AdvTree.AdvTreeCellEventHandler(this.rackAdvTree_AfterCheck);
     this.rackAdvTree.AfterNodeSelect += new DevComponents.AdvTree.AdvTreeNodeEventHandler(this.rackAdvTree_AfterNodeSelect);
     //
     // node1
     //
     this.node1.Expanded = true;
     this.node1.Name = "node1";
     this.node1.Text = "node1";
     //
     // nodeConnector1
     //
     this.nodeConnector1.LineColor = System.Drawing.SystemColors.ControlText;
     //
     // elementStyle1
     //
     this.elementStyle1.Class = "";
     this.elementStyle1.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.elementStyle1.Name = "elementStyle1";
     this.elementStyle1.TextColor = System.Drawing.SystemColors.ControlText;
     //
     // panelEx3
     //
     this.panelEx3.CanvasColor = System.Drawing.SystemColors.Control;
     this.panelEx3.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.panelEx3.Controls.Add(this.lblResult);
     this.panelEx3.Controls.Add(this.lblTime);
     this.panelEx3.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.panelEx3.Location = new System.Drawing.Point(5, 652);
     this.panelEx3.Name = "panelEx3";
     this.panelEx3.Size = new System.Drawing.Size(896, 57);
     this.panelEx3.Style.Alignment = System.Drawing.StringAlignment.Center;
     this.panelEx3.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.panelEx3.Style.BackColor2.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.panelEx3.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.panelEx3.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.panelEx3.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.panelEx3.Style.GradientAngle = 90;
     this.panelEx3.TabIndex = 0;
     //
     // FormMain
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(906, 711);
     this.Controls.Add(this.panelEx1);
     this.Controls.Add(this.panelEx2);
     this.Controls.Add(this.panelEx3);
     this.Controls.Add(this.ribbonControl1);
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MinimumSize = new System.Drawing.Size(906, 711);
     this.Name = "FormMain";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "TSP硬件测试平台";
     this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.formMain_FormClosing);
     this.Load += new System.EventHandler(this.FormMain_Load);
     this.ribbonControl1.ResumeLayout(false);
     this.ribbonControl1.PerformLayout();
     this.ribbonPanel1.ResumeLayout(false);
     this.panelEx1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.logList)).EndInit();
     this.panelEx2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.rackAdvTree)).EndInit();
     this.panelEx3.ResumeLayout(false);
     this.ResumeLayout(false);
 }
コード例 #35
0
ファイル: FrmIE.designer.cs プロジェクト: huoxudong125/DotNet
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmIE));
     this.panelEx1 = new DevComponents.DotNetBar.PanelEx();
     this.webBrowser = new System.Windows.Forms.WebBrowser();
     this.BarNavigation = new DevComponents.DotNetBar.Bar();
     this.btnIEBack = new DevComponents.DotNetBar.ButtonItem();
     this.btnIEForward = new DevComponents.DotNetBar.ButtonItem();
     this.barAddress = new DevComponents.DotNetBar.ComboBoxItem();
     this.btnIEGo = new DevComponents.DotNetBar.ButtonItem();
     this.btnIEStop = new DevComponents.DotNetBar.ButtonItem();
     this.btnIERefresh = new DevComponents.DotNetBar.ButtonItem();
     this.btnIEHome = new DevComponents.DotNetBar.ButtonItem();
     this.btnIEPrint = new DevComponents.DotNetBar.ButtonItem();
     this.panelEx1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.BarNavigation)).BeginInit();
     this.SuspendLayout();
     //
     // panelEx1
     //
     this.panelEx1.CanvasColor = System.Drawing.SystemColors.Control;
     this.panelEx1.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.panelEx1.Controls.Add(this.webBrowser);
     this.panelEx1.Controls.Add(this.BarNavigation);
     this.panelEx1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panelEx1.Location = new System.Drawing.Point(0, 0);
     this.panelEx1.Name = "panelEx1";
     this.panelEx1.Size = new System.Drawing.Size(957, 500);
     this.panelEx1.Style.Alignment = System.Drawing.StringAlignment.Center;
     this.panelEx1.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.panelEx1.Style.BackColor2.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.panelEx1.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.panelEx1.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.panelEx1.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.panelEx1.Style.GradientAngle = 90;
     this.panelEx1.TabIndex = 0;
     this.panelEx1.Text = "panelEx1";
     //
     // webBrowser
     //
     this.webBrowser.Dock = System.Windows.Forms.DockStyle.Fill;
     this.webBrowser.Location = new System.Drawing.Point(0, 0);
     this.webBrowser.MinimumSize = new System.Drawing.Size(20, 20);
     this.webBrowser.Name = "webBrowser";
     this.webBrowser.Size = new System.Drawing.Size(957, 500);
     this.webBrowser.TabIndex = 5;
     this.webBrowser.Url = new System.Uri("http://www.baidu.com", System.UriKind.Absolute);
     this.webBrowser.DocumentCompleted += new System.Windows.Forms.WebBrowserDocumentCompletedEventHandler(this.webBrowser_DocumentCompleted);
     this.webBrowser.Navigated += new System.Windows.Forms.WebBrowserNavigatedEventHandler(this.webBrowser_Navigated);
     this.webBrowser.NewWindow += new System.ComponentModel.CancelEventHandler(this.webBrowser_NewWindow);
     //
     // BarNavigation
     //
     this.BarNavigation.AccessibleDescription = "DotNetBar Bar (BarNavigation)";
     this.BarNavigation.AccessibleName = "DotNetBar Bar";
     this.BarNavigation.AccessibleRole = System.Windows.Forms.AccessibleRole.MenuBar;
     this.BarNavigation.CanAutoHide = false;
     this.BarNavigation.CanDockBottom = false;
     this.BarNavigation.CanDockRight = false;
     this.BarNavigation.CanDockTab = false;
     this.BarNavigation.CanDockTop = false;
     this.BarNavigation.CanReorderTabs = false;
     this.BarNavigation.CanUndock = false;
     this.BarNavigation.Dock = System.Windows.Forms.DockStyle.Top;
     this.BarNavigation.DockedBorderStyle = DevComponents.DotNetBar.eBorderType.Raised;
     this.BarNavigation.DockLine = 1;
     this.BarNavigation.DockSide = DevComponents.DotNetBar.eDockSide.Document;
     this.BarNavigation.FadeEffect = true;
     this.BarNavigation.Font = new System.Drawing.Font("宋体", 9F);
     this.BarNavigation.GrabHandleStyle = DevComponents.DotNetBar.eGrabHandleStyle.Office2003;
     this.BarNavigation.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.btnIEBack,
     this.btnIEForward,
     this.barAddress,
     this.btnIEGo,
     this.btnIEStop,
     this.btnIERefresh,
     this.btnIEHome,
     this.btnIEPrint});
     this.BarNavigation.Location = new System.Drawing.Point(0, 0);
     this.BarNavigation.MenuBar = true;
     this.BarNavigation.Name = "BarNavigation";
     this.BarNavigation.Size = new System.Drawing.Size(957, 38);
     this.BarNavigation.Stretch = true;
     this.BarNavigation.Style = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.BarNavigation.TabIndex = 6;
     this.BarNavigation.TabStop = false;
     this.BarNavigation.Text = "IE浏览器";
     this.BarNavigation.Visible = false;
     this.BarNavigation.ItemClick += new System.EventHandler(this.BarNavigation_ItemClick);
     //
     // btnIEBack
     //
     this.btnIEBack.GlobalName = "btnIEBack";
     this.btnIEBack.Image = ((System.Drawing.Image)(resources.GetObject("btnIEBack.Image")));
     this.btnIEBack.Name = "btnIEBack";
     this.btnIEBack.Text = "&Back";
     //
     // btnIEForward
     //
     this.btnIEForward.GlobalName = "btnIEForward";
     this.btnIEForward.Image = ((System.Drawing.Image)(resources.GetObject("btnIEForward.Image")));
     this.btnIEForward.Name = "btnIEForward";
     this.btnIEForward.Text = "&Forward";
     //
     // barAddress
     //
     this.barAddress.ComboWidth = 128;
     this.barAddress.DropDownHeight = 106;
     this.barAddress.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDown;
     this.barAddress.GlobalName = "barAddress";
     this.barAddress.ItemAlignment = DevComponents.DotNetBar.eItemAlignment.Center;
     this.barAddress.LabelForeColor = System.Drawing.Color.Transparent;
     this.barAddress.Name = "barAddress";
     this.barAddress.Stretch = true;
     this.barAddress.Text = "http://";
     this.barAddress.Tooltip = "请输入查询";
     this.barAddress.WatermarkText = "请输入查询";
     //
     // btnIEGo
     //
     this.btnIEGo.Cursor = System.Windows.Forms.Cursors.Default;
     this.btnIEGo.FixedSize = new System.Drawing.Size(0, 9);
     this.btnIEGo.GlobalName = "btnIEGo";
     this.btnIEGo.Image = ((System.Drawing.Image)(resources.GetObject("btnIEGo.Image")));
     this.btnIEGo.ItemAlignment = DevComponents.DotNetBar.eItemAlignment.Center;
     this.btnIEGo.Name = "btnIEGo";
     this.btnIEGo.Shape = new DevComponents.DotNetBar.RoundRectangleShapeDescriptor(2);
     this.btnIEGo.SplitButton = true;
     this.btnIEGo.Text = "Go";
     //
     // btnIEStop
     //
     this.btnIEStop.GlobalName = "btnIEStop";
     this.btnIEStop.Image = ((System.Drawing.Image)(resources.GetObject("btnIEStop.Image")));
     this.btnIEStop.Name = "btnIEStop";
     this.btnIEStop.Text = "&Stop";
     //
     // btnIERefresh
     //
     this.btnIERefresh.GlobalName = "btnIERefresh";
     this.btnIERefresh.Image = ((System.Drawing.Image)(resources.GetObject("btnIERefresh.Image")));
     this.btnIERefresh.Name = "btnIERefresh";
     this.btnIERefresh.Text = "&Refresh";
     //
     // btnIEHome
     //
     this.btnIEHome.GlobalName = "btnIEHome";
     this.btnIEHome.Image = ((System.Drawing.Image)(resources.GetObject("btnIEHome.Image")));
     this.btnIEHome.Name = "btnIEHome";
     this.btnIEHome.Text = "&Home";
     //
     // btnIEPrint
     //
     this.btnIEPrint.BeginGroup = true;
     this.btnIEPrint.GlobalName = "btnIEPrint";
     this.btnIEPrint.Image = ((System.Drawing.Image)(resources.GetObject("btnIEPrint.Image")));
     this.btnIEPrint.Name = "btnIEPrint";
     this.btnIEPrint.Text = "&Print";
     //
     // FrmIE
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(957, 500);
     this.Controls.Add(this.panelEx1);
     this.Name = "FrmIE";
     this.Text = "导航页面";
     this.Load += new System.EventHandler(this.FrmIE_Load);
     this.panelEx1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.BarNavigation)).EndInit();
     this.ResumeLayout(false);
 }
コード例 #36
0
ファイル: Form1.cs プロジェクト: carlhuth/GenXSource
//
//    #region Net Performance
//
//    void NetPerformanceInit()
//    {
//      PerfNet= new perfo();
//    }
//    void NetPerfoResultCB(string rx, string tx, string total)
//    {
//      statusBar1.Panels[1].Text = tx + " TX";
//      statusBar1.Panels[2].Text = rx + " RX";
//      textBoxNetRx.Text  =  rx ;
//      textBoxNetTx.Text  =  tx ;
//    }
//
//    private string SelectNetCard()
//    {
//      NetDevice n = new NetDevice(ref PerfNet);
//      n.ShowDialog();
//      if(n.DialogResult == DialogResult.OK)
//      {
//        return n.comboBox1.Text;
//      }
//      return null;
//    }
//
//    private void button4_Click(object sender, System.EventArgs e)
//    {
//      if(!PerfNet.IsRunning)
//      {
//        NetPerfoResult p = new NetPerfoResult(NetPerfoResultCB);
//        PerfNet.SetPerfoCallback(p);
//        string Card = SelectNetCard();
//        if(Card != null)
//        {
//          PerfNet.NetDevice = Card;
//          PerfNet.Start();
//          button4.BackColor = Color.Red;
//          button4.Text = "STOP";
//        }
//      }
//      else
//      {
//        button4.Text = "START";
//        button4.BackColor = Color.PaleGreen;
//        PerfNet.Stop();
//        statusBar1.Panels[1].Text = "0";
//        statusBar1.Panels[2].Text = "0";
//        textBoxNetRx.Text  =  "0";
//        textBoxNetTx.Text  =  "0";
//      }
//    }
//    #endregion

//    #region Mini Terminal
//
//    private void MiniTermInit()
//    {
//      UpdateRxString pCB = new UpdateRxString(UpdateMiniTermRxWindow);
//      MiniT = new miniterminal(pCB);
//
//    }
//    private void UpdateMiniTermRxWindow(string str)
//    {
//      textBoxRx.AppendText(str);
//    }
//
//
//    private void buttonComOpen_Click(object sender, System.EventArgs e)
//    {
//      if( buttonComOpen.Text.Equals("Close"))
//      {
//        MiniT.Close();
//        buttonComOpen.Text="Open";
//        textBoxTx.Enabled=false;
//        return;
//      }
//      MiniT.ComSettings.port     = comboBoxPort.Text;
//      MiniT.ComSettings.baudRate = int.Parse(comboBoxBaud.Text);
//      if (!MiniT.Open())
//      {
//        MessageBox.Show("Port kann nicht geöffnet werden !", "Terminal", MessageBoxButtons.OK);
//      }
//      buttonComOpen.Text="Close";
//      textBoxTx.Enabled=true;
//    }
//
//    private void textBoxTx_TextChanged(object sender, System.EventArgs e)
//    {
//      string act = textBoxTx.Text;
//      string tmp = act.Substring(act.Length-1,1);
//
//      Encoding enc = Encoding.ASCII;
//      byte []  ch = new Byte[1];
//      ch  =  enc.GetBytes(tmp);
//
//      MiniT.SendByte(ch[0]);
//    }
//
//    private void checkBoxHex_CheckedChanged(object sender, System.EventArgs e)
//    {
//      MiniT.ShowRxHexValues = checkBoxHex.Checked;
//    }
//
//    private void textBoxCR_TextChanged(object sender, System.EventArgs e)
//    {
//      if (textBoxCR.Text.Length > 2 || textBoxCR.Text == "")
//      {
//        textBoxCR.Text="";
//        return;
//      }
//
//      try
//      {
//        // Convert hex string to unsigned integer
//        MiniT.SetCrHexValue = System.Convert.ToUInt32(textBoxCR.Text, 16);
//      }
//      catch (Exception exception)
//      {
//        MiniT.SetCrHexValue=0xFFFF;
//        return;
//      }
//    }
//    #endregion

        #region misc
//    private void button3_Click(object sender, System.EventArgs e)
//    {
//      Form2 fEnv = new Form2();
//      string s="";
//      IDictionary d =  Environment.GetEnvironmentVariables();
//      foreach (DictionaryEntry de in d)
//      {
//        s += de.Key + " --- " + de.Value +"\r\n";
//      }
//      s +=  "Os Version "  + "   ---   " + Environment.OSVersion.ToString()  + "\r\n";
//      s +=  "CLR Version " + "   ---   " + Environment.Version.ToString()    + "\r\n";
//      s +=  "Res. Mem "    + "   ---   " + Environment.WorkingSet.ToString() + "\r\n";
//
//      fEnv.WriteTextFeld(s);
//      fEnv.Show();
//    }



        /*
         * private void button9_Click(object sender, System.EventArgs e)
         * {
         *  monitor m = new monitor();
         *
         *  textBoxTest.Lines = m.GetWmiOs();
         *
         *  textBoxTest.Text += "--- CPU ---"         + "\r\n";
         *  textBoxTest.Text += m.DatCpu.Name         + "\r\n";
         *  textBoxTest.Text += m.DatCpu.Description  + "\r\n";;
         *  textBoxTest.Text += m.DatCpu.SpeedCurrent + "\r\n";;
         *  textBoxTest.Text += m.DatCpu.SpeedMax     + "\r\n";;
         *
         *  textBoxTest.Text += "--- Manufactor ---"    + "\r\n";
         *  textBoxTest.Text += m.DatNetCard.Manufactor + "\r\n";
         *  textBoxTest.Text += m.DatNetCard.Type       + "\r\n";
         *  textBoxTest.Text += m.DatNetCard.MacAdress  + "\r\n";
         *
         *  textBoxTest.Text += "--- OS ---"    + "\r\n";
         *  textBoxTest.Text += m.DatOs.Name    + "\r\n";
         *  textBoxTest.Text += m.DatOs.Version + "\r\n";
         * }
         */
        #endregion

        #region Windows Form Designer generated code
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            this.components          = new System.ComponentModel.Container();
            this.timer1              = new System.Windows.Forms.Timer(this.components);
            this.label8              = new System.Windows.Forms.Label();
            this.comboBoxFwatchDrive = new System.Windows.Forms.ComboBox();
            this.listBoxFiles        = new System.Windows.Forms.ListBox();
            this.openFileDialog1     = new System.Windows.Forms.OpenFileDialog();
            this.saveFileDialog1     = new System.Windows.Forms.SaveFileDialog();
            this.toolTip1            = new System.Windows.Forms.ToolTip(this.components);
            this.panelEx1            = new DevComponents.DotNetBar.PanelEx();
            this.panelEx2            = new DevComponents.DotNetBar.PanelEx();
            this.uICheckBox1         = new Janus.Windows.EditControls.UICheckBox();
            this.uIButton1           = new Janus.Windows.EditControls.UIButton();
            this.uIButton2           = new Janus.Windows.EditControls.UIButton();
            this.uIButton3           = new Janus.Windows.EditControls.UIButton();
            this.panelEx1.SuspendLayout();
            this.panelEx2.SuspendLayout();
            this.SuspendLayout();
            //
            // timer1
            //
            this.timer1.Enabled  = true;
            this.timer1.Interval = 1000;
            //
            // label8
            //
            this.label8.BackColor = System.Drawing.Color.Transparent;
            this.label8.Location  = new System.Drawing.Point(8, 32);
            this.label8.Name      = "label8";
            this.label8.Size      = new System.Drawing.Size(36, 24);
            this.label8.TabIndex  = 6;
            this.label8.Text      = "Drive:";
            this.label8.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            //
            // comboBoxFwatchDrive
            //
            this.comboBoxFwatchDrive.BackColor             = System.Drawing.Color.White;
            this.comboBoxFwatchDrive.Location              = new System.Drawing.Point(48, 32);
            this.comboBoxFwatchDrive.Name                  = "comboBoxFwatchDrive";
            this.comboBoxFwatchDrive.Size                  = new System.Drawing.Size(64, 21);
            this.comboBoxFwatchDrive.TabIndex              = 5;
            this.comboBoxFwatchDrive.Text                  = "C:\\";
            this.comboBoxFwatchDrive.SelectedIndexChanged += new System.EventHandler(this.comboBoxFwatchDrive_SelectedIndexChanged);
            this.comboBoxFwatchDrive.Enter                += new System.EventHandler(this.comboBoxFwatchDrive_Enter);
            //
            // listBoxFiles
            //
            this.listBoxFiles.BackColor           = System.Drawing.Color.White;
            this.listBoxFiles.BorderStyle         = System.Windows.Forms.BorderStyle.None;
            this.listBoxFiles.Dock                = System.Windows.Forms.DockStyle.Bottom;
            this.listBoxFiles.HorizontalScrollbar = true;
            this.listBoxFiles.Location            = new System.Drawing.Point(0, 69);
            this.listBoxFiles.Name                = "listBoxFiles";
            this.listBoxFiles.Size                = new System.Drawing.Size(632, 377);
            this.listBoxFiles.TabIndex            = 3;
            //
            // saveFileDialog1
            //
            this.saveFileDialog1.OverwritePrompt = false;
            this.saveFileDialog1.Title           = "Choose a File ...";
            //
            // panelEx1
            //
            this.panelEx1.Controls.Add(this.panelEx2);
            this.panelEx1.Dock            = System.Windows.Forms.DockStyle.Fill;
            this.panelEx1.Location        = new System.Drawing.Point(0, 0);
            this.panelEx1.Name            = "panelEx1";
            this.panelEx1.Size            = new System.Drawing.Size(632, 446);
            this.panelEx1.Style.Alignment = System.Drawing.StringAlignment.Center;
            this.panelEx1.Style.BackColor1.ColorSchemePart  = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
            this.panelEx1.Style.BackColor2.ColorSchemePart  = DevComponents.DotNetBar.eColorSchemePart.BarBackground2;
            this.panelEx1.Style.BackgroundImagePosition     = DevComponents.DotNetBar.eBackgroundImagePosition.Tile;
            this.panelEx1.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarDockedBorder;
            this.panelEx1.Style.ForeColor.ColorSchemePart   = DevComponents.DotNetBar.eColorSchemePart.ItemText;
            this.panelEx1.Style.GradientAngle = 90;
            this.panelEx1.TabIndex            = 13;
            //
            // panelEx2
            //
            this.panelEx2.Controls.Add(this.label8);
            this.panelEx2.Controls.Add(this.comboBoxFwatchDrive);
            this.panelEx2.Controls.Add(this.uICheckBox1);
            this.panelEx2.Dock            = System.Windows.Forms.DockStyle.Top;
            this.panelEx2.Location        = new System.Drawing.Point(0, 0);
            this.panelEx2.Name            = "panelEx2";
            this.panelEx2.Size            = new System.Drawing.Size(632, 68);
            this.panelEx2.Style.Alignment = System.Drawing.StringAlignment.Center;
            this.panelEx2.Style.BackColor1.ColorSchemePart  = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
            this.panelEx2.Style.BackColor2.ColorSchemePart  = DevComponents.DotNetBar.eColorSchemePart.BarBackground2;
            this.panelEx2.Style.BackgroundImagePosition     = DevComponents.DotNetBar.eBackgroundImagePosition.Tile;
            this.panelEx2.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarDockedBorder;
            this.panelEx2.Style.ForeColor.ColorSchemePart   = DevComponents.DotNetBar.eColorSchemePart.ItemText;
            this.panelEx2.Style.GradientAngle = 90;
            this.panelEx2.TabIndex            = 4;
            //
            // uICheckBox1
            //
            this.uICheckBox1.BackColor       = System.Drawing.Color.Transparent;
            this.uICheckBox1.Location        = new System.Drawing.Point(4, 8);
            this.uICheckBox1.Name            = "uICheckBox1";
            this.uICheckBox1.Size            = new System.Drawing.Size(108, 20);
            this.uICheckBox1.TabIndex        = 10;
            this.uICheckBox1.Text            = "Always On Top";
            this.uICheckBox1.CheckedChanged += new System.EventHandler(this.uICheckBox1_CheckedChanged);
            //
            // uIButton1
            //
            this.uIButton1.BackColor = System.Drawing.SystemColors.Control;
            this.uIButton1.Location  = new System.Drawing.Point(116, 4);
            this.uIButton1.Name      = "uIButton1";
            this.uIButton1.Size      = new System.Drawing.Size(76, 28);
            this.uIButton1.TabIndex  = 8;
            this.uIButton1.Text      = "Start";
            this.uIButton1.Click    += new System.EventHandler(this.uIButton1_Click);
            //
            // uIButton2
            //
            this.uIButton2.BackColor = System.Drawing.SystemColors.Control;
            this.uIButton2.Location  = new System.Drawing.Point(116, 36);
            this.uIButton2.Name      = "uIButton2";
            this.uIButton2.Size      = new System.Drawing.Size(76, 28);
            this.uIButton2.TabIndex  = 9;
            this.uIButton2.Text      = "Stop";
            this.uIButton2.Click    += new System.EventHandler(this.uIButton2_Click);
            //
            // uIButton3
            //
            this.uIButton3.BackColor = System.Drawing.SystemColors.Control;
            this.uIButton3.Location  = new System.Drawing.Point(552, 36);
            this.uIButton3.Name      = "uIButton3";
            this.uIButton3.Size      = new System.Drawing.Size(76, 28);
            this.uIButton3.TabIndex  = 11;
            this.uIButton3.Text      = "Close";
            this.uIButton3.Click    += new System.EventHandler(this.uIButton3_Click);
            //
            // Form1
            //
            this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
            this.ClientSize        = new System.Drawing.Size(632, 446);
            this.ControlBox        = false;
            this.Controls.Add(this.uIButton3);
            this.Controls.Add(this.listBoxFiles);
            this.Controls.Add(this.uIButton2);
            this.Controls.Add(this.uIButton1);
            this.Controls.Add(this.panelEx1);
            this.Cursor          = System.Windows.Forms.Cursors.Hand;
            this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
            this.MaximizeBox     = false;
            this.Name            = "Form1";
            this.Text            = "NuGenPathWatcher";
            this.Closing        += new System.ComponentModel.CancelEventHandler(this.Form1_Closing);
            this.Load           += new System.EventHandler(this.Form1_Load);
            this.panelEx1.ResumeLayout(false);
            this.panelEx2.ResumeLayout(false);
            this.ResumeLayout(false);
        }
コード例 #37
0
ファイル: InfoDialog.cs プロジェクト: xuchuansheng/GenXSource
		/// <summary>
		/// Required method for Designer support - do not modify
		/// the contents of this method with the code editor.
		/// </summary>
		private void InitializeComponent()
		{
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(InfoDialog));
            this.tbInfo = new System.Windows.Forms.TextBox();
            this.lblTopic = new System.Windows.Forms.Label();
            this.btnSave = new Janus.Windows.EditControls.UIButton();
            this.panelEx1 = new DevComponents.DotNetBar.PanelEx();
            this.btnbutton1 = new Janus.Windows.EditControls.UIButton();
            this.panelEx1.SuspendLayout();
            this.SuspendLayout();
            // 
            // tbInfo
            // 
            this.tbInfo.AccessibleDescription = null;
            this.tbInfo.AccessibleName = null;
            resources.ApplyResources(this.tbInfo, "tbInfo");
            this.tbInfo.BackColor = System.Drawing.SystemColors.Info;
            this.tbInfo.BackgroundImage = null;
            this.tbInfo.Name = "tbInfo";
            // 
            // lblTopic
            // 
            this.lblTopic.AccessibleDescription = null;
            this.lblTopic.AccessibleName = null;
            resources.ApplyResources(this.lblTopic, "lblTopic");
            this.lblTopic.BackColor = System.Drawing.Color.Transparent;
            this.lblTopic.Name = "lblTopic";
            // 
            // btnSave
            // 
            this.btnSave.AccessibleDescription = null;
            this.btnSave.AccessibleName = null;
            resources.ApplyResources(this.btnSave, "btnSave");
            this.btnSave.BackColor = System.Drawing.SystemColors.Control;
            this.btnSave.BackgroundImage = null;
            this.btnSave.Font = null;
            this.btnSave.Name = "btnSave";
            this.btnSave.VisualStyle = Janus.Windows.UI.VisualStyle.Office2003;
            this.btnSave.Click += new System.EventHandler(this.btnSave_Click);
            // 
            // panelEx1
            // 
            this.panelEx1.AccessibleDescription = null;
            this.panelEx1.AccessibleName = null;
            resources.ApplyResources(this.panelEx1, "panelEx1");
            this.panelEx1.Controls.Add(this.btnbutton1);
            this.panelEx1.Controls.Add(this.lblTopic);
            this.panelEx1.Controls.Add(this.btnSave);
            this.panelEx1.Font = null;
            this.panelEx1.Name = "panelEx1";
            this.panelEx1.Style.Alignment = System.Drawing.StringAlignment.Center;
            this.panelEx1.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
            this.panelEx1.Style.BackColor2.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground2;
            this.panelEx1.Style.BackgroundImagePosition = DevComponents.DotNetBar.eBackgroundImagePosition.Tile;
            this.panelEx1.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarDockedBorder;
            this.panelEx1.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemText;
            this.panelEx1.Style.GradientAngle = 90;
            // 
            // btnbutton1
            // 
            this.btnbutton1.AccessibleDescription = null;
            this.btnbutton1.AccessibleName = null;
            resources.ApplyResources(this.btnbutton1, "btnbutton1");
            this.btnbutton1.BackColor = System.Drawing.SystemColors.Control;
            this.btnbutton1.BackgroundImage = null;
            this.btnbutton1.Font = null;
            this.btnbutton1.Name = "btnbutton1";
            this.btnbutton1.VisualStyle = Janus.Windows.UI.VisualStyle.Office2003;
            this.btnbutton1.Click += new System.EventHandler(this.btnbutton1_Click);
            // 
            // InfoDialog
            // 
            this.AccessibleDescription = null;
            this.AccessibleName = null;
            resources.ApplyResources(this, "$this");
            this.BackgroundImage = null;
            this.Controls.Add(this.tbInfo);
            this.Controls.Add(this.panelEx1);
            this.DoubleBuffered = true;
            this.Font = null;
            this.Name = "InfoDialog";
            //this.Load += new System.EventHandler(this.InfoDialog_Load);
            this.panelEx1.ResumeLayout(false);
            this.ResumeLayout(false);
            this.PerformLayout();

		}
コード例 #38
0
ファイル: GACPicker.cs プロジェクト: xuchuansheng/GenXSource
		/// <summary>
		/// Required method for Designer support - do not modify
		/// the contents of this method with the code editor.
		/// </summary>
		private void InitializeComponent()
		{
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(GACPicker));
            this.btnOK = new Janus.Windows.EditControls.UIButton();
            this.btnCxl = new Janus.Windows.EditControls.UIButton();
            this.lvAsms = new System.Windows.Forms.ListView();
            this.AssemblyName = new System.Windows.Forms.ColumnHeader();
            this.Version = new System.Windows.Forms.ColumnHeader();
            this.Culture = new System.Windows.Forms.ColumnHeader();
            this.panelEx1 = new DevComponents.DotNetBar.PanelEx();
            this.panelEx1.SuspendLayout();
            this.SuspendLayout();
            // 
            // btnOK
            // 
            this.btnOK.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.btnOK.BackColor = System.Drawing.SystemColors.Control;
            this.btnOK.DialogResult = System.Windows.Forms.DialogResult.OK;
            this.btnOK.Location = new System.Drawing.Point(288, 8);
            this.btnOK.Name = "btnOK";
            this.btnOK.Size = new System.Drawing.Size(72, 24);
            this.btnOK.TabIndex = 1;
            this.btnOK.Text = "OK";
            this.btnOK.VisualStyle = Janus.Windows.UI.VisualStyle.Office2003;
            this.btnOK.Click += new System.EventHandler(this.btnOK_Click);
            // 
            // btnCxl
            // 
            this.btnCxl.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.btnCxl.BackColor = System.Drawing.SystemColors.Control;
            this.btnCxl.DialogResult = System.Windows.Forms.DialogResult.Cancel;
            this.btnCxl.Location = new System.Drawing.Point(360, 8);
            this.btnCxl.Name = "btnCxl";
            this.btnCxl.Size = new System.Drawing.Size(72, 24);
            this.btnCxl.TabIndex = 2;
            this.btnCxl.Text = "Cancel";
            this.btnCxl.VisualStyle = Janus.Windows.UI.VisualStyle.Office2003;
            // 
            // lvAsms
            // 
            this.lvAsms.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
            this.AssemblyName,
            this.Version,
            this.Culture});
            this.lvAsms.Dock = System.Windows.Forms.DockStyle.Fill;
            this.lvAsms.Location = new System.Drawing.Point(0, 0);
            this.lvAsms.Name = "lvAsms";
            this.lvAsms.Size = new System.Drawing.Size(440, 576);
            this.lvAsms.TabIndex = 3;
            this.lvAsms.UseCompatibleStateImageBehavior = false;
            this.lvAsms.View = System.Windows.Forms.View.Details;
            this.lvAsms.DoubleClick += new System.EventHandler(this.btnOK_Click);
            // 
            // AssemblyName
            // 
            this.AssemblyName.Text = "Assembly Name";
            this.AssemblyName.Width = 180;
            // 
            // Version
            // 
            this.Version.Text = "Version";
            this.Version.Width = 100;
            // 
            // Culture
            // 
            this.Culture.Text = "Culture";
            this.Culture.Width = 120;
            // 
            // panelEx1
            // 
            this.panelEx1.Controls.Add(this.btnCxl);
            this.panelEx1.Controls.Add(this.btnOK);
            this.panelEx1.Dock = System.Windows.Forms.DockStyle.Bottom;
            this.panelEx1.Location = new System.Drawing.Point(0, 576);
            this.panelEx1.Name = "panelEx1";
            this.panelEx1.Size = new System.Drawing.Size(440, 40);
            this.panelEx1.Style.Alignment = System.Drawing.StringAlignment.Center;
            this.panelEx1.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
            this.panelEx1.Style.BackColor2.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground2;
            this.panelEx1.Style.BackgroundImagePosition = DevComponents.DotNetBar.eBackgroundImagePosition.Tile;
            this.panelEx1.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarDockedBorder;
            this.panelEx1.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemText;
            this.panelEx1.Style.GradientAngle = 90;
            this.panelEx1.TabIndex = 4;
            // 
            // GACPicker
            // 
            this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
            this.ClientSize = new System.Drawing.Size(440, 616);
            this.ControlBox = false;
            this.Controls.Add(this.lvAsms);
            this.Controls.Add(this.panelEx1);
            this.DoubleBuffered = true;
            this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
            this.Name = "GACPicker";
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
            this.Text = "Select Asssembly from GAC";
            this.Load += new System.EventHandler(this.GACPicker_Load);
            this.panelEx1.ResumeLayout(false);
            this.ResumeLayout(false);

		}
コード例 #39
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 protected void InitializeComponent()
 {
     this.smPanel1 = new LlamaCarbonCopy.Controls.BaseControls.SMPanel();
     this.panelEx1 = new DevComponents.DotNetBar.PanelEx();
     this.rtxtMessage = new System.Windows.Forms.RichTextBox();
     this.OK_smButton = new LlamaCarbonCopy.Controls.BaseControls.SMButton();
     this.Cancel_smButton = new LlamaCarbonCopy.Controls.BaseControls.SMButton();
     this.pictureBox1 = new System.Windows.Forms.PictureBox();
     this.smPanel1.SuspendLayout();
     this.panelEx1.SuspendLayout();
     this.SuspendLayout();
     //
     // smPanel1
     //
     this.smPanel1.BackColor = System.Drawing.Color.Transparent;
     this.smPanel1.Controls.Add(this.panelEx1);
     this.smPanel1.DataSource = null;
     this.smPanel1.DataSourceProperty = null;
     this.smPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.smPanel1.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.smPanel1.LocalProperty = null;
     this.smPanel1.Location = new System.Drawing.Point(0, 0);
     this.smPanel1.Name = "smPanel1";
     this.smPanel1.Size = new System.Drawing.Size(392, 200);
     this.smPanel1.TabIndex = 0;
     //
     // panelEx1
     //
     this.panelEx1.CanvasColor = System.Drawing.SystemColors.Control;
     this.panelEx1.Controls.Add(this.rtxtMessage);
     this.panelEx1.Controls.Add(this.OK_smButton);
     this.panelEx1.Controls.Add(this.Cancel_smButton);
     this.panelEx1.Controls.Add(this.pictureBox1);
     this.panelEx1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panelEx1.Location = new System.Drawing.Point(0, 0);
     this.panelEx1.Name = "panelEx1";
     this.panelEx1.Size = new System.Drawing.Size(392, 200);
     this.panelEx1.Style.Alignment = System.Drawing.StringAlignment.Center;
     this.panelEx1.Style.BackColor1.Color = System.Drawing.Color.FromArgb(((System.Byte)(142)), ((System.Byte)(179)), ((System.Byte)(231)));
     this.panelEx1.Style.BackColor2.Color = System.Drawing.Color.FromArgb(((System.Byte)(223)), ((System.Byte)(237)), ((System.Byte)(254)));
     this.panelEx1.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.panelEx1.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.panelEx1.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.panelEx1.Style.GradientAngle = 90;
     this.panelEx1.TabIndex = 4;
     //
     // rtxtMessage
     //
     this.rtxtMessage.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.rtxtMessage.Location = new System.Drawing.Point(126, 10);
     this.rtxtMessage.Name = "rtxtMessage";
     this.rtxtMessage.ReadOnly = true;
     this.rtxtMessage.Size = new System.Drawing.Size(256, 142);
     this.rtxtMessage.TabIndex = 4;
     this.rtxtMessage.Text = "";
     //
     // OK_smButton
     //
     this.OK_smButton.BackColor = System.Drawing.Color.White;
     this.OK_smButton.DataSource = null;
     this.OK_smButton.DataSourceProperty = null;
     this.OK_smButton.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.OK_smButton.LocalProperty = null;
     this.OK_smButton.Location = new System.Drawing.Point(12, 164);
     this.OK_smButton.Name = "OK_smButton";
     this.OK_smButton.Size = new System.Drawing.Size(102, 27);
     this.OK_smButton.TabIndex = 0;
     this.OK_smButton.Text = "Ok";
     this.OK_smButton.Click += new System.EventHandler(this.OK_smButton_Click);
     //
     // Cancel_smButton
     //
     this.Cancel_smButton.BackColor = System.Drawing.Color.White;
     this.Cancel_smButton.DataSource = null;
     this.Cancel_smButton.DataSourceProperty = null;
     this.Cancel_smButton.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.Cancel_smButton.LocalProperty = null;
     this.Cancel_smButton.Location = new System.Drawing.Point(286, 164);
     this.Cancel_smButton.Name = "Cancel_smButton";
     this.Cancel_smButton.Size = new System.Drawing.Size(94, 27);
     this.Cancel_smButton.TabIndex = 1;
     this.Cancel_smButton.Text = "Cancel";
     this.Cancel_smButton.Click += new System.EventHandler(this.Cancel_smButton_Click);
     //
     // pictureBox1
     //
     this.pictureBox1.Location = new System.Drawing.Point(12, 10);
     this.pictureBox1.Name = "pictureBox1";
     this.pictureBox1.Size = new System.Drawing.Size(100, 90);
     this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
     this.pictureBox1.TabIndex = 3;
     this.pictureBox1.TabStop = false;
     //
     // BaseMessageForm
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(6, 16);
     this.BackColor = System.Drawing.Color.White;
     this.ClientSize = new System.Drawing.Size(392, 200);
     this.Controls.Add(this.smPanel1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name = "BaseMessageForm";
     this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide;
     this.smPanel1.ResumeLayout(false);
     this.panelEx1.ResumeLayout(false);
     this.ResumeLayout(false);
 }
コード例 #40
0
 private void ShowPanel(DevComponents.DotNetBar.PanelEx panel, Label label)
 {
     panel.Style.BackColor1.Color = Color.FromArgb(150, 150, 150);
     panel.Style.BackColor2.Color = Color.FromArgb(90, 90, 90);
     label.Visible = true;
 }
コード例 #41
0
 /// <summary> 
 /// 此為設計工具支援所需的方法 - 請勿使用程式碼編輯器修改這個方法的內容。
 ///
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle3 = new System.Windows.Forms.DataGridViewCellStyle();
     this.panelEx1 = new DevComponents.DotNetBar.PanelEx();
     this.panel2 = new System.Windows.Forms.Panel();
     this.tabControl1 = new DevComponents.DotNetBar.TabControl();
     this.tabControlPanel1 = new DevComponents.DotNetBar.TabControlPanel();
     this.grdTimeTableBusyEditor = new DevComponents.DotNetBar.Controls.DataGridViewX();
     this.contextMenuBusy = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.menuBusy = new System.Windows.Forms.ToolStripMenuItem();
     this.menuBusyDesc = new System.Windows.Forms.ToolStripMenuItem();
     this.menuFree = new System.Windows.Forms.ToolStripMenuItem();
     this.panel3 = new System.Windows.Forms.Panel();
     this.labelX4 = new DevComponents.DotNetBar.LabelX();
     this.labelX2 = new DevComponents.DotNetBar.LabelX();
     this.cmbTimeTables = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.comboBoxEx1 = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.labelX1 = new DevComponents.DotNetBar.LabelX();
     this.labelX3 = new DevComponents.DotNetBar.LabelX();
     this.tabItem1 = new DevComponents.DotNetBar.TabItem(this.components);
     this.tabControlPanel2 = new DevComponents.DotNetBar.TabControlPanel();
     this.grdClassBusys = new DevComponents.DotNetBar.Controls.DataGridViewX();
     this.tabItem2 = new DevComponents.DotNetBar.TabItem(this.components);
     this.panel1 = new System.Windows.Forms.Panel();
     this.lblName = new DevComponents.DotNetBar.LabelX();
     this.contextMenuStripDelete = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.toolStripMenuItem2 = new System.Windows.Forms.ToolStripMenuItem();
     this.errorProvider1 = new System.Windows.Forms.ErrorProvider(this.components);
     this.errorProvider2 = new System.Windows.Forms.ErrorProvider(this.components);
     this.dataGridViewTextBoxColumn1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn2 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn3 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn4 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colWeekDay = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colStartHour = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colStartMinute = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colBusyDesc = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colSubject = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colLevel = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.panelEx1.SuspendLayout();
     this.panel2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.tabControl1)).BeginInit();
     this.tabControl1.SuspendLayout();
     this.tabControlPanel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grdTimeTableBusyEditor)).BeginInit();
     this.contextMenuBusy.SuspendLayout();
     this.panel3.SuspendLayout();
     this.tabControlPanel2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grdClassBusys)).BeginInit();
     this.panel1.SuspendLayout();
     this.contextMenuStripDelete.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider2)).BeginInit();
     this.SuspendLayout();
     //
     // panelEx1
     //
     this.panelEx1.CanvasColor = System.Drawing.SystemColors.Control;
     this.panelEx1.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.panelEx1.Controls.Add(this.panel2);
     this.panelEx1.Controls.Add(this.panel1);
     this.panelEx1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panelEx1.Location = new System.Drawing.Point(0, 0);
     this.panelEx1.Name = "panelEx1";
     this.panelEx1.Size = new System.Drawing.Size(530, 434);
     this.panelEx1.Style.Alignment = System.Drawing.StringAlignment.Center;
     this.panelEx1.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.panelEx1.Style.BackColor2.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.panelEx1.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.panelEx1.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.panelEx1.Style.GradientAngle = 90;
     this.panelEx1.TabIndex = 1;
     //
     // panel2
     //
     this.panel2.Controls.Add(this.tabControl1);
     this.panel2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panel2.Location = new System.Drawing.Point(0, 34);
     this.panel2.Name = "panel2";
     this.panel2.Size = new System.Drawing.Size(530, 400);
     this.panel2.TabIndex = 4;
     //
     // tabControl1
     //
     this.tabControl1.BackColor = System.Drawing.Color.Transparent;
     this.tabControl1.CanReorderTabs = true;
     this.tabControl1.Controls.Add(this.tabControlPanel1);
     this.tabControl1.Controls.Add(this.tabControlPanel2);
     this.tabControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabControl1.Location = new System.Drawing.Point(0, 0);
     this.tabControl1.Name = "tabControl1";
     this.tabControl1.SelectedTabFont = new System.Drawing.Font("Microsoft JhengHei", 9.75F, System.Drawing.FontStyle.Bold);
     this.tabControl1.SelectedTabIndex = 0;
     this.tabControl1.Size = new System.Drawing.Size(530, 400);
     this.tabControl1.TabIndex = 0;
     this.tabControl1.TabLayoutType = DevComponents.DotNetBar.eTabLayoutType.FixedWithNavigationBox;
     this.tabControl1.Tabs.Add(this.tabItem1);
     this.tabControl1.Tabs.Add(this.tabItem2);
     this.tabControl1.Text = "tabControl1";
     this.tabControl1.DoubleClick += new System.EventHandler(this.tabControl1_DoubleClick);
     //
     // tabControlPanel1
     //
     this.tabControlPanel1.Controls.Add(this.grdTimeTableBusyEditor);
     this.tabControlPanel1.Controls.Add(this.panel3);
     this.tabControlPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabControlPanel1.Location = new System.Drawing.Point(0, 29);
     this.tabControlPanel1.Name = "tabControlPanel1";
     this.tabControlPanel1.Padding = new System.Windows.Forms.Padding(1);
     this.tabControlPanel1.Size = new System.Drawing.Size(530, 371);
     this.tabControlPanel1.Style.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(142)))), ((int)(((byte)(179)))), ((int)(((byte)(231)))));
     this.tabControlPanel1.Style.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(223)))), ((int)(((byte)(237)))), ((int)(((byte)(254)))));
     this.tabControlPanel1.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.tabControlPanel1.Style.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(59)))), ((int)(((byte)(97)))), ((int)(((byte)(156)))));
     this.tabControlPanel1.Style.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Right)
     | DevComponents.DotNetBar.eBorderSide.Bottom)));
     this.tabControlPanel1.Style.GradientAngle = 90;
     this.tabControlPanel1.TabIndex = 1;
     this.tabControlPanel1.TabItem = this.tabItem1;
     //
     // grdTimeTableBusyEditor
     //
     this.grdTimeTableBusyEditor.AllowUserToAddRows = false;
     this.grdTimeTableBusyEditor.AllowUserToDeleteRows = false;
     this.grdTimeTableBusyEditor.AllowUserToResizeColumns = false;
     this.grdTimeTableBusyEditor.AllowUserToResizeRows = false;
     this.grdTimeTableBusyEditor.BackgroundColor = System.Drawing.Color.White;
     dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     dataGridViewCellStyle1.BackColor = System.Drawing.SystemColors.Control;
     dataGridViewCellStyle1.Font = new System.Drawing.Font("Microsoft JhengHei", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(136)));
     dataGridViewCellStyle1.ForeColor = System.Drawing.SystemColors.WindowText;
     dataGridViewCellStyle1.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle1.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
     dataGridViewCellStyle1.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
     this.grdTimeTableBusyEditor.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle1;
     this.grdTimeTableBusyEditor.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.grdTimeTableBusyEditor.ContextMenuStrip = this.contextMenuBusy;
     dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     dataGridViewCellStyle2.BackColor = System.Drawing.SystemColors.Window;
     dataGridViewCellStyle2.Font = new System.Drawing.Font("Microsoft JhengHei", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(136)));
     dataGridViewCellStyle2.ForeColor = System.Drawing.SystemColors.ControlText;
     dataGridViewCellStyle2.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle2.SelectionForeColor = System.Drawing.SystemColors.ControlText;
     dataGridViewCellStyle2.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
     this.grdTimeTableBusyEditor.DefaultCellStyle = dataGridViewCellStyle2;
     this.grdTimeTableBusyEditor.Dock = System.Windows.Forms.DockStyle.Fill;
     this.grdTimeTableBusyEditor.EditMode = System.Windows.Forms.DataGridViewEditMode.EditProgrammatically;
     this.grdTimeTableBusyEditor.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(170)))), ((int)(((byte)(170)))), ((int)(((byte)(170)))));
     this.grdTimeTableBusyEditor.Location = new System.Drawing.Point(1, 35);
     this.grdTimeTableBusyEditor.Name = "grdTimeTableBusyEditor";
     this.grdTimeTableBusyEditor.RowHeadersVisible = false;
     this.grdTimeTableBusyEditor.RowTemplate.Height = 24;
     this.grdTimeTableBusyEditor.Size = new System.Drawing.Size(528, 335);
     this.grdTimeTableBusyEditor.TabIndex = 22;
     //
     // contextMenuBusy
     //
     this.contextMenuBusy.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.menuBusy,
     this.menuBusyDesc,
     this.menuFree});
     this.contextMenuBusy.Name = "contextMenuStrip1";
     this.contextMenuBusy.ShowImageMargin = false;
     this.contextMenuBusy.Size = new System.Drawing.Size(186, 70);
     //
     // menuBusy
     //
     this.menuBusy.Name = "menuBusy";
     this.menuBusy.Size = new System.Drawing.Size(185, 22);
     this.menuBusy.Text = "設定不排課時段";
     //
     // menuBusyDesc
     //
     this.menuBusyDesc.Name = "menuBusyDesc";
     this.menuBusyDesc.Size = new System.Drawing.Size(185, 22);
     this.menuBusyDesc.Text = "設定不排課時段(指定描述)";
     //
     // menuFree
     //
     this.menuFree.Name = "menuFree";
     this.menuFree.Size = new System.Drawing.Size(185, 22);
     this.menuFree.Text = "取消設定";
     //
     // panel3
     //
     this.panel3.BackColor = System.Drawing.Color.Transparent;
     this.panel3.Controls.Add(this.labelX4);
     this.panel3.Controls.Add(this.labelX2);
     this.panel3.Controls.Add(this.cmbTimeTables);
     this.panel3.Controls.Add(this.comboBoxEx1);
     this.panel3.Controls.Add(this.labelX1);
     this.panel3.Controls.Add(this.labelX3);
     this.panel3.Dock = System.Windows.Forms.DockStyle.Top;
     this.panel3.Location = new System.Drawing.Point(1, 1);
     this.panel3.Name = "panel3";
     this.panel3.Size = new System.Drawing.Size(528, 34);
     this.panel3.TabIndex = 21;
     //
     // labelX4
     //
     this.labelX4.AutoSize = true;
     //
     //
     //
     this.labelX4.BackgroundStyle.Class = "";
     this.labelX4.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX4.Location = new System.Drawing.Point(242, 7);
     this.labelX4.Name = "labelX4";
     this.labelX4.Size = new System.Drawing.Size(219, 21);
     this.labelX4.TabIndex = 23;
     this.labelX4.Text = "(可雙擊左鍵設定,或多選以右鍵設定)";
     //
     // labelX2
     //
     this.labelX2.AutoSize = true;
     //
     //
     //
     this.labelX2.BackgroundStyle.Class = "";
     this.labelX2.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX2.Location = new System.Drawing.Point(11, 7);
     this.labelX2.Name = "labelX2";
     this.labelX2.Size = new System.Drawing.Size(60, 21);
     this.labelX2.TabIndex = 22;
     this.labelX2.Text = "時間表:";
     //
     // cmbTimeTables
     //
     this.cmbTimeTables.DisplayMember = "Name";
     this.cmbTimeTables.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.cmbTimeTables.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cmbTimeTables.FormattingEnabled = true;
     this.cmbTimeTables.ItemHeight = 19;
     this.cmbTimeTables.Location = new System.Drawing.Point(71, 5);
     this.cmbTimeTables.Name = "cmbTimeTables";
     this.cmbTimeTables.Size = new System.Drawing.Size(155, 25);
     this.cmbTimeTables.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.cmbTimeTables.TabIndex = 18;
     this.cmbTimeTables.ValueMember = "UID";
     this.cmbTimeTables.SelectedIndexChanged += new System.EventHandler(this.cmbTimeTables_SelectedIndexChanged);
     //
     // comboBoxEx1
     //
     this.comboBoxEx1.DisplayMember = "Text";
     this.comboBoxEx1.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.comboBoxEx1.FormattingEnabled = true;
     this.comboBoxEx1.ItemHeight = 19;
     this.comboBoxEx1.Location = new System.Drawing.Point(313, 37);
     this.comboBoxEx1.Name = "comboBoxEx1";
     this.comboBoxEx1.Size = new System.Drawing.Size(121, 25);
     this.comboBoxEx1.TabIndex = 12;
     this.comboBoxEx1.Visible = false;
     //
     // labelX1
     //
     this.labelX1.AutoSize = true;
     //
     //
     //
     this.labelX1.BackgroundStyle.Class = "";
     this.labelX1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX1.Location = new System.Drawing.Point(241, 41);
     this.labelX1.Name = "labelX1";
     this.labelX1.Size = new System.Drawing.Size(74, 21);
     this.labelX1.TabIndex = 11;
     this.labelX1.Text = "所在地點:";
     this.labelX1.Visible = false;
     //
     // labelX3
     //
     this.labelX3.AutoSize = true;
     //
     //
     //
     this.labelX3.BackgroundStyle.Class = "";
     this.labelX3.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX3.Location = new System.Drawing.Point(234, 41);
     this.labelX3.Name = "labelX3";
     this.labelX3.Size = new System.Drawing.Size(74, 21);
     this.labelX3.TabIndex = 3;
     this.labelX3.Text = "場地代碼:";
     this.labelX3.Visible = false;
     //
     // tabItem1
     //
     this.tabItem1.AttachedControl = this.tabControlPanel1;
     this.tabItem1.Name = "tabItem1";
     this.tabItem1.Text = "不排課時段";
     //
     // tabControlPanel2
     //
     this.tabControlPanel2.Controls.Add(this.grdClassBusys);
     this.tabControlPanel2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabControlPanel2.Location = new System.Drawing.Point(0, 29);
     this.tabControlPanel2.Name = "tabControlPanel2";
     this.tabControlPanel2.Padding = new System.Windows.Forms.Padding(1);
     this.tabControlPanel2.Size = new System.Drawing.Size(530, 371);
     this.tabControlPanel2.Style.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(142)))), ((int)(((byte)(179)))), ((int)(((byte)(231)))));
     this.tabControlPanel2.Style.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(223)))), ((int)(((byte)(237)))), ((int)(((byte)(254)))));
     this.tabControlPanel2.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.tabControlPanel2.Style.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(59)))), ((int)(((byte)(97)))), ((int)(((byte)(156)))));
     this.tabControlPanel2.Style.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Right)
     | DevComponents.DotNetBar.eBorderSide.Bottom)));
     this.tabControlPanel2.Style.GradientAngle = 90;
     this.tabControlPanel2.TabIndex = 2;
     this.tabControlPanel2.TabItem = this.tabItem2;
     //
     // grdClassBusys
     //
     this.grdClassBusys.BackgroundColor = System.Drawing.Color.White;
     this.grdClassBusys.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.grdClassBusys.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.colWeekDay,
     this.colStartHour,
     this.colStartMinute,
     this.colBusyDesc});
     dataGridViewCellStyle3.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle3.BackColor = System.Drawing.SystemColors.Window;
     dataGridViewCellStyle3.Font = new System.Drawing.Font("Microsoft JhengHei", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(136)));
     dataGridViewCellStyle3.ForeColor = System.Drawing.SystemColors.ControlText;
     dataGridViewCellStyle3.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle3.SelectionForeColor = System.Drawing.SystemColors.ControlText;
     dataGridViewCellStyle3.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
     this.grdClassBusys.DefaultCellStyle = dataGridViewCellStyle3;
     this.grdClassBusys.Dock = System.Windows.Forms.DockStyle.Fill;
     this.grdClassBusys.EditMode = System.Windows.Forms.DataGridViewEditMode.EditProgrammatically;
     this.grdClassBusys.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(170)))), ((int)(((byte)(170)))), ((int)(((byte)(170)))));
     this.grdClassBusys.HighlightSelectedColumnHeaders = false;
     this.grdClassBusys.Location = new System.Drawing.Point(1, 1);
     this.grdClassBusys.MultiSelect = false;
     this.grdClassBusys.Name = "grdClassBusys";
     this.grdClassBusys.ReadOnly = true;
     this.grdClassBusys.RowHeadersWidth = 35;
     this.grdClassBusys.RowTemplate.Height = 24;
     this.grdClassBusys.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.CellSelect;
     this.grdClassBusys.Size = new System.Drawing.Size(528, 369);
     this.grdClassBusys.TabIndex = 3;
     //
     // tabItem2
     //
     this.tabItem2.AttachedControl = this.tabControlPanel2;
     this.tabItem2.Name = "tabItem2";
     this.tabItem2.Text = "清單檢視";
     this.tabItem2.Visible = false;
     //
     // panel1
     //
     this.panel1.Controls.Add(this.lblName);
     this.panel1.Dock = System.Windows.Forms.DockStyle.Top;
     this.panel1.Location = new System.Drawing.Point(0, 0);
     this.panel1.Name = "panel1";
     this.panel1.Size = new System.Drawing.Size(530, 34);
     this.panel1.TabIndex = 3;
     this.panel1.DoubleClick += new System.EventHandler(this.panel1_DoubleClick);
     //
     // lblName
     //
     this.lblName.AutoSize = true;
     //
     //
     //
     this.lblName.BackgroundStyle.Class = "";
     this.lblName.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.lblName.Font = new System.Drawing.Font("Microsoft JhengHei", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(136)));
     this.lblName.Location = new System.Drawing.Point(3, 1);
     this.lblName.Name = "lblName";
     this.lblName.Size = new System.Drawing.Size(87, 32);
     this.lblName.TabIndex = 6;
     this.lblName.Text = "班級名稱";
     //
     // contextMenuStripDelete
     //
     this.contextMenuStripDelete.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.toolStripMenuItem2});
     this.contextMenuStripDelete.Name = "contextMenuStrip1";
     this.contextMenuStripDelete.ShowImageMargin = false;
     this.contextMenuStripDelete.Size = new System.Drawing.Size(41, 26);
     //
     // toolStripMenuItem2
     //
     this.toolStripMenuItem2.Name = "toolStripMenuItem2";
     this.toolStripMenuItem2.Size = new System.Drawing.Size(40, 22);
     //
     // errorProvider1
     //
     this.errorProvider1.ContainerControl = this;
     //
     // errorProvider2
     //
     this.errorProvider2.ContainerControl = this;
     //
     // dataGridViewTextBoxColumn1
     //
     this.dataGridViewTextBoxColumn1.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.dataGridViewTextBoxColumn1.HeaderText = "星期";
     this.dataGridViewTextBoxColumn1.Name = "dataGridViewTextBoxColumn1";
     this.dataGridViewTextBoxColumn1.ReadOnly = true;
     this.dataGridViewTextBoxColumn1.Resizable = System.Windows.Forms.DataGridViewTriState.True;
     this.dataGridViewTextBoxColumn1.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     this.dataGridViewTextBoxColumn1.ToolTipText = "只能輸入1到7";
     this.dataGridViewTextBoxColumn1.Width = 35;
     //
     // dataGridViewTextBoxColumn2
     //
     this.dataGridViewTextBoxColumn2.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.dataGridViewTextBoxColumn2.HeaderText = "開始時間";
     this.dataGridViewTextBoxColumn2.Name = "dataGridViewTextBoxColumn2";
     this.dataGridViewTextBoxColumn2.ReadOnly = true;
     this.dataGridViewTextBoxColumn2.Resizable = System.Windows.Forms.DataGridViewTriState.True;
     this.dataGridViewTextBoxColumn2.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     this.dataGridViewTextBoxColumn2.Width = 59;
     //
     // dataGridViewTextBoxColumn3
     //
     this.dataGridViewTextBoxColumn3.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.dataGridViewTextBoxColumn3.HeaderText = "結束時間";
     this.dataGridViewTextBoxColumn3.Name = "dataGridViewTextBoxColumn3";
     this.dataGridViewTextBoxColumn3.ReadOnly = true;
     this.dataGridViewTextBoxColumn3.Resizable = System.Windows.Forms.DataGridViewTriState.True;
     this.dataGridViewTextBoxColumn3.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     this.dataGridViewTextBoxColumn3.Width = 59;
     //
     // dataGridViewTextBoxColumn4
     //
     this.dataGridViewTextBoxColumn4.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
     this.dataGridViewTextBoxColumn4.HeaderText = "不排課描述";
     this.dataGridViewTextBoxColumn4.Name = "dataGridViewTextBoxColumn4";
     this.dataGridViewTextBoxColumn4.ReadOnly = true;
     //
     // colWeekDay
     //
     this.colWeekDay.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.colWeekDay.HeaderText = "星期";
     this.colWeekDay.Name = "colWeekDay";
     this.colWeekDay.ReadOnly = true;
     this.colWeekDay.Resizable = System.Windows.Forms.DataGridViewTriState.True;
     this.colWeekDay.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     this.colWeekDay.ToolTipText = "只能輸入1到7";
     this.colWeekDay.Width = 40;
     //
     // colStartHour
     //
     this.colStartHour.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.colStartHour.HeaderText = "開始時間";
     this.colStartHour.Name = "colStartHour";
     this.colStartHour.ReadOnly = true;
     this.colStartHour.Resizable = System.Windows.Forms.DataGridViewTriState.True;
     this.colStartHour.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     this.colStartHour.Width = 66;
     //
     // colStartMinute
     //
     this.colStartMinute.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.colStartMinute.HeaderText = "結束時間";
     this.colStartMinute.Name = "colStartMinute";
     this.colStartMinute.ReadOnly = true;
     this.colStartMinute.Resizable = System.Windows.Forms.DataGridViewTriState.True;
     this.colStartMinute.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     this.colStartMinute.Width = 66;
     //
     // colBusyDesc
     //
     this.colBusyDesc.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
     this.colBusyDesc.HeaderText = "不排課描述";
     this.colBusyDesc.Name = "colBusyDesc";
     this.colBusyDesc.ReadOnly = true;
     //
     // colSubject
     //
     this.colSubject.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
     this.colSubject.HeaderText = "科目";
     this.colSubject.Name = "colSubject";
     //
     // colLevel
     //
     this.colLevel.HeaderText = "級別";
     this.colLevel.Name = "colLevel";
     //
     // ClassEditor
     //
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
     this.Controls.Add(this.panelEx1);
     this.Font = new System.Drawing.Font("Microsoft JhengHei", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(136)));
     this.Name = "ClassEditor";
     this.Size = new System.Drawing.Size(530, 434);
     this.panelEx1.ResumeLayout(false);
     this.panel2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.tabControl1)).EndInit();
     this.tabControl1.ResumeLayout(false);
     this.tabControlPanel1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.grdTimeTableBusyEditor)).EndInit();
     this.contextMenuBusy.ResumeLayout(false);
     this.panel3.ResumeLayout(false);
     this.panel3.PerformLayout();
     this.tabControlPanel2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.grdClassBusys)).EndInit();
     this.panel1.ResumeLayout(false);
     this.panel1.PerformLayout();
     this.contextMenuStripDelete.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider2)).EndInit();
     this.ResumeLayout(false);
 }
コード例 #42
0
		/// <summary> 
		/// Required method for Designer support - do not modify 
		/// the contents of this method with the code editor.
		/// </summary>
		private void InitializeComponent()
		{
            this.components = new System.ComponentModel.Container();
            this.inputText = new System.Windows.Forms.TextBox();
            this.previewPanel = new DevComponents.DotNetBar.PanelEx();
            this.buttonCancel = new System.Windows.Forms.Button();
            this.buttonOK = new System.Windows.Forms.Button();
            this.timer1 = new System.Windows.Forms.Timer(this.components);
            this.label2 = new System.Windows.Forms.Label();
            this.bar1 = new DevComponents.DotNetBar.Bar();
            this.buttonBold = new DevComponents.DotNetBar.ButtonItem();
            this.buttonItalic = new DevComponents.DotNetBar.ButtonItem();
            this.buttonUnderline = new DevComponents.DotNetBar.ButtonItem();
            this.buttonColor = new DevComponents.DotNetBar.ColorPickerDropDown();
            ((System.ComponentModel.ISupportInitialize)(this.bar1)).BeginInit();
            this.SuspendLayout();
            // 
            // inputText
            // 
            this.inputText.AcceptsReturn = true;
            this.inputText.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.inputText.Location = new System.Drawing.Point(8, 8);
            this.inputText.Multiline = true;
            this.inputText.Name = "inputText";
            this.inputText.Size = new System.Drawing.Size(332, 110);
            this.inputText.TabIndex = 0;
            this.inputText.TextChanged += new System.EventHandler(this.inputText_TextChanged);
            // 
            // previewPanel
            // 
            this.previewPanel.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
                        | System.Windows.Forms.AnchorStyles.Right)));
            this.previewPanel.AutoScroll = true;
            this.previewPanel.CanvasColor = System.Drawing.SystemColors.Control;
            this.previewPanel.Location = new System.Drawing.Point(8, 152);
            this.previewPanel.Name = "previewPanel";
            this.previewPanel.Size = new System.Drawing.Size(332, 75);
            this.previewPanel.Style.BackColor1.Color = System.Drawing.Color.White;
            this.previewPanel.Style.BackgroundImagePosition = DevComponents.DotNetBar.eBackgroundImagePosition.Tile;
            this.previewPanel.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
            this.previewPanel.Style.BorderColor.Color = System.Drawing.Color.DarkGray;
            this.previewPanel.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemText;
            this.previewPanel.Style.GradientAngle = 90;
            this.previewPanel.Style.LineAlignment = System.Drawing.StringAlignment.Near;
            this.previewPanel.TabIndex = 1;
            // 
            // buttonCancel
            // 
            this.buttonCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
            this.buttonCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
            this.buttonCancel.FlatStyle = System.Windows.Forms.FlatStyle.System;
            this.buttonCancel.Location = new System.Drawing.Point(269, 233);
            this.buttonCancel.Name = "buttonCancel";
            this.buttonCancel.Size = new System.Drawing.Size(71, 24);
            this.buttonCancel.TabIndex = 4;
            this.buttonCancel.Text = "Cancel";
            this.buttonCancel.Click += new System.EventHandler(this.buttonCancel_Click);
            // 
            // buttonOK
            // 
            this.buttonOK.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
            this.buttonOK.DialogResult = System.Windows.Forms.DialogResult.OK;
            this.buttonOK.FlatStyle = System.Windows.Forms.FlatStyle.System;
            this.buttonOK.Location = new System.Drawing.Point(194, 233);
            this.buttonOK.Name = "buttonOK";
            this.buttonOK.Size = new System.Drawing.Size(71, 24);
            this.buttonOK.TabIndex = 3;
            this.buttonOK.Text = "OK";
            this.buttonOK.Click += new System.EventHandler(this.buttonOK_Click);
            // 
            // timer1
            // 
            this.timer1.Interval = 1000;
            this.timer1.Tick += new System.EventHandler(this.timer1_Tick);
            // 
            // label2
            // 
            this.label2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
            this.label2.BackColor = System.Drawing.Color.WhiteSmoke;
            this.label2.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label2.Location = new System.Drawing.Point(316, 133);
            this.label2.Name = "label2";
            this.label2.Size = new System.Drawing.Size(24, 16);
            this.label2.TabIndex = 5;
            this.label2.Text = "?";
            this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
            this.label2.MouseLeave += new System.EventHandler(this.label2_MouseLeave);
            this.label2.MouseEnter += new System.EventHandler(this.label2_MouseEnter);
            // 
            // bar1
            // 
            this.bar1.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
            this.buttonBold,
            this.buttonItalic,
            this.buttonUnderline,
            this.buttonColor});
            this.bar1.Location = new System.Drawing.Point(8, 124);
            this.bar1.Name = "bar1";
            this.bar1.Size = new System.Drawing.Size(174, 25);
            this.bar1.Style = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
            this.bar1.TabIndex = 6;
            this.bar1.TabStop = false;
            this.bar1.Text = "bar1";
            // 
            // buttonBold
            // 
            this.buttonBold.Name = "buttonBold";
            this.buttonBold.Shortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlB);
            this.buttonBold.Text = "Bold";
            this.buttonBold.Click += new System.EventHandler(this.buttonBold_Click);
            // 
            // buttonItalic
            // 
            this.buttonItalic.Name = "buttonItalic";
            this.buttonItalic.Shortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlI);
            this.buttonItalic.Text = "Italic";
            this.buttonItalic.Click += new System.EventHandler(this.buttonItalic_Click);
            // 
            // buttonUnderline
            // 
            this.buttonUnderline.Name = "buttonUnderline";
            this.buttonUnderline.Shortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlU);
            this.buttonUnderline.Text = "Underline";
            this.buttonUnderline.Click += new System.EventHandler(this.buttonUnderline_Click);
            // 
            // buttonColor
            // 
            this.buttonColor.Name = "buttonColor";
            this.buttonColor.Tooltip = "Sets the text color";
            this.buttonColor.Image = Helpers.LoadBitmap("SystemImages.ColorPickerButtonImage.png");
            this.buttonColor.SelectedColorImageRectangle = new System.Drawing.Rectangle(2, 2, 12, 12);
            this.buttonColor.Click += new System.EventHandler(this.buttonColor_SelectedColorChanged);
            // 
            // TextMarkupEditor
            // 
            this.Controls.Add(this.bar1);
            this.Controls.Add(this.label2);
            this.Controls.Add(this.buttonOK);
            this.Controls.Add(this.buttonCancel);
            this.Controls.Add(this.previewPanel);
            this.Controls.Add(this.inputText);
            this.Name = "TextMarkupEditor";
            this.Size = new System.Drawing.Size(348, 263);
            ((System.ComponentModel.ISupportInitialize)(this.bar1)).EndInit();
            this.ResumeLayout(false);
            this.PerformLayout();

		}
コード例 #43
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FindDialog));
     this.tbStr         = new System.Windows.Forms.TextBox();
     this.label1        = new System.Windows.Forms.Label();
     this.btnCancel     = new Janus.Windows.EditControls.UIButton();
     this.btnOK         = new Janus.Windows.EditControls.UIButton();
     this.cbStartAtRoot = new System.Windows.Forms.CheckBox();
     this.cbWhole       = new System.Windows.Forms.CheckBox();
     this.cbType        = new System.Windows.Forms.CheckBox();
     this.cbMethod      = new System.Windows.Forms.CheckBox();
     this.cbParameter   = new System.Windows.Forms.CheckBox();
     this.cbField       = new System.Windows.Forms.CheckBox();
     this.cbResource    = new System.Windows.Forms.CheckBox();
     this.checkBox8     = new System.Windows.Forms.CheckBox();
     this.groupBox1     = new System.Windows.Forms.GroupBox();
     this.cbProperty    = new System.Windows.Forms.CheckBox();
     this.cbEvent       = new System.Windows.Forms.CheckBox();
     this.groupBox2     = new System.Windows.Forms.GroupBox();
     this.cbCaseful     = new System.Windows.Forms.CheckBox();
     this.panelEx1      = new DevComponents.DotNetBar.PanelEx();
     this.groupBox1.SuspendLayout();
     this.groupBox2.SuspendLayout();
     this.panelEx1.SuspendLayout();
     this.SuspendLayout();
     //
     // tbStr
     //
     this.tbStr.Location = new System.Drawing.Point(80, 8);
     this.tbStr.Name     = "tbStr";
     this.tbStr.Size     = new System.Drawing.Size(336, 20);
     this.tbStr.TabIndex = 0;
     //
     // label1
     //
     this.label1.BackColor = System.Drawing.Color.Transparent;
     this.label1.Location  = new System.Drawing.Point(8, 8);
     this.label1.Name      = "label1";
     this.label1.Size      = new System.Drawing.Size(64, 24);
     this.label1.TabIndex  = 8;
     this.label1.Text      = "Search For:";
     this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // btnCancel
     //
     this.btnCancel.BackColor    = System.Drawing.SystemColors.Control;
     this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.btnCancel.Location     = new System.Drawing.Point(344, 176);
     this.btnCancel.Name         = "btnCancel";
     this.btnCancel.Size         = new System.Drawing.Size(72, 24);
     this.btnCancel.TabIndex     = 10;
     this.btnCancel.Text         = "Cancel";
     this.btnCancel.VisualStyle  = Janus.Windows.UI.VisualStyle.Office2003;
     this.btnCancel.Click       += new System.EventHandler(this.btnCancel_Click);
     //
     // btnOK
     //
     this.btnOK.BackColor   = System.Drawing.SystemColors.Control;
     this.btnOK.Location    = new System.Drawing.Point(272, 176);
     this.btnOK.Name        = "btnOK";
     this.btnOK.Size        = new System.Drawing.Size(72, 24);
     this.btnOK.TabIndex    = 9;
     this.btnOK.Text        = "OK";
     this.btnOK.VisualStyle = Janus.Windows.UI.VisualStyle.Office2003;
     this.btnOK.Click      += new System.EventHandler(this.btnOK_Click);
     //
     // cbStartAtRoot
     //
     this.cbStartAtRoot.BackColor = System.Drawing.Color.Transparent;
     this.cbStartAtRoot.Location  = new System.Drawing.Point(256, 64);
     this.cbStartAtRoot.Name      = "cbStartAtRoot";
     this.cbStartAtRoot.Size      = new System.Drawing.Size(152, 24);
     this.cbStartAtRoot.TabIndex  = 12;
     this.cbStartAtRoot.Text      = "Start From Root Of Tree";
     this.cbStartAtRoot.UseVisualStyleBackColor = false;
     //
     // cbWhole
     //
     this.cbWhole.BackColor = System.Drawing.Color.Transparent;
     this.cbWhole.Location  = new System.Drawing.Point(16, 48);
     this.cbWhole.Name      = "cbWhole";
     this.cbWhole.Size      = new System.Drawing.Size(152, 24);
     this.cbWhole.TabIndex  = 13;
     this.cbWhole.Text      = "Match Entire Name Only";
     this.cbWhole.UseVisualStyleBackColor = false;
     //
     // cbType
     //
     this.cbType.BackColor = System.Drawing.Color.Transparent;
     this.cbType.Location  = new System.Drawing.Point(16, 24);
     this.cbType.Name      = "cbType";
     this.cbType.Size      = new System.Drawing.Size(104, 24);
     this.cbType.TabIndex  = 14;
     this.cbType.Text      = "Types";
     this.cbType.UseVisualStyleBackColor = false;
     //
     // cbMethod
     //
     this.cbMethod.BackColor = System.Drawing.Color.Transparent;
     this.cbMethod.Location  = new System.Drawing.Point(16, 48);
     this.cbMethod.Name      = "cbMethod";
     this.cbMethod.Size      = new System.Drawing.Size(104, 24);
     this.cbMethod.TabIndex  = 15;
     this.cbMethod.Text      = "Methods";
     this.cbMethod.UseVisualStyleBackColor = false;
     //
     // cbParameter
     //
     this.cbParameter.BackColor = System.Drawing.Color.Transparent;
     this.cbParameter.Location  = new System.Drawing.Point(16, 72);
     this.cbParameter.Name      = "cbParameter";
     this.cbParameter.Size      = new System.Drawing.Size(104, 24);
     this.cbParameter.TabIndex  = 16;
     this.cbParameter.Text      = "Parameters";
     this.cbParameter.UseVisualStyleBackColor = false;
     //
     // cbField
     //
     this.cbField.BackColor = System.Drawing.Color.Transparent;
     this.cbField.Location  = new System.Drawing.Point(120, 24);
     this.cbField.Name      = "cbField";
     this.cbField.Size      = new System.Drawing.Size(104, 24);
     this.cbField.TabIndex  = 18;
     this.cbField.Text      = "Fields";
     this.cbField.UseVisualStyleBackColor = false;
     //
     // cbResource
     //
     this.cbResource.Location = new System.Drawing.Point(120, 72);
     this.cbResource.Name     = "cbResource";
     this.cbResource.Size     = new System.Drawing.Size(104, 24);
     this.cbResource.TabIndex = 20;
     this.cbResource.Text     = "Resources";
     //
     // checkBox8
     //
     this.checkBox8.BackColor = System.Drawing.Color.Transparent;
     this.checkBox8.Location  = new System.Drawing.Point(256, 112);
     this.checkBox8.Name      = "checkBox8";
     this.checkBox8.Size      = new System.Drawing.Size(104, 24);
     this.checkBox8.TabIndex  = 21;
     this.checkBox8.Text      = "Public Only";
     this.checkBox8.UseVisualStyleBackColor = false;
     //
     // groupBox1
     //
     this.groupBox1.BackColor = System.Drawing.Color.Transparent;
     this.groupBox1.Controls.Add(this.cbResource);
     this.groupBox1.Controls.Add(this.cbProperty);
     this.groupBox1.Controls.Add(this.cbParameter);
     this.groupBox1.Controls.Add(this.cbField);
     this.groupBox1.Controls.Add(this.cbEvent);
     this.groupBox1.Controls.Add(this.cbType);
     this.groupBox1.Controls.Add(this.cbMethod);
     this.groupBox1.Location = new System.Drawing.Point(8, 40);
     this.groupBox1.Name     = "groupBox1";
     this.groupBox1.Size     = new System.Drawing.Size(232, 128);
     this.groupBox1.TabIndex = 22;
     this.groupBox1.TabStop  = false;
     this.groupBox1.Text     = "Search For:";
     //
     // cbProperty
     //
     this.cbProperty.Location = new System.Drawing.Point(16, 96);
     this.cbProperty.Name     = "cbProperty";
     this.cbProperty.Size     = new System.Drawing.Size(104, 24);
     this.cbProperty.TabIndex = 25;
     this.cbProperty.Text     = "Properties";
     //
     // cbEvent
     //
     this.cbEvent.BackColor = System.Drawing.Color.Transparent;
     this.cbEvent.Location  = new System.Drawing.Point(120, 48);
     this.cbEvent.Name      = "cbEvent";
     this.cbEvent.Size      = new System.Drawing.Size(104, 24);
     this.cbEvent.TabIndex  = 24;
     this.cbEvent.Text      = "Events";
     this.cbEvent.UseVisualStyleBackColor = false;
     //
     // groupBox2
     //
     this.groupBox2.BackColor = System.Drawing.Color.Transparent;
     this.groupBox2.Controls.Add(this.cbCaseful);
     this.groupBox2.Controls.Add(this.cbWhole);
     this.groupBox2.Location = new System.Drawing.Point(240, 40);
     this.groupBox2.Name     = "groupBox2";
     this.groupBox2.Size     = new System.Drawing.Size(176, 128);
     this.groupBox2.TabIndex = 23;
     this.groupBox2.TabStop  = false;
     this.groupBox2.Text     = "Options:";
     //
     // cbCaseful
     //
     this.cbCaseful.Location = new System.Drawing.Point(16, 96);
     this.cbCaseful.Name     = "cbCaseful";
     this.cbCaseful.Size     = new System.Drawing.Size(104, 24);
     this.cbCaseful.TabIndex = 25;
     this.cbCaseful.Text     = "Case Sensitive";
     //
     // panelEx1
     //
     this.panelEx1.Controls.Add(this.cbStartAtRoot);
     this.panelEx1.Controls.Add(this.label1);
     this.panelEx1.Controls.Add(this.checkBox8);
     this.panelEx1.Controls.Add(this.groupBox1);
     this.panelEx1.Controls.Add(this.btnCancel);
     this.panelEx1.Controls.Add(this.groupBox2);
     this.panelEx1.Controls.Add(this.tbStr);
     this.panelEx1.Controls.Add(this.btnOK);
     this.panelEx1.Dock            = System.Windows.Forms.DockStyle.Fill;
     this.panelEx1.Location        = new System.Drawing.Point(0, 0);
     this.panelEx1.Name            = "panelEx1";
     this.panelEx1.Size            = new System.Drawing.Size(426, 208);
     this.panelEx1.Style.Alignment = System.Drawing.StringAlignment.Center;
     this.panelEx1.Style.BackColor1.ColorSchemePart  = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
     this.panelEx1.Style.BackColor2.ColorSchemePart  = DevComponents.DotNetBar.eColorSchemePart.BarBackground2;
     this.panelEx1.Style.BackgroundImagePosition     = DevComponents.DotNetBar.eBackgroundImagePosition.Tile;
     this.panelEx1.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarDockedBorder;
     this.panelEx1.Style.ForeColor.ColorSchemePart   = DevComponents.DotNetBar.eColorSchemePart.ItemText;
     this.panelEx1.Style.GradientAngle = 90;
     this.panelEx1.TabIndex            = 25;
     //
     // FindDialog
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(426, 208);
     this.ControlBox        = false;
     this.Controls.Add(this.panelEx1);
     this.DoubleBuffered  = true;
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.Icon            = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Name            = "FindDialog";
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text            = "Find";
     this.groupBox1.ResumeLayout(false);
     this.groupBox2.ResumeLayout(false);
     this.panelEx1.ResumeLayout(false);
     this.panelEx1.PerformLayout();
     this.ResumeLayout(false);
 }
コード例 #44
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.panelEx1 = new DevComponents.DotNetBar.PanelEx();
     this.btduongdan = new DevComponents.DotNetBar.ButtonX();
     this.labelX2 = new DevComponents.DotNetBar.LabelX();
     this.labelX1 = new DevComponents.DotNetBar.LabelX();
     this.btthoat = new DevComponents.DotNetBar.ButtonX();
     this.txtduongdan = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.btbackup = new DevComponents.DotNetBar.ButtonX();
     this.panelEx1.SuspendLayout();
     this.SuspendLayout();
     //
     // panelEx1
     //
     this.panelEx1.CanvasColor = System.Drawing.SystemColors.Control;
     this.panelEx1.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.panelEx1.Controls.Add(this.btduongdan);
     this.panelEx1.Controls.Add(this.labelX2);
     this.panelEx1.Controls.Add(this.labelX1);
     this.panelEx1.Controls.Add(this.btthoat);
     this.panelEx1.Controls.Add(this.txtduongdan);
     this.panelEx1.Controls.Add(this.btbackup);
     this.panelEx1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panelEx1.Location = new System.Drawing.Point(0, 0);
     this.panelEx1.Name = "panelEx1";
     this.panelEx1.Size = new System.Drawing.Size(572, 262);
     this.panelEx1.Style.Alignment = System.Drawing.StringAlignment.Center;
     this.panelEx1.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.panelEx1.Style.BackColor2.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.panelEx1.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.panelEx1.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.panelEx1.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.panelEx1.Style.GradientAngle = 90;
     this.panelEx1.TabIndex = 1;
     //
     // btduongdan
     //
     this.btduongdan.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btduongdan.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.btduongdan.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btduongdan.Location = new System.Drawing.Point(444, 115);
     this.btduongdan.Name = "btduongdan";
     this.btduongdan.Size = new System.Drawing.Size(69, 27);
     this.btduongdan.TabIndex = 22;
     this.btduongdan.Text = "Browse";
     this.btduongdan.Click += new System.EventHandler(this.btduongdan_Click);
     //
     // labelX2
     //
     this.labelX2.BackColor = System.Drawing.Color.Transparent;
     this.labelX2.Font = new System.Drawing.Font("Microsoft Sans Serif", 18F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelX2.ForeColor = System.Drawing.Color.Blue;
     this.labelX2.Location = new System.Drawing.Point(188, 29);
     this.labelX2.Name = "labelX2";
     this.labelX2.Size = new System.Drawing.Size(240, 41);
     this.labelX2.TabIndex = 21;
     this.labelX2.Text = "Backup cơ sở dữ liệu";
     //
     // labelX1
     //
     this.labelX1.BackColor = System.Drawing.Color.Transparent;
     this.labelX1.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelX1.ForeColor = System.Drawing.Color.Blue;
     this.labelX1.Location = new System.Drawing.Point(153, 117);
     this.labelX1.Name = "labelX1";
     this.labelX1.Size = new System.Drawing.Size(90, 20);
     this.labelX1.TabIndex = 20;
     this.labelX1.Text = "Tên csdl";
     //
     // btthoat
     //
     this.btthoat.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btthoat.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.btthoat.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btthoat.Location = new System.Drawing.Point(348, 170);
     this.btthoat.Name = "btthoat";
     this.btthoat.Size = new System.Drawing.Size(66, 27);
     this.btthoat.TabIndex = 3;
     this.btthoat.Text = "Thoát";
     this.btthoat.Click += new System.EventHandler(this.btthoat_Click);
     //
     // txtduongdan
     //
     //
     //
     //
     this.txtduongdan.Border.Class = "TextBoxBorder";
     this.txtduongdan.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtduongdan.Location = new System.Drawing.Point(269, 115);
     this.txtduongdan.Name = "txtduongdan";
     this.txtduongdan.Size = new System.Drawing.Size(169, 27);
     this.txtduongdan.TabIndex = 0;
     //
     // btbackup
     //
     this.btbackup.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btbackup.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.btbackup.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btbackup.Location = new System.Drawing.Point(273, 170);
     this.btbackup.Name = "btbackup";
     this.btbackup.Size = new System.Drawing.Size(69, 27);
     this.btbackup.TabIndex = 2;
     this.btbackup.Text = "Backup";
     this.btbackup.Click += new System.EventHandler(this.btbackup_Click);
     //
     // frmbackup
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(572, 262);
     this.Controls.Add(this.panelEx1);
     this.Name = "frmbackup";
     this.Text = "frmbackup";
     this.Load += new System.EventHandler(this.frmbackup_Load);
     this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.frmbackup_FormClosing);
     this.panelEx1.ResumeLayout(false);
     this.ResumeLayout(false);
 }
コード例 #45
0
 /// <summary>
 /// �����֧������ķ��� - ��Ҫ
 /// ʹ�ô���༭���޸Ĵ˷��������ݡ�
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmScaffoldRecommendSelect));
     this.Btn_TjBzsgsj = new DevComponents.DotNetBar.ButtonX();
     this.Lb_TjDsyt = new DevComponents.DotNetBar.LabelX();
     this.Lb_TjDsgd = new DevComponents.DotNetBar.LabelX();
     this.DbInput_TjDsgd = new DevComponents.Editors.DoubleInput();
     this.comboItem2 = new DevComponents.Editors.ComboItem();
     this.comboItem1 = new DevComponents.Editors.ComboItem();
     this.Cbx_TjDsyt = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.groupPanel1 = new DevComponents.DotNetBar.Controls.GroupPanel();
     this.panelEx1 = new DevComponents.DotNetBar.PanelEx();
     this.groupPanel2 = new DevComponents.DotNetBar.Controls.GroupPanel();
     this.Lb7_Tj = new DevComponents.DotNetBar.LabelX();
     this.Lb6_Tj = new DevComponents.DotNetBar.LabelX();
     this.Lb5_Tj = new DevComponents.DotNetBar.LabelX();
     this.Lb4_Tj = new DevComponents.DotNetBar.LabelX();
     this.Lb3_Tj = new DevComponents.DotNetBar.LabelX();
     this.Lb2_Tj = new DevComponents.DotNetBar.LabelX();
     this.Lb1_Tj = new DevComponents.DotNetBar.LabelX();
     this.tabControlPanel1 = new DevComponents.DotNetBar.TabControlPanel();
     this.textBoxX1 = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.tabControlPanel4 = new DevComponents.DotNetBar.TabControlPanel();
     this.textBoxX4 = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.tabControlPanel3 = new DevComponents.DotNetBar.TabControlPanel();
     this.textBoxX3 = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.tabControlPanel2 = new DevComponents.DotNetBar.TabControlPanel();
     this.textBoxX2 = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.tabControlPanel5 = new DevComponents.DotNetBar.TabControlPanel();
     this.textBoxX5 = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.tabControlPanel6 = new DevComponents.DotNetBar.TabControlPanel();
     this.textBoxX6 = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.tabControlPanel7 = new DevComponents.DotNetBar.TabControlPanel();
     this.textBoxX7 = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.tabControlPanel8 = new DevComponents.DotNetBar.TabControlPanel();
     this.tabControl_Tj = new DevComponents.DotNetBar.TabControl();
     this.tcPanel_Tj5 = new DevComponents.DotNetBar.TabControlPanel();
     this.TJtabItem5 = new DevComponents.DotNetBar.TabItem(this.components);
     this.tcPanel_Tj1 = new DevComponents.DotNetBar.TabControlPanel();
     this.TJtabItem1 = new DevComponents.DotNetBar.TabItem(this.components);
     this.tcPanel_Tj2 = new DevComponents.DotNetBar.TabControlPanel();
     this.TJtabItem2 = new DevComponents.DotNetBar.TabItem(this.components);
     this.tcPanel_Tj7 = new DevComponents.DotNetBar.TabControlPanel();
     this.TJtabItem7 = new DevComponents.DotNetBar.TabItem(this.components);
     this.tcPanel_Tj6 = new DevComponents.DotNetBar.TabControlPanel();
     this.TJtabItem6 = new DevComponents.DotNetBar.TabItem(this.components);
     this.tcPanel_Tj4 = new DevComponents.DotNetBar.TabControlPanel();
     this.TJtabItem4 = new DevComponents.DotNetBar.TabItem(this.components);
     this.tcPanel_Tj3 = new DevComponents.DotNetBar.TabControlPanel();
     this.TJtabItem3 = new DevComponents.DotNetBar.TabItem(this.components);
     this.tabControlPanel16 = new DevComponents.DotNetBar.TabControlPanel();
     this.tabItem1 = new DevComponents.DotNetBar.TabItem(this.components);
     this.panelEx2 = new DevComponents.DotNetBar.PanelEx();
     ((System.ComponentModel.ISupportInitialize)(this.DbInput_TjDsgd)).BeginInit();
     this.groupPanel1.SuspendLayout();
     this.panelEx1.SuspendLayout();
     this.groupPanel2.SuspendLayout();
     this.tabControlPanel1.SuspendLayout();
     this.tabControlPanel4.SuspendLayout();
     this.tabControlPanel3.SuspendLayout();
     this.tabControlPanel2.SuspendLayout();
     this.tabControlPanel5.SuspendLayout();
     this.tabControlPanel6.SuspendLayout();
     this.tabControlPanel7.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.tabControl_Tj)).BeginInit();
     this.tabControl_Tj.SuspendLayout();
     this.panelEx2.SuspendLayout();
     this.SuspendLayout();
     //
     // Btn_TjBzsgsj
     //
     this.Btn_TjBzsgsj.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.Btn_TjBzsgsj.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.Btn_TjBzsgsj.Font = new System.Drawing.Font("����", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.Btn_TjBzsgsj.Location = new System.Drawing.Point(240, 2);
     this.Btn_TjBzsgsj.Name = "Btn_TjBzsgsj";
     this.Btn_TjBzsgsj.Size = new System.Drawing.Size(122, 36);
     this.Btn_TjBzsgsj.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.Btn_TjBzsgsj.TabIndex = 0;
     this.Btn_TjBzsgsj.Text = "����ר��ʩ������ ";
     this.Btn_TjBzsgsj.Click += new System.EventHandler(this.Btn_TjBzsgsj_Click);
     //
     // Lb_TjDsyt
     //
     this.Lb_TjDsyt.AutoSize = true;
     //
     //
     //
     this.Lb_TjDsyt.BackgroundStyle.Class = "";
     this.Lb_TjDsyt.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.Lb_TjDsyt.Location = new System.Drawing.Point(9, 27);
     this.Lb_TjDsyt.Name = "Lb_TjDsyt";
     this.Lb_TjDsyt.Size = new System.Drawing.Size(118, 18);
     this.Lb_TjDsyt.TabIndex = 48;
     this.Lb_TjDsyt.Text = "�������ּܵ���;";
     //
     // Lb_TjDsgd
     //
     this.Lb_TjDsgd.AutoSize = true;
     //
     //
     //
     this.Lb_TjDsgd.BackgroundStyle.Class = "";
     this.Lb_TjDsgd.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.Lb_TjDsgd.Location = new System.Drawing.Point(9, 76);
     this.Lb_TjDsgd.Name = "Lb_TjDsgd";
     this.Lb_TjDsgd.Size = new System.Drawing.Size(118, 18);
     this.Lb_TjDsgd.TabIndex = 47;
     this.Lb_TjDsgd.Text = "�������ּܵĸ߶�";
     //
     // DbInput_TjDsgd
     //
     //
     //
     //
     this.DbInput_TjDsgd.BackgroundStyle.Class = "DateTimeInputBackground";
     this.DbInput_TjDsgd.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.DbInput_TjDsgd.ButtonFreeText.Shortcut = DevComponents.DotNetBar.eShortcut.F2;
     this.DbInput_TjDsgd.Increment = 1;
     this.DbInput_TjDsgd.Location = new System.Drawing.Point(131, 76);
     this.DbInput_TjDsgd.MinValue = 0;
     this.DbInput_TjDsgd.Name = "DbInput_TjDsgd";
     this.DbInput_TjDsgd.ShowUpDown = true;
     this.DbInput_TjDsgd.Size = new System.Drawing.Size(89, 21);
     this.DbInput_TjDsgd.TabIndex = 49;
     this.DbInput_TjDsgd.ValueChanged += new System.EventHandler(this.DbInput_TjDsgd_ValueChanged);
     //
     // comboItem2
     //
     this.comboItem2.Text = "װ��װ��";
     //
     // comboItem1
     //
     this.comboItem1.Text = "�ṹʩ��";
     //
     // Cbx_TjDsyt
     //
     this.Cbx_TjDsyt.DisplayMember = "Text";
     this.Cbx_TjDsyt.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.Cbx_TjDsyt.FormattingEnabled = true;
     this.Cbx_TjDsyt.ItemHeight = 15;
     this.Cbx_TjDsyt.Items.AddRange(new object[] {
     this.comboItem1,
     this.comboItem2});
     this.Cbx_TjDsyt.Location = new System.Drawing.Point(130, 24);
     this.Cbx_TjDsyt.Name = "Cbx_TjDsyt";
     this.Cbx_TjDsyt.Size = new System.Drawing.Size(89, 21);
     this.Cbx_TjDsyt.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.Cbx_TjDsyt.TabIndex = 50;
     this.Cbx_TjDsyt.SelectedIndexChanged += new System.EventHandler(this.Cbx_TjDsyt_SelectedIndexChanged);
     //
     // groupPanel1
     //
     this.groupPanel1.CanvasColor = System.Drawing.SystemColors.Control;
     this.groupPanel1.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Windows7;
     this.groupPanel1.Controls.Add(this.Lb_TjDsgd);
     this.groupPanel1.Controls.Add(this.Lb_TjDsyt);
     this.groupPanel1.Controls.Add(this.Cbx_TjDsyt);
     this.groupPanel1.Controls.Add(this.DbInput_TjDsgd);
     this.groupPanel1.Dock = System.Windows.Forms.DockStyle.Top;
     this.groupPanel1.Location = new System.Drawing.Point(0, 0);
     this.groupPanel1.Name = "groupPanel1";
     this.groupPanel1.Size = new System.Drawing.Size(252, 150);
     //
     //
     //
     this.groupPanel1.Style.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.groupPanel1.Style.BackColorGradientAngle = 90;
     this.groupPanel1.Style.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.groupPanel1.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel1.Style.BorderBottomWidth = 1;
     this.groupPanel1.Style.BorderColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.groupPanel1.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel1.Style.BorderLeftWidth = 1;
     this.groupPanel1.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel1.Style.BorderRightWidth = 1;
     this.groupPanel1.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel1.Style.BorderTopWidth = 1;
     this.groupPanel1.Style.Class = "";
     this.groupPanel1.Style.CornerDiameter = 4;
     this.groupPanel1.Style.CornerType = DevComponents.DotNetBar.eCornerType.Rounded;
     this.groupPanel1.Style.TextAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Center;
     this.groupPanel1.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.groupPanel1.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near;
     //
     //
     //
     this.groupPanel1.StyleMouseDown.Class = "";
     this.groupPanel1.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.groupPanel1.StyleMouseOver.Class = "";
     this.groupPanel1.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.groupPanel1.TabIndex = 0;
     //
     // panelEx1
     //
     this.panelEx1.CanvasColor = System.Drawing.SystemColors.Control;
     this.panelEx1.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.panelEx1.Controls.Add(this.groupPanel2);
     this.panelEx1.Controls.Add(this.groupPanel1);
     this.panelEx1.Dock = System.Windows.Forms.DockStyle.Left;
     this.panelEx1.Location = new System.Drawing.Point(0, 0);
     this.panelEx1.Name = "panelEx1";
     this.panelEx1.Size = new System.Drawing.Size(252, 558);
     this.panelEx1.Style.Alignment = System.Drawing.StringAlignment.Center;
     this.panelEx1.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.panelEx1.Style.BackColor2.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.panelEx1.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.panelEx1.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.panelEx1.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.panelEx1.Style.GradientAngle = 90;
     this.panelEx1.TabIndex = 47;
     //
     // groupPanel2
     //
     this.groupPanel2.CanvasColor = System.Drawing.SystemColors.Control;
     this.groupPanel2.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Windows7;
     this.groupPanel2.Controls.Add(this.Lb7_Tj);
     this.groupPanel2.Controls.Add(this.Lb6_Tj);
     this.groupPanel2.Controls.Add(this.Lb5_Tj);
     this.groupPanel2.Controls.Add(this.Lb4_Tj);
     this.groupPanel2.Controls.Add(this.Lb3_Tj);
     this.groupPanel2.Controls.Add(this.Lb2_Tj);
     this.groupPanel2.Controls.Add(this.Lb1_Tj);
     this.groupPanel2.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.groupPanel2.Location = new System.Drawing.Point(0, 151);
     this.groupPanel2.Name = "groupPanel2";
     this.groupPanel2.Size = new System.Drawing.Size(252, 407);
     //
     //
     //
     this.groupPanel2.Style.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.groupPanel2.Style.BackColorGradientAngle = 90;
     this.groupPanel2.Style.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.groupPanel2.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel2.Style.BorderBottomWidth = 1;
     this.groupPanel2.Style.BorderColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.groupPanel2.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel2.Style.BorderLeftWidth = 1;
     this.groupPanel2.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel2.Style.BorderRightWidth = 1;
     this.groupPanel2.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel2.Style.BorderTopWidth = 1;
     this.groupPanel2.Style.Class = "";
     this.groupPanel2.Style.CornerDiameter = 4;
     this.groupPanel2.Style.CornerType = DevComponents.DotNetBar.eCornerType.Rounded;
     this.groupPanel2.Style.TextAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Center;
     this.groupPanel2.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.groupPanel2.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near;
     //
     //
     //
     this.groupPanel2.StyleMouseDown.Class = "";
     this.groupPanel2.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.groupPanel2.StyleMouseOver.Class = "";
     this.groupPanel2.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.groupPanel2.TabIndex = 3;
     //
     // Lb7_Tj
     //
     this.Lb7_Tj.AutoSize = true;
     //
     //
     //
     this.Lb7_Tj.BackgroundStyle.Class = "";
     this.Lb7_Tj.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.Lb7_Tj.Enabled = false;
     this.Lb7_Tj.Font = new System.Drawing.Font("����", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.Lb7_Tj.Location = new System.Drawing.Point(12, 303);
     this.Lb7_Tj.Name = "Lb7_Tj";
     this.Lb7_Tj.Size = new System.Drawing.Size(86, 20);
     this.Lb7_Tj.TabIndex = 48;
     this.Lb7_Tj.Text = "�� �����ּ�";
     //
     // Lb6_Tj
     //
     this.Lb6_Tj.AutoSize = true;
     //
     //
     //
     this.Lb6_Tj.BackgroundStyle.Class = "";
     this.Lb6_Tj.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.Lb6_Tj.Enabled = false;
     this.Lb6_Tj.Font = new System.Drawing.Font("����", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.Lb6_Tj.Location = new System.Drawing.Point(12, 265);
     this.Lb6_Tj.Name = "Lb6_Tj";
     this.Lb6_Tj.Size = new System.Drawing.Size(159, 20);
     this.Lb6_Tj.TabIndex = 48;
     this.Lb6_Tj.Text = "�� Һѹ����������ּ�";
     //
     // Lb5_Tj
     //
     this.Lb5_Tj.AutoSize = true;
     //
     //
     //
     this.Lb5_Tj.BackgroundStyle.Class = "";
     this.Lb5_Tj.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.Lb5_Tj.Enabled = false;
     this.Lb5_Tj.Font = new System.Drawing.Font("����", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.Lb5_Tj.Location = new System.Drawing.Point(12, 218);
     this.Lb5_Tj.Name = "Lb5_Tj";
     this.Lb5_Tj.Size = new System.Drawing.Size(130, 20);
     this.Lb5_Tj.TabIndex = 48;
     this.Lb5_Tj.Text = "�� ��ʽ�ֹܽ��ּ�";
     //
     // Lb4_Tj
     //
     this.Lb4_Tj.AutoSize = true;
     //
     //
     //
     this.Lb4_Tj.BackgroundStyle.Class = "";
     this.Lb4_Tj.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.Lb4_Tj.Enabled = false;
     this.Lb4_Tj.Font = new System.Drawing.Font("����", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.Lb4_Tj.Location = new System.Drawing.Point(12, 171);
     this.Lb4_Tj.Name = "Lb4_Tj";
     this.Lb4_Tj.Size = new System.Drawing.Size(187, 20);
     this.Lb4_Tj.TabIndex = 48;
     this.Lb4_Tj.Text = "�� �в����̿�ʽ�ֹܽ��ּ�";
     //
     // Lb3_Tj
     //
     this.Lb3_Tj.AutoSize = true;
     //
     //
     //
     this.Lb3_Tj.BackgroundStyle.Class = "";
     this.Lb3_Tj.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.Lb3_Tj.Enabled = false;
     this.Lb3_Tj.Font = new System.Drawing.Font("����", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.Lb3_Tj.Location = new System.Drawing.Point(12, 130);
     this.Lb3_Tj.Name = "Lb3_Tj";
     this.Lb3_Tj.Size = new System.Drawing.Size(115, 20);
     this.Lb3_Tj.TabIndex = 48;
     this.Lb3_Tj.Text = "�� ���ʽ���ּ�";
     //
     // Lb2_Tj
     //
     this.Lb2_Tj.AutoSize = true;
     //
     //
     //
     this.Lb2_Tj.BackgroundStyle.Class = "";
     this.Lb2_Tj.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.Lb2_Tj.Enabled = false;
     this.Lb2_Tj.Font = new System.Drawing.Font("����", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.Lb2_Tj.Location = new System.Drawing.Point(12, 86);
     this.Lb2_Tj.Name = "Lb2_Tj";
     this.Lb2_Tj.Size = new System.Drawing.Size(238, 20);
     this.Lb2_Tj.TabIndex = 48;
     this.Lb2_Tj.Text = "�� �ۼ�ʽ�ֹܽ��ּܣ����+�����";
     //
     // Lb1_Tj
     //
     this.Lb1_Tj.AutoSize = true;
     //
     //
     //
     this.Lb1_Tj.BackgroundStyle.Class = "";
     this.Lb1_Tj.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.Lb1_Tj.Enabled = false;
     this.Lb1_Tj.Font = new System.Drawing.Font("����", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.Lb1_Tj.Location = new System.Drawing.Point(12, 47);
     this.Lb1_Tj.Name = "Lb1_Tj";
     this.Lb1_Tj.Size = new System.Drawing.Size(202, 20);
     this.Lb1_Tj.TabIndex = 48;
     this.Lb1_Tj.Text = "�� �ۼ�ʽ�ֹܽ��ּܣ���أ�";
     //
     // tabControlPanel1
     //
     this.tabControlPanel1.Controls.Add(this.textBoxX1);
     this.tabControlPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabControlPanel1.Font = new System.Drawing.Font("����", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.tabControlPanel1.Location = new System.Drawing.Point(0, 47);
     this.tabControlPanel1.Name = "tabControlPanel1";
     this.tabControlPanel1.Padding = new System.Windows.Forms.Padding(1);
     this.tabControlPanel1.Size = new System.Drawing.Size(580, 470);
     this.tabControlPanel1.Style.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     this.tabControlPanel1.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.tabControlPanel1.Style.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(141)))), ((int)(((byte)(147)))), ((int)(((byte)(160)))));
     this.tabControlPanel1.Style.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Right)
                 | DevComponents.DotNetBar.eBorderSide.Bottom)));
     this.tabControlPanel1.Style.GradientAngle = 90;
     this.tabControlPanel1.TabIndex = 1;
     //
     // textBoxX1
     //
     //
     //
     //
     this.textBoxX1.Border.Class = "TextBoxBorder";
     this.textBoxX1.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.textBoxX1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.textBoxX1.Font = new System.Drawing.Font("����", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.textBoxX1.Location = new System.Drawing.Point(1, 1);
     this.textBoxX1.Multiline = true;
     this.textBoxX1.Name = "textBoxX1";
     this.textBoxX1.ReadOnly = true;
     this.textBoxX1.Size = new System.Drawing.Size(578, 468);
     this.textBoxX1.TabIndex = 1;
     this.textBoxX1.Text = resources.GetString("textBoxX1.Text");
     //
     // tabControlPanel4
     //
     this.tabControlPanel4.Controls.Add(this.textBoxX4);
     this.tabControlPanel4.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabControlPanel4.Location = new System.Drawing.Point(0, 47);
     this.tabControlPanel4.Name = "tabControlPanel4";
     this.tabControlPanel4.Padding = new System.Windows.Forms.Padding(1);
     this.tabControlPanel4.Size = new System.Drawing.Size(580, 470);
     this.tabControlPanel4.Style.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     this.tabControlPanel4.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.tabControlPanel4.Style.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(141)))), ((int)(((byte)(147)))), ((int)(((byte)(160)))));
     this.tabControlPanel4.Style.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Right)
                 | DevComponents.DotNetBar.eBorderSide.Bottom)));
     this.tabControlPanel4.Style.GradientAngle = 90;
     this.tabControlPanel4.TabIndex = 4;
     //
     // textBoxX4
     //
     //
     //
     //
     this.textBoxX4.Border.Class = "TextBoxBorder";
     this.textBoxX4.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.textBoxX4.Dock = System.Windows.Forms.DockStyle.Fill;
     this.textBoxX4.Font = new System.Drawing.Font("����", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.textBoxX4.Location = new System.Drawing.Point(1, 1);
     this.textBoxX4.Multiline = true;
     this.textBoxX4.Name = "textBoxX4";
     this.textBoxX4.ReadOnly = true;
     this.textBoxX4.Size = new System.Drawing.Size(578, 468);
     this.textBoxX4.TabIndex = 2;
     this.textBoxX4.Text = resources.GetString("textBoxX4.Text");
     //
     // tabControlPanel3
     //
     this.tabControlPanel3.Controls.Add(this.textBoxX3);
     this.tabControlPanel3.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabControlPanel3.Location = new System.Drawing.Point(0, 47);
     this.tabControlPanel3.Name = "tabControlPanel3";
     this.tabControlPanel3.Padding = new System.Windows.Forms.Padding(1);
     this.tabControlPanel3.Size = new System.Drawing.Size(580, 470);
     this.tabControlPanel3.Style.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     this.tabControlPanel3.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.tabControlPanel3.Style.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(141)))), ((int)(((byte)(147)))), ((int)(((byte)(160)))));
     this.tabControlPanel3.Style.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Right)
                 | DevComponents.DotNetBar.eBorderSide.Bottom)));
     this.tabControlPanel3.Style.GradientAngle = 90;
     this.tabControlPanel3.TabIndex = 3;
     //
     // textBoxX3
     //
     //
     //
     //
     this.textBoxX3.Border.Class = "TextBoxBorder";
     this.textBoxX3.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.textBoxX3.Dock = System.Windows.Forms.DockStyle.Fill;
     this.textBoxX3.Font = new System.Drawing.Font("����", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.textBoxX3.Location = new System.Drawing.Point(1, 1);
     this.textBoxX3.Multiline = true;
     this.textBoxX3.Name = "textBoxX3";
     this.textBoxX3.ReadOnly = true;
     this.textBoxX3.Size = new System.Drawing.Size(578, 468);
     this.textBoxX3.TabIndex = 2;
     this.textBoxX3.Text = resources.GetString("textBoxX3.Text");
     //
     // tabControlPanel2
     //
     this.tabControlPanel2.Controls.Add(this.textBoxX2);
     this.tabControlPanel2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabControlPanel2.Location = new System.Drawing.Point(0, 47);
     this.tabControlPanel2.Name = "tabControlPanel2";
     this.tabControlPanel2.Padding = new System.Windows.Forms.Padding(1);
     this.tabControlPanel2.Size = new System.Drawing.Size(580, 470);
     this.tabControlPanel2.Style.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     this.tabControlPanel2.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.tabControlPanel2.Style.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(141)))), ((int)(((byte)(147)))), ((int)(((byte)(160)))));
     this.tabControlPanel2.Style.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Right)
                 | DevComponents.DotNetBar.eBorderSide.Bottom)));
     this.tabControlPanel2.Style.GradientAngle = 90;
     this.tabControlPanel2.TabIndex = 2;
     //
     // textBoxX2
     //
     //
     //
     //
     this.textBoxX2.Border.Class = "TextBoxBorder";
     this.textBoxX2.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.textBoxX2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.textBoxX2.Font = new System.Drawing.Font("����", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.textBoxX2.Location = new System.Drawing.Point(1, 1);
     this.textBoxX2.Multiline = true;
     this.textBoxX2.Name = "textBoxX2";
     this.textBoxX2.ReadOnly = true;
     this.textBoxX2.Size = new System.Drawing.Size(578, 468);
     this.textBoxX2.TabIndex = 2;
     this.textBoxX2.Text = resources.GetString("textBoxX2.Text");
     //
     // tabControlPanel5
     //
     this.tabControlPanel5.Controls.Add(this.textBoxX5);
     this.tabControlPanel5.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabControlPanel5.Location = new System.Drawing.Point(0, 47);
     this.tabControlPanel5.Name = "tabControlPanel5";
     this.tabControlPanel5.Padding = new System.Windows.Forms.Padding(1);
     this.tabControlPanel5.Size = new System.Drawing.Size(580, 470);
     this.tabControlPanel5.Style.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     this.tabControlPanel5.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.tabControlPanel5.Style.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(141)))), ((int)(((byte)(147)))), ((int)(((byte)(160)))));
     this.tabControlPanel5.Style.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Right)
                 | DevComponents.DotNetBar.eBorderSide.Bottom)));
     this.tabControlPanel5.Style.GradientAngle = 90;
     this.tabControlPanel5.TabIndex = 5;
     //
     // textBoxX5
     //
     //
     //
     //
     this.textBoxX5.Border.Class = "TextBoxBorder";
     this.textBoxX5.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.textBoxX5.Dock = System.Windows.Forms.DockStyle.Fill;
     this.textBoxX5.Font = new System.Drawing.Font("����", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.textBoxX5.Location = new System.Drawing.Point(1, 1);
     this.textBoxX5.Multiline = true;
     this.textBoxX5.Name = "textBoxX5";
     this.textBoxX5.ReadOnly = true;
     this.textBoxX5.Size = new System.Drawing.Size(578, 468);
     this.textBoxX5.TabIndex = 2;
     this.textBoxX5.Text = resources.GetString("textBoxX5.Text");
     //
     // tabControlPanel6
     //
     this.tabControlPanel6.Controls.Add(this.textBoxX6);
     this.tabControlPanel6.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabControlPanel6.Location = new System.Drawing.Point(0, 47);
     this.tabControlPanel6.Name = "tabControlPanel6";
     this.tabControlPanel6.Padding = new System.Windows.Forms.Padding(1);
     this.tabControlPanel6.Size = new System.Drawing.Size(580, 470);
     this.tabControlPanel6.Style.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     this.tabControlPanel6.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.tabControlPanel6.Style.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(141)))), ((int)(((byte)(147)))), ((int)(((byte)(160)))));
     this.tabControlPanel6.Style.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Right)
                 | DevComponents.DotNetBar.eBorderSide.Bottom)));
     this.tabControlPanel6.Style.GradientAngle = 90;
     this.tabControlPanel6.TabIndex = 6;
     //
     // textBoxX6
     //
     //
     //
     //
     this.textBoxX6.Border.Class = "TextBoxBorder";
     this.textBoxX6.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.textBoxX6.Dock = System.Windows.Forms.DockStyle.Fill;
     this.textBoxX6.Font = new System.Drawing.Font("����", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.textBoxX6.Location = new System.Drawing.Point(1, 1);
     this.textBoxX6.Multiline = true;
     this.textBoxX6.Name = "textBoxX6";
     this.textBoxX6.ReadOnly = true;
     this.textBoxX6.Size = new System.Drawing.Size(578, 468);
     this.textBoxX6.TabIndex = 2;
     this.textBoxX6.Text = resources.GetString("textBoxX6.Text");
     //
     // tabControlPanel7
     //
     this.tabControlPanel7.Controls.Add(this.textBoxX7);
     this.tabControlPanel7.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabControlPanel7.Location = new System.Drawing.Point(0, 47);
     this.tabControlPanel7.Name = "tabControlPanel7";
     this.tabControlPanel7.Padding = new System.Windows.Forms.Padding(1);
     this.tabControlPanel7.Size = new System.Drawing.Size(580, 470);
     this.tabControlPanel7.Style.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     this.tabControlPanel7.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.tabControlPanel7.Style.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(141)))), ((int)(((byte)(147)))), ((int)(((byte)(160)))));
     this.tabControlPanel7.Style.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Right)
                 | DevComponents.DotNetBar.eBorderSide.Bottom)));
     this.tabControlPanel7.Style.GradientAngle = 90;
     this.tabControlPanel7.TabIndex = 7;
     this.tabControlPanel7.Visible = false;
     //
     // textBoxX7
     //
     //
     //
     //
     this.textBoxX7.Border.Class = "TextBoxBorder";
     this.textBoxX7.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.textBoxX7.Dock = System.Windows.Forms.DockStyle.Fill;
     this.textBoxX7.Font = new System.Drawing.Font("����", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.textBoxX7.ForeColor = System.Drawing.SystemColors.WindowText;
     this.textBoxX7.Location = new System.Drawing.Point(1, 1);
     this.textBoxX7.Multiline = true;
     this.textBoxX7.Name = "textBoxX7";
     this.textBoxX7.ReadOnly = true;
     this.textBoxX7.Size = new System.Drawing.Size(578, 468);
     this.textBoxX7.TabIndex = 2;
     this.textBoxX7.Text = "\r\n�ŵ㣺\r\n������ס�\r\n\r\nȱ�㣺\r\n��ȫ�Խϲ\r\n\r\n�����ԣ�\r\n��Ҫ���ڽ���������װ��װ�޹��̡�\r\n";
     //
     // tabControlPanel8
     //
     this.tabControlPanel8.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabControlPanel8.Location = new System.Drawing.Point(0, 47);
     this.tabControlPanel8.Name = "tabControlPanel8";
     this.tabControlPanel8.Padding = new System.Windows.Forms.Padding(1);
     this.tabControlPanel8.Size = new System.Drawing.Size(580, 470);
     this.tabControlPanel8.Style.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     this.tabControlPanel8.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.tabControlPanel8.Style.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(141)))), ((int)(((byte)(147)))), ((int)(((byte)(160)))));
     this.tabControlPanel8.Style.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Right)
                 | DevComponents.DotNetBar.eBorderSide.Bottom)));
     this.tabControlPanel8.Style.GradientAngle = 90;
     this.tabControlPanel8.TabIndex = 8;
     //
     // tabControl_Tj
     //
     this.tabControl_Tj.BackColor = System.Drawing.Color.Transparent;
     this.tabControl_Tj.CanReorderTabs = true;
     this.tabControl_Tj.Controls.Add(this.tcPanel_Tj1);
     this.tabControl_Tj.Controls.Add(this.tcPanel_Tj5);
     this.tabControl_Tj.Controls.Add(this.tcPanel_Tj2);
     this.tabControl_Tj.Controls.Add(this.tcPanel_Tj7);
     this.tabControl_Tj.Controls.Add(this.tcPanel_Tj6);
     this.tabControl_Tj.Controls.Add(this.tcPanel_Tj4);
     this.tabControl_Tj.Controls.Add(this.tcPanel_Tj3);
     this.tabControl_Tj.Controls.Add(this.tabControlPanel16);
     this.tabControl_Tj.Dock = System.Windows.Forms.DockStyle.Top;
     this.tabControl_Tj.Location = new System.Drawing.Point(252, 0);
     this.tabControl_Tj.Name = "tabControl_Tj";
     this.tabControl_Tj.SelectedTabFont = new System.Drawing.Font("����", 9F, System.Drawing.FontStyle.Bold);
     this.tabControl_Tj.SelectedTabIndex = 6;
     this.tabControl_Tj.Size = new System.Drawing.Size(580, 514);
     this.tabControl_Tj.Style = DevComponents.DotNetBar.eTabStripStyle.Office2007Document;
     this.tabControl_Tj.TabIndex = 51;
     this.tabControl_Tj.TabLayoutType = DevComponents.DotNetBar.eTabLayoutType.MultilineNoNavigationBox;
     this.tabControl_Tj.Tabs.Add(this.TJtabItem1);
     this.tabControl_Tj.Tabs.Add(this.TJtabItem2);
     this.tabControl_Tj.Tabs.Add(this.TJtabItem3);
     this.tabControl_Tj.Tabs.Add(this.TJtabItem4);
     this.tabControl_Tj.Tabs.Add(this.TJtabItem5);
     this.tabControl_Tj.Tabs.Add(this.TJtabItem6);
     this.tabControl_Tj.Tabs.Add(this.TJtabItem7);
     this.tabControl_Tj.Tabs.Add(this.tabItem1);
     this.tabControl_Tj.Text = "tabControl1";
     //
     // tcPanel_Tj5
     //
     this.tcPanel_Tj5.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tcPanel_Tj5.Location = new System.Drawing.Point(0, 47);
     this.tcPanel_Tj5.Name = "tcPanel_Tj5";
     this.tcPanel_Tj5.Padding = new System.Windows.Forms.Padding(1);
     this.tcPanel_Tj5.Size = new System.Drawing.Size(580, 467);
     this.tcPanel_Tj5.Style.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     this.tcPanel_Tj5.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.tcPanel_Tj5.Style.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(141)))), ((int)(((byte)(147)))), ((int)(((byte)(160)))));
     this.tcPanel_Tj5.Style.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Right)
                 | DevComponents.DotNetBar.eBorderSide.Bottom)));
     this.tcPanel_Tj5.Style.GradientAngle = 90;
     this.tcPanel_Tj5.TabIndex = 5;
     this.tcPanel_Tj5.TabItem = this.TJtabItem5;
     //
     // TJtabItem5
     //
     this.TJtabItem5.AttachedControl = this.tcPanel_Tj5;
     this.TJtabItem5.Name = "TJtabItem5";
     this.TJtabItem5.Text = "��ʽ�ֹܽ��ּ�";
     this.TJtabItem5.Visible = false;
     //
     // tcPanel_Tj1
     //
     this.tcPanel_Tj1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tcPanel_Tj1.Font = new System.Drawing.Font("����", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.tcPanel_Tj1.Location = new System.Drawing.Point(0, 47);
     this.tcPanel_Tj1.Name = "tcPanel_Tj1";
     this.tcPanel_Tj1.Padding = new System.Windows.Forms.Padding(1);
     this.tcPanel_Tj1.Size = new System.Drawing.Size(580, 467);
     this.tcPanel_Tj1.Style.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     this.tcPanel_Tj1.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.tcPanel_Tj1.Style.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(141)))), ((int)(((byte)(147)))), ((int)(((byte)(160)))));
     this.tcPanel_Tj1.Style.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Right)
                 | DevComponents.DotNetBar.eBorderSide.Bottom)));
     this.tcPanel_Tj1.Style.GradientAngle = 90;
     this.tcPanel_Tj1.TabIndex = 1;
     this.tcPanel_Tj1.TabItem = this.TJtabItem1;
     //
     // TJtabItem1
     //
     this.TJtabItem1.AttachedControl = this.tcPanel_Tj1;
     this.TJtabItem1.Name = "TJtabItem1";
     this.TJtabItem1.Text = "�ۼ�ʽ�ֹܽ��ּܣ���أ�";
     this.TJtabItem1.Visible = false;
     //
     // tcPanel_Tj2
     //
     this.tcPanel_Tj2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tcPanel_Tj2.Location = new System.Drawing.Point(0, 47);
     this.tcPanel_Tj2.Name = "tcPanel_Tj2";
     this.tcPanel_Tj2.Padding = new System.Windows.Forms.Padding(1);
     this.tcPanel_Tj2.Size = new System.Drawing.Size(580, 467);
     this.tcPanel_Tj2.Style.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     this.tcPanel_Tj2.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.tcPanel_Tj2.Style.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(141)))), ((int)(((byte)(147)))), ((int)(((byte)(160)))));
     this.tcPanel_Tj2.Style.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Right)
                 | DevComponents.DotNetBar.eBorderSide.Bottom)));
     this.tcPanel_Tj2.Style.GradientAngle = 90;
     this.tcPanel_Tj2.TabIndex = 2;
     this.tcPanel_Tj2.TabItem = this.TJtabItem2;
     //
     // TJtabItem2
     //
     this.TJtabItem2.AttachedControl = this.tcPanel_Tj2;
     this.TJtabItem2.Name = "TJtabItem2";
     this.TJtabItem2.Text = "�ۼ�ʽ�ֹܽ��ּܣ����+�����";
     this.TJtabItem2.Visible = false;
     //
     // tcPanel_Tj7
     //
     this.tcPanel_Tj7.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tcPanel_Tj7.Location = new System.Drawing.Point(0, 47);
     this.tcPanel_Tj7.Name = "tcPanel_Tj7";
     this.tcPanel_Tj7.Padding = new System.Windows.Forms.Padding(1);
     this.tcPanel_Tj7.Size = new System.Drawing.Size(580, 467);
     this.tcPanel_Tj7.Style.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     this.tcPanel_Tj7.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.tcPanel_Tj7.Style.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(141)))), ((int)(((byte)(147)))), ((int)(((byte)(160)))));
     this.tcPanel_Tj7.Style.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Right)
                 | DevComponents.DotNetBar.eBorderSide.Bottom)));
     this.tcPanel_Tj7.Style.GradientAngle = 90;
     this.tcPanel_Tj7.TabIndex = 7;
     this.tcPanel_Tj7.TabItem = this.TJtabItem7;
     this.tcPanel_Tj7.Visible = false;
     //
     // TJtabItem7
     //
     this.TJtabItem7.AttachedControl = this.tcPanel_Tj7;
     this.TJtabItem7.Name = "TJtabItem7";
     this.TJtabItem7.Text = "�����ּ�";
     this.TJtabItem7.Visible = false;
     //
     // tcPanel_Tj6
     //
     this.tcPanel_Tj6.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tcPanel_Tj6.Location = new System.Drawing.Point(0, 47);
     this.tcPanel_Tj6.Name = "tcPanel_Tj6";
     this.tcPanel_Tj6.Padding = new System.Windows.Forms.Padding(1);
     this.tcPanel_Tj6.Size = new System.Drawing.Size(580, 467);
     this.tcPanel_Tj6.Style.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     this.tcPanel_Tj6.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.tcPanel_Tj6.Style.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(141)))), ((int)(((byte)(147)))), ((int)(((byte)(160)))));
     this.tcPanel_Tj6.Style.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Right)
                 | DevComponents.DotNetBar.eBorderSide.Bottom)));
     this.tcPanel_Tj6.Style.GradientAngle = 90;
     this.tcPanel_Tj6.TabIndex = 6;
     this.tcPanel_Tj6.TabItem = this.TJtabItem6;
     //
     // TJtabItem6
     //
     this.TJtabItem6.AttachedControl = this.tcPanel_Tj6;
     this.TJtabItem6.Name = "TJtabItem6";
     this.TJtabItem6.Text = "Һѹ����������ּ�";
     this.TJtabItem6.Visible = false;
     //
     // tcPanel_Tj4
     //
     this.tcPanel_Tj4.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tcPanel_Tj4.Location = new System.Drawing.Point(0, 47);
     this.tcPanel_Tj4.Name = "tcPanel_Tj4";
     this.tcPanel_Tj4.Padding = new System.Windows.Forms.Padding(1);
     this.tcPanel_Tj4.Size = new System.Drawing.Size(580, 467);
     this.tcPanel_Tj4.Style.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     this.tcPanel_Tj4.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.tcPanel_Tj4.Style.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(141)))), ((int)(((byte)(147)))), ((int)(((byte)(160)))));
     this.tcPanel_Tj4.Style.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Right)
                 | DevComponents.DotNetBar.eBorderSide.Bottom)));
     this.tcPanel_Tj4.Style.GradientAngle = 90;
     this.tcPanel_Tj4.TabIndex = 4;
     this.tcPanel_Tj4.TabItem = this.TJtabItem4;
     //
     // TJtabItem4
     //
     this.TJtabItem4.AttachedControl = this.tcPanel_Tj4;
     this.TJtabItem4.Name = "TJtabItem4";
     this.TJtabItem4.Text = "�в����̿�ʽ�ֹܽ��ּ�";
     this.TJtabItem4.Visible = false;
     //
     // tcPanel_Tj3
     //
     this.tcPanel_Tj3.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tcPanel_Tj3.Location = new System.Drawing.Point(0, 47);
     this.tcPanel_Tj3.Name = "tcPanel_Tj3";
     this.tcPanel_Tj3.Padding = new System.Windows.Forms.Padding(1);
     this.tcPanel_Tj3.Size = new System.Drawing.Size(580, 467);
     this.tcPanel_Tj3.Style.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     this.tcPanel_Tj3.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.tcPanel_Tj3.Style.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(141)))), ((int)(((byte)(147)))), ((int)(((byte)(160)))));
     this.tcPanel_Tj3.Style.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Right)
                 | DevComponents.DotNetBar.eBorderSide.Bottom)));
     this.tcPanel_Tj3.Style.GradientAngle = 90;
     this.tcPanel_Tj3.TabIndex = 3;
     this.tcPanel_Tj3.TabItem = this.TJtabItem3;
     //
     // TJtabItem3
     //
     this.TJtabItem3.AttachedControl = this.tcPanel_Tj3;
     this.TJtabItem3.Name = "TJtabItem3";
     this.TJtabItem3.Text = "���ʽ���ּ�";
     this.TJtabItem3.Visible = false;
     //
     // tabControlPanel16
     //
     this.tabControlPanel16.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabControlPanel16.Location = new System.Drawing.Point(0, 47);
     this.tabControlPanel16.Name = "tabControlPanel16";
     this.tabControlPanel16.Padding = new System.Windows.Forms.Padding(1);
     this.tabControlPanel16.Size = new System.Drawing.Size(580, 467);
     this.tabControlPanel16.Style.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     this.tabControlPanel16.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.tabControlPanel16.Style.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(141)))), ((int)(((byte)(147)))), ((int)(((byte)(160)))));
     this.tabControlPanel16.Style.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Right)
                 | DevComponents.DotNetBar.eBorderSide.Bottom)));
     this.tabControlPanel16.Style.GradientAngle = 90;
     this.tabControlPanel16.TabIndex = 8;
     this.tabControlPanel16.TabItem = this.tabItem1;
     //
     // tabItem1
     //
     this.tabItem1.AttachedControl = this.tabControlPanel16;
     this.tabItem1.Name = "tabItem1";
     this.tabItem1.Text = "";
     //
     // panelEx2
     //
     this.panelEx2.CanvasColor = System.Drawing.SystemColors.Control;
     this.panelEx2.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.panelEx2.Controls.Add(this.Btn_TjBzsgsj);
     this.panelEx2.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.panelEx2.Location = new System.Drawing.Point(252, 520);
     this.panelEx2.Name = "panelEx2";
     this.panelEx2.Size = new System.Drawing.Size(580, 38);
     this.panelEx2.Style.Alignment = System.Drawing.StringAlignment.Center;
     this.panelEx2.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.panelEx2.Style.BackColor2.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.panelEx2.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.panelEx2.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.panelEx2.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.panelEx2.Style.GradientAngle = 90;
     this.panelEx2.TabIndex = 52;
     //
     // FrmScaffoldRecommendSelect
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.ClientSize = new System.Drawing.Size(832, 558);
     this.Controls.Add(this.panelEx2);
     this.Controls.Add(this.tabControl_Tj);
     this.Controls.Add(this.panelEx1);
     this.DoubleBuffered = true;
     this.Name = "FrmScaffoldRecommendSelect";
     this.Text = "���ּ�ѡ��-�Ƽ�ѡ��";
     ((System.ComponentModel.ISupportInitialize)(this.DbInput_TjDsgd)).EndInit();
     this.groupPanel1.ResumeLayout(false);
     this.groupPanel1.PerformLayout();
     this.panelEx1.ResumeLayout(false);
     this.groupPanel2.ResumeLayout(false);
     this.groupPanel2.PerformLayout();
     this.tabControlPanel1.ResumeLayout(false);
     this.tabControlPanel4.ResumeLayout(false);
     this.tabControlPanel3.ResumeLayout(false);
     this.tabControlPanel2.ResumeLayout(false);
     this.tabControlPanel5.ResumeLayout(false);
     this.tabControlPanel6.ResumeLayout(false);
     this.tabControlPanel7.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.tabControl_Tj)).EndInit();
     this.tabControl_Tj.ResumeLayout(false);
     this.panelEx2.ResumeLayout(false);
     this.ResumeLayout(false);
 }
コード例 #46
0
ファイル: FormMain.designer.cs プロジェクト: marlonnn/VPI
 /// <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(FormMain));
     this.styleManager1 = new DevComponents.DotNetBar.StyleManager(this.components);
     this.buttonItem1 = new DevComponents.DotNetBar.ButtonItem();
     this.ribbonControl = new DevComponents.DotNetBar.RibbonControl();
     this.selfRibbonPanel = new DevComponents.DotNetBar.RibbonPanel();
     this.ribbonBar9 = new DevComponents.DotNetBar.RibbonBar();
     this.itemContainer10 = new DevComponents.DotNetBar.ItemContainer();
     this.btnSelfDialog = new DevComponents.DotNetBar.ButtonItem();
     this.ribbonBar10 = new DevComponents.DotNetBar.RibbonBar();
     this.itemContainer11 = new DevComponents.DotNetBar.ItemContainer();
     this.btnSelfTest = new DevComponents.DotNetBar.ButtonItem();
     this.genneralRibbonPanel = new DevComponents.DotNetBar.RibbonPanel();
     this.ribbonBar1 = new DevComponents.DotNetBar.RibbonBar();
     this.itemContainer7 = new DevComponents.DotNetBar.ItemContainer();
     this.itemContainer17 = new DevComponents.DotNetBar.ItemContainer();
     this.btnGeneralReport = new DevComponents.DotNetBar.ButtonItem();
     this.ribbonBar3 = new DevComponents.DotNetBar.RibbonBar();
     this.itemContainer6 = new DevComponents.DotNetBar.ItemContainer();
     this.btnGeneralSearch = new DevComponents.DotNetBar.ButtonItem();
     this.ribbonBar2 = new DevComponents.DotNetBar.RibbonBar();
     this.itemContainer5 = new DevComponents.DotNetBar.ItemContainer();
     this.btnGeneralStart = new DevComponents.DotNetBar.ButtonItem();
     this.itemContainer16 = new DevComponents.DotNetBar.ItemContainer();
     this.btnGeneralFinish = new DevComponents.DotNetBar.ButtonItem();
     this.ribbonBar5 = new DevComponents.DotNetBar.RibbonBar();
     this.itemContainer15 = new DevComponents.DotNetBar.ItemContainer();
     this.btnGeneralSN = new DevComponents.DotNetBar.ButtonItem();
     this.fctRibbonPanel = new DevComponents.DotNetBar.RibbonPanel();
     this.ribbonBar4 = new DevComponents.DotNetBar.RibbonBar();
     this.itemContainer4 = new DevComponents.DotNetBar.ItemContainer();
     this.itemContainer14 = new DevComponents.DotNetBar.ItemContainer();
     this.btnFCTReport = new DevComponents.DotNetBar.ButtonItem();
     this.ribbonBar6 = new DevComponents.DotNetBar.RibbonBar();
     this.itemContainer8 = new DevComponents.DotNetBar.ItemContainer();
     this.btnFCTSearch = new DevComponents.DotNetBar.ButtonItem();
     this.ribbonBar7 = new DevComponents.DotNetBar.RibbonBar();
     this.itemContainer9 = new DevComponents.DotNetBar.ItemContainer();
     this.btnFCTStart = new DevComponents.DotNetBar.ButtonItem();
     this.itemContainer13 = new DevComponents.DotNetBar.ItemContainer();
     this.btnFCTFinish = new DevComponents.DotNetBar.ButtonItem();
     this.ribbonBar8 = new DevComponents.DotNetBar.RibbonBar();
     this.itemContainer12 = new DevComponents.DotNetBar.ItemContainer();
     this.btnFCTSN = new DevComponents.DotNetBar.ButtonItem();
     this.ribbonPanel1 = new DevComponents.DotNetBar.RibbonPanel();
     this.ribbonBar11 = new DevComponents.DotNetBar.RibbonBar();
     this.btnHelp = new DevComponents.DotNetBar.ButtonItem();
     this.btnAbout = new DevComponents.DotNetBar.ButtonItem();
     this.selfRibbonTabItem = new DevComponents.DotNetBar.RibbonTabItem();
     this.fctRibbonTabItem = new DevComponents.DotNetBar.RibbonTabItem();
     this.genneralRibbonTabItem = new DevComponents.DotNetBar.RibbonTabItem();
     this.ribbonTabItem1 = new DevComponents.DotNetBar.RibbonTabItem();
     this.office2007StartButton1 = new DevComponents.DotNetBar.Office2007StartButton();
     this.lblStatus = new DevComponents.DotNetBar.LabelX();
     this.lblRunningTime = new DevComponents.DotNetBar.LabelX();
     this.mainTimer = new System.Windows.Forms.Timer(this.components);
     this.panelEx3 = new DevComponents.DotNetBar.PanelEx();
     this.lblRemainTime = new DevComponents.DotNetBar.LabelX();
     this.tabControl = new DevComponents.DotNetBar.TabControl();
     this.selfTabControlPanel = new DevComponents.DotNetBar.TabControlPanel();
     this.selfLogList = new Summer.UI.Forms.LogListView();
     this.columnHeader1 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.columnHeader2 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.cabinetTreeView = new System.Windows.Forms.TreeView();
     this.selfTabItem = new DevComponents.DotNetBar.TabItem(this.components);
     this.genneralTabControlPanel = new DevComponents.DotNetBar.TabControlPanel();
     this.tabControlGeneralView = new DevComponents.DotNetBar.TabControl();
     this.tabControlGeneralPanel = new DevComponents.DotNetBar.TabControlPanel();
     this.panelEx1 = new DevComponents.DotNetBar.PanelEx();
     this.tabItem1 = new DevComponents.DotNetBar.TabItem(this.components);
     this.tabControlPanel2 = new DevComponents.DotNetBar.TabControlPanel();
     this.tabItem2 = new DevComponents.DotNetBar.TabItem(this.components);
     this.generalCheckBoxTree = new Summer.UI.Forms.CheckBoxTree();
     this.generalLogList = new Summer.UI.Forms.LogListView();
     this.columnHeader3 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.columnHeader4 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.fctTabItem = new DevComponents.DotNetBar.TabItem(this.components);
     this.fctTabControlPanel = new DevComponents.DotNetBar.TabControlPanel();
     this.fctCheckBoxTree = new Summer.UI.Forms.CheckBoxTree();
     this.fctLogList = new Summer.UI.Forms.LogListView();
     this.columnHeader5 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.columnHeader6 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.genneralTabItem = new DevComponents.DotNetBar.TabItem(this.components);
     this.statusTimer = new System.Windows.Forms.Timer(this.components);
     this.styleManager2 = new DevComponents.DotNetBar.StyleManager(this.components);
     this.styleManager3 = new DevComponents.DotNetBar.StyleManager(this.components);
     this.judgeMatrixView = new VPITest.UI.JudgeMatrixView();
     this.componentSummaryViewGeneral = new VPITest.UI.ComponentSummaryView();
     this.componentSummaryView = new VPITest.UI.ComponentSummaryView();
     this.ribbonControl.SuspendLayout();
     this.selfRibbonPanel.SuspendLayout();
     this.genneralRibbonPanel.SuspendLayout();
     this.fctRibbonPanel.SuspendLayout();
     this.ribbonPanel1.SuspendLayout();
     this.panelEx3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.tabControl)).BeginInit();
     this.tabControl.SuspendLayout();
     this.selfTabControlPanel.SuspendLayout();
     this.genneralTabControlPanel.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.tabControlGeneralView)).BeginInit();
     this.tabControlGeneralView.SuspendLayout();
     this.tabControlGeneralPanel.SuspendLayout();
     this.tabControlPanel2.SuspendLayout();
     this.fctTabControlPanel.SuspendLayout();
     this.SuspendLayout();
     //
     // styleManager1
     //
     this.styleManager1.ManagerStyle = DevComponents.DotNetBar.eStyle.Office2007Blue;
     this.styleManager1.MetroColorParameters = new DevComponents.DotNetBar.Metro.ColorTables.MetroColorGeneratorParameters(System.Drawing.Color.White, System.Drawing.Color.FromArgb(((int)(((byte)(43)))), ((int)(((byte)(87)))), ((int)(((byte)(154))))));
     //
     // buttonItem1
     //
     this.buttonItem1.Name = "buttonItem1";
     this.buttonItem1.Text = "buttonItem1";
     //
     // ribbonControl
     //
     //
     //
     //
     this.ribbonControl.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribbonControl.CanCustomize = false;
     this.ribbonControl.CaptionVisible = true;
     this.ribbonControl.Controls.Add(this.selfRibbonPanel);
     this.ribbonControl.Controls.Add(this.genneralRibbonPanel);
     this.ribbonControl.Controls.Add(this.fctRibbonPanel);
     this.ribbonControl.Controls.Add(this.ribbonPanel1);
     this.ribbonControl.Dock = System.Windows.Forms.DockStyle.Top;
     this.ribbonControl.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.selfRibbonTabItem,
     this.fctRibbonTabItem,
     this.genneralRibbonTabItem,
     this.ribbonTabItem1});
     this.ribbonControl.KeyTipsFont = new System.Drawing.Font("Tahoma", 7F);
     this.ribbonControl.Location = new System.Drawing.Point(5, 1);
     this.ribbonControl.Name = "ribbonControl";
     this.ribbonControl.Padding = new System.Windows.Forms.Padding(0, 0, 0, 3);
     this.ribbonControl.QuickToolbarItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.office2007StartButton1});
     this.ribbonControl.Size = new System.Drawing.Size(954, 154);
     this.ribbonControl.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.ribbonControl.SystemText.MaximizeRibbonText = "&Maximize the Ribbon";
     this.ribbonControl.SystemText.MinimizeRibbonText = "Mi&nimize the Ribbon";
     this.ribbonControl.SystemText.QatAddItemText = "&Add to Quick Access Toolbar";
     this.ribbonControl.SystemText.QatCustomizeMenuLabel = "<b>Customize Quick Access Toolbar</b>";
     this.ribbonControl.SystemText.QatCustomizeText = "&Customize Quick Access Toolbar...";
     this.ribbonControl.SystemText.QatDialogAddButton = "&Add >>";
     this.ribbonControl.SystemText.QatDialogCancelButton = "Cancel";
     this.ribbonControl.SystemText.QatDialogCaption = "Customize Quick Access Toolbar";
     this.ribbonControl.SystemText.QatDialogCategoriesLabel = "&Choose commands from:";
     this.ribbonControl.SystemText.QatDialogOkButton = "OK";
     this.ribbonControl.SystemText.QatDialogPlacementCheckbox = "&Place Quick Access Toolbar below the Ribbon";
     this.ribbonControl.SystemText.QatDialogRemoveButton = "&Remove";
     this.ribbonControl.SystemText.QatPlaceAboveRibbonText = "&Place Quick Access Toolbar above the Ribbon";
     this.ribbonControl.SystemText.QatPlaceBelowRibbonText = "&Place Quick Access Toolbar below the Ribbon";
     this.ribbonControl.SystemText.QatRemoveItemText = "&Remove from Quick Access Toolbar";
     this.ribbonControl.TabGroupHeight = 14;
     this.ribbonControl.TabIndex = 0;
     this.ribbonControl.Text = "ribbonControl1";
     //
     // selfRibbonPanel
     //
     this.selfRibbonPanel.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.selfRibbonPanel.Controls.Add(this.ribbonBar9);
     this.selfRibbonPanel.Controls.Add(this.ribbonBar10);
     this.selfRibbonPanel.Dock = System.Windows.Forms.DockStyle.Fill;
     this.selfRibbonPanel.Location = new System.Drawing.Point(0, 56);
     this.selfRibbonPanel.Name = "selfRibbonPanel";
     this.selfRibbonPanel.Padding = new System.Windows.Forms.Padding(3, 0, 3, 3);
     this.selfRibbonPanel.Size = new System.Drawing.Size(954, 95);
     //
     //
     //
     this.selfRibbonPanel.Style.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.selfRibbonPanel.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.selfRibbonPanel.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.selfRibbonPanel.TabIndex = 3;
     //
     // ribbonBar9
     //
     this.ribbonBar9.AutoOverflowEnabled = true;
     //
     //
     //
     this.ribbonBar9.BackgroundMouseOverStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBar9.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribbonBar9.ContainerControlProcessDialogKey = true;
     this.ribbonBar9.Dock = System.Windows.Forms.DockStyle.Left;
     this.ribbonBar9.DragDropSupport = true;
     this.ribbonBar9.HorizontalItemAlignment = DevComponents.DotNetBar.eHorizontalItemsAlignment.Center;
     this.ribbonBar9.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.itemContainer10});
     this.ribbonBar9.Location = new System.Drawing.Point(76, 0);
     this.ribbonBar9.Name = "ribbonBar9";
     this.ribbonBar9.Size = new System.Drawing.Size(73, 92);
     this.ribbonBar9.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.ribbonBar9.TabIndex = 24;
     this.ribbonBar9.Text = "报告";
     //
     //
     //
     this.ribbonBar9.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBar9.TitleStyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribbonBar9.VerticalItemAlignment = DevComponents.DotNetBar.eVerticalItemsAlignment.Middle;
     //
     // itemContainer10
     //
     //
     //
     //
     this.itemContainer10.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.itemContainer10.HorizontalItemAlignment = DevComponents.DotNetBar.eHorizontalItemsAlignment.Center;
     this.itemContainer10.Name = "itemContainer10";
     this.itemContainer10.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.btnSelfDialog});
     //
     //
     //
     this.itemContainer10.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.itemContainer10.VerticalItemAlignment = DevComponents.DotNetBar.eVerticalItemsAlignment.Middle;
     //
     // btnSelfDialog
     //
     this.btnSelfDialog.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.btnSelfDialog.Image = ((System.Drawing.Image)(resources.GetObject("btnSelfDialog.Image")));
     this.btnSelfDialog.ImageFixedSize = new System.Drawing.Size(32, 32);
     this.btnSelfDialog.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.btnSelfDialog.Name = "btnSelfDialog";
     this.btnSelfDialog.Text = "自检报告";
     this.btnSelfDialog.Click += new System.EventHandler(this.btnSelfDialog_Click);
     //
     // ribbonBar10
     //
     this.ribbonBar10.AutoOverflowEnabled = true;
     //
     //
     //
     this.ribbonBar10.BackgroundMouseOverStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBar10.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribbonBar10.ContainerControlProcessDialogKey = true;
     this.ribbonBar10.Dock = System.Windows.Forms.DockStyle.Left;
     this.ribbonBar10.DragDropSupport = true;
     this.ribbonBar10.HorizontalItemAlignment = DevComponents.DotNetBar.eHorizontalItemsAlignment.Center;
     this.ribbonBar10.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.itemContainer11});
     this.ribbonBar10.Location = new System.Drawing.Point(3, 0);
     this.ribbonBar10.Name = "ribbonBar10";
     this.ribbonBar10.Size = new System.Drawing.Size(73, 92);
     this.ribbonBar10.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.ribbonBar10.TabIndex = 23;
     this.ribbonBar10.Text = "自检";
     //
     //
     //
     this.ribbonBar10.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBar10.TitleStyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribbonBar10.VerticalItemAlignment = DevComponents.DotNetBar.eVerticalItemsAlignment.Middle;
     //
     // itemContainer11
     //
     //
     //
     //
     this.itemContainer11.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.itemContainer11.HorizontalItemAlignment = DevComponents.DotNetBar.eHorizontalItemsAlignment.Center;
     this.itemContainer11.Name = "itemContainer11";
     this.itemContainer11.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.btnSelfTest});
     //
     //
     //
     this.itemContainer11.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.itemContainer11.VerticalItemAlignment = DevComponents.DotNetBar.eVerticalItemsAlignment.Middle;
     //
     // btnSelfTest
     //
     this.btnSelfTest.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.btnSelfTest.Image = ((System.Drawing.Image)(resources.GetObject("btnSelfTest.Image")));
     this.btnSelfTest.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.btnSelfTest.Name = "btnSelfTest";
     this.btnSelfTest.Text = "系统自检";
     this.btnSelfTest.Click += new System.EventHandler(this.btnSelfTest_Click);
     //
     // genneralRibbonPanel
     //
     this.genneralRibbonPanel.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.genneralRibbonPanel.Controls.Add(this.ribbonBar1);
     this.genneralRibbonPanel.Controls.Add(this.ribbonBar3);
     this.genneralRibbonPanel.Controls.Add(this.ribbonBar2);
     this.genneralRibbonPanel.Controls.Add(this.ribbonBar5);
     this.genneralRibbonPanel.Dock = System.Windows.Forms.DockStyle.Fill;
     this.genneralRibbonPanel.Location = new System.Drawing.Point(0, 56);
     this.genneralRibbonPanel.Name = "genneralRibbonPanel";
     this.genneralRibbonPanel.Padding = new System.Windows.Forms.Padding(3, 0, 3, 3);
     this.genneralRibbonPanel.Size = new System.Drawing.Size(954, 95);
     //
     //
     //
     this.genneralRibbonPanel.Style.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.genneralRibbonPanel.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.genneralRibbonPanel.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.genneralRibbonPanel.TabIndex = 1;
     this.genneralRibbonPanel.Visible = false;
     //
     // ribbonBar1
     //
     this.ribbonBar1.AutoOverflowEnabled = true;
     //
     //
     //
     this.ribbonBar1.BackgroundMouseOverStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBar1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribbonBar1.ContainerControlProcessDialogKey = true;
     this.ribbonBar1.Dock = System.Windows.Forms.DockStyle.Left;
     this.ribbonBar1.DragDropSupport = true;
     this.ribbonBar1.HorizontalItemAlignment = DevComponents.DotNetBar.eHorizontalItemsAlignment.Center;
     this.ribbonBar1.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.itemContainer7});
     this.ribbonBar1.Location = new System.Drawing.Point(290, 0);
     this.ribbonBar1.Name = "ribbonBar1";
     this.ribbonBar1.Size = new System.Drawing.Size(78, 92);
     this.ribbonBar1.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.ribbonBar1.TabIndex = 18;
     this.ribbonBar1.Text = "报告";
     //
     //
     //
     this.ribbonBar1.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBar1.TitleStyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribbonBar1.VerticalItemAlignment = DevComponents.DotNetBar.eVerticalItemsAlignment.Middle;
     //
     // itemContainer7
     //
     //
     //
     //
     this.itemContainer7.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.itemContainer7.HorizontalItemAlignment = DevComponents.DotNetBar.eHorizontalItemsAlignment.Center;
     this.itemContainer7.Name = "itemContainer7";
     this.itemContainer7.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.itemContainer17});
     //
     //
     //
     this.itemContainer7.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.itemContainer7.VerticalItemAlignment = DevComponents.DotNetBar.eVerticalItemsAlignment.Middle;
     //
     // itemContainer17
     //
     //
     //
     //
     this.itemContainer17.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.itemContainer17.HorizontalItemAlignment = DevComponents.DotNetBar.eHorizontalItemsAlignment.Center;
     this.itemContainer17.Name = "itemContainer17";
     this.itemContainer17.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.btnGeneralReport});
     //
     //
     //
     this.itemContainer17.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.itemContainer17.VerticalItemAlignment = DevComponents.DotNetBar.eVerticalItemsAlignment.Middle;
     //
     // btnGeneralReport
     //
     this.btnGeneralReport.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.btnGeneralReport.Image = ((System.Drawing.Image)(resources.GetObject("btnGeneralReport.Image")));
     this.btnGeneralReport.ImageFixedSize = new System.Drawing.Size(32, 32);
     this.btnGeneralReport.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.btnGeneralReport.Name = "btnGeneralReport";
     this.btnGeneralReport.Text = "用户报告";
     this.btnGeneralReport.Click += new System.EventHandler(this.btnGeneralReport_Click);
     //
     // ribbonBar3
     //
     this.ribbonBar3.AutoOverflowEnabled = true;
     //
     //
     //
     this.ribbonBar3.BackgroundMouseOverStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBar3.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribbonBar3.ContainerControlProcessDialogKey = true;
     this.ribbonBar3.Dock = System.Windows.Forms.DockStyle.Left;
     this.ribbonBar3.DragDropSupport = true;
     this.ribbonBar3.HorizontalItemAlignment = DevComponents.DotNetBar.eHorizontalItemsAlignment.Center;
     this.ribbonBar3.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.itemContainer6});
     this.ribbonBar3.Location = new System.Drawing.Point(212, 0);
     this.ribbonBar3.Name = "ribbonBar3";
     this.ribbonBar3.Size = new System.Drawing.Size(78, 92);
     this.ribbonBar3.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.ribbonBar3.TabIndex = 17;
     this.ribbonBar3.Text = "查询";
     //
     //
     //
     this.ribbonBar3.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBar3.TitleStyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribbonBar3.VerticalItemAlignment = DevComponents.DotNetBar.eVerticalItemsAlignment.Middle;
     //
     // itemContainer6
     //
     //
     //
     //
     this.itemContainer6.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.itemContainer6.HorizontalItemAlignment = DevComponents.DotNetBar.eHorizontalItemsAlignment.Center;
     this.itemContainer6.Name = "itemContainer6";
     this.itemContainer6.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.btnGeneralSearch});
     //
     //
     //
     this.itemContainer6.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.itemContainer6.VerticalItemAlignment = DevComponents.DotNetBar.eVerticalItemsAlignment.Middle;
     //
     // btnGeneralSearch
     //
     this.btnGeneralSearch.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.btnGeneralSearch.Image = ((System.Drawing.Image)(resources.GetObject("btnGeneralSearch.Image")));
     this.btnGeneralSearch.ImageFixedSize = new System.Drawing.Size(32, 32);
     this.btnGeneralSearch.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.btnGeneralSearch.Name = "btnGeneralSearch";
     this.btnGeneralSearch.Text = "数据查询";
     this.btnGeneralSearch.Click += new System.EventHandler(this.btnGeneralSearch_Click);
     //
     // ribbonBar2
     //
     this.ribbonBar2.AutoOverflowEnabled = true;
     //
     //
     //
     this.ribbonBar2.BackgroundMouseOverStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBar2.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribbonBar2.ContainerControlProcessDialogKey = true;
     this.ribbonBar2.Dock = System.Windows.Forms.DockStyle.Left;
     this.ribbonBar2.DragDropSupport = true;
     this.ribbonBar2.HorizontalItemAlignment = DevComponents.DotNetBar.eHorizontalItemsAlignment.Center;
     this.ribbonBar2.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.itemContainer5,
     this.itemContainer16});
     this.ribbonBar2.Location = new System.Drawing.Point(79, 0);
     this.ribbonBar2.Name = "ribbonBar2";
     this.ribbonBar2.Size = new System.Drawing.Size(133, 92);
     this.ribbonBar2.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.ribbonBar2.TabIndex = 15;
     this.ribbonBar2.Text = "测试";
     //
     //
     //
     this.ribbonBar2.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBar2.TitleStyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribbonBar2.VerticalItemAlignment = DevComponents.DotNetBar.eVerticalItemsAlignment.Middle;
     //
     // itemContainer5
     //
     //
     //
     //
     this.itemContainer5.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.itemContainer5.HorizontalItemAlignment = DevComponents.DotNetBar.eHorizontalItemsAlignment.Center;
     this.itemContainer5.Name = "itemContainer5";
     this.itemContainer5.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.btnGeneralStart});
     //
     //
     //
     this.itemContainer5.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.itemContainer5.VerticalItemAlignment = DevComponents.DotNetBar.eVerticalItemsAlignment.Middle;
     //
     // btnGeneralStart
     //
     this.btnGeneralStart.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.btnGeneralStart.Image = ((System.Drawing.Image)(resources.GetObject("btnGeneralStart.Image")));
     this.btnGeneralStart.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.btnGeneralStart.Name = "btnGeneralStart";
     this.btnGeneralStart.Text = "开始测试";
     this.btnGeneralStart.Click += new System.EventHandler(this.btnGeneralStart_Click);
     //
     // itemContainer16
     //
     //
     //
     //
     this.itemContainer16.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.itemContainer16.HorizontalItemAlignment = DevComponents.DotNetBar.eHorizontalItemsAlignment.Center;
     this.itemContainer16.Name = "itemContainer16";
     this.itemContainer16.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.btnGeneralFinish});
     //
     //
     //
     this.itemContainer16.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.itemContainer16.VerticalItemAlignment = DevComponents.DotNetBar.eVerticalItemsAlignment.Middle;
     //
     // btnGeneralFinish
     //
     this.btnGeneralFinish.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.btnGeneralFinish.Image = ((System.Drawing.Image)(resources.GetObject("btnGeneralFinish.Image")));
     this.btnGeneralFinish.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.btnGeneralFinish.Name = "btnGeneralFinish";
     this.btnGeneralFinish.Text = "停止测试";
     this.btnGeneralFinish.Click += new System.EventHandler(this.btnGeneralFinish_Click);
     //
     // ribbonBar5
     //
     this.ribbonBar5.AutoOverflowEnabled = true;
     //
     //
     //
     this.ribbonBar5.BackgroundMouseOverStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBar5.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribbonBar5.ContainerControlProcessDialogKey = true;
     this.ribbonBar5.Dock = System.Windows.Forms.DockStyle.Left;
     this.ribbonBar5.DragDropSupport = true;
     this.ribbonBar5.HorizontalItemAlignment = DevComponents.DotNetBar.eHorizontalItemsAlignment.Center;
     this.ribbonBar5.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.itemContainer15});
     this.ribbonBar5.Location = new System.Drawing.Point(3, 0);
     this.ribbonBar5.Name = "ribbonBar5";
     this.ribbonBar5.Size = new System.Drawing.Size(76, 92);
     this.ribbonBar5.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.ribbonBar5.TabIndex = 14;
     this.ribbonBar5.Text = "设置";
     //
     //
     //
     this.ribbonBar5.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBar5.TitleStyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribbonBar5.VerticalItemAlignment = DevComponents.DotNetBar.eVerticalItemsAlignment.Middle;
     //
     // itemContainer15
     //
     //
     //
     //
     this.itemContainer15.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.itemContainer15.HorizontalItemAlignment = DevComponents.DotNetBar.eHorizontalItemsAlignment.Center;
     this.itemContainer15.Name = "itemContainer15";
     this.itemContainer15.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.btnGeneralSN});
     //
     //
     //
     this.itemContainer15.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.itemContainer15.VerticalItemAlignment = DevComponents.DotNetBar.eVerticalItemsAlignment.Middle;
     //
     // btnGeneralSN
     //
     this.btnGeneralSN.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.btnGeneralSN.Image = ((System.Drawing.Image)(resources.GetObject("btnGeneralSN.Image")));
     this.btnGeneralSN.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.btnGeneralSN.Name = "btnGeneralSN";
     this.btnGeneralSN.Text = "测试预设";
     this.btnGeneralSN.Click += new System.EventHandler(this.btnGeneralSN_Click);
     //
     // fctRibbonPanel
     //
     this.fctRibbonPanel.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.fctRibbonPanel.Controls.Add(this.ribbonBar4);
     this.fctRibbonPanel.Controls.Add(this.ribbonBar6);
     this.fctRibbonPanel.Controls.Add(this.ribbonBar7);
     this.fctRibbonPanel.Controls.Add(this.ribbonBar8);
     this.fctRibbonPanel.Dock = System.Windows.Forms.DockStyle.Fill;
     this.fctRibbonPanel.Location = new System.Drawing.Point(0, 56);
     this.fctRibbonPanel.Name = "fctRibbonPanel";
     this.fctRibbonPanel.Padding = new System.Windows.Forms.Padding(3, 0, 3, 3);
     this.fctRibbonPanel.Size = new System.Drawing.Size(954, 95);
     //
     //
     //
     this.fctRibbonPanel.Style.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.fctRibbonPanel.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.fctRibbonPanel.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.fctRibbonPanel.TabIndex = 2;
     this.fctRibbonPanel.Visible = false;
     //
     // ribbonBar4
     //
     this.ribbonBar4.AutoOverflowEnabled = true;
     //
     //
     //
     this.ribbonBar4.BackgroundMouseOverStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBar4.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribbonBar4.ContainerControlProcessDialogKey = true;
     this.ribbonBar4.Dock = System.Windows.Forms.DockStyle.Left;
     this.ribbonBar4.DragDropSupport = true;
     this.ribbonBar4.HorizontalItemAlignment = DevComponents.DotNetBar.eHorizontalItemsAlignment.Center;
     this.ribbonBar4.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.itemContainer4});
     this.ribbonBar4.Location = new System.Drawing.Point(290, 0);
     this.ribbonBar4.Name = "ribbonBar4";
     this.ribbonBar4.Size = new System.Drawing.Size(81, 92);
     this.ribbonBar4.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.ribbonBar4.TabIndex = 22;
     this.ribbonBar4.Text = "报告";
     //
     //
     //
     this.ribbonBar4.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBar4.TitleStyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribbonBar4.VerticalItemAlignment = DevComponents.DotNetBar.eVerticalItemsAlignment.Middle;
     //
     // itemContainer4
     //
     //
     //
     //
     this.itemContainer4.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.itemContainer4.HorizontalItemAlignment = DevComponents.DotNetBar.eHorizontalItemsAlignment.Center;
     this.itemContainer4.Name = "itemContainer4";
     this.itemContainer4.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.itemContainer14});
     //
     //
     //
     this.itemContainer4.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.itemContainer4.VerticalItemAlignment = DevComponents.DotNetBar.eVerticalItemsAlignment.Middle;
     //
     // itemContainer14
     //
     //
     //
     //
     this.itemContainer14.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.itemContainer14.HorizontalItemAlignment = DevComponents.DotNetBar.eHorizontalItemsAlignment.Center;
     this.itemContainer14.Name = "itemContainer14";
     this.itemContainer14.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.btnFCTReport});
     //
     //
     //
     this.itemContainer14.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.itemContainer14.VerticalItemAlignment = DevComponents.DotNetBar.eVerticalItemsAlignment.Middle;
     //
     // btnFCTReport
     //
     this.btnFCTReport.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.btnFCTReport.Image = ((System.Drawing.Image)(resources.GetObject("btnFCTReport.Image")));
     this.btnFCTReport.ImageFixedSize = new System.Drawing.Size(32, 32);
     this.btnFCTReport.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.btnFCTReport.Name = "btnFCTReport";
     this.btnFCTReport.Text = "用户报告";
     this.btnFCTReport.Click += new System.EventHandler(this.btnFCTReport_Click);
     //
     // ribbonBar6
     //
     this.ribbonBar6.AutoOverflowEnabled = true;
     //
     //
     //
     this.ribbonBar6.BackgroundMouseOverStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBar6.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribbonBar6.ContainerControlProcessDialogKey = true;
     this.ribbonBar6.Dock = System.Windows.Forms.DockStyle.Left;
     this.ribbonBar6.DragDropSupport = true;
     this.ribbonBar6.HorizontalItemAlignment = DevComponents.DotNetBar.eHorizontalItemsAlignment.Center;
     this.ribbonBar6.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.itemContainer8});
     this.ribbonBar6.Location = new System.Drawing.Point(212, 0);
     this.ribbonBar6.Name = "ribbonBar6";
     this.ribbonBar6.Size = new System.Drawing.Size(78, 92);
     this.ribbonBar6.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.ribbonBar6.TabIndex = 21;
     this.ribbonBar6.Text = "查询";
     //
     //
     //
     this.ribbonBar6.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBar6.TitleStyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribbonBar6.VerticalItemAlignment = DevComponents.DotNetBar.eVerticalItemsAlignment.Middle;
     //
     // itemContainer8
     //
     //
     //
     //
     this.itemContainer8.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.itemContainer8.HorizontalItemAlignment = DevComponents.DotNetBar.eHorizontalItemsAlignment.Center;
     this.itemContainer8.Name = "itemContainer8";
     this.itemContainer8.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.btnFCTSearch});
     //
     //
     //
     this.itemContainer8.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.itemContainer8.VerticalItemAlignment = DevComponents.DotNetBar.eVerticalItemsAlignment.Middle;
     //
     // btnFCTSearch
     //
     this.btnFCTSearch.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.btnFCTSearch.Image = ((System.Drawing.Image)(resources.GetObject("btnFCTSearch.Image")));
     this.btnFCTSearch.ImageFixedSize = new System.Drawing.Size(32, 32);
     this.btnFCTSearch.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.btnFCTSearch.Name = "btnFCTSearch";
     this.btnFCTSearch.Text = "数据查询";
     this.btnFCTSearch.Click += new System.EventHandler(this.btnFCTSearch_Click);
     //
     // ribbonBar7
     //
     this.ribbonBar7.AutoOverflowEnabled = true;
     //
     //
     //
     this.ribbonBar7.BackgroundMouseOverStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBar7.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribbonBar7.ContainerControlProcessDialogKey = true;
     this.ribbonBar7.Dock = System.Windows.Forms.DockStyle.Left;
     this.ribbonBar7.DragDropSupport = true;
     this.ribbonBar7.HorizontalItemAlignment = DevComponents.DotNetBar.eHorizontalItemsAlignment.Center;
     this.ribbonBar7.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.itemContainer9,
     this.itemContainer13});
     this.ribbonBar7.Location = new System.Drawing.Point(79, 0);
     this.ribbonBar7.Name = "ribbonBar7";
     this.ribbonBar7.Size = new System.Drawing.Size(133, 92);
     this.ribbonBar7.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.ribbonBar7.TabIndex = 20;
     this.ribbonBar7.Text = "测试";
     //
     //
     //
     this.ribbonBar7.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBar7.TitleStyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribbonBar7.VerticalItemAlignment = DevComponents.DotNetBar.eVerticalItemsAlignment.Middle;
     //
     // itemContainer9
     //
     //
     //
     //
     this.itemContainer9.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.itemContainer9.HorizontalItemAlignment = DevComponents.DotNetBar.eHorizontalItemsAlignment.Center;
     this.itemContainer9.Name = "itemContainer9";
     this.itemContainer9.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.btnFCTStart});
     //
     //
     //
     this.itemContainer9.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.itemContainer9.VerticalItemAlignment = DevComponents.DotNetBar.eVerticalItemsAlignment.Middle;
     //
     // btnFCTStart
     //
     this.btnFCTStart.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.btnFCTStart.Image = ((System.Drawing.Image)(resources.GetObject("btnFCTStart.Image")));
     this.btnFCTStart.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.btnFCTStart.Name = "btnFCTStart";
     this.btnFCTStart.Text = "开始测试";
     this.btnFCTStart.Click += new System.EventHandler(this.btnFCTStart_Click);
     //
     // itemContainer13
     //
     //
     //
     //
     this.itemContainer13.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.itemContainer13.HorizontalItemAlignment = DevComponents.DotNetBar.eHorizontalItemsAlignment.Center;
     this.itemContainer13.Name = "itemContainer13";
     this.itemContainer13.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.btnFCTFinish});
     //
     //
     //
     this.itemContainer13.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.itemContainer13.VerticalItemAlignment = DevComponents.DotNetBar.eVerticalItemsAlignment.Middle;
     //
     // btnFCTFinish
     //
     this.btnFCTFinish.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.btnFCTFinish.Image = ((System.Drawing.Image)(resources.GetObject("btnFCTFinish.Image")));
     this.btnFCTFinish.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.btnFCTFinish.Name = "btnFCTFinish";
     this.btnFCTFinish.Text = "停止测试";
     this.btnFCTFinish.Click += new System.EventHandler(this.btnFCTFinish_Click);
     //
     // ribbonBar8
     //
     this.ribbonBar8.AutoOverflowEnabled = true;
     //
     //
     //
     this.ribbonBar8.BackgroundMouseOverStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBar8.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribbonBar8.ContainerControlProcessDialogKey = true;
     this.ribbonBar8.Dock = System.Windows.Forms.DockStyle.Left;
     this.ribbonBar8.DragDropSupport = true;
     this.ribbonBar8.HorizontalItemAlignment = DevComponents.DotNetBar.eHorizontalItemsAlignment.Center;
     this.ribbonBar8.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.itemContainer12});
     this.ribbonBar8.Location = new System.Drawing.Point(3, 0);
     this.ribbonBar8.Name = "ribbonBar8";
     this.ribbonBar8.Size = new System.Drawing.Size(76, 92);
     this.ribbonBar8.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.ribbonBar8.TabIndex = 19;
     this.ribbonBar8.Text = "设置";
     //
     //
     //
     this.ribbonBar8.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBar8.TitleStyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribbonBar8.VerticalItemAlignment = DevComponents.DotNetBar.eVerticalItemsAlignment.Middle;
     //
     // itemContainer12
     //
     //
     //
     //
     this.itemContainer12.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.itemContainer12.HorizontalItemAlignment = DevComponents.DotNetBar.eHorizontalItemsAlignment.Center;
     this.itemContainer12.Name = "itemContainer12";
     this.itemContainer12.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.btnFCTSN});
     //
     //
     //
     this.itemContainer12.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.itemContainer12.VerticalItemAlignment = DevComponents.DotNetBar.eVerticalItemsAlignment.Middle;
     //
     // btnFCTSN
     //
     this.btnFCTSN.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.btnFCTSN.Image = ((System.Drawing.Image)(resources.GetObject("btnFCTSN.Image")));
     this.btnFCTSN.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.btnFCTSN.Name = "btnFCTSN";
     this.btnFCTSN.Text = "测试预设";
     this.btnFCTSN.Click += new System.EventHandler(this.btnFCTSN_Click);
     //
     // ribbonPanel1
     //
     this.ribbonPanel1.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.ribbonPanel1.Controls.Add(this.ribbonBar11);
     this.ribbonPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.ribbonPanel1.Location = new System.Drawing.Point(0, 0);
     this.ribbonPanel1.Name = "ribbonPanel1";
     this.ribbonPanel1.Padding = new System.Windows.Forms.Padding(3, 0, 3, 3);
     this.ribbonPanel1.Size = new System.Drawing.Size(954, 151);
     //
     //
     //
     this.ribbonPanel1.Style.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonPanel1.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonPanel1.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribbonPanel1.TabIndex = 4;
     this.ribbonPanel1.Visible = false;
     //
     // ribbonBar11
     //
     this.ribbonBar11.AutoOverflowEnabled = true;
     //
     //
     //
     this.ribbonBar11.BackgroundMouseOverStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBar11.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribbonBar11.ContainerControlProcessDialogKey = true;
     this.ribbonBar11.Dock = System.Windows.Forms.DockStyle.Left;
     this.ribbonBar11.DragDropSupport = true;
     this.ribbonBar11.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.btnHelp,
     this.btnAbout});
     this.ribbonBar11.Location = new System.Drawing.Point(3, 0);
     this.ribbonBar11.Name = "ribbonBar11";
     this.ribbonBar11.Size = new System.Drawing.Size(143, 148);
     this.ribbonBar11.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.ribbonBar11.TabIndex = 0;
     this.ribbonBar11.Text = "帮助";
     //
     //
     //
     this.ribbonBar11.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBar11.TitleStyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribbonBar11.VerticalItemAlignment = DevComponents.DotNetBar.eVerticalItemsAlignment.Middle;
     //
     // btnHelp
     //
     this.btnHelp.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.btnHelp.Enabled = false;
     this.btnHelp.Image = ((System.Drawing.Image)(resources.GetObject("btnHelp.Image")));
     this.btnHelp.Name = "btnHelp";
     this.btnHelp.SubItemsExpandWidth = 14;
     this.btnHelp.Text = "帮助";
     //
     // btnAbout
     //
     this.btnAbout.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.btnAbout.Image = ((System.Drawing.Image)(resources.GetObject("btnAbout.Image")));
     this.btnAbout.Name = "btnAbout";
     this.btnAbout.SubItemsExpandWidth = 14;
     this.btnAbout.Text = "关于";
     this.btnAbout.Click += new System.EventHandler(this.btnAbout_Click);
     //
     // selfRibbonTabItem
     //
     this.selfRibbonTabItem.Checked = true;
     this.selfRibbonTabItem.Name = "selfRibbonTabItem";
     this.selfRibbonTabItem.Panel = this.selfRibbonPanel;
     this.selfRibbonTabItem.Text = "系统自检";
     this.selfRibbonTabItem.Click += new System.EventHandler(this.selfRibbonTabItem_Click);
     //
     // fctRibbonTabItem
     //
     this.fctRibbonTabItem.Name = "fctRibbonTabItem";
     this.fctRibbonTabItem.Panel = this.fctRibbonPanel;
     this.fctRibbonTabItem.Text = "组件测试";
     this.fctRibbonTabItem.Click += new System.EventHandler(this.fctRibbonTabItem_Click);
     //
     // genneralRibbonTabItem
     //
     this.genneralRibbonTabItem.Name = "genneralRibbonTabItem";
     this.genneralRibbonTabItem.Panel = this.genneralRibbonPanel;
     this.genneralRibbonTabItem.Text = "单板测试";
     this.genneralRibbonTabItem.Click += new System.EventHandler(this.genneralRibbonTabItem_Click);
     //
     // ribbonTabItem1
     //
     this.ribbonTabItem1.Name = "ribbonTabItem1";
     this.ribbonTabItem1.Panel = this.ribbonPanel1;
     this.ribbonTabItem1.Text = "帮助";
     //
     // office2007StartButton1
     //
     this.office2007StartButton1.AutoExpandOnClick = true;
     this.office2007StartButton1.CanCustomize = false;
     this.office2007StartButton1.HotTrackingStyle = DevComponents.DotNetBar.eHotTrackingStyle.Image;
     this.office2007StartButton1.Image = ((System.Drawing.Image)(resources.GetObject("office2007StartButton1.Image")));
     this.office2007StartButton1.ImagePaddingHorizontal = 2;
     this.office2007StartButton1.ImagePaddingVertical = 2;
     this.office2007StartButton1.Name = "office2007StartButton1";
     this.office2007StartButton1.ShowSubItems = false;
     this.office2007StartButton1.Text = "&File";
     //
     // lblStatus
     //
     this.lblStatus.BackColor = System.Drawing.Color.Transparent;
     //
     //
     //
     this.lblStatus.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.lblStatus.BackgroundStyle.TextAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Center;
     this.lblStatus.Dock = System.Windows.Forms.DockStyle.Right;
     this.lblStatus.Font = new System.Drawing.Font("Calibri", 42F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblStatus.ForeColor = System.Drawing.Color.OrangeRed;
     this.lblStatus.Location = new System.Drawing.Point(567, 0);
     this.lblStatus.Name = "lblStatus";
     this.lblStatus.Size = new System.Drawing.Size(387, 57);
     this.lblStatus.TabIndex = 21;
     this.lblStatus.Text = "Preparing...";
     this.lblStatus.TextAlignment = System.Drawing.StringAlignment.Center;
     //
     // lblRunningTime
     //
     this.lblRunningTime.BackColor = System.Drawing.Color.Transparent;
     //
     //
     //
     this.lblRunningTime.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.lblRunningTime.Dock = System.Windows.Forms.DockStyle.Left;
     this.lblRunningTime.Font = new System.Drawing.Font("Calibri", 21.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblRunningTime.Location = new System.Drawing.Point(0, 0);
     this.lblRunningTime.Name = "lblRunningTime";
     this.lblRunningTime.Size = new System.Drawing.Size(290, 57);
     this.lblRunningTime.TabIndex = 19;
     this.lblRunningTime.Text = "计时:000:00:00";
     //
     // mainTimer
     //
     this.mainTimer.Enabled = true;
     this.mainTimer.Interval = 500;
     this.mainTimer.Tick += new System.EventHandler(this.mainTimer_Tick);
     //
     // panelEx3
     //
     this.panelEx3.CanvasColor = System.Drawing.SystemColors.Control;
     this.panelEx3.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.panelEx3.Controls.Add(this.lblRemainTime);
     this.panelEx3.Controls.Add(this.lblStatus);
     this.panelEx3.Controls.Add(this.lblRunningTime);
     this.panelEx3.DisabledBackColor = System.Drawing.Color.Empty;
     this.panelEx3.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.panelEx3.Location = new System.Drawing.Point(5, 614);
     this.panelEx3.Name = "panelEx3";
     this.panelEx3.Size = new System.Drawing.Size(954, 57);
     this.panelEx3.Style.Alignment = System.Drawing.StringAlignment.Center;
     this.panelEx3.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.panelEx3.Style.BackColor2.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.panelEx3.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.panelEx3.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.panelEx3.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.panelEx3.Style.GradientAngle = 90;
     this.panelEx3.TabIndex = 0;
     //
     // lblRemainTime
     //
     this.lblRemainTime.BackColor = System.Drawing.Color.Transparent;
     //
     //
     //
     this.lblRemainTime.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.lblRemainTime.Dock = System.Windows.Forms.DockStyle.Left;
     this.lblRemainTime.Font = new System.Drawing.Font("Calibri", 21.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblRemainTime.Location = new System.Drawing.Point(290, 0);
     this.lblRemainTime.Name = "lblRemainTime";
     this.lblRemainTime.Size = new System.Drawing.Size(311, 57);
     this.lblRemainTime.TabIndex = 22;
     this.lblRemainTime.Text = "剩余:000:00:00";
     //
     // tabControl
     //
     this.tabControl.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
     this.tabControl.CanReorderTabs = true;
     this.tabControl.Controls.Add(this.selfTabControlPanel);
     this.tabControl.Controls.Add(this.genneralTabControlPanel);
     this.tabControl.Controls.Add(this.fctTabControlPanel);
     this.tabControl.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabControl.Location = new System.Drawing.Point(5, 155);
     this.tabControl.Name = "tabControl";
     this.tabControl.SelectedTabFont = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Bold);
     this.tabControl.SelectedTabIndex = 0;
     this.tabControl.Size = new System.Drawing.Size(954, 459);
     this.tabControl.TabIndex = 1;
     this.tabControl.TabLayoutType = DevComponents.DotNetBar.eTabLayoutType.FixedWithNavigationBox;
     this.tabControl.Tabs.Add(this.selfTabItem);
     this.tabControl.Tabs.Add(this.fctTabItem);
     this.tabControl.Tabs.Add(this.genneralTabItem);
     this.tabControl.TabsVisible = false;
     this.tabControl.Text = "tabControl1";
     //
     // selfTabControlPanel
     //
     this.selfTabControlPanel.Controls.Add(this.selfLogList);
     this.selfTabControlPanel.Controls.Add(this.cabinetTreeView);
     this.selfTabControlPanel.DisabledBackColor = System.Drawing.Color.Empty;
     this.selfTabControlPanel.Dock = System.Windows.Forms.DockStyle.Fill;
     this.selfTabControlPanel.Location = new System.Drawing.Point(0, 26);
     this.selfTabControlPanel.Name = "selfTabControlPanel";
     this.selfTabControlPanel.Padding = new System.Windows.Forms.Padding(1);
     this.selfTabControlPanel.Size = new System.Drawing.Size(954, 433);
     this.selfTabControlPanel.Style.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(142)))), ((int)(((byte)(179)))), ((int)(((byte)(231)))));
     this.selfTabControlPanel.Style.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(223)))), ((int)(((byte)(237)))), ((int)(((byte)(254)))));
     this.selfTabControlPanel.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.selfTabControlPanel.Style.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(59)))), ((int)(((byte)(97)))), ((int)(((byte)(156)))));
     this.selfTabControlPanel.Style.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Right)
                 | DevComponents.DotNetBar.eBorderSide.Bottom)));
     this.selfTabControlPanel.Style.GradientAngle = 90;
     this.selfTabControlPanel.TabIndex = 4;
     this.selfTabControlPanel.TabItem = this.selfTabItem;
     //
     // selfLogList
     //
     this.selfLogList.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
     this.columnHeader1,
     this.columnHeader2});
     this.selfLogList.Dock = System.Windows.Forms.DockStyle.Fill;
     this.selfLogList.FullRowSelect = true;
     this.selfLogList.GridLines = true;
     this.selfLogList.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.Nonclickable;
     this.selfLogList.HideSelection = false;
     this.selfLogList.Location = new System.Drawing.Point(181, 1);
     this.selfLogList.MaxLogRecords = 300;
     this.selfLogList.MultiSelect = false;
     this.selfLogList.Name = "selfLogList";
     this.selfLogList.ShowGroups = false;
     this.selfLogList.Size = new System.Drawing.Size(772, 431);
     this.selfLogList.TabIndex = 7;
     this.selfLogList.Timer = null;
     this.selfLogList.UseCompatibleStateImageBehavior = false;
     this.selfLogList.View = System.Windows.Forms.View.Details;
     //
     // columnHeader1
     //
     this.columnHeader1.Text = "时间";
     this.columnHeader1.Width = 110;
     //
     // columnHeader2
     //
     this.columnHeader2.Text = "内容";
     this.columnHeader2.Width = 578;
     //
     // cabinetTreeView
     //
     this.cabinetTreeView.Dock = System.Windows.Forms.DockStyle.Left;
     this.cabinetTreeView.Location = new System.Drawing.Point(1, 1);
     this.cabinetTreeView.Name = "cabinetTreeView";
     this.cabinetTreeView.Size = new System.Drawing.Size(180, 431);
     this.cabinetTreeView.TabIndex = 0;
     //
     // selfTabItem
     //
     this.selfTabItem.AttachedControl = this.selfTabControlPanel;
     this.selfTabItem.Name = "selfTabItem";
     this.selfTabItem.Text = "系统自检";
     //
     // genneralTabControlPanel
     //
     this.genneralTabControlPanel.Controls.Add(this.tabControlGeneralView);
     this.genneralTabControlPanel.Controls.Add(this.generalCheckBoxTree);
     this.genneralTabControlPanel.Controls.Add(this.generalLogList);
     this.genneralTabControlPanel.DisabledBackColor = System.Drawing.Color.Empty;
     this.genneralTabControlPanel.Dock = System.Windows.Forms.DockStyle.Fill;
     this.genneralTabControlPanel.Location = new System.Drawing.Point(0, 26);
     this.genneralTabControlPanel.Name = "genneralTabControlPanel";
     this.genneralTabControlPanel.Padding = new System.Windows.Forms.Padding(1);
     this.genneralTabControlPanel.Size = new System.Drawing.Size(954, 433);
     this.genneralTabControlPanel.Style.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(142)))), ((int)(((byte)(179)))), ((int)(((byte)(231)))));
     this.genneralTabControlPanel.Style.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(223)))), ((int)(((byte)(237)))), ((int)(((byte)(254)))));
     this.genneralTabControlPanel.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.genneralTabControlPanel.Style.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(59)))), ((int)(((byte)(97)))), ((int)(((byte)(156)))));
     this.genneralTabControlPanel.Style.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Right)
                 | DevComponents.DotNetBar.eBorderSide.Bottom)));
     this.genneralTabControlPanel.Style.GradientAngle = 90;
     this.genneralTabControlPanel.TabIndex = 3;
     this.genneralTabControlPanel.TabItem = this.fctTabItem;
     //
     // tabControlGeneralView
     //
     this.tabControlGeneralView.CanReorderTabs = true;
     this.tabControlGeneralView.Controls.Add(this.tabControlGeneralPanel);
     this.tabControlGeneralView.Controls.Add(this.tabControlPanel2);
     this.tabControlGeneralView.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabControlGeneralView.Location = new System.Drawing.Point(188, 1);
     this.tabControlGeneralView.Name = "tabControlGeneralView";
     this.tabControlGeneralView.SelectedTabFont = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold);
     this.tabControlGeneralView.SelectedTabIndex = 0;
     this.tabControlGeneralView.Size = new System.Drawing.Size(765, 258);
     this.tabControlGeneralView.TabAlignment = DevComponents.DotNetBar.eTabStripAlignment.Left;
     this.tabControlGeneralView.TabIndex = 6;
     this.tabControlGeneralView.TabLayoutType = DevComponents.DotNetBar.eTabLayoutType.FixedWithNavigationBox;
     this.tabControlGeneralView.Tabs.Add(this.tabItem1);
     this.tabControlGeneralView.Tabs.Add(this.tabItem2);
     //
     // tabControlGeneralPanel
     //
     this.tabControlGeneralPanel.Controls.Add(this.panelEx1);
     this.tabControlGeneralPanel.Controls.Add(this.judgeMatrixView);
     this.tabControlGeneralPanel.DisabledBackColor = System.Drawing.Color.Empty;
     this.tabControlGeneralPanel.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabControlGeneralPanel.Location = new System.Drawing.Point(26, 0);
     this.tabControlGeneralPanel.Name = "tabControlGeneralPanel";
     this.tabControlGeneralPanel.Padding = new System.Windows.Forms.Padding(1);
     this.tabControlGeneralPanel.Size = new System.Drawing.Size(739, 258);
     this.tabControlGeneralPanel.Style.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(142)))), ((int)(((byte)(179)))), ((int)(((byte)(231)))));
     this.tabControlGeneralPanel.Style.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(223)))), ((int)(((byte)(237)))), ((int)(((byte)(254)))));
     this.tabControlGeneralPanel.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.tabControlGeneralPanel.Style.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(59)))), ((int)(((byte)(97)))), ((int)(((byte)(156)))));
     this.tabControlGeneralPanel.Style.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Right | DevComponents.DotNetBar.eBorderSide.Top)
                 | DevComponents.DotNetBar.eBorderSide.Bottom)));
     this.tabControlGeneralPanel.TabIndex = 1;
     this.tabControlGeneralPanel.TabItem = this.tabItem1;
     //
     // panelEx1
     //
     this.panelEx1.CanvasColor = System.Drawing.SystemColors.Control;
     this.panelEx1.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.panelEx1.DisabledBackColor = System.Drawing.Color.Empty;
     this.panelEx1.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.panelEx1.Location = new System.Drawing.Point(1, 230);
     this.panelEx1.Name = "panelEx1";
     this.panelEx1.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.panelEx1.Size = new System.Drawing.Size(737, 27);
     this.panelEx1.Style.Alignment = System.Drawing.StringAlignment.Center;
     this.panelEx1.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.panelEx1.Style.BackColor2.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.panelEx1.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.panelEx1.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.panelEx1.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.panelEx1.Style.GradientAngle = 90;
     this.panelEx1.TabIndex = 7;
     this.panelEx1.Text = "视图左侧为板卡选择区板卡,顶部为下位机上报消息的板卡";
     //
     // tabItem1
     //
     this.tabItem1.AttachedControl = this.tabControlGeneralPanel;
     this.tabItem1.Name = "tabItem1";
     this.tabItem1.Text = "板卡";
     //
     // tabControlPanel2
     //
     this.tabControlPanel2.Controls.Add(this.componentSummaryViewGeneral);
     this.tabControlPanel2.DisabledBackColor = System.Drawing.Color.Empty;
     this.tabControlPanel2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabControlPanel2.Location = new System.Drawing.Point(26, 0);
     this.tabControlPanel2.Name = "tabControlPanel2";
     this.tabControlPanel2.Padding = new System.Windows.Forms.Padding(1);
     this.tabControlPanel2.Size = new System.Drawing.Size(739, 258);
     this.tabControlPanel2.Style.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(142)))), ((int)(((byte)(179)))), ((int)(((byte)(231)))));
     this.tabControlPanel2.Style.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(223)))), ((int)(((byte)(237)))), ((int)(((byte)(254)))));
     this.tabControlPanel2.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.tabControlPanel2.Style.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(59)))), ((int)(((byte)(97)))), ((int)(((byte)(156)))));
     this.tabControlPanel2.Style.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Right | DevComponents.DotNetBar.eBorderSide.Top)
                 | DevComponents.DotNetBar.eBorderSide.Bottom)));
     this.tabControlPanel2.TabIndex = 2;
     this.tabControlPanel2.TabItem = this.tabItem2;
     //
     // tabItem2
     //
     this.tabItem2.AttachedControl = this.tabControlPanel2;
     this.tabItem2.Name = "tabItem2";
     this.tabItem2.Text = "组件";
     //
     // generalCheckBoxTree
     //
     this.generalCheckBoxTree.CheckBoxes = true;
     this.generalCheckBoxTree.Dock = System.Windows.Forms.DockStyle.Left;
     this.generalCheckBoxTree.DrawMode = System.Windows.Forms.TreeViewDrawMode.OwnerDrawAll;
     this.generalCheckBoxTree.Location = new System.Drawing.Point(1, 1);
     this.generalCheckBoxTree.Name = "generalCheckBoxTree";
     this.generalCheckBoxTree.Size = new System.Drawing.Size(187, 258);
     this.generalCheckBoxTree.TabIndex = 3;
     this.generalCheckBoxTree.AfterCheck += new System.Windows.Forms.TreeViewEventHandler(this.generalCheckBoxTree_AfterCheck);
     //
     // generalLogList
     //
     this.generalLogList.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
     this.columnHeader3,
     this.columnHeader4});
     this.generalLogList.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.generalLogList.FullRowSelect = true;
     this.generalLogList.GridLines = true;
     this.generalLogList.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.Nonclickable;
     this.generalLogList.HideSelection = false;
     this.generalLogList.Location = new System.Drawing.Point(1, 259);
     this.generalLogList.MaxLogRecords = 300;
     this.generalLogList.MultiSelect = false;
     this.generalLogList.Name = "generalLogList";
     this.generalLogList.ShowGroups = false;
     this.generalLogList.Size = new System.Drawing.Size(952, 173);
     this.generalLogList.TabIndex = 4;
     this.generalLogList.Timer = null;
     this.generalLogList.UseCompatibleStateImageBehavior = false;
     this.generalLogList.View = System.Windows.Forms.View.Details;
     //
     // columnHeader3
     //
     this.columnHeader3.Text = "时间";
     this.columnHeader3.Width = 90;
     //
     // columnHeader4
     //
     this.columnHeader4.Text = "内容";
     this.columnHeader4.Width = 789;
     //
     // fctTabItem
     //
     this.fctTabItem.AttachedControl = this.fctTabControlPanel;
     this.fctTabItem.Name = "fctTabItem";
     this.fctTabItem.Text = "组件测试";
     this.fctTabItem.Visible = false;
     //
     // fctTabControlPanel
     //
     this.fctTabControlPanel.Controls.Add(this.componentSummaryView);
     this.fctTabControlPanel.Controls.Add(this.fctCheckBoxTree);
     this.fctTabControlPanel.Controls.Add(this.fctLogList);
     this.fctTabControlPanel.DisabledBackColor = System.Drawing.Color.Empty;
     this.fctTabControlPanel.Dock = System.Windows.Forms.DockStyle.Fill;
     this.fctTabControlPanel.Location = new System.Drawing.Point(0, 26);
     this.fctTabControlPanel.Name = "fctTabControlPanel";
     this.fctTabControlPanel.Padding = new System.Windows.Forms.Padding(1);
     this.fctTabControlPanel.Size = new System.Drawing.Size(954, 433);
     this.fctTabControlPanel.Style.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(142)))), ((int)(((byte)(179)))), ((int)(((byte)(231)))));
     this.fctTabControlPanel.Style.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(223)))), ((int)(((byte)(237)))), ((int)(((byte)(254)))));
     this.fctTabControlPanel.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.fctTabControlPanel.Style.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(59)))), ((int)(((byte)(97)))), ((int)(((byte)(156)))));
     this.fctTabControlPanel.Style.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Right)
                 | DevComponents.DotNetBar.eBorderSide.Bottom)));
     this.fctTabControlPanel.Style.GradientAngle = 90;
     this.fctTabControlPanel.TabIndex = 2;
     this.fctTabControlPanel.TabItem = this.genneralTabItem;
     //
     // fctCheckBoxTree
     //
     this.fctCheckBoxTree.CheckBoxes = true;
     this.fctCheckBoxTree.Dock = System.Windows.Forms.DockStyle.Left;
     this.fctCheckBoxTree.DrawMode = System.Windows.Forms.TreeViewDrawMode.OwnerDrawAll;
     this.fctCheckBoxTree.Location = new System.Drawing.Point(1, 1);
     this.fctCheckBoxTree.Name = "fctCheckBoxTree";
     this.fctCheckBoxTree.Size = new System.Drawing.Size(178, 251);
     this.fctCheckBoxTree.TabIndex = 5;
     this.fctCheckBoxTree.AfterCheck += new System.Windows.Forms.TreeViewEventHandler(this.fctCheckBoxTree_AfterCheck);
     //
     // fctLogList
     //
     this.fctLogList.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
     this.columnHeader5,
     this.columnHeader6});
     this.fctLogList.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.fctLogList.FullRowSelect = true;
     this.fctLogList.GridLines = true;
     this.fctLogList.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.Nonclickable;
     this.fctLogList.HideSelection = false;
     this.fctLogList.Location = new System.Drawing.Point(1, 252);
     this.fctLogList.MaxLogRecords = 300;
     this.fctLogList.MultiSelect = false;
     this.fctLogList.Name = "fctLogList";
     this.fctLogList.ShowGroups = false;
     this.fctLogList.Size = new System.Drawing.Size(952, 180);
     this.fctLogList.TabIndex = 6;
     this.fctLogList.Timer = null;
     this.fctLogList.UseCompatibleStateImageBehavior = false;
     this.fctLogList.View = System.Windows.Forms.View.Details;
     //
     // columnHeader5
     //
     this.columnHeader5.Text = "时间";
     this.columnHeader5.Width = 105;
     //
     // columnHeader6
     //
     this.columnHeader6.Text = "内容";
     this.columnHeader6.Width = 766;
     //
     // genneralTabItem
     //
     this.genneralTabItem.AttachedControl = this.genneralTabControlPanel;
     this.genneralTabItem.Name = "genneralTabItem";
     this.genneralTabItem.Text = "单板测试";
     this.genneralTabItem.Visible = false;
     //
     // statusTimer
     //
     this.statusTimer.Enabled = true;
     this.statusTimer.Interval = 1000;
     this.statusTimer.Tick += new System.EventHandler(this.statusTimer_Tick);
     //
     // styleManager2
     //
     this.styleManager2.ManagerStyle = DevComponents.DotNetBar.eStyle.Office2007Blue;
     this.styleManager2.MetroColorParameters = new DevComponents.DotNetBar.Metro.ColorTables.MetroColorGeneratorParameters(System.Drawing.Color.White, System.Drawing.Color.FromArgb(((int)(((byte)(43)))), ((int)(((byte)(87)))), ((int)(((byte)(154))))));
     //
     // styleManager3
     //
     this.styleManager3.ManagerStyle = DevComponents.DotNetBar.eStyle.Office2007Blue;
     this.styleManager3.MetroColorParameters = new DevComponents.DotNetBar.Metro.ColorTables.MetroColorGeneratorParameters(System.Drawing.Color.White, System.Drawing.Color.FromArgb(((int)(((byte)(43)))), ((int)(((byte)(87)))), ((int)(((byte)(154))))));
     //
     // judgeMatrixView
     //
     this.judgeMatrixView.Dock = System.Windows.Forms.DockStyle.Fill;
     this.judgeMatrixView.FullRowSelect = true;
     this.judgeMatrixView.GridLines = true;
     this.judgeMatrixView.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.Nonclickable;
     this.judgeMatrixView.HideSelection = false;
     this.judgeMatrixView.Location = new System.Drawing.Point(1, 1);
     this.judgeMatrixView.MultiSelect = false;
     this.judgeMatrixView.Name = "judgeMatrixView";
     this.judgeMatrixView.ShowGroups = false;
     this.judgeMatrixView.Size = new System.Drawing.Size(737, 256);
     this.judgeMatrixView.TabIndex = 6;
     this.judgeMatrixView.Timer = null;
     this.judgeMatrixView.UseCompatibleStateImageBehavior = false;
     this.judgeMatrixView.View = System.Windows.Forms.View.Details;
     //
     // componentSummaryViewGeneral
     //
     this.componentSummaryViewGeneral.Dock = System.Windows.Forms.DockStyle.Fill;
     this.componentSummaryViewGeneral.FullRowSelect = true;
     this.componentSummaryViewGeneral.GridLines = true;
     this.componentSummaryViewGeneral.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.Nonclickable;
     this.componentSummaryViewGeneral.HideSelection = false;
     this.componentSummaryViewGeneral.Location = new System.Drawing.Point(1, 1);
     this.componentSummaryViewGeneral.MultiSelect = false;
     this.componentSummaryViewGeneral.Name = "componentSummaryViewGeneral";
     this.componentSummaryViewGeneral.ShowGroups = false;
     this.componentSummaryViewGeneral.Size = new System.Drawing.Size(737, 256);
     this.componentSummaryViewGeneral.TabIndex = 8;
     this.componentSummaryViewGeneral.Timer = null;
     this.componentSummaryViewGeneral.UseCompatibleStateImageBehavior = false;
     this.componentSummaryViewGeneral.View = System.Windows.Forms.View.Details;
     //
     // componentSummaryView
     //
     this.componentSummaryView.Dock = System.Windows.Forms.DockStyle.Fill;
     this.componentSummaryView.FullRowSelect = true;
     this.componentSummaryView.GridLines = true;
     this.componentSummaryView.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.Nonclickable;
     this.componentSummaryView.HideSelection = false;
     this.componentSummaryView.Location = new System.Drawing.Point(179, 1);
     this.componentSummaryView.MultiSelect = false;
     this.componentSummaryView.Name = "componentSummaryView";
     this.componentSummaryView.ShowGroups = false;
     this.componentSummaryView.Size = new System.Drawing.Size(774, 251);
     this.componentSummaryView.TabIndex = 7;
     this.componentSummaryView.Timer = null;
     this.componentSummaryView.UseCompatibleStateImageBehavior = false;
     this.componentSummaryView.View = System.Windows.Forms.View.Details;
     //
     // FormMain
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(964, 673);
     this.Controls.Add(this.tabControl);
     this.Controls.Add(this.panelEx3);
     this.Controls.Add(this.ribbonControl);
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MinimumSize = new System.Drawing.Size(964, 673);
     this.Name = "FormMain";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "VPI3功能测试系统";
     this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
     this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.formMain_FormClosing);
     this.Load += new System.EventHandler(this.FormMain_Load);
     this.ribbonControl.ResumeLayout(false);
     this.ribbonControl.PerformLayout();
     this.selfRibbonPanel.ResumeLayout(false);
     this.genneralRibbonPanel.ResumeLayout(false);
     this.fctRibbonPanel.ResumeLayout(false);
     this.ribbonPanel1.ResumeLayout(false);
     this.panelEx3.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.tabControl)).EndInit();
     this.tabControl.ResumeLayout(false);
     this.selfTabControlPanel.ResumeLayout(false);
     this.genneralTabControlPanel.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.tabControlGeneralView)).EndInit();
     this.tabControlGeneralView.ResumeLayout(false);
     this.tabControlGeneralPanel.ResumeLayout(false);
     this.tabControlPanel2.ResumeLayout(false);
     this.fctTabControlPanel.ResumeLayout(false);
     this.ResumeLayout(false);
 }
コード例 #47
0
ファイル: GACPicker.cs プロジェクト: carlhuth/GenXSource
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(GACPicker));
     this.btnOK        = new Janus.Windows.EditControls.UIButton();
     this.btnCxl       = new Janus.Windows.EditControls.UIButton();
     this.lvAsms       = new System.Windows.Forms.ListView();
     this.AssemblyName = new System.Windows.Forms.ColumnHeader();
     this.Version      = new System.Windows.Forms.ColumnHeader();
     this.Culture      = new System.Windows.Forms.ColumnHeader();
     this.panelEx1     = new DevComponents.DotNetBar.PanelEx();
     this.panelEx1.SuspendLayout();
     this.SuspendLayout();
     //
     // btnOK
     //
     this.btnOK.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.btnOK.BackColor    = System.Drawing.SystemColors.Control;
     this.btnOK.DialogResult = System.Windows.Forms.DialogResult.OK;
     this.btnOK.Location     = new System.Drawing.Point(288, 8);
     this.btnOK.Name         = "btnOK";
     this.btnOK.Size         = new System.Drawing.Size(72, 24);
     this.btnOK.TabIndex     = 1;
     this.btnOK.Text         = "OK";
     this.btnOK.Click       += new System.EventHandler(this.btnOK_Click);
     //
     // btnCxl
     //
     this.btnCxl.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.btnCxl.BackColor    = System.Drawing.SystemColors.Control;
     this.btnCxl.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.btnCxl.Location     = new System.Drawing.Point(360, 8);
     this.btnCxl.Name         = "btnCxl";
     this.btnCxl.Size         = new System.Drawing.Size(72, 24);
     this.btnCxl.TabIndex     = 2;
     this.btnCxl.Text         = "Cancel";
     //
     // lvAsms
     //
     this.lvAsms.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
         this.AssemblyName,
         this.Version,
         this.Culture
     });
     this.lvAsms.Dock         = System.Windows.Forms.DockStyle.Fill;
     this.lvAsms.Location     = new System.Drawing.Point(0, 0);
     this.lvAsms.Name         = "lvAsms";
     this.lvAsms.Size         = new System.Drawing.Size(440, 576);
     this.lvAsms.TabIndex     = 3;
     this.lvAsms.View         = System.Windows.Forms.View.Details;
     this.lvAsms.DoubleClick += new System.EventHandler(this.btnOK_Click);
     //
     // AssemblyName
     //
     this.AssemblyName.Text  = "Assembly Name";
     this.AssemblyName.Width = 180;
     //
     // Version
     //
     this.Version.Text  = "Version";
     this.Version.Width = 100;
     //
     // Culture
     //
     this.Culture.Text  = "Culture";
     this.Culture.Width = 120;
     //
     // panelEx1
     //
     this.panelEx1.Controls.Add(this.btnCxl);
     this.panelEx1.Controls.Add(this.btnOK);
     this.panelEx1.Dock            = System.Windows.Forms.DockStyle.Bottom;
     this.panelEx1.Location        = new System.Drawing.Point(0, 576);
     this.panelEx1.Name            = "panelEx1";
     this.panelEx1.Size            = new System.Drawing.Size(440, 40);
     this.panelEx1.Style.Alignment = System.Drawing.StringAlignment.Center;
     this.panelEx1.Style.BackColor1.ColorSchemePart  = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
     this.panelEx1.Style.BackColor2.ColorSchemePart  = DevComponents.DotNetBar.eColorSchemePart.BarBackground2;
     this.panelEx1.Style.BackgroundImagePosition     = DevComponents.DotNetBar.eBackgroundImagePosition.Tile;
     this.panelEx1.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarDockedBorder;
     this.panelEx1.Style.ForeColor.ColorSchemePart   = DevComponents.DotNetBar.eColorSchemePart.ItemText;
     this.panelEx1.Style.GradientAngle = 90;
     this.panelEx1.TabIndex            = 4;
     //
     // GACPicker
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(440, 616);
     this.ControlBox        = false;
     this.Controls.Add(this.lvAsms);
     this.Controls.Add(this.panelEx1);
     this.Icon  = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Name  = "GACPicker";
     this.Text  = "Select Asssembly from GAC";
     this.Load += new System.EventHandler(this.GACPicker_Load);
     this.panelEx1.ResumeLayout(false);
     this.ResumeLayout(false);
 }
コード例 #48
0
 /// <summary> 
 /// 此為設計工具支援所需的方法 - 請勿使用程式碼編輯器修改這個方法的內容。
 ///
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     this.contextMenuBusy = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.menuBusy = new System.Windows.Forms.ToolStripMenuItem();
     this.menuBusyDesc = new System.Windows.Forms.ToolStripMenuItem();
     this.menuFree = new System.Windows.Forms.ToolStripMenuItem();
     this.tabItem2 = new DevComponents.DotNetBar.TabItem(this.components);
     this.tabItem1 = new DevComponents.DotNetBar.TabItem(this.components);
     this.contextMenuStripDelete = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.toolStripMenuItem2 = new System.Windows.Forms.ToolStripMenuItem();
     this.errGradeYear = new System.Windows.Forms.ErrorProvider(this.components);
     this.errorProvider2 = new System.Windows.Forms.ErrorProvider(this.components);
     this.dataGridViewTextBoxColumn1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn2 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn3 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn4 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn5 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn6 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn7 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn8 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colSubject = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colLevel = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.panelEx1 = new DevComponents.DotNetBar.PanelEx();
     this.lblName = new DevComponents.DotNetBar.LabelX();
     this.txtNote = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.labelX6 = new DevComponents.DotNetBar.LabelX();
     this.txtClassCode = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.labelX5 = new DevComponents.DotNetBar.LabelX();
     this.txtGradeYear = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.lblClassroomDesc = new DevComponents.DotNetBar.LabelX();
     this.contextMenuBusy.SuspendLayout();
     this.contextMenuStripDelete.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.errGradeYear)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider2)).BeginInit();
     this.panelEx1.SuspendLayout();
     this.SuspendLayout();
     //
     // contextMenuBusy
     //
     this.contextMenuBusy.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.menuBusy,
     this.menuBusyDesc,
     this.menuFree});
     this.contextMenuBusy.Name = "contextMenuStrip1";
     this.contextMenuBusy.ShowImageMargin = false;
     this.contextMenuBusy.Size = new System.Drawing.Size(186, 70);
     //
     // menuBusy
     //
     this.menuBusy.Name = "menuBusy";
     this.menuBusy.Size = new System.Drawing.Size(185, 22);
     this.menuBusy.Text = "設定不排課時段";
     //
     // menuBusyDesc
     //
     this.menuBusyDesc.Name = "menuBusyDesc";
     this.menuBusyDesc.Size = new System.Drawing.Size(185, 22);
     this.menuBusyDesc.Text = "設定不排課時段(指定描述)";
     //
     // menuFree
     //
     this.menuFree.Name = "menuFree";
     this.menuFree.Size = new System.Drawing.Size(185, 22);
     this.menuFree.Text = "取消設定";
     //
     // tabItem2
     //
     this.tabItem2.Name = "tabItem2";
     this.tabItem2.Text = "tabItem2";
     //
     // tabItem1
     //
     this.tabItem1.Name = "tabItem1";
     this.tabItem1.Text = "tabItem1";
     //
     // contextMenuStripDelete
     //
     this.contextMenuStripDelete.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.toolStripMenuItem2});
     this.contextMenuStripDelete.Name = "contextMenuStrip1";
     this.contextMenuStripDelete.ShowImageMargin = false;
     this.contextMenuStripDelete.Size = new System.Drawing.Size(70, 26);
     //
     // toolStripMenuItem2
     //
     this.toolStripMenuItem2.Name = "toolStripMenuItem2";
     this.toolStripMenuItem2.Size = new System.Drawing.Size(69, 22);
     this.toolStripMenuItem2.Text = "刪除";
     this.toolStripMenuItem2.Click += new System.EventHandler(this.toolStripMenuItemDelete_Click);
     //
     // errGradeYear
     //
     this.errGradeYear.ContainerControl = this;
     //
     // errorProvider2
     //
     this.errorProvider2.ContainerControl = this;
     //
     // dataGridViewTextBoxColumn1
     //
     this.dataGridViewTextBoxColumn1.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.dataGridViewTextBoxColumn1.HeaderText = "星期";
     this.dataGridViewTextBoxColumn1.Name = "dataGridViewTextBoxColumn1";
     this.dataGridViewTextBoxColumn1.Resizable = System.Windows.Forms.DataGridViewTriState.True;
     this.dataGridViewTextBoxColumn1.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     this.dataGridViewTextBoxColumn1.ToolTipText = "只能輸入1到7";
     //
     // dataGridViewTextBoxColumn2
     //
     this.dataGridViewTextBoxColumn2.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.dataGridViewTextBoxColumn2.HeaderText = "開始時間";
     this.dataGridViewTextBoxColumn2.Name = "dataGridViewTextBoxColumn2";
     this.dataGridViewTextBoxColumn2.Resizable = System.Windows.Forms.DataGridViewTriState.True;
     this.dataGridViewTextBoxColumn2.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     //
     // dataGridViewTextBoxColumn3
     //
     this.dataGridViewTextBoxColumn3.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.dataGridViewTextBoxColumn3.HeaderText = "結束時間";
     this.dataGridViewTextBoxColumn3.Name = "dataGridViewTextBoxColumn3";
     this.dataGridViewTextBoxColumn3.Resizable = System.Windows.Forms.DataGridViewTriState.True;
     this.dataGridViewTextBoxColumn3.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     //
     // dataGridViewTextBoxColumn4
     //
     this.dataGridViewTextBoxColumn4.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
     this.dataGridViewTextBoxColumn4.HeaderText = "不排課描述";
     this.dataGridViewTextBoxColumn4.Name = "dataGridViewTextBoxColumn4";
     //
     // dataGridViewTextBoxColumn5
     //
     this.dataGridViewTextBoxColumn5.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.dataGridViewTextBoxColumn5.HeaderText = "星期";
     this.dataGridViewTextBoxColumn5.Name = "dataGridViewTextBoxColumn5";
     this.dataGridViewTextBoxColumn5.ReadOnly = true;
     this.dataGridViewTextBoxColumn5.Resizable = System.Windows.Forms.DataGridViewTriState.True;
     this.dataGridViewTextBoxColumn5.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     this.dataGridViewTextBoxColumn5.ToolTipText = "只能輸入1到7";
     //
     // dataGridViewTextBoxColumn6
     //
     this.dataGridViewTextBoxColumn6.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.dataGridViewTextBoxColumn6.HeaderText = "開始時間";
     this.dataGridViewTextBoxColumn6.Name = "dataGridViewTextBoxColumn6";
     this.dataGridViewTextBoxColumn6.ReadOnly = true;
     this.dataGridViewTextBoxColumn6.Resizable = System.Windows.Forms.DataGridViewTriState.True;
     this.dataGridViewTextBoxColumn6.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     //
     // dataGridViewTextBoxColumn7
     //
     this.dataGridViewTextBoxColumn7.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.dataGridViewTextBoxColumn7.HeaderText = "結束時間";
     this.dataGridViewTextBoxColumn7.Name = "dataGridViewTextBoxColumn7";
     this.dataGridViewTextBoxColumn7.ReadOnly = true;
     this.dataGridViewTextBoxColumn7.Resizable = System.Windows.Forms.DataGridViewTriState.True;
     this.dataGridViewTextBoxColumn7.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     //
     // dataGridViewTextBoxColumn8
     //
     this.dataGridViewTextBoxColumn8.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
     this.dataGridViewTextBoxColumn8.HeaderText = "不排課描述";
     this.dataGridViewTextBoxColumn8.Name = "dataGridViewTextBoxColumn8";
     this.dataGridViewTextBoxColumn8.ReadOnly = true;
     //
     // colSubject
     //
     this.colSubject.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
     this.colSubject.HeaderText = "科目";
     this.colSubject.Name = "colSubject";
     //
     // colLevel
     //
     this.colLevel.HeaderText = "級別";
     this.colLevel.Name = "colLevel";
     //
     // panelEx1
     //
     this.panelEx1.CanvasColor = System.Drawing.SystemColors.Control;
     this.panelEx1.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.panelEx1.Controls.Add(this.lblName);
     this.panelEx1.Controls.Add(this.txtNote);
     this.panelEx1.Controls.Add(this.labelX6);
     this.panelEx1.Controls.Add(this.txtClassCode);
     this.panelEx1.Controls.Add(this.labelX5);
     this.panelEx1.Controls.Add(this.txtGradeYear);
     this.panelEx1.Controls.Add(this.lblClassroomDesc);
     this.panelEx1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panelEx1.Location = new System.Drawing.Point(0, 0);
     this.panelEx1.Name = "panelEx1";
     this.panelEx1.Size = new System.Drawing.Size(640, 428);
     this.panelEx1.Style.Alignment = System.Drawing.StringAlignment.Center;
     this.panelEx1.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.panelEx1.Style.BackColor2.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.panelEx1.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.panelEx1.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.panelEx1.Style.GradientAngle = 90;
     this.panelEx1.TabIndex = 2;
     //
     // lblName
     //
     this.lblName.AutoSize = true;
     //
     //
     //
     this.lblName.BackgroundStyle.Class = "";
     this.lblName.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.lblName.Font = new System.Drawing.Font("微軟正黑體", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(136)));
     this.lblName.Location = new System.Drawing.Point(13, 12);
     this.lblName.Name = "lblName";
     this.lblName.Size = new System.Drawing.Size(87, 32);
     this.lblName.TabIndex = 29;
     this.lblName.Text = "班級名稱";
     //
     // txtNote
     //
     //
     //
     //
     this.txtNote.Border.Class = "TextBoxBorder";
     this.txtNote.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txtNote.Location = new System.Drawing.Point(60, 139);
     this.txtNote.Multiline = true;
     this.txtNote.Name = "txtNote";
     this.txtNote.Size = new System.Drawing.Size(211, 202);
     this.txtNote.TabIndex = 28;
     //
     // labelX6
     //
     this.labelX6.AutoSize = true;
     //
     //
     //
     this.labelX6.BackgroundStyle.Class = "";
     this.labelX6.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX6.Location = new System.Drawing.Point(14, 139);
     this.labelX6.Name = "labelX6";
     this.labelX6.Size = new System.Drawing.Size(34, 21);
     this.labelX6.TabIndex = 27;
     this.labelX6.Text = "註記";
     //
     // txtClassCode
     //
     //
     //
     //
     this.txtClassCode.Border.Class = "TextBoxBorder";
     this.txtClassCode.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txtClassCode.Location = new System.Drawing.Point(59, 93);
     this.txtClassCode.Name = "txtClassCode";
     this.txtClassCode.Size = new System.Drawing.Size(107, 25);
     this.txtClassCode.TabIndex = 26;
     //
     // labelX5
     //
     this.labelX5.AutoSize = true;
     //
     //
     //
     this.labelX5.BackgroundStyle.Class = "";
     this.labelX5.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX5.Location = new System.Drawing.Point(14, 92);
     this.labelX5.Name = "labelX5";
     this.labelX5.Size = new System.Drawing.Size(34, 21);
     this.labelX5.TabIndex = 25;
     this.labelX5.Text = "代碼";
     //
     // txtGradeYear
     //
     //
     //
     //
     this.txtGradeYear.Border.Class = "TextBoxBorder";
     this.txtGradeYear.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txtGradeYear.Location = new System.Drawing.Point(59, 50);
     this.txtGradeYear.Name = "txtGradeYear";
     this.txtGradeYear.Size = new System.Drawing.Size(107, 25);
     this.txtGradeYear.TabIndex = 24;
     //
     // lblClassroomDesc
     //
     this.lblClassroomDesc.AutoSize = true;
     //
     //
     //
     this.lblClassroomDesc.BackgroundStyle.Class = "";
     this.lblClassroomDesc.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.lblClassroomDesc.Location = new System.Drawing.Point(14, 52);
     this.lblClassroomDesc.Name = "lblClassroomDesc";
     this.lblClassroomDesc.Size = new System.Drawing.Size(34, 21);
     this.lblClassroomDesc.TabIndex = 23;
     this.lblClassroomDesc.Text = "年級";
     //
     // ClassEditor
     //
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
     this.Controls.Add(this.panelEx1);
     this.Font = new System.Drawing.Font("微軟正黑體", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(136)));
     this.Name = "ClassEditor";
     this.Size = new System.Drawing.Size(640, 428);
     this.contextMenuBusy.ResumeLayout(false);
     this.contextMenuStripDelete.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.errGradeYear)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider2)).EndInit();
     this.panelEx1.ResumeLayout(false);
     this.panelEx1.PerformLayout();
     this.ResumeLayout(false);
 }
コード例 #49
0
ファイル: App.cs プロジェクト: xingwa/xingwa-manage
 private void InitializeComponent()
 {
     System.Windows.Forms.TreeNode treeNode1 = new System.Windows.Forms.TreeNode("节点1");
     System.Windows.Forms.TreeNode treeNode2 = new System.Windows.Forms.TreeNode("节点2");
     System.Windows.Forms.TreeNode treeNode3 = new System.Windows.Forms.TreeNode("节点3");
     System.Windows.Forms.TreeNode treeNode4 = new System.Windows.Forms.TreeNode("C2C买卖管理", new System.Windows.Forms.TreeNode[] {
         treeNode1,
         treeNode2,
         treeNode3
     });
     System.Windows.Forms.TreeNode treeNode5  = new System.Windows.Forms.TreeNode("节点5");
     System.Windows.Forms.TreeNode treeNode6  = new System.Windows.Forms.TreeNode("节点6");
     System.Windows.Forms.TreeNode treeNode7  = new System.Windows.Forms.TreeNode("节点7");
     System.Windows.Forms.TreeNode treeNode8  = new System.Windows.Forms.TreeNode("节点8");
     System.Windows.Forms.TreeNode treeNode9  = new System.Windows.Forms.TreeNode("节点9");
     System.Windows.Forms.TreeNode treeNode10 = new System.Windows.Forms.TreeNode("节点10");
     System.Windows.Forms.TreeNode treeNode11 = new System.Windows.Forms.TreeNode("节点4", new System.Windows.Forms.TreeNode[] {
         treeNode5,
         treeNode6,
         treeNode7,
         treeNode8,
         treeNode9,
         treeNode10
     });
     this.statusStripDiv        = new System.Windows.Forms.StatusStrip();
     this.toolStripStatusLabel1 = new System.Windows.Forms.ToolStripStatusLabel();
     this.divMain             = new System.Windows.Forms.Panel();
     this.topDiv              = new DevComponents.DotNetBar.PanelEx();
     this.lineDiv             = new DevComponents.DotNetBar.Controls.Line();
     this.skinLabelName       = new xingwaWinFormUI.SkinControl.SkinLabel();
     this.symbolBox1          = new DevComponents.DotNetBar.Controls.SymbolBox();
     this.div                 = new System.Windows.Forms.Panel();
     this.panelEx3            = new DevComponents.DotNetBar.PanelEx();
     this.expandableSplitter1 = new DevComponents.DotNetBar.ExpandableSplitter();
     this.panelEx1            = new DevComponents.DotNetBar.PanelEx();
     this.panel1              = new System.Windows.Forms.Panel();
     this.treeView1           = new System.Windows.Forms.TreeView();
     this.statusStripDiv.SuspendLayout();
     this.divMain.SuspendLayout();
     this.topDiv.SuspendLayout();
     this.div.SuspendLayout();
     this.panelEx1.SuspendLayout();
     this.panel1.SuspendLayout();
     this.SuspendLayout();
     //
     // statusStripDiv
     //
     this.statusStripDiv.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.toolStripStatusLabel1
     });
     this.statusStripDiv.Location = new System.Drawing.Point(3, 743);
     this.statusStripDiv.Name     = "statusStripDiv";
     this.statusStripDiv.Size     = new System.Drawing.Size(1018, 22);
     this.statusStripDiv.TabIndex = 0;
     this.statusStripDiv.Text     = "statusStrip1";
     //
     // toolStripStatusLabel1
     //
     this.toolStripStatusLabel1.BackColor = System.Drawing.Color.Transparent;
     this.toolStripStatusLabel1.Name      = "toolStripStatusLabel1";
     this.toolStripStatusLabel1.Size      = new System.Drawing.Size(186, 17);
     this.toolStripStatusLabel1.Text      = "现在时间:2018-05-04 13:22:10";
     //
     // divMain
     //
     this.divMain.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.divMain.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(225)))), ((int)(((byte)(235)))), ((int)(((byte)(247)))));
     this.divMain.Controls.Add(this.div);
     this.divMain.Location = new System.Drawing.Point(1, 66);
     this.divMain.Name     = "divMain";
     this.divMain.Size     = new System.Drawing.Size(1022, 677);
     this.divMain.TabIndex = 1;
     //
     // topDiv
     //
     this.topDiv.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                | System.Windows.Forms.AnchorStyles.Right)));
     this.topDiv.CanvasColor      = System.Drawing.SystemColors.Control;
     this.topDiv.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.OfficeMobile2014;
     this.topDiv.Controls.Add(this.lineDiv);
     this.topDiv.Controls.Add(this.skinLabelName);
     this.topDiv.Controls.Add(this.symbolBox1);
     this.topDiv.DisabledBackColor = System.Drawing.Color.Empty;
     this.topDiv.Location          = new System.Drawing.Point(2, 23);
     this.topDiv.Name                            = "topDiv";
     this.topDiv.Size                            = new System.Drawing.Size(1019, 46);
     this.topDiv.Style.Alignment                 = System.Drawing.StringAlignment.Center;
     this.topDiv.Style.BackColor1.Color          = System.Drawing.Color.FromArgb(((int)(((byte)(49)))), ((int)(((byte)(150)))), ((int)(((byte)(178)))));
     this.topDiv.Style.BackColor2.Color          = System.Drawing.Color.FromArgb(((int)(((byte)(159)))), ((int)(((byte)(206)))), ((int)(((byte)(219)))));
     this.topDiv.Style.BorderColor.Color         = System.Drawing.Color.Transparent;
     this.topDiv.Style.BorderWidth               = 0;
     this.topDiv.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.topDiv.Style.GradientAngle             = 90;
     this.topDiv.TabIndex                        = 2;
     this.topDiv.MouseDown                      += new System.Windows.Forms.MouseEventHandler(this.topDiv_MouseDown);
     //
     // lineDiv
     //
     this.lineDiv.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                 | System.Windows.Forms.AnchorStyles.Right)));
     this.lineDiv.DashStyle = System.Drawing.Drawing2D.DashStyle.Dash;
     this.lineDiv.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(88)))), ((int)(((byte)(170)))), ((int)(((byte)(192)))));
     this.lineDiv.Location  = new System.Drawing.Point(-2, 41);
     this.lineDiv.Name      = "lineDiv";
     this.lineDiv.Size      = new System.Drawing.Size(1016, 3);
     this.lineDiv.TabIndex  = 3;
     //
     // skinLabelName
     //
     this.skinLabelName.AutoSize    = true;
     this.skinLabelName.BackColor   = System.Drawing.Color.Transparent;
     this.skinLabelName.BorderColor = System.Drawing.Color.Transparent;
     this.skinLabelName.Font        = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.skinLabelName.ForeColor   = System.Drawing.Color.White;
     this.skinLabelName.Location    = new System.Drawing.Point(32, 7);
     this.skinLabelName.Name        = "skinLabelName";
     this.skinLabelName.Size        = new System.Drawing.Size(140, 17);
     this.skinLabelName.TabIndex    = 1;
     this.skinLabelName.Text        = "欢迎您:成都新交所张三";
     this.skinLabelName.MouseDown  += new System.Windows.Forms.MouseEventHandler(this.skinLabelName_MouseDown);
     //
     // symbolBox1
     //
     this.symbolBox1.BackColor = System.Drawing.Color.Transparent;
     //
     //
     //
     this.symbolBox1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.symbolBox1.Font        = new System.Drawing.Font("微软雅黑", 9F);
     this.symbolBox1.Location    = new System.Drawing.Point(2, 5);
     this.symbolBox1.Name        = "symbolBox1";
     this.symbolBox1.Size        = new System.Drawing.Size(34, 23);
     this.symbolBox1.Symbol      = "";
     this.symbolBox1.SymbolColor = System.Drawing.Color.GhostWhite;
     this.symbolBox1.TabIndex    = 2;
     this.symbolBox1.Text        = "symbolBox1";
     //
     // div
     //
     this.div.Controls.Add(this.panelEx3);
     this.div.Controls.Add(this.expandableSplitter1);
     this.div.Controls.Add(this.panelEx1);
     this.div.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.div.Location = new System.Drawing.Point(0, 0);
     this.div.Name     = "div";
     this.div.Size     = new System.Drawing.Size(1022, 677);
     this.div.TabIndex = 1;
     //
     // panelEx3
     //
     this.panelEx3.DisabledBackColor = System.Drawing.Color.Empty;
     this.panelEx3.Dock                              = System.Windows.Forms.DockStyle.Fill;
     this.panelEx3.Location                          = new System.Drawing.Point(157, 0);
     this.panelEx3.Name                              = "panelEx3";
     this.panelEx3.Size                              = new System.Drawing.Size(865, 677);
     this.panelEx3.Style.Alignment                   = System.Drawing.StringAlignment.Center;
     this.panelEx3.Style.BackColor1.Color            = System.Drawing.Color.White;
     this.panelEx3.Style.BackColor2.Color            = System.Drawing.Color.White;
     this.panelEx3.Style.BackgroundImagePosition     = DevComponents.DotNetBar.eBackgroundImagePosition.Tile;
     this.panelEx3.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarDockedBorder;
     this.panelEx3.Style.ForeColor.ColorSchemePart   = DevComponents.DotNetBar.eColorSchemePart.ItemText;
     this.panelEx3.Style.GradientAngle               = 90;
     this.panelEx3.TabIndex                          = 2;
     this.panelEx3.Text                              = "Fill Panel";
     //
     // expandableSplitter1
     //
     this.expandableSplitter1.BackColor                    = System.Drawing.SystemColors.ControlLight;
     this.expandableSplitter1.BackColor2                   = System.Drawing.Color.Empty;
     this.expandableSplitter1.BackColor2SchemePart         = DevComponents.DotNetBar.eColorSchemePart.None;
     this.expandableSplitter1.BackColorSchemePart          = DevComponents.DotNetBar.eColorSchemePart.None;
     this.expandableSplitter1.ExpandableControl            = this.panelEx1;
     this.expandableSplitter1.ExpandFillColor              = System.Drawing.Color.FromArgb(((int)(((byte)(152)))), ((int)(((byte)(181)))), ((int)(((byte)(226)))));
     this.expandableSplitter1.ExpandFillColorSchemePart    = DevComponents.DotNetBar.eColorSchemePart.ItemPressedBackground;
     this.expandableSplitter1.ExpandLineColor              = System.Drawing.Color.FromArgb(((int)(((byte)(75)))), ((int)(((byte)(75)))), ((int)(((byte)(111)))));
     this.expandableSplitter1.ExpandLineColorSchemePart    = DevComponents.DotNetBar.eColorSchemePart.ItemPressedBorder;
     this.expandableSplitter1.ForeColor                    = System.Drawing.Color.Black;
     this.expandableSplitter1.GripDarkColor                = System.Drawing.Color.FromArgb(((int)(((byte)(75)))), ((int)(((byte)(75)))), ((int)(((byte)(111)))));
     this.expandableSplitter1.GripDarkColorSchemePart      = DevComponents.DotNetBar.eColorSchemePart.ItemPressedBorder;
     this.expandableSplitter1.GripLightColor               = System.Drawing.Color.FromArgb(((int)(((byte)(252)))), ((int)(((byte)(252)))), ((int)(((byte)(249)))));
     this.expandableSplitter1.GripLightColorSchemePart     = DevComponents.DotNetBar.eColorSchemePart.MenuBackground;
     this.expandableSplitter1.HotBackColor                 = System.Drawing.Color.FromArgb(((int)(((byte)(225)))), ((int)(((byte)(230)))), ((int)(((byte)(232)))));
     this.expandableSplitter1.HotBackColor2                = System.Drawing.Color.Empty;
     this.expandableSplitter1.HotBackColor2SchemePart      = DevComponents.DotNetBar.eColorSchemePart.None;
     this.expandableSplitter1.HotBackColorSchemePart       = DevComponents.DotNetBar.eColorSchemePart.ItemCheckedBackground;
     this.expandableSplitter1.HotExpandFillColor           = System.Drawing.Color.FromArgb(((int)(((byte)(152)))), ((int)(((byte)(181)))), ((int)(((byte)(226)))));
     this.expandableSplitter1.HotExpandFillColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemPressedBackground;
     this.expandableSplitter1.HotExpandLineColor           = System.Drawing.Color.FromArgb(((int)(((byte)(75)))), ((int)(((byte)(75)))), ((int)(((byte)(111)))));
     this.expandableSplitter1.HotExpandLineColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemPressedBorder;
     this.expandableSplitter1.HotGripDarkColor             = System.Drawing.Color.FromArgb(((int)(((byte)(75)))), ((int)(((byte)(75)))), ((int)(((byte)(111)))));
     this.expandableSplitter1.HotGripDarkColorSchemePart   = DevComponents.DotNetBar.eColorSchemePart.ItemPressedBorder;
     this.expandableSplitter1.HotGripLightColor            = System.Drawing.Color.FromArgb(((int)(((byte)(252)))), ((int)(((byte)(252)))), ((int)(((byte)(249)))));
     this.expandableSplitter1.HotGripLightColorSchemePart  = DevComponents.DotNetBar.eColorSchemePart.MenuBackground;
     this.expandableSplitter1.Location = new System.Drawing.Point(152, 0);
     this.expandableSplitter1.MinExtra = 10;
     this.expandableSplitter1.MinSize  = 5;
     this.expandableSplitter1.Name     = "expandableSplitter1";
     this.expandableSplitter1.Size     = new System.Drawing.Size(5, 677);
     this.expandableSplitter1.Style    = DevComponents.DotNetBar.eSplitterStyle.Mozilla;
     this.expandableSplitter1.TabIndex = 400;
     this.expandableSplitter1.TabStop  = false;
     //
     // panelEx1
     //
     this.panelEx1.Controls.Add(this.panel1);
     this.panelEx1.DisabledBackColor = System.Drawing.Color.Empty;
     this.panelEx1.Dock                              = System.Windows.Forms.DockStyle.Left;
     this.panelEx1.Location                          = new System.Drawing.Point(0, 0);
     this.panelEx1.Name                              = "panelEx1";
     this.panelEx1.Size                              = new System.Drawing.Size(152, 677);
     this.panelEx1.Style.Alignment                   = System.Drawing.StringAlignment.Center;
     this.panelEx1.Style.BackColor1.Color            = System.Drawing.Color.White;
     this.panelEx1.Style.BackColor2.Color            = System.Drawing.Color.White;
     this.panelEx1.Style.BackgroundImagePosition     = DevComponents.DotNetBar.eBackgroundImagePosition.Tile;
     this.panelEx1.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarDockedBorder;
     this.panelEx1.Style.ForeColor.ColorSchemePart   = DevComponents.DotNetBar.eColorSchemePart.ItemText;
     this.panelEx1.Style.GradientAngle               = 90;
     this.panelEx1.Style.WordWrap                    = true;
     this.panelEx1.TabIndex                          = 0;
     this.panelEx1.Text                              = "Click to collapse12";
     //
     // panel1
     //
     this.panel1.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.panel1.Controls.Add(this.treeView1);
     this.panel1.Location = new System.Drawing.Point(3, 7);
     this.panel1.Name     = "panel1";
     this.panel1.Size     = new System.Drawing.Size(146, 667);
     this.panel1.TabIndex = 0;
     //
     // treeView1
     //
     this.treeView1.BackColor   = System.Drawing.Color.White;
     this.treeView1.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.treeView1.Dock        = System.Windows.Forms.DockStyle.Fill;
     this.treeView1.Font        = new System.Drawing.Font("微软雅黑", 9F);
     this.treeView1.Location    = new System.Drawing.Point(0, 0);
     this.treeView1.Name        = "treeView1";
     treeNode1.Name             = "节点1";
     treeNode1.Text             = "节点1";
     treeNode2.Name             = "节点2";
     treeNode2.Text             = "节点2";
     treeNode3.Name             = "节点3";
     treeNode3.Text             = "节点3";
     treeNode4.Name             = "节点0";
     treeNode4.Text             = "C2C买卖管理";
     treeNode5.Name             = "节点5";
     treeNode5.Text             = "节点5";
     treeNode6.Name             = "节点6";
     treeNode6.Text             = "节点6";
     treeNode7.Name             = "节点7";
     treeNode7.Text             = "节点7";
     treeNode8.Name             = "节点8";
     treeNode8.Text             = "节点8";
     treeNode9.Name             = "节点9";
     treeNode9.Text             = "节点9";
     treeNode10.Name            = "节点10";
     treeNode10.Text            = "节点10";
     treeNode11.Name            = "节点4";
     treeNode11.Text            = "节点4";
     this.treeView1.Nodes.AddRange(new System.Windows.Forms.TreeNode[] {
         treeNode4,
         treeNode11
     });
     this.treeView1.ShowNodeToolTips = true;
     this.treeView1.Size             = new System.Drawing.Size(146, 667);
     this.treeView1.TabIndex         = 1;
     //
     // backend
     //
     this.BackColor  = System.Drawing.Color.FromArgb(((int)(((byte)(49)))), ((int)(((byte)(150)))), ((int)(((byte)(178)))));
     this.ClientSize = new System.Drawing.Size(1024, 768);
     this.Controls.Add(this.topDiv);
     this.Controls.Add(this.divMain);
     this.Controls.Add(this.statusStripDiv);
     this.Name          = "backend";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text          = "测试系统";
     this.statusStripDiv.ResumeLayout(false);
     this.statusStripDiv.PerformLayout();
     this.divMain.ResumeLayout(false);
     this.topDiv.ResumeLayout(false);
     this.topDiv.PerformLayout();
     this.div.ResumeLayout(false);
     this.panelEx1.ResumeLayout(false);
     this.panel1.ResumeLayout(false);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
コード例 #50
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(GACPicker));
     this.btnOK        = new Janus.Windows.EditControls.UIButton();
     this.btnCxl       = new Janus.Windows.EditControls.UIButton();
     this.lvAsms       = new System.Windows.Forms.ListView();
     this.AssemblyName = new System.Windows.Forms.ColumnHeader();
     this.Version      = new System.Windows.Forms.ColumnHeader();
     this.Culture      = new System.Windows.Forms.ColumnHeader();
     this.panelEx1     = new DevComponents.DotNetBar.PanelEx();
     this.panelEx1.SuspendLayout();
     this.SuspendLayout();
     //
     // btnOK
     //
     this.btnOK.AccessibleDescription = null;
     this.btnOK.AccessibleName        = null;
     resources.ApplyResources(this.btnOK, "btnOK");
     this.btnOK.BackColor       = System.Drawing.SystemColors.Control;
     this.btnOK.BackgroundImage = null;
     this.btnOK.DialogResult    = System.Windows.Forms.DialogResult.OK;
     this.btnOK.Font            = null;
     this.btnOK.Name            = "btnOK";
     this.btnOK.VisualStyle     = Janus.Windows.UI.VisualStyle.Office2003;
     this.btnOK.Click          += new System.EventHandler(this.btnOK_Click);
     //
     // btnCxl
     //
     this.btnCxl.AccessibleDescription = null;
     this.btnCxl.AccessibleName        = null;
     resources.ApplyResources(this.btnCxl, "btnCxl");
     this.btnCxl.BackColor       = System.Drawing.SystemColors.Control;
     this.btnCxl.BackgroundImage = null;
     this.btnCxl.DialogResult    = System.Windows.Forms.DialogResult.Cancel;
     this.btnCxl.Font            = null;
     this.btnCxl.Name            = "btnCxl";
     this.btnCxl.VisualStyle     = Janus.Windows.UI.VisualStyle.Office2003;
     //
     // lvAsms
     //
     this.lvAsms.AccessibleDescription = null;
     this.lvAsms.AccessibleName        = null;
     resources.ApplyResources(this.lvAsms, "lvAsms");
     this.lvAsms.BackgroundImage = null;
     this.lvAsms.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
         this.AssemblyName,
         this.Version,
         this.Culture
     });
     this.lvAsms.Font = null;
     this.lvAsms.Name = "lvAsms";
     this.lvAsms.UseCompatibleStateImageBehavior = false;
     this.lvAsms.View         = System.Windows.Forms.View.Details;
     this.lvAsms.DoubleClick += new System.EventHandler(this.btnOK_Click);
     //
     // AssemblyName
     //
     resources.ApplyResources(this.AssemblyName, "AssemblyName");
     //
     // Version
     //
     resources.ApplyResources(this.Version, "Version");
     //
     // Culture
     //
     resources.ApplyResources(this.Culture, "Culture");
     //
     // panelEx1
     //
     this.panelEx1.AccessibleDescription = null;
     this.panelEx1.AccessibleName        = null;
     resources.ApplyResources(this.panelEx1, "panelEx1");
     this.panelEx1.Controls.Add(this.btnCxl);
     this.panelEx1.Controls.Add(this.btnOK);
     this.panelEx1.Font            = null;
     this.panelEx1.Name            = "panelEx1";
     this.panelEx1.Style.Alignment = System.Drawing.StringAlignment.Center;
     this.panelEx1.Style.BackColor1.ColorSchemePart  = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
     this.panelEx1.Style.BackColor2.ColorSchemePart  = DevComponents.DotNetBar.eColorSchemePart.BarBackground2;
     this.panelEx1.Style.BackgroundImagePosition     = DevComponents.DotNetBar.eBackgroundImagePosition.Tile;
     this.panelEx1.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarDockedBorder;
     this.panelEx1.Style.ForeColor.ColorSchemePart   = DevComponents.DotNetBar.eColorSchemePart.ItemText;
     this.panelEx1.Style.GradientAngle = 90;
     //
     // GACPicker
     //
     this.AccessibleDescription = null;
     this.AccessibleName        = null;
     resources.ApplyResources(this, "$this");
     this.BackgroundImage = null;
     this.ControlBox      = false;
     this.Controls.Add(this.lvAsms);
     this.Controls.Add(this.panelEx1);
     this.DoubleBuffered = true;
     this.Font           = null;
     this.Name           = "GACPicker";
     this.Load          += new System.EventHandler(this.GACPicker_Load);
     this.panelEx1.ResumeLayout(false);
     this.ResumeLayout(false);
 }
コード例 #51
0
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            DevComponents.DotNetBar.PanelEx panelEx7;
            DevComponents.DotNetBar.LabelX labelX4;
            DevComponents.DotNetBar.PanelEx panelEx11;
            DevComponents.DotNetBar.LabelX labelX10;
            DevComponents.DotNetBar.PanelEx panelEx14;
            DevComponents.DotNetBar.LabelX labelX13;
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle154 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle155 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle156 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle157 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle158 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle159 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle160 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle161 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle162 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle163 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle164 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle165 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle166 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle167 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle168 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle169 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle170 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle171 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle172 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle173 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle174 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle175 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle176 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle177 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle178 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle179 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle180 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle181 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle182 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle183 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle184 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle185 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle186 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle187 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle188 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle189 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle190 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle191 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle192 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle193 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle194 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle195 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle196 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle197 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle198 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle199 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle200 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle201 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle202 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle203 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle204 = new System.Windows.Forms.DataGridViewCellStyle();
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmSetting));
            this.superTabControl1 = new DevComponents.DotNetBar.SuperTabControl();
            this.superTabControlPanel16 = new DevComponents.DotNetBar.SuperTabControlPanel();
            this.panelEx54 = new DevComponents.DotNetBar.PanelEx();
            this.panelEx55 = new DevComponents.DotNetBar.PanelEx();
            this.groupPanel29 = new DevComponents.DotNetBar.Controls.GroupPanel();
            this.groupPanel31 = new DevComponents.DotNetBar.Controls.GroupPanel();
            this.checkBoxX11 = new DevComponents.DotNetBar.Controls.CheckBoxX();
            this.checkBoxX12 = new DevComponents.DotNetBar.Controls.CheckBoxX();
            this.groupPanel32 = new DevComponents.DotNetBar.Controls.GroupPanel();
            this.checkBoxX13 = new DevComponents.DotNetBar.Controls.CheckBoxX();
            this.checkBoxX14 = new DevComponents.DotNetBar.Controls.CheckBoxX();
            this.groupPanel25 = new DevComponents.DotNetBar.Controls.GroupPanel();
            this.groupPanel28 = new DevComponents.DotNetBar.Controls.GroupPanel();
            this.checkBoxX7 = new DevComponents.DotNetBar.Controls.CheckBoxX();
            this.checkBoxX8 = new DevComponents.DotNetBar.Controls.CheckBoxX();
            this.groupPanel27 = new DevComponents.DotNetBar.Controls.GroupPanel();
            this.checkBoxX3 = new DevComponents.DotNetBar.Controls.CheckBoxX();
            this.checkBoxX4 = new DevComponents.DotNetBar.Controls.CheckBoxX();
            this.groupPanel26 = new DevComponents.DotNetBar.Controls.GroupPanel();
            this.checkBoxX5 = new DevComponents.DotNetBar.Controls.CheckBoxX();
            this.checkBoxX6 = new DevComponents.DotNetBar.Controls.CheckBoxX();
            this.panelEx56 = new DevComponents.DotNetBar.PanelEx();
            this.buttonX47 = new DevComponents.DotNetBar.ButtonX();
            this.labelX33 = new DevComponents.DotNetBar.LabelX();
            this.panelEx53 = new DevComponents.DotNetBar.PanelEx();
            this.labelX31 = new DevComponents.DotNetBar.LabelX();
            this.superTabItem16 = new DevComponents.DotNetBar.SuperTabItem();
            this.superTabControlPanel5 = new DevComponents.DotNetBar.SuperTabControlPanel();
            this.panelEx3 = new DevComponents.DotNetBar.PanelEx();
            this.labelX29 = new DevComponents.DotNetBar.LabelX();
            this.textBoxX14 = new DevComponents.DotNetBar.Controls.TextBoxX();
            this.cancelButton = new DevComponents.DotNetBar.ButtonX();
            this.saveButton = new DevComponents.DotNetBar.ButtonX();
            this.labelX3 = new DevComponents.DotNetBar.LabelX();
            this.textBoxX3 = new DevComponents.DotNetBar.Controls.TextBoxX();
            this.labelX2 = new DevComponents.DotNetBar.LabelX();
            this.textBoxX2 = new DevComponents.DotNetBar.Controls.TextBoxX();
            this.labelX6 = new DevComponents.DotNetBar.LabelX();
            this.textBoxX1 = new DevComponents.DotNetBar.Controls.TextBoxX();
            this.panelEx2 = new DevComponents.DotNetBar.PanelEx();
            this.labelX90 = new DevComponents.DotNetBar.LabelX();
            this.superTabItem5 = new DevComponents.DotNetBar.SuperTabItem();
            this.superTabControlPanel14 = new DevComponents.DotNetBar.SuperTabControlPanel();
            this.panelEx45 = new DevComponents.DotNetBar.PanelEx();
            this.panelEx46 = new DevComponents.DotNetBar.PanelEx();
            this.groupPanel23 = new DevComponents.DotNetBar.Controls.GroupPanel();
            this.dataGridViewX16 = new DevComponents.DotNetBar.Controls.DataGridViewX();
            this.Column46 = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.Column47 = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.Column48 = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.Column49 = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.Column50 = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.Column51 = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.Column52 = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.Column53 = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.Column54 = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.Column55 = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.Column56 = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.Column57 = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.groupPanel22 = new DevComponents.DotNetBar.Controls.GroupPanel();
            this.labelX21 = new DevComponents.DotNetBar.LabelX();
            this.textBoxX18 = new DevComponents.DotNetBar.Controls.TextBoxX();
            this.textBoxX17 = new DevComponents.DotNetBar.Controls.TextBoxX();
            this.labelX12 = new DevComponents.DotNetBar.LabelX();
            this.textBoxX15 = new DevComponents.DotNetBar.Controls.TextBoxX();
            this.labelX20 = new DevComponents.DotNetBar.LabelX();
            this.panelEx47 = new DevComponents.DotNetBar.PanelEx();
            this.buttonX39 = new DevComponents.DotNetBar.ButtonX();
            this.buttonX40 = new DevComponents.DotNetBar.ButtonX();
            this.buttonX41 = new DevComponents.DotNetBar.ButtonX();
            this.panelEx38 = new DevComponents.DotNetBar.PanelEx();
            this.labelX11 = new DevComponents.DotNetBar.LabelX();
            this.superTabItem14 = new DevComponents.DotNetBar.SuperTabItem();
            this.superTabControlPanel7 = new DevComponents.DotNetBar.SuperTabControlPanel();
            this.panelEx8 = new DevComponents.DotNetBar.PanelEx();
            this.superTabControl2 = new DevComponents.DotNetBar.SuperTabControl();
            this.superTabControlPanel9 = new DevComponents.DotNetBar.SuperTabControlPanel();
            this.groupPanel2 = new DevComponents.DotNetBar.Controls.GroupPanel();
            this.dataGridViewX2 = new DevComponents.DotNetBar.Controls.DataGridViewX();
            this.Column6 = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.Column12 = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.Column13 = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.Column7 = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.Column8 = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.Column9 = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.Column10 = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.Column11 = new System.Windows.Forms.DataGridViewCheckBoxColumn();
            this.panelEx10 = new DevComponents.DotNetBar.PanelEx();
            this.buttonX9 = new DevComponents.DotNetBar.ButtonX();
            this.buttonX5 = new DevComponents.DotNetBar.ButtonX();
            this.buttonX3 = new DevComponents.DotNetBar.ButtonX();
            this.buttonX4 = new DevComponents.DotNetBar.ButtonX();
            this.groupPanel1 = new DevComponents.DotNetBar.Controls.GroupPanel();
            this.labelX5 = new DevComponents.DotNetBar.LabelX();
            this.textBoxX4 = new DevComponents.DotNetBar.Controls.TextBoxX();
            this.labelX9 = new DevComponents.DotNetBar.LabelX();
            this.textBoxX7 = new DevComponents.DotNetBar.Controls.TextBoxX();
            this.superTabItem9 = new DevComponents.DotNetBar.SuperTabItem();
            this.superTabControlPanel8 = new DevComponents.DotNetBar.SuperTabControlPanel();
            this.groupPanel3 = new DevComponents.DotNetBar.Controls.GroupPanel();
            this.dataGridViewX3 = new DevComponents.DotNetBar.Controls.DataGridViewX();
            this.dataGridViewTextBoxColumn1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.dataGridViewTextBoxColumn2 = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.dataGridViewTextBoxColumn3 = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.dataGridViewTextBoxColumn4 = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.dataGridViewTextBoxColumn5 = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.dataGridViewTextBoxColumn6 = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.dataGridViewTextBoxColumn7 = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.dataGridViewCheckBoxColumn1 = new System.Windows.Forms.DataGridViewCheckBoxColumn();
            this.panelEx9 = new DevComponents.DotNetBar.PanelEx();
            this.buttonX10 = new DevComponents.DotNetBar.ButtonX();
            this.buttonX6 = new DevComponents.DotNetBar.ButtonX();
            this.buttonX7 = new DevComponents.DotNetBar.ButtonX();
            this.buttonX8 = new DevComponents.DotNetBar.ButtonX();
            this.groupPanel4 = new DevComponents.DotNetBar.Controls.GroupPanel();
            this.labelX8 = new DevComponents.DotNetBar.LabelX();
            this.textBoxX6 = new DevComponents.DotNetBar.Controls.TextBoxX();
            this.labelX7 = new DevComponents.DotNetBar.LabelX();
            this.textBoxX5 = new DevComponents.DotNetBar.Controls.TextBoxX();
            this.superTabItem8 = new DevComponents.DotNetBar.SuperTabItem();
            this.superTabItem7 = new DevComponents.DotNetBar.SuperTabItem();
            this.superTabControlPanel15 = new DevComponents.DotNetBar.SuperTabControlPanel();
            this.panelEx49 = new DevComponents.DotNetBar.PanelEx();
            this.panelEx50 = new DevComponents.DotNetBar.PanelEx();
            this.groupPanel24 = new DevComponents.DotNetBar.Controls.GroupPanel();
            this.dataGridViewX17 = new DevComponents.DotNetBar.Controls.DataGridViewX();
            this.Column58 = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.Column59 = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.Column60 = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.Column61 = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.Column62 = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.panelEx51 = new DevComponents.DotNetBar.PanelEx();
            this.buttonX42 = new DevComponents.DotNetBar.ButtonX();
            this.buttonX43 = new DevComponents.DotNetBar.ButtonX();
            this.buttonX44 = new DevComponents.DotNetBar.ButtonX();
            this.panelEx52 = new DevComponents.DotNetBar.PanelEx();
            this.checkBoxX1 = new DevComponents.DotNetBar.Controls.CheckBoxX();
            this.checkBoxX2 = new DevComponents.DotNetBar.Controls.CheckBoxX();
            this.labelX25 = new DevComponents.DotNetBar.LabelX();
            this.panelEx48 = new DevComponents.DotNetBar.PanelEx();
            this.labelX24 = new DevComponents.DotNetBar.LabelX();
            this.superTabItem15 = new DevComponents.DotNetBar.SuperTabItem();
            this.superTabControlPanel10 = new DevComponents.DotNetBar.SuperTabControlPanel();
            this.panelEx21 = new DevComponents.DotNetBar.PanelEx();
            this.panelEx22 = new DevComponents.DotNetBar.PanelEx();
            this.groupPanel21 = new DevComponents.DotNetBar.Controls.GroupPanel();
            this.dataGridViewX9 = new DevComponents.DotNetBar.Controls.DataGridViewX();
            this.Column26 = new System.Windows.Forms.DataGridViewCheckBoxColumn();
            this.Column34 = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.Column27 = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.expandableSplitter3 = new DevComponents.DotNetBar.ExpandableSplitter();
            this.groupPanel20 = new DevComponents.DotNetBar.Controls.GroupPanel();
            this.dataGridViewX10 = new DevComponents.DotNetBar.Controls.DataGridViewX();
            this.dataGridViewTextBoxColumn15 = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.panelEx28 = new DevComponents.DotNetBar.PanelEx();
            this.buttonX31 = new DevComponents.DotNetBar.ButtonX();
            this.buttonX32 = new DevComponents.DotNetBar.ButtonX();
            this.buttonX33 = new DevComponents.DotNetBar.ButtonX();
            this.labelX22 = new DevComponents.DotNetBar.LabelX();
            this.panelEx19 = new DevComponents.DotNetBar.PanelEx();
            this.labelX19 = new DevComponents.DotNetBar.LabelX();
            this.superTabItem10 = new DevComponents.DotNetBar.SuperTabItem();
            this.superTabControlPanel1 = new DevComponents.DotNetBar.SuperTabControlPanel();
            this.panelEx5 = new DevComponents.DotNetBar.PanelEx();
            this.panelEx4 = new DevComponents.DotNetBar.PanelEx();
            this.groupPanel12 = new DevComponents.DotNetBar.Controls.GroupPanel();
            this.dataGridViewX1 = new DevComponents.DotNetBar.Controls.DataGridViewX();
            this.Column25 = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.Column2 = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.Column1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.Column3 = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.Column4 = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.Column5 = new System.Windows.Forms.DataGridViewCheckBoxColumn();
            this.groupPanel11 = new DevComponents.DotNetBar.Controls.GroupPanel();
            this.labelX17 = new DevComponents.DotNetBar.LabelX();
            this.textBoxX10 = new DevComponents.DotNetBar.Controls.TextBoxX();
            this.labelX18 = new DevComponents.DotNetBar.LabelX();
            this.textBoxX12 = new DevComponents.DotNetBar.Controls.TextBoxX();
            this.panelEx6 = new DevComponents.DotNetBar.PanelEx();
            this.buttonX22 = new DevComponents.DotNetBar.ButtonX();
            this.buttonX2 = new DevComponents.DotNetBar.ButtonX();
            this.buttonX1 = new DevComponents.DotNetBar.ButtonX();
            this.panelEx1 = new DevComponents.DotNetBar.PanelEx();
            this.labelX1 = new DevComponents.DotNetBar.LabelX();
            this.superTabItem1 = new DevComponents.DotNetBar.SuperTabItem();
            this.superTabControlPanel12 = new DevComponents.DotNetBar.SuperTabControlPanel();
            this.panelEx13 = new DevComponents.DotNetBar.PanelEx();
            this.groupPanel7 = new DevComponents.DotNetBar.Controls.GroupPanel();
            this.dataGridViewX5 = new DevComponents.DotNetBar.Controls.DataGridViewX();
            this.Column14 = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.Column15 = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.Column16 = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.Column17 = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.Column18 = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.Column19 = new System.Windows.Forms.DataGridViewCheckBoxColumn();
            this.panelEx12 = new DevComponents.DotNetBar.PanelEx();
            this.buttonX11 = new DevComponents.DotNetBar.ButtonX();
            this.buttonX12 = new DevComponents.DotNetBar.ButtonX();
            this.buttonX13 = new DevComponents.DotNetBar.ButtonX();
            this.buttonX14 = new DevComponents.DotNetBar.ButtonX();
            this.expandableSplitter1 = new DevComponents.DotNetBar.ExpandableSplitter();
            this.groupPanel5 = new DevComponents.DotNetBar.Controls.GroupPanel();
            this.dataGridViewX4 = new DevComponents.DotNetBar.Controls.DataGridViewX();
            this.dataGridViewTextBoxColumn8 = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.dataGridViewTextBoxColumn9 = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.panelEx40 = new DevComponents.DotNetBar.PanelEx();
            this.groupPanel6 = new DevComponents.DotNetBar.Controls.GroupPanel();
            this.textBoxX8 = new DevComponents.DotNetBar.Controls.TextBoxX();
            this.textBoxX9 = new DevComponents.DotNetBar.Controls.TextBoxX();
            this.superTabItem12 = new DevComponents.DotNetBar.SuperTabItem();
            this.superTabControlPanel13 = new DevComponents.DotNetBar.SuperTabControlPanel();
            this.panelEx43 = new DevComponents.DotNetBar.PanelEx();
            this.panelEx44 = new DevComponents.DotNetBar.PanelEx();
            this.groupPanel18 = new DevComponents.DotNetBar.Controls.GroupPanel();
            this.dataGridViewX15 = new DevComponents.DotNetBar.Controls.DataGridViewX();
            this.Column41 = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.Column42 = new System.Windows.Forms.DataGridViewComboBoxColumn();
            this.Column43 = new System.Windows.Forms.DataGridViewComboBoxColumn();
            this.Column44 = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.Column45 = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.groupPanel19 = new DevComponents.DotNetBar.Controls.GroupPanel();
            this.labelX32 = new DevComponents.DotNetBar.LabelX();
            this.textBoxX16 = new DevComponents.DotNetBar.Controls.TextBoxX();
            this.panelEx39 = new DevComponents.DotNetBar.PanelEx();
            this.buttonX27 = new DevComponents.DotNetBar.ButtonX();
            this.buttonX37 = new DevComponents.DotNetBar.ButtonX();
            this.buttonX38 = new DevComponents.DotNetBar.ButtonX();
            this.panelEx37 = new DevComponents.DotNetBar.PanelEx();
            this.labelX30 = new DevComponents.DotNetBar.LabelX();
            this.superTabItem13 = new DevComponents.DotNetBar.SuperTabItem();
            this.superTabControlPanel11 = new DevComponents.DotNetBar.SuperTabControlPanel();
            this.panelEx30 = new DevComponents.DotNetBar.PanelEx();
            this.panelEx26 = new DevComponents.DotNetBar.PanelEx();
            this.superTabItem11 = new DevComponents.DotNetBar.SuperTabItem();
            this.superTabControlPanel6 = new DevComponents.DotNetBar.SuperTabControlPanel();
            this.panelEx41 = new DevComponents.DotNetBar.PanelEx();
            this.panelEx42 = new DevComponents.DotNetBar.PanelEx();
            this.groupPanel17 = new DevComponents.DotNetBar.Controls.GroupPanel();
            this.dataGridViewX14 = new DevComponents.DotNetBar.Controls.DataGridViewX();
            this.Column36 = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.Column37 = new DevComponents.DotNetBar.Controls.DataGridViewComboBoxExColumn();
            this.Column38 = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.Column39 = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.Column40 = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.panelEx35 = new DevComponents.DotNetBar.PanelEx();
            this.buttonX34 = new DevComponents.DotNetBar.ButtonX();
            this.buttonX35 = new DevComponents.DotNetBar.ButtonX();
            this.buttonX36 = new DevComponents.DotNetBar.ButtonX();
            this.groupPanel16 = new DevComponents.DotNetBar.Controls.GroupPanel();
            this.comboBoxEx2 = new DevComponents.DotNetBar.Controls.ComboBoxEx();
            this.labelX28 = new DevComponents.DotNetBar.LabelX();
            this.textBoxX13 = new DevComponents.DotNetBar.Controls.TextBoxX();
            this.panelEx34 = new DevComponents.DotNetBar.PanelEx();
            this.labelX27 = new DevComponents.DotNetBar.LabelX();
            this.superTabItem6 = new DevComponents.DotNetBar.SuperTabItem();
            this.superTabControlPanel4 = new DevComponents.DotNetBar.SuperTabControlPanel();
            this.panelEx29 = new DevComponents.DotNetBar.PanelEx();
            this.panelEx23 = new DevComponents.DotNetBar.PanelEx();
            this.groupPanel15 = new DevComponents.DotNetBar.Controls.GroupPanel();
            this.panelEx33 = new DevComponents.DotNetBar.PanelEx();
            this.dataGridViewX13 = new DevComponents.DotNetBar.Controls.DataGridViewX();
            this.dataGridViewTextBoxColumn13 = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.dataGridViewTextBoxColumn16 = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.Column33 = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.panelEx36 = new DevComponents.DotNetBar.PanelEx();
            this.buttonX28 = new DevComponents.DotNetBar.ButtonX();
            this.buttonX29 = new DevComponents.DotNetBar.ButtonX();
            this.buttonX30 = new DevComponents.DotNetBar.ButtonX();
            this.panelEx32 = new DevComponents.DotNetBar.PanelEx();
            this.labelX26 = new DevComponents.DotNetBar.LabelX();
            this.superTabItem4 = new DevComponents.DotNetBar.SuperTabItem();
            this.superTabControlPanel3 = new DevComponents.DotNetBar.SuperTabControlPanel();
            this.panelEx25 = new DevComponents.DotNetBar.PanelEx();
            this.panelEx27 = new DevComponents.DotNetBar.PanelEx();
            this.groupPanel14 = new DevComponents.DotNetBar.Controls.GroupPanel();
            this.dataGridViewX11 = new DevComponents.DotNetBar.Controls.DataGridViewX();
            this.Column28 = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.Column29 = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.Column30 = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.Column31 = new System.Windows.Forms.DataGridViewCheckBoxColumn();
            this.Column32 = new System.Windows.Forms.DataGridViewCheckBoxColumn();
            this.expandableSplitter4 = new DevComponents.DotNetBar.ExpandableSplitter();
            this.groupPanel13 = new DevComponents.DotNetBar.Controls.GroupPanel();
            this.dataGridViewX12 = new DevComponents.DotNetBar.Controls.DataGridViewX();
            this.Column35 = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.dataGridViewTextBoxColumn14 = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.panelEx31 = new DevComponents.DotNetBar.PanelEx();
            this.buttonX26 = new DevComponents.DotNetBar.ButtonX();
            this.buttonX23 = new DevComponents.DotNetBar.ButtonX();
            this.buttonX24 = new DevComponents.DotNetBar.ButtonX();
            this.buttonX25 = new DevComponents.DotNetBar.ButtonX();
            this.panelEx24 = new DevComponents.DotNetBar.PanelEx();
            this.labelX23 = new DevComponents.DotNetBar.LabelX();
            this.superTabItem3 = new DevComponents.DotNetBar.SuperTabItem();
            this.superTabControlPanel2 = new DevComponents.DotNetBar.SuperTabControlPanel();
            this.panelEx15 = new DevComponents.DotNetBar.PanelEx();
            this.groupPanel10 = new DevComponents.DotNetBar.Controls.GroupPanel();
            this.panelEx20 = new DevComponents.DotNetBar.PanelEx();
            this.dataGridViewX8 = new DevComponents.DotNetBar.Controls.DataGridViewX();
            this.dataGridViewTextBoxColumn11 = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.dataGridViewTextBoxColumn12 = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.labelX14 = new DevComponents.DotNetBar.LabelX();
            this.panelEx17 = new DevComponents.DotNetBar.PanelEx();
            this.buttonX20 = new DevComponents.DotNetBar.ButtonX();
            this.buttonX21 = new DevComponents.DotNetBar.ButtonX();
            this.buttonX19 = new DevComponents.DotNetBar.ButtonX();
            this.buttonX15 = new DevComponents.DotNetBar.ButtonX();
            this.panelEx18 = new DevComponents.DotNetBar.PanelEx();
            this.dataGridViewX7 = new DevComponents.DotNetBar.Controls.DataGridViewX();
            this.Column20 = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.Column21 = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.Column22 = new System.Windows.Forms.DataGridViewCheckBoxColumn();
            this.Column23 = new System.Windows.Forms.DataGridViewCheckBoxColumn();
            this.Column24 = new System.Windows.Forms.DataGridViewCheckBoxColumn();
            this.labelX16 = new DevComponents.DotNetBar.LabelX();
            this.panelEx16 = new DevComponents.DotNetBar.PanelEx();
            this.buttonX16 = new DevComponents.DotNetBar.ButtonX();
            this.buttonX17 = new DevComponents.DotNetBar.ButtonX();
            this.buttonX18 = new DevComponents.DotNetBar.ButtonX();
            this.expandableSplitter2 = new DevComponents.DotNetBar.ExpandableSplitter();
            this.groupPanel8 = new DevComponents.DotNetBar.Controls.GroupPanel();
            this.dataGridViewX6 = new DevComponents.DotNetBar.Controls.DataGridViewX();
            this.dataGridViewTextBoxColumn10 = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.groupPanel9 = new DevComponents.DotNetBar.Controls.GroupPanel();
            this.comboBoxEx1 = new DevComponents.DotNetBar.Controls.ComboBoxEx();
            this.labelX15 = new DevComponents.DotNetBar.LabelX();
            this.textBoxX11 = new DevComponents.DotNetBar.Controls.TextBoxX();
            this.superTabItem2 = new DevComponents.DotNetBar.SuperTabItem();
            this.highlighter1 = new DevComponents.DotNetBar.Validator.Highlighter();
            this.labelX34 = new DevComponents.DotNetBar.LabelX();
            this.labelX35 = new DevComponents.DotNetBar.LabelX();
            this.labelX36 = new DevComponents.DotNetBar.LabelX();
            this.textBoxX19 = new DevComponents.DotNetBar.Controls.TextBoxX();
            this.labelX37 = new DevComponents.DotNetBar.LabelX();
            this.textBoxX20 = new DevComponents.DotNetBar.Controls.TextBoxX();
            this.labelX38 = new DevComponents.DotNetBar.LabelX();
            this.textBoxX21 = new DevComponents.DotNetBar.Controls.TextBoxX();
            this.labelX39 = new DevComponents.DotNetBar.LabelX();
            this.textBoxX22 = new DevComponents.DotNetBar.Controls.TextBoxX();
            this.labelX40 = new DevComponents.DotNetBar.LabelX();
            this.labelX41 = new DevComponents.DotNetBar.LabelX();
            this.comboBoxEx3 = new DevComponents.DotNetBar.Controls.ComboBoxEx();
            panelEx7 = new DevComponents.DotNetBar.PanelEx();
            labelX4 = new DevComponents.DotNetBar.LabelX();
            panelEx11 = new DevComponents.DotNetBar.PanelEx();
            labelX10 = new DevComponents.DotNetBar.LabelX();
            panelEx14 = new DevComponents.DotNetBar.PanelEx();
            labelX13 = new DevComponents.DotNetBar.LabelX();
            panelEx7.SuspendLayout();
            panelEx11.SuspendLayout();
            panelEx14.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.superTabControl1)).BeginInit();
            this.superTabControl1.SuspendLayout();
            this.superTabControlPanel16.SuspendLayout();
            this.panelEx54.SuspendLayout();
            this.panelEx55.SuspendLayout();
            this.groupPanel29.SuspendLayout();
            this.groupPanel31.SuspendLayout();
            this.groupPanel32.SuspendLayout();
            this.groupPanel25.SuspendLayout();
            this.groupPanel28.SuspendLayout();
            this.groupPanel27.SuspendLayout();
            this.groupPanel26.SuspendLayout();
            this.panelEx56.SuspendLayout();
            this.panelEx53.SuspendLayout();
            this.superTabControlPanel5.SuspendLayout();
            this.panelEx3.SuspendLayout();
            this.panelEx2.SuspendLayout();
            this.superTabControlPanel14.SuspendLayout();
            this.panelEx45.SuspendLayout();
            this.panelEx46.SuspendLayout();
            this.groupPanel23.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.dataGridViewX16)).BeginInit();
            this.groupPanel22.SuspendLayout();
            this.panelEx47.SuspendLayout();
            this.panelEx38.SuspendLayout();
            this.superTabControlPanel7.SuspendLayout();
            this.panelEx8.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.superTabControl2)).BeginInit();
            this.superTabControl2.SuspendLayout();
            this.superTabControlPanel9.SuspendLayout();
            this.groupPanel2.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.dataGridViewX2)).BeginInit();
            this.panelEx10.SuspendLayout();
            this.groupPanel1.SuspendLayout();
            this.superTabControlPanel8.SuspendLayout();
            this.groupPanel3.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.dataGridViewX3)).BeginInit();
            this.panelEx9.SuspendLayout();
            this.groupPanel4.SuspendLayout();
            this.superTabControlPanel15.SuspendLayout();
            this.panelEx49.SuspendLayout();
            this.panelEx50.SuspendLayout();
            this.groupPanel24.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.dataGridViewX17)).BeginInit();
            this.panelEx51.SuspendLayout();
            this.panelEx52.SuspendLayout();
            this.panelEx48.SuspendLayout();
            this.superTabControlPanel10.SuspendLayout();
            this.panelEx21.SuspendLayout();
            this.panelEx22.SuspendLayout();
            this.groupPanel21.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.dataGridViewX9)).BeginInit();
            this.groupPanel20.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.dataGridViewX10)).BeginInit();
            this.panelEx28.SuspendLayout();
            this.panelEx19.SuspendLayout();
            this.superTabControlPanel1.SuspendLayout();
            this.panelEx5.SuspendLayout();
            this.panelEx4.SuspendLayout();
            this.groupPanel12.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.dataGridViewX1)).BeginInit();
            this.groupPanel11.SuspendLayout();
            this.panelEx6.SuspendLayout();
            this.panelEx1.SuspendLayout();
            this.superTabControlPanel12.SuspendLayout();
            this.panelEx13.SuspendLayout();
            this.groupPanel7.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.dataGridViewX5)).BeginInit();
            this.panelEx12.SuspendLayout();
            this.groupPanel5.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.dataGridViewX4)).BeginInit();
            this.groupPanel6.SuspendLayout();
            this.superTabControlPanel13.SuspendLayout();
            this.panelEx43.SuspendLayout();
            this.panelEx44.SuspendLayout();
            this.groupPanel18.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.dataGridViewX15)).BeginInit();
            this.groupPanel19.SuspendLayout();
            this.panelEx39.SuspendLayout();
            this.panelEx37.SuspendLayout();
            this.superTabControlPanel11.SuspendLayout();
            this.superTabControlPanel6.SuspendLayout();
            this.panelEx41.SuspendLayout();
            this.panelEx42.SuspendLayout();
            this.groupPanel17.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.dataGridViewX14)).BeginInit();
            this.panelEx35.SuspendLayout();
            this.groupPanel16.SuspendLayout();
            this.panelEx34.SuspendLayout();
            this.superTabControlPanel4.SuspendLayout();
            this.panelEx29.SuspendLayout();
            this.panelEx23.SuspendLayout();
            this.groupPanel15.SuspendLayout();
            this.panelEx33.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.dataGridViewX13)).BeginInit();
            this.panelEx36.SuspendLayout();
            this.panelEx32.SuspendLayout();
            this.superTabControlPanel3.SuspendLayout();
            this.panelEx25.SuspendLayout();
            this.panelEx27.SuspendLayout();
            this.groupPanel14.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.dataGridViewX11)).BeginInit();
            this.groupPanel13.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.dataGridViewX12)).BeginInit();
            this.panelEx31.SuspendLayout();
            this.panelEx24.SuspendLayout();
            this.superTabControlPanel2.SuspendLayout();
            this.panelEx15.SuspendLayout();
            this.groupPanel10.SuspendLayout();
            this.panelEx20.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.dataGridViewX8)).BeginInit();
            this.panelEx17.SuspendLayout();
            this.panelEx18.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.dataGridViewX7)).BeginInit();
            this.panelEx16.SuspendLayout();
            this.groupPanel8.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.dataGridViewX6)).BeginInit();
            this.groupPanel9.SuspendLayout();
            this.SuspendLayout();
            // 
            // panelEx7
            // 
            panelEx7.CanvasColor = System.Drawing.SystemColors.Control;
            panelEx7.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            panelEx7.Controls.Add(labelX4);
            panelEx7.Dock = System.Windows.Forms.DockStyle.Top;
            panelEx7.Location = new System.Drawing.Point(0, 0);
            panelEx7.Name = "panelEx7";
            panelEx7.Size = new System.Drawing.Size(1064, 26);
            panelEx7.Style.Alignment = System.Drawing.StringAlignment.Center;
            panelEx7.Style.BackColor1.Color = System.Drawing.Color.Green;
            panelEx7.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
            panelEx7.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
            panelEx7.Style.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            panelEx7.Style.ForeColor.Color = System.Drawing.Color.White;
            panelEx7.Style.GradientAngle = 90;
            panelEx7.TabIndex = 7;
            // 
            // labelX4
            // 
            labelX4.BackColor = System.Drawing.Color.Transparent;
            // 
            // 
            // 
            labelX4.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            labelX4.Dock = System.Windows.Forms.DockStyle.Fill;
            labelX4.Font = new System.Drawing.Font("Segoe UI", 14F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            labelX4.ForeColor = System.Drawing.Color.Black;
            labelX4.Location = new System.Drawing.Point(0, 0);
            labelX4.Name = "labelX4";
            labelX4.PaddingLeft = 20;
            labelX4.SingleLineColor = System.Drawing.Color.White;
            labelX4.Size = new System.Drawing.Size(1064, 26);
            labelX4.TabIndex = 4;
            labelX4.Text = "<font color=\"white\">QUẢN LÝ DANH MỤC CƠ QUAN BHXH SỬ DỤNG HỆ THỐNG</font>";
            // 
            // panelEx11
            // 
            panelEx11.CanvasColor = System.Drawing.SystemColors.Control;
            panelEx11.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            panelEx11.Controls.Add(labelX10);
            panelEx11.Dock = System.Windows.Forms.DockStyle.Top;
            panelEx11.Location = new System.Drawing.Point(0, 0);
            panelEx11.Name = "panelEx11";
            panelEx11.Size = new System.Drawing.Size(1064, 26);
            panelEx11.Style.Alignment = System.Drawing.StringAlignment.Center;
            panelEx11.Style.BackColor1.Color = System.Drawing.Color.Green;
            panelEx11.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
            panelEx11.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
            panelEx11.Style.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            panelEx11.Style.ForeColor.Color = System.Drawing.Color.White;
            panelEx11.Style.GradientAngle = 90;
            panelEx11.TabIndex = 8;
            // 
            // labelX10
            // 
            labelX10.BackColor = System.Drawing.Color.Transparent;
            // 
            // 
            // 
            labelX10.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            labelX10.Dock = System.Windows.Forms.DockStyle.Fill;
            labelX10.Font = new System.Drawing.Font("Segoe UI", 14F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            labelX10.ForeColor = System.Drawing.Color.Black;
            labelX10.Location = new System.Drawing.Point(0, 0);
            labelX10.Name = "labelX10";
            labelX10.PaddingLeft = 20;
            labelX10.SingleLineColor = System.Drawing.Color.White;
            labelX10.Size = new System.Drawing.Size(1064, 26);
            labelX10.TabIndex = 4;
            labelX10.Text = "<font color=\"white\">TỔ CHỨC PHÒNG VÀ BỘ PHẬN</font>";
            // 
            // panelEx14
            // 
            panelEx14.CanvasColor = System.Drawing.SystemColors.Control;
            panelEx14.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            panelEx14.Controls.Add(labelX13);
            panelEx14.Dock = System.Windows.Forms.DockStyle.Top;
            panelEx14.Location = new System.Drawing.Point(0, 0);
            panelEx14.Name = "panelEx14";
            panelEx14.Size = new System.Drawing.Size(1064, 26);
            panelEx14.Style.Alignment = System.Drawing.StringAlignment.Center;
            panelEx14.Style.BackColor1.Color = System.Drawing.Color.Green;
            panelEx14.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
            panelEx14.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
            panelEx14.Style.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            panelEx14.Style.ForeColor.Color = System.Drawing.Color.White;
            panelEx14.Style.GradientAngle = 90;
            panelEx14.TabIndex = 9;
            // 
            // labelX13
            // 
            labelX13.BackColor = System.Drawing.Color.Transparent;
            // 
            // 
            // 
            labelX13.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            labelX13.Dock = System.Windows.Forms.DockStyle.Fill;
            labelX13.Font = new System.Drawing.Font("Segoe UI", 14F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            labelX13.ForeColor = System.Drawing.Color.Black;
            labelX13.Location = new System.Drawing.Point(0, 0);
            labelX13.Name = "labelX13";
            labelX13.PaddingLeft = 20;
            labelX13.SingleLineColor = System.Drawing.Color.White;
            labelX13.Size = new System.Drawing.Size(1064, 26);
            labelX13.TabIndex = 4;
            labelX13.Text = "<font color=\"white\">ĐĂNG KÝ NHÂN VIÊN RA VÀO PHÒNG VÀ BỘ PHẬN</font>";
            // 
            // superTabControl1
            // 
            this.superTabControl1.BackColor = System.Drawing.Color.White;
            // 
            // 
            // 
            // 
            // 
            // 
            this.superTabControl1.ControlBox.CloseBox.Name = "";
            // 
            // 
            // 
            this.superTabControl1.ControlBox.MenuBox.Name = "";
            this.superTabControl1.ControlBox.Name = "";
            this.superTabControl1.ControlBox.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
            this.superTabControl1.ControlBox.MenuBox,
            this.superTabControl1.ControlBox.CloseBox});
            this.superTabControl1.Controls.Add(this.superTabControlPanel5);
            this.superTabControl1.Controls.Add(this.superTabControlPanel11);
            this.superTabControl1.Controls.Add(this.superTabControlPanel7);
            this.superTabControl1.Controls.Add(this.superTabControlPanel16);
            this.superTabControl1.Controls.Add(this.superTabControlPanel14);
            this.superTabControl1.Controls.Add(this.superTabControlPanel15);
            this.superTabControl1.Controls.Add(this.superTabControlPanel10);
            this.superTabControl1.Controls.Add(this.superTabControlPanel1);
            this.superTabControl1.Controls.Add(this.superTabControlPanel12);
            this.superTabControl1.Controls.Add(this.superTabControlPanel13);
            this.superTabControl1.Controls.Add(this.superTabControlPanel6);
            this.superTabControl1.Controls.Add(this.superTabControlPanel4);
            this.superTabControl1.Controls.Add(this.superTabControlPanel3);
            this.superTabControl1.Controls.Add(this.superTabControlPanel2);
            this.superTabControl1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.superTabControl1.ForeColor = System.Drawing.Color.Black;
            this.superTabControl1.Location = new System.Drawing.Point(0, 0);
            this.superTabControl1.Name = "superTabControl1";
            this.superTabControl1.ReorderTabsEnabled = true;
            this.superTabControl1.SelectedTabFont = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.superTabControl1.SelectedTabIndex = 0;
            this.superTabControl1.Size = new System.Drawing.Size(1234, 462);
            this.superTabControl1.TabAlignment = DevComponents.DotNetBar.eTabStripAlignment.Left;
            this.superTabControl1.TabFont = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.superTabControl1.TabIndex = 0;
            this.superTabControl1.Tabs.AddRange(new DevComponents.DotNetBar.BaseItem[] {
            this.superTabItem5,
            this.superTabItem7,
            this.superTabItem12,
            this.superTabItem2,
            this.superTabItem1,
            this.superTabItem10,
            this.superTabItem3,
            this.superTabItem4,
            this.superTabItem6,
            this.superTabItem13,
            this.superTabItem14,
            this.superTabItem11,
            this.superTabItem15,
            this.superTabItem16});
            this.superTabControl1.TabStyle = DevComponents.DotNetBar.eSuperTabStyle.Office2010BackstageBlue;
            this.superTabControl1.TabVerticalSpacing = 6;
            this.superTabControl1.Text = "superTabControl1";
            // 
            // superTabControlPanel16
            // 
            this.superTabControlPanel16.Controls.Add(this.panelEx54);
            this.superTabControlPanel16.Controls.Add(this.panelEx53);
            this.superTabControlPanel16.Dock = System.Windows.Forms.DockStyle.Fill;
            this.superTabControlPanel16.Location = new System.Drawing.Point(170, 0);
            this.superTabControlPanel16.Name = "superTabControlPanel16";
            this.superTabControlPanel16.Size = new System.Drawing.Size(1064, 462);
            this.superTabControlPanel16.TabIndex = 0;
            this.superTabControlPanel16.TabItem = this.superTabItem16;
            // 
            // panelEx54
            // 
            this.panelEx54.CanvasColor = System.Drawing.SystemColors.Control;
            this.panelEx54.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            this.panelEx54.Controls.Add(this.panelEx55);
            this.panelEx54.Dock = System.Windows.Forms.DockStyle.Fill;
            this.panelEx54.Location = new System.Drawing.Point(0, 26);
            this.panelEx54.Name = "panelEx54";
            this.panelEx54.Padding = new System.Windows.Forms.Padding(5);
            this.panelEx54.Size = new System.Drawing.Size(1064, 436);
            this.panelEx54.Style.Alignment = System.Drawing.StringAlignment.Center;
            this.panelEx54.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
            this.panelEx54.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemText;
            this.panelEx54.Style.GradientAngle = 90;
            this.panelEx54.TabIndex = 16;
            // 
            // panelEx55
            // 
            this.panelEx55.CanvasColor = System.Drawing.SystemColors.Control;
            this.panelEx55.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            this.panelEx55.Controls.Add(this.groupPanel29);
            this.panelEx55.Controls.Add(this.groupPanel25);
            this.panelEx55.Controls.Add(this.panelEx56);
            this.panelEx55.Controls.Add(this.labelX33);
            this.panelEx55.Dock = System.Windows.Forms.DockStyle.Fill;
            this.panelEx55.Location = new System.Drawing.Point(5, 5);
            this.panelEx55.Name = "panelEx55";
            this.panelEx55.Padding = new System.Windows.Forms.Padding(5);
            this.panelEx55.Size = new System.Drawing.Size(1054, 426);
            this.panelEx55.Style.Alignment = System.Drawing.StringAlignment.Center;
            this.panelEx55.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
            this.panelEx55.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
            this.panelEx55.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
            this.panelEx55.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
            this.panelEx55.Style.GradientAngle = 90;
            this.panelEx55.TabIndex = 13;
            // 
            // groupPanel29
            // 
            this.groupPanel29.BackColor = System.Drawing.Color.White;
            this.groupPanel29.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Metro;
            this.groupPanel29.Controls.Add(this.groupPanel31);
            this.groupPanel29.Controls.Add(this.groupPanel32);
            this.groupPanel29.Location = new System.Drawing.Point(16, 199);
            this.groupPanel29.Name = "groupPanel29";
            this.groupPanel29.Size = new System.Drawing.Size(959, 148);
            // 
            // 
            // 
            this.groupPanel29.Style.BackColor = System.Drawing.Color.White;
            this.groupPanel29.Style.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
            this.groupPanel29.Style.BackColorGradientAngle = 90;
            this.groupPanel29.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.groupPanel29.Style.BorderBottomWidth = 1;
            this.groupPanel29.Style.BorderColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
            this.groupPanel29.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.groupPanel29.Style.BorderLeftWidth = 1;
            this.groupPanel29.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.groupPanel29.Style.BorderRightWidth = 1;
            this.groupPanel29.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.groupPanel29.Style.BorderTopWidth = 1;
            this.groupPanel29.Style.CornerDiameter = 4;
            this.groupPanel29.Style.CornerType = DevComponents.DotNetBar.eCornerType.Rounded;
            this.groupPanel29.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
            this.groupPanel29.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near;
            // 
            // 
            // 
            this.groupPanel29.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            // 
            // 
            // 
            this.groupPanel29.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.groupPanel29.TabIndex = 35;
            this.groupPanel29.Text = "Đối với các bước chuyển hồ sơ giữa CQ BHXH và Đơn vị";
            // 
            // groupPanel31
            // 
            this.groupPanel31.BackColor = System.Drawing.Color.White;
            this.groupPanel31.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Metro;
            this.groupPanel31.Controls.Add(this.checkBoxX11);
            this.groupPanel31.Controls.Add(this.checkBoxX12);
            this.groupPanel31.Location = new System.Drawing.Point(316, 4);
            this.groupPanel31.Name = "groupPanel31";
            this.groupPanel31.Size = new System.Drawing.Size(302, 107);
            // 
            // 
            // 
            this.groupPanel31.Style.BackColor = System.Drawing.Color.White;
            this.groupPanel31.Style.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
            this.groupPanel31.Style.BackColorGradientAngle = 90;
            this.groupPanel31.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.groupPanel31.Style.BorderBottomWidth = 1;
            this.groupPanel31.Style.BorderColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
            this.groupPanel31.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.groupPanel31.Style.BorderLeftWidth = 1;
            this.groupPanel31.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.groupPanel31.Style.BorderRightWidth = 1;
            this.groupPanel31.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.groupPanel31.Style.BorderTopWidth = 1;
            this.groupPanel31.Style.CornerDiameter = 4;
            this.groupPanel31.Style.CornerType = DevComponents.DotNetBar.eCornerType.Rounded;
            this.groupPanel31.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
            this.groupPanel31.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near;
            // 
            // 
            // 
            this.groupPanel31.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            // 
            // 
            // 
            this.groupPanel31.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.groupPanel31.TabIndex = 36;
            this.groupPanel31.Text = "Đối với hồ sơ sai";
            // 
            // checkBoxX11
            // 
            this.checkBoxX11.BackColor = System.Drawing.Color.White;
            // 
            // 
            // 
            this.checkBoxX11.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.checkBoxX11.CheckBoxStyle = DevComponents.DotNetBar.eCheckBoxStyle.RadioButton;
            this.checkBoxX11.Checked = true;
            this.checkBoxX11.CheckState = System.Windows.Forms.CheckState.Checked;
            this.checkBoxX11.CheckValue = "Y";
            this.checkBoxX11.ForeColor = System.Drawing.Color.Black;
            this.checkBoxX11.Location = new System.Drawing.Point(3, 41);
            this.checkBoxX11.Name = "checkBoxX11";
            this.checkBoxX11.Size = new System.Drawing.Size(266, 23);
            this.checkBoxX11.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            this.checkBoxX11.TabIndex = 32;
            this.checkBoxX11.Text = "Phê duyệt thủ công hồ sơ chuyển bên ngoài";
            // 
            // checkBoxX12
            // 
            this.checkBoxX12.BackColor = System.Drawing.Color.White;
            // 
            // 
            // 
            this.checkBoxX12.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.checkBoxX12.CheckBoxStyle = DevComponents.DotNetBar.eCheckBoxStyle.RadioButton;
            this.checkBoxX12.ForeColor = System.Drawing.Color.Black;
            this.checkBoxX12.Location = new System.Drawing.Point(3, 9);
            this.checkBoxX12.Name = "checkBoxX12";
            this.checkBoxX12.Size = new System.Drawing.Size(266, 23);
            this.checkBoxX12.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            this.checkBoxX12.TabIndex = 31;
            this.checkBoxX12.Text = "Tự động phê duyệt hồ sơ chuyển bên ngoài";
            // 
            // groupPanel32
            // 
            this.groupPanel32.BackColor = System.Drawing.Color.White;
            this.groupPanel32.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Metro;
            this.groupPanel32.Controls.Add(this.checkBoxX13);
            this.groupPanel32.Controls.Add(this.checkBoxX14);
            this.groupPanel32.Location = new System.Drawing.Point(3, 4);
            this.groupPanel32.Name = "groupPanel32";
            this.groupPanel32.Size = new System.Drawing.Size(302, 107);
            // 
            // 
            // 
            this.groupPanel32.Style.BackColor = System.Drawing.Color.White;
            this.groupPanel32.Style.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
            this.groupPanel32.Style.BackColorGradientAngle = 90;
            this.groupPanel32.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.groupPanel32.Style.BorderBottomWidth = 1;
            this.groupPanel32.Style.BorderColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
            this.groupPanel32.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.groupPanel32.Style.BorderLeftWidth = 1;
            this.groupPanel32.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.groupPanel32.Style.BorderRightWidth = 1;
            this.groupPanel32.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.groupPanel32.Style.BorderTopWidth = 1;
            this.groupPanel32.Style.CornerDiameter = 4;
            this.groupPanel32.Style.CornerType = DevComponents.DotNetBar.eCornerType.Rounded;
            this.groupPanel32.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
            this.groupPanel32.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near;
            // 
            // 
            // 
            this.groupPanel32.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            // 
            // 
            // 
            this.groupPanel32.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.groupPanel32.TabIndex = 35;
            this.groupPanel32.Text = "Đối với hồ sơ đúng";
            // 
            // checkBoxX13
            // 
            this.checkBoxX13.BackColor = System.Drawing.Color.White;
            // 
            // 
            // 
            this.checkBoxX13.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.checkBoxX13.CheckBoxStyle = DevComponents.DotNetBar.eCheckBoxStyle.RadioButton;
            this.checkBoxX13.Checked = true;
            this.checkBoxX13.CheckState = System.Windows.Forms.CheckState.Checked;
            this.checkBoxX13.CheckValue = "Y";
            this.checkBoxX13.ForeColor = System.Drawing.Color.Black;
            this.checkBoxX13.Location = new System.Drawing.Point(3, 41);
            this.checkBoxX13.Name = "checkBoxX13";
            this.checkBoxX13.Size = new System.Drawing.Size(266, 23);
            this.checkBoxX13.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            this.checkBoxX13.TabIndex = 32;
            this.checkBoxX13.Text = "Phê duyệt thủ công hồ sơ chuyển bên ngoài";
            // 
            // checkBoxX14
            // 
            this.checkBoxX14.BackColor = System.Drawing.Color.White;
            // 
            // 
            // 
            this.checkBoxX14.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.checkBoxX14.CheckBoxStyle = DevComponents.DotNetBar.eCheckBoxStyle.RadioButton;
            this.checkBoxX14.ForeColor = System.Drawing.Color.Black;
            this.checkBoxX14.Location = new System.Drawing.Point(3, 9);
            this.checkBoxX14.Name = "checkBoxX14";
            this.checkBoxX14.Size = new System.Drawing.Size(266, 23);
            this.checkBoxX14.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            this.checkBoxX14.TabIndex = 31;
            this.checkBoxX14.Text = "Tự động phê duyệt hồ sơ chuyển bên ngoài";
            // 
            // groupPanel25
            // 
            this.groupPanel25.BackColor = System.Drawing.Color.White;
            this.groupPanel25.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Metro;
            this.groupPanel25.Controls.Add(this.groupPanel28);
            this.groupPanel25.Controls.Add(this.groupPanel27);
            this.groupPanel25.Controls.Add(this.groupPanel26);
            this.groupPanel25.Location = new System.Drawing.Point(16, 39);
            this.groupPanel25.Name = "groupPanel25";
            this.groupPanel25.Size = new System.Drawing.Size(959, 148);
            // 
            // 
            // 
            this.groupPanel25.Style.BackColor = System.Drawing.Color.White;
            this.groupPanel25.Style.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
            this.groupPanel25.Style.BackColorGradientAngle = 90;
            this.groupPanel25.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.groupPanel25.Style.BorderBottomWidth = 1;
            this.groupPanel25.Style.BorderColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
            this.groupPanel25.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.groupPanel25.Style.BorderLeftWidth = 1;
            this.groupPanel25.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.groupPanel25.Style.BorderRightWidth = 1;
            this.groupPanel25.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.groupPanel25.Style.BorderTopWidth = 1;
            this.groupPanel25.Style.CornerDiameter = 4;
            this.groupPanel25.Style.CornerType = DevComponents.DotNetBar.eCornerType.Rounded;
            this.groupPanel25.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
            this.groupPanel25.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near;
            // 
            // 
            // 
            this.groupPanel25.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            // 
            // 
            // 
            this.groupPanel25.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.groupPanel25.TabIndex = 34;
            this.groupPanel25.Text = "Đối với các bước chuyển hồ sơ trong nội bộ";
            // 
            // groupPanel28
            // 
            this.groupPanel28.BackColor = System.Drawing.Color.White;
            this.groupPanel28.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Metro;
            this.groupPanel28.Controls.Add(this.checkBoxX7);
            this.groupPanel28.Controls.Add(this.checkBoxX8);
            this.groupPanel28.Location = new System.Drawing.Point(638, 4);
            this.groupPanel28.Name = "groupPanel28";
            this.groupPanel28.Size = new System.Drawing.Size(302, 107);
            // 
            // 
            // 
            this.groupPanel28.Style.BackColor = System.Drawing.Color.White;
            this.groupPanel28.Style.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
            this.groupPanel28.Style.BackColorGradientAngle = 90;
            this.groupPanel28.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.groupPanel28.Style.BorderBottomWidth = 1;
            this.groupPanel28.Style.BorderColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
            this.groupPanel28.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.groupPanel28.Style.BorderLeftWidth = 1;
            this.groupPanel28.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.groupPanel28.Style.BorderRightWidth = 1;
            this.groupPanel28.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.groupPanel28.Style.BorderTopWidth = 1;
            this.groupPanel28.Style.CornerDiameter = 4;
            this.groupPanel28.Style.CornerType = DevComponents.DotNetBar.eCornerType.Rounded;
            this.groupPanel28.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
            this.groupPanel28.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near;
            // 
            // 
            // 
            this.groupPanel28.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            // 
            // 
            // 
            this.groupPanel28.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.groupPanel28.TabIndex = 37;
            this.groupPanel28.Text = "Đối với hồ sơ sai do nội bộ";
            // 
            // checkBoxX7
            // 
            this.checkBoxX7.BackColor = System.Drawing.Color.White;
            // 
            // 
            // 
            this.checkBoxX7.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.checkBoxX7.CheckBoxStyle = DevComponents.DotNetBar.eCheckBoxStyle.RadioButton;
            this.checkBoxX7.ForeColor = System.Drawing.Color.Black;
            this.checkBoxX7.Location = new System.Drawing.Point(3, 41);
            this.checkBoxX7.Name = "checkBoxX7";
            this.checkBoxX7.Size = new System.Drawing.Size(266, 23);
            this.checkBoxX7.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            this.checkBoxX7.TabIndex = 32;
            this.checkBoxX7.Text = "Phê duyệt thủ công hồ sơ chuyển nội bộ";
            // 
            // checkBoxX8
            // 
            this.checkBoxX8.BackColor = System.Drawing.Color.White;
            // 
            // 
            // 
            this.checkBoxX8.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.checkBoxX8.CheckBoxStyle = DevComponents.DotNetBar.eCheckBoxStyle.RadioButton;
            this.checkBoxX8.Checked = true;
            this.checkBoxX8.CheckState = System.Windows.Forms.CheckState.Checked;
            this.checkBoxX8.CheckValue = "Y";
            this.checkBoxX8.ForeColor = System.Drawing.Color.Black;
            this.checkBoxX8.Location = new System.Drawing.Point(3, 9);
            this.checkBoxX8.Name = "checkBoxX8";
            this.checkBoxX8.Size = new System.Drawing.Size(266, 23);
            this.checkBoxX8.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            this.checkBoxX8.TabIndex = 31;
            this.checkBoxX8.Text = "Tự động phê duyệt hồ sơ chuyển nội bộ";
            // 
            // groupPanel27
            // 
            this.groupPanel27.BackColor = System.Drawing.Color.White;
            this.groupPanel27.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Metro;
            this.groupPanel27.Controls.Add(this.checkBoxX3);
            this.groupPanel27.Controls.Add(this.checkBoxX4);
            this.groupPanel27.Location = new System.Drawing.Point(316, 4);
            this.groupPanel27.Name = "groupPanel27";
            this.groupPanel27.Size = new System.Drawing.Size(302, 107);
            // 
            // 
            // 
            this.groupPanel27.Style.BackColor = System.Drawing.Color.White;
            this.groupPanel27.Style.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
            this.groupPanel27.Style.BackColorGradientAngle = 90;
            this.groupPanel27.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.groupPanel27.Style.BorderBottomWidth = 1;
            this.groupPanel27.Style.BorderColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
            this.groupPanel27.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.groupPanel27.Style.BorderLeftWidth = 1;
            this.groupPanel27.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.groupPanel27.Style.BorderRightWidth = 1;
            this.groupPanel27.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.groupPanel27.Style.BorderTopWidth = 1;
            this.groupPanel27.Style.CornerDiameter = 4;
            this.groupPanel27.Style.CornerType = DevComponents.DotNetBar.eCornerType.Rounded;
            this.groupPanel27.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
            this.groupPanel27.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near;
            // 
            // 
            // 
            this.groupPanel27.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            // 
            // 
            // 
            this.groupPanel27.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.groupPanel27.TabIndex = 36;
            this.groupPanel27.Text = "Đối với hồ sơ sai";
            // 
            // checkBoxX3
            // 
            this.checkBoxX3.BackColor = System.Drawing.Color.White;
            // 
            // 
            // 
            this.checkBoxX3.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.checkBoxX3.CheckBoxStyle = DevComponents.DotNetBar.eCheckBoxStyle.RadioButton;
            this.checkBoxX3.ForeColor = System.Drawing.Color.Black;
            this.checkBoxX3.Location = new System.Drawing.Point(3, 41);
            this.checkBoxX3.Name = "checkBoxX3";
            this.checkBoxX3.Size = new System.Drawing.Size(266, 23);
            this.checkBoxX3.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            this.checkBoxX3.TabIndex = 32;
            this.checkBoxX3.Text = "Phê duyệt thủ công hồ sơ chuyển nội bộ";
            // 
            // checkBoxX4
            // 
            this.checkBoxX4.BackColor = System.Drawing.Color.White;
            // 
            // 
            // 
            this.checkBoxX4.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.checkBoxX4.CheckBoxStyle = DevComponents.DotNetBar.eCheckBoxStyle.RadioButton;
            this.checkBoxX4.Checked = true;
            this.checkBoxX4.CheckState = System.Windows.Forms.CheckState.Checked;
            this.checkBoxX4.CheckValue = "Y";
            this.checkBoxX4.ForeColor = System.Drawing.Color.Black;
            this.checkBoxX4.Location = new System.Drawing.Point(3, 9);
            this.checkBoxX4.Name = "checkBoxX4";
            this.checkBoxX4.Size = new System.Drawing.Size(266, 23);
            this.checkBoxX4.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            this.checkBoxX4.TabIndex = 31;
            this.checkBoxX4.Text = "Tự động phê duyệt hồ sơ chuyển nội bộ";
            // 
            // groupPanel26
            // 
            this.groupPanel26.BackColor = System.Drawing.Color.White;
            this.groupPanel26.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Metro;
            this.groupPanel26.Controls.Add(this.checkBoxX5);
            this.groupPanel26.Controls.Add(this.checkBoxX6);
            this.groupPanel26.Location = new System.Drawing.Point(3, 4);
            this.groupPanel26.Name = "groupPanel26";
            this.groupPanel26.Size = new System.Drawing.Size(302, 107);
            // 
            // 
            // 
            this.groupPanel26.Style.BackColor = System.Drawing.Color.White;
            this.groupPanel26.Style.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
            this.groupPanel26.Style.BackColorGradientAngle = 90;
            this.groupPanel26.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.groupPanel26.Style.BorderBottomWidth = 1;
            this.groupPanel26.Style.BorderColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
            this.groupPanel26.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.groupPanel26.Style.BorderLeftWidth = 1;
            this.groupPanel26.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.groupPanel26.Style.BorderRightWidth = 1;
            this.groupPanel26.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.groupPanel26.Style.BorderTopWidth = 1;
            this.groupPanel26.Style.CornerDiameter = 4;
            this.groupPanel26.Style.CornerType = DevComponents.DotNetBar.eCornerType.Rounded;
            this.groupPanel26.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
            this.groupPanel26.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near;
            // 
            // 
            // 
            this.groupPanel26.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            // 
            // 
            // 
            this.groupPanel26.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.groupPanel26.TabIndex = 35;
            this.groupPanel26.Text = "Đối với hồ sơ đúng";
            // 
            // checkBoxX5
            // 
            this.checkBoxX5.BackColor = System.Drawing.Color.White;
            // 
            // 
            // 
            this.checkBoxX5.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.checkBoxX5.CheckBoxStyle = DevComponents.DotNetBar.eCheckBoxStyle.RadioButton;
            this.checkBoxX5.ForeColor = System.Drawing.Color.Black;
            this.checkBoxX5.Location = new System.Drawing.Point(3, 41);
            this.checkBoxX5.Name = "checkBoxX5";
            this.checkBoxX5.Size = new System.Drawing.Size(266, 23);
            this.checkBoxX5.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            this.checkBoxX5.TabIndex = 32;
            this.checkBoxX5.Text = "Phê duyệt thủ công hồ sơ chuyển nội bộ";
            // 
            // checkBoxX6
            // 
            this.checkBoxX6.BackColor = System.Drawing.Color.White;
            // 
            // 
            // 
            this.checkBoxX6.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.checkBoxX6.CheckBoxStyle = DevComponents.DotNetBar.eCheckBoxStyle.RadioButton;
            this.checkBoxX6.Checked = true;
            this.checkBoxX6.CheckState = System.Windows.Forms.CheckState.Checked;
            this.checkBoxX6.CheckValue = "Y";
            this.checkBoxX6.ForeColor = System.Drawing.Color.Black;
            this.checkBoxX6.Location = new System.Drawing.Point(3, 9);
            this.checkBoxX6.Name = "checkBoxX6";
            this.checkBoxX6.Size = new System.Drawing.Size(266, 23);
            this.checkBoxX6.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            this.checkBoxX6.TabIndex = 31;
            this.checkBoxX6.Text = "Tự động phê duyệt hồ sơ chuyển nội bộ";
            // 
            // panelEx56
            // 
            this.panelEx56.CanvasColor = System.Drawing.SystemColors.Control;
            this.panelEx56.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            this.panelEx56.Controls.Add(this.buttonX47);
            this.panelEx56.Dock = System.Windows.Forms.DockStyle.Bottom;
            this.panelEx56.Location = new System.Drawing.Point(5, 381);
            this.panelEx56.Name = "panelEx56";
            this.panelEx56.Size = new System.Drawing.Size(1044, 40);
            this.panelEx56.Style.Alignment = System.Drawing.StringAlignment.Center;
            this.panelEx56.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
            this.panelEx56.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemText;
            this.panelEx56.Style.GradientAngle = 90;
            this.panelEx56.TabIndex = 23;
            // 
            // buttonX47
            // 
            this.buttonX47.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
            this.buttonX47.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.buttonX47.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
            this.buttonX47.Image = global::eBHXH.Prototype.Properties.Resources.cancel;
            this.buttonX47.Location = new System.Drawing.Point(954, 6);
            this.buttonX47.Name = "buttonX47";
            this.buttonX47.Size = new System.Drawing.Size(88, 29);
            this.buttonX47.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            this.buttonX47.TabIndex = 21;
            this.buttonX47.Text = "&Thoát";
            // 
            // labelX33
            // 
            // 
            // 
            // 
            this.labelX33.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.labelX33.Dock = System.Windows.Forms.DockStyle.Top;
            this.labelX33.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.labelX33.ForeColor = System.Drawing.Color.Black;
            this.labelX33.Location = new System.Drawing.Point(5, 5);
            this.labelX33.Name = "labelX33";
            this.labelX33.Size = new System.Drawing.Size(1044, 23);
            this.labelX33.TabIndex = 33;
            this.labelX33.Text = "Cơ quan BHXH Huyện Bình Gia - Lãnh đạo phòng Thu (Nguyễn Văn A)";
            // 
            // panelEx53
            // 
            this.panelEx53.CanvasColor = System.Drawing.SystemColors.Control;
            this.panelEx53.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            this.panelEx53.Controls.Add(this.labelX31);
            this.panelEx53.Dock = System.Windows.Forms.DockStyle.Top;
            this.panelEx53.Location = new System.Drawing.Point(0, 0);
            this.panelEx53.Name = "panelEx53";
            this.panelEx53.Size = new System.Drawing.Size(1064, 26);
            this.panelEx53.Style.Alignment = System.Drawing.StringAlignment.Center;
            this.panelEx53.Style.BackColor1.Color = System.Drawing.Color.Green;
            this.panelEx53.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
            this.panelEx53.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
            this.panelEx53.Style.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.panelEx53.Style.ForeColor.Color = System.Drawing.Color.White;
            this.panelEx53.Style.GradientAngle = 90;
            this.panelEx53.TabIndex = 8;
            // 
            // labelX31
            // 
            this.labelX31.BackColor = System.Drawing.Color.Transparent;
            // 
            // 
            // 
            this.labelX31.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.labelX31.Dock = System.Windows.Forms.DockStyle.Fill;
            this.labelX31.Font = new System.Drawing.Font("Segoe UI", 14F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.labelX31.ForeColor = System.Drawing.Color.Black;
            this.labelX31.Location = new System.Drawing.Point(0, 0);
            this.labelX31.Name = "labelX31";
            this.labelX31.PaddingLeft = 20;
            this.labelX31.SingleLineColor = System.Drawing.Color.White;
            this.labelX31.Size = new System.Drawing.Size(1064, 26);
            this.labelX31.TabIndex = 4;
            this.labelX31.Text = "<font color=\"white\">CẤU HÌNH LÃNH ĐẠO PHÊ DUYỆT HỒ SƠ</font>";
            // 
            // superTabItem16
            // 
            this.superTabItem16.AttachedControl = this.superTabControlPanel16;
            this.superTabItem16.GlobalItem = false;
            this.superTabItem16.Name = "superTabItem16";
            this.superTabItem16.Text = "Lãnh đạo phê duyệt";
            // 
            // superTabControlPanel5
            // 
            this.superTabControlPanel5.Controls.Add(this.panelEx3);
            this.superTabControlPanel5.Controls.Add(this.panelEx2);
            this.superTabControlPanel5.Dock = System.Windows.Forms.DockStyle.Fill;
            this.superTabControlPanel5.Location = new System.Drawing.Point(170, 0);
            this.superTabControlPanel5.Name = "superTabControlPanel5";
            this.superTabControlPanel5.Size = new System.Drawing.Size(1064, 462);
            this.superTabControlPanel5.TabIndex = 5;
            this.superTabControlPanel5.TabItem = this.superTabItem5;
            // 
            // panelEx3
            // 
            this.panelEx3.CanvasColor = System.Drawing.SystemColors.Control;
            this.panelEx3.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            this.panelEx3.Controls.Add(this.comboBoxEx3);
            this.panelEx3.Controls.Add(this.labelX41);
            this.panelEx3.Controls.Add(this.labelX40);
            this.panelEx3.Controls.Add(this.labelX36);
            this.panelEx3.Controls.Add(this.textBoxX19);
            this.panelEx3.Controls.Add(this.labelX37);
            this.panelEx3.Controls.Add(this.textBoxX20);
            this.panelEx3.Controls.Add(this.labelX38);
            this.panelEx3.Controls.Add(this.textBoxX21);
            this.panelEx3.Controls.Add(this.labelX39);
            this.panelEx3.Controls.Add(this.textBoxX22);
            this.panelEx3.Controls.Add(this.labelX35);
            this.panelEx3.Controls.Add(this.labelX34);
            this.panelEx3.Controls.Add(this.labelX29);
            this.panelEx3.Controls.Add(this.textBoxX14);
            this.panelEx3.Controls.Add(this.cancelButton);
            this.panelEx3.Controls.Add(this.saveButton);
            this.panelEx3.Controls.Add(this.labelX3);
            this.panelEx3.Controls.Add(this.textBoxX3);
            this.panelEx3.Controls.Add(this.labelX2);
            this.panelEx3.Controls.Add(this.textBoxX2);
            this.panelEx3.Controls.Add(this.labelX6);
            this.panelEx3.Controls.Add(this.textBoxX1);
            this.panelEx3.Location = new System.Drawing.Point(5, 32);
            this.panelEx3.Name = "panelEx3";
            this.panelEx3.Size = new System.Drawing.Size(773, 308);
            this.panelEx3.Style.Alignment = System.Drawing.StringAlignment.Center;
            this.panelEx3.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
            this.panelEx3.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
            this.panelEx3.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
            this.panelEx3.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
            this.panelEx3.Style.GradientAngle = 90;
            this.panelEx3.TabIndex = 12;
            // 
            // labelX29
            // 
            // 
            // 
            // 
            this.labelX29.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.labelX29.ForeColor = System.Drawing.Color.Black;
            this.labelX29.Location = new System.Drawing.Point(16, 65);
            this.labelX29.Name = "labelX29";
            this.labelX29.Size = new System.Drawing.Size(75, 20);
            this.labelX29.TabIndex = 23;
            this.labelX29.Text = "Tên CSDL:";
            this.labelX29.TextAlignment = System.Drawing.StringAlignment.Far;
            // 
            // textBoxX14
            // 
            this.textBoxX14.BackColor = System.Drawing.Color.White;
            // 
            // 
            // 
            this.textBoxX14.Border.Class = "TextBoxBorder";
            this.textBoxX14.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.textBoxX14.FocusHighlightEnabled = true;
            this.textBoxX14.ForeColor = System.Drawing.Color.Black;
            this.highlighter1.SetHighlightOnFocus(this.textBoxX14, true);
            this.textBoxX14.Location = new System.Drawing.Point(97, 64);
            this.textBoxX14.Name = "textBoxX14";
            this.textBoxX14.Size = new System.Drawing.Size(259, 23);
            this.textBoxX14.TabIndex = 22;
            this.textBoxX14.WatermarkText = "Tên cơ sở dữ liệu";
            // 
            // cancelButton
            // 
            this.cancelButton.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
            this.cancelButton.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
            this.cancelButton.Image = global::eBHXH.Prototype.Properties.Resources.cancel;
            this.cancelButton.Location = new System.Drawing.Point(670, 266);
            this.cancelButton.Name = "cancelButton";
            this.cancelButton.Size = new System.Drawing.Size(88, 29);
            this.cancelButton.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            this.cancelButton.TabIndex = 21;
            this.cancelButton.Text = "&Thoát";
            // 
            // saveButton
            // 
            this.saveButton.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
            this.saveButton.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
            this.saveButton.Image = global::eBHXH.Prototype.Properties.Resources.frmMain_16_buttonFileSaveAs_ImageSmall;
            this.saveButton.Location = new System.Drawing.Point(499, 266);
            this.saveButton.Name = "saveButton";
            this.saveButton.Size = new System.Drawing.Size(156, 29);
            this.saveButton.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            this.saveButton.TabIndex = 20;
            this.saveButton.Text = "&Ghi";
            // 
            // labelX3
            // 
            // 
            // 
            // 
            this.labelX3.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.labelX3.ForeColor = System.Drawing.Color.Black;
            this.labelX3.Location = new System.Drawing.Point(16, 121);
            this.labelX3.Name = "labelX3";
            this.labelX3.Size = new System.Drawing.Size(75, 20);
            this.labelX3.TabIndex = 16;
            this.labelX3.Text = "Mật khẩu:";
            this.labelX3.TextAlignment = System.Drawing.StringAlignment.Far;
            // 
            // textBoxX3
            // 
            this.textBoxX3.BackColor = System.Drawing.Color.White;
            // 
            // 
            // 
            this.textBoxX3.Border.Class = "TextBoxBorder";
            this.textBoxX3.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.textBoxX3.FocusHighlightEnabled = true;
            this.textBoxX3.ForeColor = System.Drawing.Color.Black;
            this.highlighter1.SetHighlightOnFocus(this.textBoxX3, true);
            this.textBoxX3.Location = new System.Drawing.Point(97, 120);
            this.textBoxX3.Name = "textBoxX3";
            this.textBoxX3.PasswordChar = '*';
            this.textBoxX3.Size = new System.Drawing.Size(259, 23);
            this.textBoxX3.TabIndex = 15;
            this.textBoxX3.WatermarkText = "Mật khẩu cơ sở dữ liệu";
            // 
            // labelX2
            // 
            // 
            // 
            // 
            this.labelX2.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.labelX2.ForeColor = System.Drawing.Color.Black;
            this.labelX2.Location = new System.Drawing.Point(16, 93);
            this.labelX2.Name = "labelX2";
            this.labelX2.Size = new System.Drawing.Size(75, 20);
            this.labelX2.TabIndex = 14;
            this.labelX2.Text = "Tài khoản:";
            this.labelX2.TextAlignment = System.Drawing.StringAlignment.Far;
            // 
            // textBoxX2
            // 
            this.textBoxX2.BackColor = System.Drawing.Color.White;
            // 
            // 
            // 
            this.textBoxX2.Border.Class = "TextBoxBorder";
            this.textBoxX2.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.textBoxX2.FocusHighlightEnabled = true;
            this.textBoxX2.ForeColor = System.Drawing.Color.Black;
            this.highlighter1.SetHighlightOnFocus(this.textBoxX2, true);
            this.textBoxX2.Location = new System.Drawing.Point(97, 92);
            this.textBoxX2.Name = "textBoxX2";
            this.textBoxX2.Size = new System.Drawing.Size(259, 23);
            this.textBoxX2.TabIndex = 13;
            this.textBoxX2.WatermarkText = "Tài khoản cơ sở dữ liệu";
            // 
            // labelX6
            // 
            // 
            // 
            // 
            this.labelX6.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.labelX6.ForeColor = System.Drawing.Color.Black;
            this.labelX6.Location = new System.Drawing.Point(16, 37);
            this.labelX6.Name = "labelX6";
            this.labelX6.Size = new System.Drawing.Size(75, 20);
            this.labelX6.TabIndex = 12;
            this.labelX6.Text = "Tên máy chủ:";
            this.labelX6.TextAlignment = System.Drawing.StringAlignment.Far;
            // 
            // textBoxX1
            // 
            this.textBoxX1.BackColor = System.Drawing.Color.White;
            // 
            // 
            // 
            this.textBoxX1.Border.Class = "TextBoxBorder";
            this.textBoxX1.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.textBoxX1.FocusHighlightEnabled = true;
            this.textBoxX1.ForeColor = System.Drawing.Color.Black;
            this.highlighter1.SetHighlightOnFocus(this.textBoxX1, true);
            this.textBoxX1.Location = new System.Drawing.Point(97, 36);
            this.textBoxX1.Name = "textBoxX1";
            this.textBoxX1.Size = new System.Drawing.Size(259, 23);
            this.textBoxX1.TabIndex = 11;
            this.textBoxX1.WatermarkText = "Tên máy chủ hoặc IP";
            // 
            // panelEx2
            // 
            this.panelEx2.CanvasColor = System.Drawing.SystemColors.Control;
            this.panelEx2.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            this.panelEx2.Controls.Add(this.labelX90);
            this.panelEx2.Dock = System.Windows.Forms.DockStyle.Top;
            this.panelEx2.Location = new System.Drawing.Point(0, 0);
            this.panelEx2.Name = "panelEx2";
            this.panelEx2.Size = new System.Drawing.Size(1064, 26);
            this.panelEx2.Style.Alignment = System.Drawing.StringAlignment.Center;
            this.panelEx2.Style.BackColor1.Color = System.Drawing.Color.Green;
            this.panelEx2.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
            this.panelEx2.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
            this.panelEx2.Style.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.panelEx2.Style.ForeColor.Color = System.Drawing.Color.White;
            this.panelEx2.Style.GradientAngle = 90;
            this.panelEx2.TabIndex = 5;
            // 
            // labelX90
            // 
            this.labelX90.BackColor = System.Drawing.Color.Transparent;
            // 
            // 
            // 
            this.labelX90.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.labelX90.Dock = System.Windows.Forms.DockStyle.Fill;
            this.labelX90.Font = new System.Drawing.Font("Segoe UI", 14F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.labelX90.ForeColor = System.Drawing.Color.Black;
            this.labelX90.Location = new System.Drawing.Point(0, 0);
            this.labelX90.Name = "labelX90";
            this.labelX90.PaddingLeft = 20;
            this.labelX90.SingleLineColor = System.Drawing.Color.White;
            this.labelX90.Size = new System.Drawing.Size(1064, 26);
            this.labelX90.TabIndex = 3;
            this.labelX90.Text = "<font color=\"white\">THÔNG SỐ HỆ THỐNG</font>";
            // 
            // superTabItem5
            // 
            this.superTabItem5.AttachedControl = this.superTabControlPanel5;
            this.superTabItem5.GlobalItem = false;
            this.superTabItem5.Name = "superTabItem5";
            this.superTabItem5.Text = "Thông số hệ thống";
            // 
            // superTabControlPanel14
            // 
            this.superTabControlPanel14.Controls.Add(this.panelEx45);
            this.superTabControlPanel14.Controls.Add(this.panelEx38);
            this.superTabControlPanel14.Dock = System.Windows.Forms.DockStyle.Fill;
            this.superTabControlPanel14.Location = new System.Drawing.Point(170, 0);
            this.superTabControlPanel14.Name = "superTabControlPanel14";
            this.superTabControlPanel14.Size = new System.Drawing.Size(1064, 462);
            this.superTabControlPanel14.TabIndex = 0;
            this.superTabControlPanel14.TabItem = this.superTabItem14;
            // 
            // panelEx45
            // 
            this.panelEx45.CanvasColor = System.Drawing.SystemColors.Control;
            this.panelEx45.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            this.panelEx45.Controls.Add(this.panelEx46);
            this.panelEx45.Dock = System.Windows.Forms.DockStyle.Fill;
            this.panelEx45.Location = new System.Drawing.Point(0, 26);
            this.panelEx45.Name = "panelEx45";
            this.panelEx45.Padding = new System.Windows.Forms.Padding(5);
            this.panelEx45.Size = new System.Drawing.Size(1064, 436);
            this.panelEx45.Style.Alignment = System.Drawing.StringAlignment.Center;
            this.panelEx45.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
            this.panelEx45.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemText;
            this.panelEx45.Style.GradientAngle = 90;
            this.panelEx45.TabIndex = 37;
            // 
            // panelEx46
            // 
            this.panelEx46.CanvasColor = System.Drawing.SystemColors.Control;
            this.panelEx46.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            this.panelEx46.Controls.Add(this.groupPanel23);
            this.panelEx46.Controls.Add(this.groupPanel22);
            this.panelEx46.Controls.Add(this.panelEx47);
            this.panelEx46.Dock = System.Windows.Forms.DockStyle.Fill;
            this.panelEx46.Location = new System.Drawing.Point(5, 5);
            this.panelEx46.Name = "panelEx46";
            this.panelEx46.Padding = new System.Windows.Forms.Padding(5);
            this.panelEx46.Size = new System.Drawing.Size(1054, 426);
            this.panelEx46.Style.Alignment = System.Drawing.StringAlignment.Center;
            this.panelEx46.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
            this.panelEx46.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
            this.panelEx46.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
            this.panelEx46.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
            this.panelEx46.Style.GradientAngle = 90;
            this.panelEx46.TabIndex = 15;
            // 
            // groupPanel23
            // 
            this.groupPanel23.BackColor = System.Drawing.Color.White;
            this.groupPanel23.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Metro;
            this.groupPanel23.Controls.Add(this.dataGridViewX16);
            this.groupPanel23.Dock = System.Windows.Forms.DockStyle.Fill;
            this.groupPanel23.DrawTitleBox = false;
            this.groupPanel23.Location = new System.Drawing.Point(5, 56);
            this.groupPanel23.Name = "groupPanel23";
            this.groupPanel23.Padding = new System.Windows.Forms.Padding(2);
            this.groupPanel23.Size = new System.Drawing.Size(1044, 325);
            // 
            // 
            // 
            this.groupPanel23.Style.BackColor = System.Drawing.Color.White;
            this.groupPanel23.Style.BackColor2 = System.Drawing.Color.White;
            this.groupPanel23.Style.BackColorGradientAngle = 90;
            this.groupPanel23.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.groupPanel23.Style.BorderBottomWidth = 1;
            this.groupPanel23.Style.BorderColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
            this.groupPanel23.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.groupPanel23.Style.BorderLeftWidth = 1;
            this.groupPanel23.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.groupPanel23.Style.BorderRightWidth = 1;
            this.groupPanel23.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.groupPanel23.Style.BorderTopWidth = 1;
            this.groupPanel23.Style.CornerDiameter = 4;
            this.groupPanel23.Style.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.groupPanel23.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
            this.groupPanel23.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near;
            // 
            // 
            // 
            this.groupPanel23.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            // 
            // 
            // 
            this.groupPanel23.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.groupPanel23.TabIndex = 30;
            this.groupPanel23.Text = "Danh sách đơn vị    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&" +
                "nbsp;&nbsp;<font color=\"blue\">Ctrl+S:</font> Ghi &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&" +
                "nbsp;<font color=\"blue\">F8:</font> Xóa";
            // 
            // dataGridViewX16
            // 
            this.dataGridViewX16.BackgroundColor = System.Drawing.Color.White;
            dataGridViewCellStyle154.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
            dataGridViewCellStyle154.BackColor = System.Drawing.SystemColors.Control;
            dataGridViewCellStyle154.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            dataGridViewCellStyle154.ForeColor = System.Drawing.Color.Black;
            dataGridViewCellStyle154.SelectionBackColor = System.Drawing.SystemColors.Highlight;
            dataGridViewCellStyle154.SelectionForeColor = System.Drawing.Color.Black;
            dataGridViewCellStyle154.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
            this.dataGridViewX16.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle154;
            this.dataGridViewX16.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
            this.dataGridViewX16.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
            this.Column46,
            this.Column47,
            this.Column48,
            this.Column49,
            this.Column50,
            this.Column51,
            this.Column52,
            this.Column53,
            this.Column54,
            this.Column55,
            this.Column56,
            this.Column57});
            dataGridViewCellStyle155.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
            dataGridViewCellStyle155.BackColor = System.Drawing.Color.White;
            dataGridViewCellStyle155.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            dataGridViewCellStyle155.ForeColor = System.Drawing.Color.Black;
            dataGridViewCellStyle155.SelectionBackColor = System.Drawing.SystemColors.Highlight;
            dataGridViewCellStyle155.SelectionForeColor = System.Drawing.Color.Black;
            dataGridViewCellStyle155.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
            this.dataGridViewX16.DefaultCellStyle = dataGridViewCellStyle155;
            this.dataGridViewX16.Dock = System.Windows.Forms.DockStyle.Fill;
            this.dataGridViewX16.EnableHeadersVisualStyles = false;
            this.dataGridViewX16.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(170)))), ((int)(((byte)(170)))), ((int)(((byte)(170)))));
            this.dataGridViewX16.Location = new System.Drawing.Point(2, 2);
            this.dataGridViewX16.Name = "dataGridViewX16";
            dataGridViewCellStyle156.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
            dataGridViewCellStyle156.BackColor = System.Drawing.SystemColors.Control;
            dataGridViewCellStyle156.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            dataGridViewCellStyle156.ForeColor = System.Drawing.Color.Black;
            dataGridViewCellStyle156.SelectionBackColor = System.Drawing.SystemColors.Highlight;
            dataGridViewCellStyle156.SelectionForeColor = System.Drawing.Color.Black;
            dataGridViewCellStyle156.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
            this.dataGridViewX16.RowHeadersDefaultCellStyle = dataGridViewCellStyle156;
            this.dataGridViewX16.Size = new System.Drawing.Size(1038, 303);
            this.dataGridViewX16.TabIndex = 23;
            // 
            // Column46
            // 
            this.Column46.HeaderText = "Mã đơn vị";
            this.Column46.Name = "Column46";
            // 
            // Column47
            // 
            this.Column47.HeaderText = "Mã số thuế";
            this.Column47.Name = "Column47";
            // 
            // Column48
            // 
            this.Column48.HeaderText = "Tên đơn vị";
            this.Column48.Name = "Column48";
            this.Column48.Width = 200;
            // 
            // Column49
            // 
            this.Column49.HeaderText = "Điện thoại";
            this.Column49.Name = "Column49";
            // 
            // Column50
            // 
            this.Column50.HeaderText = "Fax";
            this.Column50.Name = "Column50";
            // 
            // Column51
            // 
            this.Column51.HeaderText = "Email";
            this.Column51.Name = "Column51";
            // 
            // Column52
            // 
            this.Column52.HeaderText = "Tên người liên hệ";
            this.Column52.Name = "Column52";
            this.Column52.Width = 200;
            // 
            // Column53
            // 
            this.Column53.HeaderText = "Điện thoại người liên hệ";
            this.Column53.Name = "Column53";
            // 
            // Column54
            // 
            this.Column54.HeaderText = "Email người liên hệ";
            this.Column54.Name = "Column54";
            this.Column54.Width = 150;
            // 
            // Column55
            // 
            this.Column55.HeaderText = "Hoạt động";
            this.Column55.Name = "Column55";
            // 
            // Column56
            // 
            this.Column56.HeaderText = "Địa chỉ";
            this.Column56.Name = "Column56";
            this.Column56.Width = 200;
            // 
            // Column57
            // 
            this.Column57.HeaderText = "Ngày tham gia";
            this.Column57.Name = "Column57";
            // 
            // groupPanel22
            // 
            this.groupPanel22.BackColor = System.Drawing.Color.White;
            this.groupPanel22.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Metro;
            this.groupPanel22.Controls.Add(this.labelX21);
            this.groupPanel22.Controls.Add(this.textBoxX18);
            this.groupPanel22.Controls.Add(this.textBoxX17);
            this.groupPanel22.Controls.Add(this.labelX12);
            this.groupPanel22.Controls.Add(this.textBoxX15);
            this.groupPanel22.Controls.Add(this.labelX20);
            this.groupPanel22.Dock = System.Windows.Forms.DockStyle.Top;
            this.groupPanel22.DrawTitleBox = false;
            this.groupPanel22.Location = new System.Drawing.Point(5, 5);
            this.groupPanel22.Name = "groupPanel22";
            this.groupPanel22.Size = new System.Drawing.Size(1044, 51);
            // 
            // 
            // 
            this.groupPanel22.Style.BackColor = System.Drawing.Color.White;
            this.groupPanel22.Style.BackColor2 = System.Drawing.Color.White;
            this.groupPanel22.Style.BackColorGradientAngle = 90;
            this.groupPanel22.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.groupPanel22.Style.BorderBottomWidth = 1;
            this.groupPanel22.Style.BorderColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
            this.groupPanel22.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.groupPanel22.Style.BorderLeftWidth = 1;
            this.groupPanel22.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.groupPanel22.Style.BorderRightWidth = 1;
            this.groupPanel22.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.groupPanel22.Style.BorderTopWidth = 1;
            this.groupPanel22.Style.CornerDiameter = 4;
            this.groupPanel22.Style.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.groupPanel22.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
            this.groupPanel22.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near;
            // 
            // 
            // 
            this.groupPanel22.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            // 
            // 
            // 
            this.groupPanel22.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.groupPanel22.TabIndex = 29;
            this.groupPanel22.Text = "Lọc dữ liệu";
            // 
            // labelX21
            // 
            this.labelX21.BackColor = System.Drawing.Color.White;
            // 
            // 
            // 
            this.labelX21.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.labelX21.ForeColor = System.Drawing.Color.Black;
            this.labelX21.Location = new System.Drawing.Point(412, 4);
            this.labelX21.Name = "labelX21";
            this.labelX21.Size = new System.Drawing.Size(75, 20);
            this.labelX21.TabIndex = 18;
            this.labelX21.Text = "Tên đơn vị:";
            this.labelX21.TextAlignment = System.Drawing.StringAlignment.Far;
            // 
            // textBoxX18
            // 
            this.textBoxX18.BackColor = System.Drawing.Color.White;
            // 
            // 
            // 
            this.textBoxX18.Border.Class = "TextBoxBorder";
            this.textBoxX18.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.textBoxX18.FocusHighlightEnabled = true;
            this.textBoxX18.ForeColor = System.Drawing.Color.Black;
            this.highlighter1.SetHighlightOnFocus(this.textBoxX18, true);
            this.textBoxX18.Location = new System.Drawing.Point(493, 3);
            this.textBoxX18.Name = "textBoxX18";
            this.textBoxX18.Size = new System.Drawing.Size(138, 23);
            this.textBoxX18.TabIndex = 17;
            // 
            // textBoxX17
            // 
            this.textBoxX17.BackColor = System.Drawing.Color.White;
            // 
            // 
            // 
            this.textBoxX17.Border.Class = "TextBoxBorder";
            this.textBoxX17.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.textBoxX17.FocusHighlightEnabled = true;
            this.textBoxX17.ForeColor = System.Drawing.Color.Black;
            this.highlighter1.SetHighlightOnFocus(this.textBoxX17, true);
            this.textBoxX17.Location = new System.Drawing.Point(79, 3);
            this.textBoxX17.Name = "textBoxX17";
            this.textBoxX17.Size = new System.Drawing.Size(138, 23);
            this.textBoxX17.TabIndex = 13;
            // 
            // labelX12
            // 
            this.labelX12.BackColor = System.Drawing.Color.White;
            // 
            // 
            // 
            this.labelX12.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.labelX12.ForeColor = System.Drawing.Color.Black;
            this.labelX12.Location = new System.Drawing.Point(189, 4);
            this.labelX12.Name = "labelX12";
            this.labelX12.Size = new System.Drawing.Size(75, 20);
            this.labelX12.TabIndex = 16;
            this.labelX12.Text = "MST:";
            this.labelX12.TextAlignment = System.Drawing.StringAlignment.Far;
            // 
            // textBoxX15
            // 
            this.textBoxX15.BackColor = System.Drawing.Color.White;
            // 
            // 
            // 
            this.textBoxX15.Border.Class = "TextBoxBorder";
            this.textBoxX15.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.textBoxX15.FocusHighlightEnabled = true;
            this.textBoxX15.ForeColor = System.Drawing.Color.Black;
            this.highlighter1.SetHighlightOnFocus(this.textBoxX15, true);
            this.textBoxX15.Location = new System.Drawing.Point(270, 3);
            this.textBoxX15.Name = "textBoxX15";
            this.textBoxX15.Size = new System.Drawing.Size(138, 23);
            this.textBoxX15.TabIndex = 15;
            // 
            // labelX20
            // 
            this.labelX20.BackColor = System.Drawing.Color.White;
            // 
            // 
            // 
            this.labelX20.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.labelX20.ForeColor = System.Drawing.Color.Black;
            this.labelX20.Location = new System.Drawing.Point(-2, 4);
            this.labelX20.Name = "labelX20";
            this.labelX20.Size = new System.Drawing.Size(75, 20);
            this.labelX20.TabIndex = 14;
            this.labelX20.Text = "Mã đơn vị:";
            this.labelX20.TextAlignment = System.Drawing.StringAlignment.Far;
            // 
            // panelEx47
            // 
            this.panelEx47.CanvasColor = System.Drawing.SystemColors.Control;
            this.panelEx47.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            this.panelEx47.Controls.Add(this.buttonX39);
            this.panelEx47.Controls.Add(this.buttonX40);
            this.panelEx47.Controls.Add(this.buttonX41);
            this.panelEx47.Dock = System.Windows.Forms.DockStyle.Bottom;
            this.panelEx47.Location = new System.Drawing.Point(5, 381);
            this.panelEx47.Name = "panelEx47";
            this.panelEx47.Size = new System.Drawing.Size(1044, 40);
            this.panelEx47.Style.Alignment = System.Drawing.StringAlignment.Center;
            this.panelEx47.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
            this.panelEx47.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemText;
            this.panelEx47.Style.GradientAngle = 90;
            this.panelEx47.TabIndex = 24;
            // 
            // buttonX39
            // 
            this.buttonX39.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
            this.buttonX39.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
            this.buttonX39.Image = global::eBHXH.Prototype.Properties.Resources.RecycleBin;
            this.buttonX39.Location = new System.Drawing.Point(132, 6);
            this.buttonX39.Name = "buttonX39";
            this.buttonX39.Size = new System.Drawing.Size(88, 29);
            this.buttonX39.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            this.buttonX39.TabIndex = 23;
            this.buttonX39.Text = "&Xóa";
            // 
            // buttonX40
            // 
            this.buttonX40.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
            this.buttonX40.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
            this.buttonX40.Image = global::eBHXH.Prototype.Properties.Resources.frmMain_16_buttonFileSaveAs_ImageSmall;
            this.buttonX40.Location = new System.Drawing.Point(4, 6);
            this.buttonX40.Name = "buttonX40";
            this.buttonX40.Size = new System.Drawing.Size(120, 29);
            this.buttonX40.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            this.buttonX40.TabIndex = 20;
            this.buttonX40.Text = "&Ghi";
            // 
            // buttonX41
            // 
            this.buttonX41.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
            this.buttonX41.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.buttonX41.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
            this.buttonX41.Image = global::eBHXH.Prototype.Properties.Resources.cancel;
            this.buttonX41.Location = new System.Drawing.Point(954, 6);
            this.buttonX41.Name = "buttonX41";
            this.buttonX41.Size = new System.Drawing.Size(88, 29);
            this.buttonX41.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            this.buttonX41.TabIndex = 21;
            this.buttonX41.Text = "&Thoát";
            // 
            // panelEx38
            // 
            this.panelEx38.CanvasColor = System.Drawing.SystemColors.Control;
            this.panelEx38.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            this.panelEx38.Controls.Add(this.labelX11);
            this.panelEx38.Dock = System.Windows.Forms.DockStyle.Top;
            this.panelEx38.Location = new System.Drawing.Point(0, 0);
            this.panelEx38.Name = "panelEx38";
            this.panelEx38.Size = new System.Drawing.Size(1064, 26);
            this.panelEx38.Style.Alignment = System.Drawing.StringAlignment.Center;
            this.panelEx38.Style.BackColor1.Color = System.Drawing.Color.Green;
            this.panelEx38.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
            this.panelEx38.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
            this.panelEx38.Style.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.panelEx38.Style.ForeColor.Color = System.Drawing.Color.White;
            this.panelEx38.Style.GradientAngle = 90;
            this.panelEx38.TabIndex = 7;
            // 
            // labelX11
            // 
            this.labelX11.BackColor = System.Drawing.Color.Transparent;
            // 
            // 
            // 
            this.labelX11.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.labelX11.Dock = System.Windows.Forms.DockStyle.Fill;
            this.labelX11.Font = new System.Drawing.Font("Segoe UI", 14F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.labelX11.ForeColor = System.Drawing.Color.Black;
            this.labelX11.Location = new System.Drawing.Point(0, 0);
            this.labelX11.Name = "labelX11";
            this.labelX11.PaddingLeft = 20;
            this.labelX11.SingleLineColor = System.Drawing.Color.White;
            this.labelX11.Size = new System.Drawing.Size(1064, 26);
            this.labelX11.TabIndex = 4;
            this.labelX11.Text = "<font color=\"white\">DANH MỤC ĐƠN VỊ THAM GIA THỦ TỤC ĐIỆN TỬ</font>";
            // 
            // superTabItem14
            // 
            this.superTabItem14.AttachedControl = this.superTabControlPanel14;
            this.superTabItem14.GlobalItem = false;
            this.superTabItem14.Name = "superTabItem14";
            this.superTabItem14.Text = "Danh mục đơn vị";
            // 
            // superTabControlPanel7
            // 
            this.superTabControlPanel7.Controls.Add(this.panelEx8);
            this.superTabControlPanel7.Controls.Add(panelEx7);
            this.superTabControlPanel7.Dock = System.Windows.Forms.DockStyle.Fill;
            this.superTabControlPanel7.Location = new System.Drawing.Point(170, 0);
            this.superTabControlPanel7.Name = "superTabControlPanel7";
            this.superTabControlPanel7.Size = new System.Drawing.Size(1064, 462);
            this.superTabControlPanel7.TabIndex = 0;
            this.superTabControlPanel7.TabItem = this.superTabItem7;
            // 
            // panelEx8
            // 
            this.panelEx8.CanvasColor = System.Drawing.SystemColors.Control;
            this.panelEx8.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            this.panelEx8.Controls.Add(this.superTabControl2);
            this.panelEx8.Dock = System.Windows.Forms.DockStyle.Fill;
            this.panelEx8.Location = new System.Drawing.Point(0, 26);
            this.panelEx8.Name = "panelEx8";
            this.panelEx8.Padding = new System.Windows.Forms.Padding(5);
            this.panelEx8.Size = new System.Drawing.Size(1064, 436);
            this.panelEx8.Style.Alignment = System.Drawing.StringAlignment.Center;
            this.panelEx8.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
            this.panelEx8.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemText;
            this.panelEx8.Style.GradientAngle = 90;
            this.panelEx8.TabIndex = 15;
            // 
            // superTabControl2
            // 
            this.superTabControl2.BackColor = System.Drawing.Color.White;
            // 
            // 
            // 
            // 
            // 
            // 
            this.superTabControl2.ControlBox.CloseBox.Name = "";
            // 
            // 
            // 
            this.superTabControl2.ControlBox.MenuBox.Name = "";
            this.superTabControl2.ControlBox.Name = "";
            this.superTabControl2.ControlBox.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
            this.superTabControl2.ControlBox.MenuBox,
            this.superTabControl2.ControlBox.CloseBox});
            this.superTabControl2.Controls.Add(this.superTabControlPanel9);
            this.superTabControl2.Controls.Add(this.superTabControlPanel8);
            this.superTabControl2.Dock = System.Windows.Forms.DockStyle.Fill;
            this.superTabControl2.ForeColor = System.Drawing.Color.Black;
            this.superTabControl2.Location = new System.Drawing.Point(5, 5);
            this.superTabControl2.Name = "superTabControl2";
            this.superTabControl2.ReorderTabsEnabled = true;
            this.superTabControl2.SelectedTabFont = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Bold);
            this.superTabControl2.SelectedTabIndex = 0;
            this.superTabControl2.Size = new System.Drawing.Size(1054, 426);
            this.superTabControl2.TabFont = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.superTabControl2.TabIndex = 24;
            this.superTabControl2.Tabs.AddRange(new DevComponents.DotNetBar.BaseItem[] {
            this.superTabItem9,
            this.superTabItem8});
            this.superTabControl2.TabStyle = DevComponents.DotNetBar.eSuperTabStyle.VisualStudio2008Dock;
            // 
            // superTabControlPanel9
            // 
            this.superTabControlPanel9.Controls.Add(this.groupPanel2);
            this.superTabControlPanel9.Controls.Add(this.panelEx10);
            this.superTabControlPanel9.Controls.Add(this.groupPanel1);
            this.superTabControlPanel9.Dock = System.Windows.Forms.DockStyle.Fill;
            this.superTabControlPanel9.Location = new System.Drawing.Point(0, 28);
            this.superTabControlPanel9.Name = "superTabControlPanel9";
            this.superTabControlPanel9.Padding = new System.Windows.Forms.Padding(5, 0, 5, 5);
            this.superTabControlPanel9.Size = new System.Drawing.Size(1054, 398);
            this.superTabControlPanel9.TabIndex = 0;
            this.superTabControlPanel9.TabItem = this.superTabItem9;
            // 
            // groupPanel2
            // 
            this.groupPanel2.BackColor = System.Drawing.Color.White;
            this.groupPanel2.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Metro;
            this.groupPanel2.Controls.Add(this.dataGridViewX2);
            this.groupPanel2.Dock = System.Windows.Forms.DockStyle.Fill;
            this.groupPanel2.DrawTitleBox = false;
            this.groupPanel2.Location = new System.Drawing.Point(5, 51);
            this.groupPanel2.Name = "groupPanel2";
            this.groupPanel2.Padding = new System.Windows.Forms.Padding(2);
            this.groupPanel2.Size = new System.Drawing.Size(1044, 302);
            // 
            // 
            // 
            this.groupPanel2.Style.BackColor = System.Drawing.Color.White;
            this.groupPanel2.Style.BackColor2 = System.Drawing.Color.White;
            this.groupPanel2.Style.BackColorGradientAngle = 90;
            this.groupPanel2.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.groupPanel2.Style.BorderBottomWidth = 1;
            this.groupPanel2.Style.BorderColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
            this.groupPanel2.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.groupPanel2.Style.BorderLeftWidth = 1;
            this.groupPanel2.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.groupPanel2.Style.BorderRightWidth = 1;
            this.groupPanel2.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.groupPanel2.Style.BorderTopWidth = 1;
            this.groupPanel2.Style.CornerDiameter = 4;
            this.groupPanel2.Style.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.groupPanel2.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
            this.groupPanel2.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near;
            // 
            // 
            // 
            this.groupPanel2.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            // 
            // 
            // 
            this.groupPanel2.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.groupPanel2.TabIndex = 25;
            this.groupPanel2.Text = resources.GetString("groupPanel2.Text");
            // 
            // dataGridViewX2
            // 
            this.dataGridViewX2.BackgroundColor = System.Drawing.Color.White;
            dataGridViewCellStyle157.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
            dataGridViewCellStyle157.BackColor = System.Drawing.SystemColors.Control;
            dataGridViewCellStyle157.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            dataGridViewCellStyle157.ForeColor = System.Drawing.Color.Black;
            dataGridViewCellStyle157.SelectionBackColor = System.Drawing.SystemColors.Highlight;
            dataGridViewCellStyle157.SelectionForeColor = System.Drawing.Color.Black;
            dataGridViewCellStyle157.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
            this.dataGridViewX2.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle157;
            this.dataGridViewX2.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
            this.dataGridViewX2.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
            this.Column6,
            this.Column12,
            this.Column13,
            this.Column7,
            this.Column8,
            this.Column9,
            this.Column10,
            this.Column11});
            dataGridViewCellStyle158.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
            dataGridViewCellStyle158.BackColor = System.Drawing.Color.White;
            dataGridViewCellStyle158.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            dataGridViewCellStyle158.ForeColor = System.Drawing.Color.Black;
            dataGridViewCellStyle158.SelectionBackColor = System.Drawing.SystemColors.Highlight;
            dataGridViewCellStyle158.SelectionForeColor = System.Drawing.Color.Black;
            dataGridViewCellStyle158.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
            this.dataGridViewX2.DefaultCellStyle = dataGridViewCellStyle158;
            this.dataGridViewX2.Dock = System.Windows.Forms.DockStyle.Fill;
            this.dataGridViewX2.EnableHeadersVisualStyles = false;
            this.dataGridViewX2.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(170)))), ((int)(((byte)(170)))), ((int)(((byte)(170)))));
            this.dataGridViewX2.Location = new System.Drawing.Point(2, 2);
            this.dataGridViewX2.Name = "dataGridViewX2";
            dataGridViewCellStyle159.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
            dataGridViewCellStyle159.BackColor = System.Drawing.SystemColors.Control;
            dataGridViewCellStyle159.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            dataGridViewCellStyle159.ForeColor = System.Drawing.Color.Black;
            dataGridViewCellStyle159.SelectionBackColor = System.Drawing.SystemColors.Highlight;
            dataGridViewCellStyle159.SelectionForeColor = System.Drawing.Color.Black;
            dataGridViewCellStyle159.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
            this.dataGridViewX2.RowHeadersDefaultCellStyle = dataGridViewCellStyle159;
            this.dataGridViewX2.Size = new System.Drawing.Size(1038, 280);
            this.dataGridViewX2.TabIndex = 23;
            // 
            // Column6
            // 
            this.Column6.HeaderText = "Tên cơ quan";
            this.Column6.Name = "Column6";
            this.Column6.Width = 250;
            // 
            // Column12
            // 
            this.Column12.HeaderText = "Mã cơ quan";
            this.Column12.Name = "Column12";
            // 
            // Column13
            // 
            this.Column13.HeaderText = "Mã CQ cấp trên";
            this.Column13.Name = "Column13";
            // 
            // Column7
            // 
            this.Column7.HeaderText = "Tên địa danh";
            this.Column7.Name = "Column7";
            this.Column7.Width = 120;
            // 
            // Column8
            // 
            this.Column8.HeaderText = "Người ký";
            this.Column8.Name = "Column8";
            this.Column8.Width = 150;
            // 
            // Column9
            // 
            this.Column9.HeaderText = "Chức vụ người ký";
            this.Column9.Name = "Column9";
            // 
            // Column10
            // 
            this.Column10.HeaderText = "Nơi ký";
            this.Column10.Name = "Column10";
            // 
            // Column11
            // 
            this.Column11.HeaderText = "Hoạt động";
            this.Column11.Name = "Column11";
            this.Column11.Width = 50;
            // 
            // panelEx10
            // 
            this.panelEx10.CanvasColor = System.Drawing.SystemColors.Control;
            this.panelEx10.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            this.panelEx10.Controls.Add(this.buttonX9);
            this.panelEx10.Controls.Add(this.buttonX5);
            this.panelEx10.Controls.Add(this.buttonX3);
            this.panelEx10.Controls.Add(this.buttonX4);
            this.panelEx10.Dock = System.Windows.Forms.DockStyle.Bottom;
            this.panelEx10.Location = new System.Drawing.Point(5, 353);
            this.panelEx10.Name = "panelEx10";
            this.panelEx10.Size = new System.Drawing.Size(1044, 40);
            this.panelEx10.Style.Alignment = System.Drawing.StringAlignment.Center;
            this.panelEx10.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
            this.panelEx10.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemText;
            this.panelEx10.Style.GradientAngle = 90;
            this.panelEx10.TabIndex = 24;
            // 
            // buttonX9
            // 
            this.buttonX9.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
            this.buttonX9.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
            this.buttonX9.Image = global::eBHXH.Prototype.Properties.Resources.BHXHVN24x24;
            this.buttonX9.ImageFixedSize = new System.Drawing.Size(20, 20);
            this.buttonX9.Location = new System.Drawing.Point(136, 6);
            this.buttonX9.Name = "buttonX9";
            this.buttonX9.Size = new System.Drawing.Size(169, 29);
            this.buttonX9.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            this.buttonX9.TabIndex = 23;
            this.buttonX9.Text = "Tổ chức phòng / bộ phận";
            // 
            // buttonX5
            // 
            this.buttonX5.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
            this.buttonX5.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
            this.buttonX5.Image = global::eBHXH.Prototype.Properties.Resources.RecycleBin;
            this.buttonX5.Location = new System.Drawing.Point(315, 6);
            this.buttonX5.Name = "buttonX5";
            this.buttonX5.Size = new System.Drawing.Size(88, 29);
            this.buttonX5.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            this.buttonX5.TabIndex = 22;
            this.buttonX5.Text = "&Xóa";
            // 
            // buttonX3
            // 
            this.buttonX3.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
            this.buttonX3.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
            this.buttonX3.Image = global::eBHXH.Prototype.Properties.Resources.frmMain_16_buttonFileSaveAs_ImageSmall;
            this.buttonX3.Location = new System.Drawing.Point(2, 6);
            this.buttonX3.Name = "buttonX3";
            this.buttonX3.Size = new System.Drawing.Size(120, 29);
            this.buttonX3.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            this.buttonX3.TabIndex = 20;
            this.buttonX3.Text = "&Ghi";
            // 
            // buttonX4
            // 
            this.buttonX4.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
            this.buttonX4.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.buttonX4.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
            this.buttonX4.Image = global::eBHXH.Prototype.Properties.Resources.cancel;
            this.buttonX4.Location = new System.Drawing.Point(953, 6);
            this.buttonX4.Name = "buttonX4";
            this.buttonX4.Size = new System.Drawing.Size(88, 29);
            this.buttonX4.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            this.buttonX4.TabIndex = 21;
            this.buttonX4.Text = "&Thoát";
            // 
            // groupPanel1
            // 
            this.groupPanel1.BackColor = System.Drawing.Color.White;
            this.groupPanel1.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Metro;
            this.groupPanel1.Controls.Add(this.labelX5);
            this.groupPanel1.Controls.Add(this.textBoxX4);
            this.groupPanel1.Controls.Add(this.labelX9);
            this.groupPanel1.Controls.Add(this.textBoxX7);
            this.groupPanel1.Dock = System.Windows.Forms.DockStyle.Top;
            this.groupPanel1.DrawTitleBox = false;
            this.groupPanel1.Location = new System.Drawing.Point(5, 0);
            this.groupPanel1.Name = "groupPanel1";
            this.groupPanel1.Size = new System.Drawing.Size(1044, 51);
            // 
            // 
            // 
            this.groupPanel1.Style.BackColor = System.Drawing.Color.White;
            this.groupPanel1.Style.BackColor2 = System.Drawing.Color.White;
            this.groupPanel1.Style.BackColorGradientAngle = 90;
            this.groupPanel1.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.groupPanel1.Style.BorderBottomWidth = 1;
            this.groupPanel1.Style.BorderColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
            this.groupPanel1.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.groupPanel1.Style.BorderLeftWidth = 1;
            this.groupPanel1.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.groupPanel1.Style.BorderRightWidth = 1;
            this.groupPanel1.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.groupPanel1.Style.BorderTopWidth = 1;
            this.groupPanel1.Style.CornerDiameter = 4;
            this.groupPanel1.Style.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.groupPanel1.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
            this.groupPanel1.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near;
            // 
            // 
            // 
            this.groupPanel1.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            // 
            // 
            // 
            this.groupPanel1.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.groupPanel1.TabIndex = 27;
            this.groupPanel1.Text = "Lọc dữ liệu";
            // 
            // labelX5
            // 
            this.labelX5.BackColor = System.Drawing.Color.White;
            // 
            // 
            // 
            this.labelX5.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.labelX5.ForeColor = System.Drawing.Color.Black;
            this.labelX5.Location = new System.Drawing.Point(244, 4);
            this.labelX5.Name = "labelX5";
            this.labelX5.Size = new System.Drawing.Size(75, 20);
            this.labelX5.TabIndex = 16;
            this.labelX5.Text = "Tên cơ quan:";
            this.labelX5.TextAlignment = System.Drawing.StringAlignment.Far;
            // 
            // textBoxX4
            // 
            this.textBoxX4.BackColor = System.Drawing.Color.White;
            // 
            // 
            // 
            this.textBoxX4.Border.Class = "TextBoxBorder";
            this.textBoxX4.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.textBoxX4.FocusHighlightEnabled = true;
            this.textBoxX4.ForeColor = System.Drawing.Color.Black;
            this.highlighter1.SetHighlightOnFocus(this.textBoxX4, true);
            this.textBoxX4.Location = new System.Drawing.Point(325, 3);
            this.textBoxX4.Name = "textBoxX4";
            this.textBoxX4.Size = new System.Drawing.Size(259, 23);
            this.textBoxX4.TabIndex = 15;
            this.textBoxX4.WatermarkText = "Tên cơ quan cấp tỉnh";
            // 
            // labelX9
            // 
            this.labelX9.BackColor = System.Drawing.Color.White;
            // 
            // 
            // 
            this.labelX9.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.labelX9.ForeColor = System.Drawing.Color.Black;
            this.labelX9.Location = new System.Drawing.Point(5, 4);
            this.labelX9.Name = "labelX9";
            this.labelX9.Size = new System.Drawing.Size(75, 20);
            this.labelX9.TabIndex = 14;
            this.labelX9.Text = "Mã cơ quan:";
            this.labelX9.TextAlignment = System.Drawing.StringAlignment.Far;
            // 
            // textBoxX7
            // 
            this.textBoxX7.BackColor = System.Drawing.Color.White;
            // 
            // 
            // 
            this.textBoxX7.Border.Class = "TextBoxBorder";
            this.textBoxX7.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.textBoxX7.FocusHighlightEnabled = true;
            this.textBoxX7.ForeColor = System.Drawing.Color.Black;
            this.highlighter1.SetHighlightOnFocus(this.textBoxX7, true);
            this.textBoxX7.Location = new System.Drawing.Point(86, 3);
            this.textBoxX7.Name = "textBoxX7";
            this.textBoxX7.Size = new System.Drawing.Size(118, 23);
            this.textBoxX7.TabIndex = 13;
            this.textBoxX7.WatermarkText = "Mã cơ quan";
            // 
            // superTabItem9
            // 
            this.superTabItem9.AttachedControl = this.superTabControlPanel9;
            this.superTabItem9.GlobalItem = false;
            this.superTabItem9.Name = "superTabItem9";
            this.superTabItem9.Text = "Cơ quan cấp tỉnh";
            // 
            // superTabControlPanel8
            // 
            this.superTabControlPanel8.Controls.Add(this.groupPanel3);
            this.superTabControlPanel8.Controls.Add(this.panelEx9);
            this.superTabControlPanel8.Controls.Add(this.groupPanel4);
            this.superTabControlPanel8.Dock = System.Windows.Forms.DockStyle.Fill;
            this.superTabControlPanel8.Location = new System.Drawing.Point(0, 0);
            this.superTabControlPanel8.Name = "superTabControlPanel8";
            this.superTabControlPanel8.Padding = new System.Windows.Forms.Padding(5, 0, 5, 5);
            this.superTabControlPanel8.Size = new System.Drawing.Size(1054, 426);
            this.superTabControlPanel8.TabIndex = 1;
            this.superTabControlPanel8.TabItem = this.superTabItem8;
            // 
            // groupPanel3
            // 
            this.groupPanel3.BackColor = System.Drawing.Color.White;
            this.groupPanel3.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Metro;
            this.groupPanel3.Controls.Add(this.dataGridViewX3);
            this.groupPanel3.Dock = System.Windows.Forms.DockStyle.Fill;
            this.groupPanel3.DrawTitleBox = false;
            this.groupPanel3.Location = new System.Drawing.Point(5, 51);
            this.groupPanel3.Name = "groupPanel3";
            this.groupPanel3.Padding = new System.Windows.Forms.Padding(2);
            this.groupPanel3.Size = new System.Drawing.Size(1044, 330);
            // 
            // 
            // 
            this.groupPanel3.Style.BackColor = System.Drawing.Color.White;
            this.groupPanel3.Style.BackColor2 = System.Drawing.Color.White;
            this.groupPanel3.Style.BackColorGradientAngle = 90;
            this.groupPanel3.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.groupPanel3.Style.BorderBottomWidth = 1;
            this.groupPanel3.Style.BorderColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
            this.groupPanel3.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.groupPanel3.Style.BorderLeftWidth = 1;
            this.groupPanel3.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.groupPanel3.Style.BorderRightWidth = 1;
            this.groupPanel3.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.groupPanel3.Style.BorderTopWidth = 1;
            this.groupPanel3.Style.CornerDiameter = 4;
            this.groupPanel3.Style.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.groupPanel3.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
            this.groupPanel3.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near;
            // 
            // 
            // 
            this.groupPanel3.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            // 
            // 
            // 
            this.groupPanel3.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.groupPanel3.TabIndex = 28;
            this.groupPanel3.Text = resources.GetString("groupPanel3.Text");
            // 
            // dataGridViewX3
            // 
            this.dataGridViewX3.BackgroundColor = System.Drawing.Color.White;
            dataGridViewCellStyle160.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
            dataGridViewCellStyle160.BackColor = System.Drawing.SystemColors.Control;
            dataGridViewCellStyle160.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            dataGridViewCellStyle160.ForeColor = System.Drawing.Color.Black;
            dataGridViewCellStyle160.SelectionBackColor = System.Drawing.SystemColors.Highlight;
            dataGridViewCellStyle160.SelectionForeColor = System.Drawing.Color.Black;
            dataGridViewCellStyle160.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
            this.dataGridViewX3.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle160;
            this.dataGridViewX3.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
            this.dataGridViewX3.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
            this.dataGridViewTextBoxColumn1,
            this.dataGridViewTextBoxColumn2,
            this.dataGridViewTextBoxColumn3,
            this.dataGridViewTextBoxColumn4,
            this.dataGridViewTextBoxColumn5,
            this.dataGridViewTextBoxColumn6,
            this.dataGridViewTextBoxColumn7,
            this.dataGridViewCheckBoxColumn1});
            dataGridViewCellStyle161.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
            dataGridViewCellStyle161.BackColor = System.Drawing.Color.White;
            dataGridViewCellStyle161.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            dataGridViewCellStyle161.ForeColor = System.Drawing.Color.Black;
            dataGridViewCellStyle161.SelectionBackColor = System.Drawing.SystemColors.Highlight;
            dataGridViewCellStyle161.SelectionForeColor = System.Drawing.Color.Black;
            dataGridViewCellStyle161.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
            this.dataGridViewX3.DefaultCellStyle = dataGridViewCellStyle161;
            this.dataGridViewX3.Dock = System.Windows.Forms.DockStyle.Fill;
            this.dataGridViewX3.EnableHeadersVisualStyles = false;
            this.dataGridViewX3.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(170)))), ((int)(((byte)(170)))), ((int)(((byte)(170)))));
            this.dataGridViewX3.Location = new System.Drawing.Point(2, 2);
            this.dataGridViewX3.Name = "dataGridViewX3";
            dataGridViewCellStyle162.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
            dataGridViewCellStyle162.BackColor = System.Drawing.SystemColors.Control;
            dataGridViewCellStyle162.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            dataGridViewCellStyle162.ForeColor = System.Drawing.Color.Black;
            dataGridViewCellStyle162.SelectionBackColor = System.Drawing.SystemColors.Highlight;
            dataGridViewCellStyle162.SelectionForeColor = System.Drawing.Color.Black;
            dataGridViewCellStyle162.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
            this.dataGridViewX3.RowHeadersDefaultCellStyle = dataGridViewCellStyle162;
            this.dataGridViewX3.Size = new System.Drawing.Size(1038, 308);
            this.dataGridViewX3.TabIndex = 24;
            // 
            // dataGridViewTextBoxColumn1
            // 
            this.dataGridViewTextBoxColumn1.HeaderText = "Tên cơ quan";
            this.dataGridViewTextBoxColumn1.Name = "dataGridViewTextBoxColumn1";
            this.dataGridViewTextBoxColumn1.Width = 250;
            // 
            // dataGridViewTextBoxColumn2
            // 
            this.dataGridViewTextBoxColumn2.HeaderText = "Mã cơ quan";
            this.dataGridViewTextBoxColumn2.Name = "dataGridViewTextBoxColumn2";
            // 
            // dataGridViewTextBoxColumn3
            // 
            this.dataGridViewTextBoxColumn3.HeaderText = "Mã CQ cấp trên";
            this.dataGridViewTextBoxColumn3.Name = "dataGridViewTextBoxColumn3";
            // 
            // dataGridViewTextBoxColumn4
            // 
            this.dataGridViewTextBoxColumn4.HeaderText = "Tên địa danh";
            this.dataGridViewTextBoxColumn4.Name = "dataGridViewTextBoxColumn4";
            this.dataGridViewTextBoxColumn4.Width = 120;
            // 
            // dataGridViewTextBoxColumn5
            // 
            this.dataGridViewTextBoxColumn5.HeaderText = "Người ký";
            this.dataGridViewTextBoxColumn5.Name = "dataGridViewTextBoxColumn5";
            this.dataGridViewTextBoxColumn5.Width = 150;
            // 
            // dataGridViewTextBoxColumn6
            // 
            this.dataGridViewTextBoxColumn6.HeaderText = "Chức vụ người ký";
            this.dataGridViewTextBoxColumn6.Name = "dataGridViewTextBoxColumn6";
            // 
            // dataGridViewTextBoxColumn7
            // 
            this.dataGridViewTextBoxColumn7.HeaderText = "Nơi ký";
            this.dataGridViewTextBoxColumn7.Name = "dataGridViewTextBoxColumn7";
            // 
            // dataGridViewCheckBoxColumn1
            // 
            this.dataGridViewCheckBoxColumn1.HeaderText = "Hoạt động";
            this.dataGridViewCheckBoxColumn1.Name = "dataGridViewCheckBoxColumn1";
            this.dataGridViewCheckBoxColumn1.Width = 50;
            // 
            // panelEx9
            // 
            this.panelEx9.CanvasColor = System.Drawing.SystemColors.Control;
            this.panelEx9.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            this.panelEx9.Controls.Add(this.buttonX10);
            this.panelEx9.Controls.Add(this.buttonX6);
            this.panelEx9.Controls.Add(this.buttonX7);
            this.panelEx9.Controls.Add(this.buttonX8);
            this.panelEx9.Dock = System.Windows.Forms.DockStyle.Bottom;
            this.panelEx9.Location = new System.Drawing.Point(5, 381);
            this.panelEx9.Name = "panelEx9";
            this.panelEx9.Size = new System.Drawing.Size(1044, 40);
            this.panelEx9.Style.Alignment = System.Drawing.StringAlignment.Center;
            this.panelEx9.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
            this.panelEx9.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemText;
            this.panelEx9.Style.GradientAngle = 90;
            this.panelEx9.TabIndex = 27;
            // 
            // buttonX10
            // 
            this.buttonX10.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
            this.buttonX10.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
            this.buttonX10.Image = global::eBHXH.Prototype.Properties.Resources.BHXHVN24x24;
            this.buttonX10.ImageFixedSize = new System.Drawing.Size(20, 20);
            this.buttonX10.Location = new System.Drawing.Point(134, 6);
            this.buttonX10.Name = "buttonX10";
            this.buttonX10.Size = new System.Drawing.Size(169, 29);
            this.buttonX10.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            this.buttonX10.TabIndex = 24;
            this.buttonX10.Text = "Tổ chức phòng / bộ phận";
            // 
            // buttonX6
            // 
            this.buttonX6.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
            this.buttonX6.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
            this.buttonX6.Image = global::eBHXH.Prototype.Properties.Resources.RecycleBin;
            this.buttonX6.Location = new System.Drawing.Point(311, 6);
            this.buttonX6.Name = "buttonX6";
            this.buttonX6.Size = new System.Drawing.Size(88, 29);
            this.buttonX6.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            this.buttonX6.TabIndex = 22;
            this.buttonX6.Text = "&Xóa";
            // 
            // buttonX7
            // 
            this.buttonX7.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
            this.buttonX7.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
            this.buttonX7.Image = global::eBHXH.Prototype.Properties.Resources.frmMain_16_buttonFileSaveAs_ImageSmall;
            this.buttonX7.Location = new System.Drawing.Point(6, 6);
            this.buttonX7.Name = "buttonX7";
            this.buttonX7.Size = new System.Drawing.Size(120, 29);
            this.buttonX7.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            this.buttonX7.TabIndex = 20;
            this.buttonX7.Text = "&Ghi";
            // 
            // buttonX8
            // 
            this.buttonX8.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
            this.buttonX8.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.buttonX8.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
            this.buttonX8.Image = global::eBHXH.Prototype.Properties.Resources.cancel;
            this.buttonX8.Location = new System.Drawing.Point(953, 6);
            this.buttonX8.Name = "buttonX8";
            this.buttonX8.Size = new System.Drawing.Size(88, 29);
            this.buttonX8.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            this.buttonX8.TabIndex = 21;
            this.buttonX8.Text = "&Thoát";
            // 
            // groupPanel4
            // 
            this.groupPanel4.BackColor = System.Drawing.Color.White;
            this.groupPanel4.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Metro;
            this.groupPanel4.Controls.Add(this.labelX8);
            this.groupPanel4.Controls.Add(this.textBoxX6);
            this.groupPanel4.Controls.Add(this.labelX7);
            this.groupPanel4.Controls.Add(this.textBoxX5);
            this.groupPanel4.Dock = System.Windows.Forms.DockStyle.Top;
            this.groupPanel4.DrawTitleBox = false;
            this.groupPanel4.Location = new System.Drawing.Point(5, 0);
            this.groupPanel4.Name = "groupPanel4";
            this.groupPanel4.Size = new System.Drawing.Size(1044, 51);
            // 
            // 
            // 
            this.groupPanel4.Style.BackColor = System.Drawing.Color.White;
            this.groupPanel4.Style.BackColor2 = System.Drawing.Color.White;
            this.groupPanel4.Style.BackColorGradientAngle = 90;
            this.groupPanel4.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.groupPanel4.Style.BorderBottomWidth = 1;
            this.groupPanel4.Style.BorderColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
            this.groupPanel4.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.groupPanel4.Style.BorderLeftWidth = 1;
            this.groupPanel4.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.groupPanel4.Style.BorderRightWidth = 1;
            this.groupPanel4.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.groupPanel4.Style.BorderTopWidth = 1;
            this.groupPanel4.Style.CornerDiameter = 4;
            this.groupPanel4.Style.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.groupPanel4.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
            this.groupPanel4.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near;
            // 
            // 
            // 
            this.groupPanel4.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            // 
            // 
            // 
            this.groupPanel4.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.groupPanel4.TabIndex = 26;
            this.groupPanel4.Text = "Lọc dữ liệu";
            // 
            // labelX8
            // 
            this.labelX8.BackColor = System.Drawing.Color.White;
            // 
            // 
            // 
            this.labelX8.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.labelX8.ForeColor = System.Drawing.Color.Black;
            this.labelX8.Location = new System.Drawing.Point(244, 4);
            this.labelX8.Name = "labelX8";
            this.labelX8.Size = new System.Drawing.Size(75, 20);
            this.labelX8.TabIndex = 16;
            this.labelX8.Text = "Tên cơ quan:";
            this.labelX8.TextAlignment = System.Drawing.StringAlignment.Far;
            // 
            // textBoxX6
            // 
            this.textBoxX6.BackColor = System.Drawing.Color.White;
            // 
            // 
            // 
            this.textBoxX6.Border.Class = "TextBoxBorder";
            this.textBoxX6.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.textBoxX6.FocusHighlightEnabled = true;
            this.textBoxX6.ForeColor = System.Drawing.Color.Black;
            this.highlighter1.SetHighlightOnFocus(this.textBoxX6, true);
            this.textBoxX6.Location = new System.Drawing.Point(325, 3);
            this.textBoxX6.Name = "textBoxX6";
            this.textBoxX6.Size = new System.Drawing.Size(259, 23);
            this.textBoxX6.TabIndex = 15;
            this.textBoxX6.WatermarkText = "Tên cơ quan cấp huyện";
            // 
            // labelX7
            // 
            this.labelX7.BackColor = System.Drawing.Color.White;
            // 
            // 
            // 
            this.labelX7.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.labelX7.ForeColor = System.Drawing.Color.Black;
            this.labelX7.Location = new System.Drawing.Point(5, 4);
            this.labelX7.Name = "labelX7";
            this.labelX7.Size = new System.Drawing.Size(75, 20);
            this.labelX7.TabIndex = 14;
            this.labelX7.Text = "Mã cơ quan:";
            this.labelX7.TextAlignment = System.Drawing.StringAlignment.Far;
            // 
            // textBoxX5
            // 
            this.textBoxX5.BackColor = System.Drawing.Color.White;
            // 
            // 
            // 
            this.textBoxX5.Border.Class = "TextBoxBorder";
            this.textBoxX5.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.textBoxX5.FocusHighlightEnabled = true;
            this.textBoxX5.ForeColor = System.Drawing.Color.Black;
            this.highlighter1.SetHighlightOnFocus(this.textBoxX5, true);
            this.textBoxX5.Location = new System.Drawing.Point(86, 3);
            this.textBoxX5.Name = "textBoxX5";
            this.textBoxX5.Size = new System.Drawing.Size(118, 23);
            this.textBoxX5.TabIndex = 13;
            this.textBoxX5.WatermarkText = "Mã cơ quan";
            // 
            // superTabItem8
            // 
            this.superTabItem8.AttachedControl = this.superTabControlPanel8;
            this.superTabItem8.GlobalItem = false;
            this.superTabItem8.Name = "superTabItem8";
            this.superTabItem8.Text = "Cơ quan cấp huyện (BHXH Tỉnh Lạng Sơn)";
            // 
            // superTabItem7
            // 
            this.superTabItem7.AttachedControl = this.superTabControlPanel7;
            this.superTabItem7.GlobalItem = false;
            this.superTabItem7.Name = "superTabItem7";
            this.superTabItem7.Text = "Cơ quan sử dụng";
            // 
            // superTabControlPanel15
            // 
            this.superTabControlPanel15.Controls.Add(this.panelEx49);
            this.superTabControlPanel15.Controls.Add(this.panelEx48);
            this.superTabControlPanel15.Dock = System.Windows.Forms.DockStyle.Fill;
            this.superTabControlPanel15.Location = new System.Drawing.Point(170, 0);
            this.superTabControlPanel15.Name = "superTabControlPanel15";
            this.superTabControlPanel15.Size = new System.Drawing.Size(1064, 462);
            this.superTabControlPanel15.TabIndex = 0;
            this.superTabControlPanel15.TabItem = this.superTabItem15;
            // 
            // panelEx49
            // 
            this.panelEx49.CanvasColor = System.Drawing.SystemColors.Control;
            this.panelEx49.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            this.panelEx49.Controls.Add(this.panelEx50);
            this.panelEx49.Dock = System.Windows.Forms.DockStyle.Fill;
            this.panelEx49.Location = new System.Drawing.Point(0, 26);
            this.panelEx49.Name = "panelEx49";
            this.panelEx49.Padding = new System.Windows.Forms.Padding(5);
            this.panelEx49.Size = new System.Drawing.Size(1064, 436);
            this.panelEx49.Style.Alignment = System.Drawing.StringAlignment.Center;
            this.panelEx49.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
            this.panelEx49.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemText;
            this.panelEx49.Style.GradientAngle = 90;
            this.panelEx49.TabIndex = 15;
            // 
            // panelEx50
            // 
            this.panelEx50.CanvasColor = System.Drawing.SystemColors.Control;
            this.panelEx50.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            this.panelEx50.Controls.Add(this.groupPanel24);
            this.panelEx50.Controls.Add(this.panelEx51);
            this.panelEx50.Controls.Add(this.panelEx52);
            this.panelEx50.Controls.Add(this.labelX25);
            this.panelEx50.Dock = System.Windows.Forms.DockStyle.Fill;
            this.panelEx50.Location = new System.Drawing.Point(5, 5);
            this.panelEx50.Name = "panelEx50";
            this.panelEx50.Padding = new System.Windows.Forms.Padding(5);
            this.panelEx50.Size = new System.Drawing.Size(1054, 426);
            this.panelEx50.Style.Alignment = System.Drawing.StringAlignment.Center;
            this.panelEx50.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
            this.panelEx50.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
            this.panelEx50.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
            this.panelEx50.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
            this.panelEx50.Style.GradientAngle = 90;
            this.panelEx50.TabIndex = 13;
            // 
            // groupPanel24
            // 
            this.groupPanel24.BackColor = System.Drawing.Color.White;
            this.groupPanel24.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Metro;
            this.groupPanel24.Controls.Add(this.dataGridViewX17);
            this.groupPanel24.Dock = System.Windows.Forms.DockStyle.Fill;
            this.groupPanel24.DrawTitleBox = false;
            this.groupPanel24.Location = new System.Drawing.Point(5, 79);
            this.groupPanel24.Name = "groupPanel24";
            this.groupPanel24.Padding = new System.Windows.Forms.Padding(2);
            this.groupPanel24.Size = new System.Drawing.Size(1044, 302);
            // 
            // 
            // 
            this.groupPanel24.Style.BackColor = System.Drawing.Color.White;
            this.groupPanel24.Style.BackColor2 = System.Drawing.Color.White;
            this.groupPanel24.Style.BackColorGradientAngle = 90;
            this.groupPanel24.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.groupPanel24.Style.BorderBottomWidth = 1;
            this.groupPanel24.Style.BorderColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
            this.groupPanel24.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.groupPanel24.Style.BorderLeftWidth = 1;
            this.groupPanel24.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.groupPanel24.Style.BorderRightWidth = 1;
            this.groupPanel24.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.groupPanel24.Style.BorderTopWidth = 1;
            this.groupPanel24.Style.CornerDiameter = 4;
            this.groupPanel24.Style.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.groupPanel24.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
            this.groupPanel24.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near;
            // 
            // 
            // 
            this.groupPanel24.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            // 
            // 
            // 
            this.groupPanel24.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.groupPanel24.TabIndex = 29;
            this.groupPanel24.Text = resources.GetString("groupPanel24.Text");
            // 
            // dataGridViewX17
            // 
            this.dataGridViewX17.BackgroundColor = System.Drawing.Color.White;
            dataGridViewCellStyle163.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
            dataGridViewCellStyle163.BackColor = System.Drawing.SystemColors.Control;
            dataGridViewCellStyle163.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            dataGridViewCellStyle163.ForeColor = System.Drawing.Color.Black;
            dataGridViewCellStyle163.SelectionBackColor = System.Drawing.SystemColors.Highlight;
            dataGridViewCellStyle163.SelectionForeColor = System.Drawing.Color.Black;
            dataGridViewCellStyle163.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
            this.dataGridViewX17.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle163;
            this.dataGridViewX17.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
            this.dataGridViewX17.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
            this.Column58,
            this.Column59,
            this.Column60,
            this.Column61,
            this.Column62});
            dataGridViewCellStyle164.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
            dataGridViewCellStyle164.BackColor = System.Drawing.Color.White;
            dataGridViewCellStyle164.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            dataGridViewCellStyle164.ForeColor = System.Drawing.Color.Black;
            dataGridViewCellStyle164.SelectionBackColor = System.Drawing.SystemColors.Highlight;
            dataGridViewCellStyle164.SelectionForeColor = System.Drawing.Color.Black;
            dataGridViewCellStyle164.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
            this.dataGridViewX17.DefaultCellStyle = dataGridViewCellStyle164;
            this.dataGridViewX17.Dock = System.Windows.Forms.DockStyle.Fill;
            this.dataGridViewX17.EnableHeadersVisualStyles = false;
            this.dataGridViewX17.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(170)))), ((int)(((byte)(170)))), ((int)(((byte)(170)))));
            this.dataGridViewX17.Location = new System.Drawing.Point(2, 2);
            this.dataGridViewX17.Name = "dataGridViewX17";
            dataGridViewCellStyle165.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
            dataGridViewCellStyle165.BackColor = System.Drawing.SystemColors.Control;
            dataGridViewCellStyle165.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            dataGridViewCellStyle165.ForeColor = System.Drawing.Color.Black;
            dataGridViewCellStyle165.SelectionBackColor = System.Drawing.SystemColors.Highlight;
            dataGridViewCellStyle165.SelectionForeColor = System.Drawing.Color.Black;
            dataGridViewCellStyle165.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
            this.dataGridViewX17.RowHeadersDefaultCellStyle = dataGridViewCellStyle165;
            this.dataGridViewX17.Size = new System.Drawing.Size(1038, 280);
            this.dataGridViewX17.TabIndex = 23;
            // 
            // Column58
            // 
            this.Column58.HeaderText = "Mã đơn vị";
            this.Column58.Name = "Column58";
            // 
            // Column59
            // 
            this.Column59.HeaderText = "Mã số thuế";
            this.Column59.Name = "Column59";
            // 
            // Column60
            // 
            this.Column60.HeaderText = "Tên đơn vị";
            this.Column60.Name = "Column60";
            this.Column60.Width = 200;
            // 
            // Column61
            // 
            this.Column61.HeaderText = "Tài khoản cán bộ";
            this.Column61.Name = "Column61";
            // 
            // Column62
            // 
            this.Column62.HeaderText = "Tên cán bộ";
            this.Column62.Name = "Column62";
            // 
            // panelEx51
            // 
            this.panelEx51.CanvasColor = System.Drawing.SystemColors.Control;
            this.panelEx51.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            this.panelEx51.Controls.Add(this.buttonX42);
            this.panelEx51.Controls.Add(this.buttonX43);
            this.panelEx51.Controls.Add(this.buttonX44);
            this.panelEx51.Dock = System.Windows.Forms.DockStyle.Bottom;
            this.panelEx51.Location = new System.Drawing.Point(5, 381);
            this.panelEx51.Name = "panelEx51";
            this.panelEx51.Size = new System.Drawing.Size(1044, 40);
            this.panelEx51.Style.Alignment = System.Drawing.StringAlignment.Center;
            this.panelEx51.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
            this.panelEx51.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemText;
            this.panelEx51.Style.GradientAngle = 90;
            this.panelEx51.TabIndex = 23;
            // 
            // buttonX42
            // 
            this.buttonX42.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
            this.buttonX42.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
            this.buttonX42.Image = global::eBHXH.Prototype.Properties.Resources.RecycleBin;
            this.buttonX42.Location = new System.Drawing.Point(130, 6);
            this.buttonX42.Name = "buttonX42";
            this.buttonX42.Size = new System.Drawing.Size(88, 29);
            this.buttonX42.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            this.buttonX42.TabIndex = 23;
            this.buttonX42.Text = "&Xóa";
            // 
            // buttonX43
            // 
            this.buttonX43.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
            this.buttonX43.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
            this.buttonX43.Image = global::eBHXH.Prototype.Properties.Resources.frmMain_16_buttonFileSaveAs_ImageSmall;
            this.buttonX43.Location = new System.Drawing.Point(2, 6);
            this.buttonX43.Name = "buttonX43";
            this.buttonX43.Size = new System.Drawing.Size(120, 29);
            this.buttonX43.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            this.buttonX43.TabIndex = 20;
            this.buttonX43.Text = "&Ghi";
            // 
            // buttonX44
            // 
            this.buttonX44.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
            this.buttonX44.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.buttonX44.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
            this.buttonX44.Image = global::eBHXH.Prototype.Properties.Resources.cancel;
            this.buttonX44.Location = new System.Drawing.Point(954, 6);
            this.buttonX44.Name = "buttonX44";
            this.buttonX44.Size = new System.Drawing.Size(88, 29);
            this.buttonX44.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            this.buttonX44.TabIndex = 21;
            this.buttonX44.Text = "&Thoát";
            // 
            // panelEx52
            // 
            this.panelEx52.CanvasColor = System.Drawing.SystemColors.Control;
            this.panelEx52.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            this.panelEx52.Controls.Add(this.checkBoxX1);
            this.panelEx52.Controls.Add(this.checkBoxX2);
            this.panelEx52.Dock = System.Windows.Forms.DockStyle.Top;
            this.panelEx52.Location = new System.Drawing.Point(5, 28);
            this.panelEx52.Name = "panelEx52";
            this.panelEx52.Size = new System.Drawing.Size(1044, 51);
            this.panelEx52.Style.Alignment = System.Drawing.StringAlignment.Center;
            this.panelEx52.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
            this.panelEx52.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemText;
            this.panelEx52.Style.GradientAngle = 90;
            this.panelEx52.TabIndex = 32;
            // 
            // checkBoxX1
            // 
            // 
            // 
            // 
            this.checkBoxX1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.checkBoxX1.CheckBoxStyle = DevComponents.DotNetBar.eCheckBoxStyle.RadioButton;
            this.checkBoxX1.Checked = true;
            this.checkBoxX1.CheckState = System.Windows.Forms.CheckState.Checked;
            this.checkBoxX1.CheckValue = "Y";
            this.checkBoxX1.ForeColor = System.Drawing.Color.Black;
            this.checkBoxX1.Location = new System.Drawing.Point(7, 3);
            this.checkBoxX1.Name = "checkBoxX1";
            this.checkBoxX1.Size = new System.Drawing.Size(258, 23);
            this.checkBoxX1.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            this.checkBoxX1.TabIndex = 30;
            this.checkBoxX1.Text = "Tự động phân bổ hồ sơ cho cán bộ";
            // 
            // checkBoxX2
            // 
            // 
            // 
            // 
            this.checkBoxX2.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.checkBoxX2.CheckBoxStyle = DevComponents.DotNetBar.eCheckBoxStyle.RadioButton;
            this.checkBoxX2.ForeColor = System.Drawing.Color.Black;
            this.checkBoxX2.Location = new System.Drawing.Point(7, 26);
            this.checkBoxX2.Name = "checkBoxX2";
            this.checkBoxX2.Size = new System.Drawing.Size(311, 23);
            this.checkBoxX2.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            this.checkBoxX2.TabIndex = 31;
            this.checkBoxX2.Text = "Phân công cán bộ phụ trách cho đơn vị tham gia BHXH điện tử";
            // 
            // labelX25
            // 
            // 
            // 
            // 
            this.labelX25.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.labelX25.Dock = System.Windows.Forms.DockStyle.Top;
            this.labelX25.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.labelX25.ForeColor = System.Drawing.Color.Black;
            this.labelX25.Location = new System.Drawing.Point(5, 5);
            this.labelX25.Name = "labelX25";
            this.labelX25.Size = new System.Drawing.Size(1044, 23);
            this.labelX25.TabIndex = 33;
            this.labelX25.Text = "Cơ quan BHXH Huyện Bình Gia - Lãnh đạo phòng Thu (Nguyễn Văn A)";
            // 
            // panelEx48
            // 
            this.panelEx48.CanvasColor = System.Drawing.SystemColors.Control;
            this.panelEx48.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            this.panelEx48.Controls.Add(this.labelX24);
            this.panelEx48.Dock = System.Windows.Forms.DockStyle.Top;
            this.panelEx48.Location = new System.Drawing.Point(0, 0);
            this.panelEx48.Name = "panelEx48";
            this.panelEx48.Size = new System.Drawing.Size(1064, 26);
            this.panelEx48.Style.Alignment = System.Drawing.StringAlignment.Center;
            this.panelEx48.Style.BackColor1.Color = System.Drawing.Color.Green;
            this.panelEx48.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
            this.panelEx48.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
            this.panelEx48.Style.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.panelEx48.Style.ForeColor.Color = System.Drawing.Color.White;
            this.panelEx48.Style.GradientAngle = 90;
            this.panelEx48.TabIndex = 7;
            // 
            // labelX24
            // 
            this.labelX24.BackColor = System.Drawing.Color.Transparent;
            // 
            // 
            // 
            this.labelX24.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.labelX24.Dock = System.Windows.Forms.DockStyle.Fill;
            this.labelX24.Font = new System.Drawing.Font("Segoe UI", 14F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.labelX24.ForeColor = System.Drawing.Color.Black;
            this.labelX24.Location = new System.Drawing.Point(0, 0);
            this.labelX24.Name = "labelX24";
            this.labelX24.PaddingLeft = 20;
            this.labelX24.SingleLineColor = System.Drawing.Color.White;
            this.labelX24.Size = new System.Drawing.Size(1064, 26);
            this.labelX24.TabIndex = 4;
            this.labelX24.Text = "<font color=\"white\">CẤU HÌNH LÃNH ĐẠO PHÂN CÔNG XỬ LÝ HỒ SƠ </font>";
            // 
            // superTabItem15
            // 
            this.superTabItem15.AttachedControl = this.superTabControlPanel15;
            this.superTabItem15.GlobalItem = false;
            this.superTabItem15.Name = "superTabItem15";
            this.superTabItem15.Text = "Lãnh đạo phân công";
            // 
            // superTabControlPanel10
            // 
            this.superTabControlPanel10.Controls.Add(this.panelEx21);
            this.superTabControlPanel10.Controls.Add(this.panelEx19);
            this.superTabControlPanel10.Dock = System.Windows.Forms.DockStyle.Fill;
            this.superTabControlPanel10.Location = new System.Drawing.Point(170, 0);
            this.superTabControlPanel10.Name = "superTabControlPanel10";
            this.superTabControlPanel10.Size = new System.Drawing.Size(1064, 462);
            this.superTabControlPanel10.TabIndex = 0;
            this.superTabControlPanel10.TabItem = this.superTabItem10;
            // 
            // panelEx21
            // 
            this.panelEx21.CanvasColor = System.Drawing.SystemColors.Control;
            this.panelEx21.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            this.panelEx21.Controls.Add(this.panelEx22);
            this.panelEx21.Dock = System.Windows.Forms.DockStyle.Fill;
            this.panelEx21.Location = new System.Drawing.Point(0, 26);
            this.panelEx21.Name = "panelEx21";
            this.panelEx21.Padding = new System.Windows.Forms.Padding(5);
            this.panelEx21.Size = new System.Drawing.Size(1064, 436);
            this.panelEx21.Style.Alignment = System.Drawing.StringAlignment.Center;
            this.panelEx21.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
            this.panelEx21.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemText;
            this.panelEx21.Style.GradientAngle = 90;
            this.panelEx21.TabIndex = 15;
            // 
            // panelEx22
            // 
            this.panelEx22.CanvasColor = System.Drawing.SystemColors.Control;
            this.panelEx22.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            this.panelEx22.Controls.Add(this.groupPanel21);
            this.panelEx22.Controls.Add(this.expandableSplitter3);
            this.panelEx22.Controls.Add(this.groupPanel20);
            this.panelEx22.Controls.Add(this.panelEx28);
            this.panelEx22.Controls.Add(this.labelX22);
            this.panelEx22.Dock = System.Windows.Forms.DockStyle.Fill;
            this.panelEx22.Location = new System.Drawing.Point(5, 5);
            this.panelEx22.Name = "panelEx22";
            this.panelEx22.Padding = new System.Windows.Forms.Padding(5);
            this.panelEx22.Size = new System.Drawing.Size(1054, 426);
            this.panelEx22.Style.Alignment = System.Drawing.StringAlignment.Center;
            this.panelEx22.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
            this.panelEx22.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
            this.panelEx22.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
            this.panelEx22.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
            this.panelEx22.Style.GradientAngle = 90;
            this.panelEx22.TabIndex = 13;
            // 
            // groupPanel21
            // 
            this.groupPanel21.BackColor = System.Drawing.Color.White;
            this.groupPanel21.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Metro;
            this.groupPanel21.Controls.Add(this.dataGridViewX9);
            this.groupPanel21.Dock = System.Windows.Forms.DockStyle.Fill;
            this.groupPanel21.DrawTitleBox = false;
            this.groupPanel21.Location = new System.Drawing.Point(299, 24);
            this.groupPanel21.Name = "groupPanel21";
            this.groupPanel21.Padding = new System.Windows.Forms.Padding(2, 0, 2, 2);
            this.groupPanel21.Size = new System.Drawing.Size(750, 357);
            // 
            // 
            // 
            this.groupPanel21.Style.BackColor = System.Drawing.Color.White;
            this.groupPanel21.Style.BackColor2 = System.Drawing.Color.White;
            this.groupPanel21.Style.BackColorGradientAngle = 90;
            this.groupPanel21.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.groupPanel21.Style.BorderBottomWidth = 1;
            this.groupPanel21.Style.BorderColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
            this.groupPanel21.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.groupPanel21.Style.BorderLeftWidth = 1;
            this.groupPanel21.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.groupPanel21.Style.BorderRightWidth = 1;
            this.groupPanel21.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.groupPanel21.Style.BorderTopWidth = 1;
            this.groupPanel21.Style.CornerDiameter = 4;
            this.groupPanel21.Style.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.groupPanel21.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
            this.groupPanel21.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near;
            // 
            // 
            // 
            this.groupPanel21.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            // 
            // 
            // 
            this.groupPanel21.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.groupPanel21.TabIndex = 37;
            this.groupPanel21.Text = "Danh sách thủ tục trực thuộc lãnh vực: <b>Chế độ BHXH</b>";
            // 
            // dataGridViewX9
            // 
            this.dataGridViewX9.BackgroundColor = System.Drawing.Color.White;
            dataGridViewCellStyle166.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
            dataGridViewCellStyle166.BackColor = System.Drawing.SystemColors.Control;
            dataGridViewCellStyle166.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            dataGridViewCellStyle166.ForeColor = System.Drawing.Color.Black;
            dataGridViewCellStyle166.SelectionBackColor = System.Drawing.SystemColors.Highlight;
            dataGridViewCellStyle166.SelectionForeColor = System.Drawing.Color.Black;
            dataGridViewCellStyle166.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
            this.dataGridViewX9.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle166;
            this.dataGridViewX9.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
            this.dataGridViewX9.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
            this.Column26,
            this.Column34,
            this.Column27});
            dataGridViewCellStyle167.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
            dataGridViewCellStyle167.BackColor = System.Drawing.Color.White;
            dataGridViewCellStyle167.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            dataGridViewCellStyle167.ForeColor = System.Drawing.Color.Black;
            dataGridViewCellStyle167.SelectionBackColor = System.Drawing.SystemColors.Highlight;
            dataGridViewCellStyle167.SelectionForeColor = System.Drawing.Color.Black;
            dataGridViewCellStyle167.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
            this.dataGridViewX9.DefaultCellStyle = dataGridViewCellStyle167;
            this.dataGridViewX9.Dock = System.Windows.Forms.DockStyle.Fill;
            this.dataGridViewX9.EnableHeadersVisualStyles = false;
            this.dataGridViewX9.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(170)))), ((int)(((byte)(170)))), ((int)(((byte)(170)))));
            this.dataGridViewX9.Location = new System.Drawing.Point(2, 0);
            this.dataGridViewX9.Name = "dataGridViewX9";
            dataGridViewCellStyle168.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
            dataGridViewCellStyle168.BackColor = System.Drawing.SystemColors.Control;
            dataGridViewCellStyle168.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            dataGridViewCellStyle168.ForeColor = System.Drawing.Color.Black;
            dataGridViewCellStyle168.SelectionBackColor = System.Drawing.SystemColors.Highlight;
            dataGridViewCellStyle168.SelectionForeColor = System.Drawing.Color.Black;
            dataGridViewCellStyle168.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
            this.dataGridViewX9.RowHeadersDefaultCellStyle = dataGridViewCellStyle168;
            this.dataGridViewX9.Size = new System.Drawing.Size(744, 337);
            this.dataGridViewX9.TabIndex = 33;
            // 
            // Column26
            // 
            this.Column26.HeaderText = "";
            this.Column26.Name = "Column26";
            this.Column26.Resizable = System.Windows.Forms.DataGridViewTriState.True;
            this.Column26.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
            // 
            // Column34
            // 
            this.Column34.HeaderText = "Mã thủ tục";
            this.Column34.Name = "Column34";
            // 
            // Column27
            // 
            this.Column27.HeaderText = "Tên thủ tục";
            this.Column27.Name = "Column27";
            this.Column27.Width = 200;
            // 
            // expandableSplitter3
            // 
            this.expandableSplitter3.BackColor = System.Drawing.Color.White;
            this.expandableSplitter3.BackColor2 = System.Drawing.Color.Empty;
            this.expandableSplitter3.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.None;
            this.expandableSplitter3.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.None;
            this.expandableSplitter3.ExpandFillColor = System.Drawing.Color.FromArgb(((int)(((byte)(254)))), ((int)(((byte)(142)))), ((int)(((byte)(75)))));
            this.expandableSplitter3.ExpandFillColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemPressedBackground;
            this.expandableSplitter3.ExpandLineColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(128)))));
            this.expandableSplitter3.ExpandLineColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemPressedBorder;
            this.expandableSplitter3.ForeColor = System.Drawing.Color.Black;
            this.expandableSplitter3.GripDarkColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(128)))));
            this.expandableSplitter3.GripDarkColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemPressedBorder;
            this.expandableSplitter3.GripLightColor = System.Drawing.Color.FromArgb(((int)(((byte)(246)))), ((int)(((byte)(246)))), ((int)(((byte)(246)))));
            this.expandableSplitter3.GripLightColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.MenuBackground;
            this.expandableSplitter3.HotBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(213)))), ((int)(((byte)(140)))));
            this.expandableSplitter3.HotBackColor2 = System.Drawing.Color.Empty;
            this.expandableSplitter3.HotBackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.None;
            this.expandableSplitter3.HotBackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemCheckedBackground;
            this.expandableSplitter3.HotExpandFillColor = System.Drawing.Color.FromArgb(((int)(((byte)(254)))), ((int)(((byte)(142)))), ((int)(((byte)(75)))));
            this.expandableSplitter3.HotExpandFillColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemPressedBackground;
            this.expandableSplitter3.HotExpandLineColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(128)))));
            this.expandableSplitter3.HotExpandLineColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemPressedBorder;
            this.expandableSplitter3.HotGripDarkColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(128)))));
            this.expandableSplitter3.HotGripDarkColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemPressedBorder;
            this.expandableSplitter3.HotGripLightColor = System.Drawing.Color.FromArgb(((int)(((byte)(246)))), ((int)(((byte)(246)))), ((int)(((byte)(246)))));
            this.expandableSplitter3.HotGripLightColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.MenuBackground;
            this.expandableSplitter3.Location = new System.Drawing.Point(293, 24);
            this.expandableSplitter3.Name = "expandableSplitter3";
            this.expandableSplitter3.Size = new System.Drawing.Size(6, 357);
            this.expandableSplitter3.Style = DevComponents.DotNetBar.eSplitterStyle.Mozilla;
            this.expandableSplitter3.TabIndex = 36;
            this.expandableSplitter3.TabStop = false;
            // 
            // groupPanel20
            // 
            this.groupPanel20.BackColor = System.Drawing.Color.White;
            this.groupPanel20.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Metro;
            this.groupPanel20.Controls.Add(this.dataGridViewX10);
            this.groupPanel20.Dock = System.Windows.Forms.DockStyle.Left;
            this.groupPanel20.DrawTitleBox = false;
            this.groupPanel20.Location = new System.Drawing.Point(5, 24);
            this.groupPanel20.Name = "groupPanel20";
            this.groupPanel20.Padding = new System.Windows.Forms.Padding(2, 0, 2, 2);
            this.groupPanel20.Size = new System.Drawing.Size(288, 357);
            // 
            // 
            // 
            this.groupPanel20.Style.BackColor = System.Drawing.Color.White;
            this.groupPanel20.Style.BackColor2 = System.Drawing.Color.White;
            this.groupPanel20.Style.BackColorGradientAngle = 90;
            this.groupPanel20.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.groupPanel20.Style.BorderBottomWidth = 1;
            this.groupPanel20.Style.BorderColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
            this.groupPanel20.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.groupPanel20.Style.BorderLeftWidth = 1;
            this.groupPanel20.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.groupPanel20.Style.BorderRightWidth = 1;
            this.groupPanel20.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.groupPanel20.Style.BorderTopWidth = 1;
            this.groupPanel20.Style.CornerDiameter = 4;
            this.groupPanel20.Style.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.groupPanel20.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
            this.groupPanel20.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near;
            // 
            // 
            // 
            this.groupPanel20.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            // 
            // 
            // 
            this.groupPanel20.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.groupPanel20.TabIndex = 35;
            this.groupPanel20.Text = "Danh sách lĩnh vực thủ tục";
            // 
            // dataGridViewX10
            // 
            this.dataGridViewX10.BackgroundColor = System.Drawing.Color.White;
            dataGridViewCellStyle169.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
            dataGridViewCellStyle169.BackColor = System.Drawing.SystemColors.Control;
            dataGridViewCellStyle169.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            dataGridViewCellStyle169.ForeColor = System.Drawing.Color.Black;
            dataGridViewCellStyle169.SelectionBackColor = System.Drawing.SystemColors.Highlight;
            dataGridViewCellStyle169.SelectionForeColor = System.Drawing.Color.Black;
            dataGridViewCellStyle169.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
            this.dataGridViewX10.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle169;
            this.dataGridViewX10.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
            this.dataGridViewX10.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
            this.dataGridViewTextBoxColumn15});
            dataGridViewCellStyle170.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
            dataGridViewCellStyle170.BackColor = System.Drawing.Color.White;
            dataGridViewCellStyle170.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            dataGridViewCellStyle170.ForeColor = System.Drawing.Color.Black;
            dataGridViewCellStyle170.SelectionBackColor = System.Drawing.SystemColors.Highlight;
            dataGridViewCellStyle170.SelectionForeColor = System.Drawing.Color.Black;
            dataGridViewCellStyle170.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
            this.dataGridViewX10.DefaultCellStyle = dataGridViewCellStyle170;
            this.dataGridViewX10.Dock = System.Windows.Forms.DockStyle.Fill;
            this.dataGridViewX10.EnableHeadersVisualStyles = false;
            this.dataGridViewX10.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(170)))), ((int)(((byte)(170)))), ((int)(((byte)(170)))));
            this.dataGridViewX10.Location = new System.Drawing.Point(2, 0);
            this.dataGridViewX10.Name = "dataGridViewX10";
            dataGridViewCellStyle171.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
            dataGridViewCellStyle171.BackColor = System.Drawing.SystemColors.Control;
            dataGridViewCellStyle171.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            dataGridViewCellStyle171.ForeColor = System.Drawing.Color.Black;
            dataGridViewCellStyle171.SelectionBackColor = System.Drawing.SystemColors.Highlight;
            dataGridViewCellStyle171.SelectionForeColor = System.Drawing.Color.Black;
            dataGridViewCellStyle171.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
            this.dataGridViewX10.RowHeadersDefaultCellStyle = dataGridViewCellStyle171;
            this.dataGridViewX10.Size = new System.Drawing.Size(282, 335);
            this.dataGridViewX10.TabIndex = 24;
            // 
            // dataGridViewTextBoxColumn15
            // 
            this.dataGridViewTextBoxColumn15.HeaderText = "Tên lĩnh vực thủ tục";
            this.dataGridViewTextBoxColumn15.Name = "dataGridViewTextBoxColumn15";
            this.dataGridViewTextBoxColumn15.Width = 200;
            // 
            // panelEx28
            // 
            this.panelEx28.CanvasColor = System.Drawing.SystemColors.Control;
            this.panelEx28.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            this.panelEx28.Controls.Add(this.buttonX31);
            this.panelEx28.Controls.Add(this.buttonX32);
            this.panelEx28.Controls.Add(this.buttonX33);
            this.panelEx28.Dock = System.Windows.Forms.DockStyle.Bottom;
            this.panelEx28.Location = new System.Drawing.Point(5, 381);
            this.panelEx28.Name = "panelEx28";
            this.panelEx28.Size = new System.Drawing.Size(1044, 40);
            this.panelEx28.Style.Alignment = System.Drawing.StringAlignment.Center;
            this.panelEx28.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
            this.panelEx28.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemText;
            this.panelEx28.Style.GradientAngle = 90;
            this.panelEx28.TabIndex = 34;
            // 
            // buttonX31
            // 
            this.buttonX31.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
            this.buttonX31.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
            this.buttonX31.Image = global::eBHXH.Prototype.Properties.Resources.RecycleBin;
            this.buttonX31.Location = new System.Drawing.Point(132, 6);
            this.buttonX31.Name = "buttonX31";
            this.buttonX31.Size = new System.Drawing.Size(88, 29);
            this.buttonX31.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            this.buttonX31.TabIndex = 22;
            this.buttonX31.Text = "&Xóa";
            // 
            // buttonX32
            // 
            this.buttonX32.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
            this.buttonX32.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
            this.buttonX32.Image = global::eBHXH.Prototype.Properties.Resources.frmMain_16_buttonFileSaveAs_ImageSmall;
            this.buttonX32.Location = new System.Drawing.Point(2, 6);
            this.buttonX32.Name = "buttonX32";
            this.buttonX32.Size = new System.Drawing.Size(120, 29);
            this.buttonX32.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            this.buttonX32.TabIndex = 20;
            this.buttonX32.Text = "&Ghi";
            // 
            // buttonX33
            // 
            this.buttonX33.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
            this.buttonX33.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.buttonX33.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
            this.buttonX33.Image = global::eBHXH.Prototype.Properties.Resources.cancel;
            this.buttonX33.Location = new System.Drawing.Point(953, 6);
            this.buttonX33.Name = "buttonX33";
            this.buttonX33.Size = new System.Drawing.Size(88, 29);
            this.buttonX33.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            this.buttonX33.TabIndex = 21;
            this.buttonX33.Text = "&Thoát";
            // 
            // labelX22
            // 
            // 
            // 
            // 
            this.labelX22.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.labelX22.Dock = System.Windows.Forms.DockStyle.Top;
            this.labelX22.ForeColor = System.Drawing.Color.Black;
            this.labelX22.Location = new System.Drawing.Point(5, 5);
            this.labelX22.Name = "labelX22";
            this.labelX22.Size = new System.Drawing.Size(1044, 19);
            this.labelX22.TabIndex = 30;
            this.labelX22.Text = "<font color=\"blue\">Lĩnh vực thủ tục hay còn gọi là nhóm thủ tục có tác dụng trong" +
                " việc thống kê sau này. Thống kê theo nhóm thủ tục.</font>";
            // 
            // panelEx19
            // 
            this.panelEx19.CanvasColor = System.Drawing.SystemColors.Control;
            this.panelEx19.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            this.panelEx19.Controls.Add(this.labelX19);
            this.panelEx19.Dock = System.Windows.Forms.DockStyle.Top;
            this.panelEx19.Location = new System.Drawing.Point(0, 0);
            this.panelEx19.Name = "panelEx19";
            this.panelEx19.Size = new System.Drawing.Size(1064, 26);
            this.panelEx19.Style.Alignment = System.Drawing.StringAlignment.Center;
            this.panelEx19.Style.BackColor1.Color = System.Drawing.Color.Green;
            this.panelEx19.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
            this.panelEx19.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
            this.panelEx19.Style.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.panelEx19.Style.ForeColor.Color = System.Drawing.Color.White;
            this.panelEx19.Style.GradientAngle = 90;
            this.panelEx19.TabIndex = 7;
            // 
            // labelX19
            // 
            this.labelX19.BackColor = System.Drawing.Color.Transparent;
            // 
            // 
            // 
            this.labelX19.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.labelX19.Dock = System.Windows.Forms.DockStyle.Fill;
            this.labelX19.Font = new System.Drawing.Font("Segoe UI", 14F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.labelX19.ForeColor = System.Drawing.Color.Black;
            this.labelX19.Location = new System.Drawing.Point(0, 0);
            this.labelX19.Name = "labelX19";
            this.labelX19.PaddingLeft = 20;
            this.labelX19.SingleLineColor = System.Drawing.Color.White;
            this.labelX19.Size = new System.Drawing.Size(1064, 26);
            this.labelX19.TabIndex = 4;
            this.labelX19.Text = "<font color=\"white\">QUẢN LÝ LĨNH VỰC THỦ TỤC</font>";
            // 
            // superTabItem10
            // 
            this.superTabItem10.AttachedControl = this.superTabControlPanel10;
            this.superTabItem10.GlobalItem = false;
            this.superTabItem10.Name = "superTabItem10";
            this.superTabItem10.Text = "Lĩnh vực sử dụng";
            // 
            // superTabControlPanel1
            // 
            this.superTabControlPanel1.Controls.Add(this.panelEx5);
            this.superTabControlPanel1.Controls.Add(this.panelEx1);
            this.superTabControlPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.superTabControlPanel1.Location = new System.Drawing.Point(170, 0);
            this.superTabControlPanel1.Name = "superTabControlPanel1";
            this.superTabControlPanel1.Size = new System.Drawing.Size(1064, 462);
            this.superTabControlPanel1.TabIndex = 1;
            this.superTabControlPanel1.TabItem = this.superTabItem1;
            // 
            // panelEx5
            // 
            this.panelEx5.CanvasColor = System.Drawing.SystemColors.Control;
            this.panelEx5.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            this.panelEx5.Controls.Add(this.panelEx4);
            this.panelEx5.Dock = System.Windows.Forms.DockStyle.Fill;
            this.panelEx5.Location = new System.Drawing.Point(0, 26);
            this.panelEx5.Name = "panelEx5";
            this.panelEx5.Padding = new System.Windows.Forms.Padding(5);
            this.panelEx5.Size = new System.Drawing.Size(1064, 436);
            this.panelEx5.Style.Alignment = System.Drawing.StringAlignment.Center;
            this.panelEx5.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
            this.panelEx5.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemText;
            this.panelEx5.Style.GradientAngle = 90;
            this.panelEx5.TabIndex = 14;
            // 
            // panelEx4
            // 
            this.panelEx4.CanvasColor = System.Drawing.SystemColors.Control;
            this.panelEx4.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            this.panelEx4.Controls.Add(this.groupPanel12);
            this.panelEx4.Controls.Add(this.groupPanel11);
            this.panelEx4.Controls.Add(this.panelEx6);
            this.panelEx4.Dock = System.Windows.Forms.DockStyle.Fill;
            this.panelEx4.Location = new System.Drawing.Point(5, 5);
            this.panelEx4.Name = "panelEx4";
            this.panelEx4.Padding = new System.Windows.Forms.Padding(5);
            this.panelEx4.Size = new System.Drawing.Size(1054, 426);
            this.panelEx4.Style.Alignment = System.Drawing.StringAlignment.Center;
            this.panelEx4.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
            this.panelEx4.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
            this.panelEx4.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
            this.panelEx4.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
            this.panelEx4.Style.GradientAngle = 90;
            this.panelEx4.TabIndex = 13;
            // 
            // groupPanel12
            // 
            this.groupPanel12.BackColor = System.Drawing.Color.White;
            this.groupPanel12.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Metro;
            this.groupPanel12.Controls.Add(this.dataGridViewX1);
            this.groupPanel12.Dock = System.Windows.Forms.DockStyle.Fill;
            this.groupPanel12.DrawTitleBox = false;
            this.groupPanel12.Location = new System.Drawing.Point(5, 56);
            this.groupPanel12.Name = "groupPanel12";
            this.groupPanel12.Padding = new System.Windows.Forms.Padding(2);
            this.groupPanel12.Size = new System.Drawing.Size(1044, 325);
            // 
            // 
            // 
            this.groupPanel12.Style.BackColor = System.Drawing.Color.White;
            this.groupPanel12.Style.BackColor2 = System.Drawing.Color.White;
            this.groupPanel12.Style.BackColorGradientAngle = 90;
            this.groupPanel12.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.groupPanel12.Style.BorderBottomWidth = 1;
            this.groupPanel12.Style.BorderColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
            this.groupPanel12.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.groupPanel12.Style.BorderLeftWidth = 1;
            this.groupPanel12.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.groupPanel12.Style.BorderRightWidth = 1;
            this.groupPanel12.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.groupPanel12.Style.BorderTopWidth = 1;
            this.groupPanel12.Style.CornerDiameter = 4;
            this.groupPanel12.Style.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.groupPanel12.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
            this.groupPanel12.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near;
            // 
            // 
            // 
            this.groupPanel12.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            // 
            // 
            // 
            this.groupPanel12.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.groupPanel12.TabIndex = 29;
            this.groupPanel12.Text = resources.GetString("groupPanel12.Text");
            // 
            // dataGridViewX1
            // 
            this.dataGridViewX1.BackgroundColor = System.Drawing.Color.White;
            dataGridViewCellStyle172.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
            dataGridViewCellStyle172.BackColor = System.Drawing.SystemColors.Control;
            dataGridViewCellStyle172.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            dataGridViewCellStyle172.ForeColor = System.Drawing.Color.Black;
            dataGridViewCellStyle172.SelectionBackColor = System.Drawing.SystemColors.Highlight;
            dataGridViewCellStyle172.SelectionForeColor = System.Drawing.Color.Black;
            dataGridViewCellStyle172.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
            this.dataGridViewX1.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle172;
            this.dataGridViewX1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
            this.dataGridViewX1.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
            this.Column25,
            this.Column2,
            this.Column1,
            this.Column3,
            this.Column4,
            this.Column5});
            dataGridViewCellStyle173.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
            dataGridViewCellStyle173.BackColor = System.Drawing.Color.White;
            dataGridViewCellStyle173.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            dataGridViewCellStyle173.ForeColor = System.Drawing.Color.Black;
            dataGridViewCellStyle173.SelectionBackColor = System.Drawing.SystemColors.Highlight;
            dataGridViewCellStyle173.SelectionForeColor = System.Drawing.Color.Black;
            dataGridViewCellStyle173.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
            this.dataGridViewX1.DefaultCellStyle = dataGridViewCellStyle173;
            this.dataGridViewX1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.dataGridViewX1.EnableHeadersVisualStyles = false;
            this.dataGridViewX1.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(170)))), ((int)(((byte)(170)))), ((int)(((byte)(170)))));
            this.dataGridViewX1.Location = new System.Drawing.Point(2, 2);
            this.dataGridViewX1.Name = "dataGridViewX1";
            dataGridViewCellStyle174.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
            dataGridViewCellStyle174.BackColor = System.Drawing.SystemColors.Control;
            dataGridViewCellStyle174.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            dataGridViewCellStyle174.ForeColor = System.Drawing.Color.Black;
            dataGridViewCellStyle174.SelectionBackColor = System.Drawing.SystemColors.Highlight;
            dataGridViewCellStyle174.SelectionForeColor = System.Drawing.Color.Black;
            dataGridViewCellStyle174.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
            this.dataGridViewX1.RowHeadersDefaultCellStyle = dataGridViewCellStyle174;
            this.dataGridViewX1.Size = new System.Drawing.Size(1038, 303);
            this.dataGridViewX1.TabIndex = 23;
            // 
            // Column25
            // 
            this.Column25.HeaderText = "Tài khoản";
            this.Column25.Name = "Column25";
            this.Column25.Width = 150;
            // 
            // Column2
            // 
            this.Column2.HeaderText = "Mật khẩu";
            this.Column2.Name = "Column2";
            this.Column2.Width = 150;
            // 
            // Column1
            // 
            this.Column1.HeaderText = "Họ tên";
            this.Column1.Name = "Column1";
            this.Column1.Width = 200;
            // 
            // Column3
            // 
            this.Column3.HeaderText = "Ngày sinh";
            this.Column3.Name = "Column3";
            // 
            // Column4
            // 
            this.Column4.HeaderText = "Chức vụ";
            this.Column4.Name = "Column4";
            this.Column4.Width = 150;
            // 
            // Column5
            // 
            this.Column5.HeaderText = "Kích hoạt";
            this.Column5.Name = "Column5";
            this.Column5.Width = 50;
            // 
            // groupPanel11
            // 
            this.groupPanel11.BackColor = System.Drawing.Color.White;
            this.groupPanel11.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Metro;
            this.groupPanel11.Controls.Add(this.labelX17);
            this.groupPanel11.Controls.Add(this.textBoxX10);
            this.groupPanel11.Controls.Add(this.labelX18);
            this.groupPanel11.Controls.Add(this.textBoxX12);
            this.groupPanel11.Dock = System.Windows.Forms.DockStyle.Top;
            this.groupPanel11.DrawTitleBox = false;
            this.groupPanel11.Location = new System.Drawing.Point(5, 5);
            this.groupPanel11.Name = "groupPanel11";
            this.groupPanel11.Size = new System.Drawing.Size(1044, 51);
            // 
            // 
            // 
            this.groupPanel11.Style.BackColor = System.Drawing.Color.White;
            this.groupPanel11.Style.BackColor2 = System.Drawing.Color.White;
            this.groupPanel11.Style.BackColorGradientAngle = 90;
            this.groupPanel11.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.groupPanel11.Style.BorderBottomWidth = 1;
            this.groupPanel11.Style.BorderColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
            this.groupPanel11.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.groupPanel11.Style.BorderLeftWidth = 1;
            this.groupPanel11.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.groupPanel11.Style.BorderRightWidth = 1;
            this.groupPanel11.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.groupPanel11.Style.BorderTopWidth = 1;
            this.groupPanel11.Style.CornerDiameter = 4;
            this.groupPanel11.Style.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.groupPanel11.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
            this.groupPanel11.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near;
            // 
            // 
            // 
            this.groupPanel11.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            // 
            // 
            // 
            this.groupPanel11.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.groupPanel11.TabIndex = 28;
            this.groupPanel11.Text = "Lọc dữ liệu";
            // 
            // labelX17
            // 
            this.labelX17.BackColor = System.Drawing.Color.White;
            // 
            // 
            // 
            this.labelX17.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.labelX17.ForeColor = System.Drawing.Color.Black;
            this.labelX17.Location = new System.Drawing.Point(233, 4);
            this.labelX17.Name = "labelX17";
            this.labelX17.Size = new System.Drawing.Size(75, 20);
            this.labelX17.TabIndex = 16;
            this.labelX17.Text = "Họ tên:";
            this.labelX17.TextAlignment = System.Drawing.StringAlignment.Far;
            // 
            // textBoxX10
            // 
            this.textBoxX10.BackColor = System.Drawing.Color.White;
            // 
            // 
            // 
            this.textBoxX10.Border.Class = "TextBoxBorder";
            this.textBoxX10.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.textBoxX10.FocusHighlightEnabled = true;
            this.textBoxX10.ForeColor = System.Drawing.Color.Black;
            this.highlighter1.SetHighlightOnFocus(this.textBoxX10, true);
            this.textBoxX10.Location = new System.Drawing.Point(314, 3);
            this.textBoxX10.Name = "textBoxX10";
            this.textBoxX10.Size = new System.Drawing.Size(138, 23);
            this.textBoxX10.TabIndex = 15;
            // 
            // labelX18
            // 
            this.labelX18.BackColor = System.Drawing.Color.White;
            // 
            // 
            // 
            this.labelX18.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.labelX18.ForeColor = System.Drawing.Color.Black;
            this.labelX18.Location = new System.Drawing.Point(-2, 4);
            this.labelX18.Name = "labelX18";
            this.labelX18.Size = new System.Drawing.Size(75, 20);
            this.labelX18.TabIndex = 14;
            this.labelX18.Text = "Tài khoản:";
            this.labelX18.TextAlignment = System.Drawing.StringAlignment.Far;
            // 
            // textBoxX12
            // 
            this.textBoxX12.BackColor = System.Drawing.Color.White;
            // 
            // 
            // 
            this.textBoxX12.Border.Class = "TextBoxBorder";
            this.textBoxX12.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.textBoxX12.FocusHighlightEnabled = true;
            this.textBoxX12.ForeColor = System.Drawing.Color.Black;
            this.highlighter1.SetHighlightOnFocus(this.textBoxX12, true);
            this.textBoxX12.Location = new System.Drawing.Point(79, 3);
            this.textBoxX12.Name = "textBoxX12";
            this.textBoxX12.Size = new System.Drawing.Size(138, 23);
            this.textBoxX12.TabIndex = 13;
            // 
            // panelEx6
            // 
            this.panelEx6.CanvasColor = System.Drawing.SystemColors.Control;
            this.panelEx6.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            this.panelEx6.Controls.Add(this.buttonX22);
            this.panelEx6.Controls.Add(this.buttonX2);
            this.panelEx6.Controls.Add(this.buttonX1);
            this.panelEx6.Dock = System.Windows.Forms.DockStyle.Bottom;
            this.panelEx6.Location = new System.Drawing.Point(5, 381);
            this.panelEx6.Name = "panelEx6";
            this.panelEx6.Size = new System.Drawing.Size(1044, 40);
            this.panelEx6.Style.Alignment = System.Drawing.StringAlignment.Center;
            this.panelEx6.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
            this.panelEx6.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemText;
            this.panelEx6.Style.GradientAngle = 90;
            this.panelEx6.TabIndex = 23;
            // 
            // buttonX22
            // 
            this.buttonX22.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
            this.buttonX22.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
            this.buttonX22.Image = global::eBHXH.Prototype.Properties.Resources.RecycleBin;
            this.buttonX22.Location = new System.Drawing.Point(130, 6);
            this.buttonX22.Name = "buttonX22";
            this.buttonX22.Size = new System.Drawing.Size(88, 29);
            this.buttonX22.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            this.buttonX22.TabIndex = 23;
            this.buttonX22.Text = "&Xóa";
            // 
            // buttonX2
            // 
            this.buttonX2.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
            this.buttonX2.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
            this.buttonX2.Image = global::eBHXH.Prototype.Properties.Resources.frmMain_16_buttonFileSaveAs_ImageSmall;
            this.buttonX2.Location = new System.Drawing.Point(2, 6);
            this.buttonX2.Name = "buttonX2";
            this.buttonX2.Size = new System.Drawing.Size(120, 29);
            this.buttonX2.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            this.buttonX2.TabIndex = 20;
            this.buttonX2.Text = "&Ghi";
            // 
            // buttonX1
            // 
            this.buttonX1.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
            this.buttonX1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.buttonX1.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
            this.buttonX1.Image = global::eBHXH.Prototype.Properties.Resources.cancel;
            this.buttonX1.Location = new System.Drawing.Point(954, 6);
            this.buttonX1.Name = "buttonX1";
            this.buttonX1.Size = new System.Drawing.Size(88, 29);
            this.buttonX1.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            this.buttonX1.TabIndex = 21;
            this.buttonX1.Text = "&Thoát";
            // 
            // panelEx1
            // 
            this.panelEx1.CanvasColor = System.Drawing.SystemColors.Control;
            this.panelEx1.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            this.panelEx1.Controls.Add(this.labelX1);
            this.panelEx1.Dock = System.Windows.Forms.DockStyle.Top;
            this.panelEx1.Location = new System.Drawing.Point(0, 0);
            this.panelEx1.Name = "panelEx1";
            this.panelEx1.Size = new System.Drawing.Size(1064, 26);
            this.panelEx1.Style.Alignment = System.Drawing.StringAlignment.Center;
            this.panelEx1.Style.BackColor1.Color = System.Drawing.Color.Green;
            this.panelEx1.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
            this.panelEx1.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
            this.panelEx1.Style.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.panelEx1.Style.ForeColor.Color = System.Drawing.Color.White;
            this.panelEx1.Style.GradientAngle = 90;
            this.panelEx1.TabIndex = 6;
            // 
            // labelX1
            // 
            this.labelX1.BackColor = System.Drawing.Color.Transparent;
            // 
            // 
            // 
            this.labelX1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.labelX1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.labelX1.Font = new System.Drawing.Font("Segoe UI", 14F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.labelX1.ForeColor = System.Drawing.Color.Black;
            this.labelX1.Location = new System.Drawing.Point(0, 0);
            this.labelX1.Name = "labelX1";
            this.labelX1.PaddingLeft = 20;
            this.labelX1.SingleLineColor = System.Drawing.Color.White;
            this.labelX1.Size = new System.Drawing.Size(1064, 26);
            this.labelX1.TabIndex = 4;
            this.labelX1.Text = "<font color=\"white\">QUẢN LÝ TÀI KHOẢN NGƯỜI DÙNG</font>";
            // 
            // superTabItem1
            // 
            this.superTabItem1.AttachedControl = this.superTabControlPanel1;
            this.superTabItem1.GlobalItem = false;
            this.superTabItem1.Name = "superTabItem1";
            this.superTabItem1.Text = "Tài khoản người dùng";
            // 
            // superTabControlPanel12
            // 
            this.superTabControlPanel12.Controls.Add(this.panelEx13);
            this.superTabControlPanel12.Controls.Add(panelEx11);
            this.superTabControlPanel12.Dock = System.Windows.Forms.DockStyle.Fill;
            this.superTabControlPanel12.Location = new System.Drawing.Point(170, 0);
            this.superTabControlPanel12.Name = "superTabControlPanel12";
            this.superTabControlPanel12.Size = new System.Drawing.Size(1064, 462);
            this.superTabControlPanel12.TabIndex = 0;
            this.superTabControlPanel12.TabItem = this.superTabItem12;
            // 
            // panelEx13
            // 
            this.panelEx13.CanvasColor = System.Drawing.SystemColors.Control;
            this.panelEx13.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            this.panelEx13.Controls.Add(this.groupPanel7);
            this.panelEx13.Controls.Add(this.expandableSplitter1);
            this.panelEx13.Controls.Add(this.groupPanel5);
            this.panelEx13.Dock = System.Windows.Forms.DockStyle.Fill;
            this.panelEx13.Location = new System.Drawing.Point(0, 26);
            this.panelEx13.Name = "panelEx13";
            this.panelEx13.Padding = new System.Windows.Forms.Padding(5);
            this.panelEx13.Size = new System.Drawing.Size(1064, 436);
            this.panelEx13.Style.Alignment = System.Drawing.StringAlignment.Center;
            this.panelEx13.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
            this.panelEx13.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemText;
            this.panelEx13.Style.GradientAngle = 90;
            this.panelEx13.TabIndex = 26;
            // 
            // groupPanel7
            // 
            this.groupPanel7.BackColor = System.Drawing.Color.White;
            this.groupPanel7.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Metro;
            this.groupPanel7.Controls.Add(this.dataGridViewX5);
            this.groupPanel7.Controls.Add(this.panelEx12);
            this.groupPanel7.Dock = System.Windows.Forms.DockStyle.Fill;
            this.groupPanel7.DrawTitleBox = false;
            this.groupPanel7.Location = new System.Drawing.Point(384, 5);
            this.groupPanel7.Name = "groupPanel7";
            this.groupPanel7.Padding = new System.Windows.Forms.Padding(2);
            this.groupPanel7.Size = new System.Drawing.Size(675, 426);
            // 
            // 
            // 
            this.groupPanel7.Style.BackColor = System.Drawing.Color.White;
            this.groupPanel7.Style.BackColor2 = System.Drawing.Color.White;
            this.groupPanel7.Style.BackColorGradientAngle = 90;
            this.groupPanel7.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.groupPanel7.Style.BorderBottomWidth = 1;
            this.groupPanel7.Style.BorderColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
            this.groupPanel7.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.groupPanel7.Style.BorderLeftWidth = 1;
            this.groupPanel7.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.groupPanel7.Style.BorderRightWidth = 1;
            this.groupPanel7.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.groupPanel7.Style.BorderTopWidth = 1;
            this.groupPanel7.Style.CornerDiameter = 4;
            this.groupPanel7.Style.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.groupPanel7.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
            this.groupPanel7.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near;
            // 
            // 
            // 
            this.groupPanel7.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            // 
            // 
            // 
            this.groupPanel7.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.groupPanel7.TabIndex = 26;
            this.groupPanel7.Text = resources.GetString("groupPanel7.Text");
            // 
            // dataGridViewX5
            // 
            this.dataGridViewX5.BackgroundColor = System.Drawing.Color.White;
            dataGridViewCellStyle175.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
            dataGridViewCellStyle175.BackColor = System.Drawing.SystemColors.Control;
            dataGridViewCellStyle175.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            dataGridViewCellStyle175.ForeColor = System.Drawing.Color.Black;
            dataGridViewCellStyle175.SelectionBackColor = System.Drawing.SystemColors.Highlight;
            dataGridViewCellStyle175.SelectionForeColor = System.Drawing.Color.Black;
            dataGridViewCellStyle175.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
            this.dataGridViewX5.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle175;
            this.dataGridViewX5.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
            this.dataGridViewX5.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
            this.Column14,
            this.Column15,
            this.Column16,
            this.Column17,
            this.Column18,
            this.Column19});
            dataGridViewCellStyle176.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
            dataGridViewCellStyle176.BackColor = System.Drawing.Color.White;
            dataGridViewCellStyle176.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            dataGridViewCellStyle176.ForeColor = System.Drawing.Color.Black;
            dataGridViewCellStyle176.SelectionBackColor = System.Drawing.SystemColors.Highlight;
            dataGridViewCellStyle176.SelectionForeColor = System.Drawing.Color.Black;
            dataGridViewCellStyle176.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
            this.dataGridViewX5.DefaultCellStyle = dataGridViewCellStyle176;
            this.dataGridViewX5.Dock = System.Windows.Forms.DockStyle.Fill;
            this.dataGridViewX5.EnableHeadersVisualStyles = false;
            this.dataGridViewX5.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(170)))), ((int)(((byte)(170)))), ((int)(((byte)(170)))));
            this.dataGridViewX5.Location = new System.Drawing.Point(2, 2);
            this.dataGridViewX5.Name = "dataGridViewX5";
            dataGridViewCellStyle177.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
            dataGridViewCellStyle177.BackColor = System.Drawing.SystemColors.Control;
            dataGridViewCellStyle177.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            dataGridViewCellStyle177.ForeColor = System.Drawing.Color.Black;
            dataGridViewCellStyle177.SelectionBackColor = System.Drawing.SystemColors.Highlight;
            dataGridViewCellStyle177.SelectionForeColor = System.Drawing.Color.Black;
            dataGridViewCellStyle177.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
            this.dataGridViewX5.RowHeadersDefaultCellStyle = dataGridViewCellStyle177;
            this.dataGridViewX5.Size = new System.Drawing.Size(669, 364);
            this.dataGridViewX5.TabIndex = 23;
            // 
            // Column14
            // 
            this.Column14.HeaderText = "Tên phòng / bộ phận";
            this.Column14.Name = "Column14";
            this.Column14.Width = 200;
            // 
            // Column15
            // 
            this.Column15.HeaderText = "Tên địa danh";
            this.Column15.Name = "Column15";
            // 
            // Column16
            // 
            this.Column16.HeaderText = "Địa chỉ";
            this.Column16.Name = "Column16";
            // 
            // Column17
            // 
            this.Column17.HeaderText = "Điện thoại";
            this.Column17.Name = "Column17";
            // 
            // Column18
            // 
            this.Column18.HeaderText = "Người lãnh đạo";
            this.Column18.Name = "Column18";
            this.Column18.Width = 150;
            // 
            // Column19
            // 
            this.Column19.HeaderText = "Hoạt động";
            this.Column19.Name = "Column19";
            this.Column19.Resizable = System.Windows.Forms.DataGridViewTriState.True;
            this.Column19.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
            this.Column19.Width = 50;
            // 
            // panelEx12
            // 
            this.panelEx12.CanvasColor = System.Drawing.SystemColors.Control;
            this.panelEx12.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            this.panelEx12.Controls.Add(this.buttonX11);
            this.panelEx12.Controls.Add(this.buttonX12);
            this.panelEx12.Controls.Add(this.buttonX13);
            this.panelEx12.Controls.Add(this.buttonX14);
            this.panelEx12.Dock = System.Windows.Forms.DockStyle.Bottom;
            this.panelEx12.Location = new System.Drawing.Point(2, 366);
            this.panelEx12.Name = "panelEx12";
            this.panelEx12.Size = new System.Drawing.Size(669, 40);
            this.panelEx12.Style.Alignment = System.Drawing.StringAlignment.Center;
            this.panelEx12.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
            this.panelEx12.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemText;
            this.panelEx12.Style.GradientAngle = 90;
            this.panelEx12.TabIndex = 24;
            // 
            // buttonX11
            // 
            this.buttonX11.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
            this.buttonX11.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
            this.buttonX11.Image = global::eBHXH.Prototype.Properties.Resources.BHXHVN24x24;
            this.buttonX11.ImageFixedSize = new System.Drawing.Size(20, 20);
            this.buttonX11.Location = new System.Drawing.Point(134, 6);
            this.buttonX11.Name = "buttonX11";
            this.buttonX11.Size = new System.Drawing.Size(205, 29);
            this.buttonX11.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            this.buttonX11.TabIndex = 23;
            this.buttonX11.Text = "Nhân viên phòng / bộ phận";
            // 
            // buttonX12
            // 
            this.buttonX12.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
            this.buttonX12.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
            this.buttonX12.Image = global::eBHXH.Prototype.Properties.Resources.RecycleBin;
            this.buttonX12.Location = new System.Drawing.Point(347, 6);
            this.buttonX12.Name = "buttonX12";
            this.buttonX12.Size = new System.Drawing.Size(88, 29);
            this.buttonX12.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            this.buttonX12.TabIndex = 22;
            this.buttonX12.Text = "&Xóa";
            // 
            // buttonX13
            // 
            this.buttonX13.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
            this.buttonX13.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
            this.buttonX13.Image = global::eBHXH.Prototype.Properties.Resources.frmMain_16_buttonFileSaveAs_ImageSmall;
            this.buttonX13.Location = new System.Drawing.Point(2, 6);
            this.buttonX13.Name = "buttonX13";
            this.buttonX13.Size = new System.Drawing.Size(120, 29);
            this.buttonX13.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            this.buttonX13.TabIndex = 20;
            this.buttonX13.Text = "&Ghi";
            // 
            // buttonX14
            // 
            this.buttonX14.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
            this.buttonX14.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.buttonX14.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
            this.buttonX14.Image = global::eBHXH.Prototype.Properties.Resources.cancel;
            this.buttonX14.Location = new System.Drawing.Point(578, 6);
            this.buttonX14.Name = "buttonX14";
            this.buttonX14.Size = new System.Drawing.Size(88, 29);
            this.buttonX14.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            this.buttonX14.TabIndex = 21;
            this.buttonX14.Text = "&Thoát";
            // 
            // expandableSplitter1
            // 
            this.expandableSplitter1.BackColor = System.Drawing.Color.White;
            this.expandableSplitter1.BackColor2 = System.Drawing.Color.Empty;
            this.expandableSplitter1.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.None;
            this.expandableSplitter1.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.None;
            this.expandableSplitter1.ExpandFillColor = System.Drawing.Color.FromArgb(((int)(((byte)(254)))), ((int)(((byte)(142)))), ((int)(((byte)(75)))));
            this.expandableSplitter1.ExpandFillColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemPressedBackground;
            this.expandableSplitter1.ExpandLineColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(128)))));
            this.expandableSplitter1.ExpandLineColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemPressedBorder;
            this.expandableSplitter1.ForeColor = System.Drawing.Color.Black;
            this.expandableSplitter1.GripDarkColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(128)))));
            this.expandableSplitter1.GripDarkColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemPressedBorder;
            this.expandableSplitter1.GripLightColor = System.Drawing.Color.FromArgb(((int)(((byte)(246)))), ((int)(((byte)(246)))), ((int)(((byte)(246)))));
            this.expandableSplitter1.GripLightColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.MenuBackground;
            this.expandableSplitter1.HotBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(213)))), ((int)(((byte)(140)))));
            this.expandableSplitter1.HotBackColor2 = System.Drawing.Color.Empty;
            this.expandableSplitter1.HotBackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.None;
            this.expandableSplitter1.HotBackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemCheckedBackground;
            this.expandableSplitter1.HotExpandFillColor = System.Drawing.Color.FromArgb(((int)(((byte)(254)))), ((int)(((byte)(142)))), ((int)(((byte)(75)))));
            this.expandableSplitter1.HotExpandFillColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemPressedBackground;
            this.expandableSplitter1.HotExpandLineColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(128)))));
            this.expandableSplitter1.HotExpandLineColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemPressedBorder;
            this.expandableSplitter1.HotGripDarkColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(128)))));
            this.expandableSplitter1.HotGripDarkColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemPressedBorder;
            this.expandableSplitter1.HotGripLightColor = System.Drawing.Color.FromArgb(((int)(((byte)(246)))), ((int)(((byte)(246)))), ((int)(((byte)(246)))));
            this.expandableSplitter1.HotGripLightColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.MenuBackground;
            this.expandableSplitter1.Location = new System.Drawing.Point(378, 5);
            this.expandableSplitter1.Name = "expandableSplitter1";
            this.expandableSplitter1.Size = new System.Drawing.Size(6, 426);
            this.expandableSplitter1.Style = DevComponents.DotNetBar.eSplitterStyle.Mozilla;
            this.expandableSplitter1.TabIndex = 27;
            this.expandableSplitter1.TabStop = false;
            // 
            // groupPanel5
            // 
            this.groupPanel5.BackColor = System.Drawing.Color.White;
            this.groupPanel5.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Metro;
            this.groupPanel5.Controls.Add(this.dataGridViewX4);
            this.groupPanel5.Controls.Add(this.panelEx40);
            this.groupPanel5.Controls.Add(this.groupPanel6);
            this.groupPanel5.Dock = System.Windows.Forms.DockStyle.Left;
            this.groupPanel5.DrawTitleBox = false;
            this.groupPanel5.Location = new System.Drawing.Point(5, 5);
            this.groupPanel5.Name = "groupPanel5";
            this.groupPanel5.Padding = new System.Windows.Forms.Padding(2, 0, 2, 2);
            this.groupPanel5.Size = new System.Drawing.Size(373, 426);
            // 
            // 
            // 
            this.groupPanel5.Style.BackColor = System.Drawing.Color.White;
            this.groupPanel5.Style.BackColor2 = System.Drawing.Color.White;
            this.groupPanel5.Style.BackColorGradientAngle = 90;
            this.groupPanel5.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.groupPanel5.Style.BorderBottomWidth = 1;
            this.groupPanel5.Style.BorderColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
            this.groupPanel5.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.groupPanel5.Style.BorderLeftWidth = 1;
            this.groupPanel5.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.groupPanel5.Style.BorderRightWidth = 1;
            this.groupPanel5.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.groupPanel5.Style.BorderTopWidth = 1;
            this.groupPanel5.Style.CornerDiameter = 4;
            this.groupPanel5.Style.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.groupPanel5.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
            this.groupPanel5.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near;
            // 
            // 
            // 
            this.groupPanel5.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            // 
            // 
            // 
            this.groupPanel5.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.groupPanel5.TabIndex = 25;
            this.groupPanel5.Text = "Chọn cơ quan BHXH";
            // 
            // dataGridViewX4
            // 
            this.dataGridViewX4.BackgroundColor = System.Drawing.Color.White;
            dataGridViewCellStyle178.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
            dataGridViewCellStyle178.BackColor = System.Drawing.SystemColors.Control;
            dataGridViewCellStyle178.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            dataGridViewCellStyle178.ForeColor = System.Drawing.Color.Black;
            dataGridViewCellStyle178.SelectionBackColor = System.Drawing.SystemColors.Highlight;
            dataGridViewCellStyle178.SelectionForeColor = System.Drawing.Color.Black;
            dataGridViewCellStyle178.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
            this.dataGridViewX4.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle178;
            this.dataGridViewX4.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
            this.dataGridViewX4.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
            this.dataGridViewTextBoxColumn8,
            this.dataGridViewTextBoxColumn9});
            dataGridViewCellStyle179.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
            dataGridViewCellStyle179.BackColor = System.Drawing.Color.White;
            dataGridViewCellStyle179.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            dataGridViewCellStyle179.ForeColor = System.Drawing.Color.Black;
            dataGridViewCellStyle179.SelectionBackColor = System.Drawing.SystemColors.Highlight;
            dataGridViewCellStyle179.SelectionForeColor = System.Drawing.Color.Black;
            dataGridViewCellStyle179.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
            this.dataGridViewX4.DefaultCellStyle = dataGridViewCellStyle179;
            this.dataGridViewX4.Dock = System.Windows.Forms.DockStyle.Fill;
            this.dataGridViewX4.EnableHeadersVisualStyles = false;
            this.dataGridViewX4.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(170)))), ((int)(((byte)(170)))), ((int)(((byte)(170)))));
            this.dataGridViewX4.Location = new System.Drawing.Point(2, 56);
            this.dataGridViewX4.Name = "dataGridViewX4";
            dataGridViewCellStyle180.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
            dataGridViewCellStyle180.BackColor = System.Drawing.SystemColors.Control;
            dataGridViewCellStyle180.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            dataGridViewCellStyle180.ForeColor = System.Drawing.Color.Black;
            dataGridViewCellStyle180.SelectionBackColor = System.Drawing.SystemColors.Highlight;
            dataGridViewCellStyle180.SelectionForeColor = System.Drawing.Color.Black;
            dataGridViewCellStyle180.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
            this.dataGridViewX4.RowHeadersDefaultCellStyle = dataGridViewCellStyle180;
            this.dataGridViewX4.Size = new System.Drawing.Size(367, 348);
            this.dataGridViewX4.TabIndex = 23;
            // 
            // dataGridViewTextBoxColumn8
            // 
            this.dataGridViewTextBoxColumn8.HeaderText = "Tên cơ quan";
            this.dataGridViewTextBoxColumn8.Name = "dataGridViewTextBoxColumn8";
            this.dataGridViewTextBoxColumn8.Width = 200;
            // 
            // dataGridViewTextBoxColumn9
            // 
            this.dataGridViewTextBoxColumn9.HeaderText = "Mã cơ quan";
            this.dataGridViewTextBoxColumn9.Name = "dataGridViewTextBoxColumn9";
            // 
            // panelEx40
            // 
            this.panelEx40.CanvasColor = System.Drawing.SystemColors.Control;
            this.panelEx40.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            this.panelEx40.Dock = System.Windows.Forms.DockStyle.Top;
            this.panelEx40.Location = new System.Drawing.Point(2, 51);
            this.panelEx40.Name = "panelEx40";
            this.panelEx40.Size = new System.Drawing.Size(367, 5);
            this.panelEx40.Style.Alignment = System.Drawing.StringAlignment.Center;
            this.panelEx40.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
            this.panelEx40.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemText;
            this.panelEx40.Style.GradientAngle = 90;
            this.panelEx40.TabIndex = 28;
            // 
            // groupPanel6
            // 
            this.groupPanel6.BackColor = System.Drawing.Color.White;
            this.groupPanel6.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Metro;
            this.groupPanel6.Controls.Add(this.textBoxX8);
            this.groupPanel6.Controls.Add(this.textBoxX9);
            this.groupPanel6.Dock = System.Windows.Forms.DockStyle.Top;
            this.groupPanel6.DrawTitleBox = false;
            this.groupPanel6.Location = new System.Drawing.Point(2, 0);
            this.groupPanel6.Name = "groupPanel6";
            this.groupPanel6.Size = new System.Drawing.Size(367, 51);
            // 
            // 
            // 
            this.groupPanel6.Style.BackColor = System.Drawing.Color.White;
            this.groupPanel6.Style.BackColor2 = System.Drawing.Color.White;
            this.groupPanel6.Style.BackColorGradientAngle = 90;
            this.groupPanel6.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.groupPanel6.Style.BorderBottomWidth = 1;
            this.groupPanel6.Style.BorderColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
            this.groupPanel6.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.groupPanel6.Style.BorderLeftWidth = 1;
            this.groupPanel6.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.groupPanel6.Style.BorderRightWidth = 1;
            this.groupPanel6.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.groupPanel6.Style.BorderTopWidth = 1;
            this.groupPanel6.Style.CornerDiameter = 4;
            this.groupPanel6.Style.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.groupPanel6.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
            this.groupPanel6.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near;
            // 
            // 
            // 
            this.groupPanel6.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            // 
            // 
            // 
            this.groupPanel6.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.groupPanel6.TabIndex = 27;
            this.groupPanel6.Text = "Lọc dữ liệu";
            // 
            // textBoxX8
            // 
            this.textBoxX8.BackColor = System.Drawing.Color.White;
            // 
            // 
            // 
            this.textBoxX8.Border.Class = "TextBoxBorder";
            this.textBoxX8.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.textBoxX8.FocusHighlightEnabled = true;
            this.textBoxX8.ForeColor = System.Drawing.Color.Black;
            this.highlighter1.SetHighlightOnFocus(this.textBoxX8, true);
            this.textBoxX8.Location = new System.Drawing.Point(89, 1);
            this.textBoxX8.Name = "textBoxX8";
            this.textBoxX8.Size = new System.Drawing.Size(203, 23);
            this.textBoxX8.TabIndex = 15;
            this.textBoxX8.WatermarkText = "Tên cơ quan cấp tỉnh";
            // 
            // textBoxX9
            // 
            this.textBoxX9.BackColor = System.Drawing.Color.White;
            // 
            // 
            // 
            this.textBoxX9.Border.Class = "TextBoxBorder";
            this.textBoxX9.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.textBoxX9.FocusHighlightEnabled = true;
            this.textBoxX9.ForeColor = System.Drawing.Color.Black;
            this.highlighter1.SetHighlightOnFocus(this.textBoxX9, true);
            this.textBoxX9.Location = new System.Drawing.Point(6, 1);
            this.textBoxX9.Name = "textBoxX9";
            this.textBoxX9.Size = new System.Drawing.Size(77, 23);
            this.textBoxX9.TabIndex = 13;
            this.textBoxX9.WatermarkText = "Mã cơ quan";
            // 
            // superTabItem12
            // 
            this.superTabItem12.AttachedControl = this.superTabControlPanel12;
            this.superTabItem12.GlobalItem = false;
            this.superTabItem12.Name = "superTabItem12";
            this.superTabItem12.Text = "Tổ chức phòng/bộ phận";
            // 
            // superTabControlPanel13
            // 
            this.superTabControlPanel13.Controls.Add(this.panelEx43);
            this.superTabControlPanel13.Controls.Add(this.panelEx37);
            this.superTabControlPanel13.Dock = System.Windows.Forms.DockStyle.Fill;
            this.superTabControlPanel13.Location = new System.Drawing.Point(170, 0);
            this.superTabControlPanel13.Name = "superTabControlPanel13";
            this.superTabControlPanel13.Size = new System.Drawing.Size(1064, 462);
            this.superTabControlPanel13.TabIndex = 0;
            this.superTabControlPanel13.TabItem = this.superTabItem13;
            // 
            // panelEx43
            // 
            this.panelEx43.CanvasColor = System.Drawing.SystemColors.Control;
            this.panelEx43.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            this.panelEx43.Controls.Add(this.panelEx44);
            this.panelEx43.Dock = System.Windows.Forms.DockStyle.Fill;
            this.panelEx43.Location = new System.Drawing.Point(0, 26);
            this.panelEx43.Name = "panelEx43";
            this.panelEx43.Padding = new System.Windows.Forms.Padding(5);
            this.panelEx43.Size = new System.Drawing.Size(1064, 436);
            this.panelEx43.Style.Alignment = System.Drawing.StringAlignment.Center;
            this.panelEx43.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
            this.panelEx43.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemText;
            this.panelEx43.Style.GradientAngle = 90;
            this.panelEx43.TabIndex = 37;
            // 
            // panelEx44
            // 
            this.panelEx44.CanvasColor = System.Drawing.SystemColors.Control;
            this.panelEx44.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            this.panelEx44.Controls.Add(this.groupPanel18);
            this.panelEx44.Controls.Add(this.groupPanel19);
            this.panelEx44.Controls.Add(this.panelEx39);
            this.panelEx44.Dock = System.Windows.Forms.DockStyle.Fill;
            this.panelEx44.Location = new System.Drawing.Point(5, 5);
            this.panelEx44.Name = "panelEx44";
            this.panelEx44.Padding = new System.Windows.Forms.Padding(5);
            this.panelEx44.Size = new System.Drawing.Size(1054, 426);
            this.panelEx44.Style.Alignment = System.Drawing.StringAlignment.Center;
            this.panelEx44.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
            this.panelEx44.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
            this.panelEx44.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
            this.panelEx44.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
            this.panelEx44.Style.GradientAngle = 90;
            this.panelEx44.TabIndex = 15;
            // 
            // groupPanel18
            // 
            this.groupPanel18.BackColor = System.Drawing.Color.White;
            this.groupPanel18.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Metro;
            this.groupPanel18.Controls.Add(this.dataGridViewX15);
            this.groupPanel18.Dock = System.Windows.Forms.DockStyle.Fill;
            this.groupPanel18.DrawTitleBox = false;
            this.groupPanel18.Location = new System.Drawing.Point(5, 56);
            this.groupPanel18.Name = "groupPanel18";
            this.groupPanel18.Padding = new System.Windows.Forms.Padding(2);
            this.groupPanel18.Size = new System.Drawing.Size(1044, 325);
            // 
            // 
            // 
            this.groupPanel18.Style.BackColor = System.Drawing.Color.White;
            this.groupPanel18.Style.BackColor2 = System.Drawing.Color.White;
            this.groupPanel18.Style.BackColorGradientAngle = 90;
            this.groupPanel18.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.groupPanel18.Style.BorderBottomWidth = 1;
            this.groupPanel18.Style.BorderColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
            this.groupPanel18.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.groupPanel18.Style.BorderLeftWidth = 1;
            this.groupPanel18.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.groupPanel18.Style.BorderRightWidth = 1;
            this.groupPanel18.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.groupPanel18.Style.BorderTopWidth = 1;
            this.groupPanel18.Style.CornerDiameter = 4;
            this.groupPanel18.Style.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.groupPanel18.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
            this.groupPanel18.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near;
            // 
            // 
            // 
            this.groupPanel18.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            // 
            // 
            // 
            this.groupPanel18.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.groupPanel18.TabIndex = 29;
            this.groupPanel18.Text = resources.GetString("groupPanel18.Text");
            // 
            // dataGridViewX15
            // 
            this.dataGridViewX15.BackgroundColor = System.Drawing.Color.White;
            dataGridViewCellStyle181.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
            dataGridViewCellStyle181.BackColor = System.Drawing.SystemColors.Control;
            dataGridViewCellStyle181.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            dataGridViewCellStyle181.ForeColor = System.Drawing.Color.Black;
            dataGridViewCellStyle181.SelectionBackColor = System.Drawing.SystemColors.Highlight;
            dataGridViewCellStyle181.SelectionForeColor = System.Drawing.Color.Black;
            dataGridViewCellStyle181.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
            this.dataGridViewX15.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle181;
            this.dataGridViewX15.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
            this.dataGridViewX15.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
            this.Column41,
            this.Column42,
            this.Column43,
            this.Column44,
            this.Column45});
            dataGridViewCellStyle182.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
            dataGridViewCellStyle182.BackColor = System.Drawing.Color.White;
            dataGridViewCellStyle182.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            dataGridViewCellStyle182.ForeColor = System.Drawing.Color.Black;
            dataGridViewCellStyle182.SelectionBackColor = System.Drawing.SystemColors.Highlight;
            dataGridViewCellStyle182.SelectionForeColor = System.Drawing.Color.Black;
            dataGridViewCellStyle182.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
            this.dataGridViewX15.DefaultCellStyle = dataGridViewCellStyle182;
            this.dataGridViewX15.Dock = System.Windows.Forms.DockStyle.Fill;
            this.dataGridViewX15.EnableHeadersVisualStyles = false;
            this.dataGridViewX15.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(170)))), ((int)(((byte)(170)))), ((int)(((byte)(170)))));
            this.dataGridViewX15.Location = new System.Drawing.Point(2, 2);
            this.dataGridViewX15.Name = "dataGridViewX15";
            dataGridViewCellStyle183.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
            dataGridViewCellStyle183.BackColor = System.Drawing.SystemColors.Control;
            dataGridViewCellStyle183.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            dataGridViewCellStyle183.ForeColor = System.Drawing.Color.Black;
            dataGridViewCellStyle183.SelectionBackColor = System.Drawing.SystemColors.Highlight;
            dataGridViewCellStyle183.SelectionForeColor = System.Drawing.Color.Black;
            dataGridViewCellStyle183.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
            this.dataGridViewX15.RowHeadersDefaultCellStyle = dataGridViewCellStyle183;
            this.dataGridViewX15.Size = new System.Drawing.Size(1038, 303);
            this.dataGridViewX15.TabIndex = 23;
            // 
            // Column41
            // 
            this.Column41.HeaderText = "Tên ngày nghỉ/ngày làm bù";
            this.Column41.Name = "Column41";
            this.Column41.Width = 250;
            // 
            // Column42
            // 
            this.Column42.HeaderText = "Năm áp dụng";
            this.Column42.Name = "Column42";
            // 
            // Column43
            // 
            this.Column43.HeaderText = "Kiểu";
            this.Column43.Name = "Column43";
            // 
            // Column44
            // 
            this.Column44.HeaderText = "Từ ngày";
            this.Column44.Name = "Column44";
            // 
            // Column45
            // 
            this.Column45.HeaderText = "Đến ngày";
            this.Column45.Name = "Column45";
            // 
            // groupPanel19
            // 
            this.groupPanel19.BackColor = System.Drawing.Color.White;
            this.groupPanel19.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Metro;
            this.groupPanel19.Controls.Add(this.labelX32);
            this.groupPanel19.Controls.Add(this.textBoxX16);
            this.groupPanel19.Dock = System.Windows.Forms.DockStyle.Top;
            this.groupPanel19.DrawTitleBox = false;
            this.groupPanel19.Location = new System.Drawing.Point(5, 5);
            this.groupPanel19.Name = "groupPanel19";
            this.groupPanel19.Size = new System.Drawing.Size(1044, 51);
            // 
            // 
            // 
            this.groupPanel19.Style.BackColor = System.Drawing.Color.White;
            this.groupPanel19.Style.BackColor2 = System.Drawing.Color.White;
            this.groupPanel19.Style.BackColorGradientAngle = 90;
            this.groupPanel19.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.groupPanel19.Style.BorderBottomWidth = 1;
            this.groupPanel19.Style.BorderColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
            this.groupPanel19.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.groupPanel19.Style.BorderLeftWidth = 1;
            this.groupPanel19.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.groupPanel19.Style.BorderRightWidth = 1;
            this.groupPanel19.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.groupPanel19.Style.BorderTopWidth = 1;
            this.groupPanel19.Style.CornerDiameter = 4;
            this.groupPanel19.Style.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.groupPanel19.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
            this.groupPanel19.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near;
            // 
            // 
            // 
            this.groupPanel19.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            // 
            // 
            // 
            this.groupPanel19.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.groupPanel19.TabIndex = 28;
            this.groupPanel19.Text = "Lọc dữ liệu";
            // 
            // labelX32
            // 
            this.labelX32.BackColor = System.Drawing.Color.White;
            // 
            // 
            // 
            this.labelX32.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.labelX32.ForeColor = System.Drawing.Color.Black;
            this.labelX32.Location = new System.Drawing.Point(-2, 4);
            this.labelX32.Name = "labelX32";
            this.labelX32.Size = new System.Drawing.Size(173, 20);
            this.labelX32.TabIndex = 14;
            this.labelX32.Text = "Tên ngày nghỉ/ngày làm bù:";
            this.labelX32.TextAlignment = System.Drawing.StringAlignment.Far;
            // 
            // textBoxX16
            // 
            this.textBoxX16.BackColor = System.Drawing.Color.White;
            // 
            // 
            // 
            this.textBoxX16.Border.Class = "TextBoxBorder";
            this.textBoxX16.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.textBoxX16.FocusHighlightEnabled = true;
            this.textBoxX16.ForeColor = System.Drawing.Color.Black;
            this.highlighter1.SetHighlightOnFocus(this.textBoxX16, true);
            this.textBoxX16.Location = new System.Drawing.Point(177, 1);
            this.textBoxX16.Name = "textBoxX16";
            this.textBoxX16.Size = new System.Drawing.Size(285, 23);
            this.textBoxX16.TabIndex = 13;
            // 
            // panelEx39
            // 
            this.panelEx39.CanvasColor = System.Drawing.SystemColors.Control;
            this.panelEx39.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            this.panelEx39.Controls.Add(this.buttonX27);
            this.panelEx39.Controls.Add(this.buttonX37);
            this.panelEx39.Controls.Add(this.buttonX38);
            this.panelEx39.Dock = System.Windows.Forms.DockStyle.Bottom;
            this.panelEx39.Location = new System.Drawing.Point(5, 381);
            this.panelEx39.Name = "panelEx39";
            this.panelEx39.Size = new System.Drawing.Size(1044, 40);
            this.panelEx39.Style.Alignment = System.Drawing.StringAlignment.Center;
            this.panelEx39.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
            this.panelEx39.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemText;
            this.panelEx39.Style.GradientAngle = 90;
            this.panelEx39.TabIndex = 23;
            // 
            // buttonX27
            // 
            this.buttonX27.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
            this.buttonX27.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
            this.buttonX27.Image = global::eBHXH.Prototype.Properties.Resources.RecycleBin;
            this.buttonX27.Location = new System.Drawing.Point(132, 6);
            this.buttonX27.Name = "buttonX27";
            this.buttonX27.Size = new System.Drawing.Size(88, 29);
            this.buttonX27.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            this.buttonX27.TabIndex = 23;
            this.buttonX27.Text = "&Xóa";
            // 
            // buttonX37
            // 
            this.buttonX37.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
            this.buttonX37.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
            this.buttonX37.Image = global::eBHXH.Prototype.Properties.Resources.frmMain_16_buttonFileSaveAs_ImageSmall;
            this.buttonX37.Location = new System.Drawing.Point(4, 6);
            this.buttonX37.Name = "buttonX37";
            this.buttonX37.Size = new System.Drawing.Size(120, 29);
            this.buttonX37.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            this.buttonX37.TabIndex = 20;
            this.buttonX37.Text = "&Ghi";
            // 
            // buttonX38
            // 
            this.buttonX38.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
            this.buttonX38.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.buttonX38.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
            this.buttonX38.Image = global::eBHXH.Prototype.Properties.Resources.cancel;
            this.buttonX38.Location = new System.Drawing.Point(954, 6);
            this.buttonX38.Name = "buttonX38";
            this.buttonX38.Size = new System.Drawing.Size(88, 29);
            this.buttonX38.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            this.buttonX38.TabIndex = 21;
            this.buttonX38.Text = "&Thoát";
            // 
            // panelEx37
            // 
            this.panelEx37.CanvasColor = System.Drawing.SystemColors.Control;
            this.panelEx37.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            this.panelEx37.Controls.Add(this.labelX30);
            this.panelEx37.Dock = System.Windows.Forms.DockStyle.Top;
            this.panelEx37.Location = new System.Drawing.Point(0, 0);
            this.panelEx37.Name = "panelEx37";
            this.panelEx37.Size = new System.Drawing.Size(1064, 26);
            this.panelEx37.Style.Alignment = System.Drawing.StringAlignment.Center;
            this.panelEx37.Style.BackColor1.Color = System.Drawing.Color.Green;
            this.panelEx37.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
            this.panelEx37.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
            this.panelEx37.Style.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.panelEx37.Style.ForeColor.Color = System.Drawing.Color.White;
            this.panelEx37.Style.GradientAngle = 90;
            this.panelEx37.TabIndex = 11;
            // 
            // labelX30
            // 
            this.labelX30.BackColor = System.Drawing.Color.Transparent;
            // 
            // 
            // 
            this.labelX30.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.labelX30.Dock = System.Windows.Forms.DockStyle.Fill;
            this.labelX30.Font = new System.Drawing.Font("Segoe UI", 14F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.labelX30.ForeColor = System.Drawing.Color.Black;
            this.labelX30.Location = new System.Drawing.Point(0, 0);
            this.labelX30.Name = "labelX30";
            this.labelX30.PaddingLeft = 20;
            this.labelX30.SingleLineColor = System.Drawing.Color.White;
            this.labelX30.Size = new System.Drawing.Size(1064, 26);
            this.labelX30.TabIndex = 4;
            this.labelX30.Text = "<font color=\"white\">DANH MỤC NGÀY NGHỈ/NGÀY LÀM BÙ</font>";
            // 
            // superTabItem13
            // 
            this.superTabItem13.AttachedControl = this.superTabControlPanel13;
            this.superTabItem13.GlobalItem = false;
            this.superTabItem13.Name = "superTabItem13";
            this.superTabItem13.Text = "Danh mục ngày nghỉ";
            // 
            // superTabControlPanel11
            // 
            this.superTabControlPanel11.Controls.Add(this.panelEx30);
            this.superTabControlPanel11.Controls.Add(this.panelEx26);
            this.superTabControlPanel11.Dock = System.Windows.Forms.DockStyle.Fill;
            this.superTabControlPanel11.Location = new System.Drawing.Point(170, 0);
            this.superTabControlPanel11.Name = "superTabControlPanel11";
            this.superTabControlPanel11.Size = new System.Drawing.Size(1064, 462);
            this.superTabControlPanel11.TabIndex = 0;
            this.superTabControlPanel11.TabItem = this.superTabItem11;
            // 
            // panelEx30
            // 
            this.panelEx30.CanvasColor = System.Drawing.SystemColors.Control;
            this.panelEx30.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            this.panelEx30.Location = new System.Drawing.Point(507, 67);
            this.panelEx30.Name = "panelEx30";
            this.panelEx30.Padding = new System.Windows.Forms.Padding(5);
            this.panelEx30.Size = new System.Drawing.Size(315, 297);
            this.panelEx30.Style.Alignment = System.Drawing.StringAlignment.Center;
            this.panelEx30.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
            this.panelEx30.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemText;
            this.panelEx30.Style.GradientAngle = 90;
            this.panelEx30.TabIndex = 36;
            // 
            // panelEx26
            // 
            this.panelEx26.CanvasColor = System.Drawing.SystemColors.Control;
            this.panelEx26.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            this.panelEx26.Location = new System.Drawing.Point(8, 8);
            this.panelEx26.Name = "panelEx26";
            this.panelEx26.Padding = new System.Windows.Forms.Padding(5);
            this.panelEx26.Size = new System.Drawing.Size(447, 210);
            this.panelEx26.Style.Alignment = System.Drawing.StringAlignment.Center;
            this.panelEx26.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
            this.panelEx26.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
            this.panelEx26.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
            this.panelEx26.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
            this.panelEx26.Style.GradientAngle = 90;
            this.panelEx26.TabIndex = 14;
            // 
            // superTabItem11
            // 
            this.superTabItem11.AttachedControl = this.superTabControlPanel11;
            this.superTabItem11.GlobalItem = false;
            this.superTabItem11.Name = "superTabItem11";
            this.superTabItem11.Text = "superTabItem11";
            this.superTabItem11.Visible = false;
            // 
            // superTabControlPanel6
            // 
            this.superTabControlPanel6.Controls.Add(this.panelEx41);
            this.superTabControlPanel6.Controls.Add(this.panelEx34);
            this.superTabControlPanel6.Dock = System.Windows.Forms.DockStyle.Fill;
            this.superTabControlPanel6.Location = new System.Drawing.Point(170, 0);
            this.superTabControlPanel6.Name = "superTabControlPanel6";
            this.superTabControlPanel6.Size = new System.Drawing.Size(1064, 462);
            this.superTabControlPanel6.TabIndex = 6;
            this.superTabControlPanel6.TabItem = this.superTabItem6;
            // 
            // panelEx41
            // 
            this.panelEx41.CanvasColor = System.Drawing.SystemColors.Control;
            this.panelEx41.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            this.panelEx41.Controls.Add(this.panelEx42);
            this.panelEx41.Dock = System.Windows.Forms.DockStyle.Fill;
            this.panelEx41.Location = new System.Drawing.Point(0, 26);
            this.panelEx41.Name = "panelEx41";
            this.panelEx41.Padding = new System.Windows.Forms.Padding(5);
            this.panelEx41.Size = new System.Drawing.Size(1064, 436);
            this.panelEx41.Style.Alignment = System.Drawing.StringAlignment.Center;
            this.panelEx41.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
            this.panelEx41.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemText;
            this.panelEx41.Style.GradientAngle = 90;
            this.panelEx41.TabIndex = 37;
            // 
            // panelEx42
            // 
            this.panelEx42.CanvasColor = System.Drawing.SystemColors.Control;
            this.panelEx42.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            this.panelEx42.Controls.Add(this.groupPanel17);
            this.panelEx42.Controls.Add(this.panelEx35);
            this.panelEx42.Controls.Add(this.groupPanel16);
            this.panelEx42.Dock = System.Windows.Forms.DockStyle.Fill;
            this.panelEx42.Location = new System.Drawing.Point(5, 5);
            this.panelEx42.Name = "panelEx42";
            this.panelEx42.Padding = new System.Windows.Forms.Padding(5);
            this.panelEx42.Size = new System.Drawing.Size(1054, 426);
            this.panelEx42.Style.Alignment = System.Drawing.StringAlignment.Center;
            this.panelEx42.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
            this.panelEx42.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
            this.panelEx42.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
            this.panelEx42.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
            this.panelEx42.Style.GradientAngle = 90;
            this.panelEx42.TabIndex = 15;
            // 
            // groupPanel17
            // 
            this.groupPanel17.BackColor = System.Drawing.Color.White;
            this.groupPanel17.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Metro;
            this.groupPanel17.Controls.Add(this.dataGridViewX14);
            this.groupPanel17.Dock = System.Windows.Forms.DockStyle.Fill;
            this.groupPanel17.DrawTitleBox = false;
            this.groupPanel17.Location = new System.Drawing.Point(5, 58);
            this.groupPanel17.Name = "groupPanel17";
            this.groupPanel17.Padding = new System.Windows.Forms.Padding(2);
            this.groupPanel17.Size = new System.Drawing.Size(1044, 323);
            // 
            // 
            // 
            this.groupPanel17.Style.BackColor = System.Drawing.Color.White;
            this.groupPanel17.Style.BackColor2 = System.Drawing.Color.White;
            this.groupPanel17.Style.BackColorGradientAngle = 90;
            this.groupPanel17.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.groupPanel17.Style.BorderBottomWidth = 1;
            this.groupPanel17.Style.BorderColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
            this.groupPanel17.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.groupPanel17.Style.BorderLeftWidth = 1;
            this.groupPanel17.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.groupPanel17.Style.BorderRightWidth = 1;
            this.groupPanel17.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.groupPanel17.Style.BorderTopWidth = 1;
            this.groupPanel17.Style.CornerDiameter = 4;
            this.groupPanel17.Style.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.groupPanel17.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
            this.groupPanel17.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near;
            // 
            // 
            // 
            this.groupPanel17.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            // 
            // 
            // 
            this.groupPanel17.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.groupPanel17.TabIndex = 27;
            this.groupPanel17.Text = "Quy trình thủ tục    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;" +
                "&nbsp;&nbsp;<font color=\"blue\">Ctrl+S:</font> Ghi &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;" +
                "&nbsp;<font color=\"blue\">F8:</font> Xóa";
            // 
            // dataGridViewX14
            // 
            this.dataGridViewX14.BackgroundColor = System.Drawing.Color.White;
            dataGridViewCellStyle184.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
            dataGridViewCellStyle184.BackColor = System.Drawing.SystemColors.Control;
            dataGridViewCellStyle184.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            dataGridViewCellStyle184.ForeColor = System.Drawing.Color.Black;
            dataGridViewCellStyle184.SelectionBackColor = System.Drawing.SystemColors.Highlight;
            dataGridViewCellStyle184.SelectionForeColor = System.Drawing.Color.Black;
            dataGridViewCellStyle184.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
            this.dataGridViewX14.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle184;
            this.dataGridViewX14.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
            this.dataGridViewX14.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
            this.Column36,
            this.Column37,
            this.Column38,
            this.Column39,
            this.Column40});
            dataGridViewCellStyle185.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
            dataGridViewCellStyle185.BackColor = System.Drawing.Color.White;
            dataGridViewCellStyle185.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            dataGridViewCellStyle185.ForeColor = System.Drawing.Color.Black;
            dataGridViewCellStyle185.SelectionBackColor = System.Drawing.SystemColors.Highlight;
            dataGridViewCellStyle185.SelectionForeColor = System.Drawing.Color.Black;
            dataGridViewCellStyle185.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
            this.dataGridViewX14.DefaultCellStyle = dataGridViewCellStyle185;
            this.dataGridViewX14.Dock = System.Windows.Forms.DockStyle.Fill;
            this.dataGridViewX14.EnableHeadersVisualStyles = false;
            this.dataGridViewX14.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(170)))), ((int)(((byte)(170)))), ((int)(((byte)(170)))));
            this.dataGridViewX14.Location = new System.Drawing.Point(2, 2);
            this.dataGridViewX14.Name = "dataGridViewX14";
            dataGridViewCellStyle186.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
            dataGridViewCellStyle186.BackColor = System.Drawing.SystemColors.Control;
            dataGridViewCellStyle186.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            dataGridViewCellStyle186.ForeColor = System.Drawing.Color.Black;
            dataGridViewCellStyle186.SelectionBackColor = System.Drawing.SystemColors.Highlight;
            dataGridViewCellStyle186.SelectionForeColor = System.Drawing.Color.Black;
            dataGridViewCellStyle186.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
            this.dataGridViewX14.RowHeadersDefaultCellStyle = dataGridViewCellStyle186;
            this.dataGridViewX14.Size = new System.Drawing.Size(1038, 301);
            this.dataGridViewX14.TabIndex = 23;
            // 
            // Column36
            // 
            this.Column36.HeaderText = "Thứ tự thực hiện";
            this.Column36.Name = "Column36";
            // 
            // Column37
            // 
            this.Column37.Col1Width = 50;
            this.Column37.Col2Width = 100;
            this.Column37.Col3Width = 150;
            this.Column37.DisplayMember = "Text";
            this.Column37.DropDownColumnsHeaders = "";
            this.Column37.DropDownHeight = 106;
            this.Column37.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.Column37.DropDownWidth = 121;
            this.Column37.FlatStyle = System.Windows.Forms.FlatStyle.System;
            this.Column37.HeaderText = "Phòng / bộ phận thực hiện";
            this.Column37.ImeMode = System.Windows.Forms.ImeMode.NoControl;
            this.Column37.IntegralHeight = false;
            this.Column37.ItemHeight = 15;
            this.Column37.MoRongKhiForcus = false;
            this.Column37.Name = "Column37";
            this.Column37.Resizable = System.Windows.Forms.DataGridViewTriState.True;
            this.Column37.RightToLeft = System.Windows.Forms.RightToLeft.No;
            this.Column37.Width = 200;
            // 
            // Column38
            // 
            this.Column38.HeaderText = "Số ngày thực hiện";
            this.Column38.Name = "Column38";
            // 
            // Column39
            // 
            this.Column39.HeaderText = "Tỷ trọng";
            this.Column39.Name = "Column39";
            // 
            // Column40
            // 
            this.Column40.HeaderText = "Ghi chú";
            this.Column40.Name = "Column40";
            // 
            // panelEx35
            // 
            this.panelEx35.CanvasColor = System.Drawing.SystemColors.Control;
            this.panelEx35.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            this.panelEx35.Controls.Add(this.buttonX34);
            this.panelEx35.Controls.Add(this.buttonX35);
            this.panelEx35.Controls.Add(this.buttonX36);
            this.panelEx35.Dock = System.Windows.Forms.DockStyle.Bottom;
            this.panelEx35.Location = new System.Drawing.Point(5, 381);
            this.panelEx35.Name = "panelEx35";
            this.panelEx35.Size = new System.Drawing.Size(1044, 40);
            this.panelEx35.Style.Alignment = System.Drawing.StringAlignment.Center;
            this.panelEx35.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
            this.panelEx35.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemText;
            this.panelEx35.Style.GradientAngle = 90;
            this.panelEx35.TabIndex = 27;
            // 
            // buttonX34
            // 
            this.buttonX34.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
            this.buttonX34.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
            this.buttonX34.Image = global::eBHXH.Prototype.Properties.Resources.RecycleBin;
            this.buttonX34.Location = new System.Drawing.Point(130, 6);
            this.buttonX34.Name = "buttonX34";
            this.buttonX34.Size = new System.Drawing.Size(88, 29);
            this.buttonX34.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            this.buttonX34.TabIndex = 22;
            this.buttonX34.Text = "&Xóa";
            // 
            // buttonX35
            // 
            this.buttonX35.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
            this.buttonX35.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
            this.buttonX35.Image = global::eBHXH.Prototype.Properties.Resources.frmMain_16_buttonFileSaveAs_ImageSmall;
            this.buttonX35.Location = new System.Drawing.Point(4, 6);
            this.buttonX35.Name = "buttonX35";
            this.buttonX35.Size = new System.Drawing.Size(120, 29);
            this.buttonX35.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            this.buttonX35.TabIndex = 20;
            this.buttonX35.Text = "&Ghi";
            // 
            // buttonX36
            // 
            this.buttonX36.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
            this.buttonX36.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.buttonX36.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
            this.buttonX36.Image = global::eBHXH.Prototype.Properties.Resources.cancel;
            this.buttonX36.Location = new System.Drawing.Point(953, 6);
            this.buttonX36.Name = "buttonX36";
            this.buttonX36.Size = new System.Drawing.Size(88, 29);
            this.buttonX36.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            this.buttonX36.TabIndex = 21;
            this.buttonX36.Text = "&Thoát";
            // 
            // groupPanel16
            // 
            this.groupPanel16.BackColor = System.Drawing.Color.White;
            this.groupPanel16.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Metro;
            this.groupPanel16.Controls.Add(this.comboBoxEx2);
            this.groupPanel16.Controls.Add(this.labelX28);
            this.groupPanel16.Controls.Add(this.textBoxX13);
            this.groupPanel16.Dock = System.Windows.Forms.DockStyle.Top;
            this.groupPanel16.DrawTitleBox = false;
            this.groupPanel16.Location = new System.Drawing.Point(5, 5);
            this.groupPanel16.Name = "groupPanel16";
            this.groupPanel16.Padding = new System.Windows.Forms.Padding(2, 0, 2, 2);
            this.groupPanel16.Size = new System.Drawing.Size(1044, 53);
            // 
            // 
            // 
            this.groupPanel16.Style.BackColor = System.Drawing.Color.White;
            this.groupPanel16.Style.BackColor2 = System.Drawing.Color.White;
            this.groupPanel16.Style.BackColorGradientAngle = 90;
            this.groupPanel16.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.groupPanel16.Style.BorderBottomWidth = 1;
            this.groupPanel16.Style.BorderColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
            this.groupPanel16.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.groupPanel16.Style.BorderLeftWidth = 1;
            this.groupPanel16.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.groupPanel16.Style.BorderRightWidth = 1;
            this.groupPanel16.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.groupPanel16.Style.BorderTopWidth = 1;
            this.groupPanel16.Style.CornerDiameter = 4;
            this.groupPanel16.Style.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.groupPanel16.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
            this.groupPanel16.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near;
            // 
            // 
            // 
            this.groupPanel16.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            // 
            // 
            // 
            this.groupPanel16.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.groupPanel16.TabIndex = 26;
            this.groupPanel16.Text = "Chọn thủ tục";
            // 
            // comboBoxEx2
            // 
            this.comboBoxEx2.Col1Width = 50;
            this.comboBoxEx2.Col2Width = 100;
            this.comboBoxEx2.Col3Width = 150;
            this.comboBoxEx2.DisplayMember = "Text";
            this.comboBoxEx2.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
            this.comboBoxEx2.ForeColor = System.Drawing.Color.Black;
            this.comboBoxEx2.FormattingEnabled = true;
            this.comboBoxEx2.ItemHeight = 17;
            this.comboBoxEx2.Location = new System.Drawing.Point(151, 3);
            this.comboBoxEx2.MoRongKhiForcus = false;
            this.comboBoxEx2.Name = "comboBoxEx2";
            this.comboBoxEx2.Size = new System.Drawing.Size(361, 23);
            this.comboBoxEx2.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            this.comboBoxEx2.TabIndex = 15;
            this.comboBoxEx2.WatermarkText = "Tên thủ tục";
            // 
            // labelX28
            // 
            this.labelX28.BackColor = System.Drawing.Color.White;
            // 
            // 
            // 
            this.labelX28.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.labelX28.ForeColor = System.Drawing.Color.Black;
            this.labelX28.Location = new System.Drawing.Point(6, 4);
            this.labelX28.Name = "labelX28";
            this.labelX28.Size = new System.Drawing.Size(58, 20);
            this.labelX28.TabIndex = 14;
            this.labelX28.Text = "Thủ tục:";
            this.labelX28.TextAlignment = System.Drawing.StringAlignment.Far;
            // 
            // textBoxX13
            // 
            this.textBoxX13.BackColor = System.Drawing.Color.White;
            // 
            // 
            // 
            this.textBoxX13.Border.Class = "TextBoxBorder";
            this.textBoxX13.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.textBoxX13.FocusHighlightEnabled = true;
            this.textBoxX13.ForeColor = System.Drawing.Color.Black;
            this.highlighter1.SetHighlightOnFocus(this.textBoxX13, true);
            this.textBoxX13.Location = new System.Drawing.Point(70, 3);
            this.textBoxX13.Name = "textBoxX13";
            this.textBoxX13.Size = new System.Drawing.Size(76, 23);
            this.textBoxX13.TabIndex = 13;
            this.textBoxX13.WatermarkText = "Mã thủ tục";
            // 
            // panelEx34
            // 
            this.panelEx34.CanvasColor = System.Drawing.SystemColors.Control;
            this.panelEx34.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            this.panelEx34.Controls.Add(this.labelX27);
            this.panelEx34.Dock = System.Windows.Forms.DockStyle.Top;
            this.panelEx34.Location = new System.Drawing.Point(0, 0);
            this.panelEx34.Name = "panelEx34";
            this.panelEx34.Size = new System.Drawing.Size(1064, 26);
            this.panelEx34.Style.Alignment = System.Drawing.StringAlignment.Center;
            this.panelEx34.Style.BackColor1.Color = System.Drawing.Color.Green;
            this.panelEx34.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
            this.panelEx34.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
            this.panelEx34.Style.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.panelEx34.Style.ForeColor.Color = System.Drawing.Color.White;
            this.panelEx34.Style.GradientAngle = 90;
            this.panelEx34.TabIndex = 10;
            // 
            // labelX27
            // 
            this.labelX27.BackColor = System.Drawing.Color.Transparent;
            // 
            // 
            // 
            this.labelX27.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.labelX27.Dock = System.Windows.Forms.DockStyle.Fill;
            this.labelX27.Font = new System.Drawing.Font("Segoe UI", 14F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.labelX27.ForeColor = System.Drawing.Color.Black;
            this.labelX27.Location = new System.Drawing.Point(0, 0);
            this.labelX27.Name = "labelX27";
            this.labelX27.PaddingLeft = 20;
            this.labelX27.SingleLineColor = System.Drawing.Color.White;
            this.labelX27.Size = new System.Drawing.Size(1064, 26);
            this.labelX27.TabIndex = 4;
            this.labelX27.Text = "<font color=\"white\">ĐỊNH NGHĨA QUY TRÌNH THỦ TỤC</font>";
            // 
            // superTabItem6
            // 
            this.superTabItem6.AttachedControl = this.superTabControlPanel6;
            this.superTabItem6.GlobalItem = false;
            this.superTabItem6.Name = "superTabItem6";
            this.superTabItem6.Text = "Định nghĩa quy trình";
            // 
            // superTabControlPanel4
            // 
            this.superTabControlPanel4.Controls.Add(this.panelEx29);
            this.superTabControlPanel4.Controls.Add(this.panelEx32);
            this.superTabControlPanel4.Dock = System.Windows.Forms.DockStyle.Fill;
            this.superTabControlPanel4.Location = new System.Drawing.Point(170, 0);
            this.superTabControlPanel4.Name = "superTabControlPanel4";
            this.superTabControlPanel4.Size = new System.Drawing.Size(1064, 462);
            this.superTabControlPanel4.TabIndex = 4;
            this.superTabControlPanel4.TabItem = this.superTabItem4;
            // 
            // panelEx29
            // 
            this.panelEx29.CanvasColor = System.Drawing.SystemColors.Control;
            this.panelEx29.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            this.panelEx29.Controls.Add(this.panelEx23);
            this.panelEx29.Dock = System.Windows.Forms.DockStyle.Fill;
            this.panelEx29.Location = new System.Drawing.Point(0, 26);
            this.panelEx29.Name = "panelEx29";
            this.panelEx29.Padding = new System.Windows.Forms.Padding(5);
            this.panelEx29.Size = new System.Drawing.Size(1064, 436);
            this.panelEx29.Style.Alignment = System.Drawing.StringAlignment.Center;
            this.panelEx29.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
            this.panelEx29.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemText;
            this.panelEx29.Style.GradientAngle = 90;
            this.panelEx29.TabIndex = 35;
            // 
            // panelEx23
            // 
            this.panelEx23.CanvasColor = System.Drawing.SystemColors.Control;
            this.panelEx23.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            this.panelEx23.Controls.Add(this.groupPanel15);
            this.panelEx23.Controls.Add(this.panelEx36);
            this.panelEx23.Dock = System.Windows.Forms.DockStyle.Fill;
            this.panelEx23.Location = new System.Drawing.Point(5, 5);
            this.panelEx23.Name = "panelEx23";
            this.panelEx23.Padding = new System.Windows.Forms.Padding(5);
            this.panelEx23.Size = new System.Drawing.Size(1054, 426);
            this.panelEx23.Style.Alignment = System.Drawing.StringAlignment.Center;
            this.panelEx23.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
            this.panelEx23.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
            this.panelEx23.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
            this.panelEx23.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
            this.panelEx23.Style.GradientAngle = 90;
            this.panelEx23.TabIndex = 34;
            // 
            // groupPanel15
            // 
            this.groupPanel15.BackColor = System.Drawing.Color.White;
            this.groupPanel15.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Metro;
            this.groupPanel15.Controls.Add(this.panelEx33);
            this.groupPanel15.Dock = System.Windows.Forms.DockStyle.Fill;
            this.groupPanel15.DrawTitleBox = false;
            this.groupPanel15.Location = new System.Drawing.Point(5, 5);
            this.groupPanel15.Name = "groupPanel15";
            this.groupPanel15.Padding = new System.Windows.Forms.Padding(2);
            this.groupPanel15.Size = new System.Drawing.Size(1044, 376);
            // 
            // 
            // 
            this.groupPanel15.Style.BackColor = System.Drawing.Color.White;
            this.groupPanel15.Style.BackColor2 = System.Drawing.Color.White;
            this.groupPanel15.Style.BackColorGradientAngle = 90;
            this.groupPanel15.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.groupPanel15.Style.BorderBottomWidth = 1;
            this.groupPanel15.Style.BorderColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
            this.groupPanel15.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.groupPanel15.Style.BorderLeftWidth = 1;
            this.groupPanel15.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.groupPanel15.Style.BorderRightWidth = 1;
            this.groupPanel15.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.groupPanel15.Style.BorderTopWidth = 1;
            this.groupPanel15.Style.CornerDiameter = 4;
            this.groupPanel15.Style.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.groupPanel15.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
            this.groupPanel15.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near;
            // 
            // 
            // 
            this.groupPanel15.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            // 
            // 
            // 
            this.groupPanel15.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.groupPanel15.TabIndex = 33;
            this.groupPanel15.Text = "Danh mục chuẩn bảng kê";
            // 
            // panelEx33
            // 
            this.panelEx33.CanvasColor = System.Drawing.SystemColors.Control;
            this.panelEx33.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            this.panelEx33.Controls.Add(this.dataGridViewX13);
            this.panelEx33.Dock = System.Windows.Forms.DockStyle.Fill;
            this.panelEx33.Location = new System.Drawing.Point(2, 2);
            this.panelEx33.Name = "panelEx33";
            this.panelEx33.Size = new System.Drawing.Size(1038, 352);
            this.panelEx33.Style.Alignment = System.Drawing.StringAlignment.Center;
            this.panelEx33.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
            this.panelEx33.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemText;
            this.panelEx33.Style.GradientAngle = 90;
            this.panelEx33.TabIndex = 33;
            // 
            // dataGridViewX13
            // 
            this.dataGridViewX13.BackgroundColor = System.Drawing.Color.White;
            dataGridViewCellStyle187.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
            dataGridViewCellStyle187.BackColor = System.Drawing.SystemColors.Control;
            dataGridViewCellStyle187.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            dataGridViewCellStyle187.ForeColor = System.Drawing.Color.Black;
            dataGridViewCellStyle187.SelectionBackColor = System.Drawing.SystemColors.Highlight;
            dataGridViewCellStyle187.SelectionForeColor = System.Drawing.Color.Black;
            dataGridViewCellStyle187.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
            this.dataGridViewX13.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle187;
            this.dataGridViewX13.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
            this.dataGridViewX13.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
            this.dataGridViewTextBoxColumn13,
            this.dataGridViewTextBoxColumn16,
            this.Column33});
            dataGridViewCellStyle188.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
            dataGridViewCellStyle188.BackColor = System.Drawing.Color.White;
            dataGridViewCellStyle188.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            dataGridViewCellStyle188.ForeColor = System.Drawing.Color.Black;
            dataGridViewCellStyle188.SelectionBackColor = System.Drawing.SystemColors.Highlight;
            dataGridViewCellStyle188.SelectionForeColor = System.Drawing.Color.Black;
            dataGridViewCellStyle188.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
            this.dataGridViewX13.DefaultCellStyle = dataGridViewCellStyle188;
            this.dataGridViewX13.Dock = System.Windows.Forms.DockStyle.Fill;
            this.dataGridViewX13.EnableHeadersVisualStyles = false;
            this.dataGridViewX13.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(170)))), ((int)(((byte)(170)))), ((int)(((byte)(170)))));
            this.dataGridViewX13.Location = new System.Drawing.Point(0, 0);
            this.dataGridViewX13.Name = "dataGridViewX13";
            dataGridViewCellStyle189.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
            dataGridViewCellStyle189.BackColor = System.Drawing.SystemColors.Control;
            dataGridViewCellStyle189.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            dataGridViewCellStyle189.ForeColor = System.Drawing.Color.Black;
            dataGridViewCellStyle189.SelectionBackColor = System.Drawing.SystemColors.Highlight;
            dataGridViewCellStyle189.SelectionForeColor = System.Drawing.Color.Black;
            dataGridViewCellStyle189.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
            this.dataGridViewX13.RowHeadersDefaultCellStyle = dataGridViewCellStyle189;
            this.dataGridViewX13.Size = new System.Drawing.Size(1038, 352);
            this.dataGridViewX13.TabIndex = 32;
            // 
            // dataGridViewTextBoxColumn13
            // 
            this.dataGridViewTextBoxColumn13.HeaderText = "Mã BK";
            this.dataGridViewTextBoxColumn13.Name = "dataGridViewTextBoxColumn13";
            // 
            // dataGridViewTextBoxColumn16
            // 
            this.dataGridViewTextBoxColumn16.HeaderText = "Tên bảng kê";
            this.dataGridViewTextBoxColumn16.Name = "dataGridViewTextBoxColumn16";
            this.dataGridViewTextBoxColumn16.Width = 200;
            // 
            // Column33
            // 
            this.Column33.HeaderText = "Ghi chú";
            this.Column33.Name = "Column33";
            // 
            // panelEx36
            // 
            this.panelEx36.CanvasColor = System.Drawing.SystemColors.Control;
            this.panelEx36.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            this.panelEx36.Controls.Add(this.buttonX28);
            this.panelEx36.Controls.Add(this.buttonX29);
            this.panelEx36.Controls.Add(this.buttonX30);
            this.panelEx36.Dock = System.Windows.Forms.DockStyle.Bottom;
            this.panelEx36.Location = new System.Drawing.Point(5, 381);
            this.panelEx36.Name = "panelEx36";
            this.panelEx36.Size = new System.Drawing.Size(1044, 40);
            this.panelEx36.Style.Alignment = System.Drawing.StringAlignment.Center;
            this.panelEx36.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
            this.panelEx36.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemText;
            this.panelEx36.Style.GradientAngle = 90;
            this.panelEx36.TabIndex = 34;
            // 
            // buttonX28
            // 
            this.buttonX28.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
            this.buttonX28.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
            this.buttonX28.Image = global::eBHXH.Prototype.Properties.Resources.RecycleBin;
            this.buttonX28.Location = new System.Drawing.Point(136, 6);
            this.buttonX28.Name = "buttonX28";
            this.buttonX28.Size = new System.Drawing.Size(88, 29);
            this.buttonX28.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            this.buttonX28.TabIndex = 22;
            this.buttonX28.Text = "&Xóa";
            // 
            // buttonX29
            // 
            this.buttonX29.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
            this.buttonX29.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
            this.buttonX29.Image = global::eBHXH.Prototype.Properties.Resources.frmMain_16_buttonFileSaveAs_ImageSmall;
            this.buttonX29.Location = new System.Drawing.Point(4, 6);
            this.buttonX29.Name = "buttonX29";
            this.buttonX29.Size = new System.Drawing.Size(120, 29);
            this.buttonX29.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            this.buttonX29.TabIndex = 20;
            this.buttonX29.Text = "&Ghi";
            // 
            // buttonX30
            // 
            this.buttonX30.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
            this.buttonX30.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.buttonX30.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
            this.buttonX30.Image = global::eBHXH.Prototype.Properties.Resources.cancel;
            this.buttonX30.Location = new System.Drawing.Point(953, 6);
            this.buttonX30.Name = "buttonX30";
            this.buttonX30.Size = new System.Drawing.Size(88, 29);
            this.buttonX30.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            this.buttonX30.TabIndex = 21;
            this.buttonX30.Text = "&Thoát";
            // 
            // panelEx32
            // 
            this.panelEx32.CanvasColor = System.Drawing.SystemColors.Control;
            this.panelEx32.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            this.panelEx32.Controls.Add(this.labelX26);
            this.panelEx32.Dock = System.Windows.Forms.DockStyle.Top;
            this.panelEx32.Location = new System.Drawing.Point(0, 0);
            this.panelEx32.Name = "panelEx32";
            this.panelEx32.Size = new System.Drawing.Size(1064, 26);
            this.panelEx32.Style.Alignment = System.Drawing.StringAlignment.Center;
            this.panelEx32.Style.BackColor1.Color = System.Drawing.Color.Green;
            this.panelEx32.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
            this.panelEx32.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
            this.panelEx32.Style.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.panelEx32.Style.ForeColor.Color = System.Drawing.Color.White;
            this.panelEx32.Style.GradientAngle = 90;
            this.panelEx32.TabIndex = 9;
            // 
            // labelX26
            // 
            this.labelX26.BackColor = System.Drawing.Color.Transparent;
            // 
            // 
            // 
            this.labelX26.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.labelX26.Dock = System.Windows.Forms.DockStyle.Fill;
            this.labelX26.Font = new System.Drawing.Font("Segoe UI", 14F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.labelX26.ForeColor = System.Drawing.Color.Black;
            this.labelX26.Location = new System.Drawing.Point(0, 0);
            this.labelX26.Name = "labelX26";
            this.labelX26.PaddingLeft = 20;
            this.labelX26.SingleLineColor = System.Drawing.Color.White;
            this.labelX26.Size = new System.Drawing.Size(1064, 26);
            this.labelX26.TabIndex = 4;
            this.labelX26.Text = "<font color=\"white\">DANH MỤC CHUẨN BẢNG KÊ</font>";
            // 
            // superTabItem4
            // 
            this.superTabItem4.AttachedControl = this.superTabControlPanel4;
            this.superTabItem4.GlobalItem = false;
            this.superTabItem4.Name = "superTabItem4";
            this.superTabItem4.Text = "Danh mục bảng kê";
            // 
            // superTabControlPanel3
            // 
            this.superTabControlPanel3.Controls.Add(this.panelEx25);
            this.superTabControlPanel3.Controls.Add(this.panelEx24);
            this.superTabControlPanel3.Dock = System.Windows.Forms.DockStyle.Fill;
            this.superTabControlPanel3.Location = new System.Drawing.Point(170, 0);
            this.superTabControlPanel3.Name = "superTabControlPanel3";
            this.superTabControlPanel3.Size = new System.Drawing.Size(1064, 462);
            this.superTabControlPanel3.TabIndex = 3;
            this.superTabControlPanel3.TabItem = this.superTabItem3;
            // 
            // panelEx25
            // 
            this.panelEx25.CanvasColor = System.Drawing.SystemColors.Control;
            this.panelEx25.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            this.panelEx25.Controls.Add(this.panelEx27);
            this.panelEx25.Dock = System.Windows.Forms.DockStyle.Fill;
            this.panelEx25.Location = new System.Drawing.Point(0, 26);
            this.panelEx25.Name = "panelEx25";
            this.panelEx25.Padding = new System.Windows.Forms.Padding(5);
            this.panelEx25.Size = new System.Drawing.Size(1064, 436);
            this.panelEx25.Style.Alignment = System.Drawing.StringAlignment.Center;
            this.panelEx25.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
            this.panelEx25.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemText;
            this.panelEx25.Style.GradientAngle = 90;
            this.panelEx25.TabIndex = 33;
            // 
            // panelEx27
            // 
            this.panelEx27.CanvasColor = System.Drawing.SystemColors.Control;
            this.panelEx27.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            this.panelEx27.Controls.Add(this.groupPanel14);
            this.panelEx27.Controls.Add(this.expandableSplitter4);
            this.panelEx27.Controls.Add(this.groupPanel13);
            this.panelEx27.Controls.Add(this.panelEx31);
            this.panelEx27.Dock = System.Windows.Forms.DockStyle.Fill;
            this.panelEx27.Location = new System.Drawing.Point(5, 5);
            this.panelEx27.Name = "panelEx27";
            this.panelEx27.Padding = new System.Windows.Forms.Padding(5);
            this.panelEx27.Size = new System.Drawing.Size(1054, 426);
            this.panelEx27.Style.Alignment = System.Drawing.StringAlignment.Center;
            this.panelEx27.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
            this.panelEx27.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
            this.panelEx27.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
            this.panelEx27.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
            this.panelEx27.Style.GradientAngle = 90;
            this.panelEx27.TabIndex = 33;
            // 
            // groupPanel14
            // 
            this.groupPanel14.BackColor = System.Drawing.Color.White;
            this.groupPanel14.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Metro;
            this.groupPanel14.Controls.Add(this.dataGridViewX11);
            this.groupPanel14.Dock = System.Windows.Forms.DockStyle.Fill;
            this.groupPanel14.DrawTitleBox = false;
            this.groupPanel14.Location = new System.Drawing.Point(381, 5);
            this.groupPanel14.Name = "groupPanel14";
            this.groupPanel14.Padding = new System.Windows.Forms.Padding(2, 0, 2, 2);
            this.groupPanel14.Size = new System.Drawing.Size(668, 376);
            // 
            // 
            // 
            this.groupPanel14.Style.BackColor = System.Drawing.Color.White;
            this.groupPanel14.Style.BackColor2 = System.Drawing.Color.White;
            this.groupPanel14.Style.BackColorGradientAngle = 90;
            this.groupPanel14.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.groupPanel14.Style.BorderBottomWidth = 1;
            this.groupPanel14.Style.BorderColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
            this.groupPanel14.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.groupPanel14.Style.BorderLeftWidth = 1;
            this.groupPanel14.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.groupPanel14.Style.BorderRightWidth = 1;
            this.groupPanel14.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.groupPanel14.Style.BorderTopWidth = 1;
            this.groupPanel14.Style.CornerDiameter = 4;
            this.groupPanel14.Style.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.groupPanel14.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
            this.groupPanel14.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near;
            // 
            // 
            // 
            this.groupPanel14.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            // 
            // 
            // 
            this.groupPanel14.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.groupPanel14.TabIndex = 38;
            this.groupPanel14.Text = "Bảng kê chứng từ thủ tục: <b>Chế độ BHXH</b>";
            // 
            // dataGridViewX11
            // 
            this.dataGridViewX11.BackgroundColor = System.Drawing.Color.White;
            dataGridViewCellStyle190.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
            dataGridViewCellStyle190.BackColor = System.Drawing.SystemColors.Control;
            dataGridViewCellStyle190.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            dataGridViewCellStyle190.ForeColor = System.Drawing.Color.Black;
            dataGridViewCellStyle190.SelectionBackColor = System.Drawing.SystemColors.Highlight;
            dataGridViewCellStyle190.SelectionForeColor = System.Drawing.Color.Black;
            dataGridViewCellStyle190.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
            this.dataGridViewX11.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle190;
            this.dataGridViewX11.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
            this.dataGridViewX11.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
            this.Column28,
            this.Column29,
            this.Column30,
            this.Column31,
            this.Column32});
            dataGridViewCellStyle191.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
            dataGridViewCellStyle191.BackColor = System.Drawing.Color.White;
            dataGridViewCellStyle191.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            dataGridViewCellStyle191.ForeColor = System.Drawing.Color.Black;
            dataGridViewCellStyle191.SelectionBackColor = System.Drawing.SystemColors.Highlight;
            dataGridViewCellStyle191.SelectionForeColor = System.Drawing.Color.Black;
            dataGridViewCellStyle191.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
            this.dataGridViewX11.DefaultCellStyle = dataGridViewCellStyle191;
            this.dataGridViewX11.Dock = System.Windows.Forms.DockStyle.Fill;
            this.dataGridViewX11.EnableHeadersVisualStyles = false;
            this.dataGridViewX11.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(170)))), ((int)(((byte)(170)))), ((int)(((byte)(170)))));
            this.dataGridViewX11.Location = new System.Drawing.Point(2, 0);
            this.dataGridViewX11.Name = "dataGridViewX11";
            dataGridViewCellStyle192.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
            dataGridViewCellStyle192.BackColor = System.Drawing.SystemColors.Control;
            dataGridViewCellStyle192.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            dataGridViewCellStyle192.ForeColor = System.Drawing.Color.Black;
            dataGridViewCellStyle192.SelectionBackColor = System.Drawing.SystemColors.Highlight;
            dataGridViewCellStyle192.SelectionForeColor = System.Drawing.Color.Black;
            dataGridViewCellStyle192.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
            this.dataGridViewX11.RowHeadersDefaultCellStyle = dataGridViewCellStyle192;
            this.dataGridViewX11.Size = new System.Drawing.Size(662, 356);
            this.dataGridViewX11.TabIndex = 32;
            // 
            // Column28
            // 
            this.Column28.HeaderText = "Mã BK";
            this.Column28.Name = "Column28";
            // 
            // Column29
            // 
            this.Column29.HeaderText = "Tên bảng kê";
            this.Column29.Name = "Column29";
            this.Column29.Width = 200;
            // 
            // Column30
            // 
            this.Column30.HeaderText = "Số lượng";
            this.Column30.Name = "Column30";
            // 
            // Column31
            // 
            this.Column31.HeaderText = "Bắt buộc";
            this.Column31.Name = "Column31";
            this.Column31.Resizable = System.Windows.Forms.DataGridViewTriState.True;
            this.Column31.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
            // 
            // Column32
            // 
            this.Column32.HeaderText = "Y/C tới từng cá nhân";
            this.Column32.Name = "Column32";
            this.Column32.Resizable = System.Windows.Forms.DataGridViewTriState.True;
            this.Column32.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
            // 
            // expandableSplitter4
            // 
            this.expandableSplitter4.BackColor = System.Drawing.Color.White;
            this.expandableSplitter4.BackColor2 = System.Drawing.Color.Empty;
            this.expandableSplitter4.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.None;
            this.expandableSplitter4.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.None;
            this.expandableSplitter4.ExpandFillColor = System.Drawing.Color.FromArgb(((int)(((byte)(254)))), ((int)(((byte)(142)))), ((int)(((byte)(75)))));
            this.expandableSplitter4.ExpandFillColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemPressedBackground;
            this.expandableSplitter4.ExpandLineColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(128)))));
            this.expandableSplitter4.ExpandLineColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemPressedBorder;
            this.expandableSplitter4.ForeColor = System.Drawing.Color.Black;
            this.expandableSplitter4.GripDarkColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(128)))));
            this.expandableSplitter4.GripDarkColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemPressedBorder;
            this.expandableSplitter4.GripLightColor = System.Drawing.Color.FromArgb(((int)(((byte)(246)))), ((int)(((byte)(246)))), ((int)(((byte)(246)))));
            this.expandableSplitter4.GripLightColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.MenuBackground;
            this.expandableSplitter4.HotBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(213)))), ((int)(((byte)(140)))));
            this.expandableSplitter4.HotBackColor2 = System.Drawing.Color.Empty;
            this.expandableSplitter4.HotBackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.None;
            this.expandableSplitter4.HotBackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemCheckedBackground;
            this.expandableSplitter4.HotExpandFillColor = System.Drawing.Color.FromArgb(((int)(((byte)(254)))), ((int)(((byte)(142)))), ((int)(((byte)(75)))));
            this.expandableSplitter4.HotExpandFillColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemPressedBackground;
            this.expandableSplitter4.HotExpandLineColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(128)))));
            this.expandableSplitter4.HotExpandLineColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemPressedBorder;
            this.expandableSplitter4.HotGripDarkColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(128)))));
            this.expandableSplitter4.HotGripDarkColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemPressedBorder;
            this.expandableSplitter4.HotGripLightColor = System.Drawing.Color.FromArgb(((int)(((byte)(246)))), ((int)(((byte)(246)))), ((int)(((byte)(246)))));
            this.expandableSplitter4.HotGripLightColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.MenuBackground;
            this.expandableSplitter4.Location = new System.Drawing.Point(375, 5);
            this.expandableSplitter4.Name = "expandableSplitter4";
            this.expandableSplitter4.Size = new System.Drawing.Size(6, 376);
            this.expandableSplitter4.Style = DevComponents.DotNetBar.eSplitterStyle.Mozilla;
            this.expandableSplitter4.TabIndex = 38;
            this.expandableSplitter4.TabStop = false;
            // 
            // groupPanel13
            // 
            this.groupPanel13.BackColor = System.Drawing.Color.White;
            this.groupPanel13.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Metro;
            this.groupPanel13.Controls.Add(this.dataGridViewX12);
            this.groupPanel13.Dock = System.Windows.Forms.DockStyle.Left;
            this.groupPanel13.DrawTitleBox = false;
            this.groupPanel13.Location = new System.Drawing.Point(5, 5);
            this.groupPanel13.Name = "groupPanel13";
            this.groupPanel13.Padding = new System.Windows.Forms.Padding(2, 0, 2, 2);
            this.groupPanel13.Size = new System.Drawing.Size(370, 376);
            // 
            // 
            // 
            this.groupPanel13.Style.BackColor = System.Drawing.Color.White;
            this.groupPanel13.Style.BackColor2 = System.Drawing.Color.White;
            this.groupPanel13.Style.BackColorGradientAngle = 90;
            this.groupPanel13.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.groupPanel13.Style.BorderBottomWidth = 1;
            this.groupPanel13.Style.BorderColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
            this.groupPanel13.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.groupPanel13.Style.BorderLeftWidth = 1;
            this.groupPanel13.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.groupPanel13.Style.BorderRightWidth = 1;
            this.groupPanel13.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.groupPanel13.Style.BorderTopWidth = 1;
            this.groupPanel13.Style.CornerDiameter = 4;
            this.groupPanel13.Style.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.groupPanel13.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
            this.groupPanel13.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near;
            // 
            // 
            // 
            this.groupPanel13.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            // 
            // 
            // 
            this.groupPanel13.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.groupPanel13.TabIndex = 37;
            this.groupPanel13.Text = "Danh sách thủ tục nghiệp vụ";
            // 
            // dataGridViewX12
            // 
            this.dataGridViewX12.BackgroundColor = System.Drawing.Color.White;
            dataGridViewCellStyle193.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
            dataGridViewCellStyle193.BackColor = System.Drawing.SystemColors.Control;
            dataGridViewCellStyle193.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            dataGridViewCellStyle193.ForeColor = System.Drawing.Color.Black;
            dataGridViewCellStyle193.SelectionBackColor = System.Drawing.SystemColors.Highlight;
            dataGridViewCellStyle193.SelectionForeColor = System.Drawing.Color.Black;
            dataGridViewCellStyle193.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
            this.dataGridViewX12.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle193;
            this.dataGridViewX12.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
            this.dataGridViewX12.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
            this.Column35,
            this.dataGridViewTextBoxColumn14});
            dataGridViewCellStyle194.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
            dataGridViewCellStyle194.BackColor = System.Drawing.Color.White;
            dataGridViewCellStyle194.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            dataGridViewCellStyle194.ForeColor = System.Drawing.Color.Black;
            dataGridViewCellStyle194.SelectionBackColor = System.Drawing.SystemColors.Highlight;
            dataGridViewCellStyle194.SelectionForeColor = System.Drawing.Color.Black;
            dataGridViewCellStyle194.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
            this.dataGridViewX12.DefaultCellStyle = dataGridViewCellStyle194;
            this.dataGridViewX12.Dock = System.Windows.Forms.DockStyle.Fill;
            this.dataGridViewX12.EnableHeadersVisualStyles = false;
            this.dataGridViewX12.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(170)))), ((int)(((byte)(170)))), ((int)(((byte)(170)))));
            this.dataGridViewX12.Location = new System.Drawing.Point(2, 0);
            this.dataGridViewX12.Name = "dataGridViewX12";
            dataGridViewCellStyle195.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
            dataGridViewCellStyle195.BackColor = System.Drawing.SystemColors.Control;
            dataGridViewCellStyle195.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            dataGridViewCellStyle195.ForeColor = System.Drawing.Color.Black;
            dataGridViewCellStyle195.SelectionBackColor = System.Drawing.SystemColors.Highlight;
            dataGridViewCellStyle195.SelectionForeColor = System.Drawing.Color.Black;
            dataGridViewCellStyle195.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
            this.dataGridViewX12.RowHeadersDefaultCellStyle = dataGridViewCellStyle195;
            this.dataGridViewX12.Size = new System.Drawing.Size(364, 354);
            this.dataGridViewX12.TabIndex = 24;
            // 
            // Column35
            // 
            this.Column35.HeaderText = "Mã thủ tục";
            this.Column35.Name = "Column35";
            // 
            // dataGridViewTextBoxColumn14
            // 
            this.dataGridViewTextBoxColumn14.HeaderText = "Tên thủ tục nghiệp vụ";
            this.dataGridViewTextBoxColumn14.Name = "dataGridViewTextBoxColumn14";
            this.dataGridViewTextBoxColumn14.Width = 200;
            // 
            // panelEx31
            // 
            this.panelEx31.CanvasColor = System.Drawing.SystemColors.Control;
            this.panelEx31.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            this.panelEx31.Controls.Add(this.buttonX26);
            this.panelEx31.Controls.Add(this.buttonX23);
            this.panelEx31.Controls.Add(this.buttonX24);
            this.panelEx31.Controls.Add(this.buttonX25);
            this.panelEx31.Dock = System.Windows.Forms.DockStyle.Bottom;
            this.panelEx31.Location = new System.Drawing.Point(5, 381);
            this.panelEx31.Name = "panelEx31";
            this.panelEx31.Size = new System.Drawing.Size(1044, 40);
            this.panelEx31.Style.Alignment = System.Drawing.StringAlignment.Center;
            this.panelEx31.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
            this.panelEx31.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemText;
            this.panelEx31.Style.GradientAngle = 90;
            this.panelEx31.TabIndex = 26;
            // 
            // buttonX26
            // 
            this.buttonX26.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
            this.buttonX26.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
            this.buttonX26.Image = global::eBHXH.Prototype.Properties.Resources.BHXHVN24x24;
            this.buttonX26.ImageFixedSize = new System.Drawing.Size(20, 20);
            this.buttonX26.Location = new System.Drawing.Point(134, 6);
            this.buttonX26.Name = "buttonX26";
            this.buttonX26.Size = new System.Drawing.Size(205, 29);
            this.buttonX26.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            this.buttonX26.TabIndex = 24;
            this.buttonX26.Text = "Định nghĩa quy trình thủ tục";
            // 
            // buttonX23
            // 
            this.buttonX23.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
            this.buttonX23.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
            this.buttonX23.Image = global::eBHXH.Prototype.Properties.Resources.RecycleBin;
            this.buttonX23.Location = new System.Drawing.Point(347, 6);
            this.buttonX23.Name = "buttonX23";
            this.buttonX23.Size = new System.Drawing.Size(88, 29);
            this.buttonX23.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            this.buttonX23.TabIndex = 22;
            this.buttonX23.Text = "&Xóa";
            // 
            // buttonX24
            // 
            this.buttonX24.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
            this.buttonX24.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
            this.buttonX24.Image = global::eBHXH.Prototype.Properties.Resources.frmMain_16_buttonFileSaveAs_ImageSmall;
            this.buttonX24.Location = new System.Drawing.Point(2, 6);
            this.buttonX24.Name = "buttonX24";
            this.buttonX24.Size = new System.Drawing.Size(120, 29);
            this.buttonX24.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            this.buttonX24.TabIndex = 20;
            this.buttonX24.Text = "&Ghi";
            // 
            // buttonX25
            // 
            this.buttonX25.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
            this.buttonX25.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.buttonX25.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
            this.buttonX25.Image = global::eBHXH.Prototype.Properties.Resources.cancel;
            this.buttonX25.Location = new System.Drawing.Point(953, 6);
            this.buttonX25.Name = "buttonX25";
            this.buttonX25.Size = new System.Drawing.Size(88, 29);
            this.buttonX25.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            this.buttonX25.TabIndex = 21;
            this.buttonX25.Text = "&Thoát";
            // 
            // panelEx24
            // 
            this.panelEx24.CanvasColor = System.Drawing.SystemColors.Control;
            this.panelEx24.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            this.panelEx24.Controls.Add(this.labelX23);
            this.panelEx24.Dock = System.Windows.Forms.DockStyle.Top;
            this.panelEx24.Location = new System.Drawing.Point(0, 0);
            this.panelEx24.Name = "panelEx24";
            this.panelEx24.Size = new System.Drawing.Size(1064, 26);
            this.panelEx24.Style.Alignment = System.Drawing.StringAlignment.Center;
            this.panelEx24.Style.BackColor1.Color = System.Drawing.Color.Green;
            this.panelEx24.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
            this.panelEx24.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
            this.panelEx24.Style.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.panelEx24.Style.ForeColor.Color = System.Drawing.Color.White;
            this.panelEx24.Style.GradientAngle = 90;
            this.panelEx24.TabIndex = 8;
            // 
            // labelX23
            // 
            this.labelX23.BackColor = System.Drawing.Color.Transparent;
            // 
            // 
            // 
            this.labelX23.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.labelX23.Dock = System.Windows.Forms.DockStyle.Fill;
            this.labelX23.Font = new System.Drawing.Font("Segoe UI", 14F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.labelX23.ForeColor = System.Drawing.Color.Black;
            this.labelX23.Location = new System.Drawing.Point(0, 0);
            this.labelX23.Name = "labelX23";
            this.labelX23.PaddingLeft = 20;
            this.labelX23.SingleLineColor = System.Drawing.Color.White;
            this.labelX23.Size = new System.Drawing.Size(1064, 26);
            this.labelX23.TabIndex = 4;
            this.labelX23.Text = "<font color=\"white\">QUẢN LÝ THỦ TỤC NGHIỆP VỤ</font>";
            // 
            // superTabItem3
            // 
            this.superTabItem3.AttachedControl = this.superTabControlPanel3;
            this.superTabItem3.GlobalItem = false;
            this.superTabItem3.Name = "superTabItem3";
            this.superTabItem3.Text = "Quản lý thủ tục";
            // 
            // superTabControlPanel2
            // 
            this.superTabControlPanel2.Controls.Add(this.panelEx15);
            this.superTabControlPanel2.Controls.Add(panelEx14);
            this.superTabControlPanel2.Dock = System.Windows.Forms.DockStyle.Fill;
            this.superTabControlPanel2.Location = new System.Drawing.Point(170, 0);
            this.superTabControlPanel2.Name = "superTabControlPanel2";
            this.superTabControlPanel2.Size = new System.Drawing.Size(1064, 462);
            this.superTabControlPanel2.TabIndex = 0;
            this.superTabControlPanel2.TabItem = this.superTabItem2;
            // 
            // panelEx15
            // 
            this.panelEx15.CanvasColor = System.Drawing.SystemColors.Control;
            this.panelEx15.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            this.panelEx15.Controls.Add(this.groupPanel10);
            this.panelEx15.Controls.Add(this.expandableSplitter2);
            this.panelEx15.Controls.Add(this.groupPanel8);
            this.panelEx15.Controls.Add(this.groupPanel9);
            this.panelEx15.Dock = System.Windows.Forms.DockStyle.Fill;
            this.panelEx15.Location = new System.Drawing.Point(0, 26);
            this.panelEx15.Name = "panelEx15";
            this.panelEx15.Padding = new System.Windows.Forms.Padding(5);
            this.panelEx15.Size = new System.Drawing.Size(1064, 436);
            this.panelEx15.Style.Alignment = System.Drawing.StringAlignment.Center;
            this.panelEx15.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
            this.panelEx15.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemText;
            this.panelEx15.Style.GradientAngle = 90;
            this.panelEx15.TabIndex = 27;
            // 
            // groupPanel10
            // 
            this.groupPanel10.BackColor = System.Drawing.Color.White;
            this.groupPanel10.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Metro;
            this.groupPanel10.Controls.Add(this.panelEx20);
            this.groupPanel10.Controls.Add(this.panelEx17);
            this.groupPanel10.Controls.Add(this.panelEx18);
            this.groupPanel10.Controls.Add(this.panelEx16);
            this.groupPanel10.Dock = System.Windows.Forms.DockStyle.Fill;
            this.groupPanel10.DrawTitleBox = false;
            this.groupPanel10.Location = new System.Drawing.Point(309, 58);
            this.groupPanel10.Name = "groupPanel10";
            this.groupPanel10.Padding = new System.Windows.Forms.Padding(2);
            this.groupPanel10.Size = new System.Drawing.Size(750, 373);
            // 
            // 
            // 
            this.groupPanel10.Style.BackColor = System.Drawing.Color.White;
            this.groupPanel10.Style.BackColor2 = System.Drawing.Color.White;
            this.groupPanel10.Style.BackColorGradientAngle = 90;
            this.groupPanel10.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.groupPanel10.Style.BorderBottomWidth = 1;
            this.groupPanel10.Style.BorderColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
            this.groupPanel10.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.groupPanel10.Style.BorderLeftWidth = 1;
            this.groupPanel10.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.groupPanel10.Style.BorderRightWidth = 1;
            this.groupPanel10.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.groupPanel10.Style.BorderTopWidth = 1;
            this.groupPanel10.Style.CornerDiameter = 4;
            this.groupPanel10.Style.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.groupPanel10.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
            this.groupPanel10.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near;
            // 
            // 
            // 
            this.groupPanel10.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            // 
            // 
            // 
            this.groupPanel10.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.groupPanel10.TabIndex = 30;
            this.groupPanel10.Text = "Đăng ký nhân viên";
            // 
            // panelEx20
            // 
            this.panelEx20.CanvasColor = System.Drawing.SystemColors.Control;
            this.panelEx20.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            this.panelEx20.Controls.Add(this.dataGridViewX8);
            this.panelEx20.Controls.Add(this.labelX14);
            this.panelEx20.Dock = System.Windows.Forms.DockStyle.Fill;
            this.panelEx20.Location = new System.Drawing.Point(598, 2);
            this.panelEx20.Name = "panelEx20";
            this.panelEx20.Size = new System.Drawing.Size(148, 309);
            this.panelEx20.Style.Alignment = System.Drawing.StringAlignment.Center;
            this.panelEx20.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
            this.panelEx20.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemText;
            this.panelEx20.Style.GradientAngle = 90;
            this.panelEx20.TabIndex = 32;
            // 
            // dataGridViewX8
            // 
            this.dataGridViewX8.BackgroundColor = System.Drawing.Color.White;
            dataGridViewCellStyle196.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
            dataGridViewCellStyle196.BackColor = System.Drawing.SystemColors.Control;
            dataGridViewCellStyle196.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            dataGridViewCellStyle196.ForeColor = System.Drawing.Color.Black;
            dataGridViewCellStyle196.SelectionBackColor = System.Drawing.SystemColors.Highlight;
            dataGridViewCellStyle196.SelectionForeColor = System.Drawing.Color.Black;
            dataGridViewCellStyle196.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
            this.dataGridViewX8.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle196;
            this.dataGridViewX8.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
            this.dataGridViewX8.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
            this.dataGridViewTextBoxColumn11,
            this.dataGridViewTextBoxColumn12});
            dataGridViewCellStyle197.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
            dataGridViewCellStyle197.BackColor = System.Drawing.Color.White;
            dataGridViewCellStyle197.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            dataGridViewCellStyle197.ForeColor = System.Drawing.Color.Black;
            dataGridViewCellStyle197.SelectionBackColor = System.Drawing.SystemColors.Highlight;
            dataGridViewCellStyle197.SelectionForeColor = System.Drawing.Color.Black;
            dataGridViewCellStyle197.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
            this.dataGridViewX8.DefaultCellStyle = dataGridViewCellStyle197;
            this.dataGridViewX8.Dock = System.Windows.Forms.DockStyle.Fill;
            this.dataGridViewX8.EnableHeadersVisualStyles = false;
            this.dataGridViewX8.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(170)))), ((int)(((byte)(170)))), ((int)(((byte)(170)))));
            this.dataGridViewX8.Location = new System.Drawing.Point(0, 23);
            this.dataGridViewX8.Name = "dataGridViewX8";
            dataGridViewCellStyle198.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
            dataGridViewCellStyle198.BackColor = System.Drawing.SystemColors.Control;
            dataGridViewCellStyle198.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            dataGridViewCellStyle198.ForeColor = System.Drawing.Color.Black;
            dataGridViewCellStyle198.SelectionBackColor = System.Drawing.SystemColors.Highlight;
            dataGridViewCellStyle198.SelectionForeColor = System.Drawing.Color.Black;
            dataGridViewCellStyle198.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
            this.dataGridViewX8.RowHeadersDefaultCellStyle = dataGridViewCellStyle198;
            this.dataGridViewX8.Size = new System.Drawing.Size(148, 286);
            this.dataGridViewX8.TabIndex = 32;
            // 
            // dataGridViewTextBoxColumn11
            // 
            this.dataGridViewTextBoxColumn11.HeaderText = "Tài khoản";
            this.dataGridViewTextBoxColumn11.Name = "dataGridViewTextBoxColumn11";
            this.dataGridViewTextBoxColumn11.Width = 129;
            // 
            // dataGridViewTextBoxColumn12
            // 
            this.dataGridViewTextBoxColumn12.HeaderText = "Họ và tên";
            this.dataGridViewTextBoxColumn12.Name = "dataGridViewTextBoxColumn12";
            this.dataGridViewTextBoxColumn12.Width = 150;
            // 
            // labelX14
            // 
            // 
            // 
            // 
            this.labelX14.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.labelX14.Dock = System.Windows.Forms.DockStyle.Top;
            this.labelX14.ForeColor = System.Drawing.Color.Black;
            this.labelX14.Location = new System.Drawing.Point(0, 0);
            this.labelX14.Name = "labelX14";
            this.labelX14.Size = new System.Drawing.Size(148, 23);
            this.labelX14.TabIndex = 26;
            this.labelX14.Text = "Danh sách người dùng hệ thống:";
            // 
            // panelEx17
            // 
            this.panelEx17.CanvasColor = System.Drawing.SystemColors.Control;
            this.panelEx17.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            this.panelEx17.Controls.Add(this.buttonX20);
            this.panelEx17.Controls.Add(this.buttonX21);
            this.panelEx17.Controls.Add(this.buttonX19);
            this.panelEx17.Controls.Add(this.buttonX15);
            this.panelEx17.Dock = System.Windows.Forms.DockStyle.Left;
            this.panelEx17.Location = new System.Drawing.Point(505, 2);
            this.panelEx17.Name = "panelEx17";
            this.panelEx17.Size = new System.Drawing.Size(93, 309);
            this.panelEx17.Style.Alignment = System.Drawing.StringAlignment.Center;
            this.panelEx17.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
            this.panelEx17.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemText;
            this.panelEx17.Style.GradientAngle = 90;
            this.panelEx17.TabIndex = 31;
            // 
            // buttonX20
            // 
            this.buttonX20.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
            this.buttonX20.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
            this.buttonX20.Location = new System.Drawing.Point(9, 193);
            this.buttonX20.Name = "buttonX20";
            this.buttonX20.Size = new System.Drawing.Size(75, 23);
            this.buttonX20.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            this.buttonX20.TabIndex = 3;
            this.buttonX20.Text = ">>>>";
            // 
            // buttonX21
            // 
            this.buttonX21.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
            this.buttonX21.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
            this.buttonX21.Location = new System.Drawing.Point(9, 166);
            this.buttonX21.Name = "buttonX21";
            this.buttonX21.Size = new System.Drawing.Size(75, 23);
            this.buttonX21.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            this.buttonX21.TabIndex = 2;
            this.buttonX21.Text = ">>";
            // 
            // buttonX19
            // 
            this.buttonX19.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
            this.buttonX19.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
            this.buttonX19.Location = new System.Drawing.Point(9, 122);
            this.buttonX19.Name = "buttonX19";
            this.buttonX19.Size = new System.Drawing.Size(75, 23);
            this.buttonX19.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            this.buttonX19.TabIndex = 1;
            this.buttonX19.Text = "<<<<";
            // 
            // buttonX15
            // 
            this.buttonX15.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
            this.buttonX15.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
            this.buttonX15.Location = new System.Drawing.Point(9, 96);
            this.buttonX15.Name = "buttonX15";
            this.buttonX15.Size = new System.Drawing.Size(75, 23);
            this.buttonX15.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            this.buttonX15.TabIndex = 0;
            this.buttonX15.Text = "<<";
            // 
            // panelEx18
            // 
            this.panelEx18.CanvasColor = System.Drawing.SystemColors.Control;
            this.panelEx18.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            this.panelEx18.Controls.Add(this.dataGridViewX7);
            this.panelEx18.Controls.Add(this.labelX16);
            this.panelEx18.Dock = System.Windows.Forms.DockStyle.Left;
            this.panelEx18.Location = new System.Drawing.Point(2, 2);
            this.panelEx18.Name = "panelEx18";
            this.panelEx18.Size = new System.Drawing.Size(503, 309);
            this.panelEx18.Style.Alignment = System.Drawing.StringAlignment.Center;
            this.panelEx18.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
            this.panelEx18.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemText;
            this.panelEx18.Style.GradientAngle = 90;
            this.panelEx18.TabIndex = 30;
            // 
            // dataGridViewX7
            // 
            this.dataGridViewX7.BackgroundColor = System.Drawing.Color.White;
            dataGridViewCellStyle199.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
            dataGridViewCellStyle199.BackColor = System.Drawing.SystemColors.Control;
            dataGridViewCellStyle199.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            dataGridViewCellStyle199.ForeColor = System.Drawing.Color.Black;
            dataGridViewCellStyle199.SelectionBackColor = System.Drawing.SystemColors.Highlight;
            dataGridViewCellStyle199.SelectionForeColor = System.Drawing.Color.Black;
            dataGridViewCellStyle199.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
            this.dataGridViewX7.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle199;
            this.dataGridViewX7.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
            this.dataGridViewX7.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
            this.Column20,
            this.Column21,
            this.Column22,
            this.Column23,
            this.Column24});
            dataGridViewCellStyle200.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
            dataGridViewCellStyle200.BackColor = System.Drawing.Color.White;
            dataGridViewCellStyle200.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            dataGridViewCellStyle200.ForeColor = System.Drawing.Color.Black;
            dataGridViewCellStyle200.SelectionBackColor = System.Drawing.SystemColors.Highlight;
            dataGridViewCellStyle200.SelectionForeColor = System.Drawing.Color.Black;
            dataGridViewCellStyle200.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
            this.dataGridViewX7.DefaultCellStyle = dataGridViewCellStyle200;
            this.dataGridViewX7.Dock = System.Windows.Forms.DockStyle.Fill;
            this.dataGridViewX7.EnableHeadersVisualStyles = false;
            this.dataGridViewX7.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(170)))), ((int)(((byte)(170)))), ((int)(((byte)(170)))));
            this.dataGridViewX7.Location = new System.Drawing.Point(0, 23);
            this.dataGridViewX7.Name = "dataGridViewX7";
            dataGridViewCellStyle201.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
            dataGridViewCellStyle201.BackColor = System.Drawing.SystemColors.Control;
            dataGridViewCellStyle201.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            dataGridViewCellStyle201.ForeColor = System.Drawing.Color.Black;
            dataGridViewCellStyle201.SelectionBackColor = System.Drawing.SystemColors.Highlight;
            dataGridViewCellStyle201.SelectionForeColor = System.Drawing.Color.Black;
            dataGridViewCellStyle201.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
            this.dataGridViewX7.RowHeadersDefaultCellStyle = dataGridViewCellStyle201;
            this.dataGridViewX7.Size = new System.Drawing.Size(503, 286);
            this.dataGridViewX7.TabIndex = 23;
            // 
            // Column20
            // 
            this.Column20.HeaderText = "Tài khoản";
            this.Column20.Name = "Column20";
            this.Column20.Width = 129;
            // 
            // Column21
            // 
            this.Column21.HeaderText = "Họ và tên";
            this.Column21.Name = "Column21";
            this.Column21.Width = 150;
            // 
            // Column22
            // 
            this.Column22.HeaderText = "Lãnh đạo";
            this.Column22.Name = "Column22";
            this.Column22.Resizable = System.Windows.Forms.DataGridViewTriState.True;
            this.Column22.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
            this.Column22.Width = 50;
            // 
            // Column23
            // 
            this.Column23.HeaderText = "Nhân viên";
            this.Column23.Name = "Column23";
            this.Column23.Width = 50;
            // 
            // Column24
            // 
            this.Column24.HeaderText = "Quản trị";
            this.Column24.Name = "Column24";
            this.Column24.Width = 50;
            // 
            // labelX16
            // 
            // 
            // 
            // 
            this.labelX16.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.labelX16.Dock = System.Windows.Forms.DockStyle.Top;
            this.labelX16.ForeColor = System.Drawing.Color.Black;
            this.labelX16.Location = new System.Drawing.Point(0, 0);
            this.labelX16.Name = "labelX16";
            this.labelX16.Size = new System.Drawing.Size(503, 23);
            this.labelX16.TabIndex = 28;
            this.labelX16.Text = "Danh sách nhân viên: <b>Phòng tiếp nhận hồ sơ</b>";
            // 
            // panelEx16
            // 
            this.panelEx16.CanvasColor = System.Drawing.SystemColors.Control;
            this.panelEx16.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            this.panelEx16.Controls.Add(this.buttonX16);
            this.panelEx16.Controls.Add(this.buttonX17);
            this.panelEx16.Controls.Add(this.buttonX18);
            this.panelEx16.Dock = System.Windows.Forms.DockStyle.Bottom;
            this.panelEx16.Location = new System.Drawing.Point(2, 311);
            this.panelEx16.Name = "panelEx16";
            this.panelEx16.Size = new System.Drawing.Size(744, 40);
            this.panelEx16.Style.Alignment = System.Drawing.StringAlignment.Center;
            this.panelEx16.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
            this.panelEx16.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemText;
            this.panelEx16.Style.GradientAngle = 90;
            this.panelEx16.TabIndex = 25;
            // 
            // buttonX16
            // 
            this.buttonX16.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
            this.buttonX16.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
            this.buttonX16.Image = global::eBHXH.Prototype.Properties.Resources.RecycleBin;
            this.buttonX16.Location = new System.Drawing.Point(132, 6);
            this.buttonX16.Name = "buttonX16";
            this.buttonX16.Size = new System.Drawing.Size(88, 29);
            this.buttonX16.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            this.buttonX16.TabIndex = 22;
            this.buttonX16.Text = "&Xóa";
            // 
            // buttonX17
            // 
            this.buttonX17.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
            this.buttonX17.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
            this.buttonX17.Image = global::eBHXH.Prototype.Properties.Resources.frmMain_16_buttonFileSaveAs_ImageSmall;
            this.buttonX17.Location = new System.Drawing.Point(0, 6);
            this.buttonX17.Name = "buttonX17";
            this.buttonX17.Size = new System.Drawing.Size(120, 29);
            this.buttonX17.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            this.buttonX17.TabIndex = 20;
            this.buttonX17.Text = "&Ghi";
            // 
            // buttonX18
            // 
            this.buttonX18.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
            this.buttonX18.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.buttonX18.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
            this.buttonX18.Image = global::eBHXH.Prototype.Properties.Resources.cancel;
            this.buttonX18.Location = new System.Drawing.Point(653, 6);
            this.buttonX18.Name = "buttonX18";
            this.buttonX18.Size = new System.Drawing.Size(88, 29);
            this.buttonX18.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            this.buttonX18.TabIndex = 21;
            this.buttonX18.Text = "&Thoát";
            // 
            // expandableSplitter2
            // 
            this.expandableSplitter2.BackColor = System.Drawing.Color.White;
            this.expandableSplitter2.BackColor2 = System.Drawing.Color.Empty;
            this.expandableSplitter2.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.None;
            this.expandableSplitter2.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.None;
            this.expandableSplitter2.ExpandFillColor = System.Drawing.Color.FromArgb(((int)(((byte)(254)))), ((int)(((byte)(142)))), ((int)(((byte)(75)))));
            this.expandableSplitter2.ExpandFillColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemPressedBackground;
            this.expandableSplitter2.ExpandLineColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(128)))));
            this.expandableSplitter2.ExpandLineColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemPressedBorder;
            this.expandableSplitter2.ForeColor = System.Drawing.Color.Black;
            this.expandableSplitter2.GripDarkColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(128)))));
            this.expandableSplitter2.GripDarkColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemPressedBorder;
            this.expandableSplitter2.GripLightColor = System.Drawing.Color.FromArgb(((int)(((byte)(246)))), ((int)(((byte)(246)))), ((int)(((byte)(246)))));
            this.expandableSplitter2.GripLightColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.MenuBackground;
            this.expandableSplitter2.HotBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(213)))), ((int)(((byte)(140)))));
            this.expandableSplitter2.HotBackColor2 = System.Drawing.Color.Empty;
            this.expandableSplitter2.HotBackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.None;
            this.expandableSplitter2.HotBackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemCheckedBackground;
            this.expandableSplitter2.HotExpandFillColor = System.Drawing.Color.FromArgb(((int)(((byte)(254)))), ((int)(((byte)(142)))), ((int)(((byte)(75)))));
            this.expandableSplitter2.HotExpandFillColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemPressedBackground;
            this.expandableSplitter2.HotExpandLineColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(128)))));
            this.expandableSplitter2.HotExpandLineColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemPressedBorder;
            this.expandableSplitter2.HotGripDarkColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(128)))));
            this.expandableSplitter2.HotGripDarkColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemPressedBorder;
            this.expandableSplitter2.HotGripLightColor = System.Drawing.Color.FromArgb(((int)(((byte)(246)))), ((int)(((byte)(246)))), ((int)(((byte)(246)))));
            this.expandableSplitter2.HotGripLightColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.MenuBackground;
            this.expandableSplitter2.Location = new System.Drawing.Point(303, 58);
            this.expandableSplitter2.Name = "expandableSplitter2";
            this.expandableSplitter2.Size = new System.Drawing.Size(6, 373);
            this.expandableSplitter2.Style = DevComponents.DotNetBar.eSplitterStyle.Mozilla;
            this.expandableSplitter2.TabIndex = 31;
            this.expandableSplitter2.TabStop = false;
            // 
            // groupPanel8
            // 
            this.groupPanel8.BackColor = System.Drawing.Color.White;
            this.groupPanel8.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Metro;
            this.groupPanel8.Controls.Add(this.dataGridViewX6);
            this.groupPanel8.Dock = System.Windows.Forms.DockStyle.Left;
            this.groupPanel8.DrawTitleBox = false;
            this.groupPanel8.Location = new System.Drawing.Point(5, 58);
            this.groupPanel8.Name = "groupPanel8";
            this.groupPanel8.Padding = new System.Windows.Forms.Padding(2);
            this.groupPanel8.Size = new System.Drawing.Size(298, 373);
            // 
            // 
            // 
            this.groupPanel8.Style.BackColor = System.Drawing.Color.White;
            this.groupPanel8.Style.BackColor2 = System.Drawing.Color.White;
            this.groupPanel8.Style.BackColorGradientAngle = 90;
            this.groupPanel8.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.groupPanel8.Style.BorderBottomWidth = 1;
            this.groupPanel8.Style.BorderColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
            this.groupPanel8.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.groupPanel8.Style.BorderLeftWidth = 1;
            this.groupPanel8.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.groupPanel8.Style.BorderRightWidth = 1;
            this.groupPanel8.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.groupPanel8.Style.BorderTopWidth = 1;
            this.groupPanel8.Style.CornerDiameter = 4;
            this.groupPanel8.Style.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.groupPanel8.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
            this.groupPanel8.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near;
            // 
            // 
            // 
            this.groupPanel8.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            // 
            // 
            // 
            this.groupPanel8.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.groupPanel8.TabIndex = 27;
            this.groupPanel8.Text = "Danh sách phòng / bộ phận <b>(BHXH Huyện Bình Gia)</b>";
            // 
            // dataGridViewX6
            // 
            this.dataGridViewX6.BackgroundColor = System.Drawing.Color.White;
            dataGridViewCellStyle202.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
            dataGridViewCellStyle202.BackColor = System.Drawing.SystemColors.Control;
            dataGridViewCellStyle202.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            dataGridViewCellStyle202.ForeColor = System.Drawing.Color.Black;
            dataGridViewCellStyle202.SelectionBackColor = System.Drawing.SystemColors.Highlight;
            dataGridViewCellStyle202.SelectionForeColor = System.Drawing.Color.Black;
            dataGridViewCellStyle202.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
            this.dataGridViewX6.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle202;
            this.dataGridViewX6.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
            this.dataGridViewX6.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
            this.dataGridViewTextBoxColumn10});
            dataGridViewCellStyle203.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
            dataGridViewCellStyle203.BackColor = System.Drawing.Color.White;
            dataGridViewCellStyle203.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            dataGridViewCellStyle203.ForeColor = System.Drawing.Color.Black;
            dataGridViewCellStyle203.SelectionBackColor = System.Drawing.SystemColors.Highlight;
            dataGridViewCellStyle203.SelectionForeColor = System.Drawing.Color.Black;
            dataGridViewCellStyle203.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
            this.dataGridViewX6.DefaultCellStyle = dataGridViewCellStyle203;
            this.dataGridViewX6.Dock = System.Windows.Forms.DockStyle.Fill;
            this.dataGridViewX6.EnableHeadersVisualStyles = false;
            this.dataGridViewX6.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(170)))), ((int)(((byte)(170)))), ((int)(((byte)(170)))));
            this.dataGridViewX6.Location = new System.Drawing.Point(2, 2);
            this.dataGridViewX6.Name = "dataGridViewX6";
            dataGridViewCellStyle204.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
            dataGridViewCellStyle204.BackColor = System.Drawing.SystemColors.Control;
            dataGridViewCellStyle204.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            dataGridViewCellStyle204.ForeColor = System.Drawing.Color.Black;
            dataGridViewCellStyle204.SelectionBackColor = System.Drawing.SystemColors.Highlight;
            dataGridViewCellStyle204.SelectionForeColor = System.Drawing.Color.Black;
            dataGridViewCellStyle204.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
            this.dataGridViewX6.RowHeadersDefaultCellStyle = dataGridViewCellStyle204;
            this.dataGridViewX6.Size = new System.Drawing.Size(292, 351);
            this.dataGridViewX6.TabIndex = 23;
            // 
            // dataGridViewTextBoxColumn10
            // 
            this.dataGridViewTextBoxColumn10.HeaderText = "Tên phòng / bộ phận";
            this.dataGridViewTextBoxColumn10.Name = "dataGridViewTextBoxColumn10";
            this.dataGridViewTextBoxColumn10.Width = 200;
            // 
            // groupPanel9
            // 
            this.groupPanel9.BackColor = System.Drawing.Color.White;
            this.groupPanel9.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Metro;
            this.groupPanel9.Controls.Add(this.comboBoxEx1);
            this.groupPanel9.Controls.Add(this.labelX15);
            this.groupPanel9.Controls.Add(this.textBoxX11);
            this.groupPanel9.Dock = System.Windows.Forms.DockStyle.Top;
            this.groupPanel9.DrawTitleBox = false;
            this.groupPanel9.Location = new System.Drawing.Point(5, 5);
            this.groupPanel9.Name = "groupPanel9";
            this.groupPanel9.Padding = new System.Windows.Forms.Padding(2, 0, 2, 2);
            this.groupPanel9.Size = new System.Drawing.Size(1054, 53);
            // 
            // 
            // 
            this.groupPanel9.Style.BackColor = System.Drawing.Color.White;
            this.groupPanel9.Style.BackColor2 = System.Drawing.Color.White;
            this.groupPanel9.Style.BackColorGradientAngle = 90;
            this.groupPanel9.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.groupPanel9.Style.BorderBottomWidth = 1;
            this.groupPanel9.Style.BorderColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
            this.groupPanel9.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.groupPanel9.Style.BorderLeftWidth = 1;
            this.groupPanel9.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.groupPanel9.Style.BorderRightWidth = 1;
            this.groupPanel9.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.groupPanel9.Style.BorderTopWidth = 1;
            this.groupPanel9.Style.CornerDiameter = 4;
            this.groupPanel9.Style.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.groupPanel9.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
            this.groupPanel9.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near;
            // 
            // 
            // 
            this.groupPanel9.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            // 
            // 
            // 
            this.groupPanel9.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.groupPanel9.TabIndex = 25;
            this.groupPanel9.Text = "Chọn cơ quan BHXH";
            // 
            // comboBoxEx1
            // 
            this.comboBoxEx1.Col1Width = 50;
            this.comboBoxEx1.Col2Width = 100;
            this.comboBoxEx1.Col3Width = 150;
            this.comboBoxEx1.DisplayMember = "Text";
            this.comboBoxEx1.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
            this.comboBoxEx1.ForeColor = System.Drawing.Color.Black;
            this.comboBoxEx1.FormattingEnabled = true;
            this.comboBoxEx1.ItemHeight = 17;
            this.comboBoxEx1.Location = new System.Drawing.Point(151, 3);
            this.comboBoxEx1.MoRongKhiForcus = false;
            this.comboBoxEx1.Name = "comboBoxEx1";
            this.comboBoxEx1.Size = new System.Drawing.Size(361, 23);
            this.comboBoxEx1.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            this.comboBoxEx1.TabIndex = 15;
            this.comboBoxEx1.WatermarkText = "Tên cơ quan";
            // 
            // labelX15
            // 
            this.labelX15.BackColor = System.Drawing.Color.White;
            // 
            // 
            // 
            this.labelX15.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.labelX15.ForeColor = System.Drawing.Color.Black;
            this.labelX15.Location = new System.Drawing.Point(6, 4);
            this.labelX15.Name = "labelX15";
            this.labelX15.Size = new System.Drawing.Size(58, 20);
            this.labelX15.TabIndex = 14;
            this.labelX15.Text = "Cơ quan:";
            this.labelX15.TextAlignment = System.Drawing.StringAlignment.Far;
            // 
            // textBoxX11
            // 
            this.textBoxX11.BackColor = System.Drawing.Color.White;
            // 
            // 
            // 
            this.textBoxX11.Border.Class = "TextBoxBorder";
            this.textBoxX11.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.textBoxX11.FocusHighlightEnabled = true;
            this.textBoxX11.ForeColor = System.Drawing.Color.Black;
            this.highlighter1.SetHighlightOnFocus(this.textBoxX11, true);
            this.textBoxX11.Location = new System.Drawing.Point(70, 3);
            this.textBoxX11.Name = "textBoxX11";
            this.textBoxX11.Size = new System.Drawing.Size(76, 23);
            this.textBoxX11.TabIndex = 13;
            this.textBoxX11.WatermarkText = "Mã cơ quan";
            // 
            // superTabItem2
            // 
            this.superTabItem2.AttachedControl = this.superTabControlPanel2;
            this.superTabItem2.GlobalItem = false;
            this.superTabItem2.Name = "superTabItem2";
            this.superTabItem2.Text = "Nhân viên phòng / bộ phận";
            // 
            // highlighter1
            // 
            this.highlighter1.ContainerControl = this;
            this.highlighter1.LicenseKey = "F962CEC7-CD8F-4911-A9E9-CAB39962FC1F";
            // 
            // labelX34
            // 
            this.labelX34.AutoSize = true;
            // 
            // 
            // 
            this.labelX34.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.labelX34.Font = new System.Drawing.Font("Segoe UI", 14F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.labelX34.Location = new System.Drawing.Point(16, 3);
            this.labelX34.Name = "labelX34";
            this.labelX34.Size = new System.Drawing.Size(171, 29);
            this.labelX34.TabIndex = 24;
            this.labelX34.Text = "Kết nối cơ sở dữ liệu";
            // 
            // labelX35
            // 
            this.labelX35.AutoSize = true;
            // 
            // 
            // 
            this.labelX35.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.labelX35.Font = new System.Drawing.Font("Segoe UI", 14F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.labelX35.Location = new System.Drawing.Point(395, 5);
            this.labelX35.Name = "labelX35";
            this.labelX35.Size = new System.Drawing.Size(203, 29);
            this.labelX35.TabIndex = 25;
            this.labelX35.Text = "Thông tin email cơ quan";
            // 
            // labelX36
            // 
            // 
            // 
            // 
            this.labelX36.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.labelX36.ForeColor = System.Drawing.Color.Black;
            this.labelX36.Location = new System.Drawing.Point(398, 65);
            this.labelX36.Name = "labelX36";
            this.labelX36.Size = new System.Drawing.Size(89, 20);
            this.labelX36.TabIndex = 33;
            this.labelX36.Text = "Tài khoản email:";
            this.labelX36.TextAlignment = System.Drawing.StringAlignment.Far;
            // 
            // textBoxX19
            // 
            this.textBoxX19.BackColor = System.Drawing.Color.White;
            // 
            // 
            // 
            this.textBoxX19.Border.Class = "TextBoxBorder";
            this.textBoxX19.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.textBoxX19.FocusHighlightEnabled = true;
            this.textBoxX19.ForeColor = System.Drawing.Color.Black;
            this.highlighter1.SetHighlightOnFocus(this.textBoxX19, true);
            this.textBoxX19.Location = new System.Drawing.Point(493, 64);
            this.textBoxX19.Name = "textBoxX19";
            this.textBoxX19.Size = new System.Drawing.Size(259, 23);
            this.textBoxX19.TabIndex = 32;
            // 
            // labelX37
            // 
            // 
            // 
            // 
            this.labelX37.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.labelX37.ForeColor = System.Drawing.Color.Black;
            this.labelX37.Location = new System.Drawing.Point(412, 121);
            this.labelX37.Name = "labelX37";
            this.labelX37.Size = new System.Drawing.Size(75, 20);
            this.labelX37.TabIndex = 31;
            this.labelX37.Text = "Tên đại diện:";
            this.labelX37.TextAlignment = System.Drawing.StringAlignment.Far;
            // 
            // textBoxX20
            // 
            this.textBoxX20.BackColor = System.Drawing.Color.White;
            // 
            // 
            // 
            this.textBoxX20.Border.Class = "TextBoxBorder";
            this.textBoxX20.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.textBoxX20.FocusHighlightEnabled = true;
            this.textBoxX20.ForeColor = System.Drawing.Color.Black;
            this.highlighter1.SetHighlightOnFocus(this.textBoxX20, true);
            this.textBoxX20.Location = new System.Drawing.Point(493, 120);
            this.textBoxX20.Name = "textBoxX20";
            this.textBoxX20.PasswordChar = '*';
            this.textBoxX20.Size = new System.Drawing.Size(259, 23);
            this.textBoxX20.TabIndex = 30;
            // 
            // labelX38
            // 
            // 
            // 
            // 
            this.labelX38.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.labelX38.ForeColor = System.Drawing.Color.Black;
            this.labelX38.Location = new System.Drawing.Point(412, 93);
            this.labelX38.Name = "labelX38";
            this.labelX38.Size = new System.Drawing.Size(75, 20);
            this.labelX38.TabIndex = 29;
            this.labelX38.Text = "Mật khẩu:";
            this.labelX38.TextAlignment = System.Drawing.StringAlignment.Far;
            // 
            // textBoxX21
            // 
            this.textBoxX21.BackColor = System.Drawing.Color.White;
            // 
            // 
            // 
            this.textBoxX21.Border.Class = "TextBoxBorder";
            this.textBoxX21.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.textBoxX21.FocusHighlightEnabled = true;
            this.textBoxX21.ForeColor = System.Drawing.Color.Black;
            this.highlighter1.SetHighlightOnFocus(this.textBoxX21, true);
            this.textBoxX21.Location = new System.Drawing.Point(493, 92);
            this.textBoxX21.Name = "textBoxX21";
            this.textBoxX21.Size = new System.Drawing.Size(259, 23);
            this.textBoxX21.TabIndex = 28;
            // 
            // labelX39
            // 
            // 
            // 
            // 
            this.labelX39.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.labelX39.ForeColor = System.Drawing.Color.Black;
            this.labelX39.Location = new System.Drawing.Point(404, 37);
            this.labelX39.Name = "labelX39";
            this.labelX39.Size = new System.Drawing.Size(83, 20);
            this.labelX39.TabIndex = 27;
            this.labelX39.Text = "Máy chủ email:";
            this.labelX39.TextAlignment = System.Drawing.StringAlignment.Far;
            // 
            // textBoxX22
            // 
            this.textBoxX22.BackColor = System.Drawing.Color.White;
            // 
            // 
            // 
            this.textBoxX22.Border.Class = "TextBoxBorder";
            this.textBoxX22.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.textBoxX22.FocusHighlightEnabled = true;
            this.textBoxX22.ForeColor = System.Drawing.Color.Black;
            this.highlighter1.SetHighlightOnFocus(this.textBoxX22, true);
            this.textBoxX22.Location = new System.Drawing.Point(493, 36);
            this.textBoxX22.Name = "textBoxX22";
            this.textBoxX22.Size = new System.Drawing.Size(259, 23);
            this.textBoxX22.TabIndex = 26;
            // 
            // labelX40
            // 
            this.labelX40.AutoSize = true;
            // 
            // 
            // 
            this.labelX40.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.labelX40.Font = new System.Drawing.Font("Segoe UI", 14F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.labelX40.Location = new System.Drawing.Point(16, 180);
            this.labelX40.Name = "labelX40";
            this.labelX40.Size = new System.Drawing.Size(317, 29);
            this.labelX40.TabIndex = 34;
            this.labelX40.Text = "Kết nối thiết bị đọc mã vạch (barcode)";
            // 
            // labelX41
            // 
            // 
            // 
            // 
            this.labelX41.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.labelX41.ForeColor = System.Drawing.Color.Black;
            this.labelX41.Location = new System.Drawing.Point(7, 218);
            this.labelX41.Name = "labelX41";
            this.labelX41.Size = new System.Drawing.Size(84, 20);
            this.labelX41.TabIndex = 35;
            this.labelX41.Text = "Cổng kết nối:";
            this.labelX41.TextAlignment = System.Drawing.StringAlignment.Far;
            // 
            // comboBoxEx3
            // 
            this.comboBoxEx3.Col1Width = 50;
            this.comboBoxEx3.Col2Width = 100;
            this.comboBoxEx3.Col3Width = 150;
            this.comboBoxEx3.DisplayMember = "Text";
            this.comboBoxEx3.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
            this.comboBoxEx3.FormattingEnabled = true;
            this.comboBoxEx3.ItemHeight = 17;
            this.comboBoxEx3.Location = new System.Drawing.Point(97, 217);
            this.comboBoxEx3.MoRongKhiForcus = false;
            this.comboBoxEx3.Name = "comboBoxEx3";
            this.comboBoxEx3.Size = new System.Drawing.Size(259, 23);
            this.comboBoxEx3.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            this.comboBoxEx3.TabIndex = 36;
            this.comboBoxEx3.WatermarkText = "COM3";
            // 
            // frmSetting
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(1234, 462);
            this.Controls.Add(this.superTabControl1);
            this.DoubleBuffered = true;
            this.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
            this.MinimizeBox = false;
            this.Name = "frmSetting";
            this.ShowInTaskbar = false;
            this.Text = "HỆ THỐNG: CÀI ĐẶT";
            this.TitleText = "HỆ THỐNG: CÀI ĐẶT";
            this.Load += new System.EventHandler(this.frmSetting_Load);
            panelEx7.ResumeLayout(false);
            panelEx11.ResumeLayout(false);
            panelEx14.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.superTabControl1)).EndInit();
            this.superTabControl1.ResumeLayout(false);
            this.superTabControlPanel16.ResumeLayout(false);
            this.panelEx54.ResumeLayout(false);
            this.panelEx55.ResumeLayout(false);
            this.groupPanel29.ResumeLayout(false);
            this.groupPanel31.ResumeLayout(false);
            this.groupPanel32.ResumeLayout(false);
            this.groupPanel25.ResumeLayout(false);
            this.groupPanel28.ResumeLayout(false);
            this.groupPanel27.ResumeLayout(false);
            this.groupPanel26.ResumeLayout(false);
            this.panelEx56.ResumeLayout(false);
            this.panelEx53.ResumeLayout(false);
            this.superTabControlPanel5.ResumeLayout(false);
            this.panelEx3.ResumeLayout(false);
            this.panelEx3.PerformLayout();
            this.panelEx2.ResumeLayout(false);
            this.superTabControlPanel14.ResumeLayout(false);
            this.panelEx45.ResumeLayout(false);
            this.panelEx46.ResumeLayout(false);
            this.groupPanel23.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.dataGridViewX16)).EndInit();
            this.groupPanel22.ResumeLayout(false);
            this.panelEx47.ResumeLayout(false);
            this.panelEx38.ResumeLayout(false);
            this.superTabControlPanel7.ResumeLayout(false);
            this.panelEx8.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.superTabControl2)).EndInit();
            this.superTabControl2.ResumeLayout(false);
            this.superTabControlPanel9.ResumeLayout(false);
            this.groupPanel2.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.dataGridViewX2)).EndInit();
            this.panelEx10.ResumeLayout(false);
            this.groupPanel1.ResumeLayout(false);
            this.superTabControlPanel8.ResumeLayout(false);
            this.groupPanel3.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.dataGridViewX3)).EndInit();
            this.panelEx9.ResumeLayout(false);
            this.groupPanel4.ResumeLayout(false);
            this.superTabControlPanel15.ResumeLayout(false);
            this.panelEx49.ResumeLayout(false);
            this.panelEx50.ResumeLayout(false);
            this.groupPanel24.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.dataGridViewX17)).EndInit();
            this.panelEx51.ResumeLayout(false);
            this.panelEx52.ResumeLayout(false);
            this.panelEx48.ResumeLayout(false);
            this.superTabControlPanel10.ResumeLayout(false);
            this.panelEx21.ResumeLayout(false);
            this.panelEx22.ResumeLayout(false);
            this.groupPanel21.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.dataGridViewX9)).EndInit();
            this.groupPanel20.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.dataGridViewX10)).EndInit();
            this.panelEx28.ResumeLayout(false);
            this.panelEx19.ResumeLayout(false);
            this.superTabControlPanel1.ResumeLayout(false);
            this.panelEx5.ResumeLayout(false);
            this.panelEx4.ResumeLayout(false);
            this.groupPanel12.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.dataGridViewX1)).EndInit();
            this.groupPanel11.ResumeLayout(false);
            this.panelEx6.ResumeLayout(false);
            this.panelEx1.ResumeLayout(false);
            this.superTabControlPanel12.ResumeLayout(false);
            this.panelEx13.ResumeLayout(false);
            this.groupPanel7.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.dataGridViewX5)).EndInit();
            this.panelEx12.ResumeLayout(false);
            this.groupPanel5.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.dataGridViewX4)).EndInit();
            this.groupPanel6.ResumeLayout(false);
            this.superTabControlPanel13.ResumeLayout(false);
            this.panelEx43.ResumeLayout(false);
            this.panelEx44.ResumeLayout(false);
            this.groupPanel18.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.dataGridViewX15)).EndInit();
            this.groupPanel19.ResumeLayout(false);
            this.panelEx39.ResumeLayout(false);
            this.panelEx37.ResumeLayout(false);
            this.superTabControlPanel11.ResumeLayout(false);
            this.superTabControlPanel6.ResumeLayout(false);
            this.panelEx41.ResumeLayout(false);
            this.panelEx42.ResumeLayout(false);
            this.groupPanel17.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.dataGridViewX14)).EndInit();
            this.panelEx35.ResumeLayout(false);
            this.groupPanel16.ResumeLayout(false);
            this.panelEx34.ResumeLayout(false);
            this.superTabControlPanel4.ResumeLayout(false);
            this.panelEx29.ResumeLayout(false);
            this.panelEx23.ResumeLayout(false);
            this.groupPanel15.ResumeLayout(false);
            this.panelEx33.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.dataGridViewX13)).EndInit();
            this.panelEx36.ResumeLayout(false);
            this.panelEx32.ResumeLayout(false);
            this.superTabControlPanel3.ResumeLayout(false);
            this.panelEx25.ResumeLayout(false);
            this.panelEx27.ResumeLayout(false);
            this.groupPanel14.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.dataGridViewX11)).EndInit();
            this.groupPanel13.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.dataGridViewX12)).EndInit();
            this.panelEx31.ResumeLayout(false);
            this.panelEx24.ResumeLayout(false);
            this.superTabControlPanel2.ResumeLayout(false);
            this.panelEx15.ResumeLayout(false);
            this.groupPanel10.ResumeLayout(false);
            this.panelEx20.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.dataGridViewX8)).EndInit();
            this.panelEx17.ResumeLayout(false);
            this.panelEx18.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.dataGridViewX7)).EndInit();
            this.panelEx16.ResumeLayout(false);
            this.groupPanel8.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.dataGridViewX6)).EndInit();
            this.groupPanel9.ResumeLayout(false);
            this.ResumeLayout(false);

        }
コード例 #52
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.groupPanel1 = new DevComponents.DotNetBar.Controls.GroupPanel();
     this.panelEx1 = new DevComponents.DotNetBar.PanelEx();
     this.panelEx2 = new DevComponents.DotNetBar.PanelEx();
     this.groupPanel3 = new DevComponents.DotNetBar.Controls.GroupPanel();
     this.btnoktk = new DevComponents.DotNetBar.ButtonX();
     this.btnsuatk = new DevComponents.DotNetBar.ButtonX();
     this.btnhuy = new DevComponents.DotNetBar.ButtonX();
     this.txttienkham = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.labelX2 = new DevComponents.DotNetBar.LabelX();
     this.groupPanel2 = new DevComponents.DotNetBar.Controls.GroupPanel();
     this.groupPanel4 = new DevComponents.DotNetBar.Controls.GroupPanel();
     this.btnsuasobn = new DevComponents.DotNetBar.ButtonX();
     this.btnhuybn = new DevComponents.DotNetBar.ButtonX();
     this.btnok = new DevComponents.DotNetBar.ButtonX();
     this.labelX3 = new DevComponents.DotNetBar.LabelX();
     this.txtsobn = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.btnhuysobn = new DevComponents.DotNetBar.ButtonX();
     this.labelX1 = new DevComponents.DotNetBar.LabelX();
     this.btnsuasbn = new DevComponents.DotNetBar.ButtonX();
     this.txtsobntoida = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.groupPanel1.SuspendLayout();
     this.groupPanel3.SuspendLayout();
     this.groupPanel2.SuspendLayout();
     this.groupPanel4.SuspendLayout();
     this.SuspendLayout();
     //
     // groupPanel1
     //
     this.groupPanel1.CanvasColor = System.Drawing.SystemColors.Control;
     this.groupPanel1.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.groupPanel1.Controls.Add(this.panelEx1);
     this.groupPanel1.Controls.Add(this.panelEx2);
     this.groupPanel1.Controls.Add(this.groupPanel3);
     this.groupPanel1.Controls.Add(this.groupPanel2);
     this.groupPanel1.Location = new System.Drawing.Point(0, 0);
     this.groupPanel1.Name = "groupPanel1";
     this.groupPanel1.Size = new System.Drawing.Size(332, 340);
     //
     //
     //
     this.groupPanel1.Style.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.groupPanel1.Style.BackColorGradientAngle = 90;
     this.groupPanel1.Style.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.groupPanel1.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel1.Style.BorderBottomWidth = 1;
     this.groupPanel1.Style.BorderColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.groupPanel1.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel1.Style.BorderLeftWidth = 1;
     this.groupPanel1.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel1.Style.BorderRightWidth = 1;
     this.groupPanel1.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel1.Style.BorderTopWidth = 1;
     this.groupPanel1.Style.CornerDiameter = 4;
     this.groupPanel1.Style.TextAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Center;
     this.groupPanel1.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.groupPanel1.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near;
     this.groupPanel1.TabIndex = 3;
     //
     // panelEx1
     //
     this.panelEx1.CanvasColor = System.Drawing.SystemColors.Control;
     this.panelEx1.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.panelEx1.Location = new System.Drawing.Point(22, 173);
     this.panelEx1.Name = "panelEx1";
     this.panelEx1.Size = new System.Drawing.Size(269, 33);
     this.panelEx1.Style.Alignment = System.Drawing.StringAlignment.Center;
     this.panelEx1.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.panelEx1.Style.BackColor2.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.panelEx1.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.panelEx1.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.panelEx1.Style.CornerType = DevComponents.DotNetBar.eCornerType.Rounded;
     this.panelEx1.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.panelEx1.Style.GradientAngle = 90;
     this.panelEx1.TabIndex = 2;
     this.panelEx1.Text = "Tiền khám";
     //
     // panelEx2
     //
     this.panelEx2.CanvasColor = System.Drawing.SystemColors.Control;
     this.panelEx2.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.panelEx2.Location = new System.Drawing.Point(21, 6);
     this.panelEx2.Name = "panelEx2";
     this.panelEx2.Size = new System.Drawing.Size(270, 33);
     this.panelEx2.Style.Alignment = System.Drawing.StringAlignment.Center;
     this.panelEx2.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.panelEx2.Style.BackColor2.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.panelEx2.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.panelEx2.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.panelEx2.Style.CornerType = DevComponents.DotNetBar.eCornerType.Rounded;
     this.panelEx2.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.panelEx2.Style.GradientAngle = 90;
     this.panelEx2.TabIndex = 4;
     this.panelEx2.Text = "Số bệnh nhân tối đa";
     //
     // groupPanel3
     //
     this.groupPanel3.CanvasColor = System.Drawing.SystemColors.Control;
     this.groupPanel3.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.groupPanel3.Controls.Add(this.btnoktk);
     this.groupPanel3.Controls.Add(this.btnsuatk);
     this.groupPanel3.Controls.Add(this.btnhuy);
     this.groupPanel3.Controls.Add(this.txttienkham);
     this.groupPanel3.Controls.Add(this.labelX2);
     this.groupPanel3.Location = new System.Drawing.Point(11, 182);
     this.groupPanel3.Name = "groupPanel3";
     this.groupPanel3.Size = new System.Drawing.Size(308, 143);
     //
     //
     //
     this.groupPanel3.Style.BackColor = System.Drawing.Color.White;
     this.groupPanel3.Style.BackColor2 = System.Drawing.Color.White;
     this.groupPanel3.Style.BackColorGradientAngle = 90;
     this.groupPanel3.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel3.Style.BorderBottomWidth = 2;
     this.groupPanel3.Style.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(255)))));
     this.groupPanel3.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel3.Style.BorderLeftWidth = 2;
     this.groupPanel3.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel3.Style.BorderRightWidth = 2;
     this.groupPanel3.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel3.Style.BorderTopWidth = 2;
     this.groupPanel3.Style.CornerDiameter = 4;
     this.groupPanel3.Style.CornerType = DevComponents.DotNetBar.eCornerType.Rounded;
     this.groupPanel3.Style.TextAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Center;
     this.groupPanel3.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.groupPanel3.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near;
     this.groupPanel3.TabIndex = 4;
     //
     // btnoktk
     //
     this.btnoktk.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btnoktk.ColorTable = DevComponents.DotNetBar.eButtonColor.Office2007WithBackground;
     this.btnoktk.Location = new System.Drawing.Point(93, 88);
     this.btnoktk.Name = "btnoktk";
     this.btnoktk.Size = new System.Drawing.Size(75, 23);
     this.btnoktk.TabIndex = 5;
     this.btnoktk.Text = "OK";
     this.btnoktk.Visible = false;
     this.btnoktk.Click += new System.EventHandler(this.btnoktk_Click);
     //
     // btnsuatk
     //
     this.btnsuatk.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btnsuatk.ColorTable = DevComponents.DotNetBar.eButtonColor.Office2007WithBackground;
     this.btnsuatk.Location = new System.Drawing.Point(215, 42);
     this.btnsuatk.Name = "btnsuatk";
     this.btnsuatk.Size = new System.Drawing.Size(75, 23);
     this.btnsuatk.TabIndex = 4;
     this.btnsuatk.Text = "Sửa";
     this.btnsuatk.Click += new System.EventHandler(this.btnsuatk_Click);
     //
     // btnhuy
     //
     this.btnhuy.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btnhuy.ColorTable = DevComponents.DotNetBar.eButtonColor.Office2007WithBackground;
     this.btnhuy.Location = new System.Drawing.Point(174, 88);
     this.btnhuy.Name = "btnhuy";
     this.btnhuy.Size = new System.Drawing.Size(75, 23);
     this.btnhuy.TabIndex = 2;
     this.btnhuy.Text = "Hủy";
     this.btnhuy.Visible = false;
     this.btnhuy.Click += new System.EventHandler(this.btnhuy_Click);
     //
     // txttienkham
     //
     //
     //
     //
     this.txttienkham.Border.Class = "TextBoxBorder";
     this.txttienkham.Enabled = false;
     this.txttienkham.Location = new System.Drawing.Point(121, 45);
     this.txttienkham.Name = "txttienkham";
     this.txttienkham.Size = new System.Drawing.Size(88, 20);
     this.txttienkham.TabIndex = 1;
     //
     // labelX2
     //
     this.labelX2.BackColor = System.Drawing.Color.Transparent;
     this.labelX2.Location = new System.Drawing.Point(43, 42);
     this.labelX2.Name = "labelX2";
     this.labelX2.Size = new System.Drawing.Size(62, 23);
     this.labelX2.TabIndex = 3;
     this.labelX2.Text = "Tiền khám :";
     //
     // groupPanel2
     //
     this.groupPanel2.CanvasColor = System.Drawing.SystemColors.Control;
     this.groupPanel2.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.groupPanel2.Controls.Add(this.groupPanel4);
     this.groupPanel2.Controls.Add(this.btnhuysobn);
     this.groupPanel2.Controls.Add(this.labelX1);
     this.groupPanel2.Controls.Add(this.btnsuasbn);
     this.groupPanel2.Controls.Add(this.txtsobntoida);
     this.groupPanel2.Location = new System.Drawing.Point(11, 12);
     this.groupPanel2.Name = "groupPanel2";
     this.groupPanel2.Size = new System.Drawing.Size(308, 147);
     //
     //
     //
     this.groupPanel2.Style.BackColor = System.Drawing.Color.White;
     this.groupPanel2.Style.BackColor2 = System.Drawing.Color.White;
     this.groupPanel2.Style.BackColorGradientAngle = 90;
     this.groupPanel2.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel2.Style.BorderBottomWidth = 2;
     this.groupPanel2.Style.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(255)))));
     this.groupPanel2.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel2.Style.BorderLeftWidth = 2;
     this.groupPanel2.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel2.Style.BorderRightWidth = 2;
     this.groupPanel2.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel2.Style.BorderTopWidth = 2;
     this.groupPanel2.Style.CornerDiameter = 4;
     this.groupPanel2.Style.CornerType = DevComponents.DotNetBar.eCornerType.Rounded;
     this.groupPanel2.Style.TextAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Center;
     this.groupPanel2.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.groupPanel2.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near;
     this.groupPanel2.TabIndex = 3;
     //
     // groupPanel4
     //
     this.groupPanel4.CanvasColor = System.Drawing.SystemColors.Control;
     this.groupPanel4.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.groupPanel4.Controls.Add(this.btnsuasobn);
     this.groupPanel4.Controls.Add(this.btnhuybn);
     this.groupPanel4.Controls.Add(this.btnok);
     this.groupPanel4.Controls.Add(this.labelX3);
     this.groupPanel4.Controls.Add(this.txtsobn);
     this.groupPanel4.Location = new System.Drawing.Point(-3, -3);
     this.groupPanel4.Name = "groupPanel4";
     this.groupPanel4.Size = new System.Drawing.Size(308, 147);
     //
     //
     //
     this.groupPanel4.Style.BackColor = System.Drawing.Color.White;
     this.groupPanel4.Style.BackColor2 = System.Drawing.Color.White;
     this.groupPanel4.Style.BackColorGradientAngle = 90;
     this.groupPanel4.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel4.Style.BorderBottomWidth = 2;
     this.groupPanel4.Style.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(255)))));
     this.groupPanel4.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel4.Style.BorderLeftWidth = 2;
     this.groupPanel4.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel4.Style.BorderRightWidth = 2;
     this.groupPanel4.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel4.Style.BorderTopWidth = 2;
     this.groupPanel4.Style.CornerDiameter = 4;
     this.groupPanel4.Style.CornerType = DevComponents.DotNetBar.eCornerType.Rounded;
     this.groupPanel4.Style.TextAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Center;
     this.groupPanel4.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.groupPanel4.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near;
     this.groupPanel4.TabIndex = 4;
     //
     // btnsuasobn
     //
     this.btnsuasobn.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btnsuasobn.ColorTable = DevComponents.DotNetBar.eButtonColor.Office2007WithBackground;
     this.btnsuasobn.Location = new System.Drawing.Point(215, 51);
     this.btnsuasobn.Name = "btnsuasobn";
     this.btnsuasobn.Size = new System.Drawing.Size(75, 23);
     this.btnsuasobn.TabIndex = 7;
     this.btnsuasobn.Text = "Sửa";
     this.btnsuasobn.Click += new System.EventHandler(this.buttonX1_Click_1);
     //
     // btnhuybn
     //
     this.btnhuybn.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btnhuybn.ColorTable = DevComponents.DotNetBar.eButtonColor.Office2007WithBackground;
     this.btnhuybn.Location = new System.Drawing.Point(174, 93);
     this.btnhuybn.Name = "btnhuybn";
     this.btnhuybn.Size = new System.Drawing.Size(75, 23);
     this.btnhuybn.TabIndex = 5;
     this.btnhuybn.Text = "Hủy";
     this.btnhuybn.Visible = false;
     this.btnhuybn.Click += new System.EventHandler(this.btnhuybn_Click);
     //
     // btnok
     //
     this.btnok.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btnok.ColorTable = DevComponents.DotNetBar.eButtonColor.Office2007WithBackground;
     this.btnok.Location = new System.Drawing.Point(93, 93);
     this.btnok.Name = "btnok";
     this.btnok.Size = new System.Drawing.Size(75, 23);
     this.btnok.TabIndex = 3;
     this.btnok.Text = "OK";
     this.btnok.Visible = false;
     this.btnok.Click += new System.EventHandler(this.btnok_Click);
     //
     // labelX3
     //
     this.labelX3.BackColor = System.Drawing.Color.Transparent;
     this.labelX3.Location = new System.Drawing.Point(13, 50);
     this.labelX3.Name = "labelX3";
     this.labelX3.Size = new System.Drawing.Size(105, 23);
     this.labelX3.TabIndex = 2;
     this.labelX3.Text = "Số bệnh nhân tối đa :";
     //
     // txtsobn
     //
     //
     //
     //
     this.txtsobn.Border.Class = "TextBoxBorder";
     this.txtsobn.Enabled = false;
     this.txtsobn.Location = new System.Drawing.Point(121, 53);
     this.txtsobn.Name = "txtsobn";
     this.txtsobn.Size = new System.Drawing.Size(88, 20);
     this.txtsobn.TabIndex = 0;
     this.txtsobn.TextChanged += new System.EventHandler(this.txtsobn_TextChanged);
     //
     // btnhuysobn
     //
     this.btnhuysobn.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btnhuysobn.ColorTable = DevComponents.DotNetBar.eButtonColor.Office2007WithBackground;
     this.btnhuysobn.Location = new System.Drawing.Point(174, 96);
     this.btnhuysobn.Name = "btnhuysobn";
     this.btnhuysobn.Size = new System.Drawing.Size(75, 23);
     this.btnhuysobn.TabIndex = 1;
     this.btnhuysobn.Text = "Hủy";
     //
     // labelX1
     //
     this.labelX1.BackColor = System.Drawing.Color.Transparent;
     this.labelX1.Location = new System.Drawing.Point(25, 53);
     this.labelX1.Name = "labelX1";
     this.labelX1.Size = new System.Drawing.Size(105, 23);
     this.labelX1.TabIndex = 2;
     this.labelX1.Text = "Số bệnh nhân tối đa :";
     //
     // btnsuasbn
     //
     this.btnsuasbn.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btnsuasbn.ColorTable = DevComponents.DotNetBar.eButtonColor.Office2007WithBackground;
     this.btnsuasbn.Location = new System.Drawing.Point(81, 96);
     this.btnsuasbn.Name = "btnsuasbn";
     this.btnsuasbn.Size = new System.Drawing.Size(75, 23);
     this.btnsuasbn.TabIndex = 0;
     this.btnsuasbn.Text = "Sửa";
     //
     // txtsobntoida
     //
     //
     //
     //
     this.txtsobntoida.Border.Class = "TextBoxBorder";
     this.txtsobntoida.Enabled = false;
     this.txtsobntoida.Location = new System.Drawing.Point(136, 56);
     this.txtsobntoida.Name = "txtsobntoida";
     this.txtsobntoida.Size = new System.Drawing.Size(113, 20);
     this.txtsobntoida.TabIndex = 0;
     //
     // frmthaydoiquidinh
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(332, 340);
     this.Controls.Add(this.groupPanel1);
     this.MaximizeBox = false;
     this.Name = "frmthaydoiquidinh";
     this.ShowInTaskbar = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Thay đổi qui định";
     this.Load += new System.EventHandler(this.frmthaydoiquidinh_Load);
     this.groupPanel1.ResumeLayout(false);
     this.groupPanel3.ResumeLayout(false);
     this.groupPanel2.ResumeLayout(false);
     this.groupPanel4.ResumeLayout(false);
     this.ResumeLayout(false);
 }
コード例 #53
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.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle3 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle4 = new System.Windows.Forms.DataGridViewCellStyle();
     this.tabControlPhanQuyen = new DevComponents.DotNetBar.TabControl();
     this.tabControlPanel4 = new DevComponents.DotNetBar.TabControlPanel();
     this.panelDTPower = new DevComponents.DotNetBar.PanelEx();
     this.bt_Save = new DevComponents.DotNetBar.ButtonX();
     this.dataGridViewXPQ = new DevComponents.DotNetBar.Controls.DataGridViewX();
     this.NghiepVu = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.QuanTri = new System.Windows.Forms.DataGridViewCheckBoxColumn();
     this.BanGiamDoc = new System.Windows.Forms.DataGridViewCheckBoxColumn();
     this.TiepTan = new System.Windows.Forms.DataGridViewCheckBoxColumn();
     this.Khac = new System.Windows.Forms.DataGridViewCheckBoxColumn();
     this.tabItemDTPower = new DevComponents.DotNetBar.TabItem(this.components);
     this.tabControlPanel3 = new DevComponents.DotNetBar.TabControlPanel();
     this.panelPower = new DevComponents.DotNetBar.PanelEx();
     this.groupBox3 = new System.Windows.Forms.GroupBox();
     this.dataGridViewX3 = new DevComponents.DotNetBar.Controls.DataGridViewX();
     this.STTPower = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.IdPower = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.NamePower = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Description = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.textBoxX5 = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.labelX9 = new DevComponents.DotNetBar.LabelX();
     this.textBoxX6 = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.labelX10 = new DevComponents.DotNetBar.LabelX();
     this.textBoxX7 = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.labelX11 = new DevComponents.DotNetBar.LabelX();
     this.tabItemPower = new DevComponents.DotNetBar.TabItem(this.components);
     this.tabControlPanel2 = new DevComponents.DotNetBar.TabControlPanel();
     this.panelUser = new DevComponents.DotNetBar.PanelEx();
     this.groupBox2 = new System.Windows.Forms.GroupBox();
     this.textBoxX4 = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.labelX8 = new DevComponents.DotNetBar.LabelX();
     this.comboBoxEx1 = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.labelX7 = new DevComponents.DotNetBar.LabelX();
     this.dataGridViewX2 = new DevComponents.DotNetBar.Controls.DataGridViewX();
     this.dataGridViewTextBoxColumn1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.IdUser = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.NameUser = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Password = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.IdKuser2 = new System.Windows.Forms.DataGridViewComboBoxColumn();
     this.Email = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.textBoxX1 = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.labelX4 = new DevComponents.DotNetBar.LabelX();
     this.textBoxX2 = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.labelX5 = new DevComponents.DotNetBar.LabelX();
     this.textBoxX3 = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.labelX6 = new DevComponents.DotNetBar.LabelX();
     this.tabItemUser = new DevComponents.DotNetBar.TabItem(this.components);
     this.tabControlPanel1 = new DevComponents.DotNetBar.TabControlPanel();
     this.panelKUser = new DevComponents.DotNetBar.PanelEx();
     this.groupBox1 = new System.Windows.Forms.GroupBox();
     this.dataGridViewX1 = new DevComponents.DotNetBar.Controls.DataGridViewX();
     this.STT_KUser = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.IdKuser = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.NameKUser = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.NoteKUser = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.txt_NameKUser = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.labelX3 = new DevComponents.DotNetBar.LabelX();
     this.txt_IdKuser = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.labelX2 = new DevComponents.DotNetBar.LabelX();
     this.txt_NoteKUser = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.labelX1 = new DevComponents.DotNetBar.LabelX();
     this.tabItemKUser = new DevComponents.DotNetBar.TabItem(this.components);
     this.btDelete = new DevComponents.DotNetBar.ButtonX();
     this.btUpdate = new DevComponents.DotNetBar.ButtonX();
     this.btAdd = new DevComponents.DotNetBar.ButtonX();
     this.buttonX1 = new DevComponents.DotNetBar.ButtonX();
     this.buttonX2 = new DevComponents.DotNetBar.ButtonX();
     this.buttonX3 = new DevComponents.DotNetBar.ButtonX();
     this.buttonX4 = new DevComponents.DotNetBar.ButtonX();
     this.buttonX5 = new DevComponents.DotNetBar.ButtonX();
     this.buttonX6 = new DevComponents.DotNetBar.ButtonX();
     ((System.ComponentModel.ISupportInitialize)(this.tabControlPhanQuyen)).BeginInit();
     this.tabControlPhanQuyen.SuspendLayout();
     this.tabControlPanel4.SuspendLayout();
     this.panelDTPower.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dataGridViewXPQ)).BeginInit();
     this.tabControlPanel3.SuspendLayout();
     this.panelPower.SuspendLayout();
     this.groupBox3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dataGridViewX3)).BeginInit();
     this.tabControlPanel2.SuspendLayout();
     this.panelUser.SuspendLayout();
     this.groupBox2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dataGridViewX2)).BeginInit();
     this.tabControlPanel1.SuspendLayout();
     this.panelKUser.SuspendLayout();
     this.groupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dataGridViewX1)).BeginInit();
     this.SuspendLayout();
     //
     // tabControlPhanQuyen
     //
     this.tabControlPhanQuyen.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
     this.tabControlPhanQuyen.CanReorderTabs = true;
     this.tabControlPhanQuyen.Controls.Add(this.tabControlPanel2);
     this.tabControlPhanQuyen.Controls.Add(this.tabControlPanel3);
     this.tabControlPhanQuyen.Controls.Add(this.tabControlPanel4);
     this.tabControlPhanQuyen.Controls.Add(this.tabControlPanel1);
     this.tabControlPhanQuyen.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabControlPhanQuyen.Location = new System.Drawing.Point(0, 0);
     this.tabControlPhanQuyen.Name = "tabControlPhanQuyen";
     this.tabControlPhanQuyen.SelectedTabFont = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold);
     this.tabControlPhanQuyen.SelectedTabIndex = 3;
     this.tabControlPhanQuyen.Size = new System.Drawing.Size(618, 385);
     this.tabControlPhanQuyen.TabIndex = 0;
     this.tabControlPhanQuyen.TabLayoutType = DevComponents.DotNetBar.eTabLayoutType.FixedWithNavigationBox;
     this.tabControlPhanQuyen.Tabs.Add(this.tabItemKUser);
     this.tabControlPhanQuyen.Tabs.Add(this.tabItemUser);
     this.tabControlPhanQuyen.Tabs.Add(this.tabItemPower);
     this.tabControlPhanQuyen.Tabs.Add(this.tabItemDTPower);
     this.tabControlPhanQuyen.Text = "tabControl1";
     this.tabControlPhanQuyen.Click += new System.EventHandler(this.tabControlPhanQuyen_Click);
     //
     // tabControlPanel4
     //
     this.tabControlPanel4.Controls.Add(this.panelDTPower);
     this.tabControlPanel4.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabControlPanel4.Location = new System.Drawing.Point(0, 26);
     this.tabControlPanel4.Name = "tabControlPanel4";
     this.tabControlPanel4.Padding = new System.Windows.Forms.Padding(1);
     this.tabControlPanel4.Size = new System.Drawing.Size(611, 290);
     this.tabControlPanel4.Style.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(144)))), ((int)(((byte)(156)))), ((int)(((byte)(187)))));
     this.tabControlPanel4.Style.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(230)))), ((int)(((byte)(233)))), ((int)(((byte)(240)))));
     this.tabControlPanel4.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.tabControlPanel4.Style.BorderColor.Color = System.Drawing.SystemColors.ControlDark;
     this.tabControlPanel4.Style.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Right)
                 | DevComponents.DotNetBar.eBorderSide.Bottom)));
     this.tabControlPanel4.Style.GradientAngle = 90;
     this.tabControlPanel4.TabIndex = 4;
     this.tabControlPanel4.TabItem = this.tabItemDTPower;
     //
     // panelDTPower
     //
     this.panelDTPower.CanvasColor = System.Drawing.SystemColors.Control;
     this.panelDTPower.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.panelDTPower.Controls.Add(this.bt_Save);
     this.panelDTPower.Controls.Add(this.dataGridViewXPQ);
     this.panelDTPower.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panelDTPower.Location = new System.Drawing.Point(1, 1);
     this.panelDTPower.Name = "panelDTPower";
     this.panelDTPower.Size = new System.Drawing.Size(609, 288);
     this.panelDTPower.Style.Alignment = System.Drawing.StringAlignment.Center;
     this.panelDTPower.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.panelDTPower.Style.BackColor2.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.panelDTPower.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.panelDTPower.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.panelDTPower.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.panelDTPower.Style.GradientAngle = 90;
     this.panelDTPower.TabIndex = 1;
     //
     // bt_Save
     //
     this.bt_Save.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.bt_Save.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.bt_Save.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.bt_Save.ForeColor = System.Drawing.Color.Red;
     this.bt_Save.Location = new System.Drawing.Point(1, 1);
     this.bt_Save.Name = "bt_Save";
     this.bt_Save.Size = new System.Drawing.Size(40, 19);
     this.bt_Save.TabIndex = 1;
     this.bt_Save.Text = "Lưu";
     //
     // dataGridViewXPQ
     //
     this.dataGridViewXPQ.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dataGridViewXPQ.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.NghiepVu,
     this.QuanTri,
     this.BanGiamDoc,
     this.TiepTan,
     this.Khac});
     dataGridViewCellStyle3.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle3.BackColor = System.Drawing.SystemColors.Window;
     dataGridViewCellStyle3.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     dataGridViewCellStyle3.ForeColor = System.Drawing.SystemColors.ControlText;
     dataGridViewCellStyle3.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle3.SelectionForeColor = System.Drawing.SystemColors.ControlText;
     dataGridViewCellStyle3.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
     this.dataGridViewXPQ.DefaultCellStyle = dataGridViewCellStyle3;
     this.dataGridViewXPQ.Dock = System.Windows.Forms.DockStyle.Fill;
     this.dataGridViewXPQ.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(208)))), ((int)(((byte)(215)))), ((int)(((byte)(229)))));
     this.dataGridViewXPQ.Location = new System.Drawing.Point(0, 0);
     this.dataGridViewXPQ.Name = "dataGridViewXPQ";
     this.dataGridViewXPQ.Size = new System.Drawing.Size(609, 288);
     this.dataGridViewXPQ.TabIndex = 0;
     //
     // NghiepVu
     //
     this.NghiepVu.HeaderText = "Nghiệp Vụ";
     this.NghiepVu.Name = "NghiepVu";
     this.NghiepVu.Resizable = System.Windows.Forms.DataGridViewTriState.True;
     this.NghiepVu.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     //
     // QuanTri
     //
     this.QuanTri.HeaderText = "Người Quản Trị HT";
     this.QuanTri.Name = "QuanTri";
     this.QuanTri.Width = 155;
     //
     // BanGiamDoc
     //
     this.BanGiamDoc.HeaderText = "Ban Giám Đốc";
     this.BanGiamDoc.Name = "BanGiamDoc";
     //
     // TiepTan
     //
     this.TiepTan.HeaderText = "Tiếp Tân";
     this.TiepTan.Name = "TiepTan";
     //
     // Khac
     //
     this.Khac.HeaderText = "Người Dùng Khác";
     this.Khac.Name = "Khac";
     //
     // tabItemDTPower
     //
     this.tabItemDTPower.AttachedControl = this.tabControlPanel4;
     this.tabItemDTPower.Name = "tabItemDTPower";
     this.tabItemDTPower.Text = "Phân Quyền";
     //
     // tabControlPanel3
     //
     this.tabControlPanel3.Controls.Add(this.panelPower);
     this.tabControlPanel3.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabControlPanel3.Location = new System.Drawing.Point(0, 26);
     this.tabControlPanel3.Name = "tabControlPanel3";
     this.tabControlPanel3.Padding = new System.Windows.Forms.Padding(1);
     this.tabControlPanel3.Size = new System.Drawing.Size(611, 290);
     this.tabControlPanel3.Style.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(144)))), ((int)(((byte)(156)))), ((int)(((byte)(187)))));
     this.tabControlPanel3.Style.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(230)))), ((int)(((byte)(233)))), ((int)(((byte)(240)))));
     this.tabControlPanel3.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.tabControlPanel3.Style.BorderColor.Color = System.Drawing.SystemColors.ControlDark;
     this.tabControlPanel3.Style.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Right)
                 | DevComponents.DotNetBar.eBorderSide.Bottom)));
     this.tabControlPanel3.Style.GradientAngle = 90;
     this.tabControlPanel3.TabIndex = 3;
     this.tabControlPanel3.TabItem = this.tabItemPower;
     //
     // panelPower
     //
     this.panelPower.CanvasColor = System.Drawing.SystemColors.Control;
     this.panelPower.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.panelPower.Controls.Add(this.groupBox3);
     this.panelPower.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panelPower.Location = new System.Drawing.Point(1, 1);
     this.panelPower.Name = "panelPower";
     this.panelPower.Size = new System.Drawing.Size(609, 288);
     this.panelPower.Style.Alignment = System.Drawing.StringAlignment.Center;
     this.panelPower.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.panelPower.Style.BackColor2.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.panelPower.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.panelPower.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.panelPower.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.panelPower.Style.GradientAngle = 90;
     this.panelPower.TabIndex = 1;
     //
     // groupBox3
     //
     this.groupBox3.Controls.Add(this.buttonX4);
     this.groupBox3.Controls.Add(this.buttonX5);
     this.groupBox3.Controls.Add(this.buttonX6);
     this.groupBox3.Controls.Add(this.dataGridViewX3);
     this.groupBox3.Controls.Add(this.textBoxX5);
     this.groupBox3.Controls.Add(this.labelX9);
     this.groupBox3.Controls.Add(this.textBoxX6);
     this.groupBox3.Controls.Add(this.labelX10);
     this.groupBox3.Controls.Add(this.textBoxX7);
     this.groupBox3.Controls.Add(this.labelX11);
     this.groupBox3.Location = new System.Drawing.Point(7, 6);
     this.groupBox3.Name = "groupBox3";
     this.groupBox3.Size = new System.Drawing.Size(599, 279);
     this.groupBox3.TabIndex = 1;
     this.groupBox3.TabStop = false;
     this.groupBox3.Text = "Loại Người Dùng";
     //
     // dataGridViewX3
     //
     this.dataGridViewX3.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dataGridViewX3.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.STTPower,
     this.IdPower,
     this.NamePower,
     this.Description});
     dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle2.BackColor = System.Drawing.SystemColors.Window;
     dataGridViewCellStyle2.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     dataGridViewCellStyle2.ForeColor = System.Drawing.SystemColors.ControlText;
     dataGridViewCellStyle2.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle2.SelectionForeColor = System.Drawing.SystemColors.ControlText;
     dataGridViewCellStyle2.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
     this.dataGridViewX3.DefaultCellStyle = dataGridViewCellStyle2;
     this.dataGridViewX3.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(208)))), ((int)(((byte)(215)))), ((int)(((byte)(229)))));
     this.dataGridViewX3.Location = new System.Drawing.Point(22, 140);
     this.dataGridViewX3.Name = "dataGridViewX3";
     this.dataGridViewX3.Size = new System.Drawing.Size(481, 96);
     this.dataGridViewX3.TabIndex = 9;
     //
     // STTPower
     //
     this.STTPower.HeaderText = "STT";
     this.STTPower.Name = "STTPower";
     this.STTPower.ReadOnly = true;
     this.STTPower.Width = 35;
     //
     // IdPower
     //
     this.IdPower.HeaderText = "Mã Quyền Hạn";
     this.IdPower.Name = "IdPower";
     this.IdPower.Width = 150;
     //
     // NamePower
     //
     this.NamePower.HeaderText = "Tên Quyền Hạn";
     this.NamePower.Name = "NamePower";
     this.NamePower.Width = 150;
     //
     // Description
     //
     this.Description.HeaderText = "Diễn Giải";
     this.Description.Name = "Description";
     //
     // textBoxX5
     //
     //
     //
     //
     this.textBoxX5.Border.Class = "";
     this.textBoxX5.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.textBoxX5.Location = new System.Drawing.Point(141, 64);
     this.textBoxX5.Name = "textBoxX5";
     this.textBoxX5.Size = new System.Drawing.Size(100, 20);
     this.textBoxX5.TabIndex = 8;
     //
     // labelX9
     //
     //
     //
     //
     this.labelX9.BackgroundStyle.Class = "";
     this.labelX9.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX9.Location = new System.Drawing.Point(22, 61);
     this.labelX9.Name = "labelX9";
     this.labelX9.Size = new System.Drawing.Size(113, 23);
     this.labelX9.TabIndex = 7;
     this.labelX9.Text = "Tên Quyền Hạn";
     //
     // textBoxX6
     //
     //
     //
     //
     this.textBoxX6.Border.Class = "";
     this.textBoxX6.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.textBoxX6.Location = new System.Drawing.Point(141, 38);
     this.textBoxX6.Name = "textBoxX6";
     this.textBoxX6.Size = new System.Drawing.Size(100, 20);
     this.textBoxX6.TabIndex = 6;
     //
     // labelX10
     //
     //
     //
     //
     this.labelX10.BackgroundStyle.Class = "";
     this.labelX10.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX10.Location = new System.Drawing.Point(22, 35);
     this.labelX10.Name = "labelX10";
     this.labelX10.Size = new System.Drawing.Size(113, 23);
     this.labelX10.TabIndex = 5;
     this.labelX10.Text = "Mã Quyền Hạn";
     //
     // textBoxX7
     //
     //
     //
     //
     this.textBoxX7.Border.Class = "";
     this.textBoxX7.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.textBoxX7.Location = new System.Drawing.Point(309, 38);
     this.textBoxX7.Name = "textBoxX7";
     this.textBoxX7.Size = new System.Drawing.Size(100, 20);
     this.textBoxX7.TabIndex = 4;
     //
     // labelX11
     //
     //
     //
     //
     this.labelX11.BackgroundStyle.Class = "";
     this.labelX11.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX11.Location = new System.Drawing.Point(247, 35);
     this.labelX11.Name = "labelX11";
     this.labelX11.Size = new System.Drawing.Size(56, 23);
     this.labelX11.TabIndex = 3;
     this.labelX11.Text = "Diễn Giải";
     //
     // tabItemPower
     //
     this.tabItemPower.AttachedControl = this.tabControlPanel3;
     this.tabItemPower.Name = "tabItemPower";
     this.tabItemPower.Text = "Quyền Hạn";
     //
     // tabControlPanel2
     //
     this.tabControlPanel2.Controls.Add(this.panelUser);
     this.tabControlPanel2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabControlPanel2.Location = new System.Drawing.Point(0, 26);
     this.tabControlPanel2.Name = "tabControlPanel2";
     this.tabControlPanel2.Padding = new System.Windows.Forms.Padding(1);
     this.tabControlPanel2.Size = new System.Drawing.Size(618, 359);
     this.tabControlPanel2.Style.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(144)))), ((int)(((byte)(156)))), ((int)(((byte)(187)))));
     this.tabControlPanel2.Style.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(230)))), ((int)(((byte)(233)))), ((int)(((byte)(240)))));
     this.tabControlPanel2.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.tabControlPanel2.Style.BorderColor.Color = System.Drawing.SystemColors.ControlDark;
     this.tabControlPanel2.Style.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Right)
                 | DevComponents.DotNetBar.eBorderSide.Bottom)));
     this.tabControlPanel2.Style.GradientAngle = 90;
     this.tabControlPanel2.TabIndex = 2;
     this.tabControlPanel2.TabItem = this.tabItemUser;
     //
     // panelUser
     //
     this.panelUser.CanvasColor = System.Drawing.SystemColors.Control;
     this.panelUser.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.panelUser.Controls.Add(this.groupBox2);
     this.panelUser.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panelUser.Location = new System.Drawing.Point(1, 1);
     this.panelUser.Name = "panelUser";
     this.panelUser.Size = new System.Drawing.Size(616, 357);
     this.panelUser.Style.Alignment = System.Drawing.StringAlignment.Center;
     this.panelUser.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.panelUser.Style.BackColor2.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.panelUser.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.panelUser.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.panelUser.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.panelUser.Style.GradientAngle = 90;
     this.panelUser.TabIndex = 1;
     //
     // groupBox2
     //
     this.groupBox2.Controls.Add(this.buttonX1);
     this.groupBox2.Controls.Add(this.buttonX2);
     this.groupBox2.Controls.Add(this.buttonX3);
     this.groupBox2.Controls.Add(this.textBoxX4);
     this.groupBox2.Controls.Add(this.labelX8);
     this.groupBox2.Controls.Add(this.comboBoxEx1);
     this.groupBox2.Controls.Add(this.labelX7);
     this.groupBox2.Controls.Add(this.dataGridViewX2);
     this.groupBox2.Controls.Add(this.textBoxX1);
     this.groupBox2.Controls.Add(this.labelX4);
     this.groupBox2.Controls.Add(this.textBoxX2);
     this.groupBox2.Controls.Add(this.labelX5);
     this.groupBox2.Controls.Add(this.textBoxX3);
     this.groupBox2.Controls.Add(this.labelX6);
     this.groupBox2.Location = new System.Drawing.Point(11, 13);
     this.groupBox2.Name = "groupBox2";
     this.groupBox2.Size = new System.Drawing.Size(594, 333);
     this.groupBox2.TabIndex = 1;
     this.groupBox2.TabStop = false;
     this.groupBox2.Text = "Người Dùng";
     //
     // textBoxX4
     //
     //
     //
     //
     this.textBoxX4.Border.Class = "TextBoxBorder";
     this.textBoxX4.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.textBoxX4.Location = new System.Drawing.Point(141, 90);
     this.textBoxX4.Name = "textBoxX4";
     this.textBoxX4.Size = new System.Drawing.Size(100, 20);
     this.textBoxX4.TabIndex = 13;
     //
     // labelX8
     //
     //
     //
     //
     this.labelX8.BackgroundStyle.Class = "";
     this.labelX8.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX8.Location = new System.Drawing.Point(22, 90);
     this.labelX8.Name = "labelX8";
     this.labelX8.Size = new System.Drawing.Size(39, 20);
     this.labelX8.TabIndex = 12;
     this.labelX8.Text = "Email";
     //
     // comboBoxEx1
     //
     this.comboBoxEx1.DisplayMember = "Text";
     this.comboBoxEx1.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.comboBoxEx1.FormattingEnabled = true;
     this.comboBoxEx1.ItemHeight = 14;
     this.comboBoxEx1.Location = new System.Drawing.Point(352, 66);
     this.comboBoxEx1.Name = "comboBoxEx1";
     this.comboBoxEx1.Size = new System.Drawing.Size(100, 20);
     this.comboBoxEx1.TabIndex = 11;
     //
     // labelX7
     //
     //
     //
     //
     this.labelX7.BackgroundStyle.Class = "";
     this.labelX7.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX7.Location = new System.Drawing.Point(257, 65);
     this.labelX7.Name = "labelX7";
     this.labelX7.Size = new System.Drawing.Size(88, 23);
     this.labelX7.TabIndex = 10;
     this.labelX7.Text = "Loại Người Dùng";
     //
     // dataGridViewX2
     //
     this.dataGridViewX2.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dataGridViewX2.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.dataGridViewTextBoxColumn1,
     this.IdUser,
     this.NameUser,
     this.Password,
     this.IdKuser2,
     this.Email});
     dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle1.BackColor = System.Drawing.SystemColors.Window;
     dataGridViewCellStyle1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     dataGridViewCellStyle1.ForeColor = System.Drawing.SystemColors.ControlText;
     dataGridViewCellStyle1.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle1.SelectionForeColor = System.Drawing.SystemColors.ControlText;
     dataGridViewCellStyle1.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
     this.dataGridViewX2.DefaultCellStyle = dataGridViewCellStyle1;
     this.dataGridViewX2.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(208)))), ((int)(((byte)(215)))), ((int)(((byte)(229)))));
     this.dataGridViewX2.Location = new System.Drawing.Point(6, 171);
     this.dataGridViewX2.Name = "dataGridViewX2";
     this.dataGridViewX2.Size = new System.Drawing.Size(583, 156);
     this.dataGridViewX2.TabIndex = 9;
     //
     // dataGridViewTextBoxColumn1
     //
     this.dataGridViewTextBoxColumn1.HeaderText = "STT";
     this.dataGridViewTextBoxColumn1.Name = "dataGridViewTextBoxColumn1";
     this.dataGridViewTextBoxColumn1.ReadOnly = true;
     this.dataGridViewTextBoxColumn1.Width = 35;
     //
     // IdUser
     //
     this.IdUser.HeaderText = "Mã Người Dùng";
     this.IdUser.Name = "IdUser";
     this.IdUser.Width = 107;
     //
     // NameUser
     //
     this.NameUser.HeaderText = "Tên Người Dùng";
     this.NameUser.Name = "NameUser";
     this.NameUser.Width = 115;
     //
     // Password
     //
     this.Password.HeaderText = "Mật Khẩu";
     this.Password.Name = "Password";
     this.Password.Resizable = System.Windows.Forms.DataGridViewTriState.True;
     this.Password.Width = 80;
     //
     // IdKuser2
     //
     this.IdKuser2.HeaderText = "Loại Người Dùng";
     this.IdKuser2.Name = "IdKuser2";
     //
     // Email
     //
     this.Email.HeaderText = "Email";
     this.Email.Name = "Email";
     //
     // textBoxX1
     //
     //
     //
     //
     this.textBoxX1.Border.Class = "TextBoxBorder";
     this.textBoxX1.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.textBoxX1.Location = new System.Drawing.Point(141, 64);
     this.textBoxX1.Name = "textBoxX1";
     this.textBoxX1.Size = new System.Drawing.Size(100, 20);
     this.textBoxX1.TabIndex = 8;
     //
     // labelX4
     //
     //
     //
     //
     this.labelX4.BackgroundStyle.Class = "";
     this.labelX4.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX4.Location = new System.Drawing.Point(22, 65);
     this.labelX4.Name = "labelX4";
     this.labelX4.Size = new System.Drawing.Size(81, 23);
     this.labelX4.TabIndex = 7;
     this.labelX4.Text = "Tên Người Dùng";
     //
     // textBoxX2
     //
     //
     //
     //
     this.textBoxX2.Border.Class = "TextBoxBorder";
     this.textBoxX2.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.textBoxX2.Location = new System.Drawing.Point(141, 38);
     this.textBoxX2.Name = "textBoxX2";
     this.textBoxX2.Size = new System.Drawing.Size(100, 20);
     this.textBoxX2.TabIndex = 6;
     //
     // labelX5
     //
     //
     //
     //
     this.labelX5.BackgroundStyle.Class = "";
     this.labelX5.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX5.Location = new System.Drawing.Point(22, 38);
     this.labelX5.Name = "labelX5";
     this.labelX5.Size = new System.Drawing.Size(81, 23);
     this.labelX5.TabIndex = 5;
     this.labelX5.Text = "Mã Người Dùng";
     //
     // textBoxX3
     //
     //
     //
     //
     this.textBoxX3.Border.Class = "TextBoxBorder";
     this.textBoxX3.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.textBoxX3.Location = new System.Drawing.Point(352, 38);
     this.textBoxX3.Name = "textBoxX3";
     this.textBoxX3.Size = new System.Drawing.Size(100, 20);
     this.textBoxX3.TabIndex = 4;
     //
     // labelX6
     //
     //
     //
     //
     this.labelX6.BackgroundStyle.Class = "";
     this.labelX6.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX6.Location = new System.Drawing.Point(257, 35);
     this.labelX6.Name = "labelX6";
     this.labelX6.Size = new System.Drawing.Size(56, 23);
     this.labelX6.TabIndex = 3;
     this.labelX6.Text = "Mật Khẩu";
     //
     // tabItemUser
     //
     this.tabItemUser.AttachedControl = this.tabControlPanel2;
     this.tabItemUser.Name = "tabItemUser";
     this.tabItemUser.Text = "Người Dùng";
     //
     // tabControlPanel1
     //
     this.tabControlPanel1.Controls.Add(this.panelKUser);
     this.tabControlPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabControlPanel1.Location = new System.Drawing.Point(0, 26);
     this.tabControlPanel1.Name = "tabControlPanel1";
     this.tabControlPanel1.Padding = new System.Windows.Forms.Padding(1);
     this.tabControlPanel1.Size = new System.Drawing.Size(611, 290);
     this.tabControlPanel1.Style.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(144)))), ((int)(((byte)(156)))), ((int)(((byte)(187)))));
     this.tabControlPanel1.Style.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(230)))), ((int)(((byte)(233)))), ((int)(((byte)(240)))));
     this.tabControlPanel1.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.tabControlPanel1.Style.BorderColor.Color = System.Drawing.SystemColors.ControlDark;
     this.tabControlPanel1.Style.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Right)
                 | DevComponents.DotNetBar.eBorderSide.Bottom)));
     this.tabControlPanel1.Style.GradientAngle = 90;
     this.tabControlPanel1.TabIndex = 1;
     this.tabControlPanel1.TabItem = this.tabItemKUser;
     //
     // panelKUser
     //
     this.panelKUser.CanvasColor = System.Drawing.SystemColors.Control;
     this.panelKUser.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.panelKUser.Controls.Add(this.groupBox1);
     this.panelKUser.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panelKUser.Location = new System.Drawing.Point(1, 1);
     this.panelKUser.Name = "panelKUser";
     this.panelKUser.Size = new System.Drawing.Size(609, 288);
     this.panelKUser.Style.Alignment = System.Drawing.StringAlignment.Center;
     this.panelKUser.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.panelKUser.Style.BackColor2.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.panelKUser.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.panelKUser.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.panelKUser.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.panelKUser.Style.GradientAngle = 90;
     this.panelKUser.TabIndex = 0;
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.btDelete);
     this.groupBox1.Controls.Add(this.btUpdate);
     this.groupBox1.Controls.Add(this.btAdd);
     this.groupBox1.Controls.Add(this.dataGridViewX1);
     this.groupBox1.Controls.Add(this.txt_NameKUser);
     this.groupBox1.Controls.Add(this.labelX3);
     this.groupBox1.Controls.Add(this.txt_IdKuser);
     this.groupBox1.Controls.Add(this.labelX2);
     this.groupBox1.Controls.Add(this.txt_NoteKUser);
     this.groupBox1.Controls.Add(this.labelX1);
     this.groupBox1.Location = new System.Drawing.Point(7, 12);
     this.groupBox1.Name = "groupBox1";
     this.groupBox1.Size = new System.Drawing.Size(599, 273);
     this.groupBox1.TabIndex = 0;
     this.groupBox1.TabStop = false;
     this.groupBox1.Text = "Loại Người Dùng";
     //
     // dataGridViewX1
     //
     this.dataGridViewX1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dataGridViewX1.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.STT_KUser,
     this.IdKuser,
     this.NameKUser,
     this.NoteKUser});
     dataGridViewCellStyle4.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle4.BackColor = System.Drawing.SystemColors.Window;
     dataGridViewCellStyle4.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     dataGridViewCellStyle4.ForeColor = System.Drawing.SystemColors.ControlText;
     dataGridViewCellStyle4.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle4.SelectionForeColor = System.Drawing.SystemColors.ControlText;
     dataGridViewCellStyle4.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
     this.dataGridViewX1.DefaultCellStyle = dataGridViewCellStyle4;
     this.dataGridViewX1.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(208)))), ((int)(((byte)(215)))), ((int)(((byte)(229)))));
     this.dataGridViewX1.Location = new System.Drawing.Point(22, 140);
     this.dataGridViewX1.Name = "dataGridViewX1";
     this.dataGridViewX1.Size = new System.Drawing.Size(481, 96);
     this.dataGridViewX1.TabIndex = 9;
     //
     // STT_KUser
     //
     this.STT_KUser.HeaderText = "STT";
     this.STT_KUser.Name = "STT_KUser";
     this.STT_KUser.ReadOnly = true;
     this.STT_KUser.Width = 35;
     //
     // IdKuser
     //
     this.IdKuser.HeaderText = "Mã Loại Người Dùng";
     this.IdKuser.Name = "IdKuser";
     this.IdKuser.Width = 150;
     //
     // NameKUser
     //
     this.NameKUser.HeaderText = "Tên Loại Người Dùng";
     this.NameKUser.Name = "NameKUser";
     this.NameKUser.Width = 150;
     //
     // NoteKUser
     //
     this.NoteKUser.HeaderText = "Ghi Chú";
     this.NoteKUser.Name = "NoteKUser";
     //
     // txt_NameKUser
     //
     //
     //
     //
     this.txt_NameKUser.Border.Class = "";
     this.txt_NameKUser.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txt_NameKUser.Location = new System.Drawing.Point(141, 64);
     this.txt_NameKUser.Name = "txt_NameKUser";
     this.txt_NameKUser.Size = new System.Drawing.Size(100, 20);
     this.txt_NameKUser.TabIndex = 8;
     //
     // labelX3
     //
     //
     //
     //
     this.labelX3.BackgroundStyle.Class = "";
     this.labelX3.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX3.Location = new System.Drawing.Point(22, 65);
     this.labelX3.Name = "labelX3";
     this.labelX3.Size = new System.Drawing.Size(113, 23);
     this.labelX3.TabIndex = 7;
     this.labelX3.Text = "Tên Loại Người Dùng";
     //
     // txt_IdKuser
     //
     //
     //
     //
     this.txt_IdKuser.Border.Class = "";
     this.txt_IdKuser.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txt_IdKuser.Location = new System.Drawing.Point(141, 38);
     this.txt_IdKuser.Name = "txt_IdKuser";
     this.txt_IdKuser.Size = new System.Drawing.Size(100, 20);
     this.txt_IdKuser.TabIndex = 6;
     //
     // labelX2
     //
     //
     //
     //
     this.labelX2.BackgroundStyle.Class = "";
     this.labelX2.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX2.Location = new System.Drawing.Point(22, 32);
     this.labelX2.Name = "labelX2";
     this.labelX2.Size = new System.Drawing.Size(113, 23);
     this.labelX2.TabIndex = 5;
     this.labelX2.Text = "Mã Loại Người Dùng";
     //
     // txt_NoteKUser
     //
     //
     //
     //
     this.txt_NoteKUser.Border.Class = "";
     this.txt_NoteKUser.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txt_NoteKUser.Location = new System.Drawing.Point(309, 38);
     this.txt_NoteKUser.Name = "txt_NoteKUser";
     this.txt_NoteKUser.Size = new System.Drawing.Size(100, 20);
     this.txt_NoteKUser.TabIndex = 4;
     //
     // labelX1
     //
     //
     //
     //
     this.labelX1.BackgroundStyle.Class = "";
     this.labelX1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX1.Location = new System.Drawing.Point(247, 38);
     this.labelX1.Name = "labelX1";
     this.labelX1.Size = new System.Drawing.Size(56, 20);
     this.labelX1.TabIndex = 3;
     this.labelX1.Text = "Ghi Chú";
     //
     // tabItemKUser
     //
     this.tabItemKUser.AttachedControl = this.tabControlPanel1;
     this.tabItemKUser.Name = "tabItemKUser";
     this.tabItemKUser.Text = "Loại Người Dùng";
     //
     // btDelete
     //
     this.btDelete.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btDelete.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.btDelete.Location = new System.Drawing.Point(141, 111);
     this.btDelete.Name = "btDelete";
     this.btDelete.Size = new System.Drawing.Size(75, 23);
     this.btDelete.TabIndex = 38;
     this.btDelete.Text = "Xóa";
     //
     // btUpdate
     //
     this.btUpdate.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btUpdate.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.btUpdate.Location = new System.Drawing.Point(247, 111);
     this.btUpdate.Name = "btUpdate";
     this.btUpdate.Size = new System.Drawing.Size(75, 23);
     this.btUpdate.TabIndex = 39;
     this.btUpdate.Text = "Sửa";
     //
     // btAdd
     //
     this.btAdd.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btAdd.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.btAdd.Location = new System.Drawing.Point(22, 111);
     this.btAdd.Name = "btAdd";
     this.btAdd.Size = new System.Drawing.Size(75, 23);
     this.btAdd.TabIndex = 37;
     this.btAdd.Text = "Thêm";
     //
     // buttonX1
     //
     this.buttonX1.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.buttonX1.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.buttonX1.Location = new System.Drawing.Point(266, 124);
     this.buttonX1.Name = "buttonX1";
     this.buttonX1.Size = new System.Drawing.Size(75, 23);
     this.buttonX1.TabIndex = 41;
     this.buttonX1.Text = "Xóa";
     //
     // buttonX2
     //
     this.buttonX2.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.buttonX2.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.buttonX2.Location = new System.Drawing.Point(372, 124);
     this.buttonX2.Name = "buttonX2";
     this.buttonX2.Size = new System.Drawing.Size(75, 23);
     this.buttonX2.TabIndex = 42;
     this.buttonX2.Text = "Sửa";
     //
     // buttonX3
     //
     this.buttonX3.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.buttonX3.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.buttonX3.Location = new System.Drawing.Point(147, 124);
     this.buttonX3.Name = "buttonX3";
     this.buttonX3.Size = new System.Drawing.Size(75, 23);
     this.buttonX3.TabIndex = 40;
     this.buttonX3.Text = "Thêm";
     //
     // buttonX4
     //
     this.buttonX4.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.buttonX4.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.buttonX4.Location = new System.Drawing.Point(141, 99);
     this.buttonX4.Name = "buttonX4";
     this.buttonX4.Size = new System.Drawing.Size(75, 23);
     this.buttonX4.TabIndex = 41;
     this.buttonX4.Text = "Xóa";
     //
     // buttonX5
     //
     this.buttonX5.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.buttonX5.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.buttonX5.Location = new System.Drawing.Point(247, 99);
     this.buttonX5.Name = "buttonX5";
     this.buttonX5.Size = new System.Drawing.Size(75, 23);
     this.buttonX5.TabIndex = 42;
     this.buttonX5.Text = "Sửa";
     //
     // buttonX6
     //
     this.buttonX6.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.buttonX6.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.buttonX6.Location = new System.Drawing.Point(22, 99);
     this.buttonX6.Name = "buttonX6";
     this.buttonX6.Size = new System.Drawing.Size(75, 23);
     this.buttonX6.TabIndex = 40;
     this.buttonX6.Text = "Thêm";
     //
     // frmQTHT
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(618, 385);
     this.Controls.Add(this.tabControlPhanQuyen);
     this.Name = "frmQTHT";
     this.Text = "Quản Trị Hệ Thống";
     this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.frmQTHT_FormClosing);
     this.Load += new System.EventHandler(this.frmAccount_Load);
     ((System.ComponentModel.ISupportInitialize)(this.tabControlPhanQuyen)).EndInit();
     this.tabControlPhanQuyen.ResumeLayout(false);
     this.tabControlPanel4.ResumeLayout(false);
     this.panelDTPower.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.dataGridViewXPQ)).EndInit();
     this.tabControlPanel3.ResumeLayout(false);
     this.panelPower.ResumeLayout(false);
     this.groupBox3.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.dataGridViewX3)).EndInit();
     this.tabControlPanel2.ResumeLayout(false);
     this.panelUser.ResumeLayout(false);
     this.groupBox2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.dataGridViewX2)).EndInit();
     this.tabControlPanel1.ResumeLayout(false);
     this.panelKUser.ResumeLayout(false);
     this.groupBox1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.dataGridViewX1)).EndInit();
     this.ResumeLayout(false);
 }
コード例 #54
0
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormBase));
     this.panelEx1    = new DevComponents.DotNetBar.PanelEx();
     this.labelX1     = new DevComponents.DotNetBar.LabelX();
     this.panelEx3    = new DevComponents.DotNetBar.PanelEx();
     this.panelEx2    = new DevComponents.DotNetBar.PanelEx();
     this.line1       = new DevComponents.DotNetBar.Controls.Line();
     this.line2       = new DevComponents.DotNetBar.Controls.Line();
     this.line3       = new DevComponents.DotNetBar.Controls.Line();
     this.line4       = new DevComponents.DotNetBar.Controls.Line();
     this.bar1        = new DevComponents.DotNetBar.Bar();
     this.pictureBox2 = new System.Windows.Forms.PictureBox();
     this.pictureBox3 = new System.Windows.Forms.PictureBox();
     this.pictureBox4 = new System.Windows.Forms.PictureBox();
     this.pictureBox1 = new System.Windows.Forms.PictureBox();
     this.panelEx1.SuspendLayout();
     this.panelEx3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.bar1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
     this.SuspendLayout();
     //
     // panelEx1
     //
     this.panelEx1.CanvasColor      = System.Drawing.SystemColors.ButtonShadow;
     this.panelEx1.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.panelEx1.Controls.Add(this.labelX1);
     this.panelEx1.Controls.Add(this.panelEx3);
     this.panelEx1.Controls.Add(this.panelEx2);
     this.panelEx1.Dock                              = System.Windows.Forms.DockStyle.Top;
     this.panelEx1.Location                          = new System.Drawing.Point(1, 1);
     this.panelEx1.Name                              = "panelEx1";
     this.panelEx1.Size                              = new System.Drawing.Size(865, 43);
     this.panelEx1.Style.Alignment                   = System.Drawing.StringAlignment.Center;
     this.panelEx1.Style.BackColor1.Color            = System.Drawing.Color.DimGray;
     this.panelEx1.Style.BackColor2.Color            = System.Drawing.Color.LightGray;
     this.panelEx1.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.panelEx1.Style.ForeColor.ColorSchemePart   = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.panelEx1.Style.GradientAngle               = 90;
     this.panelEx1.TabIndex                          = 1;
     this.panelEx1.DoubleClick                      += new System.EventHandler(this.panelEx1_DoubleClick);
     this.panelEx1.MouseDown                        += new System.Windows.Forms.MouseEventHandler(this.panel2_MouseDown);
     this.panelEx1.MouseMove                        += new System.Windows.Forms.MouseEventHandler(this.panel2_MouseMove);
     this.panelEx1.MouseUp                          += new System.Windows.Forms.MouseEventHandler(this.panel2_MouseUp);
     //
     // labelX1
     //
     this.labelX1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
     //
     //
     //
     this.labelX1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX1.Font         = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.labelX1.ForeColor    = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
     this.labelX1.Location     = new System.Drawing.Point(92, 10);
     this.labelX1.Name         = "labelX1";
     this.labelX1.Size         = new System.Drawing.Size(633, 23);
     this.labelX1.TabIndex     = 1;
     this.labelX1.DoubleClick += new System.EventHandler(this.panelEx1_DoubleClick);
     this.labelX1.MouseDown   += new System.Windows.Forms.MouseEventHandler(this.panel2_MouseDown);
     this.labelX1.MouseMove   += new System.Windows.Forms.MouseEventHandler(this.panel2_MouseMove);
     this.labelX1.MouseUp     += new System.Windows.Forms.MouseEventHandler(this.panel2_MouseUp);
     //
     // panelEx3
     //
     this.panelEx3.CanvasColor      = System.Drawing.SystemColors.Control;
     this.panelEx3.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.panelEx3.Controls.Add(this.pictureBox2);
     this.panelEx3.Controls.Add(this.pictureBox3);
     this.panelEx3.Controls.Add(this.pictureBox4);
     this.panelEx3.Controls.Add(this.pictureBox1);
     this.panelEx3.Dock                              = System.Windows.Forms.DockStyle.Right;
     this.panelEx3.Location                          = new System.Drawing.Point(763, 0);
     this.panelEx3.Name                              = "panelEx3";
     this.panelEx3.Size                              = new System.Drawing.Size(102, 43);
     this.panelEx3.Style.Alignment                   = System.Drawing.StringAlignment.Center;
     this.panelEx3.Style.BackColor1.Color            = System.Drawing.Color.DimGray;
     this.panelEx3.Style.BackColor2.Color            = System.Drawing.Color.LightGray;
     this.panelEx3.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.panelEx3.Style.ForeColor.ColorSchemePart   = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.panelEx3.Style.GradientAngle               = 90;
     this.panelEx3.TabIndex                          = 3;
     this.panelEx3.DoubleClick                      += new System.EventHandler(this.panelEx1_DoubleClick);
     this.panelEx3.MouseDown                        += new System.Windows.Forms.MouseEventHandler(this.panel2_MouseDown);
     this.panelEx3.MouseMove                        += new System.Windows.Forms.MouseEventHandler(this.panel2_MouseMove);
     this.panelEx3.MouseUp                          += new System.Windows.Forms.MouseEventHandler(this.panel2_MouseUp);
     //
     // panelEx2
     //
     this.panelEx2.CanvasColor                       = System.Drawing.SystemColors.Control;
     this.panelEx2.ColorSchemeStyle                  = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.panelEx2.Dock                              = System.Windows.Forms.DockStyle.Left;
     this.panelEx2.Location                          = new System.Drawing.Point(0, 0);
     this.panelEx2.Name                              = "panelEx2";
     this.panelEx2.Size                              = new System.Drawing.Size(82, 43);
     this.panelEx2.Style.Alignment                   = System.Drawing.StringAlignment.Center;
     this.panelEx2.Style.BackColor1.Color            = System.Drawing.Color.DimGray;
     this.panelEx2.Style.BackColor2.Color            = System.Drawing.Color.LightGray;
     this.panelEx2.Style.BackgroundImage             = global::IVX.Live.MainForm.Properties.Resources.bocom;
     this.panelEx2.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.panelEx2.Style.ForeColor.ColorSchemePart   = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.panelEx2.Style.GradientAngle               = 90;
     this.panelEx2.TabIndex                          = 2;
     this.panelEx2.DoubleClick                      += new System.EventHandler(this.panelEx2_DoubleClick);
     this.panelEx2.MouseDown                        += new System.Windows.Forms.MouseEventHandler(this.panel2_MouseDown);
     this.panelEx2.MouseMove                        += new System.Windows.Forms.MouseEventHandler(this.panel2_MouseMove);
     this.panelEx2.MouseUp                          += new System.Windows.Forms.MouseEventHandler(this.panel2_MouseUp);
     //
     // line1
     //
     this.line1.Dock      = System.Windows.Forms.DockStyle.Top;
     this.line1.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(124)))), ((int)(((byte)(124)))), ((int)(((byte)(124)))));
     this.line1.Location  = new System.Drawing.Point(0, 0);
     this.line1.Name      = "line1";
     this.line1.Size      = new System.Drawing.Size(867, 1);
     this.line1.TabIndex  = 6;
     this.line1.Text      = "line1";
     //
     // line2
     //
     this.line2.Dock      = System.Windows.Forms.DockStyle.Bottom;
     this.line2.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(124)))), ((int)(((byte)(124)))), ((int)(((byte)(124)))));
     this.line2.Location  = new System.Drawing.Point(0, 694);
     this.line2.Name      = "line2";
     this.line2.Size      = new System.Drawing.Size(867, 1);
     this.line2.TabIndex  = 6;
     this.line2.Text      = "line1";
     //
     // line3
     //
     this.line3.Dock         = System.Windows.Forms.DockStyle.Left;
     this.line3.ForeColor    = System.Drawing.Color.FromArgb(((int)(((byte)(124)))), ((int)(((byte)(124)))), ((int)(((byte)(124)))));
     this.line3.Location     = new System.Drawing.Point(0, 1);
     this.line3.Name         = "line3";
     this.line3.Size         = new System.Drawing.Size(1, 667);
     this.line3.TabIndex     = 6;
     this.line3.Text         = "line1";
     this.line3.VerticalLine = true;
     //
     // line4
     //
     this.line4.Dock         = System.Windows.Forms.DockStyle.Right;
     this.line4.ForeColor    = System.Drawing.Color.FromArgb(((int)(((byte)(124)))), ((int)(((byte)(124)))), ((int)(((byte)(124)))));
     this.line4.Location     = new System.Drawing.Point(866, 1);
     this.line4.Name         = "line4";
     this.line4.Size         = new System.Drawing.Size(1, 667);
     this.line4.TabIndex     = 6;
     this.line4.Text         = "line1";
     this.line4.VerticalLine = true;
     //
     // bar1
     //
     this.bar1.AccessibleDescription = "DotNetBar Bar (bar1)";
     this.bar1.AccessibleName        = "DotNetBar Bar";
     this.bar1.AccessibleRole        = System.Windows.Forms.AccessibleRole.StatusBar;
     this.bar1.AntiAlias             = true;
     this.bar1.BarType         = DevComponents.DotNetBar.eBarType.StatusBar;
     this.bar1.Dock            = System.Windows.Forms.DockStyle.Bottom;
     this.bar1.Font            = new System.Drawing.Font("微软雅黑", 9F);
     this.bar1.GrabHandleStyle = DevComponents.DotNetBar.eGrabHandleStyle.ResizeHandle;
     this.bar1.Location        = new System.Drawing.Point(0, 668);
     this.bar1.Name            = "bar1";
     this.bar1.Size            = new System.Drawing.Size(867, 26);
     this.bar1.Stretch         = true;
     this.bar1.Style           = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.bar1.TabIndex        = 5;
     this.bar1.TabStop         = false;
     this.bar1.Text            = "bar1";
     this.bar1.Visible         = false;
     //
     // pictureBox2
     //
     this.pictureBox2.Anchor    = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.pictureBox2.BackColor = System.Drawing.Color.Transparent;
     this.pictureBox2.Image     = global::IVX.Live.MainForm.Properties.Resources.最大化;
     this.pictureBox2.Location  = new System.Drawing.Point(36, 11);
     this.pictureBox2.Name      = "pictureBox2";
     this.pictureBox2.Size      = new System.Drawing.Size(30, 21);
     this.pictureBox2.SizeMode  = System.Windows.Forms.PictureBoxSizeMode.Zoom;
     this.pictureBox2.TabIndex  = 5;
     this.pictureBox2.TabStop   = false;
     this.pictureBox2.Click    += new System.EventHandler(this.pictureBox2_Click);
     //
     // pictureBox3
     //
     this.pictureBox3.Anchor    = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.pictureBox3.BackColor = System.Drawing.Color.Transparent;
     this.pictureBox3.Image     = global::IVX.Live.MainForm.Properties.Resources.窗口化;
     this.pictureBox3.Location  = new System.Drawing.Point(36, 11);
     this.pictureBox3.Name      = "pictureBox3";
     this.pictureBox3.Size      = new System.Drawing.Size(30, 21);
     this.pictureBox3.SizeMode  = System.Windows.Forms.PictureBoxSizeMode.Zoom;
     this.pictureBox3.TabIndex  = 7;
     this.pictureBox3.TabStop   = false;
     this.pictureBox3.Click    += new System.EventHandler(this.pictureBox3_Click);
     //
     // pictureBox4
     //
     this.pictureBox4.Anchor    = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.pictureBox4.BackColor = System.Drawing.Color.Transparent;
     this.pictureBox4.Image     = global::IVX.Live.MainForm.Properties.Resources.最小化;
     this.pictureBox4.Location  = new System.Drawing.Point(6, 11);
     this.pictureBox4.Name      = "pictureBox4";
     this.pictureBox4.Size      = new System.Drawing.Size(30, 21);
     this.pictureBox4.SizeMode  = System.Windows.Forms.PictureBoxSizeMode.Zoom;
     this.pictureBox4.TabIndex  = 6;
     this.pictureBox4.TabStop   = false;
     this.pictureBox4.Click    += new System.EventHandler(this.pictureBox4_Click);
     //
     // pictureBox1
     //
     this.pictureBox1.Anchor    = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.pictureBox1.BackColor = System.Drawing.Color.Transparent;
     this.pictureBox1.Image     = global::IVX.Live.MainForm.Properties.Resources.关闭;
     this.pictureBox1.Location  = new System.Drawing.Point(66, 11);
     this.pictureBox1.Name      = "pictureBox1";
     this.pictureBox1.Size      = new System.Drawing.Size(30, 21);
     this.pictureBox1.SizeMode  = System.Windows.Forms.PictureBoxSizeMode.Zoom;
     this.pictureBox1.TabIndex  = 4;
     this.pictureBox1.TabStop   = false;
     this.pictureBox1.Click    += new System.EventHandler(this.pictureBox1_Click);
     //
     // FormBase
     //
     this.ClientSize = new System.Drawing.Size(867, 695);
     this.ControlBox = false;
     this.Controls.Add(this.panelEx1);
     this.Controls.Add(this.line4);
     this.Controls.Add(this.line3);
     this.Controls.Add(this.line1);
     this.Controls.Add(this.bar1);
     this.Controls.Add(this.line2);
     this.DoubleBuffered  = true;
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
     this.Icon            = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MinimumSize     = new System.Drawing.Size(400, 200);
     this.Name            = "FormBase";
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.panelEx1.ResumeLayout(false);
     this.panelEx3.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.bar1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
     this.ResumeLayout(false);
 }
コード例 #55
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 protected void InitializeComponent()
 {
     this.smPanel1        = new LlamaCarbonCopy.Controls.BaseControls.SMPanel();
     this.panelEx1        = new DevComponents.DotNetBar.PanelEx();
     this.rtxtMessage     = new System.Windows.Forms.RichTextBox();
     this.OK_smButton     = new LlamaCarbonCopy.Controls.BaseControls.SMButton();
     this.Cancel_smButton = new LlamaCarbonCopy.Controls.BaseControls.SMButton();
     this.pictureBox1     = new System.Windows.Forms.PictureBox();
     this.smPanel1.SuspendLayout();
     this.panelEx1.SuspendLayout();
     this.SuspendLayout();
     //
     // smPanel1
     //
     this.smPanel1.BackColor = System.Drawing.Color.Transparent;
     this.smPanel1.Controls.Add(this.panelEx1);
     this.smPanel1.DataSource         = null;
     this.smPanel1.DataSourceProperty = null;
     this.smPanel1.Dock          = System.Windows.Forms.DockStyle.Fill;
     this.smPanel1.Font          = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.smPanel1.LocalProperty = null;
     this.smPanel1.Location      = new System.Drawing.Point(0, 0);
     this.smPanel1.Name          = "smPanel1";
     this.smPanel1.Size          = new System.Drawing.Size(392, 200);
     this.smPanel1.TabIndex      = 0;
     //
     // panelEx1
     //
     this.panelEx1.CanvasColor = System.Drawing.SystemColors.Control;
     this.panelEx1.Controls.Add(this.rtxtMessage);
     this.panelEx1.Controls.Add(this.OK_smButton);
     this.panelEx1.Controls.Add(this.Cancel_smButton);
     this.panelEx1.Controls.Add(this.pictureBox1);
     this.panelEx1.Dock                              = System.Windows.Forms.DockStyle.Fill;
     this.panelEx1.Location                          = new System.Drawing.Point(0, 0);
     this.panelEx1.Name                              = "panelEx1";
     this.panelEx1.Size                              = new System.Drawing.Size(392, 200);
     this.panelEx1.Style.Alignment                   = System.Drawing.StringAlignment.Center;
     this.panelEx1.Style.BackColor1.Color            = System.Drawing.Color.FromArgb(((System.Byte)(142)), ((System.Byte)(179)), ((System.Byte)(231)));
     this.panelEx1.Style.BackColor2.Color            = System.Drawing.Color.FromArgb(((System.Byte)(223)), ((System.Byte)(237)), ((System.Byte)(254)));
     this.panelEx1.Style.Border                      = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.panelEx1.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.panelEx1.Style.ForeColor.ColorSchemePart   = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.panelEx1.Style.GradientAngle               = 90;
     this.panelEx1.TabIndex                          = 4;
     //
     // rtxtMessage
     //
     this.rtxtMessage.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.rtxtMessage.Location    = new System.Drawing.Point(126, 10);
     this.rtxtMessage.Name        = "rtxtMessage";
     this.rtxtMessage.ReadOnly    = true;
     this.rtxtMessage.Size        = new System.Drawing.Size(256, 142);
     this.rtxtMessage.TabIndex    = 4;
     this.rtxtMessage.Text        = "";
     //
     // OK_smButton
     //
     this.OK_smButton.BackColor          = System.Drawing.Color.White;
     this.OK_smButton.DataSource         = null;
     this.OK_smButton.DataSourceProperty = null;
     this.OK_smButton.Font          = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.OK_smButton.LocalProperty = null;
     this.OK_smButton.Location      = new System.Drawing.Point(12, 164);
     this.OK_smButton.Name          = "OK_smButton";
     this.OK_smButton.Size          = new System.Drawing.Size(102, 27);
     this.OK_smButton.TabIndex      = 0;
     this.OK_smButton.Text          = "Ok";
     this.OK_smButton.Click        += new System.EventHandler(this.OK_smButton_Click);
     //
     // Cancel_smButton
     //
     this.Cancel_smButton.BackColor          = System.Drawing.Color.White;
     this.Cancel_smButton.DataSource         = null;
     this.Cancel_smButton.DataSourceProperty = null;
     this.Cancel_smButton.Font          = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.Cancel_smButton.LocalProperty = null;
     this.Cancel_smButton.Location      = new System.Drawing.Point(286, 164);
     this.Cancel_smButton.Name          = "Cancel_smButton";
     this.Cancel_smButton.Size          = new System.Drawing.Size(94, 27);
     this.Cancel_smButton.TabIndex      = 1;
     this.Cancel_smButton.Text          = "Cancel";
     this.Cancel_smButton.Click        += new System.EventHandler(this.Cancel_smButton_Click);
     //
     // pictureBox1
     //
     this.pictureBox1.Location = new System.Drawing.Point(12, 10);
     this.pictureBox1.Name     = "pictureBox1";
     this.pictureBox1.Size     = new System.Drawing.Size(100, 90);
     this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
     this.pictureBox1.TabIndex = 3;
     this.pictureBox1.TabStop  = false;
     //
     // BaseMessageForm
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(6, 16);
     this.BackColor         = System.Drawing.Color.White;
     this.ClientSize        = new System.Drawing.Size(392, 200);
     this.Controls.Add(this.smPanel1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.Name            = "BaseMessageForm";
     this.SizeGripStyle   = System.Windows.Forms.SizeGripStyle.Hide;
     this.smPanel1.ResumeLayout(false);
     this.panelEx1.ResumeLayout(false);
     this.ResumeLayout(false);
 }
コード例 #56
0
ファイル: ObjViewer.cs プロジェクト: xuchuansheng/GenXSource
		/// <summary> 
		/// Required method for Designer support - do not modify 
		/// the contents of this method with the code editor.
		/// </summary>
		private void InitializeComponent()
		{
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ObjViewer));
            this.lvProps = new System.Windows.Forms.ListView();
            this.colName = new System.Windows.Forms.ColumnHeader();
            this.colValue = new System.Windows.Forms.ColumnHeader();
            this.lblName = new System.Windows.Forms.Label();
            this.lblKind = new System.Windows.Forms.Label();
            this.panelEx1 = new DevComponents.DotNetBar.PanelEx();
            this.panelEx1.SuspendLayout();
            this.SuspendLayout();
            // 
            // lvProps
            // 
            this.lvProps.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
            this.colName,
            this.colValue});
            resources.ApplyResources(this.lvProps, "lvProps");
            this.lvProps.FullRowSelect = true;
            this.lvProps.GridLines = true;
            this.lvProps.Name = "lvProps";
            this.lvProps.UseCompatibleStateImageBehavior = false;
            this.lvProps.View = System.Windows.Forms.View.Details;
            // 
            // colName
            // 
            resources.ApplyResources(this.colName, "colName");
            // 
            // colValue
            // 
            resources.ApplyResources(this.colValue, "colValue");
            // 
            // lblName
            // 
            this.lblName.BackColor = System.Drawing.Color.Transparent;
            resources.ApplyResources(this.lblName, "lblName");
            this.lblName.Name = "lblName";
            this.lblName.Click += new System.EventHandler(this.lblName_Click);
            // 
            // lblKind
            // 
            this.lblKind.BackColor = System.Drawing.Color.Transparent;
            resources.ApplyResources(this.lblKind, "lblKind");
            this.lblKind.ForeColor = System.Drawing.SystemColors.ControlText;
            this.lblKind.Name = "lblKind";
            // 
            // panelEx1
            // 
            this.panelEx1.Controls.Add(this.lblName);
            this.panelEx1.Controls.Add(this.lblKind);
            resources.ApplyResources(this.panelEx1, "panelEx1");
            this.panelEx1.Name = "panelEx1";
            this.panelEx1.Style.Alignment = System.Drawing.StringAlignment.Center;
            this.panelEx1.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
            this.panelEx1.Style.BackColor2.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground2;
            this.panelEx1.Style.BackgroundImagePosition = DevComponents.DotNetBar.eBackgroundImagePosition.Tile;
            this.panelEx1.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarDockedBorder;
            this.panelEx1.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemText;
            this.panelEx1.Style.GradientAngle = 90;
            // 
            // ObjViewer
            // 
            this.Controls.Add(this.lvProps);
            this.Controls.Add(this.panelEx1);
            this.Name = "ObjViewer";
            resources.ApplyResources(this, "$this");
            this.panelEx1.ResumeLayout(false);
            this.ResumeLayout(false);

		}
コード例 #57
0
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(Form1));
            this.panelEx1  = new DevComponents.DotNetBar.PanelEx();
            this.panelEx2  = new DevComponents.DotNetBar.PanelEx();
            this.panelEx3  = new DevComponents.DotNetBar.PanelEx();
            this.panelEx10 = new DevComponents.DotNetBar.PanelEx();
            this.panelEx9  = new DevComponents.DotNetBar.PanelEx();
            this.label5    = new System.Windows.Forms.Label();
            this.panelEx8  = new DevComponents.DotNetBar.PanelEx();
            this.panelEx7  = new DevComponents.DotNetBar.PanelEx();
            this.panelEx6  = new DevComponents.DotNetBar.PanelEx();
            this.panelEx5  = new DevComponents.DotNetBar.PanelEx();
            this.label4    = new System.Windows.Forms.Label();
            this.label3    = new System.Windows.Forms.Label();
            this.label2    = new System.Windows.Forms.Label();
            this.label1    = new System.Windows.Forms.Label();
            this.panelEx4  = new DevComponents.DotNetBar.PanelEx();
            this.panelEx1.SuspendLayout();
            this.panelEx3.SuspendLayout();
            this.SuspendLayout();
            //
            // panelEx1
            //
            this.panelEx1.Controls.AddRange(new System.Windows.Forms.Control[] {
                this.panelEx2
            });
            this.panelEx1.Dock = System.Windows.Forms.DockStyle.Top;
            this.panelEx1.Font = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
            this.panelEx1.Name = "panelEx1";
            this.panelEx1.Size = new System.Drawing.Size(544, 32);
            this.panelEx1.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
            this.panelEx1.Style.BackColor2.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
            this.panelEx1.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
            this.panelEx1.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
            this.panelEx1.Style.ForeColor.ColorSchemePart   = DevComponents.DotNetBar.eColorSchemePart.PanelText;
            this.panelEx1.Style.GradientAngle = 90;
            this.panelEx1.Style.MarginLeft    = 4;
            this.panelEx1.TabIndex            = 0;
            this.panelEx1.Text = "PanelEx Sample Project";
            //
            // panelEx2
            //
            this.panelEx2.Anchor   = (System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right);
            this.panelEx2.Location = new System.Drawing.Point(520, 8);
            this.panelEx2.Name     = "panelEx2";
            this.panelEx2.Size     = new System.Drawing.Size(16, 16);
            this.panelEx2.Style.BackgroundImage          = ((System.Drawing.Bitmap)(resources.GetObject("panelEx2.Style.BackgroundImage")));
            this.panelEx2.Style.BackgroundImagePosition  = DevComponents.DotNetBar.eBackgroundImagePosition.Center;
            this.panelEx2.StyleMouseDown.Alignment       = System.Drawing.StringAlignment.Center;
            this.panelEx2.StyleMouseDown.BackgroundImage = ((System.Drawing.Bitmap)(resources.GetObject("panelEx2.StyleMouseDown.BackgroundImage")));
            this.panelEx2.StyleMouseOver.Alignment       = System.Drawing.StringAlignment.Center;
            this.panelEx2.TabIndex = 2;
            //
            // panelEx3
            //
            this.panelEx3.Controls.AddRange(new System.Windows.Forms.Control[] {
                this.panelEx10,
                this.panelEx9,
                this.label5,
                this.panelEx8,
                this.panelEx7,
                this.panelEx6,
                this.panelEx5,
                this.label4,
                this.label3,
                this.label2,
                this.label1,
                this.panelEx4
            });
            this.panelEx3.Dock            = System.Windows.Forms.DockStyle.Fill;
            this.panelEx3.Location        = new System.Drawing.Point(0, 32);
            this.panelEx3.Name            = "panelEx3";
            this.panelEx3.Size            = new System.Drawing.Size(544, 246);
            this.panelEx3.Style.Alignment = System.Drawing.StringAlignment.Center;
            this.panelEx3.Style.BackColor1.ColorSchemePart  = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
            this.panelEx3.Style.BackColor2.ColorSchemePart  = DevComponents.DotNetBar.eColorSchemePart.BarBackground2;
            this.panelEx3.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
            this.panelEx3.Style.ForeColor.ColorSchemePart   = DevComponents.DotNetBar.eColorSchemePart.PanelText;
            this.panelEx3.Style.GradientAngle      = 90;
            this.panelEx3.StyleMouseDown.Alignment = System.Drawing.StringAlignment.Center;
            this.panelEx3.StyleMouseOver.Alignment = System.Drawing.StringAlignment.Center;
            this.panelEx3.TabIndex = 1;
            //
            // panelEx10
            //
            this.panelEx10.AutoScroll        = true;
            this.panelEx10.AutoScrollMinSize = new System.Drawing.Size(0, 457);
            this.panelEx10.Location          = new System.Drawing.Point(288, 16);
            this.panelEx10.Name            = "panelEx10";
            this.panelEx10.Size            = new System.Drawing.Size(248, 152);
            this.panelEx10.Style.Alignment = System.Drawing.StringAlignment.Center;
            this.panelEx10.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
            this.panelEx10.Style.BackColor2.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground2;
            this.panelEx10.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
            this.panelEx10.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarDockedBorder;
            this.panelEx10.Style.ForeColor.ColorSchemePart   = DevComponents.DotNetBar.eColorSchemePart.ItemText;
            this.panelEx10.Style.GradientAngle = 90;
            this.panelEx10.TabIndex            = 11;
            this.panelEx10.Text             = @"PanelEx control fully supports DevComponents <a href=""textMarkupLink""><b>text-markup</b></a>. You can use PanelEx as:<br/><br/>
<p>
- Extremely powerful <font color=""Navy""><b>Label</b></font> control<br/>
- Help panel with <font color=""Navy""><b>automatic scrolling</b></font> support<br/>
- Documentation presentation control<br/>
</p>
<p>
Here is longer text that demonstrates automatic PanelEx scrolling support:
</p>
<p>
Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Sed pharetra dolor quis tortor. Donec quis purus at ante tempor gravida. Mauris velit lacus, viverra sit amet, aliquet sit amet, malesuada sed, metus. Morbi blandit. Etiam fermentum sapien et nunc. Vivamus et nisl. Phasellus eget elit. Nulla ac urna. Fusce elementum. Phasellus est mi, adipiscing ac, tristique ac, lobortis nec, neque. Cras quis quam. Nam aliquam lectus sed augue. Suspendisse potenti. Praesent eget dui. Aliquam egestas eros et arcu.
</p>
<p> 
In hac habitasse platea dictumst. Donec tellus. Morbi urna sapien, dictum vel, fringilla eu, scelerisque ullamcorper, tortor. Curabitur nec purus. Aliquam elit mi, suscipit quis, elementum vitae, volutpat in, ante. Duis non magna ut nibh tincidunt dignissim. In risus nulla, fringilla posuere, egestas vitae, elementum at, eros. Integer id mi venenatis tellus ornare facilisis. Fusce convallis viverra ante. Aenean metus. 
</p>";
            this.panelEx10.MarkupLinkClick += new DevComponents.DotNetBar.MarkupLinkClickEventHandler(this.panelEx10_MarkupLinkClick);
            //
            // panelEx9
            //
            this.panelEx9.Location        = new System.Drawing.Point(176, 144);
            this.panelEx9.Name            = "panelEx9";
            this.panelEx9.Size            = new System.Drawing.Size(104, 24);
            this.panelEx9.Style.Alignment = System.Drawing.StringAlignment.Center;
            this.panelEx9.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
            this.panelEx9.Style.BackColor2.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
            this.panelEx9.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
            this.panelEx9.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
            this.panelEx9.Style.CornerDiameter            = 5;
            this.panelEx9.Style.CornerType                = DevComponents.DotNetBar.eCornerType.Rounded;
            this.panelEx9.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
            this.panelEx9.Style.GradientAngle             = 90;
            this.panelEx9.StyleMouseDown.Alignment        = System.Drawing.StringAlignment.Center;
            this.panelEx9.StyleMouseOver.Alignment        = System.Drawing.StringAlignment.Center;
            this.panelEx9.TabIndex = 10;
            this.panelEx9.Text     = "Panel Style";
            //
            // label5
            //
            this.label5.BackColor = System.Drawing.Color.Transparent;
            this.label5.Location  = new System.Drawing.Point(16, 152);
            this.label5.Name      = "label5";
            this.label5.Size      = new System.Drawing.Size(144, 16);
            this.label5.TabIndex  = 9;
            this.label5.Text      = "Rounded Panel";
            //
            // panelEx8
            //
            this.panelEx8.Location                                   = new System.Drawing.Point(176, 111);
            this.panelEx8.Name                                       = "panelEx8";
            this.panelEx8.Size                                       = new System.Drawing.Size(104, 24);
            this.panelEx8.Style.Alignment                            = System.Drawing.StringAlignment.Center;
            this.panelEx8.Style.BackColor1.Color                     = System.Drawing.Color.Linen;
            this.panelEx8.Style.BackColor2.Color                     = System.Drawing.Color.DarkOrange;
            this.panelEx8.Style.BackgroundImagePosition              = DevComponents.DotNetBar.eBackgroundImagePosition.Tile;
            this.panelEx8.Style.Border                               = DevComponents.DotNetBar.eBorderType.SingleLine;
            this.panelEx8.Style.BorderColor.ColorSchemePart          = DevComponents.DotNetBar.eColorSchemePart.BarDockedBorder;
            this.panelEx8.Style.ForeColor.ColorSchemePart            = DevComponents.DotNetBar.eColorSchemePart.ItemText;
            this.panelEx8.Style.GradientAngle                        = 90;
            this.panelEx8.StyleMouseDown.Alignment                   = System.Drawing.StringAlignment.Center;
            this.panelEx8.StyleMouseDown.BackColor1.Color            = System.Drawing.Color.OrangeRed;
            this.panelEx8.StyleMouseDown.BackColor2.Color            = System.Drawing.Color.Linen;
            this.panelEx8.StyleMouseDown.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemPressedBorder;
            this.panelEx8.StyleMouseDown.ForeColor.ColorSchemePart   = DevComponents.DotNetBar.eColorSchemePart.ItemPressedText;
            this.panelEx8.StyleMouseOver.Alignment                   = System.Drawing.StringAlignment.Center;
            this.panelEx8.StyleMouseOver.BackColor1.Color            = System.Drawing.Color.NavajoWhite;
            this.panelEx8.StyleMouseOver.BackColor2.Color            = System.Drawing.Color.IndianRed;
            this.panelEx8.StyleMouseOver.Font                        = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
            this.panelEx8.TabIndex                                   = 8;
            this.panelEx8.Text                                       = "Panel Style";
            //
            // panelEx7
            //
            this.panelEx7.Location        = new System.Drawing.Point(176, 80);
            this.panelEx7.Name            = "panelEx7";
            this.panelEx7.Size            = new System.Drawing.Size(104, 24);
            this.panelEx7.Style.Alignment = System.Drawing.StringAlignment.Center;
            this.panelEx7.Style.BackColor1.ColorSchemePart  = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
            this.panelEx7.Style.BackColor2.ColorSchemePart  = DevComponents.DotNetBar.eColorSchemePart.BarBackground2;
            this.panelEx7.Style.BackgroundImagePosition     = DevComponents.DotNetBar.eBackgroundImagePosition.Tile;
            this.panelEx7.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarDockedBorder;
            this.panelEx7.Style.ForeColor.ColorSchemePart   = DevComponents.DotNetBar.eColorSchemePart.ItemText;
            this.panelEx7.Style.GradientAngle      = 90;
            this.panelEx7.StyleMouseDown.Alignment = System.Drawing.StringAlignment.Center;
            this.panelEx7.StyleMouseOver.Alignment = System.Drawing.StringAlignment.Center;
            this.panelEx7.TabIndex = 7;
            this.panelEx7.Text     = "Label Style";
            //
            // panelEx6
            //
            this.panelEx6.Location        = new System.Drawing.Point(176, 48);
            this.panelEx6.Name            = "panelEx6";
            this.panelEx6.Size            = new System.Drawing.Size(104, 24);
            this.panelEx6.Style.Alignment = System.Drawing.StringAlignment.Center;
            this.panelEx6.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
            this.panelEx6.Style.BackColor2.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground2;
            this.panelEx6.Style.BackgroundImagePosition    = DevComponents.DotNetBar.eBackgroundImagePosition.Tile;
            this.panelEx6.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
            this.panelEx6.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarDockedBorder;
            this.panelEx6.Style.ForeColor.ColorSchemePart   = DevComponents.DotNetBar.eColorSchemePart.ItemText;
            this.panelEx6.Style.GradientAngle      = 90;
            this.panelEx6.StyleMouseDown.Alignment = System.Drawing.StringAlignment.Center;
            this.panelEx6.StyleMouseDown.BackColor1.ColorSchemePart  = DevComponents.DotNetBar.eColorSchemePart.ItemPressedBackground;
            this.panelEx6.StyleMouseDown.BackColor2.ColorSchemePart  = DevComponents.DotNetBar.eColorSchemePart.ItemPressedBackground2;
            this.panelEx6.StyleMouseDown.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemPressedBorder;
            this.panelEx6.StyleMouseDown.ForeColor.ColorSchemePart   = DevComponents.DotNetBar.eColorSchemePart.ItemPressedText;
            this.panelEx6.StyleMouseOver.Alignment = System.Drawing.StringAlignment.Center;
            this.panelEx6.StyleMouseOver.BackColor1.ColorSchemePart  = DevComponents.DotNetBar.eColorSchemePart.ItemHotBackground;
            this.panelEx6.StyleMouseOver.BackColor2.ColorSchemePart  = DevComponents.DotNetBar.eColorSchemePart.ItemHotBackground2;
            this.panelEx6.StyleMouseOver.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemHotBorder;
            this.panelEx6.StyleMouseOver.ForeColor.ColorSchemePart   = DevComponents.DotNetBar.eColorSchemePart.ItemHotText;
            this.panelEx6.TabIndex = 6;
            this.panelEx6.Text     = "Button Style";
            //
            // panelEx5
            //
            this.panelEx5.Location        = new System.Drawing.Point(176, 16);
            this.panelEx5.Name            = "panelEx5";
            this.panelEx5.Size            = new System.Drawing.Size(104, 24);
            this.panelEx5.Style.Alignment = System.Drawing.StringAlignment.Center;
            this.panelEx5.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
            this.panelEx5.Style.BackColor2.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
            this.panelEx5.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
            this.panelEx5.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
            this.panelEx5.Style.ForeColor.ColorSchemePart   = DevComponents.DotNetBar.eColorSchemePart.PanelText;
            this.panelEx5.Style.GradientAngle      = 90;
            this.panelEx5.StyleMouseDown.Alignment = System.Drawing.StringAlignment.Center;
            this.panelEx5.StyleMouseOver.Alignment = System.Drawing.StringAlignment.Center;
            this.panelEx5.TabIndex = 5;
            this.panelEx5.Text     = "Panel Style";
            //
            // label4
            //
            this.label4.Location = new System.Drawing.Point(16, 120);
            this.label4.Name     = "label4";
            this.label4.Size     = new System.Drawing.Size(168, 16);
            this.label4.TabIndex = 4;
            this.label4.Text     = "PanelEx with manually set style:";
            //
            // label3
            //
            this.label3.Location = new System.Drawing.Point(16, 88);
            this.label3.Name     = "label3";
            this.label3.Size     = new System.Drawing.Size(152, 16);
            this.label3.TabIndex = 3;
            this.label3.Text     = "PanelEx with \"Label\" style:";
            //
            // label2
            //
            this.label2.Location = new System.Drawing.Point(16, 56);
            this.label2.Name     = "label2";
            this.label2.Size     = new System.Drawing.Size(152, 16);
            this.label2.TabIndex = 2;
            this.label2.Text     = "PanelEx with \"Button\" style:";
            //
            // label1
            //
            this.label1.Location = new System.Drawing.Point(16, 24);
            this.label1.Name     = "label1";
            this.label1.Size     = new System.Drawing.Size(144, 16);
            this.label1.TabIndex = 1;
            this.label1.Text     = "PanelEx with \"Panel\" style:";
            //
            // panelEx4
            //
            this.panelEx4.Anchor          = (System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right);
            this.panelEx4.Font            = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
            this.panelEx4.Location        = new System.Drawing.Point(456, 216);
            this.panelEx4.Name            = "panelEx4";
            this.panelEx4.Size            = new System.Drawing.Size(80, 24);
            this.panelEx4.Style.Alignment = System.Drawing.StringAlignment.Center;
            this.panelEx4.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
            this.panelEx4.Style.BackColor2.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground2;
            this.panelEx4.Style.BackgroundImagePosition    = DevComponents.DotNetBar.eBackgroundImagePosition.Tile;
            this.panelEx4.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
            this.panelEx4.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarDockedBorder;
            this.panelEx4.Style.ForeColor.ColorSchemePart   = DevComponents.DotNetBar.eColorSchemePart.ItemText;
            this.panelEx4.Style.GradientAngle      = 90;
            this.panelEx4.StyleMouseDown.Alignment = System.Drawing.StringAlignment.Center;
            this.panelEx4.StyleMouseDown.BackColor1.ColorSchemePart  = DevComponents.DotNetBar.eColorSchemePart.ItemPressedBackground;
            this.panelEx4.StyleMouseDown.BackColor2.ColorSchemePart  = DevComponents.DotNetBar.eColorSchemePart.ItemPressedBackground2;
            this.panelEx4.StyleMouseDown.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemPressedBorder;
            this.panelEx4.StyleMouseDown.ForeColor.ColorSchemePart   = DevComponents.DotNetBar.eColorSchemePart.ItemPressedText;
            this.panelEx4.StyleMouseOver.Alignment = System.Drawing.StringAlignment.Center;
            this.panelEx4.StyleMouseOver.BackColor1.ColorSchemePart  = DevComponents.DotNetBar.eColorSchemePart.ItemHotBackground;
            this.panelEx4.StyleMouseOver.BackColor2.ColorSchemePart  = DevComponents.DotNetBar.eColorSchemePart.ItemHotBackground2;
            this.panelEx4.StyleMouseOver.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemHotBorder;
            this.panelEx4.StyleMouseOver.ForeColor.ColorSchemePart   = DevComponents.DotNetBar.eColorSchemePart.ItemHotText;
            this.panelEx4.TabIndex = 0;
            this.panelEx4.Text     = "Close";
            this.panelEx4.Click   += new System.EventHandler(this.panelEx4_Click);
            //
            // Form1
            //
            this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
            this.ClientSize        = new System.Drawing.Size(544, 278);
            this.Controls.AddRange(new System.Windows.Forms.Control[] {
                this.panelEx3,
                this.panelEx1
            });
            this.MinimumSize = new System.Drawing.Size(224, 272);
            this.Name        = "Form1";
            this.Text        = "PanelEx Sample Project";
            this.panelEx1.ResumeLayout(false);
            this.panelEx3.ResumeLayout(false);
            this.ResumeLayout(false);
        }
コード例 #58
0
 /// <summary> 
 /// 设计器支持所需的方法 - 不要
 /// 使用代码编辑器修改此方法的内容。
 /// </summary>
 private void InitializeComponent()
 {
     this.PnlButton = new DevComponents.DotNetBar.PanelEx();
     this.BtnRedo = new DevComponents.DotNetBar.ButtonX();
     this.BtnAdd = new DevComponents.DotNetBar.ButtonX();
     this.WinWordControlEx = new Framework.Interface.Common.WinWordControlEx();
     this.PnlButton.SuspendLayout();
     this.SuspendLayout();
     //
     // PnlButton
     //
     this.PnlButton.CanvasColor = System.Drawing.SystemColors.Control;
     this.PnlButton.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.PnlButton.Controls.Add(this.BtnRedo);
     this.PnlButton.Controls.Add(this.BtnAdd);
     this.PnlButton.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.PnlButton.Location = new System.Drawing.Point(0, 319);
     this.PnlButton.Name = "PnlButton";
     this.PnlButton.Size = new System.Drawing.Size(512, 28);
     this.PnlButton.Style.Alignment = System.Drawing.StringAlignment.Center;
     this.PnlButton.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.PnlButton.Style.BackColor2.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.PnlButton.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.PnlButton.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.PnlButton.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.PnlButton.Style.GradientAngle = 90;
     this.PnlButton.TabIndex = 1;
     //
     // BtnRedo
     //
     this.BtnRedo.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.BtnRedo.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.BtnRedo.Dock = System.Windows.Forms.DockStyle.Right;
     this.BtnRedo.Location = new System.Drawing.Point(362, 0);
     this.BtnRedo.Name = "BtnRedo";
     this.BtnRedo.Size = new System.Drawing.Size(75, 28);
     this.BtnRedo.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.BtnRedo.TabIndex = 2;
     this.BtnRedo.Text = "重新生成";
     this.BtnRedo.Click += new System.EventHandler(this.BtnRedo_Click);
     //
     // BtnAdd
     //
     this.BtnAdd.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.BtnAdd.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.BtnAdd.Dock = System.Windows.Forms.DockStyle.Right;
     this.BtnAdd.Location = new System.Drawing.Point(437, 0);
     this.BtnAdd.Name = "BtnAdd";
     this.BtnAdd.Size = new System.Drawing.Size(75, 28);
     this.BtnAdd.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.BtnAdd.TabIndex = 3;
     this.BtnAdd.Text = "保 存";
     this.BtnAdd.Click += new System.EventHandler(this.BtnAdd_Click);
     //
     // WinWordControlEx
     //
     this.WinWordControlEx.Dock = System.Windows.Forms.DockStyle.Fill;
     this.WinWordControlEx.Location = new System.Drawing.Point(0, 0);
     this.WinWordControlEx.Name = "WinWordControlEx";
     this.WinWordControlEx.Size = new System.Drawing.Size(512, 319);
     this.WinWordControlEx.TabIndex = 0;
     this.WinWordControlEx.Load += new System.EventHandler(this.WinWordControlEx_Load);
     //
     // UclArrayList
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.WinWordControlEx);
     this.Controls.Add(this.PnlButton);
     this.Name = "UclArrayList";
     this.Size = new System.Drawing.Size(512, 347);
     this.Load += new System.EventHandler(this.UclArrayList_Load);
     this.PnlButton.ResumeLayout(false);
     this.ResumeLayout(false);
 }
コード例 #59
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.panelEx1            = new DevComponents.DotNetBar.PanelEx();
     this.expandableSplitter1 = new DevComponents.DotNetBar.ExpandableSplitter();
     this.panel1              = new System.Windows.Forms.Panel();
     this.panelEx2            = new DevComponents.DotNetBar.PanelEx();
     this.expandableSplitter2 = new DevComponents.DotNetBar.ExpandableSplitter();
     this.panelEx3            = new DevComponents.DotNetBar.PanelEx();
     this.panel1.SuspendLayout();
     this.SuspendLayout();
     //
     // panelEx1
     //
     this.panelEx1.AntiAlias       = true;
     this.panelEx1.Dock            = System.Windows.Forms.DockStyle.Left;
     this.panelEx1.Name            = "panelEx1";
     this.panelEx1.Size            = new System.Drawing.Size(152, 266);
     this.panelEx1.Style.Alignment = System.Drawing.StringAlignment.Center;
     this.panelEx1.Style.BackColor1.ColorSchemePart  = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
     this.panelEx1.Style.BackColor2.ColorSchemePart  = DevComponents.DotNetBar.eColorSchemePart.BarBackground2;
     this.panelEx1.Style.BackgroundImagePosition     = DevComponents.DotNetBar.eBackgroundImagePosition.Tile;
     this.panelEx1.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarDockedBorder;
     this.panelEx1.Style.ForeColor.ColorSchemePart   = DevComponents.DotNetBar.eColorSchemePart.ItemText;
     this.panelEx1.Style.GradientAngle = 90;
     this.panelEx1.Style.WordWrap      = true;
     this.panelEx1.TabIndex            = 0;
     this.panelEx1.Text   = "Click to collapse";
     this.panelEx1.Click += new System.EventHandler(this.panelEx1_Click);
     //
     // expandableSplitter1
     //
     this.expandableSplitter1.BackColor2SchemePart         = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.expandableSplitter1.BackColorSchemePart          = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.expandableSplitter1.ExpandableControl            = this.panelEx1;
     this.expandableSplitter1.ExpandFillColorSchemePart    = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.expandableSplitter1.ExpandLineColorSchemePart    = DevComponents.DotNetBar.eColorSchemePart.ItemText;
     this.expandableSplitter1.GripDarkColorSchemePart      = DevComponents.DotNetBar.eColorSchemePart.ItemText;
     this.expandableSplitter1.GripLightColorSchemePart     = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
     this.expandableSplitter1.HotBackColor2SchemePart      = DevComponents.DotNetBar.eColorSchemePart.ItemPressedBackground2;
     this.expandableSplitter1.HotBackColorSchemePart       = DevComponents.DotNetBar.eColorSchemePart.ItemPressedBackground;
     this.expandableSplitter1.HotExpandFillColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.expandableSplitter1.HotExpandLineColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemText;
     this.expandableSplitter1.HotGripDarkColorSchemePart   = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.expandableSplitter1.HotGripLightColorSchemePart  = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
     this.expandableSplitter1.Location = new System.Drawing.Point(152, 0);
     this.expandableSplitter1.Name     = "expandableSplitter1";
     this.expandableSplitter1.Size     = new System.Drawing.Size(8, 266);
     this.expandableSplitter1.TabIndex = 1;
     this.expandableSplitter1.TabStop  = false;
     //
     // panel1
     //
     this.panel1.Controls.AddRange(new System.Windows.Forms.Control[] {
         this.panelEx3,
         this.expandableSplitter2,
         this.panelEx2
     });
     this.panel1.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.panel1.Location = new System.Drawing.Point(160, 0);
     this.panel1.Name     = "panel1";
     this.panel1.Size     = new System.Drawing.Size(256, 266);
     this.panel1.TabIndex = 2;
     //
     // panelEx2
     //
     this.panelEx2.AntiAlias       = true;
     this.panelEx2.Dock            = System.Windows.Forms.DockStyle.Top;
     this.panelEx2.Name            = "panelEx2";
     this.panelEx2.Size            = new System.Drawing.Size(256, 64);
     this.panelEx2.Style.Alignment = System.Drawing.StringAlignment.Center;
     this.panelEx2.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.panelEx2.Style.BackColor2.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.panelEx2.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.panelEx2.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.panelEx2.Style.ForeColor.ColorSchemePart   = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.panelEx2.Style.GradientAngle = 90;
     this.panelEx2.TabIndex            = 0;
     this.panelEx2.Text   = "Click to collapse";
     this.panelEx2.Click += new System.EventHandler(this.panelEx2_Click);
     //
     // expandableSplitter2
     //
     this.expandableSplitter2.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.expandableSplitter2.BackColorSchemePart  = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.expandableSplitter2.Dock = System.Windows.Forms.DockStyle.Top;
     this.expandableSplitter2.ExpandableControl            = this.panelEx2;
     this.expandableSplitter2.ExpandFillColorSchemePart    = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.expandableSplitter2.ExpandLineColorSchemePart    = DevComponents.DotNetBar.eColorSchemePart.ItemText;
     this.expandableSplitter2.GripDarkColorSchemePart      = DevComponents.DotNetBar.eColorSchemePart.ItemText;
     this.expandableSplitter2.GripLightColorSchemePart     = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
     this.expandableSplitter2.HotBackColor2SchemePart      = DevComponents.DotNetBar.eColorSchemePart.ItemPressedBackground2;
     this.expandableSplitter2.HotBackColorSchemePart       = DevComponents.DotNetBar.eColorSchemePart.ItemPressedBackground;
     this.expandableSplitter2.HotExpandFillColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.expandableSplitter2.HotExpandLineColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemText;
     this.expandableSplitter2.HotGripDarkColorSchemePart   = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.expandableSplitter2.HotGripLightColorSchemePart  = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
     this.expandableSplitter2.Location = new System.Drawing.Point(0, 64);
     this.expandableSplitter2.Name     = "expandableSplitter2";
     this.expandableSplitter2.Size     = new System.Drawing.Size(256, 8);
     this.expandableSplitter2.TabIndex = 1;
     this.expandableSplitter2.TabStop  = false;
     //
     // panelEx3
     //
     this.panelEx3.AntiAlias       = true;
     this.panelEx3.Dock            = System.Windows.Forms.DockStyle.Fill;
     this.panelEx3.Location        = new System.Drawing.Point(0, 72);
     this.panelEx3.Name            = "panelEx3";
     this.panelEx3.Size            = new System.Drawing.Size(256, 194);
     this.panelEx3.Style.Alignment = System.Drawing.StringAlignment.Center;
     this.panelEx3.Style.BackColor1.ColorSchemePart  = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
     this.panelEx3.Style.BackColor2.ColorSchemePart  = DevComponents.DotNetBar.eColorSchemePart.BarBackground2;
     this.panelEx3.Style.BackgroundImagePosition     = DevComponents.DotNetBar.eBackgroundImagePosition.Tile;
     this.panelEx3.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarDockedBorder;
     this.panelEx3.Style.ForeColor.ColorSchemePart   = DevComponents.DotNetBar.eColorSchemePart.ItemText;
     this.panelEx3.Style.GradientAngle = 90;
     this.panelEx3.TabIndex            = 2;
     this.panelEx3.Text = "Fill Panel";
     //
     // Form1
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(416, 266);
     this.Controls.AddRange(new System.Windows.Forms.Control[] {
         this.panel1,
         this.expandableSplitter1,
         this.panelEx1
     });
     this.Name = "Form1";
     this.Text = "Animated Expandable Splitter Demo";
     this.panel1.ResumeLayout(false);
     this.ResumeLayout(false);
 }