/// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.chkSelect = new DevComponents.DotNetBar.Controls.CheckBoxX();
     this.listView = new DevComponents.DotNetBar.Controls.ListViewEx();
     this.labelX1 = new DevComponents.DotNetBar.LabelX();
     this.btnPrint = new DevComponents.DotNetBar.ButtonX();
     this.SuspendLayout();
     //
     // chkSelect
     //
     this.chkSelect.AutoSize = true;
     this.chkSelect.BackColor = System.Drawing.Color.Transparent;
     //
     //
     //
     this.chkSelect.BackgroundStyle.Class = "";
     this.chkSelect.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.chkSelect.Checked = true;
     this.chkSelect.CheckState = System.Windows.Forms.CheckState.Checked;
     this.chkSelect.CheckValue = "Y";
     this.chkSelect.Location = new System.Drawing.Point(34, 317);
     this.chkSelect.Name = "chkSelect";
     this.chkSelect.Size = new System.Drawing.Size(54, 21);
     this.chkSelect.TabIndex = 3;
     this.chkSelect.Text = "全選";
     this.chkSelect.Click += new System.EventHandler(this.chkSelect_CheckedChanged);
     //
     // listView
     //
     //
     //
     //
     this.listView.Border.Class = "ListViewBorder";
     this.listView.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.listView.CheckBoxes = true;
     this.listView.FullRowSelect = true;
     this.listView.Location = new System.Drawing.Point(34, 53);
     this.listView.Name = "listView";
     this.listView.ShowItemToolTips = true;
     this.listView.Size = new System.Drawing.Size(424, 258);
     this.listView.TabIndex = 2;
     this.listView.UseCompatibleStateImageBehavior = false;
     this.listView.View = System.Windows.Forms.View.List;
     //
     // labelX1
     //
     this.labelX1.AutoSize = true;
     this.labelX1.BackColor = System.Drawing.Color.Transparent;
     //
     //
     //
     this.labelX1.BackgroundStyle.Class = "";
     this.labelX1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX1.Location = new System.Drawing.Point(23, 13);
     this.labelX1.Name = "labelX1";
     this.labelX1.Size = new System.Drawing.Size(141, 21);
     this.labelX1.TabIndex = 31;
     this.labelX1.Text = "請勾選報表顯示欄位。";
     //
     // btnPrint
     //
     this.btnPrint.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btnPrint.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnPrint.AutoSize = true;
     this.btnPrint.BackColor = System.Drawing.Color.Transparent;
     this.btnPrint.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.btnPrint.DialogResult = System.Windows.Forms.DialogResult.OK;
     this.btnPrint.Location = new System.Drawing.Point(383, 329);
     this.btnPrint.Name = "btnPrint";
     this.btnPrint.Size = new System.Drawing.Size(75, 25);
     this.btnPrint.TabIndex = 32;
     this.btnPrint.Text = "列 印";
     this.btnPrint.Click += new System.EventHandler(this.btnPrint_Click_1);
     //
     // Student_CourseList
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 17F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(492, 366);
     this.Controls.Add(this.btnPrint);
     this.Controls.Add(this.labelX1);
     this.Controls.Add(this.chkSelect);
     this.Controls.Add(this.listView);
     this.DoubleBuffered = true;
     this.Name = "Student_CourseList";
     this.Text = "";
     this.TitleText = "選課名單";
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Пример #2
0
        private void SetFileSize(BinaryFile file, DevComponents.DotNetBar.LabelX label, bool sizesSame)
        {
            if (file == null || !file.IsFileOnDisk)
            {
                label.Text = "-";
                return;
            }

            double numMegaBytes = file.GetFileSize() / (1024d * 1024d);

            if (numMegaBytes >= 1)
            {
                label.Text = numMegaBytes + " MB";
            }
            else
            {
                numMegaBytes = file.GetFileSize() / 1024d;
                label.Text   = numMegaBytes + " kB";
            }
            if (sizesSame)
            {
                pictureBoxFilesize.Image = System.Drawing.Image.FromStream(System.Reflection.Assembly.GetExecutingAssembly().GetManifestResourceStream("Slyce.IntelliMerge.Resources.font_char61_green_16_h.png"));
            }
            else
            {
                pictureBoxFilesize.Image = System.Drawing.Image.FromStream(System.Reflection.Assembly.GetExecutingAssembly().GetManifestResourceStream("Slyce.IntelliMerge.Resources.font_char33_red_16_h.png"));
            }
        }
Пример #3
0
        /// <summary>
        /// 为数据库项目添加标题,标题的字体、颜色、位置等可以在该函数中实现
        /// </summary>
        /// <param name="sLableText">标注文本</param>
        /// <param name="in_pRutton">Button对象</param>
        public void AddLabledownButton(string mProID, string sLableText, DevComponents.DotNetBar.ButtonX in_pRutton)
        {
            DevComponents.DotNetBar.LabelX ButtonLable = new DevComponents.DotNetBar.LabelX();
            int x = in_pRutton.Location.X;
            int y = in_pRutton.Location.Y + this.iNewButtonHeigh;

            ButtonLable.Location  = new System.Drawing.Point(x, y);
            ButtonLable.Width     = in_pRutton.Width;
            ButtonLable.Text      = sLableText;
            in_pRutton.Tooltip    = sLableText;                         //cyf 20110630 add
            ButtonLable.Font      = new System.Drawing.Font("微软雅黑", 8); //cyf 20110630 :7
            ButtonLable.BackColor = System.Drawing.Color.Transparent;
            //ButtonLable.AutoSize = true;  //cyf 20110630 add
            ButtonLable.Size = new System.Drawing.Size(iNewButtonHeigh, 25);  //cyf 20110630 :21
            //cyf 20110627 将标签控件保存起来
            if (m_DBLables == null)
            {
                m_DBLables = new Dictionary <string, DevComponents.DotNetBar.LabelX>();
            }
            if (!m_DBLables.ContainsKey(mProID))
            {
                m_DBLables.Add(mProID, ButtonLable);
            }
            //end
            this.m_DataBaseGroupPanel.Controls.Add(ButtonLable);
        }
Пример #4
0
 public DataConverTool(DevComponents.DotNetBar.LabelX lab_progress, DevComponents.DotNetBar.LabelX lb, DevExpress.XtraEditors.MarqueeProgressBarControl progressBar, DevComponents.DotNetBar.Controls.RichTextBoxEx MessageShow,AxMapControl axMap)
 {
     this.axMapControl = axMap;
     this.lb = lb;
     this.lab_progress = lab_progress;
     this.progressBar = progressBar;
     this.MessageShow = MessageShow;
 }
 void labelX_MouseClick(object sender, MouseEventArgs e)
 {
     labelRegion = sender as DevComponents.DotNetBar.LabelX;
     SelectRegion(labelRegion);
     if (GlobRectChanged != null)
     {
         GlobRectChanged(sender, e);
     }
 }
 void UnSelectRegion(DevComponents.DotNetBar.LabelX labelX)
 {
     labelX.BackgroundStyle.BorderColor  = System.Drawing.Color.Orange;
     labelX.BackgroundStyle.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Dot;
     labelX.BackgroundStyle.BorderLeft   = DevComponents.DotNetBar.eStyleBorderType.Dot;
     labelX.BackgroundStyle.BorderRight  = DevComponents.DotNetBar.eStyleBorderType.Dot;
     labelX.BackgroundStyle.BorderTop    = DevComponents.DotNetBar.eStyleBorderType.Dot;
     labelX.Invalidate();
 }
Пример #7
0
 /// <summary> 
 /// Método necesario para admitir el Diseñador. No se puede modificar 
 /// el contenido del método con el editor de código.
 /// </summary>
 private void InitializeComponent()
 {
     this.labelX9 = new DevComponents.DotNetBar.LabelX();
     this.textBoxX7 = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.buttonX1 = new DevComponents.DotNetBar.ButtonX();
     this.SuspendLayout();
     //
     // labelX9
     //
     //
     //
     //
     this.labelX9.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX9.Location = new System.Drawing.Point(23, 26);
     this.labelX9.Name = "labelX9";
     this.labelX9.Size = new System.Drawing.Size(121, 23);
     this.labelX9.TabIndex = 18;
     this.labelX9.Text = "Nombre Departamento :";
     //
     // textBoxX7
     //
     this.textBoxX7.BackColor = System.Drawing.Color.White;
     //
     //
     //
     this.textBoxX7.Border.Class = "TextBoxBorder";
     this.textBoxX7.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.textBoxX7.ForeColor = System.Drawing.Color.Black;
     this.textBoxX7.Location = new System.Drawing.Point(150, 29);
     this.textBoxX7.Name = "textBoxX7";
     this.textBoxX7.Size = new System.Drawing.Size(200, 20);
     this.textBoxX7.TabIndex = 19;
     //
     // buttonX1
     //
     this.buttonX1.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.buttonX1.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.buttonX1.Location = new System.Drawing.Point(206, 55);
     this.buttonX1.Name = "buttonX1";
     this.buttonX1.Size = new System.Drawing.Size(125, 23);
     this.buttonX1.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.buttonX1.TabIndex = 20;
     this.buttonX1.Text = "Agregar Departamento";
     //
     // Departamentos
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.buttonX1);
     this.Controls.Add(this.textBoxX7);
     this.Controls.Add(this.labelX9);
     this.Name = "Departamentos";
     this.Size = new System.Drawing.Size(391, 103);
     this.ResumeLayout(false);
 }
Пример #8
0
 public static void ShowSplashScreen()
 {
     LRunMsg           = new DevComponents.DotNetBar.LabelX();
     LRunMsg.AutoSize  = true;
     LRunMsg.Font      = new Font("宋体", 9, FontStyle.Regular);
     LRunMsg.BackColor = Color.Transparent;
     LRunMsg.ForeColor = Color.White;
     LRunMsg.Dock      = DockStyle.Bottom;
     instance          = new SplashScreen();
     instance.Controls.Add(LRunMsg);
     instance.Show();
 }
Пример #9
0
        // *---------------------------------------------------------------------------------------
        // *开 发 者:陈亚飞
        // *功能函数:修改数据源时同步修改控件label
        // *开发日期:2011-06-27
        // *参    数:数据源ID,数据源名称
        public void EditLabel(string pDBTypeStr, string mProID, string mProName)
        {
            if (m_DBLables.ContainsKey(mProID))
            {
                DevComponents.DotNetBar.LabelX pLabel = null;  //选中数据源工程项对应的标签
                pLabel = m_DBLables[mProID];
                //added by chulili 20110714更新界面中的label
                for (int i = 0; i < this.m_DataBaseGroupPanel.Controls.Count; i++)
                {
                    DevComponents.DotNetBar.LabelX pTmpLabel = this.m_DataBaseGroupPanel.Controls[i] as DevComponents.DotNetBar.LabelX;
                    if (pTmpLabel == null)
                    {
                        continue;
                    }
                    if (pTmpLabel.Location.X == pLabel.Location.X && pTmpLabel.Location.Y == pLabel.Location.Y && pTmpLabel.Text == pLabel.Text)
                    {
                        pTmpLabel.Text = mProName;
                        break;
                    }
                }
                //end add
                pLabel.Text = mProName;
                System.Windows.Forms.Application.DoEvents();
                //cyf 20110630  add
                if (m_DBButtons.ContainsKey(pDBTypeStr))
                {
                    List <DevComponents.DotNetBar.ButtonX> Getbuttons = new List <DevComponents.DotNetBar.ButtonX>();
                    m_DBButtons.TryGetValue(pDBTypeStr, out Getbuttons);
                    if (Getbuttons == null)
                    {
                        return;
                    }
                    foreach (DevComponents.DotNetBar.ButtonX Getbutton in Getbuttons)
                    {
                        if (Getbutton.Tag == null)
                        {
                            continue;
                        }
                        ClsDataBaseProject ClsDataBase = Getbutton.Tag as ClsDataBaseProject; if (ClsDataBase == null)
                        {
                            continue;
                        }
                        if (ClsDataBase.lDBID.ToString() == mProID)
                        {
                            Getbutton.Tooltip = mProName;
                            break;
                        }
                    }
                }

                //end
            }
        }
Пример #10
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.lblMessage = new DevComponents.DotNetBar.LabelX();
     this.progress = new DevComponents.DotNetBar.Controls.CircularProgress();
     this.SuspendLayout();
     //
     // lblMessage
     //
     this.lblMessage.AutoSize = true;
     this.lblMessage.BackColor = System.Drawing.Color.Transparent;
     //
     //
     //
     this.lblMessage.BackgroundStyle.Class = "";
     this.lblMessage.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.lblMessage.Location = new System.Drawing.Point(78, 22);
     this.lblMessage.Name = "lblMessage";
     this.lblMessage.Size = new System.Drawing.Size(138, 21);
     this.lblMessage.TabIndex = 31;
     this.lblMessage.Text = "資料處理中,請稍候…";
     //
     // progress
     //
     this.progress.BackColor = System.Drawing.Color.Transparent;
     //
     //
     //
     this.progress.BackgroundStyle.Class = "";
     this.progress.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.progress.Location = new System.Drawing.Point(23, 22);
     this.progress.Name = "progress";
     this.progress.Size = new System.Drawing.Size(49, 23);
     this.progress.Style = DevComponents.DotNetBar.eDotNetBarStyle.OfficeXP;
     this.progress.TabIndex = 32;
     this.progress.Visible = false;
     //
     // DoWork
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 17F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(243, 62);
     this.Controls.Add(this.progress);
     this.Controls.Add(this.lblMessage);
     this.DoubleBuffered = true;
     this.Name = "DoWork";
     this.Text = "";
     this.TitleText = "提示";
     this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.DoWork_FormClosing);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Пример #11
0
        private void InitializeComponent()
        {
            components = new System.ComponentModel.Container();
            var resources = new System.ComponentModel.ComponentResourceManager(typeof(SimpleActionDialog));

            _Panel1                = new Panel();
            _LabelX_Progress       = new DevComponents.DotNetBar.LabelX();
            _ProgressBarX_Progress = new DevComponents.DotNetBar.Controls.ProgressBarX();
            _Panel1.SuspendLayout();
            SuspendLayout();
            //
            // Panel1
            //
            _Panel1.BackColor = Color.Transparent;
            _Panel1.Controls.Add(_LabelX_Progress);
            _Panel1.Controls.Add(_ProgressBarX_Progress);
            resources.ApplyResources(_Panel1, "Panel1");
            _Panel1.Name = "Panel1";
            //
            // LabelX_Progress
            //
            resources.ApplyResources(_LabelX_Progress, "LabelX_Progress");
            //
            //
            //
            _LabelX_Progress.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            _LabelX_Progress.Name = "LabelX_Progress";
            //
            // ProgressBarX_Progress
            //
            resources.ApplyResources(_ProgressBarX_Progress, "ProgressBarX_Progress");
            //
            //
            //
            _ProgressBarX_Progress.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            _ProgressBarX_Progress.Name = "ProgressBarX_Progress";
            //
            // SimpleActionDialog
            //
            resources.ApplyResources(this, "$this");
            AutoScaleMode = AutoScaleMode.Font;
            ControlBox    = false;
            Controls.Add(_Panel1);
            FormBorderStyle    = FormBorderStyle.FixedSingle;
            Name               = "SimpleActionDialog";
            TopLeftCornerSize  = 0;
            TopRightCornerSize = 0;
            _Panel1.ResumeLayout(false);
            ResumeLayout(false);
        }
Пример #12
0
        public static void Start(DevComponents.DotNetBar.LabelX lbLog, System.Windows.Forms.WebBrowser txtBox, DevComponents.DotNetBar.Controls.DataGridViewX grid, DevComponents.DotNetBar.RadialMenuItem radial_online, bool SaveLog)
        {
            Log.lbLog         = lbLog;
            Log.SaveLog       = SaveLog;
            Log.webLongLob    = txtBox;
            Log.grid_online   = grid;
            Log.radial_online = radial_online;
            Log.HtmlMainContent.AppendLine("<!DOCTYPE html>");
            Log.HtmlMainContent.AppendLine("<html xmlns=\"http://www.w3.org/1999/xhtml\" lang=\"en-us\">");
            Log.HtmlMainContent.AppendLine("<head>");
            Log.HtmlMainContent.AppendLine("<style>");
            Log.HtmlMainContent.AppendLine("{0}");//style
            Log.HtmlMainContent.AppendLine("</style>");
            Log.HtmlMainContent.AppendLine("</head>");
            Log.HtmlMainContent.AppendLine(string.Format("\t<body style='{0}'>", "background-color:#211d1d;font-size:15px;padding:0px; margin:0px;"));
            //Log.HtmlMainContent.AppendLine("\t<div id='content'>");
            Log.HtmlMainContent.AppendLine("\t<ul id='list' style='list-style:none;  width: 100%; height:100%;padding:0px; margin:0px;overflow: hidden;'>");
            Log.HtmlMainContent.AppendLine("\t</ul>");
            //Log.HtmlMainContent.AppendLine("\t</div>");
            Log.HtmlMainContent.AppendLine("{1}"); //jagascript
            Log.HtmlMainContent.AppendLine("\t</body>");
            Log.HtmlMainContent.AppendLine("</html>");

            Log.javascript.AppendLine("\t<script>");
            Log.javascript.AppendLine("\tfunction newline(text,style){");
            Log.javascript.AppendLine("\t\t\tvar ul = document.getElementById('list');");
            Log.javascript.AppendLine("\t\t\tvar li = document.createElement('li');");
            Log.javascript.AppendLine("\t\t\tli.className = style;");
            Log.javascript.AppendLine("\t\t\tli.innerHTML = text;");
            Log.javascript.AppendLine("\t\t\tul.appendChild(li);");
            Log.javascript.AppendLine("\t\t\twindow.scrollTo(0,document.body.scrollHeight);");
            Log.javascript.AppendLine("\t}");
            Log.javascript.AppendLine("\t</script>");

            Log.style.AppendLine("li.info {color: #9aff00;}");
            Log.style.AppendLine("li.warning {color: #ffff00;}");
            Log.style.AppendLine("li.error {color: #ff0000;}");

            StringBuilder logbox2 = new StringBuilder(webLongLob.DocumentText);

            logbox2.AppendFormat(HtmlMainContent.ToString(), style.ToString(), javascript.ToString());
            webLongLob.DocumentText = logbox2.ToString();
            //webLongLob.Dock = System.Windows.Forms.DockStyle.Right;
            //Log.txtLog = txtBox;
        }
Пример #13
0
        private void SetMD5Info(BinaryFile file, DevComponents.DotNetBar.LabelX label, bool md5Same)
        {
            if (file == null || !file.IsFileOnDisk)
            {
                label.Text = "-";
                return;
            }
            label.Text = file.GetMD5();

            if (md5Same)
            {
                pictureBoxMD5.Image = System.Drawing.Image.FromStream(System.Reflection.Assembly.GetExecutingAssembly().GetManifestResourceStream("Slyce.IntelliMerge.Resources.font_char61_green_16_h.png"));
            }
            else
            {
                pictureBoxMD5.Image = System.Drawing.Image.FromStream(System.Reflection.Assembly.GetExecutingAssembly().GetManifestResourceStream("Slyce.IntelliMerge.Resources.font_char33_red_16_h.png"));
            }
        }
Пример #14
0
        /// <summary>
        /// 根据用户输入的表达式进行查询
        /// </summary>
        /// <param name="pLabel"></param>
        /// <param name="strTable"></param>
        /// <param name="StrQueryValue"></param>
        /// <param name="pFeatureClass"></param>
        /// <param name="pDataGridView"></param>
        public static void Query(DevComponents.DotNetBar.LabelX pLabel, string strTable, string StrQueryValue, IFeatureClass pFeatureClass, DevComponents.DotNetBar.Controls.DataGridViewX pDataGridView)
        {
            //进度条
            SysCommon.CProgress pgss = new SysCommon.CProgress("正在查询,请稍候...");
            pgss.EnableCancel    = false;
            pgss.ShowDescription = false;
            pgss.FakeProgress    = true;
            pgss.TopMost         = true;
            pgss.ShowProgress();
            try
            {
                IFeatureWorkspace pFeatureWorkspace = m_Workspace as IFeatureWorkspace;
                ITable            pTable            = pFeatureWorkspace.OpenTable(strTable);
                string            strFieldName      = pLabel.Tag.ToString();
                string            strLike           = CommnClass.GetDescriptionOfWorkspace((pFeatureClass as IDataset).Workspace);
                pDataGridView.Columns["CumQueryName"].HeaderText = pLabel.Text.Substring(0, pLabel.Text.Length - 1);
                pDataGridView.Rows.Clear();
                IField       pField       = pTable.Fields.get_Field(pTable.FindField(strFieldName));
                IQueryFilter pQueryFilter = new QueryFilterClass();
                pQueryFilter.WhereClause = pField.Name + " Like '" + strLike + StrQueryValue + strLike + "'";
                ICursor pCursor = pTable.Search(pQueryFilter, false);
                IRow    pRow    = pCursor.NextRow();

                while (pRow != null)
                {
                    string strFieldVlaue = pRow.get_Value(pRow.Fields.FindField(strFieldName)).ToString();
                    string strDJHVlaue   = pRow.get_Value(pRow.Fields.FindField("DJH")).ToString();
                    string strFeatureID  = GetFeatuerID(pFeatureClass, strDJHVlaue);
                    pDataGridView.Rows.Add(strFieldVlaue, strDJHVlaue, strFeatureID);
                    pRow = pCursor.NextRow();
                }
                System.Runtime.InteropServices.Marshal.ReleaseComObject(pCursor);
                pCursor = null;

                pgss.Close();
            }
            catch
            {
            }
            finally
            {
                pgss.Close();
            }
        }
 void SelectRegion(DevComponents.DotNetBar.LabelX labelX)
 {
     foreach (var item in Controls)
     {
         DevComponents.DotNetBar.LabelX labeltemp = item as  DevComponents.DotNetBar.LabelX;
         if (labeltemp == labelX)
         {
             labelX.BackgroundStyle.BorderColor  = System.Drawing.Color.SkyBlue;
             labelX.BackgroundStyle.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid;
             labelX.BackgroundStyle.BorderLeft   = DevComponents.DotNetBar.eStyleBorderType.Solid;
             labelX.BackgroundStyle.BorderRight  = DevComponents.DotNetBar.eStyleBorderType.Solid;
             labelX.BackgroundStyle.BorderTop    = DevComponents.DotNetBar.eStyleBorderType.Solid;
             labelX.Invalidate();
         }
         else
         {
             UnSelectRegion(labeltemp);
         }
     }
 }
        public void initGlobRect(List <Rectangle> rect)
        {
            Controls.Clear();
            if (this.BackgroundImage == null)
            {
                return;
            }

            foreach (Rectangle item in rect)
            {
                DevComponents.DotNetBar.LabelX labelX = new DevComponents.DotNetBar.LabelX();
                labelX.BackColor = System.Drawing.Color.Transparent;
                labelX.BackgroundStyle.BorderBottom      = DevComponents.DotNetBar.eStyleBorderType.DashDot;
                labelX.BackgroundStyle.BorderBottomWidth = 2;
                labelX.BackgroundStyle.BorderColor       = System.Drawing.Color.Orange;
                labelX.BackgroundStyle.BorderLeft        = DevComponents.DotNetBar.eStyleBorderType.DashDot;
                labelX.BackgroundStyle.BorderLeftWidth   = 2;
                labelX.BackgroundStyle.BorderRight       = DevComponents.DotNetBar.eStyleBorderType.DashDot;
                labelX.BackgroundStyle.BorderRightWidth  = 2;
                labelX.BackgroundStyle.BorderTop         = DevComponents.DotNetBar.eStyleBorderType.DashDot;
                labelX.BackgroundStyle.BorderTopWidth    = 2;
                labelX.BackgroundStyle.CornerType        = DevComponents.DotNetBar.eCornerType.Square;
                labelX.Location    = new System.Drawing.Point(462, 350);
                labelX.Size        = new System.Drawing.Size(15, 15);
                labelX.TabIndex    = 2;
                labelX.MouseEnter += new System.EventHandler(this.panel1_MouseEnter);
                labelX.MouseLeave += new System.EventHandler(this.panel1_MouseLeave);
                labelX.MouseClick += labelX_MouseClick;
                labelX.Tag         = item;

                this.Controls.Add(labelX);

                initGlobRect(item, labelX);
            }

            if (Controls.Count > 0)
            {
                labelRegion = Controls[0] as DevComponents.DotNetBar.LabelX;
                SelectRegion(labelRegion);
            }
        }
        private void initGlobRect(Rectangle rect, DevComponents.DotNetBar.LabelX labelX)
        {
            if (this.BackgroundImage == null)
            {
                return;
            }

            float x_r = this.BackgroundImage.Width / (float)this.Width;
            float y_r = this.BackgroundImage.Height / (float)this.Height;

            int w = x_r > y_r ? this.Width : (int)(this.BackgroundImage.Width / y_r);
            int h = x_r > y_r ? this.Height : (int)(this.BackgroundImage.Height / y_r);
            int x = (this.Width - w) / 2;
            int y = (this.Height - h) / 2;

            Rectangle rectimagesmll = new Rectangle(x, y, w, h);

            Rectangle subrectsmall = new Rectangle((int)(rect.X / Math.Max(x_r, y_r)), (int)(rect.Y / Math.Max(x_r, y_r)), (int)(rect.Width / Math.Max(x_r, y_r)), (int)(rect.Height / Math.Max(x_r, y_r)));

            Rectangle globrect = new Rectangle(subrectsmall.X + rectimagesmll.X, subrectsmall.Y + rectimagesmll.Y, subrectsmall.Width, subrectsmall.Height);

            labelX.Location = globrect.Location;
            labelX.Size     = globrect.Size;
        }
Пример #18
0
        /// <summary>
        /// 为一个数据库类型增加Lable标注,标题的字体、颜色、位置等可以在该函数中实现
        /// </summary>
        /// <param name="sLableText">标注文本</param>
        /// <param name="iCurrentRow">当前行</param>
        public void AddDataBaseTypeLable(string sLableText, int iCurrentRow)
        {
            DevComponents.DotNetBar.LabelX CaptionLable = new DevComponents.DotNetBar.LabelX();
            int x = 0;
            int y = 0;

            if (iCurrentRow == 0)
            {
                y = 0;
            }
            else
            {
                y = iCurrentRow * iNewButtonHeigh + iCurrentRow * iButtonDiatance + (iDataBaseTypeLableCount) * iDataBaseTypeLableHeight + 10;//cyf 20110627 modify:加10
            }
            CaptionLable.Location  = new System.Drawing.Point(x, y);
            CaptionLable.Text      = sLableText;
            CaptionLable.BackColor = System.Drawing.Color.Transparent;
            CaptionLable.Font      = new System.Drawing.Font("微软雅黑", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            CaptionLable.ForeColor = System.Drawing.Color.Black;
            CaptionLable.Name      = "DataTypeLable";
            CaptionLable.Size      = new System.Drawing.Size(425, 25);
            this.m_DataBaseGroupPanel.Controls.Add(CaptionLable);
            iDataBaseTypeLableCount += 1;
        }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.nudSchoolYear = new System.Windows.Forms.NumericUpDown();
     this.lblSchoolYear = new DevComponents.DotNetBar.LabelX();
     this.circularProgress = new DevComponents.DotNetBar.Controls.CircularProgress();
     this.btnPrint = new DevComponents.DotNetBar.ButtonX();
     this.btnExit = new DevComponents.DotNetBar.ButtonX();
     ((System.ComponentModel.ISupportInitialize)(this.nudSchoolYear)).BeginInit();
     this.SuspendLayout();
     //
     // nudSchoolYear
     //
     this.nudSchoolYear.Location = new System.Drawing.Point(103, 20);
     this.nudSchoolYear.Maximum = new decimal(new int[] {
     999,
     0,
     0,
     0});
     this.nudSchoolYear.Name = "nudSchoolYear";
     this.nudSchoolYear.Size = new System.Drawing.Size(66, 25);
     this.nudSchoolYear.TabIndex = 38;
     this.nudSchoolYear.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // lblSchoolYear
     //
     this.lblSchoolYear.AutoSize = true;
     this.lblSchoolYear.BackColor = System.Drawing.Color.Transparent;
     //
     //
     //
     this.lblSchoolYear.BackgroundStyle.Class = "";
     this.lblSchoolYear.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.lblSchoolYear.Location = new System.Drawing.Point(26, 22);
     this.lblSchoolYear.Name = "lblSchoolYear";
     this.lblSchoolYear.Size = new System.Drawing.Size(74, 21);
     this.lblSchoolYear.TabIndex = 37;
     this.lblSchoolYear.Text = "填報學年度";
     //
     // circularProgress
     //
     this.circularProgress.BackColor = System.Drawing.Color.Transparent;
     //
     //
     //
     this.circularProgress.BackgroundStyle.Class = "";
     this.circularProgress.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.circularProgress.Location = new System.Drawing.Point(28, 75);
     this.circularProgress.Name = "circularProgress";
     this.circularProgress.Size = new System.Drawing.Size(46, 28);
     this.circularProgress.Style = DevComponents.DotNetBar.eDotNetBarStyle.OfficeXP;
     this.circularProgress.TabIndex = 84;
     //
     // btnPrint
     //
     this.btnPrint.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btnPrint.AutoExpandOnClick = true;
     this.btnPrint.BackColor = System.Drawing.Color.Transparent;
     this.btnPrint.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.btnPrint.Location = new System.Drawing.Point(103, 75);
     this.btnPrint.Name = "btnPrint";
     this.btnPrint.Size = new System.Drawing.Size(72, 28);
     this.btnPrint.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.btnPrint.TabIndex = 83;
     this.btnPrint.Text = "列  印";
     this.btnPrint.Click += new System.EventHandler(this.btnPrint_Click);
     //
     // btnExit
     //
     this.btnExit.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btnExit.BackColor = System.Drawing.Color.Transparent;
     this.btnExit.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.btnExit.Location = new System.Drawing.Point(195, 75);
     this.btnExit.Name = "btnExit";
     this.btnExit.Size = new System.Drawing.Size(72, 28);
     this.btnExit.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.btnExit.TabIndex = 82;
     this.btnExit.Text = "離  開";
     this.btnExit.Click += new System.EventHandler(this.btnExit_Click);
     //
     // UnApproach_Report
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 17F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(293, 114);
     this.Controls.Add(this.circularProgress);
     this.Controls.Add(this.btnPrint);
     this.Controls.Add(this.btnExit);
     this.Controls.Add(this.nudSchoolYear);
     this.Controls.Add(this.lblSchoolYear);
     this.DoubleBuffered = true;
     this.Name = "UnApproach_Report";
     this.Text = "國中華業未升學未就業學生動向";
     this.TitleText = "國中華業未升學未就業學生動向";
     ((System.ComponentModel.ISupportInitialize)(this.nudSchoolYear)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Пример #20
0
 /// <summary> 
 /// Método necesario para admitir el Diseñador. No se puede modificar 
 /// el contenido del método con el editor de código.
 /// </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();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Tipo_Membresia));
     this.dataGridViewX1 = new DevComponents.DotNetBar.Controls.DataGridViewX();
     this.labelX2 = new DevComponents.DotNetBar.LabelX();
     this.textBoxX2 = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.textBoxX1 = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.labelX1 = new DevComponents.DotNetBar.LabelX();
     this.superValidator1 = new DevComponents.DotNetBar.Validator.SuperValidator();
     this.requiredFieldValidator1 = new DevComponents.DotNetBar.Validator.RequiredFieldValidator("Campo requerido");
     this.errorProvider1 = new System.Windows.Forms.ErrorProvider(this.components);
     this.highlighter1 = new DevComponents.DotNetBar.Validator.Highlighter();
     this.labelX3 = new DevComponents.DotNetBar.LabelX();
     ((System.ComponentModel.ISupportInitialize)(this.dataGridViewX1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).BeginInit();
     this.SuspendLayout();
     //
     // dataGridViewX1
     //
     this.dataGridViewX1.AllowUserToAddRows = false;
     this.dataGridViewX1.AllowUserToDeleteRows = false;
     this.dataGridViewX1.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill;
     this.dataGridViewX1.BackgroundColor = System.Drawing.Color.White;
     dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle1.BackColor = System.Drawing.SystemColors.Control;
     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.Color.Black;
     dataGridViewCellStyle1.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle1.SelectionForeColor = System.Drawing.Color.Black;
     dataGridViewCellStyle1.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
     this.dataGridViewX1.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle1;
     this.dataGridViewX1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle2.BackColor = System.Drawing.Color.White;
     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.Color.Black;
     dataGridViewCellStyle2.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle2.SelectionForeColor = System.Drawing.Color.Black;
     dataGridViewCellStyle2.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
     this.dataGridViewX1.DefaultCellStyle = dataGridViewCellStyle2;
     this.dataGridViewX1.EnableHeadersVisualStyles = false;
     this.dataGridViewX1.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(127)))), ((int)(((byte)(127)))), ((int)(((byte)(127)))));
     this.dataGridViewX1.Location = new System.Drawing.Point(31, 203);
     this.dataGridViewX1.MultiSelect = false;
     this.dataGridViewX1.Name = "dataGridViewX1";
     this.dataGridViewX1.ReadOnly = true;
     dataGridViewCellStyle3.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle3.BackColor = System.Drawing.SystemColors.Control;
     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.Color.Black;
     dataGridViewCellStyle3.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle3.SelectionForeColor = System.Drawing.Color.Black;
     dataGridViewCellStyle3.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
     this.dataGridViewX1.RowHeadersDefaultCellStyle = dataGridViewCellStyle3;
     this.dataGridViewX1.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
     this.dataGridViewX1.Size = new System.Drawing.Size(431, 150);
     this.dataGridViewX1.TabIndex = 14;
     //
     // labelX2
     //
     //
     //
     //
     this.labelX2.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX2.Location = new System.Drawing.Point(37, 95);
     this.labelX2.Name = "labelX2";
     this.labelX2.Size = new System.Drawing.Size(75, 23);
     this.labelX2.TabIndex = 13;
     this.labelX2.Text = "Descripcion :";
     //
     // textBoxX2
     //
     this.textBoxX2.BackColor = System.Drawing.Color.White;
     //
     //
     //
     this.textBoxX2.Border.Class = "TextBoxBorder";
     this.textBoxX2.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.textBoxX2.ForeColor = System.Drawing.Color.Black;
     this.textBoxX2.Location = new System.Drawing.Point(118, 94);
     this.textBoxX2.MaxLength = 3000;
     this.textBoxX2.Multiline = true;
     this.textBoxX2.Name = "textBoxX2";
     this.textBoxX2.ReadOnly = true;
     this.textBoxX2.Size = new System.Drawing.Size(271, 91);
     this.textBoxX2.TabIndex = 12;
     //
     // textBoxX1
     //
     this.textBoxX1.BackColor = System.Drawing.Color.White;
     //
     //
     //
     this.textBoxX1.Border.Class = "TextBoxBorder";
     this.textBoxX1.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.textBoxX1.ForeColor = System.Drawing.Color.Black;
     this.textBoxX1.Location = new System.Drawing.Point(118, 68);
     this.textBoxX1.MaxLength = 50;
     this.textBoxX1.Name = "textBoxX1";
     this.textBoxX1.ReadOnly = true;
     this.textBoxX1.Size = new System.Drawing.Size(141, 20);
     this.textBoxX1.TabIndex = 11;
     this.superValidator1.SetValidator1(this.textBoxX1, this.requiredFieldValidator1);
     //
     // labelX1
     //
     //
     //
     //
     this.labelX1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX1.Location = new System.Drawing.Point(37, 65);
     this.labelX1.Name = "labelX1";
     this.labelX1.Size = new System.Drawing.Size(75, 23);
     this.labelX1.Style = DevComponents.DotNetBar.eDotNetBarStyle.Metro;
     this.labelX1.TabIndex = 10;
     this.labelX1.Text = "Nombre :";
     //
     // superValidator1
     //
     this.superValidator1.ContainerControl = this;
     this.superValidator1.ErrorProvider = this.errorProvider1;
     this.superValidator1.Highlighter = this.highlighter1;
     //
     // requiredFieldValidator1
     //
     this.requiredFieldValidator1.ErrorMessage = "Campo requerido";
     this.requiredFieldValidator1.HighlightColor = DevComponents.DotNetBar.Validator.eHighlightColor.Red;
     //
     // errorProvider1
     //
     this.errorProvider1.ContainerControl = this;
     this.errorProvider1.Icon = ((System.Drawing.Icon)(resources.GetObject("errorProvider1.Icon")));
     //
     // highlighter1
     //
     this.highlighter1.ContainerControl = this;
     //
     // labelX3
     //
     //
     //
     //
     this.labelX3.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX3.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelX3.Location = new System.Drawing.Point(162, 23);
     this.labelX3.Name = "labelX3";
     this.labelX3.Size = new System.Drawing.Size(189, 23);
     this.labelX3.TabIndex = 15;
     this.labelX3.Text = "TIPOS DE MEMBRESIA";
     //
     // Tipo_Membresia
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.labelX3);
     this.Controls.Add(this.dataGridViewX1);
     this.Controls.Add(this.labelX2);
     this.Controls.Add(this.textBoxX2);
     this.Controls.Add(this.textBoxX1);
     this.Controls.Add(this.labelX1);
     this.Name = "Tipo_Membresia";
     this.Size = new System.Drawing.Size(497, 380);
     this.Load += new System.EventHandler(this.Tipo_Membresia_Load);
     ((System.ComponentModel.ISupportInitialize)(this.dataGridViewX1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).EndInit();
     this.ResumeLayout(false);
 }
 /// <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);
 }
 /// <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);
 }
Пример #23
0
        private void InitializeComponent()
        {
            components = new System.ComponentModel.Container();
            var resources = new System.ComponentModel.ComponentResourceManager(typeof(Main));

            _ProgressBarX1 = new DevComponents.DotNetBar.Controls.ProgressBarX();
            _Panel1        = new Panel();
            _LabelX_Header = new DevComponents.DotNetBar.LabelX();
            _LabelX_Status = new DevComponents.DotNetBar.LabelX();
            _Panel1.SuspendLayout();
            SuspendLayout();
            //
            // ProgressBarX1
            //
            _ProgressBarX1.Anchor = AnchorStyles.Top | AnchorStyles.Left | AnchorStyles.Right;
            //
            //
            //
            _ProgressBarX1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            _ProgressBarX1.Location     = new Point(3, 94);
            _ProgressBarX1.Name         = "ProgressBarX1";
            _ProgressBarX1.ProgressType = DevComponents.DotNetBar.eProgressItemType.Marquee;
            _ProgressBarX1.Size         = new Size(628, 16);
            _ProgressBarX1.Style        = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            _ProgressBarX1.TabIndex     = 0;
            //
            // Panel1
            //
            _Panel1.BackColor = Color.Transparent;
            _Panel1.Controls.Add(_LabelX_Header);
            _Panel1.Controls.Add(_LabelX_Status);
            _Panel1.Controls.Add(_ProgressBarX1);
            _Panel1.Dock     = DockStyle.Fill;
            _Panel1.Location = new Point(0, 0);
            _Panel1.Name     = "Panel1";
            _Panel1.Size     = new Size(634, 111);
            _Panel1.TabIndex = 1;
            //
            // LabelX_Header
            //
            _LabelX_Header.Anchor = AnchorStyles.Top | AnchorStyles.Left | AnchorStyles.Right;
            //
            //
            //
            _LabelX_Header.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            _LabelX_Header.Font     = new Font("Calibri", 8.25F, FontStyle.Regular, GraphicsUnit.Point, Conversions.ToByte(0));
            _LabelX_Header.Location = new Point(3, 3);
            _LabelX_Header.Name     = "LabelX_Header";
            _LabelX_Header.Size     = new Size(628, 56);
            _LabelX_Header.TabIndex = 3;
            _LabelX_Header.Text     = "<div align=\"center\" valign=\"center\"><font color=\"#B7472A\" size=\"20\"><b>SM64 ROM M" + "anager wird aktuallisierung ...</b></font></div>";
            //
            // LabelX_Status
            //
            _LabelX_Status.Anchor = AnchorStyles.Top | AnchorStyles.Left | AnchorStyles.Right;
            //
            //
            //
            _LabelX_Status.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            _LabelX_Status.Location = new Point(3, 65);
            _LabelX_Status.Name     = "LabelX_Status";
            _LabelX_Status.Size     = new Size(628, 23);
            _LabelX_Status.TabIndex = 2;
            _LabelX_Status.Text     = "Idle ...";
            //
            // Main
            //
            AutoScaleDimensions = new SizeF(6.0F, 13.0F);
            AutoScaleMode       = AutoScaleMode.Font;
            ClientSize          = new Size(634, 111);
            Controls.Add(_Panel1);
            FormBorderStyle = FormBorderStyle.FixedSingle;
            Icon            = (Icon)resources.GetObject("$this.Icon");
            MaximizeBox     = false;
            MinimizeBox     = false;
            Name            = "Main";
            StartPosition   = FormStartPosition.CenterScreen;
            Text            = "Installing";
            _Panel1.ResumeLayout(false);
            ResumeLayout(false);
        }
        private void InitializeComponent()
        {
            components = new System.ComponentModel.Container();
            var resources = new System.ComponentModel.ComponentResourceManager(typeof(CollisionEditor));

            _TextBoxX_ColParam2              = new DevComponents.DotNetBar.Controls.TextBoxX();
            _TextBoxX_ColParam2.TextChanged += new EventHandler(ComboBox_CI_ColType_SelectedIndexChanged);
            _TextBoxX_ColParam1              = new DevComponents.DotNetBar.Controls.TextBoxX();
            _TextBoxX_ColParam1.TextChanged += new EventHandler(ComboBox_CI_ColType_SelectedIndexChanged);
            _LabelX_ColParamsTipp            = new DevComponents.DotNetBar.LabelX();
            _LabelX_Param2          = new DevComponents.DotNetBar.LabelX();
            _LabelX_Param1          = new DevComponents.DotNetBar.LabelX();
            _Button_SaveColsettings = new DevComponents.DotNetBar.ButtonX();
            _LabelX48         = new DevComponents.DotNetBar.LabelX();
            _ComboBox_ColType = new DevComponents.DotNetBar.Controls.ComboBoxEx();
            _ComboBox_ColType.SelectedIndexChanged += new EventHandler(ComboBox_CI_ColType_SelectedIndexChanged);
            _LabelX_CollisionType       = new DevComponents.DotNetBar.LabelX();
            _CheckBoxX1                 = new DevComponents.DotNetBar.Controls.CheckBoxX();
            _CheckBoxX1.CheckedChanged += new EventHandler(CheckBoxX1_CheckedChanging);
            _TextBoxX1                         = new DevComponents.DotNetBar.Controls.TextBoxX();
            _TextBoxX1.TextChanged            += new EventHandler(TextBoxX1_TextChanged);
            _ListViewEx1                       = new DevComponents.DotNetBar.Controls.ListViewEx();
            _ListViewEx1.SelectedIndexChanged += new EventHandler(ListBoxAdv_CI_Textures_ItemClick);
            _SuperTooltip1                     = new DevComponents.DotNetBar.SuperTooltip();
            _PictureBox1                       = new System.Windows.Forms.PictureBox();
            _Panel1 = new System.Windows.Forms.Panel();
            _CheckBoxX_IsNonSolid = new DevComponents.DotNetBar.Controls.CheckBoxX();
            _CheckBoxX_IsNonSolid.CheckedChanged += new EventHandler(ButtonItem_IsNonSolid_CheckedChanged);
            _CircularProgress1 = new DevComponents.DotNetBar.Controls.CircularProgress();
            _Panel2            = new System.Windows.Forms.Panel();
            ((System.ComponentModel.ISupportInitialize)_PictureBox1).BeginInit();
            _Panel1.SuspendLayout();
            _Panel2.SuspendLayout();
            SuspendLayout();
            //
            // TextBoxX_ColParam2
            //
            resources.ApplyResources(_TextBoxX_ColParam2, "TextBoxX_ColParam2");
            _TextBoxX_ColParam2.BackColor = System.Drawing.Color.White;
            //
            //
            //
            _TextBoxX_ColParam2.Border.Class      = "TextBoxBorder";
            _TextBoxX_ColParam2.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            _TextBoxX_ColParam2.DisabledBackColor = System.Drawing.Color.White;
            _TextBoxX_ColParam2.ForeColor         = System.Drawing.Color.Black;
            _TextBoxX_ColParam2.Name             = "TextBoxX_ColParam2";
            _TextBoxX_ColParam2.PreventEnterBeep = true;
            //
            // TextBoxX_ColParam1
            //
            resources.ApplyResources(_TextBoxX_ColParam1, "TextBoxX_ColParam1");
            _TextBoxX_ColParam1.BackColor = System.Drawing.Color.White;
            //
            //
            //
            _TextBoxX_ColParam1.Border.Class      = "TextBoxBorder";
            _TextBoxX_ColParam1.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            _TextBoxX_ColParam1.DisabledBackColor = System.Drawing.Color.White;
            _TextBoxX_ColParam1.ForeColor         = System.Drawing.Color.Black;
            _TextBoxX_ColParam1.Name             = "TextBoxX_ColParam1";
            _TextBoxX_ColParam1.PreventEnterBeep = true;
            //
            // LabelX_ColParamsTipp
            //
            resources.ApplyResources(_LabelX_ColParamsTipp, "LabelX_ColParamsTipp");
            //
            //
            //
            _LabelX_ColParamsTipp.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            _LabelX_ColParamsTipp.Name              = "LabelX_ColParamsTipp";
            _LabelX_ColParamsTipp.Style             = DevComponents.DotNetBar.eDotNetBarStyle.OfficeXP;
            _LabelX_ColParamsTipp.TextLineAlignment = System.Drawing.StringAlignment.Near;
            //
            // LabelX_Param2
            //
            resources.ApplyResources(_LabelX_Param2, "LabelX_Param2");
            //
            //
            //
            _LabelX_Param2.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            _LabelX_Param2.Name  = "LabelX_Param2";
            _LabelX_Param2.Style = DevComponents.DotNetBar.eDotNetBarStyle.OfficeXP;
            //
            // LabelX_Param1
            //
            resources.ApplyResources(_LabelX_Param1, "LabelX_Param1");
            //
            //
            //
            _LabelX_Param1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            _LabelX_Param1.Name  = "LabelX_Param1";
            _LabelX_Param1.Style = DevComponents.DotNetBar.eDotNetBarStyle.OfficeXP;
            //
            // Button_SaveColsettings
            //
            _Button_SaveColsettings.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
            resources.ApplyResources(_Button_SaveColsettings, "Button_SaveColsettings");
            _Button_SaveColsettings.ColorTable       = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
            _Button_SaveColsettings.DialogResult     = System.Windows.Forms.DialogResult.OK;
            _Button_SaveColsettings.FocusCuesEnabled = false;
            _Button_SaveColsettings.Name             = "Button_SaveColsettings";
            _Button_SaveColsettings.Style            = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            //
            // LabelX48
            //
            //
            //
            //
            _LabelX48.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            resources.ApplyResources(_LabelX48, "LabelX48");
            _LabelX48.Name  = "LabelX48";
            _LabelX48.Style = DevComponents.DotNetBar.eDotNetBarStyle.OfficeXP;
            //
            // ComboBox_ColType
            //
            resources.ApplyResources(_ComboBox_ColType, "ComboBox_ColType");
            _ComboBox_ColType.DrawMode          = System.Windows.Forms.DrawMode.OwnerDrawFixed;
            _ComboBox_ColType.DropDownHeight    = 150;
            _ComboBox_ColType.DropDownStyle     = System.Windows.Forms.ComboBoxStyle.DropDownList;
            _ComboBox_ColType.ForeColor         = System.Drawing.Color.Black;
            _ComboBox_ColType.FormattingEnabled = true;
            _ComboBox_ColType.Name  = "ComboBox_ColType";
            _ComboBox_ColType.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            //
            // LabelX_CollisionType
            //
            resources.ApplyResources(_LabelX_CollisionType, "LabelX_CollisionType");
            //
            //
            //
            _LabelX_CollisionType.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            _LabelX_CollisionType.Name  = "LabelX_CollisionType";
            _LabelX_CollisionType.Style = DevComponents.DotNetBar.eDotNetBarStyle.OfficeXP;
            //
            // CheckBoxX1
            //
            resources.ApplyResources(_CheckBoxX1, "CheckBoxX1");
            //
            //
            //
            _CheckBoxX1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            _CheckBoxX1.FocusCuesEnabled           = false;
            _CheckBoxX1.Name  = "CheckBoxX1";
            _CheckBoxX1.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            //
            // TextBoxX1
            //
            resources.ApplyResources(_TextBoxX1, "TextBoxX1");
            _TextBoxX1.BackColor = System.Drawing.Color.White;
            //
            //
            //
            _TextBoxX1.Border.Class      = "TextBoxBorder";
            _TextBoxX1.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            _TextBoxX1.DisabledBackColor = System.Drawing.Color.White;
            _TextBoxX1.ForeColor         = System.Drawing.Color.Black;
            _TextBoxX1.Name             = "TextBoxX1";
            _TextBoxX1.PreventEnterBeep = true;
            //
            // ListViewEx1
            //
            resources.ApplyResources(_ListViewEx1, "ListViewEx1");
            _ListViewEx1.BackColor = System.Drawing.Color.White;
            //
            //
            //
            _ListViewEx1.Border.Class      = "ListViewBorder";
            _ListViewEx1.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            _ListViewEx1.DisabledBackColor = System.Drawing.Color.Empty;
            _ListViewEx1.FocusCuesEnabled  = false;
            _ListViewEx1.ForeColor         = System.Drawing.Color.Black;
            _ListViewEx1.FullRowSelect     = true;
            _ListViewEx1.HideSelection     = false;
            _ListViewEx1.Name = "ListViewEx1";
            _ListViewEx1.UseCompatibleStateImageBehavior = false;
            //
            // SuperTooltip1
            //
            resources.ApplyResources(_SuperTooltip1, "SuperTooltip1");
            _SuperTooltip1.LicenseKey = "F962CEC7-CD8F-4911-A9E9-CAB39962FC1F";
            //
            // PictureBox1
            //
            resources.ApplyResources(_PictureBox1, "PictureBox1");
            _PictureBox1.Name    = "PictureBox1";
            _PictureBox1.TabStop = false;
            //
            // Panel1
            //
            resources.ApplyResources(_Panel1, "Panel1");
            _Panel1.BackColor = System.Drawing.Color.Transparent;
            _Panel1.Controls.Add(_LabelX_CollisionType);
            _Panel1.Controls.Add(_ComboBox_ColType);
            _Panel1.Controls.Add(_LabelX_Param2);
            _Panel1.Controls.Add(_LabelX_ColParamsTipp);
            _Panel1.Controls.Add(_LabelX_Param1);
            _Panel1.Controls.Add(_TextBoxX_ColParam1);
            _Panel1.Controls.Add(_CheckBoxX1);
            _Panel1.Controls.Add(_TextBoxX_ColParam2);
            _Panel1.Controls.Add(_TextBoxX1);
            _Panel1.Name = "Panel1";
            //
            // CheckBoxX_IsNonSolid
            //
            resources.ApplyResources(_CheckBoxX_IsNonSolid, "CheckBoxX_IsNonSolid");
            //
            //
            //
            _CheckBoxX_IsNonSolid.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            _CheckBoxX_IsNonSolid.FocusCuesEnabled           = false;
            _CheckBoxX_IsNonSolid.Name  = "CheckBoxX_IsNonSolid";
            _CheckBoxX_IsNonSolid.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            //
            // CircularProgress1
            //
            resources.ApplyResources(_CircularProgress1, "CircularProgress1");
            _CircularProgress1.BackColor = System.Drawing.Color.Transparent;
            //
            //
            //
            _CircularProgress1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            _CircularProgress1.Name = "CircularProgress1";
            _CircularProgress1.SetVisibleStateOnStart = true;
            _CircularProgress1.SetVisibleStateOnStop  = true;
            _CircularProgress1.Style = DevComponents.DotNetBar.eDotNetBarStyle.OfficeXP;
            //
            // Panel2
            //
            _Panel2.BackColor = System.Drawing.Color.Transparent;
            _Panel2.Controls.Add(_LabelX48);
            _Panel2.Controls.Add(_CircularProgress1);
            _Panel2.Controls.Add(_Button_SaveColsettings);
            _Panel2.Controls.Add(_CheckBoxX_IsNonSolid);
            _Panel2.Controls.Add(_ListViewEx1);
            _Panel2.Controls.Add(_Panel1);
            _Panel2.Controls.Add(_PictureBox1);
            resources.ApplyResources(_Panel2, "Panel2");
            _Panel2.Name = "Panel2";
            //
            // CollisionEditor
            //
            resources.ApplyResources(this, "$this");
            AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            Controls.Add(_Panel2);
            MaximizeBox        = false;
            MinimizeBox        = false;
            Name               = "CollisionEditor";
            TopLeftCornerSize  = 0;
            TopRightCornerSize = 0;
            ((System.ComponentModel.ISupportInitialize)_PictureBox1).EndInit();
            _Panel1.ResumeLayout(false);
            _Panel2.ResumeLayout(false);
            ResumeLayout(false);
        }
Пример #25
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);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
     this.lblImpName = new DevComponents.DotNetBar.LabelX();
     this.labelX3 = new DevComponents.DotNetBar.LabelX();
     this.dgQuizData = new DevComponents.DotNetBar.Controls.DataGridViewX();
     this.colDataField = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colDataValue = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.btnSave = new DevComponents.DotNetBar.ButtonX();
     this.btnExit = new DevComponents.DotNetBar.ButtonX();
     this.dtImplementationDate = new DevComponents.Editors.DateTimeAdv.DateTimeInput();
     this.dtAnalysisDate = new DevComponents.Editors.DateTimeAdv.DateTimeInput();
     this.labelX1 = new DevComponents.DotNetBar.LabelX();
     this.cbxQuizName = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     ((System.ComponentModel.ISupportInitialize)(this.dgQuizData)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtImplementationDate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtAnalysisDate)).BeginInit();
     this.SuspendLayout();
     //
     // lblImpName
     //
     this.lblImpName.BackColor = System.Drawing.Color.Transparent;
     //
     //
     //
     this.lblImpName.BackgroundStyle.Class = "";
     this.lblImpName.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.lblImpName.Location = new System.Drawing.Point(13, 54);
     this.lblImpName.Name = "lblImpName";
     this.lblImpName.Size = new System.Drawing.Size(58, 23);
     this.lblImpName.TabIndex = 1;
     this.lblImpName.Text = "實施日期";
     //
     // labelX3
     //
     this.labelX3.BackColor = System.Drawing.Color.Transparent;
     //
     //
     //
     this.labelX3.BackgroundStyle.Class = "";
     this.labelX3.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX3.Location = new System.Drawing.Point(272, 54);
     this.labelX3.Name = "labelX3";
     this.labelX3.Size = new System.Drawing.Size(70, 23);
     this.labelX3.TabIndex = 3;
     this.labelX3.Text = "解析日期";
     //
     // dgQuizData
     //
     this.dgQuizData.AllowUserToAddRows = false;
     this.dgQuizData.AllowUserToDeleteRows = false;
     this.dgQuizData.BackgroundColor = System.Drawing.Color.White;
     this.dgQuizData.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dgQuizData.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.colDataField,
     this.colDataValue});
     dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle1.BackColor = System.Drawing.SystemColors.Window;
     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.ControlText;
     dataGridViewCellStyle1.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle1.SelectionForeColor = System.Drawing.SystemColors.ControlText;
     dataGridViewCellStyle1.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
     this.dgQuizData.DefaultCellStyle = dataGridViewCellStyle1;
     this.dgQuizData.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(208)))), ((int)(((byte)(215)))), ((int)(((byte)(229)))));
     this.dgQuizData.Location = new System.Drawing.Point(13, 91);
     this.dgQuizData.Name = "dgQuizData";
     this.dgQuizData.RowTemplate.Height = 24;
     this.dgQuizData.Size = new System.Drawing.Size(448, 183);
     this.dgQuizData.TabIndex = 3;
     this.dgQuizData.CurrentCellDirtyStateChanged += new System.EventHandler(this.dgQuizData_CurrentCellDirtyStateChanged);
     //
     // colDataField
     //
     this.colDataField.HeaderText = "項目名稱";
     this.colDataField.Name = "colDataField";
     this.colDataField.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     //
     // colDataValue
     //
     this.colDataValue.HeaderText = "測驗結果";
     this.colDataValue.Name = "colDataValue";
     this.colDataValue.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     this.colDataValue.Width = 300;
     //
     // btnSave
     //
     this.btnSave.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btnSave.BackColor = System.Drawing.Color.Transparent;
     this.btnSave.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.btnSave.Location = new System.Drawing.Point(302, 282);
     this.btnSave.Name = "btnSave";
     this.btnSave.Size = new System.Drawing.Size(75, 23);
     this.btnSave.TabIndex = 4;
     this.btnSave.Text = "儲存";
     this.btnSave.Click += new System.EventHandler(this.btnSave_Click);
     //
     // btnExit
     //
     this.btnExit.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btnExit.BackColor = System.Drawing.Color.Transparent;
     this.btnExit.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.btnExit.Location = new System.Drawing.Point(386, 282);
     this.btnExit.Name = "btnExit";
     this.btnExit.Size = new System.Drawing.Size(75, 23);
     this.btnExit.TabIndex = 5;
     this.btnExit.Text = "離開";
     this.btnExit.Click += new System.EventHandler(this.btnExit_Click);
     //
     // dtImplementationDate
     //
     this.dtImplementationDate.BackColor = System.Drawing.Color.Transparent;
     //
     //
     //
     this.dtImplementationDate.BackgroundStyle.Class = "DateTimeInputBackground";
     this.dtImplementationDate.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dtImplementationDate.ButtonDropDown.Shortcut = DevComponents.DotNetBar.eShortcut.AltDown;
     this.dtImplementationDate.ButtonDropDown.Visible = true;
     this.dtImplementationDate.IsPopupCalendarOpen = false;
     this.dtImplementationDate.Location = new System.Drawing.Point(75, 52);
     //
     //
     //
     this.dtImplementationDate.MonthCalendar.AnnuallyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.dtImplementationDate.MonthCalendar.BackgroundStyle.BackColor = System.Drawing.SystemColors.Window;
     this.dtImplementationDate.MonthCalendar.BackgroundStyle.Class = "";
     this.dtImplementationDate.MonthCalendar.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dtImplementationDate.MonthCalendar.ClearButtonVisible = true;
     //
     //
     //
     this.dtImplementationDate.MonthCalendar.CommandsBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground2;
     this.dtImplementationDate.MonthCalendar.CommandsBackgroundStyle.BackColorGradientAngle = 90;
     this.dtImplementationDate.MonthCalendar.CommandsBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
     this.dtImplementationDate.MonthCalendar.CommandsBackgroundStyle.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.dtImplementationDate.MonthCalendar.CommandsBackgroundStyle.BorderTopColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarDockedBorder;
     this.dtImplementationDate.MonthCalendar.CommandsBackgroundStyle.BorderTopWidth = 1;
     this.dtImplementationDate.MonthCalendar.CommandsBackgroundStyle.Class = "";
     this.dtImplementationDate.MonthCalendar.CommandsBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dtImplementationDate.MonthCalendar.DayNames = new string[] {
     "日",
     "一",
     "二",
     "三",
     "四",
     "五",
     "六"};
     this.dtImplementationDate.MonthCalendar.DisplayMonth = new System.DateTime(2011, 5, 1, 0, 0, 0, 0);
     this.dtImplementationDate.MonthCalendar.MarkedDates = new System.DateTime[0];
     this.dtImplementationDate.MonthCalendar.MonthlyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.dtImplementationDate.MonthCalendar.NavigationBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.dtImplementationDate.MonthCalendar.NavigationBackgroundStyle.BackColorGradientAngle = 90;
     this.dtImplementationDate.MonthCalendar.NavigationBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.dtImplementationDate.MonthCalendar.NavigationBackgroundStyle.Class = "";
     this.dtImplementationDate.MonthCalendar.NavigationBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dtImplementationDate.MonthCalendar.TodayButtonVisible = true;
     this.dtImplementationDate.MonthCalendar.WeeklyMarkedDays = new System.DayOfWeek[0];
     this.dtImplementationDate.Name = "dtImplementationDate";
     this.dtImplementationDate.Size = new System.Drawing.Size(131, 25);
     this.dtImplementationDate.TabIndex = 1;
     //
     // dtAnalysisDate
     //
     this.dtAnalysisDate.BackColor = System.Drawing.Color.Transparent;
     //
     //
     //
     this.dtAnalysisDate.BackgroundStyle.Class = "DateTimeInputBackground";
     this.dtAnalysisDate.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dtAnalysisDate.ButtonDropDown.Shortcut = DevComponents.DotNetBar.eShortcut.AltDown;
     this.dtAnalysisDate.ButtonDropDown.Visible = true;
     this.dtAnalysisDate.IsPopupCalendarOpen = false;
     this.dtAnalysisDate.Location = new System.Drawing.Point(330, 52);
     //
     //
     //
     this.dtAnalysisDate.MonthCalendar.AnnuallyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.dtAnalysisDate.MonthCalendar.BackgroundStyle.BackColor = System.Drawing.SystemColors.Window;
     this.dtAnalysisDate.MonthCalendar.BackgroundStyle.Class = "";
     this.dtAnalysisDate.MonthCalendar.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dtAnalysisDate.MonthCalendar.ClearButtonVisible = true;
     //
     //
     //
     this.dtAnalysisDate.MonthCalendar.CommandsBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground2;
     this.dtAnalysisDate.MonthCalendar.CommandsBackgroundStyle.BackColorGradientAngle = 90;
     this.dtAnalysisDate.MonthCalendar.CommandsBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
     this.dtAnalysisDate.MonthCalendar.CommandsBackgroundStyle.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.dtAnalysisDate.MonthCalendar.CommandsBackgroundStyle.BorderTopColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarDockedBorder;
     this.dtAnalysisDate.MonthCalendar.CommandsBackgroundStyle.BorderTopWidth = 1;
     this.dtAnalysisDate.MonthCalendar.CommandsBackgroundStyle.Class = "";
     this.dtAnalysisDate.MonthCalendar.CommandsBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dtAnalysisDate.MonthCalendar.DayNames = new string[] {
     "日",
     "一",
     "二",
     "三",
     "四",
     "五",
     "六"};
     this.dtAnalysisDate.MonthCalendar.DisplayMonth = new System.DateTime(2011, 5, 1, 0, 0, 0, 0);
     this.dtAnalysisDate.MonthCalendar.MarkedDates = new System.DateTime[0];
     this.dtAnalysisDate.MonthCalendar.MonthlyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.dtAnalysisDate.MonthCalendar.NavigationBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.dtAnalysisDate.MonthCalendar.NavigationBackgroundStyle.BackColorGradientAngle = 90;
     this.dtAnalysisDate.MonthCalendar.NavigationBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.dtAnalysisDate.MonthCalendar.NavigationBackgroundStyle.Class = "";
     this.dtAnalysisDate.MonthCalendar.NavigationBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dtAnalysisDate.MonthCalendar.TodayButtonVisible = true;
     this.dtAnalysisDate.MonthCalendar.WeeklyMarkedDays = new System.DayOfWeek[0];
     this.dtAnalysisDate.Name = "dtAnalysisDate";
     this.dtAnalysisDate.Size = new System.Drawing.Size(131, 25);
     this.dtAnalysisDate.TabIndex = 2;
     //
     // labelX1
     //
     this.labelX1.BackColor = System.Drawing.Color.Transparent;
     //
     //
     //
     this.labelX1.BackgroundStyle.Class = "";
     this.labelX1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX1.Location = new System.Drawing.Point(13, 15);
     this.labelX1.Name = "labelX1";
     this.labelX1.Size = new System.Drawing.Size(58, 23);
     this.labelX1.TabIndex = 6;
     this.labelX1.Text = "測驗名稱";
     //
     // cbxQuizName
     //
     this.cbxQuizName.DisplayMember = "Text";
     this.cbxQuizName.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.cbxQuizName.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cbxQuizName.FormattingEnabled = true;
     this.cbxQuizName.ItemHeight = 19;
     this.cbxQuizName.Location = new System.Drawing.Point(75, 13);
     this.cbxQuizName.Name = "cbxQuizName";
     this.cbxQuizName.Size = new System.Drawing.Size(386, 25);
     this.cbxQuizName.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.cbxQuizName.TabIndex = 7;
     this.cbxQuizName.SelectedIndexChanged += new System.EventHandler(this.cbxQuizName_SelectedIndexChanged);
     //
     // StudQuizDataForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 17F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(470, 309);
     this.Controls.Add(this.cbxQuizName);
     this.Controls.Add(this.labelX1);
     this.Controls.Add(this.dtAnalysisDate);
     this.Controls.Add(this.dtImplementationDate);
     this.Controls.Add(this.btnExit);
     this.Controls.Add(this.btnSave);
     this.Controls.Add(this.dgQuizData);
     this.Controls.Add(this.labelX3);
     this.Controls.Add(this.lblImpName);
     this.DoubleBuffered = true;
     this.Name = "StudQuizDataForm";
     this.Text = "學生測驗內容";
     this.Load += new System.EventHandler(this.StudQuizDataForm_Load);
     ((System.ComponentModel.ISupportInitialize)(this.dgQuizData)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtImplementationDate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtAnalysisDate)).EndInit();
     this.ResumeLayout(false);
 }
 /// <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.saveButton = new DevComponents.DotNetBar.ButtonX();
     this.cancelButton = new DevComponents.DotNetBar.ButtonX();
     this.labelXTitle = new DevComponents.DotNetBar.LabelX();
     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.labelX_back = new DevComponents.DotNetBar.LabelX();
     this.SuspendLayout();
     //
     // saveButton
     //
     this.saveButton.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.saveButton.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.saveButton.Location = new System.Drawing.Point(54, 307);
     this.saveButton.Name = "saveButton";
     this.saveButton.Size = new System.Drawing.Size(92, 31);
     this.saveButton.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.saveButton.TabIndex = 70;
     this.saveButton.Text = "Save";
     this.saveButton.Click += new System.EventHandler(this.saveButton_Click);
     //
     // cancelButton
     //
     this.cancelButton.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.cancelButton.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.cancelButton.Location = new System.Drawing.Point(156, 307);
     this.cancelButton.Name = "cancelButton";
     this.cancelButton.Size = new System.Drawing.Size(92, 31);
     this.cancelButton.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.cancelButton.TabIndex = 21;
     this.cancelButton.Text = "Cancel";
     this.toolTip1.SetToolTip(this.cancelButton, "Return without saving");
     this.cancelButton.Click += new System.EventHandler(this.cancelButton_Click);
     //
     // 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(65, 4);
     this.labelXTitle.Name = "labelXTitle";
     this.labelXTitle.Size = new System.Drawing.Size(194, 34);
     this.labelXTitle.TabIndex = 19;
     this.labelXTitle.Text = "ADD GROUP";
     //
     // cmbContinuationType
     //
     this.cmbContinuationType.DisplayMember = "Text";
     this.cmbContinuationType.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.cmbContinuationType.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cmbContinuationType.FormattingEnabled = true;
     this.cmbContinuationType.ItemHeight = 17;
     this.cmbContinuationType.Location = new System.Drawing.Point(91, 208);
     this.cmbContinuationType.Name = "cmbContinuationType";
     this.cmbContinuationType.Size = new System.Drawing.Size(209, 23);
     this.cmbContinuationType.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.cmbContinuationType.TabIndex = 82;
     //
     // cmbHistoricalPeriod
     //
     this.cmbHistoricalPeriod.DisplayMember = "Text";
     this.cmbHistoricalPeriod.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.cmbHistoricalPeriod.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     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(91, 154);
     this.cmbHistoricalPeriod.Name = "cmbHistoricalPeriod";
     this.cmbHistoricalPeriod.Size = new System.Drawing.Size(209, 23);
     this.cmbHistoricalPeriod.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.cmbHistoricalPeriod.TabIndex = 81;
     //
     // 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(91, 125);
     this.textBoxXListName.Name = "textBoxXListName";
     this.textBoxXListName.Size = new System.Drawing.Size(209, 23);
     this.textBoxXListName.TabIndex = 77;
     //
     // 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(8, 125);
     this.labelX1.Name = "labelX1";
     this.labelX1.Size = new System.Drawing.Size(77, 21);
     this.labelX1.TabIndex = 78;
     this.labelX1.Text = "Group 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(8, 154);
     this.labelX2.Name = "labelX2";
     this.labelX2.Size = new System.Drawing.Size(63, 21);
     this.labelX2.TabIndex = 79;
     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(8, 181);
     this.labelX3.Name = "labelX3";
     this.labelX3.Size = new System.Drawing.Size(108, 21);
     this.labelX3.TabIndex = 80;
     this.labelX3.Text = "Continuation Types:";
     this.labelX3.TextAlignment = System.Drawing.StringAlignment.Far;
     //
     // labelX_back
     //
     //
     //
     //
     this.labelX_back.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX_back.Font = new System.Drawing.Font("Segoe UI", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelX_back.ForeColor = System.Drawing.Color.Black;
     this.labelX_back.Location = new System.Drawing.Point(3, 4);
     this.labelX_back.Name = "labelX_back";
     this.labelX_back.PaddingLeft = 6;
     this.labelX_back.Size = new System.Drawing.Size(68, 64);
     this.labelX_back.Symbol = "";
     this.labelX_back.SymbolColor = System.Drawing.Color.Green;
     this.labelX_back.SymbolSize = 50F;
     this.labelX_back.TabIndex = 105;
     this.labelX_back.Visible = false;
     this.labelX_back.Click += new System.EventHandler(this.pictureBox1_Click);
     //
     // AddListControl
     //
     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.labelXTitle);
     this.Controls.Add(this.labelX_back);
     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.cancelButton);
     this.Controls.Add(this.saveButton);
     this.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
     this.Name = "AddListControl";
     this.Size = new System.Drawing.Size(303, 383);
     this.Load += new System.EventHandler(this.EditListControl_Load);
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
     this.labelX5 = new DevComponents.DotNetBar.LabelX();
     this.labelX1 = new DevComponents.DotNetBar.LabelX();
     this.groupPanel1 = new DevComponents.DotNetBar.Controls.GroupPanel();
     this.lbTenGiaoVien = new DevComponents.DotNetBar.LabelX();
     this.comboHoTen = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.buttonX1 = new DevComponents.DotNetBar.ButtonX();
     this.tbxMaHocSinh = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.comboLop = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.labelX2 = new DevComponents.DotNetBar.LabelX();
     this.lbHoTen = new DevComponents.DotNetBar.LabelX();
     this.labelX6 = new DevComponents.DotNetBar.LabelX();
     this.dtgvHocSinh = new DevComponents.DotNetBar.Controls.DataGridViewX();
     this.STT = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Lop = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.HoTen = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.MaHocSinh = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.GioiTinh = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.NgaySinh = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.DiaChi = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Email = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.lbKetQua = new DevComponents.DotNetBar.LabelX();
     this.buttonX4 = new DevComponents.DotNetBar.ButtonX();
     this.groupPanel2 = new DevComponents.DotNetBar.Controls.GroupPanel();
     this.lbKQ = new DevComponents.DotNetBar.LabelX();
     this.groupPanel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dtgvHocSinh)).BeginInit();
     this.groupPanel2.SuspendLayout();
     this.SuspendLayout();
     //
     // labelX5
     //
     //
     //
     //
     this.labelX5.BackgroundStyle.Class = "";
     this.labelX5.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX5.Font = new System.Drawing.Font("Microsoft Sans Serif", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelX5.Location = new System.Drawing.Point(340, 1);
     this.labelX5.Name = "labelX5";
     this.labelX5.Size = new System.Drawing.Size(171, 23);
     this.labelX5.TabIndex = 28;
     this.labelX5.Text = "Tra Cứu Học Sinh";
     //
     // labelX1
     //
     this.labelX1.BackColor = System.Drawing.Color.Transparent;
     //
     //
     //
     this.labelX1.BackgroundStyle.Class = "";
     this.labelX1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelX1.Location = new System.Drawing.Point(594, 3);
     this.labelX1.Name = "labelX1";
     this.labelX1.Size = new System.Drawing.Size(75, 23);
     this.labelX1.TabIndex = 29;
     this.labelX1.Text = "Mã Học Sinh: ";
     //
     // groupPanel1
     //
     this.groupPanel1.CanvasColor = System.Drawing.SystemColors.Control;
     this.groupPanel1.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.groupPanel1.Controls.Add(this.lbTenGiaoVien);
     this.groupPanel1.Controls.Add(this.comboHoTen);
     this.groupPanel1.Controls.Add(this.buttonX1);
     this.groupPanel1.Controls.Add(this.tbxMaHocSinh);
     this.groupPanel1.Controls.Add(this.comboLop);
     this.groupPanel1.Controls.Add(this.labelX2);
     this.groupPanel1.Controls.Add(this.labelX1);
     this.groupPanel1.Controls.Add(this.lbHoTen);
     this.groupPanel1.Controls.Add(this.labelX6);
     this.groupPanel1.Location = new System.Drawing.Point(1, 30);
     this.groupPanel1.Name = "groupPanel1";
     this.groupPanel1.Size = new System.Drawing.Size(848, 80);
     //
     //
     //
     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 = 30;
     this.groupPanel1.Text = "Thông Tin Tra Cứu";
     //
     // lbTenGiaoVien
     //
     this.lbTenGiaoVien.BackColor = System.Drawing.Color.Transparent;
     //
     //
     //
     this.lbTenGiaoVien.BackgroundStyle.Class = "";
     this.lbTenGiaoVien.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.lbTenGiaoVien.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lbTenGiaoVien.Location = new System.Drawing.Point(164, 28);
     this.lbTenGiaoVien.Name = "lbTenGiaoVien";
     this.lbTenGiaoVien.Size = new System.Drawing.Size(92, 23);
     this.lbTenGiaoVien.TabIndex = 43;
     //
     // comboHoTen
     //
     this.comboHoTen.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.SuggestAppend;
     this.comboHoTen.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.ListItems;
     this.comboHoTen.DisplayMember = "Text";
     this.comboHoTen.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.comboHoTen.FormattingEnabled = true;
     this.comboHoTen.ItemHeight = 14;
     this.comboHoTen.Location = new System.Drawing.Point(356, 6);
     this.comboHoTen.Name = "comboHoTen";
     this.comboHoTen.Size = new System.Drawing.Size(195, 20);
     this.comboHoTen.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.comboHoTen.TabIndex = 35;
     this.comboHoTen.KeyDown += new System.Windows.Forms.KeyEventHandler(this.comboHoTen_KeyDown);
     //
     // buttonX1
     //
     this.buttonX1.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.buttonX1.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.buttonX1.ImageFixedSize = new System.Drawing.Size(26, 26);
     this.buttonX1.Location = new System.Drawing.Point(480, 32);
     this.buttonX1.Name = "buttonX1";
     this.buttonX1.Size = new System.Drawing.Size(71, 26);
     this.buttonX1.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.buttonX1.TabIndex = 41;
     this.buttonX1.Text = "Search";
     this.buttonX1.Click += new System.EventHandler(this.buttonX1_Click);
     //
     // tbxMaHocSinh
     //
     //
     //
     //
     this.tbxMaHocSinh.Border.Class = "TextBoxBorder";
     this.tbxMaHocSinh.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.tbxMaHocSinh.Location = new System.Drawing.Point(698, 4);
     this.tbxMaHocSinh.Name = "tbxMaHocSinh";
     this.tbxMaHocSinh.Size = new System.Drawing.Size(133, 20);
     this.tbxMaHocSinh.TabIndex = 31;
     //
     // comboLop
     //
     this.comboLop.DisplayMember = "Text";
     this.comboLop.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.comboLop.FormattingEnabled = true;
     this.comboLop.ItemHeight = 14;
     this.comboLop.Location = new System.Drawing.Point(100, 3);
     this.comboLop.Name = "comboLop";
     this.comboLop.Size = new System.Drawing.Size(58, 20);
     this.comboLop.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.comboLop.TabIndex = 38;
     this.comboLop.SelectedIndexChanged += new System.EventHandler(this.comboLop_SelectedIndexChanged);
     //
     // labelX2
     //
     this.labelX2.BackColor = System.Drawing.Color.Transparent;
     //
     //
     //
     this.labelX2.BackgroundStyle.Class = "";
     this.labelX2.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX2.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelX2.Location = new System.Drawing.Point(66, 3);
     this.labelX2.Name = "labelX2";
     this.labelX2.Size = new System.Drawing.Size(28, 23);
     this.labelX2.TabIndex = 37;
     this.labelX2.Text = "Lớp: ";
     //
     // lbHoTen
     //
     this.lbHoTen.BackColor = System.Drawing.Color.Transparent;
     //
     //
     //
     this.lbHoTen.BackgroundStyle.Class = "";
     this.lbHoTen.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.lbHoTen.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lbHoTen.Location = new System.Drawing.Point(227, 6);
     this.lbHoTen.Name = "lbHoTen";
     this.lbHoTen.Size = new System.Drawing.Size(112, 23);
     this.lbHoTen.TabIndex = 34;
     this.lbHoTen.Text = "Họ và Tên Học Sinh";
     //
     // labelX6
     //
     this.labelX6.BackColor = System.Drawing.Color.Transparent;
     //
     //
     //
     this.labelX6.BackgroundStyle.Class = "";
     this.labelX6.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX6.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelX6.Location = new System.Drawing.Point(66, 29);
     this.labelX6.Name = "labelX6";
     this.labelX6.Size = new System.Drawing.Size(92, 23);
     this.labelX6.TabIndex = 33;
     this.labelX6.Text = "Tên Giáo Viên: ";
     //
     // dtgvHocSinh
     //
     this.dtgvHocSinh.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dtgvHocSinh.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.STT,
     this.Lop,
     this.HoTen,
     this.MaHocSinh,
     this.GioiTinh,
     this.NgaySinh,
     this.DiaChi,
     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.dtgvHocSinh.DefaultCellStyle = dataGridViewCellStyle1;
     this.dtgvHocSinh.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(170)))), ((int)(((byte)(170)))), ((int)(((byte)(170)))));
     this.dtgvHocSinh.Location = new System.Drawing.Point(3, 3);
     this.dtgvHocSinh.Name = "dtgvHocSinh";
     this.dtgvHocSinh.Size = new System.Drawing.Size(842, 206);
     this.dtgvHocSinh.TabIndex = 0;
     //
     // STT
     //
     this.STT.DataPropertyName = "stt";
     this.STT.HeaderText = "STT";
     this.STT.Name = "STT";
     this.STT.Width = 30;
     //
     // Lop
     //
     this.Lop.DataPropertyName = "lop";
     this.Lop.HeaderText = "Lớp";
     this.Lop.Name = "Lop";
     this.Lop.Width = 50;
     //
     // HoTen
     //
     this.HoTen.DataPropertyName = "hoTen";
     this.HoTen.HeaderText = "Họ và Tên";
     this.HoTen.Name = "HoTen";
     this.HoTen.Width = 170;
     //
     // MaHocSinh
     //
     this.MaHocSinh.DataPropertyName = "maHocSinh";
     this.MaHocSinh.HeaderText = "Mã HS";
     this.MaHocSinh.Name = "MaHocSinh";
     this.MaHocSinh.Width = 70;
     //
     // GioiTinh
     //
     this.GioiTinh.DataPropertyName = "gioiTinh";
     this.GioiTinh.HeaderText = "Giới Tính";
     this.GioiTinh.Name = "GioiTinh";
     this.GioiTinh.Width = 80;
     //
     // NgaySinh
     //
     this.NgaySinh.DataPropertyName = "ngaySinh";
     this.NgaySinh.HeaderText = "Ngày Sinh";
     this.NgaySinh.Name = "NgaySinh";
     this.NgaySinh.Width = 130;
     //
     // DiaChi
     //
     this.DiaChi.DataPropertyName = "diaChi";
     this.DiaChi.HeaderText = "Địa Chỉ";
     this.DiaChi.Name = "DiaChi";
     this.DiaChi.Width = 170;
     //
     // Email
     //
     this.Email.DataPropertyName = "email";
     this.Email.HeaderText = "Email";
     this.Email.Name = "Email";
     //
     // lbKetQua
     //
     this.lbKetQua.BackColor = System.Drawing.Color.Transparent;
     //
     //
     //
     this.lbKetQua.BackgroundStyle.Class = "";
     this.lbKetQua.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.lbKetQua.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lbKetQua.Location = new System.Drawing.Point(1, 350);
     this.lbKetQua.Name = "lbKetQua";
     this.lbKetQua.Size = new System.Drawing.Size(97, 23);
     this.lbKetQua.TabIndex = 32;
     this.lbKetQua.Text = "Số lượng tìm thấy: ";
     //
     // buttonX4
     //
     this.buttonX4.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.buttonX4.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.buttonX4.Location = new System.Drawing.Point(780, 350);
     this.buttonX4.Name = "buttonX4";
     this.buttonX4.Size = new System.Drawing.Size(75, 23);
     this.buttonX4.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.buttonX4.TabIndex = 33;
     this.buttonX4.Text = "Đóng";
     this.buttonX4.Click += new System.EventHandler(this.buttonX4_Click);
     //
     // groupPanel2
     //
     this.groupPanel2.CanvasColor = System.Drawing.SystemColors.Control;
     this.groupPanel2.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.groupPanel2.Controls.Add(this.dtgvHocSinh);
     this.groupPanel2.Location = new System.Drawing.Point(1, 111);
     this.groupPanel2.Name = "groupPanel2";
     this.groupPanel2.Size = new System.Drawing.Size(854, 233);
     //
     //
     //
     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 = 34;
     this.groupPanel2.Text = "Thông Tin Tra Cứu";
     //
     // lbKQ
     //
     this.lbKQ.BackColor = System.Drawing.Color.Transparent;
     //
     //
     //
     this.lbKQ.BackgroundStyle.Class = "";
     this.lbKQ.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.lbKQ.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lbKQ.Location = new System.Drawing.Point(104, 350);
     this.lbKQ.Name = "lbKQ";
     this.lbKQ.Size = new System.Drawing.Size(22, 23);
     this.lbKQ.TabIndex = 35;
     this.lbKQ.Text = "0";
     //
     // frmTraCuuHocSinh
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(860, 373);
     this.Controls.Add(this.lbKQ);
     this.Controls.Add(this.groupPanel2);
     this.Controls.Add(this.buttonX4);
     this.Controls.Add(this.lbKetQua);
     this.Controls.Add(this.groupPanel1);
     this.Controls.Add(this.labelX5);
     this.DoubleBuffered = true;
     this.Name = "frmTraCuuHocSinh";
     this.Text = "Tra Cứu";
     this.Load += new System.EventHandler(this.frmTraCuu_Load);
     this.groupPanel1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.dtgvHocSinh)).EndInit();
     this.groupPanel2.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Пример #29
0
        private void InitializeComponent()
        {
            components = new System.ComponentModel.Container();
            var resources = new System.ComponentModel.ComponentResourceManager(typeof(ObjectCatalog));

            _ListViewEx1 = new DevComponents.DotNetBar.Controls.ListViewEx();
            _AdvTree1    = new DevComponents.AdvTree.AdvTree();
            _AdvTree1.AfterNodeSelect += new DevComponents.AdvTree.AdvTreeNodeEventHandler(AdvTree1_AfterNodeSelect);
            _ImageList_RefSymbols      = new System.Windows.Forms.ImageList(components);
            _Node1              = new DevComponents.AdvTree.Node();
            _NodeConnector1     = new DevComponents.AdvTree.NodeConnector();
            _ElementStyle1      = new DevComponents.DotNetBar.ElementStyle();
            _TableLayoutPanel_2 = new System.Windows.Forms.TableLayoutPanel();
            _TableLayoutPanel_1 = new System.Windows.Forms.TableLayoutPanel();
            _LabelX_MemberInfo  = new DevComponents.DotNetBar.LabelX();
            _CircularProgress1  = new DevComponents.DotNetBar.Controls.CircularProgress();
            ((System.ComponentModel.ISupportInitialize)_AdvTree1).BeginInit();
            _TableLayoutPanel_2.SuspendLayout();
            _TableLayoutPanel_1.SuspendLayout();
            SuspendLayout();
            //
            // ListViewEx1
            //
            _ListViewEx1.BackColor = System.Drawing.Color.White;
            //
            //
            //
            _ListViewEx1.Border.Class      = "ListViewBorder";
            _ListViewEx1.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            _ListViewEx1.DisabledBackColor = System.Drawing.Color.Empty;
            _ListViewEx1.Dock          = System.Windows.Forms.DockStyle.Fill;
            _ListViewEx1.ForeColor     = System.Drawing.Color.Black;
            _ListViewEx1.HideSelection = false;
            _ListViewEx1.Location      = new System.Drawing.Point(400, 3);
            _ListViewEx1.Name          = "ListViewEx1";
            _ListViewEx1.Size          = new System.Drawing.Size(391, 358);
            _ListViewEx1.TabIndex      = 0;
            _ListViewEx1.UseCompatibleStateImageBehavior = false;
            //
            // AdvTree1
            //
            _AdvTree1.AccessibleRole = System.Windows.Forms.AccessibleRole.Outline;
            _AdvTree1.BackColor      = System.Drawing.SystemColors.Window;
            //
            //
            //
            _AdvTree1.BackgroundStyle.Class      = "TreeBorderKey";
            _AdvTree1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            _AdvTree1.Dock                    = System.Windows.Forms.DockStyle.Fill;
            _AdvTree1.DragDropEnabled         = false;
            _AdvTree1.DragDropNodeCopyEnabled = false;
            _AdvTree1.ImageList               = _ImageList_RefSymbols;
            _AdvTree1.LicenseKey              = "F962CEC7-CD8F-4911-A9E9-CAB39962FC1F";
            _AdvTree1.Location                = new System.Drawing.Point(3, 3);
            _AdvTree1.Name                    = "AdvTree1";
            _AdvTree1.Nodes.AddRange(new DevComponents.AdvTree.Node[] { _Node1 });
            _AdvTree1.NodesConnector = _NodeConnector1;
            _AdvTree1.NodeStyle      = _ElementStyle1;
            _AdvTree1.PathSeparator  = ";";
            _AdvTree1.Size           = new System.Drawing.Size(391, 358);
            _AdvTree1.Styles.Add(_ElementStyle1);
            _AdvTree1.TabIndex = 1;
            _AdvTree1.Text     = "AdvTree1";
            //
            // ImageList_RefSymbols
            //
            _ImageList_RefSymbols.ColorDepth       = System.Windows.Forms.ColorDepth.Depth8Bit;
            _ImageList_RefSymbols.ImageSize        = new System.Drawing.Size(16, 16);
            _ImageList_RefSymbols.TransparentColor = System.Drawing.Color.Transparent;
            //
            // Node1
            //
            _Node1.Expanded = true;
            _Node1.Name     = "Node1";
            _Node1.Text     = "Node1";
            //
            // NodeConnector1
            //
            _NodeConnector1.LineColor = System.Drawing.SystemColors.ControlText;
            //
            // ElementStyle1
            //
            _ElementStyle1.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            _ElementStyle1.Name       = "ElementStyle1";
            _ElementStyle1.TextColor  = System.Drawing.SystemColors.ControlText;
            //
            // TableLayoutPanel_2
            //
            _TableLayoutPanel_2.BackColor   = System.Drawing.Color.Transparent;
            _TableLayoutPanel_2.ColumnCount = 2;
            _TableLayoutPanel_2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50.0F));
            _TableLayoutPanel_2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50.0F));
            _TableLayoutPanel_2.Controls.Add(_AdvTree1, 0, 0);
            _TableLayoutPanel_2.Controls.Add(_ListViewEx1, 1, 0);
            _TableLayoutPanel_2.Dock     = System.Windows.Forms.DockStyle.Fill;
            _TableLayoutPanel_2.Location = new System.Drawing.Point(3, 3);
            _TableLayoutPanel_2.Name     = "TableLayoutPanel_2";
            _TableLayoutPanel_2.RowCount = 1;
            _TableLayoutPanel_2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50.0F));
            _TableLayoutPanel_2.Size     = new System.Drawing.Size(794, 364);
            _TableLayoutPanel_2.TabIndex = 2;
            //
            // TableLayoutPanel_1
            //
            _TableLayoutPanel_1.BackColor   = System.Drawing.Color.Transparent;
            _TableLayoutPanel_1.ColumnCount = 1;
            _TableLayoutPanel_1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100.0F));
            _TableLayoutPanel_1.Controls.Add(_TableLayoutPanel_2, 0, 0);
            _TableLayoutPanel_1.Controls.Add(_LabelX_MemberInfo, 0, 1);
            _TableLayoutPanel_1.Dock     = System.Windows.Forms.DockStyle.Fill;
            _TableLayoutPanel_1.Location = new System.Drawing.Point(0, 0);
            _TableLayoutPanel_1.Name     = "TableLayoutPanel_1";
            _TableLayoutPanel_1.RowCount = 2;
            _TableLayoutPanel_1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100.0F));
            _TableLayoutPanel_1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 80.0F));
            _TableLayoutPanel_1.Size     = new System.Drawing.Size(800, 450);
            _TableLayoutPanel_1.TabIndex = 3;
            _TableLayoutPanel_1.Visible  = false;
            //
            // LabelX_MemberInfo
            //
            //
            //
            //
            _LabelX_MemberInfo.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            _LabelX_MemberInfo.Dock              = System.Windows.Forms.DockStyle.Fill;
            _LabelX_MemberInfo.Location          = new System.Drawing.Point(3, 373);
            _LabelX_MemberInfo.Name              = "LabelX_MemberInfo";
            _LabelX_MemberInfo.Size              = new System.Drawing.Size(794, 74);
            _LabelX_MemberInfo.TabIndex          = 3;
            _LabelX_MemberInfo.TextLineAlignment = System.Drawing.StringAlignment.Near;
            //
            // CircularProgress1
            //
            //
            //
            //
            _CircularProgress1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            _CircularProgress1.Location               = new System.Drawing.Point(363, 188);
            _CircularProgress1.Name                   = "CircularProgress1";
            _CircularProgress1.ProgressBarType        = DevComponents.DotNetBar.eCircularProgressType.Dot;
            _CircularProgress1.SetVisibleStateOnStart = true;
            _CircularProgress1.SetVisibleStateOnStop  = true;
            _CircularProgress1.Size                   = new System.Drawing.Size(75, 75);
            _CircularProgress1.Style                  = DevComponents.DotNetBar.eDotNetBarStyle.OfficeXP;
            _CircularProgress1.TabIndex               = 5;
            //
            // ObjectCatalog
            //
            AutoScaleDimensions = new System.Drawing.SizeF(6.0F, 13.0F);
            AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
            ClientSize          = new System.Drawing.Size(800, 450);
            Controls.Add(_CircularProgress1);
            Controls.Add(_TableLayoutPanel_1);
            Icon               = (System.Drawing.Icon)resources.GetObject("$this.Icon");
            Name               = "ObjectCatalog";
            StartPosition      = System.Windows.Forms.FormStartPosition.CenterScreen;
            Text               = "Object Catalog";
            TopLeftCornerSize  = 0;
            TopRightCornerSize = 0;
            ((System.ComponentModel.ISupportInitialize)_AdvTree1).EndInit();
            _TableLayoutPanel_2.ResumeLayout(false);
            _TableLayoutPanel_1.ResumeLayout(false);
            ResumeLayout(false);
        }
        private void InitializeComponent()
        {
            _ComboBox_ObjectBankSelector = new DevComponents.DotNetBar.Controls.ComboBoxEx();
            _ComboBox_ObjectBankSelector.SelectedIndexChanged += new EventHandler(ComboBox_ObjectBankSelector_SelectedIndexChanged);
            _ListBoxAdv_Content = new DevComponents.DotNetBar.ItemPanel();
            _LabelX29           = new DevComponents.DotNetBar.LabelX();
            SuspendLayout();
            //
            // ComboBox_ObjectBankSelector
            //
            _ComboBox_ObjectBankSelector.Anchor            = AnchorStyles.Top | AnchorStyles.Left | AnchorStyles.Right;
            _ComboBox_ObjectBankSelector.DrawMode          = DrawMode.OwnerDrawFixed;
            _ComboBox_ObjectBankSelector.DropDownStyle     = ComboBoxStyle.DropDownList;
            _ComboBox_ObjectBankSelector.ForeColor         = Color.Black;
            _ComboBox_ObjectBankSelector.FormattingEnabled = true;
            _ComboBox_ObjectBankSelector.ItemHeight        = 15;
            _ComboBox_ObjectBankSelector.Items.AddRange(new object[] { "Disabled", "Haunted Objects", "Snow Objects", "Assorted Enemies (1)", "Desert Objects", "Big Bob-Omb Boss", "Assorted Enemies (2)", "Water Objects", "Assorted Enemies (3)", "Peach & Yoshi", "Switches", "Lava Objects" });
            _ComboBox_ObjectBankSelector.Location = new Point(3, 3);
            _ComboBox_ObjectBankSelector.Name     = "ComboBox_ObjectBankSelector";
            _ComboBox_ObjectBankSelector.Size     = new Size(150, 21);
            _ComboBox_ObjectBankSelector.Style    = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            _ComboBox_ObjectBankSelector.TabIndex = 42;
            //
            // ListBoxAdv_LM_ContentOfOB0x0C
            //
            _ListBoxAdv_Content.Anchor = AnchorStyles.Top | AnchorStyles.Bottom | AnchorStyles.Left | AnchorStyles.Right;

            _ListBoxAdv_Content.AutoScroll = true;
            //
            //
            //
            _ListBoxAdv_Content.BackgroundStyle.Class            = "ListBoxAdv";
            _ListBoxAdv_Content.BackgroundStyle.CornerType       = DevComponents.DotNetBar.eCornerType.Square;
            _ListBoxAdv_Content.ContainerControlProcessDialogKey = true;
            _ListBoxAdv_Content.DragDropSupport   = true;
            _ListBoxAdv_Content.LayoutOrientation = DevComponents.DotNetBar.eOrientation.Vertical;
            _ListBoxAdv_Content.LicenseKey        = "F962CEC7-CD8F-4911-A9E9-CAB39962FC1F";
            _ListBoxAdv_Content.Location          = new Point(3, 57);
            _ListBoxAdv_Content.Name             = "ListBoxAdv_LM_ContentOfOB0x0C";
            _ListBoxAdv_Content.ReserveLeftSpace = false;
            _ListBoxAdv_Content.Size             = new Size(150, 85);
            _ListBoxAdv_Content.Style            = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            _ListBoxAdv_Content.TabIndex         = 41;
            //
            // LabelX29
            //
            _LabelX29.Anchor    = AnchorStyles.Top | AnchorStyles.Left | AnchorStyles.Right;
            _LabelX29.BackColor = Color.Transparent;
            //
            //
            //
            _LabelX29.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            _LabelX29.Location      = new Point(3, 30);
            _LabelX29.Name          = "LabelX29";
            _LabelX29.Size          = new Size(150, 21);
            _LabelX29.Style         = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            _LabelX29.TabIndex      = 43;
            _LabelX29.Text          = "Content of Bank 0x0C:";
            _LabelX29.TextAlignment = StringAlignment.Center;
            //
            // ObjectBankSelectorBox
            //
            AutoScaleDimensions = new SizeF(6.0F, 13.0F);
            AutoScaleMode       = AutoScaleMode.Font;
            Controls.Add(_ComboBox_ObjectBankSelector);
            Controls.Add(_ListBoxAdv_Content);
            Controls.Add(_LabelX29);
            Name = "ObjectBankSelectorBox";
            Size = new Size(156, 145);
            ResumeLayout(false);
        }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.Windows.Forms.ListViewItem listViewItem1 = new System.Windows.Forms.ListViewItem(new string[] {
     "身分證號"}, -1, System.Drawing.Color.Red, System.Drawing.Color.Empty, null);
     System.Windows.Forms.ListViewItem listViewItem2 = new System.Windows.Forms.ListViewItem("畢業班級");
     System.Windows.Forms.ListViewItem listViewItem3 = new System.Windows.Forms.ListViewItem("座號");
     System.Windows.Forms.ListViewItem listViewItem4 = new System.Windows.Forms.ListViewItem("學號");
     System.Windows.Forms.ListViewItem listViewItem5 = new System.Windows.Forms.ListViewItem(new string[] {
     "姓名"}, -1, System.Drawing.Color.Red, System.Drawing.Color.Empty, null);
     System.Windows.Forms.ListViewItem listViewItem6 = new System.Windows.Forms.ListViewItem("戶籍電話");
     System.Windows.Forms.ListViewItem listViewItem7 = new System.Windows.Forms.ListViewItem("聯絡電話");
     System.Windows.Forms.ListViewItem listViewItem8 = new System.Windows.Forms.ListViewItem("行動電話");
     System.Windows.Forms.ListViewItem listViewItem9 = new System.Windows.Forms.ListViewItem("其它電話1");
     System.Windows.Forms.ListViewItem listViewItem10 = new System.Windows.Forms.ListViewItem("其它電話2");
     System.Windows.Forms.ListViewItem listViewItem11 = new System.Windows.Forms.ListViewItem("其它電話3");
     System.Windows.Forms.ListViewItem listViewItem12 = new System.Windows.Forms.ListViewItem("監護人電話");
     System.Windows.Forms.ListViewItem listViewItem13 = new System.Windows.Forms.ListViewItem("父親電話");
     System.Windows.Forms.ListViewItem listViewItem14 = new System.Windows.Forms.ListViewItem("母親電話");
     System.Windows.Forms.ListViewItem listViewItem15 = new System.Windows.Forms.ListViewItem(new string[] {
     "填報學年度"}, -1, System.Drawing.Color.Red, System.Drawing.Color.Empty, null);
     System.Windows.Forms.ListViewItem listViewItem16 = new System.Windows.Forms.ListViewItem(new string[] {
     "畢業生目前動向"}, -1, System.Drawing.Color.Red, System.Drawing.Color.Empty, null);
     System.Windows.Forms.ListViewItem listViewItem17 = new System.Windows.Forms.ListViewItem(new string[] {
     "是否需要教育部協助"}, -1, System.Drawing.Color.Red, System.Drawing.Color.Empty, null);
     System.Windows.Forms.ListViewItem listViewItem18 = new System.Windows.Forms.ListViewItem(new string[] {
     "備註"}, -1, System.Drawing.Color.Red, System.Drawing.Color.Empty, null);
     this.chkSelectAll = new DevComponents.DotNetBar.Controls.CheckBoxX();
     this.btnExport = new DevComponents.DotNetBar.ButtonX();
     this.btnExit = new DevComponents.DotNetBar.ButtonX();
     this.FieldContainer = new System.Windows.Forms.ListView();
     this.lblExplanation = new DevComponents.DotNetBar.LabelX();
     this.circularProgress = new DevComponents.DotNetBar.Controls.CircularProgress();
     this.nudSchoolYear = new System.Windows.Forms.NumericUpDown();
     this.lblSchoolYear = new DevComponents.DotNetBar.LabelX();
     this.radioAllStudentInOneFile = new System.Windows.Forms.RadioButton();
     this.radioOneClassInOneFile = new System.Windows.Forms.RadioButton();
     this.label1 = new System.Windows.Forms.Label();
     ((System.ComponentModel.ISupportInitialize)(this.nudSchoolYear)).BeginInit();
     this.SuspendLayout();
     //
     // chkSelectAll
     //
     this.chkSelectAll.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.chkSelectAll.AutoSize = true;
     this.chkSelectAll.BackColor = System.Drawing.Color.Transparent;
     //
     //
     //
     this.chkSelectAll.BackgroundStyle.Class = "";
     this.chkSelectAll.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.chkSelectAll.Checked = true;
     this.chkSelectAll.CheckState = System.Windows.Forms.CheckState.Checked;
     this.chkSelectAll.CheckValue = "Y";
     this.chkSelectAll.Location = new System.Drawing.Point(136, 15);
     this.chkSelectAll.Name = "chkSelectAll";
     this.chkSelectAll.Size = new System.Drawing.Size(54, 21);
     this.chkSelectAll.TabIndex = 3;
     this.chkSelectAll.Text = "全選";
     this.chkSelectAll.CheckedChanged += new System.EventHandler(this.chkSelectAll_CheckedChanged);
     //
     // btnExport
     //
     this.btnExport.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btnExport.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnExport.AutoSize = true;
     this.btnExport.BackColor = System.Drawing.Color.Transparent;
     this.btnExport.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.btnExport.Location = new System.Drawing.Point(298, 356);
     this.btnExport.Name = "btnExport";
     this.btnExport.Size = new System.Drawing.Size(75, 25);
     this.btnExport.TabIndex = 4;
     this.btnExport.Text = "匯出";
     this.btnExport.Click += new System.EventHandler(this.btnExport_Click);
     //
     // btnExit
     //
     this.btnExit.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btnExit.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnExit.AutoSize = true;
     this.btnExit.BackColor = System.Drawing.Color.Transparent;
     this.btnExit.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.btnExit.Location = new System.Drawing.Point(383, 356);
     this.btnExit.Name = "btnExit";
     this.btnExit.Size = new System.Drawing.Size(75, 25);
     this.btnExit.TabIndex = 5;
     this.btnExit.Text = "關閉";
     this.btnExit.Click += new System.EventHandler(this.btnExit_Click);
     //
     // FieldContainer
     //
     this.FieldContainer.CheckBoxes = true;
     this.FieldContainer.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.None;
     this.FieldContainer.HideSelection = false;
     listViewItem1.Checked = true;
     listViewItem1.StateImageIndex = 1;
     listViewItem2.StateImageIndex = 0;
     listViewItem3.StateImageIndex = 0;
     listViewItem4.StateImageIndex = 0;
     listViewItem5.Checked = true;
     listViewItem5.StateImageIndex = 1;
     listViewItem6.StateImageIndex = 0;
     listViewItem7.StateImageIndex = 0;
     listViewItem8.StateImageIndex = 0;
     listViewItem9.StateImageIndex = 0;
     listViewItem10.StateImageIndex = 0;
     listViewItem11.StateImageIndex = 0;
     listViewItem12.StateImageIndex = 0;
     listViewItem13.StateImageIndex = 0;
     listViewItem14.StateImageIndex = 0;
     listViewItem15.Checked = true;
     listViewItem15.StateImageIndex = 1;
     listViewItem16.Checked = true;
     listViewItem16.StateImageIndex = 1;
     listViewItem17.Checked = true;
     listViewItem17.StateImageIndex = 1;
     listViewItem18.Checked = true;
     listViewItem18.StateImageIndex = 1;
     this.FieldContainer.Items.AddRange(new System.Windows.Forms.ListViewItem[] {
     listViewItem1,
     listViewItem2,
     listViewItem3,
     listViewItem4,
     listViewItem5,
     listViewItem6,
     listViewItem7,
     listViewItem8,
     listViewItem9,
     listViewItem10,
     listViewItem11,
     listViewItem12,
     listViewItem13,
     listViewItem14,
     listViewItem15,
     listViewItem16,
     listViewItem17,
     listViewItem18});
     this.FieldContainer.Location = new System.Drawing.Point(34, 51);
     this.FieldContainer.Name = "FieldContainer";
     this.FieldContainer.Size = new System.Drawing.Size(424, 260);
     this.FieldContainer.TabIndex = 19;
     this.FieldContainer.UseCompatibleStateImageBehavior = false;
     this.FieldContainer.View = System.Windows.Forms.View.List;
     this.FieldContainer.ItemChecked += new System.Windows.Forms.ItemCheckedEventHandler(this.FieldContainer_ItemChecked);
     //
     // lblExplanation
     //
     this.lblExplanation.AutoSize = true;
     this.lblExplanation.BackColor = System.Drawing.Color.Transparent;
     //
     //
     //
     this.lblExplanation.BackgroundStyle.Class = "";
     this.lblExplanation.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.lblExplanation.Location = new System.Drawing.Point(34, 15);
     this.lblExplanation.Name = "lblExplanation";
     this.lblExplanation.Size = new System.Drawing.Size(101, 21);
     this.lblExplanation.TabIndex = 20;
     this.lblExplanation.Text = "請選擇匯出欄位";
     //
     // circularProgress
     //
     this.circularProgress.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.circularProgress.BackColor = System.Drawing.Color.Transparent;
     //
     //
     //
     this.circularProgress.BackgroundStyle.Class = "";
     this.circularProgress.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.circularProgress.Location = new System.Drawing.Point(249, 358);
     this.circularProgress.Name = "circularProgress";
     this.circularProgress.Size = new System.Drawing.Size(43, 23);
     this.circularProgress.Style = DevComponents.DotNetBar.eDotNetBarStyle.OfficeXP;
     this.circularProgress.TabIndex = 33;
     this.circularProgress.Visible = false;
     //
     // nudSchoolYear
     //
     this.nudSchoolYear.Location = new System.Drawing.Point(334, 13);
     this.nudSchoolYear.Maximum = new decimal(new int[] {
     999,
     0,
     0,
     0});
     this.nudSchoolYear.Name = "nudSchoolYear";
     this.nudSchoolYear.Size = new System.Drawing.Size(66, 25);
     this.nudSchoolYear.TabIndex = 35;
     this.nudSchoolYear.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // lblSchoolYear
     //
     this.lblSchoolYear.AutoSize = true;
     this.lblSchoolYear.BackColor = System.Drawing.Color.Transparent;
     //
     //
     //
     this.lblSchoolYear.BackgroundStyle.Class = "";
     this.lblSchoolYear.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.lblSchoolYear.Location = new System.Drawing.Point(254, 16);
     this.lblSchoolYear.Name = "lblSchoolYear";
     this.lblSchoolYear.Size = new System.Drawing.Size(74, 21);
     this.lblSchoolYear.TabIndex = 34;
     this.lblSchoolYear.Text = "填報學年度";
     //
     // radioAllStudentInOneFile
     //
     this.radioAllStudentInOneFile.AutoSize = true;
     this.radioAllStudentInOneFile.BackColor = System.Drawing.Color.Transparent;
     this.radioAllStudentInOneFile.Location = new System.Drawing.Point(138, 323);
     this.radioAllStudentInOneFile.Name = "radioAllStudentInOneFile";
     this.radioAllStudentInOneFile.Size = new System.Drawing.Size(130, 21);
     this.radioAllStudentInOneFile.TabIndex = 1;
     this.radioAllStudentInOneFile.Tag = "2";
     this.radioAllStudentInOneFile.Text = "所有學生一個檔案";
     this.radioAllStudentInOneFile.UseVisualStyleBackColor = false;
     this.radioAllStudentInOneFile.Click += new System.EventHandler(this.radioAllStudentInOneFile_Click);
     //
     // radioOneClassInOneFile
     //
     this.radioOneClassInOneFile.AutoSize = true;
     this.radioOneClassInOneFile.BackColor = System.Drawing.Color.Transparent;
     this.radioOneClassInOneFile.Location = new System.Drawing.Point(283, 323);
     this.radioOneClassInOneFile.Name = "radioOneClassInOneFile";
     this.radioOneClassInOneFile.Size = new System.Drawing.Size(130, 21);
     this.radioOneClassInOneFile.TabIndex = 0;
     this.radioOneClassInOneFile.Tag = "1";
     this.radioOneClassInOneFile.Text = "一個班級一個檔案";
     this.radioOneClassInOneFile.UseVisualStyleBackColor = false;
     this.radioOneClassInOneFile.Click += new System.EventHandler(this.radioOneClassInOneFile_Click);
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.BackColor = System.Drawing.Color.Transparent;
     this.label1.Location = new System.Drawing.Point(34, 325);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(86, 17);
     this.label1.TabIndex = 36;
     this.label1.Text = "儲存檔案方式";
     //
     // Vagrant_Export
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 17F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.CaptionAntiAlias = false;
     this.ClientSize = new System.Drawing.Size(492, 393);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.radioAllStudentInOneFile);
     this.Controls.Add(this.radioOneClassInOneFile);
     this.Controls.Add(this.nudSchoolYear);
     this.Controls.Add(this.lblSchoolYear);
     this.Controls.Add(this.circularProgress);
     this.Controls.Add(this.lblExplanation);
     this.Controls.Add(this.FieldContainer);
     this.Controls.Add(this.btnExport);
     this.Controls.Add(this.btnExit);
     this.Controls.Add(this.chkSelectAll);
     this.DoubleBuffered = true;
     this.Name = "Vagrant_Export";
     this.Text = "";
     this.TitleText = "匯出資料至 Excel";
     ((System.ComponentModel.ISupportInitialize)(this.nudSchoolYear)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Пример #32
0
 private void InitializeComponent()
 {
     this.expandablePanel1 = new DevComponents.DotNetBar.ExpandablePanel();
     this.flowLayoutPanel1 = new System.Windows.Forms.FlowLayoutPanel();
     this.labelX1          = new DevComponents.DotNetBar.LabelX();
     this.lblFullName      = new DevComponents.DotNetBar.LabelX();
     this.listViewEx1      = new DevComponents.DotNetBar.Controls.ListViewEx();
     this.expandablePanel1.SuspendLayout();
     this.flowLayoutPanel1.SuspendLayout();
     this.SuspendLayout();
     //
     // expandablePanel1
     //
     this.expandablePanel1.AutoScroll       = true;
     this.expandablePanel1.AutoSize         = true;
     this.expandablePanel1.CanvasColor      = System.Drawing.SystemColors.Control;
     this.expandablePanel1.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.expandablePanel1.Controls.Add(this.flowLayoutPanel1);
     this.expandablePanel1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.expandablePanel1.ExpandOnTitleClick = true;
     this.expandablePanel1.Location           = new System.Drawing.Point(0, 0);
     this.expandablePanel1.Name            = "expandablePanel1";
     this.expandablePanel1.Size            = new System.Drawing.Size(319, 184);
     this.expandablePanel1.Style.Alignment = System.Drawing.StringAlignment.Center;
     this.expandablePanel1.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.expandablePanel1.Style.BackColor2.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.expandablePanel1.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.expandablePanel1.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarDockedBorder;
     this.expandablePanel1.Style.ForeColor.ColorSchemePart   = DevComponents.DotNetBar.eColorSchemePart.ItemText;
     this.expandablePanel1.Style.GradientAngle  = 90;
     this.expandablePanel1.TabIndex             = 0;
     this.expandablePanel1.TitleStyle.Alignment = System.Drawing.StringAlignment.Center;
     this.expandablePanel1.TitleStyle.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.expandablePanel1.TitleStyle.BackColor2.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.expandablePanel1.TitleStyle.Border = DevComponents.DotNetBar.eBorderType.RaisedInner;
     this.expandablePanel1.TitleStyle.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.expandablePanel1.TitleStyle.ForeColor.ColorSchemePart   = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.expandablePanel1.TitleStyle.GradientAngle = 90;
     this.expandablePanel1.TitleText        = "Title Bar";
     this.expandablePanel1.ExpandedChanged += new DevComponents.DotNetBar.ExpandChangeEventHandler(this.expandablePanel1_ExpandedChanged);
     //
     // flowLayoutPanel1
     //
     this.flowLayoutPanel1.Controls.Add(this.labelX1);
     this.flowLayoutPanel1.Controls.Add(this.lblFullName);
     this.flowLayoutPanel1.Controls.Add(this.listViewEx1);
     this.flowLayoutPanel1.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.flowLayoutPanel1.Location = new System.Drawing.Point(0, 26);
     this.flowLayoutPanel1.Name     = "flowLayoutPanel1";
     this.flowLayoutPanel1.Size     = new System.Drawing.Size(319, 158);
     this.flowLayoutPanel1.TabIndex = 2;
     //
     // labelX1
     //
     //
     //
     //
     this.labelX1.BackgroundStyle.Class      = "";
     this.labelX1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX1.Location = new System.Drawing.Point(3, 3);
     this.labelX1.Name     = "labelX1";
     this.labelX1.Size     = new System.Drawing.Size(91, 23);
     this.labelX1.Style    = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.labelX1.TabIndex = 6;
     this.labelX1.Text     = "TypeFullName:";
     //
     // lblFullName
     //
     //
     //
     //
     this.lblFullName.BackgroundStyle.Class      = "";
     this.lblFullName.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.lblFullName.Location = new System.Drawing.Point(100, 3);
     this.lblFullName.Name     = "lblFullName";
     this.lblFullName.Size     = new System.Drawing.Size(216, 23);
     this.lblFullName.Style    = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.lblFullName.TabIndex = 7;
     //
     // listViewEx1
     //
     //
     //
     //
     this.listViewEx1.Border.Class      = "ListViewBorder";
     this.listViewEx1.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.flowLayoutPanel1.SetFlowBreak(this.listViewEx1, true);
     this.listViewEx1.Location         = new System.Drawing.Point(3, 32);
     this.listViewEx1.Name             = "listViewEx1";
     this.listViewEx1.ShowItemToolTips = true;
     this.listViewEx1.Size             = new System.Drawing.Size(313, 123);
     this.listViewEx1.TabIndex         = 8;
     this.listViewEx1.UseCompatibleStateImageBehavior = false;
     this.listViewEx1.View = System.Windows.Forms.View.Tile;
     //
     // SinglePlugIn
     //
     this.Controls.Add(this.expandablePanel1);
     this.Name = "SinglePlugIn";
     this.Size = new System.Drawing.Size(319, 184);
     this.expandablePanel1.ResumeLayout(false);
     this.flowLayoutPanel1.ResumeLayout(false);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Пример #33
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);
 }
Пример #34
0
 /// <summary> 
 /// Método necesario para admitir el Diseñador. No se puede modificar 
 /// el contenido del método con el editor de código.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Tipo_Empresa));
     this.dgvTipoEmpresa = new DevComponents.DotNetBar.Controls.DataGridViewX();
     this.labelX2 = new DevComponents.DotNetBar.LabelX();
     this.txtDescripcion = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.txtNombre = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.labelX1 = new DevComponents.DotNetBar.LabelX();
     this.superValidator1 = new DevComponents.DotNetBar.Validator.SuperValidator();
     this.requiredFieldValidator1 = new DevComponents.DotNetBar.Validator.RequiredFieldValidator("Campo requerido");
     this.errorProvider1 = new System.Windows.Forms.ErrorProvider(this.components);
     this.highlighter1 = new DevComponents.DotNetBar.Validator.Highlighter();
     this.labelX3 = new DevComponents.DotNetBar.LabelX();
     ((System.ComponentModel.ISupportInitialize)(this.dgvTipoEmpresa)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).BeginInit();
     this.SuspendLayout();
     //
     // dgvTipoEmpresa
     //
     this.dgvTipoEmpresa.AllowUserToAddRows = false;
     this.dgvTipoEmpresa.AllowUserToDeleteRows = false;
     this.dgvTipoEmpresa.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill;
     this.dgvTipoEmpresa.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     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.Color.Black;
     dataGridViewCellStyle1.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle1.SelectionForeColor = System.Drawing.Color.Black;
     dataGridViewCellStyle1.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
     this.dgvTipoEmpresa.DefaultCellStyle = dataGridViewCellStyle1;
     this.dgvTipoEmpresa.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(127)))), ((int)(((byte)(127)))), ((int)(((byte)(127)))));
     this.dgvTipoEmpresa.Location = new System.Drawing.Point(29, 179);
     this.dgvTipoEmpresa.MultiSelect = false;
     this.dgvTipoEmpresa.Name = "dgvTipoEmpresa";
     this.dgvTipoEmpresa.ReadOnly = true;
     this.dgvTipoEmpresa.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
     this.dgvTipoEmpresa.Size = new System.Drawing.Size(473, 150);
     this.dgvTipoEmpresa.TabIndex = 1;
     //
     // labelX2
     //
     //
     //
     //
     this.labelX2.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX2.Location = new System.Drawing.Point(29, 86);
     this.labelX2.Name = "labelX2";
     this.labelX2.Size = new System.Drawing.Size(75, 23);
     this.labelX2.TabIndex = 13;
     this.labelX2.Text = "Descripcion :";
     //
     // txtDescripcion
     //
     this.txtDescripcion.BackColor = System.Drawing.Color.White;
     //
     //
     //
     this.txtDescripcion.Border.Class = "TextBoxBorder";
     this.txtDescripcion.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txtDescripcion.ForeColor = System.Drawing.Color.Black;
     this.txtDescripcion.Location = new System.Drawing.Point(110, 85);
     this.txtDescripcion.Multiline = true;
     this.txtDescripcion.Name = "txtDescripcion";
     this.txtDescripcion.ReadOnly = true;
     this.txtDescripcion.Size = new System.Drawing.Size(271, 81);
     this.txtDescripcion.TabIndex = 3;
     //
     // txtNombre
     //
     this.txtNombre.BackColor = System.Drawing.Color.White;
     //
     //
     //
     this.txtNombre.Border.Class = "TextBoxBorder";
     this.txtNombre.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txtNombre.ForeColor = System.Drawing.Color.Black;
     this.txtNombre.Location = new System.Drawing.Point(110, 59);
     this.txtNombre.MaxLength = 50;
     this.txtNombre.Name = "txtNombre";
     this.txtNombre.ReadOnly = true;
     this.txtNombre.Size = new System.Drawing.Size(134, 20);
     this.txtNombre.TabIndex = 2;
     this.superValidator1.SetValidator1(this.txtNombre, this.requiredFieldValidator1);
     //
     // labelX1
     //
     //
     //
     //
     this.labelX1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX1.Location = new System.Drawing.Point(29, 56);
     this.labelX1.Name = "labelX1";
     this.labelX1.Size = new System.Drawing.Size(75, 23);
     this.labelX1.Style = DevComponents.DotNetBar.eDotNetBarStyle.Metro;
     this.labelX1.TabIndex = 10;
     this.labelX1.Text = "Nombre :";
     //
     // superValidator1
     //
     this.superValidator1.ContainerControl = this;
     this.superValidator1.ErrorProvider = this.errorProvider1;
     this.superValidator1.Highlighter = this.highlighter1;
     //
     // requiredFieldValidator1
     //
     this.requiredFieldValidator1.ErrorMessage = "Campo requerido";
     this.requiredFieldValidator1.HighlightColor = DevComponents.DotNetBar.Validator.eHighlightColor.Red;
     //
     // errorProvider1
     //
     this.errorProvider1.ContainerControl = this;
     this.errorProvider1.Icon = ((System.Drawing.Icon)(resources.GetObject("errorProvider1.Icon")));
     //
     // highlighter1
     //
     this.highlighter1.ContainerControl = this;
     //
     // labelX3
     //
     //
     //
     //
     this.labelX3.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX3.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelX3.Location = new System.Drawing.Point(185, 17);
     this.labelX3.Name = "labelX3";
     this.labelX3.Size = new System.Drawing.Size(182, 23);
     this.labelX3.TabIndex = 15;
     this.labelX3.Text = "TIPOS DE EMPRESA";
     //
     // Tipo_Empresa
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.labelX3);
     this.Controls.Add(this.dgvTipoEmpresa);
     this.Controls.Add(this.labelX2);
     this.Controls.Add(this.txtDescripcion);
     this.Controls.Add(this.txtNombre);
     this.Controls.Add(this.labelX1);
     this.Name = "Tipo_Empresa";
     this.Size = new System.Drawing.Size(529, 343);
     this.Load += new System.EventHandler(this.Tipo_Empresa_Load);
     ((System.ComponentModel.ISupportInitialize)(this.dgvTipoEmpresa)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).EndInit();
     this.ResumeLayout(false);
 }
Пример #35
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.LabelX labelX1;
     this.mName     = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.cancelBtn = new DevComponents.DotNetBar.ButtonX();
     this.okBtn     = new DevComponents.DotNetBar.ButtonX();
     labelX1        = new DevComponents.DotNetBar.LabelX();
     this.SuspendLayout();
     //
     // labelX1
     //
     //
     //
     //
     labelX1.BackgroundStyle.Class      = "";
     labelX1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     labelX1.Location = new System.Drawing.Point(3, 3);
     labelX1.Name     = "labelX1";
     labelX1.Size     = new System.Drawing.Size(170, 23);
     labelX1.TabIndex = 0;
     labelX1.Text     = "Please specify mod name here";
     //
     // mName
     //
     //
     //
     //
     this.mName.Border.Class      = "TextBoxBorder";
     this.mName.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.mName.Location          = new System.Drawing.Point(3, 32);
     this.mName.Name     = "mName";
     this.mName.Size     = new System.Drawing.Size(170, 20);
     this.mName.TabIndex = 1;
     //
     // cancelBtn
     //
     this.cancelBtn.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.cancelBtn.ColorTable     = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.cancelBtn.DialogResult   = System.Windows.Forms.DialogResult.Cancel;
     this.cancelBtn.Location       = new System.Drawing.Point(207, 3);
     this.cancelBtn.Name           = "cancelBtn";
     this.cancelBtn.Size           = new System.Drawing.Size(75, 23);
     this.cancelBtn.Style          = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.cancelBtn.TabIndex       = 2;
     this.cancelBtn.Text           = "Cancel";
     this.cancelBtn.Click         += new System.EventHandler(this.cancelBtn_Click);
     //
     // okBtn
     //
     this.okBtn.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.okBtn.ColorTable     = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.okBtn.DialogResult   = System.Windows.Forms.DialogResult.OK;
     this.okBtn.Location       = new System.Drawing.Point(207, 32);
     this.okBtn.Name           = "okBtn";
     this.okBtn.Size           = new System.Drawing.Size(75, 23);
     this.okBtn.Style          = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.okBtn.TabIndex       = 2;
     this.okBtn.Text           = "OK";
     this.okBtn.Click         += new System.EventHandler(this.cancelBtn_Click);
     //
     // NewModName
     //
     this.AcceptButton        = this.okBtn;
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.CancelButton        = this.cancelBtn;
     this.ClientSize          = new System.Drawing.Size(298, 64);
     this.Controls.Add(this.okBtn);
     this.Controls.Add(this.cancelBtn);
     this.Controls.Add(this.mName);
     this.Controls.Add(labelX1);
     this.DoubleBuffered  = true;
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.Name            = "NewModName";
     this.ShowIcon        = false;
     this.Text            = "NewModName";
     this.ResumeLayout(false);
 }
 /// <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);
 }
 /// <summary>
 /// 此為設計工具支援所需的方法 - 請勿使用程式碼編輯器修改這個方法的內容。
 ///
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(TagEditor));
     this.cboGroups = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.txtName = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.labelX1 = new DevComponents.DotNetBar.LabelX();
     this.btnConfirm = new DevComponents.DotNetBar.ButtonX();
     this.btnCancel = new DevComponents.DotNetBar.ButtonX();
     this.labelX2 = new DevComponents.DotNetBar.LabelX();
     this.cpColor = new DevComponents.DotNetBar.ColorPickerButton();
     this.SuspendLayout();
     //
     // cboGroups
     //
     this.cboGroups.DisplayMember = "Text";
     this.cboGroups.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.cboGroups.FormattingEnabled = true;
     this.cboGroups.ItemHeight = 19;
     this.cboGroups.Location = new System.Drawing.Point(45, 6);
     this.cboGroups.Name = "cboGroups";
     this.cboGroups.Size = new System.Drawing.Size(188, 25);
     this.cboGroups.TabIndex = 0;
     //
     // txtName
     //
     //
     //
     //
     this.txtName.Border.Class = "TextBoxBorder";
     this.txtName.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txtName.Location = new System.Drawing.Point(45, 40);
     this.txtName.Name = "txtName";
     this.txtName.Size = new System.Drawing.Size(148, 25);
     this.txtName.TabIndex = 1;
     //
     // labelX1
     //
     this.labelX1.AutoSize = true;
     this.labelX1.BackColor = System.Drawing.Color.Transparent;
     //
     //
     //
     this.labelX1.BackgroundStyle.Class = "";
     this.labelX1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX1.Location = new System.Drawing.Point(7, 9);
     this.labelX1.Name = "labelX1";
     this.labelX1.Size = new System.Drawing.Size(34, 21);
     this.labelX1.TabIndex = 3;
     this.labelX1.Text = "群組";
     //
     // btnConfirm
     //
     this.btnConfirm.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btnConfirm.BackColor = System.Drawing.Color.Transparent;
     this.btnConfirm.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.btnConfirm.DialogResult = System.Windows.Forms.DialogResult.OK;
     this.btnConfirm.Location = new System.Drawing.Point(99, 74);
     this.btnConfirm.Name = "btnConfirm";
     this.btnConfirm.Size = new System.Drawing.Size(64, 23);
     this.btnConfirm.TabIndex = 6;
     this.btnConfirm.Text = "確定";
     this.btnConfirm.Click += new System.EventHandler(this.btnConfirm_Click);
     //
     // btnCancel
     //
     this.btnCancel.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btnCancel.BackColor = System.Drawing.Color.Transparent;
     this.btnCancel.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.btnCancel.Location = new System.Drawing.Point(169, 74);
     this.btnCancel.Name = "btnCancel";
     this.btnCancel.Size = new System.Drawing.Size(64, 23);
     this.btnCancel.TabIndex = 7;
     this.btnCancel.Text = "取消";
     //
     // labelX2
     //
     this.labelX2.AutoSize = true;
     this.labelX2.BackColor = System.Drawing.Color.Transparent;
     //
     //
     //
     this.labelX2.BackgroundStyle.Class = "";
     this.labelX2.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX2.Location = new System.Drawing.Point(7, 42);
     this.labelX2.Name = "labelX2";
     this.labelX2.Size = new System.Drawing.Size(34, 21);
     this.labelX2.TabIndex = 8;
     this.labelX2.Text = "名稱";
     //
     // cpColor
     //
     this.cpColor.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.cpColor.AutoExpandOnClick = true;
     this.cpColor.BackColor = System.Drawing.Color.Transparent;
     this.cpColor.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.cpColor.Image = ((System.Drawing.Image)(resources.GetObject("cpColor.Image")));
     this.cpColor.Location = new System.Drawing.Point(196, 40);
     this.cpColor.Name = "cpColor";
     this.cpColor.SelectedColorImageRectangle = new System.Drawing.Rectangle(2, 2, 12, 12);
     this.cpColor.Size = new System.Drawing.Size(37, 23);
     this.cpColor.TabIndex = 10;
     //
     // TagEditor
     //
     this.AcceptButton = this.btnConfirm;
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
     this.CancelButton = this.btnCancel;
     this.ClientSize = new System.Drawing.Size(243, 102);
     this.Controls.Add(this.cpColor);
     this.Controls.Add(this.labelX2);
     this.Controls.Add(this.btnCancel);
     this.Controls.Add(this.btnConfirm);
     this.Controls.Add(this.labelX1);
     this.Controls.Add(this.txtName);
     this.Controls.Add(this.cboGroups);
     this.DoubleBuffered = true;
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.Name = "TagEditor";
     this.RenderMode = DevComponents.DotNetBar.eRenderMode.Global;
     this.Text = "新增類別";
     this.Load += new System.EventHandler(this.TagInsert_Load);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
 /// <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);
 }
Пример #39
0
 /// <summary>
 /// 此為設計工具支援所需的方法 - 請勿使用程式碼編輯器
 /// 修改這個方法的內容。
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm));
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle6 = new System.Windows.Forms.DataGridViewCellStyle();
     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();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle4 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle5 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle12 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle7 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle8 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle9 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle10 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle11 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle18 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle13 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle14 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle15 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle16 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle17 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle19 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle20 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle21 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle22 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle23 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle24 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle25 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle26 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle27 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle28 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle29 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle30 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle31 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle32 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle33 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle34 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle35 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle36 = new System.Windows.Forms.DataGridViewCellStyle();
     this.ribbonBar1 = new DevComponents.DotNetBar.RibbonBar();
     this.ribbonControl1 = new DevComponents.DotNetBar.RibbonControl();
     this.ribbonPanel1 = new DevComponents.DotNetBar.RibbonPanel();
     this.ribbonBar2 = new DevComponents.DotNetBar.RibbonBar();
     this.btnTeacherAutoSchedule = new DevComponents.DotNetBar.ButtonItem();
     this.btnTeacherLock = new DevComponents.DotNetBar.ButtonItem();
     this.btnTeacherUnlock = new DevComponents.DotNetBar.ButtonItem();
     this.btnTeacherFree = new DevComponents.DotNetBar.ButtonItem();
     this.btnTeacherProperty = new DevComponents.DotNetBar.ButtonItem();
     this.btnTeacherPrint = new DevComponents.DotNetBar.ButtonItem();
     this.btnTeacherBusy = new DevComponents.DotNetBar.ButtonItem();
     this.ribbonPanel2 = new DevComponents.DotNetBar.RibbonPanel();
     this.ribbonBar3 = new DevComponents.DotNetBar.RibbonBar();
     this.btnClassAutoSchedule = new DevComponents.DotNetBar.ButtonItem();
     this.btnClassLock = new DevComponents.DotNetBar.ButtonItem();
     this.btnClassUnLock = new DevComponents.DotNetBar.ButtonItem();
     this.btnClassFree = new DevComponents.DotNetBar.ButtonItem();
     this.btnClassProperty = new DevComponents.DotNetBar.ButtonItem();
     this.btnClassPrint = new DevComponents.DotNetBar.ButtonItem();
     this.btnClassBusy = new DevComponents.DotNetBar.ButtonItem();
     this.ribbonPanel3 = new DevComponents.DotNetBar.RibbonPanel();
     this.ribbonBar4 = new DevComponents.DotNetBar.RibbonBar();
     this.btnClassroomAutoSchedule = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem2 = new DevComponents.DotNetBar.ButtonItem();
     this.btnClassroomLock = new DevComponents.DotNetBar.ButtonItem();
     this.btnClassroomUnLock = new DevComponents.DotNetBar.ButtonItem();
     this.btnClassroomFree = new DevComponents.DotNetBar.ButtonItem();
     this.btnClassroomProperty = new DevComponents.DotNetBar.ButtonItem();
     this.btnClassroomPrint = new DevComponents.DotNetBar.ButtonItem();
     this.btnClassroomBusy = new DevComponents.DotNetBar.ButtonItem();
     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.btnOpen = new DevComponents.DotNetBar.ButtonItem();
     this.btnSave = new DevComponents.DotNetBar.ButtonItem();
     this.btnSaveAs = new DevComponents.DotNetBar.ButtonItem();
     this.btnDownload = new DevComponents.DotNetBar.ButtonItem();
     this.btnUpload = new DevComponents.DotNetBar.ButtonItem();
     this.btnClose = new DevComponents.DotNetBar.ButtonItem();
     this.btnExit = new DevComponents.DotNetBar.ButtonItem();
     this.ribbonTabTeacher = new DevComponents.DotNetBar.RibbonTabItem();
     this.ribbonTabClass = new DevComponents.DotNetBar.RibbonTabItem();
     this.ribbonTabClassroom = new DevComponents.DotNetBar.RibbonTabItem();
     this.btnUndo = new DevComponents.DotNetBar.ButtonItem();
     this.btnRedo = new DevComponents.DotNetBar.ButtonItem();
     this.qatCustomizeItem1 = new DevComponents.DotNetBar.QatCustomizeItem();
     this.styleManager1 = new DevComponents.DotNetBar.StyleManager(this.components);
     this.bar1 = new DevComponents.DotNetBar.Bar();
     this.lblMemoryUsage = new DevComponents.DotNetBar.LabelX();
     this.progressBarX1 = new DevComponents.DotNetBar.Controls.ProgressBarX();
     this.panel1 = new System.Windows.Forms.Panel();
     this.panel2 = new System.Windows.Forms.Panel();
     this.panel4 = new System.Windows.Forms.Panel();
     this.tabContent = new DevComponents.DotNetBar.SuperTabControl();
     this.superTabControlPanel1 = new DevComponents.DotNetBar.SuperTabControlPanel();
     this.pnlWhoList = new System.Windows.Forms.Panel();
     this.grdTeacherEvent = new DevComponents.DotNetBar.Controls.DataGridViewX();
     this.colLock = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colSolutionCount = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colWeekDay = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colPeriodNo = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colCourseName = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colLength = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colWhoName = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colWhomName = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colWhereName = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colWhatName = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colWhatAliasName = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colCourseGroup = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colWeekDayCondition = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colPeriodCondition = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colAllowLongBreak = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colAllowDuplicate = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colLimitNextDay = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colWeekFlag = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colPriority = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colTimeTable = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colColorIndex = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colEventID = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.panel5 = new System.Windows.Forms.Panel();
     this.labelX2 = new DevComponents.DotNetBar.LabelX();
     this.lblTeacher = new DevComponents.DotNetBar.LabelX();
     this.btnTeacherEventExpand = new DevComponents.DotNetBar.ButtonX();
     this.splTeacher = new DevComponents.DotNetBar.ExpandableSplitter();
     this.pnlWhoLPView = new System.Windows.Forms.Panel();
     this.tabTeacherLPView = new DevComponents.DotNetBar.TabControl();
     this.tabControlPanel1 = new DevComponents.DotNetBar.TabControlPanel();
     this.tabItem2 = new DevComponents.DotNetBar.TabItem(this.components);
     this.tabTeacher = new DevComponents.DotNetBar.SuperTabItem();
     this.superTabControlPanel2 = new DevComponents.DotNetBar.SuperTabControlPanel();
     this.splClass = new DevComponents.DotNetBar.ExpandableSplitter();
     this.pnlWhomLPView = new System.Windows.Forms.Panel();
     this.tabClassLPView = new DevComponents.DotNetBar.TabControl();
     this.tabControlPanel2 = new DevComponents.DotNetBar.TabControlPanel();
     this.tabItem3 = new DevComponents.DotNetBar.TabItem(this.components);
     this.pnlWhomList = new System.Windows.Forms.Panel();
     this.panel10 = new System.Windows.Forms.Panel();
     this.grdClassEvent = new DevComponents.DotNetBar.Controls.DataGridViewX();
     this.dataGridViewTextBoxColumn69 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn70 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn71 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn72 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn78 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn80 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn73 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn74 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn75 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn76 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn77 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn79 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn81 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn82 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn83 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn84 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn85 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn86 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn87 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn88 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn89 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn90 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.panel3 = new System.Windows.Forms.Panel();
     this.labelX6 = new DevComponents.DotNetBar.LabelX();
     this.lblClass = new DevComponents.DotNetBar.LabelX();
     this.labelX3 = new DevComponents.DotNetBar.LabelX();
     this.labelX1 = new DevComponents.DotNetBar.LabelX();
     this.btnClassEventExpand = new DevComponents.DotNetBar.ButtonX();
     this.tabClass = new DevComponents.DotNetBar.SuperTabItem();
     this.superTabControlPanel3 = new DevComponents.DotNetBar.SuperTabControlPanel();
     this.pnlWhereList = new System.Windows.Forms.Panel();
     this.panel9 = new System.Windows.Forms.Panel();
     this.grdClassroomEvent = new DevComponents.DotNetBar.Controls.DataGridViewX();
     this.dataGridViewTextBoxColumn91 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn92 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn93 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn94 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn100 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn102 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn95 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn96 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn97 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn98 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn99 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn101 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn103 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn104 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn105 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn106 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn107 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn108 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn109 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn110 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn111 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn112 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.panel6 = new System.Windows.Forms.Panel();
     this.labelX7 = new DevComponents.DotNetBar.LabelX();
     this.lblClassroom = new DevComponents.DotNetBar.LabelX();
     this.labelX4 = new DevComponents.DotNetBar.LabelX();
     this.labelX5 = new DevComponents.DotNetBar.LabelX();
     this.btnClassroomEventExpand = new DevComponents.DotNetBar.ButtonX();
     this.splClassroom = new DevComponents.DotNetBar.ExpandableSplitter();
     this.pnlWhereLPView = new System.Windows.Forms.Panel();
     this.tabClassroomLPView = new DevComponents.DotNetBar.TabControl();
     this.tabControlPanel3 = new DevComponents.DotNetBar.TabControlPanel();
     this.tabItem4 = new DevComponents.DotNetBar.TabItem(this.components);
     this.tabClassroom = new DevComponents.DotNetBar.SuperTabItem();
     this.expandableSplitter1 = new DevComponents.DotNetBar.ExpandableSplitter();
     this.LeftNavigationPanel = new DevComponents.DotNetBar.NavigationPane();
     this.pnlClassroom = new DevComponents.DotNetBar.NavigationPanePanel();
     this.btnClassroom = new DevComponents.DotNetBar.ButtonItem();
     this.pnlClass = new DevComponents.DotNetBar.NavigationPanePanel();
     this.btnClass = new DevComponents.DotNetBar.ButtonItem();
     this.pnlTeacher = new DevComponents.DotNetBar.NavigationPanePanel();
     this.btnTeacher = new DevComponents.DotNetBar.ButtonItem();
     this.tabItem1 = new DevComponents.DotNetBar.TabItem(this.components);
     this.buttonItem1 = new DevComponents.DotNetBar.ButtonItem();
     this.panel7 = new System.Windows.Forms.Panel();
     this.buttonX2 = new DevComponents.DotNetBar.ButtonX();
     this.buttonX1 = new DevComponents.DotNetBar.ButtonX();
     this.panel8 = new System.Windows.Forms.Panel();
     this.contextMenu = new System.Windows.Forms.ContextMenuStrip(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.dataGridViewTextBoxColumn9 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn10 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn11 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn12 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn13 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn14 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn15 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn16 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn17 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn18 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn19 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn20 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn21 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn22 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn23 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn24 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn25 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn26 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn27 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn28 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn29 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn30 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn31 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn32 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn33 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn34 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn35 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn36 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn37 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn38 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn39 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn40 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn41 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn42 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn43 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn44 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn45 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn46 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn47 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn48 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn49 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn50 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn51 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn52 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn53 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn54 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn55 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn56 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn57 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn58 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn59 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn60 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn61 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn62 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn63 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn64 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn65 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn66 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn67 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn68 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.ribbonControl1.SuspendLayout();
     this.ribbonPanel1.SuspendLayout();
     this.ribbonPanel2.SuspendLayout();
     this.ribbonPanel3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.bar1)).BeginInit();
     this.bar1.SuspendLayout();
     this.panel1.SuspendLayout();
     this.panel2.SuspendLayout();
     this.panel4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.tabContent)).BeginInit();
     this.tabContent.SuspendLayout();
     this.superTabControlPanel1.SuspendLayout();
     this.pnlWhoList.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grdTeacherEvent)).BeginInit();
     this.panel5.SuspendLayout();
     this.pnlWhoLPView.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.tabTeacherLPView)).BeginInit();
     this.tabTeacherLPView.SuspendLayout();
     this.superTabControlPanel2.SuspendLayout();
     this.pnlWhomLPView.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.tabClassLPView)).BeginInit();
     this.tabClassLPView.SuspendLayout();
     this.pnlWhomList.SuspendLayout();
     this.panel10.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grdClassEvent)).BeginInit();
     this.panel3.SuspendLayout();
     this.superTabControlPanel3.SuspendLayout();
     this.pnlWhereList.SuspendLayout();
     this.panel9.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grdClassroomEvent)).BeginInit();
     this.panel6.SuspendLayout();
     this.pnlWhereLPView.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.tabClassroomLPView)).BeginInit();
     this.tabClassroomLPView.SuspendLayout();
     this.LeftNavigationPanel.SuspendLayout();
     this.panel7.SuspendLayout();
     this.SuspendLayout();
     //
     // ribbonBar1
     //
     this.ribbonBar1.AutoOverflowEnabled = true;
     //
     //
     //
     this.ribbonBar1.BackgroundMouseOverStyle.Class = "";
     this.ribbonBar1.BackgroundMouseOverStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBar1.BackgroundStyle.Class = "";
     this.ribbonBar1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribbonBar1.ContainerControlProcessDialogKey = true;
     this.ribbonBar1.LicenseKey = "F962CEC7-CD8F-4911-A9E9-CAB39962FC1F";
     this.ribbonBar1.Location = new System.Drawing.Point(190, 77);
     this.ribbonBar1.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.ribbonBar1.Name = "ribbonBar1";
     this.ribbonBar1.Size = new System.Drawing.Size(87, 31);
     this.ribbonBar1.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.ribbonBar1.TabIndex = 0;
     this.ribbonBar1.Text = "ribbonBar1";
     //
     //
     //
     this.ribbonBar1.TitleStyle.Class = "";
     this.ribbonBar1.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBar1.TitleStyleMouseOver.Class = "";
     this.ribbonBar1.TitleStyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     // 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.Controls.Add(this.ribbonPanel3);
     this.ribbonControl1.Controls.Add(this.ribbonPanel2);
     this.ribbonControl1.Dock = System.Windows.Forms.DockStyle.Top;
     this.ribbonControl1.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.office2007StartButton1,
     this.ribbonTabTeacher,
     this.ribbonTabClass,
     this.ribbonTabClassroom});
     this.ribbonControl1.KeyTipsFont = new System.Drawing.Font("Tahoma", 7F);
     this.ribbonControl1.Location = new System.Drawing.Point(5, 1);
     this.ribbonControl1.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.ribbonControl1.Name = "ribbonControl1";
     this.ribbonControl1.Padding = new System.Windows.Forms.Padding(0, 0, 0, 3);
     this.ribbonControl1.QuickToolbarItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.btnUndo,
     this.btnRedo,
     this.qatCustomizeItem1});
     this.ribbonControl1.Size = new System.Drawing.Size(948, 140);
     this.ribbonControl1.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.ribbonControl1.SystemText.MaximizeRibbonText = "&Maximize the Ribbon";
     this.ribbonControl1.SystemText.MinimizeRibbonText = "Mi&nimize the Ribbon";
     this.ribbonControl1.SystemText.QatAddItemText = "&Add to Quick Access Toolbar";
     this.ribbonControl1.SystemText.QatCustomizeMenuLabel = "<b>Customize Quick Access Toolbar</b>";
     this.ribbonControl1.SystemText.QatCustomizeText = "&Customize Quick Access Toolbar...";
     this.ribbonControl1.SystemText.QatDialogAddButton = "&Add >>";
     this.ribbonControl1.SystemText.QatDialogCancelButton = "Cancel";
     this.ribbonControl1.SystemText.QatDialogCaption = "Customize Quick Access Toolbar";
     this.ribbonControl1.SystemText.QatDialogCategoriesLabel = "&Choose commands from:";
     this.ribbonControl1.SystemText.QatDialogOkButton = "OK";
     this.ribbonControl1.SystemText.QatDialogPlacementCheckbox = "&Place Quick Access Toolbar below the Ribbon";
     this.ribbonControl1.SystemText.QatDialogRemoveButton = "&Remove";
     this.ribbonControl1.SystemText.QatPlaceAboveRibbonText = "&Place Quick Access Toolbar above the Ribbon";
     this.ribbonControl1.SystemText.QatPlaceBelowRibbonText = "&Place Quick Access Toolbar below the Ribbon";
     this.ribbonControl1.SystemText.QatRemoveItemText = "&Remove from Quick Access Toolbar";
     this.ribbonControl1.TabGroupHeight = 14;
     this.ribbonControl1.TabIndex = 1;
     this.ribbonControl1.Text = "ribbonControl1";
     this.ribbonControl1.TitleText = "ischedule";
     //
     // ribbonPanel1
     //
     this.ribbonPanel1.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.ribbonPanel1.Controls.Add(this.ribbonBar2);
     this.ribbonPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.ribbonPanel1.Location = new System.Drawing.Point(0, 55);
     this.ribbonPanel1.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.ribbonPanel1.Name = "ribbonPanel1";
     this.ribbonPanel1.Padding = new System.Windows.Forms.Padding(3, 0, 3, 4);
     this.ribbonPanel1.Size = new System.Drawing.Size(948, 82);
     //
     //
     //
     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;
     //
     // 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.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.btnTeacherAutoSchedule,
     this.btnTeacherLock,
     this.btnTeacherUnlock,
     this.btnTeacherFree,
     this.btnTeacherProperty,
     this.btnTeacherPrint,
     this.btnTeacherBusy});
     this.ribbonBar2.LicenseKey = "F962CEC7-CD8F-4911-A9E9-CAB39962FC1F";
     this.ribbonBar2.Location = new System.Drawing.Point(3, 0);
     this.ribbonBar2.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.ribbonBar2.Name = "ribbonBar2";
     this.ribbonBar2.Size = new System.Drawing.Size(436, 78);
     this.ribbonBar2.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.ribbonBar2.TabIndex = 0;
     //
     //
     //
     this.ribbonBar2.TitleStyle.Class = "";
     this.ribbonBar2.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBar2.TitleStyleMouseOver.Class = "";
     this.ribbonBar2.TitleStyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     // btnTeacherAutoSchedule
     //
     this.btnTeacherAutoSchedule.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.btnTeacherAutoSchedule.Enabled = false;
     this.btnTeacherAutoSchedule.Image = global::ischedule.Properties.Resources.自動排課;
     this.btnTeacherAutoSchedule.ImageFixedSize = new System.Drawing.Size(32, 32);
     this.btnTeacherAutoSchedule.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.btnTeacherAutoSchedule.ImageSmall = global::ischedule.Properties.Resources.自動排課;
     this.btnTeacherAutoSchedule.Name = "btnTeacherAutoSchedule";
     this.btnTeacherAutoSchedule.SubItemsExpandWidth = 14;
     this.btnTeacherAutoSchedule.Text = "自動排課";
     this.btnTeacherAutoSchedule.Tooltip = "提醒您自動排課會重新安排未鎖定的已排分課!";
     //
     // btnTeacherLock
     //
     this.btnTeacherLock.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.btnTeacherLock.Enabled = false;
     this.btnTeacherLock.Image = global::ischedule.Properties.Resources.鎖定;
     this.btnTeacherLock.ImageFixedSize = new System.Drawing.Size(32, 32);
     this.btnTeacherLock.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.btnTeacherLock.Name = "btnTeacherLock";
     this.btnTeacherLock.SubItemsExpandWidth = 14;
     this.btnTeacherLock.Text = "鎖定";
     //
     // btnTeacherUnlock
     //
     this.btnTeacherUnlock.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.btnTeacherUnlock.Enabled = false;
     this.btnTeacherUnlock.Image = global::ischedule.Properties.Resources.解除鎖定;
     this.btnTeacherUnlock.ImageFixedSize = new System.Drawing.Size(32, 32);
     this.btnTeacherUnlock.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.btnTeacherUnlock.Name = "btnTeacherUnlock";
     this.btnTeacherUnlock.SubItemsExpandWidth = 14;
     this.btnTeacherUnlock.Text = "解除鎖定";
     //
     // btnTeacherFree
     //
     this.btnTeacherFree.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.btnTeacherFree.Enabled = false;
     this.btnTeacherFree.Image = global::ischedule.Properties.Resources.回復至未排課72;
     this.btnTeacherFree.ImageFixedSize = new System.Drawing.Size(32, 32);
     this.btnTeacherFree.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.btnTeacherFree.Name = "btnTeacherFree";
     this.btnTeacherFree.SubItemsExpandWidth = 14;
     this.btnTeacherFree.Text = "回復至未排課";
     //
     // btnTeacherProperty
     //
     this.btnTeacherProperty.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.btnTeacherProperty.Enabled = false;
     this.btnTeacherProperty.Image = global::ischedule.Properties.Resources.查詢分課屬性72;
     this.btnTeacherProperty.ImageFixedSize = new System.Drawing.Size(32, 32);
     this.btnTeacherProperty.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.btnTeacherProperty.Name = "btnTeacherProperty";
     this.btnTeacherProperty.SubItemsExpandWidth = 14;
     this.btnTeacherProperty.Text = "修改屬性";
     //
     // btnTeacherPrint
     //
     this.btnTeacherPrint.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.btnTeacherPrint.Image = global::ischedule.Properties.Resources.列印;
     this.btnTeacherPrint.ImageFixedSize = new System.Drawing.Size(32, 32);
     this.btnTeacherPrint.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.btnTeacherPrint.Name = "btnTeacherPrint";
     this.btnTeacherPrint.SubItemsExpandWidth = 14;
     this.btnTeacherPrint.Text = "列印";
     //
     // btnTeacherBusy
     //
     this.btnTeacherBusy.Enabled = false;
     this.btnTeacherBusy.Image = global::ischedule.Properties.Resources.biology_remove_128;
     this.btnTeacherBusy.ImageFixedSize = new System.Drawing.Size(32, 32);
     this.btnTeacherBusy.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.btnTeacherBusy.Name = "btnTeacherBusy";
     this.btnTeacherBusy.SubItemsExpandWidth = 14;
     this.btnTeacherBusy.Text = "不排課時段";
     this.btnTeacherBusy.Click += new System.EventHandler(this.btnTeacherBusy_Click);
     //
     // ribbonPanel2
     //
     this.ribbonPanel2.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.ribbonPanel2.Controls.Add(this.ribbonBar3);
     this.ribbonPanel2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.ribbonPanel2.Location = new System.Drawing.Point(0, 55);
     this.ribbonPanel2.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.ribbonPanel2.Name = "ribbonPanel2";
     this.ribbonPanel2.Padding = new System.Windows.Forms.Padding(3, 0, 3, 4);
     this.ribbonPanel2.Size = new System.Drawing.Size(948, 82);
     //
     //
     //
     this.ribbonPanel2.Style.Class = "";
     this.ribbonPanel2.Style.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonPanel2.StyleMouseDown.Class = "";
     this.ribbonPanel2.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonPanel2.StyleMouseOver.Class = "";
     this.ribbonPanel2.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribbonPanel2.TabIndex = 2;
     this.ribbonPanel2.Visible = false;
     //
     // 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.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.btnClassAutoSchedule,
     this.btnClassLock,
     this.btnClassUnLock,
     this.btnClassFree,
     this.btnClassProperty,
     this.btnClassPrint,
     this.btnClassBusy});
     this.ribbonBar3.LicenseKey = "F962CEC7-CD8F-4911-A9E9-CAB39962FC1F";
     this.ribbonBar3.Location = new System.Drawing.Point(3, 0);
     this.ribbonBar3.Name = "ribbonBar3";
     this.ribbonBar3.Size = new System.Drawing.Size(436, 78);
     this.ribbonBar3.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.ribbonBar3.TabIndex = 0;
     //
     //
     //
     this.ribbonBar3.TitleStyle.Class = "";
     this.ribbonBar3.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBar3.TitleStyleMouseOver.Class = "";
     this.ribbonBar3.TitleStyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     // btnClassAutoSchedule
     //
     this.btnClassAutoSchedule.Enabled = false;
     this.btnClassAutoSchedule.Image = global::ischedule.Properties.Resources.自動排課;
     this.btnClassAutoSchedule.ImageFixedSize = new System.Drawing.Size(32, 32);
     this.btnClassAutoSchedule.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.btnClassAutoSchedule.Name = "btnClassAutoSchedule";
     this.btnClassAutoSchedule.SubItemsExpandWidth = 14;
     this.btnClassAutoSchedule.Text = "自動排課";
     //
     // btnClassLock
     //
     this.btnClassLock.Enabled = false;
     this.btnClassLock.Image = global::ischedule.Properties.Resources.鎖定;
     this.btnClassLock.ImageFixedSize = new System.Drawing.Size(32, 32);
     this.btnClassLock.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.btnClassLock.Name = "btnClassLock";
     this.btnClassLock.SubItemsExpandWidth = 14;
     this.btnClassLock.Text = "鎖定";
     //
     // btnClassUnLock
     //
     this.btnClassUnLock.Enabled = false;
     this.btnClassUnLock.Image = global::ischedule.Properties.Resources.解除鎖定;
     this.btnClassUnLock.ImageFixedSize = new System.Drawing.Size(32, 32);
     this.btnClassUnLock.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.btnClassUnLock.Name = "btnClassUnLock";
     this.btnClassUnLock.SubItemsExpandWidth = 14;
     this.btnClassUnLock.Text = "解除鎖定";
     //
     // btnClassFree
     //
     this.btnClassFree.Enabled = false;
     this.btnClassFree.Image = global::ischedule.Properties.Resources.回復至未排課72;
     this.btnClassFree.ImageFixedSize = new System.Drawing.Size(32, 32);
     this.btnClassFree.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.btnClassFree.Name = "btnClassFree";
     this.btnClassFree.SubItemsExpandWidth = 14;
     this.btnClassFree.Text = "回復至未排課";
     //
     // btnClassProperty
     //
     this.btnClassProperty.Enabled = false;
     this.btnClassProperty.Image = global::ischedule.Properties.Resources.查詢分課屬性72;
     this.btnClassProperty.ImageFixedSize = new System.Drawing.Size(32, 32);
     this.btnClassProperty.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.btnClassProperty.Name = "btnClassProperty";
     this.btnClassProperty.SubItemsExpandWidth = 14;
     this.btnClassProperty.Text = "修改屬性";
     //
     // btnClassPrint
     //
     this.btnClassPrint.Image = global::ischedule.Properties.Resources.列印;
     this.btnClassPrint.ImageFixedSize = new System.Drawing.Size(32, 32);
     this.btnClassPrint.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.btnClassPrint.Name = "btnClassPrint";
     this.btnClassPrint.SubItemsExpandWidth = 14;
     this.btnClassPrint.Text = "列印";
     //
     // btnClassBusy
     //
     this.btnClassBusy.Enabled = false;
     this.btnClassBusy.Image = global::ischedule.Properties.Resources.biology_remove_128;
     this.btnClassBusy.ImageFixedSize = new System.Drawing.Size(32, 32);
     this.btnClassBusy.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.btnClassBusy.Name = "btnClassBusy";
     this.btnClassBusy.SubItemsExpandWidth = 14;
     this.btnClassBusy.Text = "不排課時段";
     this.btnClassBusy.Click += new System.EventHandler(this.btnClassBusy_Click);
     //
     // ribbonPanel3
     //
     this.ribbonPanel3.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.ribbonPanel3.Controls.Add(this.ribbonBar4);
     this.ribbonPanel3.Dock = System.Windows.Forms.DockStyle.Fill;
     this.ribbonPanel3.Location = new System.Drawing.Point(0, 55);
     this.ribbonPanel3.Name = "ribbonPanel3";
     this.ribbonPanel3.Padding = new System.Windows.Forms.Padding(3, 0, 3, 3);
     this.ribbonPanel3.Size = new System.Drawing.Size(948, 82);
     //
     //
     //
     this.ribbonPanel3.Style.Class = "";
     this.ribbonPanel3.Style.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonPanel3.StyleMouseDown.Class = "";
     this.ribbonPanel3.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonPanel3.StyleMouseOver.Class = "";
     this.ribbonPanel3.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribbonPanel3.TabIndex = 3;
     this.ribbonPanel3.Visible = false;
     //
     // 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.btnClassroomAutoSchedule,
     this.btnClassroomLock,
     this.btnClassroomUnLock,
     this.btnClassroomFree,
     this.btnClassroomProperty,
     this.btnClassroomPrint,
     this.btnClassroomBusy});
     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(436, 79);
     this.ribbonBar4.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.ribbonBar4.TabIndex = 0;
     //
     //
     //
     this.ribbonBar4.TitleStyle.Class = "";
     this.ribbonBar4.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBar4.TitleStyleMouseOver.Class = "";
     this.ribbonBar4.TitleStyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     // btnClassroomAutoSchedule
     //
     this.btnClassroomAutoSchedule.Enabled = false;
     this.btnClassroomAutoSchedule.Image = global::ischedule.Properties.Resources.自動排課;
     this.btnClassroomAutoSchedule.ImageFixedSize = new System.Drawing.Size(32, 32);
     this.btnClassroomAutoSchedule.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.btnClassroomAutoSchedule.Name = "btnClassroomAutoSchedule";
     this.btnClassroomAutoSchedule.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.buttonItem2});
     this.btnClassroomAutoSchedule.SubItemsExpandWidth = 14;
     this.btnClassroomAutoSchedule.Text = "自動排課";
     //
     // buttonItem2
     //
     this.buttonItem2.Name = "buttonItem2";
     this.buttonItem2.Text = "buttonItem2";
     //
     // btnClassroomLock
     //
     this.btnClassroomLock.Enabled = false;
     this.btnClassroomLock.Image = global::ischedule.Properties.Resources.鎖定;
     this.btnClassroomLock.ImageFixedSize = new System.Drawing.Size(32, 32);
     this.btnClassroomLock.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.btnClassroomLock.Name = "btnClassroomLock";
     this.btnClassroomLock.SubItemsExpandWidth = 14;
     this.btnClassroomLock.Text = "鎖定";
     //
     // btnClassroomUnLock
     //
     this.btnClassroomUnLock.Enabled = false;
     this.btnClassroomUnLock.Image = global::ischedule.Properties.Resources.解除鎖定;
     this.btnClassroomUnLock.ImageFixedSize = new System.Drawing.Size(32, 32);
     this.btnClassroomUnLock.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.btnClassroomUnLock.Name = "btnClassroomUnLock";
     this.btnClassroomUnLock.SubItemsExpandWidth = 14;
     this.btnClassroomUnLock.Text = "解除鎖定";
     //
     // btnClassroomFree
     //
     this.btnClassroomFree.Enabled = false;
     this.btnClassroomFree.Image = global::ischedule.Properties.Resources.回復至未排課72;
     this.btnClassroomFree.ImageFixedSize = new System.Drawing.Size(32, 32);
     this.btnClassroomFree.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.btnClassroomFree.Name = "btnClassroomFree";
     this.btnClassroomFree.SubItemsExpandWidth = 14;
     this.btnClassroomFree.Text = "回復至未排課";
     //
     // btnClassroomProperty
     //
     this.btnClassroomProperty.Enabled = false;
     this.btnClassroomProperty.Image = global::ischedule.Properties.Resources.查詢分課屬性72;
     this.btnClassroomProperty.ImageFixedSize = new System.Drawing.Size(32, 32);
     this.btnClassroomProperty.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.btnClassroomProperty.Name = "btnClassroomProperty";
     this.btnClassroomProperty.SubItemsExpandWidth = 14;
     this.btnClassroomProperty.Text = "修改屬性";
     //
     // btnClassroomPrint
     //
     this.btnClassroomPrint.Image = global::ischedule.Properties.Resources.列印;
     this.btnClassroomPrint.ImageFixedSize = new System.Drawing.Size(32, 32);
     this.btnClassroomPrint.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.btnClassroomPrint.Name = "btnClassroomPrint";
     this.btnClassroomPrint.SubItemsExpandWidth = 14;
     this.btnClassroomPrint.Text = "列印";
     //
     // btnClassroomBusy
     //
     this.btnClassroomBusy.Enabled = false;
     this.btnClassroomBusy.Image = global::ischedule.Properties.Resources.biology_remove_128;
     this.btnClassroomBusy.ImageFixedSize = new System.Drawing.Size(32, 32);
     this.btnClassroomBusy.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.btnClassroomBusy.Name = "btnClassroomBusy";
     this.btnClassroomBusy.SubItemsExpandWidth = 14;
     this.btnClassroomBusy.Text = "不排課時段";
     this.btnClassroomBusy.Click += new System.EventHandler(this.btnClassroomBusy_Click);
     //
     // 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.ImageFixedSize = new System.Drawing.Size(16, 16);
     this.office2007StartButton1.ImagePaddingHorizontal = 0;
     this.office2007StartButton1.ImagePaddingVertical = 0;
     this.office2007StartButton1.Name = "office2007StartButton1";
     this.office2007StartButton1.ShowSubItems = false;
     this.office2007StartButton1.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.itemContainer1});
     this.office2007StartButton1.Text = "開始";
     this.office2007StartButton1.Click += new System.EventHandler(this.office2007StartButton1_Click);
     //
     // 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.btnOpen,
     this.btnSave,
     this.btnSaveAs,
     this.btnDownload,
     this.btnUpload,
     this.btnClose,
     this.btnExit});
     //
     // btnOpen
     //
     this.btnOpen.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.btnOpen.Image = global::ischedule.Properties.Resources.開啟檔案;
     this.btnOpen.Name = "btnOpen";
     this.btnOpen.SubItemsExpandWidth = 24;
     this.btnOpen.Text = "開啟資料";
     this.btnOpen.Click += new System.EventHandler(this.btnOpen_Click);
     //
     // btnSave
     //
     this.btnSave.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.btnSave.Image = global::ischedule.Properties.Resources.儲存;
     this.btnSave.Name = "btnSave";
     this.btnSave.SubItemsExpandWidth = 24;
     this.btnSave.Text = "儲存資料";
     this.btnSave.Click += new System.EventHandler(this.btnSave_Click);
     //
     // btnSaveAs
     //
     this.btnSaveAs.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.btnSaveAs.Image = global::ischedule.Properties.Resources.另存新檔;
     this.btnSaveAs.Name = "btnSaveAs";
     this.btnSaveAs.Text = "另存資料";
     this.btnSaveAs.Click += new System.EventHandler(this.btnSaveAs_Click);
     //
     // btnDownload
     //
     this.btnDownload.BeginGroup = true;
     this.btnDownload.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.btnDownload.Image = global::ischedule.Properties.Resources.下載;
     this.btnDownload.Name = "btnDownload";
     this.btnDownload.SubItemsExpandWidth = 24;
     this.btnDownload.Text = "下載資料";
     this.btnDownload.Click += new System.EventHandler(this.btnDownload_Click);
     //
     // btnUpload
     //
     this.btnUpload.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.btnUpload.Image = global::ischedule.Properties.Resources.上載;
     this.btnUpload.Name = "btnUpload";
     this.btnUpload.SubItemsExpandWidth = 24;
     this.btnUpload.Text = "上傳資料";
     this.btnUpload.Click += new System.EventHandler(this.btnUpload_Click);
     //
     // btnClose
     //
     this.btnClose.BeginGroup = true;
     this.btnClose.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.btnClose.Image = global::ischedule.Properties.Resources.關閉檔案;
     this.btnClose.Name = "btnClose";
     this.btnClose.SubItemsExpandWidth = 24;
     this.btnClose.Text = "關閉資料";
     this.btnClose.Visible = false;
     //
     // btnExit
     //
     this.btnExit.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.btnExit.Image = global::ischedule.Properties.Resources.刪除;
     this.btnExit.Name = "btnExit";
     this.btnExit.Text = "關閉系統";
     //
     // ribbonTabTeacher
     //
     this.ribbonTabTeacher.Checked = true;
     this.ribbonTabTeacher.Name = "ribbonTabTeacher";
     this.ribbonTabTeacher.Panel = this.ribbonPanel1;
     this.ribbonTabTeacher.Text = "教師";
     //
     // ribbonTabClass
     //
     this.ribbonTabClass.Name = "ribbonTabClass";
     this.ribbonTabClass.Panel = this.ribbonPanel2;
     this.ribbonTabClass.Text = "班級";
     //
     // ribbonTabClassroom
     //
     this.ribbonTabClassroom.Name = "ribbonTabClassroom";
     this.ribbonTabClassroom.Panel = this.ribbonPanel3;
     this.ribbonTabClassroom.Text = "場地";
     //
     // btnUndo
     //
     this.btnUndo.Enabled = false;
     this.btnUndo.Image = global::ischedule.Properties.Resources.Undo_icon;
     this.btnUndo.ImageFixedSize = new System.Drawing.Size(16, 16);
     this.btnUndo.ImageListSizeSelection = DevComponents.DotNetBar.eButtonImageListSelection.Default;
     this.btnUndo.Name = "btnUndo";
     this.btnUndo.Text = "buttonItem3";
     this.btnUndo.Tooltip = "回復";
     this.btnUndo.Visible = false;
     this.btnUndo.Click += new System.EventHandler(this.btnUndo_Click);
     //
     // btnRedo
     //
     this.btnRedo.Enabled = false;
     this.btnRedo.Image = global::ischedule.Properties.Resources.Redo_icon;
     this.btnRedo.ImageFixedSize = new System.Drawing.Size(16, 16);
     this.btnRedo.ImageListSizeSelection = DevComponents.DotNetBar.eButtonImageListSelection.Default;
     this.btnRedo.Name = "btnRedo";
     this.btnRedo.Text = "重做";
     this.btnRedo.Visible = false;
     this.btnRedo.Click += new System.EventHandler(this.btnRedo_Click);
     //
     // qatCustomizeItem1
     //
     this.qatCustomizeItem1.Name = "qatCustomizeItem1";
     //
     // styleManager1
     //
     this.styleManager1.ManagerStyle = DevComponents.DotNetBar.eStyle.Office2010Blue;
     //
     // bar1
     //
     this.bar1.AntiAlias = true;
     this.bar1.BarType = DevComponents.DotNetBar.eBarType.StatusBar;
     this.bar1.Controls.Add(this.lblMemoryUsage);
     this.bar1.Controls.Add(this.progressBarX1);
     this.bar1.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.bar1.Location = new System.Drawing.Point(5, 715);
     this.bar1.Name = "bar1";
     this.bar1.Size = new System.Drawing.Size(948, 25);
     this.bar1.Stretch = true;
     this.bar1.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.bar1.TabIndex = 7;
     this.bar1.TabStop = false;
     this.bar1.Text = "bar1";
     //
     // lblMemoryUsage
     //
     this.lblMemoryUsage.AutoSize = true;
     this.lblMemoryUsage.BackColor = System.Drawing.Color.Transparent;
     //
     //
     //
     this.lblMemoryUsage.BackgroundStyle.Class = "";
     this.lblMemoryUsage.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.lblMemoryUsage.Dock = System.Windows.Forms.DockStyle.Right;
     this.lblMemoryUsage.Location = new System.Drawing.Point(948, 0);
     this.lblMemoryUsage.Name = "lblMemoryUsage";
     this.lblMemoryUsage.SingleLineColor = System.Drawing.Color.Transparent;
     this.lblMemoryUsage.Size = new System.Drawing.Size(0, 0);
     this.lblMemoryUsage.TabIndex = 1;
     //
     // progressBarX1
     //
     //
     //
     //
     this.progressBarX1.BackgroundStyle.Class = "";
     this.progressBarX1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.progressBarX1.Location = new System.Drawing.Point(50, 3);
     this.progressBarX1.Name = "progressBarX1";
     this.progressBarX1.Size = new System.Drawing.Size(348, 20);
     this.progressBarX1.TabIndex = 0;
     this.progressBarX1.Text = "progressBarX1";
     this.progressBarX1.Visible = false;
     //
     // panel1
     //
     this.panel1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
     this.panel1.Controls.Add(this.panel2);
     this.panel1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panel1.Location = new System.Drawing.Point(5, 141);
     this.panel1.Name = "panel1";
     this.panel1.Size = new System.Drawing.Size(948, 574);
     this.panel1.TabIndex = 9;
     //
     // panel2
     //
     this.panel2.Controls.Add(this.panel4);
     this.panel2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panel2.Location = new System.Drawing.Point(0, 0);
     this.panel2.Name = "panel2";
     this.panel2.Size = new System.Drawing.Size(948, 574);
     this.panel2.TabIndex = 0;
     //
     // panel4
     //
     this.panel4.Controls.Add(this.tabContent);
     this.panel4.Controls.Add(this.expandableSplitter1);
     this.panel4.Controls.Add(this.LeftNavigationPanel);
     this.panel4.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panel4.Location = new System.Drawing.Point(0, 0);
     this.panel4.Name = "panel4";
     this.panel4.Size = new System.Drawing.Size(948, 574);
     this.panel4.TabIndex = 2;
     //
     // tabContent
     //
     //
     //
     //
     //
     //
     //
     this.tabContent.ControlBox.CloseBox.Name = "";
     //
     //
     //
     this.tabContent.ControlBox.MenuBox.Name = "";
     this.tabContent.ControlBox.Name = "";
     this.tabContent.ControlBox.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.tabContent.ControlBox.MenuBox,
     this.tabContent.ControlBox.CloseBox});
     this.tabContent.Controls.Add(this.superTabControlPanel1);
     this.tabContent.Controls.Add(this.superTabControlPanel2);
     this.tabContent.Controls.Add(this.superTabControlPanel3);
     this.tabContent.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabContent.Location = new System.Drawing.Point(209, 0);
     this.tabContent.Name = "tabContent";
     this.tabContent.ReorderTabsEnabled = true;
     this.tabContent.SelectedTabFont = new System.Drawing.Font("Microsoft JhengHei", 9F, System.Drawing.FontStyle.Bold);
     this.tabContent.SelectedTabIndex = 0;
     this.tabContent.Size = new System.Drawing.Size(739, 574);
     this.tabContent.TabFont = new System.Drawing.Font("Microsoft JhengHei", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(136)));
     this.tabContent.TabIndex = 11;
     this.tabContent.Tabs.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.tabTeacher,
     this.tabClass,
     this.tabClassroom});
     this.tabContent.TabsVisible = false;
     this.tabContent.Text = "superTabControl1";
     //
     // superTabControlPanel1
     //
     this.superTabControlPanel1.Controls.Add(this.pnlWhoList);
     this.superTabControlPanel1.Controls.Add(this.splTeacher);
     this.superTabControlPanel1.Controls.Add(this.pnlWhoLPView);
     this.superTabControlPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.superTabControlPanel1.Location = new System.Drawing.Point(0, 30);
     this.superTabControlPanel1.Name = "superTabControlPanel1";
     this.superTabControlPanel1.Size = new System.Drawing.Size(739, 544);
     this.superTabControlPanel1.TabIndex = 1;
     this.superTabControlPanel1.TabItem = this.tabTeacher;
     //
     // pnlWhoList
     //
     this.pnlWhoList.Controls.Add(this.grdTeacherEvent);
     this.pnlWhoList.Controls.Add(this.panel5);
     this.pnlWhoList.Dock = System.Windows.Forms.DockStyle.Fill;
     this.pnlWhoList.Location = new System.Drawing.Point(0, 0);
     this.pnlWhoList.Name = "pnlWhoList";
     this.pnlWhoList.Size = new System.Drawing.Size(136, 544);
     this.pnlWhoList.TabIndex = 6;
     //
     // grdTeacherEvent
     //
     this.grdTeacherEvent.AllowUserToAddRows = false;
     this.grdTeacherEvent.AllowUserToDeleteRows = false;
     this.grdTeacherEvent.AllowUserToOrderColumns = true;
     this.grdTeacherEvent.AllowUserToResizeRows = false;
     this.grdTeacherEvent.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.AllCells;
     this.grdTeacherEvent.BackgroundColor = System.Drawing.Color.White;
     this.grdTeacherEvent.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.grdTeacherEvent.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.colLock,
     this.colSolutionCount,
     this.colWeekDay,
     this.colPeriodNo,
     this.colCourseName,
     this.colLength,
     this.colWhoName,
     this.colWhomName,
     this.colWhereName,
     this.colWhatName,
     this.colWhatAliasName,
     this.colCourseGroup,
     this.colWeekDayCondition,
     this.colPeriodCondition,
     this.colAllowLongBreak,
     this.colAllowDuplicate,
     this.colLimitNextDay,
     this.colWeekFlag,
     this.colPriority,
     this.colTimeTable,
     this.colColorIndex,
     this.colEventID});
     dataGridViewCellStyle6.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle6.BackColor = System.Drawing.SystemColors.Window;
     dataGridViewCellStyle6.Font = new System.Drawing.Font("Microsoft JhengHei", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(136)));
     dataGridViewCellStyle6.ForeColor = System.Drawing.SystemColors.ControlText;
     dataGridViewCellStyle6.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle6.SelectionForeColor = System.Drawing.SystemColors.ControlText;
     dataGridViewCellStyle6.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
     this.grdTeacherEvent.DefaultCellStyle = dataGridViewCellStyle6;
     this.grdTeacherEvent.Dock = System.Windows.Forms.DockStyle.Fill;
     this.grdTeacherEvent.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(170)))), ((int)(((byte)(170)))), ((int)(((byte)(170)))));
     this.grdTeacherEvent.Location = new System.Drawing.Point(0, 35);
     this.grdTeacherEvent.Name = "grdTeacherEvent";
     this.grdTeacherEvent.ReadOnly = true;
     this.grdTeacherEvent.RowHeadersVisible = false;
     this.grdTeacherEvent.RowTemplate.Height = 24;
     this.grdTeacherEvent.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
     this.grdTeacherEvent.Size = new System.Drawing.Size(136, 509);
     this.grdTeacherEvent.TabIndex = 9;
     this.grdTeacherEvent.VirtualMode = true;
     //
     // colLock
     //
     this.colLock.DataPropertyName = "DisplayManualLock";
     dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     this.colLock.DefaultCellStyle = dataGridViewCellStyle1;
     this.colLock.HeaderText = "鎖定";
     this.colLock.MinimumWidth = 40;
     this.colLock.Name = "colLock";
     this.colLock.ReadOnly = true;
     this.colLock.Width = 57;
     //
     // colSolutionCount
     //
     this.colSolutionCount.DataPropertyName = "DisplaySolutionCount";
     dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     this.colSolutionCount.DefaultCellStyle = dataGridViewCellStyle2;
     this.colSolutionCount.HeaderText = "方案";
     this.colSolutionCount.MinimumWidth = 40;
     this.colSolutionCount.Name = "colSolutionCount";
     this.colSolutionCount.ReadOnly = true;
     this.colSolutionCount.Width = 57;
     //
     // colWeekDay
     //
     this.colWeekDay.DataPropertyName = "WeekDay";
     dataGridViewCellStyle3.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     this.colWeekDay.DefaultCellStyle = dataGridViewCellStyle3;
     this.colWeekDay.HeaderText = "星期";
     this.colWeekDay.MinimumWidth = 40;
     this.colWeekDay.Name = "colWeekDay";
     this.colWeekDay.ReadOnly = true;
     this.colWeekDay.Width = 57;
     //
     // colPeriodNo
     //
     this.colPeriodNo.DataPropertyName = "PeriodNo";
     dataGridViewCellStyle4.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     this.colPeriodNo.DefaultCellStyle = dataGridViewCellStyle4;
     this.colPeriodNo.HeaderText = "節次";
     this.colPeriodNo.Name = "colPeriodNo";
     this.colPeriodNo.ReadOnly = true;
     this.colPeriodNo.Width = 57;
     //
     // colCourseName
     //
     this.colCourseName.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
     this.colCourseName.DataPropertyName = "CourseName";
     this.colCourseName.HeaderText = "課程名稱";
     this.colCourseName.Name = "colCourseName";
     this.colCourseName.ReadOnly = true;
     this.colCourseName.Width = 81;
     //
     // colLength
     //
     this.colLength.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.colLength.DataPropertyName = "Length";
     dataGridViewCellStyle5.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     this.colLength.DefaultCellStyle = dataGridViewCellStyle5;
     this.colLength.HeaderText = "節數";
     this.colLength.Name = "colLength";
     this.colLength.ReadOnly = true;
     this.colLength.Width = 57;
     //
     // colWhoName
     //
     this.colWhoName.DataPropertyName = "DisplayTeacherName";
     this.colWhoName.HeaderText = "教師";
     this.colWhoName.Name = "colWhoName";
     this.colWhoName.ReadOnly = true;
     this.colWhoName.Width = 57;
     //
     // colWhomName
     //
     this.colWhomName.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
     this.colWhomName.DataPropertyName = "DisplayClassName";
     this.colWhomName.HeaderText = "班級";
     this.colWhomName.Name = "colWhomName";
     this.colWhomName.ReadOnly = true;
     this.colWhomName.Width = 57;
     //
     // colWhereName
     //
     this.colWhereName.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
     this.colWhereName.DataPropertyName = "DisplayClassroomName";
     this.colWhereName.HeaderText = "場地";
     this.colWhereName.Name = "colWhereName";
     this.colWhereName.ReadOnly = true;
     this.colWhereName.Width = 57;
     //
     // colWhatName
     //
     this.colWhatName.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
     this.colWhatName.DataPropertyName = "DisplaySubjectName";
     this.colWhatName.HeaderText = "科目";
     this.colWhatName.Name = "colWhatName";
     this.colWhatName.ReadOnly = true;
     this.colWhatName.Width = 57;
     //
     // colWhatAliasName
     //
     this.colWhatAliasName.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
     this.colWhatAliasName.DataPropertyName = "SubjectAlias";
     this.colWhatAliasName.HeaderText = "科目簡稱";
     this.colWhatAliasName.Name = "colWhatAliasName";
     this.colWhatAliasName.ReadOnly = true;
     this.colWhatAliasName.Width = 81;
     //
     // colCourseGroup
     //
     this.colCourseGroup.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
     this.colCourseGroup.DataPropertyName = "CourseGroup";
     this.colCourseGroup.HeaderText = "課程群組";
     this.colCourseGroup.Name = "colCourseGroup";
     this.colCourseGroup.ReadOnly = true;
     this.colCourseGroup.Width = 81;
     //
     // colWeekDayCondition
     //
     this.colWeekDayCondition.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.colWeekDayCondition.DataPropertyName = "WeekDayCondition";
     this.colWeekDayCondition.HeaderText = "星期條件";
     this.colWeekDayCondition.Name = "colWeekDayCondition";
     this.colWeekDayCondition.ReadOnly = true;
     this.colWeekDayCondition.Width = 81;
     //
     // colPeriodCondition
     //
     this.colPeriodCondition.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.colPeriodCondition.DataPropertyName = "PeriodCondition";
     this.colPeriodCondition.HeaderText = "節次條件";
     this.colPeriodCondition.Name = "colPeriodCondition";
     this.colPeriodCondition.ReadOnly = true;
     this.colPeriodCondition.Width = 81;
     //
     // colAllowLongBreak
     //
     this.colAllowLongBreak.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.colAllowLongBreak.DataPropertyName = "DisplayAllowLongBreak";
     this.colAllowLongBreak.HeaderText = "跨中午";
     this.colAllowLongBreak.Name = "colAllowLongBreak";
     this.colAllowLongBreak.ReadOnly = true;
     this.colAllowLongBreak.Width = 69;
     //
     // colAllowDuplicate
     //
     this.colAllowDuplicate.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.colAllowDuplicate.DataPropertyName = "DisplayAllowDuplicate";
     this.colAllowDuplicate.HeaderText = "可重複";
     this.colAllowDuplicate.Name = "colAllowDuplicate";
     this.colAllowDuplicate.ReadOnly = true;
     this.colAllowDuplicate.Width = 69;
     //
     // colLimitNextDay
     //
     this.colLimitNextDay.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.colLimitNextDay.DataPropertyName = "DisplayLimitNextDay";
     this.colLimitNextDay.HeaderText = "不連天";
     this.colLimitNextDay.Name = "colLimitNextDay";
     this.colLimitNextDay.ReadOnly = true;
     this.colLimitNextDay.Width = 69;
     //
     // colWeekFlag
     //
     this.colWeekFlag.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.colWeekFlag.DataPropertyName = "DisplayWeekFlag";
     this.colWeekFlag.HeaderText = "單雙週";
     this.colWeekFlag.Name = "colWeekFlag";
     this.colWeekFlag.ReadOnly = true;
     this.colWeekFlag.Width = 69;
     //
     // colPriority
     //
     this.colPriority.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.colPriority.DataPropertyName = "Priority";
     this.colPriority.HeaderText = "優先";
     this.colPriority.Name = "colPriority";
     this.colPriority.ReadOnly = true;
     this.colPriority.Width = 57;
     //
     // colTimeTable
     //
     this.colTimeTable.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
     this.colTimeTable.DataPropertyName = "DispalyTimeTableName";
     this.colTimeTable.HeaderText = "時間表";
     this.colTimeTable.Name = "colTimeTable";
     this.colTimeTable.ReadOnly = true;
     this.colTimeTable.Width = 69;
     //
     // colColorIndex
     //
     this.colColorIndex.DataPropertyName = "ColorIndex";
     this.colColorIndex.HeaderText = "顏色";
     this.colColorIndex.Name = "colColorIndex";
     this.colColorIndex.ReadOnly = true;
     this.colColorIndex.Visible = false;
     this.colColorIndex.Width = 54;
     //
     // colEventID
     //
     this.colEventID.DataPropertyName = "EventID";
     this.colEventID.HeaderText = "分課編號";
     this.colEventID.Name = "colEventID";
     this.colEventID.ReadOnly = true;
     this.colEventID.Width = 81;
     //
     // panel5
     //
     this.panel5.Controls.Add(this.labelX2);
     this.panel5.Controls.Add(this.lblTeacher);
     this.panel5.Controls.Add(this.btnTeacherEventExpand);
     this.panel5.Dock = System.Windows.Forms.DockStyle.Top;
     this.panel5.Location = new System.Drawing.Point(0, 0);
     this.panel5.Name = "panel5";
     this.panel5.Size = new System.Drawing.Size(136, 35);
     this.panel5.TabIndex = 8;
     //
     // labelX2
     //
     this.labelX2.Anchor = System.Windows.Forms.AnchorStyles.Right;
     this.labelX2.AutoSize = true;
     //
     //
     //
     this.labelX2.BackgroundStyle.Class = "";
     this.labelX2.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX2.Font = new System.Drawing.Font("Microsoft JhengHei", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(136)));
     this.labelX2.Location = new System.Drawing.Point(-23, 3);
     this.labelX2.Name = "labelX2";
     this.labelX2.Size = new System.Drawing.Size(123, 26);
     this.labelX2.TabIndex = 2;
     this.labelX2.Text = "黃色為未排分課";
     //
     // lblTeacher
     //
     this.lblTeacher.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.lblTeacher.AutoSize = true;
     //
     //
     //
     this.lblTeacher.BackgroundStyle.Class = "";
     this.lblTeacher.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.lblTeacher.Font = new System.Drawing.Font("Microsoft JhengHei", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(136)));
     this.lblTeacher.Location = new System.Drawing.Point(7, 4);
     this.lblTeacher.Name = "lblTeacher";
     this.lblTeacher.Size = new System.Drawing.Size(0, 0);
     this.lblTeacher.TabIndex = 1;
     //
     // btnTeacherEventExpand
     //
     this.btnTeacherEventExpand.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btnTeacherEventExpand.Anchor = System.Windows.Forms.AnchorStyles.Right;
     this.btnTeacherEventExpand.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.btnTeacherEventExpand.Location = new System.Drawing.Point(102, 5);
     this.btnTeacherEventExpand.Name = "btnTeacherEventExpand";
     this.btnTeacherEventExpand.Size = new System.Drawing.Size(28, 23);
     this.btnTeacherEventExpand.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.btnTeacherEventExpand.TabIndex = 0;
     this.btnTeacherEventExpand.Text = ">>";
     //
     // splTeacher
     //
     this.splTeacher.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(157)))), ((int)(((byte)(189)))));
     this.splTeacher.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.splTeacher.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.splTeacher.Dock = System.Windows.Forms.DockStyle.Right;
     this.splTeacher.ExpandableControl = this.pnlWhoLPView;
     this.splTeacher.ExpandFillColor = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(157)))), ((int)(((byte)(189)))));
     this.splTeacher.ExpandFillColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.splTeacher.ExpandLineColor = System.Drawing.Color.FromArgb(((int)(((byte)(31)))), ((int)(((byte)(57)))), ((int)(((byte)(120)))));
     this.splTeacher.ExpandLineColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemText;
     this.splTeacher.GripDarkColor = System.Drawing.Color.FromArgb(((int)(((byte)(31)))), ((int)(((byte)(57)))), ((int)(((byte)(120)))));
     this.splTeacher.GripDarkColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemText;
     this.splTeacher.GripLightColor = System.Drawing.Color.FromArgb(((int)(((byte)(220)))), ((int)(((byte)(232)))), ((int)(((byte)(246)))));
     this.splTeacher.GripLightColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
     this.splTeacher.HotBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(246)))), ((int)(((byte)(200)))), ((int)(((byte)(103)))));
     this.splTeacher.HotBackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(254)))), ((int)(((byte)(226)))), ((int)(((byte)(135)))));
     this.splTeacher.HotBackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemPressedBackground2;
     this.splTeacher.HotBackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemPressedBackground;
     this.splTeacher.HotExpandFillColor = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(157)))), ((int)(((byte)(189)))));
     this.splTeacher.HotExpandFillColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.splTeacher.HotExpandLineColor = System.Drawing.Color.FromArgb(((int)(((byte)(31)))), ((int)(((byte)(57)))), ((int)(((byte)(120)))));
     this.splTeacher.HotExpandLineColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemText;
     this.splTeacher.HotGripDarkColor = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(157)))), ((int)(((byte)(189)))));
     this.splTeacher.HotGripDarkColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.splTeacher.HotGripLightColor = System.Drawing.Color.FromArgb(((int)(((byte)(220)))), ((int)(((byte)(232)))), ((int)(((byte)(246)))));
     this.splTeacher.HotGripLightColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
     this.splTeacher.Location = new System.Drawing.Point(136, 0);
     this.splTeacher.Name = "splTeacher";
     this.splTeacher.Size = new System.Drawing.Size(3, 544);
     this.splTeacher.Style = DevComponents.DotNetBar.eSplitterStyle.Office2007;
     this.splTeacher.TabIndex = 5;
     this.splTeacher.TabStop = false;
     //
     // pnlWhoLPView
     //
     this.pnlWhoLPView.Controls.Add(this.tabTeacherLPView);
     this.pnlWhoLPView.Dock = System.Windows.Forms.DockStyle.Right;
     this.pnlWhoLPView.Location = new System.Drawing.Point(139, 0);
     this.pnlWhoLPView.Name = "pnlWhoLPView";
     this.pnlWhoLPView.Size = new System.Drawing.Size(600, 544);
     this.pnlWhoLPView.TabIndex = 4;
     //
     // tabTeacherLPView
     //
     this.tabTeacherLPView.AutoCloseTabs = true;
     this.tabTeacherLPView.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
     this.tabTeacherLPView.CanReorderTabs = true;
     this.tabTeacherLPView.CloseButtonOnTabsVisible = true;
     this.tabTeacherLPView.CloseButtonPosition = DevComponents.DotNetBar.eTabCloseButtonPosition.Right;
     this.tabTeacherLPView.Controls.Add(this.tabControlPanel1);
     this.tabTeacherLPView.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabTeacherLPView.Location = new System.Drawing.Point(0, 0);
     this.tabTeacherLPView.Name = "tabTeacherLPView";
     this.tabTeacherLPView.SelectedTabFont = new System.Drawing.Font("Microsoft JhengHei", 9F, System.Drawing.FontStyle.Bold);
     this.tabTeacherLPView.SelectedTabIndex = -1;
     this.tabTeacherLPView.Size = new System.Drawing.Size(600, 544);
     this.tabTeacherLPView.TabIndex = 1;
     this.tabTeacherLPView.TabLayoutType = DevComponents.DotNetBar.eTabLayoutType.FixedWithNavigationBox;
     this.tabTeacherLPView.Tabs.Add(this.tabItem2);
     this.tabTeacherLPView.Text = "tabControl1";
     //
     // tabControlPanel1
     //
     this.tabControlPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabControlPanel1.Location = new System.Drawing.Point(0, 28);
     this.tabControlPanel1.Name = "tabControlPanel1";
     this.tabControlPanel1.Padding = new System.Windows.Forms.Padding(1);
     this.tabControlPanel1.Size = new System.Drawing.Size(600, 516);
     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.tabItem2;
     //
     // tabItem2
     //
     this.tabItem2.AttachedControl = this.tabControlPanel1;
     this.tabItem2.CloseButtonVisible = false;
     this.tabItem2.Name = "tabItem2";
     this.tabItem2.Text = "功課表";
     //
     // tabTeacher
     //
     this.tabTeacher.AttachedControl = this.superTabControlPanel1;
     this.tabTeacher.GlobalItem = false;
     this.tabTeacher.Name = "tabTeacher";
     this.tabTeacher.Text = "教師";
     //
     // superTabControlPanel2
     //
     this.superTabControlPanel2.Controls.Add(this.splClass);
     this.superTabControlPanel2.Controls.Add(this.pnlWhomList);
     this.superTabControlPanel2.Controls.Add(this.pnlWhomLPView);
     this.superTabControlPanel2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.superTabControlPanel2.Location = new System.Drawing.Point(0, 0);
     this.superTabControlPanel2.Name = "superTabControlPanel2";
     this.superTabControlPanel2.Size = new System.Drawing.Size(739, 574);
     this.superTabControlPanel2.TabIndex = 0;
     this.superTabControlPanel2.TabItem = this.tabClass;
     //
     // splClass
     //
     this.splClass.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(157)))), ((int)(((byte)(189)))));
     this.splClass.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.splClass.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.splClass.Dock = System.Windows.Forms.DockStyle.Right;
     this.splClass.ExpandableControl = this.pnlWhomLPView;
     this.splClass.ExpandFillColor = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(157)))), ((int)(((byte)(189)))));
     this.splClass.ExpandFillColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.splClass.ExpandLineColor = System.Drawing.Color.FromArgb(((int)(((byte)(31)))), ((int)(((byte)(57)))), ((int)(((byte)(120)))));
     this.splClass.ExpandLineColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemText;
     this.splClass.GripDarkColor = System.Drawing.Color.FromArgb(((int)(((byte)(31)))), ((int)(((byte)(57)))), ((int)(((byte)(120)))));
     this.splClass.GripDarkColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemText;
     this.splClass.GripLightColor = System.Drawing.Color.FromArgb(((int)(((byte)(220)))), ((int)(((byte)(232)))), ((int)(((byte)(246)))));
     this.splClass.GripLightColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
     this.splClass.HotBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(246)))), ((int)(((byte)(200)))), ((int)(((byte)(103)))));
     this.splClass.HotBackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(254)))), ((int)(((byte)(226)))), ((int)(((byte)(135)))));
     this.splClass.HotBackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemPressedBackground2;
     this.splClass.HotBackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemPressedBackground;
     this.splClass.HotExpandFillColor = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(157)))), ((int)(((byte)(189)))));
     this.splClass.HotExpandFillColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.splClass.HotExpandLineColor = System.Drawing.Color.FromArgb(((int)(((byte)(31)))), ((int)(((byte)(57)))), ((int)(((byte)(120)))));
     this.splClass.HotExpandLineColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemText;
     this.splClass.HotGripDarkColor = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(157)))), ((int)(((byte)(189)))));
     this.splClass.HotGripDarkColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.splClass.HotGripLightColor = System.Drawing.Color.FromArgb(((int)(((byte)(220)))), ((int)(((byte)(232)))), ((int)(((byte)(246)))));
     this.splClass.HotGripLightColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
     this.splClass.Location = new System.Drawing.Point(136, 0);
     this.splClass.Name = "splClass";
     this.splClass.Size = new System.Drawing.Size(3, 574);
     this.splClass.Style = DevComponents.DotNetBar.eSplitterStyle.Office2007;
     this.splClass.TabIndex = 2;
     this.splClass.TabStop = false;
     //
     // pnlWhomLPView
     //
     this.pnlWhomLPView.Controls.Add(this.tabClassLPView);
     this.pnlWhomLPView.Dock = System.Windows.Forms.DockStyle.Right;
     this.pnlWhomLPView.Location = new System.Drawing.Point(139, 0);
     this.pnlWhomLPView.Name = "pnlWhomLPView";
     this.pnlWhomLPView.Size = new System.Drawing.Size(600, 574);
     this.pnlWhomLPView.TabIndex = 0;
     //
     // tabClassLPView
     //
     this.tabClassLPView.AutoCloseTabs = true;
     this.tabClassLPView.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
     this.tabClassLPView.CanReorderTabs = true;
     this.tabClassLPView.CloseButtonOnTabsVisible = true;
     this.tabClassLPView.CloseButtonPosition = DevComponents.DotNetBar.eTabCloseButtonPosition.Right;
     this.tabClassLPView.Controls.Add(this.tabControlPanel2);
     this.tabClassLPView.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabClassLPView.Location = new System.Drawing.Point(0, 0);
     this.tabClassLPView.Name = "tabClassLPView";
     this.tabClassLPView.SelectedTabFont = new System.Drawing.Font("Microsoft JhengHei", 9F, System.Drawing.FontStyle.Bold);
     this.tabClassLPView.SelectedTabIndex = -1;
     this.tabClassLPView.Size = new System.Drawing.Size(600, 574);
     this.tabClassLPView.TabIndex = 2;
     this.tabClassLPView.TabLayoutType = DevComponents.DotNetBar.eTabLayoutType.FixedWithNavigationBox;
     this.tabClassLPView.Tabs.Add(this.tabItem3);
     this.tabClassLPView.Text = "tabControl1";
     //
     // tabControlPanel2
     //
     this.tabControlPanel2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabControlPanel2.Location = new System.Drawing.Point(0, 28);
     this.tabControlPanel2.Name = "tabControlPanel2";
     this.tabControlPanel2.Padding = new System.Windows.Forms.Padding(1);
     this.tabControlPanel2.Size = new System.Drawing.Size(600, 546);
     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 = 1;
     this.tabControlPanel2.TabItem = this.tabItem3;
     //
     // tabItem3
     //
     this.tabItem3.AttachedControl = this.tabControlPanel2;
     this.tabItem3.CloseButtonVisible = false;
     this.tabItem3.Name = "tabItem3";
     this.tabItem3.Text = "功課表";
     //
     // pnlWhomList
     //
     this.pnlWhomList.Controls.Add(this.panel10);
     this.pnlWhomList.Controls.Add(this.panel3);
     this.pnlWhomList.Dock = System.Windows.Forms.DockStyle.Fill;
     this.pnlWhomList.Location = new System.Drawing.Point(0, 0);
     this.pnlWhomList.Name = "pnlWhomList";
     this.pnlWhomList.Size = new System.Drawing.Size(139, 574);
     this.pnlWhomList.TabIndex = 1;
     //
     // panel10
     //
     this.panel10.Controls.Add(this.grdClassEvent);
     this.panel10.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panel10.Location = new System.Drawing.Point(0, 35);
     this.panel10.Name = "panel10";
     this.panel10.Size = new System.Drawing.Size(139, 539);
     this.panel10.TabIndex = 10;
     //
     // grdClassEvent
     //
     this.grdClassEvent.AllowUserToAddRows = false;
     this.grdClassEvent.AllowUserToDeleteRows = false;
     this.grdClassEvent.AllowUserToOrderColumns = true;
     this.grdClassEvent.AllowUserToResizeRows = false;
     this.grdClassEvent.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.AllCells;
     this.grdClassEvent.BackgroundColor = System.Drawing.Color.White;
     this.grdClassEvent.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.grdClassEvent.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.dataGridViewTextBoxColumn69,
     this.dataGridViewTextBoxColumn70,
     this.dataGridViewTextBoxColumn71,
     this.dataGridViewTextBoxColumn72,
     this.dataGridViewTextBoxColumn78,
     this.dataGridViewTextBoxColumn80,
     this.dataGridViewTextBoxColumn73,
     this.dataGridViewTextBoxColumn74,
     this.dataGridViewTextBoxColumn75,
     this.dataGridViewTextBoxColumn76,
     this.dataGridViewTextBoxColumn77,
     this.dataGridViewTextBoxColumn79,
     this.dataGridViewTextBoxColumn81,
     this.dataGridViewTextBoxColumn82,
     this.dataGridViewTextBoxColumn83,
     this.dataGridViewTextBoxColumn84,
     this.dataGridViewTextBoxColumn85,
     this.dataGridViewTextBoxColumn86,
     this.dataGridViewTextBoxColumn87,
     this.dataGridViewTextBoxColumn88,
     this.dataGridViewTextBoxColumn89,
     this.dataGridViewTextBoxColumn90});
     dataGridViewCellStyle12.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle12.BackColor = System.Drawing.SystemColors.Window;
     dataGridViewCellStyle12.Font = new System.Drawing.Font("Microsoft JhengHei", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(136)));
     dataGridViewCellStyle12.ForeColor = System.Drawing.SystemColors.ControlText;
     dataGridViewCellStyle12.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle12.SelectionForeColor = System.Drawing.SystemColors.ControlText;
     dataGridViewCellStyle12.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
     this.grdClassEvent.DefaultCellStyle = dataGridViewCellStyle12;
     this.grdClassEvent.Dock = System.Windows.Forms.DockStyle.Fill;
     this.grdClassEvent.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(170)))), ((int)(((byte)(170)))), ((int)(((byte)(170)))));
     this.grdClassEvent.Location = new System.Drawing.Point(0, 0);
     this.grdClassEvent.Name = "grdClassEvent";
     this.grdClassEvent.ReadOnly = true;
     this.grdClassEvent.RowHeadersVisible = false;
     this.grdClassEvent.RowTemplate.Height = 24;
     this.grdClassEvent.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
     this.grdClassEvent.Size = new System.Drawing.Size(139, 539);
     this.grdClassEvent.TabIndex = 10;
     this.grdClassEvent.VirtualMode = true;
     //
     // dataGridViewTextBoxColumn69
     //
     this.dataGridViewTextBoxColumn69.DataPropertyName = "DisplayManualLock";
     dataGridViewCellStyle7.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     this.dataGridViewTextBoxColumn69.DefaultCellStyle = dataGridViewCellStyle7;
     this.dataGridViewTextBoxColumn69.HeaderText = "鎖定";
     this.dataGridViewTextBoxColumn69.MinimumWidth = 40;
     this.dataGridViewTextBoxColumn69.Name = "dataGridViewTextBoxColumn69";
     this.dataGridViewTextBoxColumn69.ReadOnly = true;
     this.dataGridViewTextBoxColumn69.Width = 57;
     //
     // dataGridViewTextBoxColumn70
     //
     this.dataGridViewTextBoxColumn70.DataPropertyName = "DisplaySolutionCount";
     dataGridViewCellStyle8.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     this.dataGridViewTextBoxColumn70.DefaultCellStyle = dataGridViewCellStyle8;
     this.dataGridViewTextBoxColumn70.HeaderText = "方案";
     this.dataGridViewTextBoxColumn70.MinimumWidth = 40;
     this.dataGridViewTextBoxColumn70.Name = "dataGridViewTextBoxColumn70";
     this.dataGridViewTextBoxColumn70.ReadOnly = true;
     this.dataGridViewTextBoxColumn70.Width = 57;
     //
     // dataGridViewTextBoxColumn71
     //
     this.dataGridViewTextBoxColumn71.DataPropertyName = "WeekDay";
     dataGridViewCellStyle9.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     this.dataGridViewTextBoxColumn71.DefaultCellStyle = dataGridViewCellStyle9;
     this.dataGridViewTextBoxColumn71.HeaderText = "星期";
     this.dataGridViewTextBoxColumn71.MinimumWidth = 40;
     this.dataGridViewTextBoxColumn71.Name = "dataGridViewTextBoxColumn71";
     this.dataGridViewTextBoxColumn71.ReadOnly = true;
     this.dataGridViewTextBoxColumn71.Width = 57;
     //
     // dataGridViewTextBoxColumn72
     //
     this.dataGridViewTextBoxColumn72.DataPropertyName = "PeriodNo";
     dataGridViewCellStyle10.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     this.dataGridViewTextBoxColumn72.DefaultCellStyle = dataGridViewCellStyle10;
     this.dataGridViewTextBoxColumn72.HeaderText = "節次";
     this.dataGridViewTextBoxColumn72.Name = "dataGridViewTextBoxColumn72";
     this.dataGridViewTextBoxColumn72.ReadOnly = true;
     this.dataGridViewTextBoxColumn72.Width = 57;
     //
     // dataGridViewTextBoxColumn78
     //
     this.dataGridViewTextBoxColumn78.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
     this.dataGridViewTextBoxColumn78.DataPropertyName = "CourseName";
     this.dataGridViewTextBoxColumn78.HeaderText = "課程名稱";
     this.dataGridViewTextBoxColumn78.Name = "dataGridViewTextBoxColumn78";
     this.dataGridViewTextBoxColumn78.ReadOnly = true;
     this.dataGridViewTextBoxColumn78.Width = 81;
     //
     // dataGridViewTextBoxColumn80
     //
     this.dataGridViewTextBoxColumn80.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.dataGridViewTextBoxColumn80.DataPropertyName = "Length";
     dataGridViewCellStyle11.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     this.dataGridViewTextBoxColumn80.DefaultCellStyle = dataGridViewCellStyle11;
     this.dataGridViewTextBoxColumn80.HeaderText = "節數";
     this.dataGridViewTextBoxColumn80.Name = "dataGridViewTextBoxColumn80";
     this.dataGridViewTextBoxColumn80.ReadOnly = true;
     this.dataGridViewTextBoxColumn80.Width = 57;
     //
     // dataGridViewTextBoxColumn73
     //
     this.dataGridViewTextBoxColumn73.DataPropertyName = "DisplayTeacherName";
     this.dataGridViewTextBoxColumn73.HeaderText = "教師";
     this.dataGridViewTextBoxColumn73.Name = "dataGridViewTextBoxColumn73";
     this.dataGridViewTextBoxColumn73.ReadOnly = true;
     this.dataGridViewTextBoxColumn73.Width = 57;
     //
     // dataGridViewTextBoxColumn74
     //
     this.dataGridViewTextBoxColumn74.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
     this.dataGridViewTextBoxColumn74.DataPropertyName = "DisplayClassName";
     this.dataGridViewTextBoxColumn74.HeaderText = "班級";
     this.dataGridViewTextBoxColumn74.Name = "dataGridViewTextBoxColumn74";
     this.dataGridViewTextBoxColumn74.ReadOnly = true;
     this.dataGridViewTextBoxColumn74.Width = 57;
     //
     // dataGridViewTextBoxColumn75
     //
     this.dataGridViewTextBoxColumn75.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
     this.dataGridViewTextBoxColumn75.DataPropertyName = "DisplayClassroomName";
     this.dataGridViewTextBoxColumn75.HeaderText = "場地";
     this.dataGridViewTextBoxColumn75.Name = "dataGridViewTextBoxColumn75";
     this.dataGridViewTextBoxColumn75.ReadOnly = true;
     this.dataGridViewTextBoxColumn75.Width = 57;
     //
     // dataGridViewTextBoxColumn76
     //
     this.dataGridViewTextBoxColumn76.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
     this.dataGridViewTextBoxColumn76.DataPropertyName = "DisplaySubjectName";
     this.dataGridViewTextBoxColumn76.HeaderText = "科目";
     this.dataGridViewTextBoxColumn76.Name = "dataGridViewTextBoxColumn76";
     this.dataGridViewTextBoxColumn76.ReadOnly = true;
     this.dataGridViewTextBoxColumn76.Width = 57;
     //
     // dataGridViewTextBoxColumn77
     //
     this.dataGridViewTextBoxColumn77.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
     this.dataGridViewTextBoxColumn77.DataPropertyName = "SubjectAlias";
     this.dataGridViewTextBoxColumn77.HeaderText = "科目簡稱";
     this.dataGridViewTextBoxColumn77.Name = "dataGridViewTextBoxColumn77";
     this.dataGridViewTextBoxColumn77.ReadOnly = true;
     this.dataGridViewTextBoxColumn77.Width = 81;
     //
     // dataGridViewTextBoxColumn79
     //
     this.dataGridViewTextBoxColumn79.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
     this.dataGridViewTextBoxColumn79.DataPropertyName = "CourseGroup";
     this.dataGridViewTextBoxColumn79.HeaderText = "課程群組";
     this.dataGridViewTextBoxColumn79.Name = "dataGridViewTextBoxColumn79";
     this.dataGridViewTextBoxColumn79.ReadOnly = true;
     this.dataGridViewTextBoxColumn79.Width = 81;
     //
     // dataGridViewTextBoxColumn81
     //
     this.dataGridViewTextBoxColumn81.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.dataGridViewTextBoxColumn81.DataPropertyName = "WeekDayCondition";
     this.dataGridViewTextBoxColumn81.HeaderText = "星期條件";
     this.dataGridViewTextBoxColumn81.Name = "dataGridViewTextBoxColumn81";
     this.dataGridViewTextBoxColumn81.ReadOnly = true;
     this.dataGridViewTextBoxColumn81.Width = 81;
     //
     // dataGridViewTextBoxColumn82
     //
     this.dataGridViewTextBoxColumn82.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.dataGridViewTextBoxColumn82.DataPropertyName = "PeriodCondition";
     this.dataGridViewTextBoxColumn82.HeaderText = "節次條件";
     this.dataGridViewTextBoxColumn82.Name = "dataGridViewTextBoxColumn82";
     this.dataGridViewTextBoxColumn82.ReadOnly = true;
     this.dataGridViewTextBoxColumn82.Width = 81;
     //
     // dataGridViewTextBoxColumn83
     //
     this.dataGridViewTextBoxColumn83.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.dataGridViewTextBoxColumn83.DataPropertyName = "DisplayAllowLongBreak";
     this.dataGridViewTextBoxColumn83.HeaderText = "跨中午";
     this.dataGridViewTextBoxColumn83.Name = "dataGridViewTextBoxColumn83";
     this.dataGridViewTextBoxColumn83.ReadOnly = true;
     this.dataGridViewTextBoxColumn83.Width = 69;
     //
     // dataGridViewTextBoxColumn84
     //
     this.dataGridViewTextBoxColumn84.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.dataGridViewTextBoxColumn84.DataPropertyName = "DisplayAllowDuplicate";
     this.dataGridViewTextBoxColumn84.HeaderText = "可重複";
     this.dataGridViewTextBoxColumn84.Name = "dataGridViewTextBoxColumn84";
     this.dataGridViewTextBoxColumn84.ReadOnly = true;
     this.dataGridViewTextBoxColumn84.Width = 69;
     //
     // dataGridViewTextBoxColumn85
     //
     this.dataGridViewTextBoxColumn85.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.dataGridViewTextBoxColumn85.DataPropertyName = "DisplayLimitNextDay";
     this.dataGridViewTextBoxColumn85.HeaderText = "不連天";
     this.dataGridViewTextBoxColumn85.Name = "dataGridViewTextBoxColumn85";
     this.dataGridViewTextBoxColumn85.ReadOnly = true;
     this.dataGridViewTextBoxColumn85.Width = 69;
     //
     // dataGridViewTextBoxColumn86
     //
     this.dataGridViewTextBoxColumn86.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.dataGridViewTextBoxColumn86.DataPropertyName = "DisplayWeekFlag";
     this.dataGridViewTextBoxColumn86.HeaderText = "單雙週";
     this.dataGridViewTextBoxColumn86.Name = "dataGridViewTextBoxColumn86";
     this.dataGridViewTextBoxColumn86.ReadOnly = true;
     this.dataGridViewTextBoxColumn86.Width = 69;
     //
     // dataGridViewTextBoxColumn87
     //
     this.dataGridViewTextBoxColumn87.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.dataGridViewTextBoxColumn87.DataPropertyName = "Priority";
     this.dataGridViewTextBoxColumn87.HeaderText = "優先";
     this.dataGridViewTextBoxColumn87.Name = "dataGridViewTextBoxColumn87";
     this.dataGridViewTextBoxColumn87.ReadOnly = true;
     this.dataGridViewTextBoxColumn87.Width = 57;
     //
     // dataGridViewTextBoxColumn88
     //
     this.dataGridViewTextBoxColumn88.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
     this.dataGridViewTextBoxColumn88.DataPropertyName = "DispalyTimeTableName";
     this.dataGridViewTextBoxColumn88.HeaderText = "時間表";
     this.dataGridViewTextBoxColumn88.Name = "dataGridViewTextBoxColumn88";
     this.dataGridViewTextBoxColumn88.ReadOnly = true;
     this.dataGridViewTextBoxColumn88.Width = 69;
     //
     // dataGridViewTextBoxColumn89
     //
     this.dataGridViewTextBoxColumn89.DataPropertyName = "ColorIndex";
     this.dataGridViewTextBoxColumn89.HeaderText = "顏色";
     this.dataGridViewTextBoxColumn89.Name = "dataGridViewTextBoxColumn89";
     this.dataGridViewTextBoxColumn89.ReadOnly = true;
     this.dataGridViewTextBoxColumn89.Visible = false;
     this.dataGridViewTextBoxColumn89.Width = 54;
     //
     // dataGridViewTextBoxColumn90
     //
     this.dataGridViewTextBoxColumn90.DataPropertyName = "EventID";
     this.dataGridViewTextBoxColumn90.HeaderText = "分課編號";
     this.dataGridViewTextBoxColumn90.Name = "dataGridViewTextBoxColumn90";
     this.dataGridViewTextBoxColumn90.ReadOnly = true;
     this.dataGridViewTextBoxColumn90.Width = 81;
     //
     // panel3
     //
     this.panel3.Controls.Add(this.labelX6);
     this.panel3.Controls.Add(this.lblClass);
     this.panel3.Controls.Add(this.labelX3);
     this.panel3.Controls.Add(this.labelX1);
     this.panel3.Controls.Add(this.btnClassEventExpand);
     this.panel3.Dock = System.Windows.Forms.DockStyle.Top;
     this.panel3.Location = new System.Drawing.Point(0, 0);
     this.panel3.Name = "panel3";
     this.panel3.Size = new System.Drawing.Size(139, 35);
     this.panel3.TabIndex = 9;
     //
     // labelX6
     //
     this.labelX6.Anchor = System.Windows.Forms.AnchorStyles.Right;
     this.labelX6.AutoSize = true;
     //
     //
     //
     this.labelX6.BackgroundStyle.Class = "";
     this.labelX6.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX6.Font = new System.Drawing.Font("Microsoft JhengHei", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(136)));
     this.labelX6.Location = new System.Drawing.Point(-20, 4);
     this.labelX6.Name = "labelX6";
     this.labelX6.Size = new System.Drawing.Size(123, 26);
     this.labelX6.TabIndex = 4;
     this.labelX6.Text = "黃色為未排分課";
     //
     // lblClass
     //
     this.lblClass.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.lblClass.AutoSize = true;
     //
     //
     //
     this.lblClass.BackgroundStyle.Class = "";
     this.lblClass.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.lblClass.Font = new System.Drawing.Font("Microsoft JhengHei", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(136)));
     this.lblClass.Location = new System.Drawing.Point(7, 4);
     this.lblClass.Name = "lblClass";
     this.lblClass.Size = new System.Drawing.Size(0, 0);
     this.lblClass.TabIndex = 3;
     //
     // labelX3
     //
     this.labelX3.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.labelX3.AutoSize = true;
     //
     //
     //
     this.labelX3.BackgroundStyle.Class = "";
     this.labelX3.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX3.Font = new System.Drawing.Font("Microsoft JhengHei", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(136)));
     this.labelX3.Location = new System.Drawing.Point(7, 4);
     this.labelX3.Name = "labelX3";
     this.labelX3.Size = new System.Drawing.Size(0, 0);
     this.labelX3.TabIndex = 2;
     //
     // labelX1
     //
     this.labelX1.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.labelX1.AutoSize = true;
     //
     //
     //
     this.labelX1.BackgroundStyle.Class = "";
     this.labelX1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX1.Font = new System.Drawing.Font("Microsoft JhengHei", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(136)));
     this.labelX1.Location = new System.Drawing.Point(7, 4);
     this.labelX1.Name = "labelX1";
     this.labelX1.Size = new System.Drawing.Size(0, 0);
     this.labelX1.TabIndex = 1;
     //
     // btnClassEventExpand
     //
     this.btnClassEventExpand.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btnClassEventExpand.Anchor = System.Windows.Forms.AnchorStyles.Right;
     this.btnClassEventExpand.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.btnClassEventExpand.Location = new System.Drawing.Point(105, 5);
     this.btnClassEventExpand.Name = "btnClassEventExpand";
     this.btnClassEventExpand.Size = new System.Drawing.Size(28, 23);
     this.btnClassEventExpand.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.btnClassEventExpand.TabIndex = 0;
     this.btnClassEventExpand.Text = ">>";
     //
     // tabClass
     //
     this.tabClass.AttachedControl = this.superTabControlPanel2;
     this.tabClass.GlobalItem = false;
     this.tabClass.Name = "tabClass";
     this.tabClass.Text = "班級";
     //
     // superTabControlPanel3
     //
     this.superTabControlPanel3.Controls.Add(this.pnlWhereList);
     this.superTabControlPanel3.Controls.Add(this.splClassroom);
     this.superTabControlPanel3.Controls.Add(this.pnlWhereLPView);
     this.superTabControlPanel3.Dock = System.Windows.Forms.DockStyle.Fill;
     this.superTabControlPanel3.Location = new System.Drawing.Point(0, 0);
     this.superTabControlPanel3.Name = "superTabControlPanel3";
     this.superTabControlPanel3.Size = new System.Drawing.Size(739, 574);
     this.superTabControlPanel3.TabIndex = 0;
     this.superTabControlPanel3.TabItem = this.tabClassroom;
     //
     // pnlWhereList
     //
     this.pnlWhereList.Controls.Add(this.panel9);
     this.pnlWhereList.Controls.Add(this.panel6);
     this.pnlWhereList.Dock = System.Windows.Forms.DockStyle.Fill;
     this.pnlWhereList.Location = new System.Drawing.Point(0, 0);
     this.pnlWhereList.Name = "pnlWhereList";
     this.pnlWhereList.Size = new System.Drawing.Size(136, 574);
     this.pnlWhereList.TabIndex = 2;
     //
     // panel9
     //
     this.panel9.Controls.Add(this.grdClassroomEvent);
     this.panel9.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panel9.Location = new System.Drawing.Point(0, 35);
     this.panel9.Name = "panel9";
     this.panel9.Size = new System.Drawing.Size(136, 539);
     this.panel9.TabIndex = 11;
     //
     // grdClassroomEvent
     //
     this.grdClassroomEvent.AllowUserToAddRows = false;
     this.grdClassroomEvent.AllowUserToDeleteRows = false;
     this.grdClassroomEvent.AllowUserToOrderColumns = true;
     this.grdClassroomEvent.AllowUserToResizeRows = false;
     this.grdClassroomEvent.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.AllCells;
     this.grdClassroomEvent.BackgroundColor = System.Drawing.Color.White;
     this.grdClassroomEvent.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.grdClassroomEvent.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.dataGridViewTextBoxColumn91,
     this.dataGridViewTextBoxColumn92,
     this.dataGridViewTextBoxColumn93,
     this.dataGridViewTextBoxColumn94,
     this.dataGridViewTextBoxColumn100,
     this.dataGridViewTextBoxColumn102,
     this.dataGridViewTextBoxColumn95,
     this.dataGridViewTextBoxColumn96,
     this.dataGridViewTextBoxColumn97,
     this.dataGridViewTextBoxColumn98,
     this.dataGridViewTextBoxColumn99,
     this.dataGridViewTextBoxColumn101,
     this.dataGridViewTextBoxColumn103,
     this.dataGridViewTextBoxColumn104,
     this.dataGridViewTextBoxColumn105,
     this.dataGridViewTextBoxColumn106,
     this.dataGridViewTextBoxColumn107,
     this.dataGridViewTextBoxColumn108,
     this.dataGridViewTextBoxColumn109,
     this.dataGridViewTextBoxColumn110,
     this.dataGridViewTextBoxColumn111,
     this.dataGridViewTextBoxColumn112});
     dataGridViewCellStyle18.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle18.BackColor = System.Drawing.SystemColors.Window;
     dataGridViewCellStyle18.Font = new System.Drawing.Font("Microsoft JhengHei", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(136)));
     dataGridViewCellStyle18.ForeColor = System.Drawing.SystemColors.ControlText;
     dataGridViewCellStyle18.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle18.SelectionForeColor = System.Drawing.SystemColors.ControlText;
     dataGridViewCellStyle18.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
     this.grdClassroomEvent.DefaultCellStyle = dataGridViewCellStyle18;
     this.grdClassroomEvent.Dock = System.Windows.Forms.DockStyle.Fill;
     this.grdClassroomEvent.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(170)))), ((int)(((byte)(170)))), ((int)(((byte)(170)))));
     this.grdClassroomEvent.Location = new System.Drawing.Point(0, 0);
     this.grdClassroomEvent.Name = "grdClassroomEvent";
     this.grdClassroomEvent.ReadOnly = true;
     this.grdClassroomEvent.RowHeadersVisible = false;
     this.grdClassroomEvent.RowTemplate.Height = 24;
     this.grdClassroomEvent.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
     this.grdClassroomEvent.Size = new System.Drawing.Size(136, 539);
     this.grdClassroomEvent.TabIndex = 11;
     this.grdClassroomEvent.VirtualMode = true;
     //
     // dataGridViewTextBoxColumn91
     //
     this.dataGridViewTextBoxColumn91.DataPropertyName = "DisplayManualLock";
     dataGridViewCellStyle13.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     this.dataGridViewTextBoxColumn91.DefaultCellStyle = dataGridViewCellStyle13;
     this.dataGridViewTextBoxColumn91.HeaderText = "鎖定";
     this.dataGridViewTextBoxColumn91.MinimumWidth = 40;
     this.dataGridViewTextBoxColumn91.Name = "dataGridViewTextBoxColumn91";
     this.dataGridViewTextBoxColumn91.ReadOnly = true;
     this.dataGridViewTextBoxColumn91.Width = 57;
     //
     // dataGridViewTextBoxColumn92
     //
     this.dataGridViewTextBoxColumn92.DataPropertyName = "DisplaySolutionCount";
     dataGridViewCellStyle14.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     this.dataGridViewTextBoxColumn92.DefaultCellStyle = dataGridViewCellStyle14;
     this.dataGridViewTextBoxColumn92.HeaderText = "方案";
     this.dataGridViewTextBoxColumn92.MinimumWidth = 40;
     this.dataGridViewTextBoxColumn92.Name = "dataGridViewTextBoxColumn92";
     this.dataGridViewTextBoxColumn92.ReadOnly = true;
     this.dataGridViewTextBoxColumn92.Width = 57;
     //
     // dataGridViewTextBoxColumn93
     //
     this.dataGridViewTextBoxColumn93.DataPropertyName = "WeekDay";
     dataGridViewCellStyle15.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     this.dataGridViewTextBoxColumn93.DefaultCellStyle = dataGridViewCellStyle15;
     this.dataGridViewTextBoxColumn93.HeaderText = "星期";
     this.dataGridViewTextBoxColumn93.MinimumWidth = 40;
     this.dataGridViewTextBoxColumn93.Name = "dataGridViewTextBoxColumn93";
     this.dataGridViewTextBoxColumn93.ReadOnly = true;
     this.dataGridViewTextBoxColumn93.Width = 57;
     //
     // dataGridViewTextBoxColumn94
     //
     this.dataGridViewTextBoxColumn94.DataPropertyName = "PeriodNo";
     dataGridViewCellStyle16.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     this.dataGridViewTextBoxColumn94.DefaultCellStyle = dataGridViewCellStyle16;
     this.dataGridViewTextBoxColumn94.HeaderText = "節次";
     this.dataGridViewTextBoxColumn94.Name = "dataGridViewTextBoxColumn94";
     this.dataGridViewTextBoxColumn94.ReadOnly = true;
     this.dataGridViewTextBoxColumn94.Width = 57;
     //
     // dataGridViewTextBoxColumn100
     //
     this.dataGridViewTextBoxColumn100.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
     this.dataGridViewTextBoxColumn100.DataPropertyName = "CourseName";
     this.dataGridViewTextBoxColumn100.HeaderText = "課程名稱";
     this.dataGridViewTextBoxColumn100.Name = "dataGridViewTextBoxColumn100";
     this.dataGridViewTextBoxColumn100.ReadOnly = true;
     this.dataGridViewTextBoxColumn100.Width = 81;
     //
     // dataGridViewTextBoxColumn102
     //
     this.dataGridViewTextBoxColumn102.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.dataGridViewTextBoxColumn102.DataPropertyName = "Length";
     dataGridViewCellStyle17.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     this.dataGridViewTextBoxColumn102.DefaultCellStyle = dataGridViewCellStyle17;
     this.dataGridViewTextBoxColumn102.HeaderText = "節數";
     this.dataGridViewTextBoxColumn102.Name = "dataGridViewTextBoxColumn102";
     this.dataGridViewTextBoxColumn102.ReadOnly = true;
     this.dataGridViewTextBoxColumn102.Width = 57;
     //
     // dataGridViewTextBoxColumn95
     //
     this.dataGridViewTextBoxColumn95.DataPropertyName = "DisplayTeacherName";
     this.dataGridViewTextBoxColumn95.HeaderText = "教師";
     this.dataGridViewTextBoxColumn95.Name = "dataGridViewTextBoxColumn95";
     this.dataGridViewTextBoxColumn95.ReadOnly = true;
     this.dataGridViewTextBoxColumn95.Width = 57;
     //
     // dataGridViewTextBoxColumn96
     //
     this.dataGridViewTextBoxColumn96.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
     this.dataGridViewTextBoxColumn96.DataPropertyName = "DisplayClassName";
     this.dataGridViewTextBoxColumn96.HeaderText = "班級";
     this.dataGridViewTextBoxColumn96.Name = "dataGridViewTextBoxColumn96";
     this.dataGridViewTextBoxColumn96.ReadOnly = true;
     this.dataGridViewTextBoxColumn96.Width = 57;
     //
     // dataGridViewTextBoxColumn97
     //
     this.dataGridViewTextBoxColumn97.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
     this.dataGridViewTextBoxColumn97.DataPropertyName = "DisplayClassroomName";
     this.dataGridViewTextBoxColumn97.HeaderText = "場地";
     this.dataGridViewTextBoxColumn97.Name = "dataGridViewTextBoxColumn97";
     this.dataGridViewTextBoxColumn97.ReadOnly = true;
     this.dataGridViewTextBoxColumn97.Width = 57;
     //
     // dataGridViewTextBoxColumn98
     //
     this.dataGridViewTextBoxColumn98.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
     this.dataGridViewTextBoxColumn98.DataPropertyName = "DisplaySubjectName";
     this.dataGridViewTextBoxColumn98.HeaderText = "科目";
     this.dataGridViewTextBoxColumn98.Name = "dataGridViewTextBoxColumn98";
     this.dataGridViewTextBoxColumn98.ReadOnly = true;
     this.dataGridViewTextBoxColumn98.Width = 57;
     //
     // dataGridViewTextBoxColumn99
     //
     this.dataGridViewTextBoxColumn99.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
     this.dataGridViewTextBoxColumn99.DataPropertyName = "SubjectAlias";
     this.dataGridViewTextBoxColumn99.HeaderText = "科目簡稱";
     this.dataGridViewTextBoxColumn99.Name = "dataGridViewTextBoxColumn99";
     this.dataGridViewTextBoxColumn99.ReadOnly = true;
     this.dataGridViewTextBoxColumn99.Width = 81;
     //
     // dataGridViewTextBoxColumn101
     //
     this.dataGridViewTextBoxColumn101.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
     this.dataGridViewTextBoxColumn101.DataPropertyName = "CourseGroup";
     this.dataGridViewTextBoxColumn101.HeaderText = "課程群組";
     this.dataGridViewTextBoxColumn101.Name = "dataGridViewTextBoxColumn101";
     this.dataGridViewTextBoxColumn101.ReadOnly = true;
     this.dataGridViewTextBoxColumn101.Width = 81;
     //
     // dataGridViewTextBoxColumn103
     //
     this.dataGridViewTextBoxColumn103.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.dataGridViewTextBoxColumn103.DataPropertyName = "WeekDayCondition";
     this.dataGridViewTextBoxColumn103.HeaderText = "星期條件";
     this.dataGridViewTextBoxColumn103.Name = "dataGridViewTextBoxColumn103";
     this.dataGridViewTextBoxColumn103.ReadOnly = true;
     this.dataGridViewTextBoxColumn103.Width = 81;
     //
     // dataGridViewTextBoxColumn104
     //
     this.dataGridViewTextBoxColumn104.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.dataGridViewTextBoxColumn104.DataPropertyName = "PeriodCondition";
     this.dataGridViewTextBoxColumn104.HeaderText = "節次條件";
     this.dataGridViewTextBoxColumn104.Name = "dataGridViewTextBoxColumn104";
     this.dataGridViewTextBoxColumn104.ReadOnly = true;
     this.dataGridViewTextBoxColumn104.Width = 81;
     //
     // dataGridViewTextBoxColumn105
     //
     this.dataGridViewTextBoxColumn105.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.dataGridViewTextBoxColumn105.DataPropertyName = "DisplayAllowLongBreak";
     this.dataGridViewTextBoxColumn105.HeaderText = "跨中午";
     this.dataGridViewTextBoxColumn105.Name = "dataGridViewTextBoxColumn105";
     this.dataGridViewTextBoxColumn105.ReadOnly = true;
     this.dataGridViewTextBoxColumn105.Width = 69;
     //
     // dataGridViewTextBoxColumn106
     //
     this.dataGridViewTextBoxColumn106.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.dataGridViewTextBoxColumn106.DataPropertyName = "DisplayAllowDuplicate";
     this.dataGridViewTextBoxColumn106.HeaderText = "可重複";
     this.dataGridViewTextBoxColumn106.Name = "dataGridViewTextBoxColumn106";
     this.dataGridViewTextBoxColumn106.ReadOnly = true;
     this.dataGridViewTextBoxColumn106.Width = 69;
     //
     // dataGridViewTextBoxColumn107
     //
     this.dataGridViewTextBoxColumn107.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.dataGridViewTextBoxColumn107.DataPropertyName = "DisplayLimitNextDay";
     this.dataGridViewTextBoxColumn107.HeaderText = "不連天";
     this.dataGridViewTextBoxColumn107.Name = "dataGridViewTextBoxColumn107";
     this.dataGridViewTextBoxColumn107.ReadOnly = true;
     this.dataGridViewTextBoxColumn107.Width = 69;
     //
     // dataGridViewTextBoxColumn108
     //
     this.dataGridViewTextBoxColumn108.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.dataGridViewTextBoxColumn108.DataPropertyName = "DisplayWeekFlag";
     this.dataGridViewTextBoxColumn108.HeaderText = "單雙週";
     this.dataGridViewTextBoxColumn108.Name = "dataGridViewTextBoxColumn108";
     this.dataGridViewTextBoxColumn108.ReadOnly = true;
     this.dataGridViewTextBoxColumn108.Width = 69;
     //
     // dataGridViewTextBoxColumn109
     //
     this.dataGridViewTextBoxColumn109.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.dataGridViewTextBoxColumn109.DataPropertyName = "Priority";
     this.dataGridViewTextBoxColumn109.HeaderText = "優先";
     this.dataGridViewTextBoxColumn109.Name = "dataGridViewTextBoxColumn109";
     this.dataGridViewTextBoxColumn109.ReadOnly = true;
     this.dataGridViewTextBoxColumn109.Width = 57;
     //
     // dataGridViewTextBoxColumn110
     //
     this.dataGridViewTextBoxColumn110.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
     this.dataGridViewTextBoxColumn110.DataPropertyName = "DispalyTimeTableName";
     this.dataGridViewTextBoxColumn110.HeaderText = "時間表";
     this.dataGridViewTextBoxColumn110.Name = "dataGridViewTextBoxColumn110";
     this.dataGridViewTextBoxColumn110.ReadOnly = true;
     this.dataGridViewTextBoxColumn110.Width = 69;
     //
     // dataGridViewTextBoxColumn111
     //
     this.dataGridViewTextBoxColumn111.DataPropertyName = "ColorIndex";
     this.dataGridViewTextBoxColumn111.HeaderText = "顏色";
     this.dataGridViewTextBoxColumn111.Name = "dataGridViewTextBoxColumn111";
     this.dataGridViewTextBoxColumn111.ReadOnly = true;
     this.dataGridViewTextBoxColumn111.Visible = false;
     this.dataGridViewTextBoxColumn111.Width = 54;
     //
     // dataGridViewTextBoxColumn112
     //
     this.dataGridViewTextBoxColumn112.DataPropertyName = "EventID";
     this.dataGridViewTextBoxColumn112.HeaderText = "分課編號";
     this.dataGridViewTextBoxColumn112.Name = "dataGridViewTextBoxColumn112";
     this.dataGridViewTextBoxColumn112.ReadOnly = true;
     this.dataGridViewTextBoxColumn112.Width = 81;
     //
     // panel6
     //
     this.panel6.Controls.Add(this.labelX7);
     this.panel6.Controls.Add(this.lblClassroom);
     this.panel6.Controls.Add(this.labelX4);
     this.panel6.Controls.Add(this.labelX5);
     this.panel6.Controls.Add(this.btnClassroomEventExpand);
     this.panel6.Dock = System.Windows.Forms.DockStyle.Top;
     this.panel6.Location = new System.Drawing.Point(0, 0);
     this.panel6.Name = "panel6";
     this.panel6.Size = new System.Drawing.Size(136, 35);
     this.panel6.TabIndex = 10;
     //
     // labelX7
     //
     this.labelX7.Anchor = System.Windows.Forms.AnchorStyles.Right;
     this.labelX7.AutoSize = true;
     //
     //
     //
     this.labelX7.BackgroundStyle.Class = "";
     this.labelX7.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX7.Font = new System.Drawing.Font("Microsoft JhengHei", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(136)));
     this.labelX7.Location = new System.Drawing.Point(-23, 4);
     this.labelX7.Name = "labelX7";
     this.labelX7.Size = new System.Drawing.Size(123, 26);
     this.labelX7.TabIndex = 5;
     this.labelX7.Text = "黃色為未排分課";
     //
     // lblClassroom
     //
     this.lblClassroom.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.lblClassroom.AutoSize = true;
     //
     //
     //
     this.lblClassroom.BackgroundStyle.Class = "";
     this.lblClassroom.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.lblClassroom.Font = new System.Drawing.Font("Microsoft JhengHei", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(136)));
     this.lblClassroom.Location = new System.Drawing.Point(7, 4);
     this.lblClassroom.Name = "lblClassroom";
     this.lblClassroom.Size = new System.Drawing.Size(0, 0);
     this.lblClassroom.TabIndex = 3;
     //
     // labelX4
     //
     this.labelX4.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.labelX4.AutoSize = true;
     //
     //
     //
     this.labelX4.BackgroundStyle.Class = "";
     this.labelX4.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX4.Font = new System.Drawing.Font("Microsoft JhengHei", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(136)));
     this.labelX4.Location = new System.Drawing.Point(7, 4);
     this.labelX4.Name = "labelX4";
     this.labelX4.Size = new System.Drawing.Size(0, 0);
     this.labelX4.TabIndex = 2;
     //
     // labelX5
     //
     this.labelX5.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.labelX5.AutoSize = true;
     //
     //
     //
     this.labelX5.BackgroundStyle.Class = "";
     this.labelX5.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX5.Font = new System.Drawing.Font("Microsoft JhengHei", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(136)));
     this.labelX5.Location = new System.Drawing.Point(7, 4);
     this.labelX5.Name = "labelX5";
     this.labelX5.Size = new System.Drawing.Size(0, 0);
     this.labelX5.TabIndex = 1;
     //
     // btnClassroomEventExpand
     //
     this.btnClassroomEventExpand.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btnClassroomEventExpand.Anchor = System.Windows.Forms.AnchorStyles.Right;
     this.btnClassroomEventExpand.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.btnClassroomEventExpand.Location = new System.Drawing.Point(102, 5);
     this.btnClassroomEventExpand.Name = "btnClassroomEventExpand";
     this.btnClassroomEventExpand.Size = new System.Drawing.Size(28, 23);
     this.btnClassroomEventExpand.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.btnClassroomEventExpand.TabIndex = 0;
     this.btnClassroomEventExpand.Text = ">>";
     //
     // splClassroom
     //
     this.splClassroom.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(157)))), ((int)(((byte)(189)))));
     this.splClassroom.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.splClassroom.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.splClassroom.Dock = System.Windows.Forms.DockStyle.Right;
     this.splClassroom.ExpandableControl = this.pnlWhereLPView;
     this.splClassroom.ExpandFillColor = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(157)))), ((int)(((byte)(189)))));
     this.splClassroom.ExpandFillColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.splClassroom.ExpandLineColor = System.Drawing.Color.FromArgb(((int)(((byte)(31)))), ((int)(((byte)(57)))), ((int)(((byte)(120)))));
     this.splClassroom.ExpandLineColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemText;
     this.splClassroom.GripDarkColor = System.Drawing.Color.FromArgb(((int)(((byte)(31)))), ((int)(((byte)(57)))), ((int)(((byte)(120)))));
     this.splClassroom.GripDarkColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemText;
     this.splClassroom.GripLightColor = System.Drawing.Color.FromArgb(((int)(((byte)(220)))), ((int)(((byte)(232)))), ((int)(((byte)(246)))));
     this.splClassroom.GripLightColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
     this.splClassroom.HotBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(246)))), ((int)(((byte)(200)))), ((int)(((byte)(103)))));
     this.splClassroom.HotBackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(254)))), ((int)(((byte)(226)))), ((int)(((byte)(135)))));
     this.splClassroom.HotBackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemPressedBackground2;
     this.splClassroom.HotBackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemPressedBackground;
     this.splClassroom.HotExpandFillColor = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(157)))), ((int)(((byte)(189)))));
     this.splClassroom.HotExpandFillColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.splClassroom.HotExpandLineColor = System.Drawing.Color.FromArgb(((int)(((byte)(31)))), ((int)(((byte)(57)))), ((int)(((byte)(120)))));
     this.splClassroom.HotExpandLineColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemText;
     this.splClassroom.HotGripDarkColor = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(157)))), ((int)(((byte)(189)))));
     this.splClassroom.HotGripDarkColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.splClassroom.HotGripLightColor = System.Drawing.Color.FromArgb(((int)(((byte)(220)))), ((int)(((byte)(232)))), ((int)(((byte)(246)))));
     this.splClassroom.HotGripLightColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
     this.splClassroom.Location = new System.Drawing.Point(136, 0);
     this.splClassroom.Name = "splClassroom";
     this.splClassroom.Size = new System.Drawing.Size(3, 574);
     this.splClassroom.Style = DevComponents.DotNetBar.eSplitterStyle.Office2007;
     this.splClassroom.TabIndex = 1;
     this.splClassroom.TabStop = false;
     //
     // pnlWhereLPView
     //
     this.pnlWhereLPView.Controls.Add(this.tabClassroomLPView);
     this.pnlWhereLPView.Dock = System.Windows.Forms.DockStyle.Right;
     this.pnlWhereLPView.Location = new System.Drawing.Point(139, 0);
     this.pnlWhereLPView.Name = "pnlWhereLPView";
     this.pnlWhereLPView.Size = new System.Drawing.Size(600, 574);
     this.pnlWhereLPView.TabIndex = 0;
     //
     // tabClassroomLPView
     //
     this.tabClassroomLPView.AutoCloseTabs = true;
     this.tabClassroomLPView.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
     this.tabClassroomLPView.CanReorderTabs = true;
     this.tabClassroomLPView.CloseButtonOnTabsVisible = true;
     this.tabClassroomLPView.CloseButtonPosition = DevComponents.DotNetBar.eTabCloseButtonPosition.Right;
     this.tabClassroomLPView.Controls.Add(this.tabControlPanel3);
     this.tabClassroomLPView.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabClassroomLPView.Location = new System.Drawing.Point(0, 0);
     this.tabClassroomLPView.Name = "tabClassroomLPView";
     this.tabClassroomLPView.SelectedTabFont = new System.Drawing.Font("Microsoft JhengHei", 9F, System.Drawing.FontStyle.Bold);
     this.tabClassroomLPView.SelectedTabIndex = -1;
     this.tabClassroomLPView.Size = new System.Drawing.Size(600, 574);
     this.tabClassroomLPView.TabIndex = 3;
     this.tabClassroomLPView.TabLayoutType = DevComponents.DotNetBar.eTabLayoutType.FixedWithNavigationBox;
     this.tabClassroomLPView.Tabs.Add(this.tabItem4);
     this.tabClassroomLPView.Text = "tabControl1";
     //
     // tabControlPanel3
     //
     this.tabControlPanel3.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabControlPanel3.Location = new System.Drawing.Point(0, 28);
     this.tabControlPanel3.Name = "tabControlPanel3";
     this.tabControlPanel3.Padding = new System.Windows.Forms.Padding(1);
     this.tabControlPanel3.Size = new System.Drawing.Size(600, 546);
     this.tabControlPanel3.Style.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(142)))), ((int)(((byte)(179)))), ((int)(((byte)(231)))));
     this.tabControlPanel3.Style.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(223)))), ((int)(((byte)(237)))), ((int)(((byte)(254)))));
     this.tabControlPanel3.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.tabControlPanel3.Style.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(59)))), ((int)(((byte)(97)))), ((int)(((byte)(156)))));
     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 = 1;
     this.tabControlPanel3.TabItem = this.tabItem4;
     //
     // tabItem4
     //
     this.tabItem4.AttachedControl = this.tabControlPanel3;
     this.tabItem4.CloseButtonVisible = false;
     this.tabItem4.Name = "tabItem4";
     this.tabItem4.Text = "功課表";
     //
     // tabClassroom
     //
     this.tabClassroom.AttachedControl = this.superTabControlPanel3;
     this.tabClassroom.GlobalItem = false;
     this.tabClassroom.Name = "tabClassroom";
     this.tabClassroom.Text = "場地";
     //
     // expandableSplitter1
     //
     this.expandableSplitter1.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(157)))), ((int)(((byte)(189)))));
     this.expandableSplitter1.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.expandableSplitter1.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.expandableSplitter1.ExpandFillColor = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(157)))), ((int)(((byte)(189)))));
     this.expandableSplitter1.ExpandFillColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.expandableSplitter1.ExpandLineColor = System.Drawing.Color.FromArgb(((int)(((byte)(31)))), ((int)(((byte)(57)))), ((int)(((byte)(120)))));
     this.expandableSplitter1.ExpandLineColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemText;
     this.expandableSplitter1.GripDarkColor = System.Drawing.Color.FromArgb(((int)(((byte)(31)))), ((int)(((byte)(57)))), ((int)(((byte)(120)))));
     this.expandableSplitter1.GripDarkColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemText;
     this.expandableSplitter1.GripLightColor = System.Drawing.Color.FromArgb(((int)(((byte)(220)))), ((int)(((byte)(232)))), ((int)(((byte)(246)))));
     this.expandableSplitter1.GripLightColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
     this.expandableSplitter1.HotBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(246)))), ((int)(((byte)(200)))), ((int)(((byte)(103)))));
     this.expandableSplitter1.HotBackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(254)))), ((int)(((byte)(226)))), ((int)(((byte)(135)))));
     this.expandableSplitter1.HotBackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemPressedBackground2;
     this.expandableSplitter1.HotBackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemPressedBackground;
     this.expandableSplitter1.HotExpandFillColor = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(157)))), ((int)(((byte)(189)))));
     this.expandableSplitter1.HotExpandFillColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.expandableSplitter1.HotExpandLineColor = System.Drawing.Color.FromArgb(((int)(((byte)(31)))), ((int)(((byte)(57)))), ((int)(((byte)(120)))));
     this.expandableSplitter1.HotExpandLineColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemText;
     this.expandableSplitter1.HotGripDarkColor = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(157)))), ((int)(((byte)(189)))));
     this.expandableSplitter1.HotGripDarkColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.expandableSplitter1.HotGripLightColor = System.Drawing.Color.FromArgb(((int)(((byte)(220)))), ((int)(((byte)(232)))), ((int)(((byte)(246)))));
     this.expandableSplitter1.HotGripLightColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
     this.expandableSplitter1.Location = new System.Drawing.Point(206, 0);
     this.expandableSplitter1.Name = "expandableSplitter1";
     this.expandableSplitter1.Size = new System.Drawing.Size(3, 574);
     this.expandableSplitter1.Style = DevComponents.DotNetBar.eSplitterStyle.Office2007;
     this.expandableSplitter1.TabIndex = 10;
     this.expandableSplitter1.TabStop = false;
     //
     // LeftNavigationPanel
     //
     this.LeftNavigationPanel.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.LeftNavigationPanel.CanCollapse = true;
     this.LeftNavigationPanel.Controls.Add(this.pnlClassroom);
     this.LeftNavigationPanel.Controls.Add(this.pnlClass);
     this.LeftNavigationPanel.Controls.Add(this.pnlTeacher);
     this.LeftNavigationPanel.Dock = System.Windows.Forms.DockStyle.Left;
     this.LeftNavigationPanel.ItemPaddingBottom = 2;
     this.LeftNavigationPanel.ItemPaddingTop = 2;
     this.LeftNavigationPanel.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.btnTeacher,
     this.btnClass,
     this.btnClassroom});
     this.LeftNavigationPanel.Location = new System.Drawing.Point(0, 0);
     this.LeftNavigationPanel.Name = "LeftNavigationPanel";
     this.LeftNavigationPanel.Padding = new System.Windows.Forms.Padding(1);
     this.LeftNavigationPanel.Size = new System.Drawing.Size(206, 574);
     this.LeftNavigationPanel.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.LeftNavigationPanel.TabIndex = 9;
     //
     //
     //
     this.LeftNavigationPanel.TitlePanel.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.LeftNavigationPanel.TitlePanel.Dock = System.Windows.Forms.DockStyle.Top;
     this.LeftNavigationPanel.TitlePanel.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.LeftNavigationPanel.TitlePanel.Location = new System.Drawing.Point(1, 1);
     this.LeftNavigationPanel.TitlePanel.Name = "panelTitle";
     this.LeftNavigationPanel.TitlePanel.Size = new System.Drawing.Size(202, 24);
     this.LeftNavigationPanel.TitlePanel.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.LeftNavigationPanel.TitlePanel.Style.BackColor2.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.LeftNavigationPanel.TitlePanel.Style.Border = DevComponents.DotNetBar.eBorderType.RaisedInner;
     this.LeftNavigationPanel.TitlePanel.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.LeftNavigationPanel.TitlePanel.Style.BorderSide = DevComponents.DotNetBar.eBorderSide.Bottom;
     this.LeftNavigationPanel.TitlePanel.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.LeftNavigationPanel.TitlePanel.Style.GradientAngle = 90;
     this.LeftNavigationPanel.TitlePanel.Style.MarginLeft = 4;
     this.LeftNavigationPanel.TitlePanel.TabIndex = 0;
     this.LeftNavigationPanel.TitlePanel.Text = "場地";
     //
     // pnlClassroom
     //
     this.pnlClassroom.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.pnlClassroom.Dock = System.Windows.Forms.DockStyle.Fill;
     this.pnlClassroom.Location = new System.Drawing.Point(1, 25);
     this.pnlClassroom.Name = "pnlClassroom";
     this.pnlClassroom.ParentItem = this.btnClassroom;
     this.pnlClassroom.Size = new System.Drawing.Size(202, 514);
     this.pnlClassroom.Style.Alignment = System.Drawing.StringAlignment.Center;
     this.pnlClassroom.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
     this.pnlClassroom.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.pnlClassroom.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemText;
     this.pnlClassroom.Style.GradientAngle = 90;
     this.pnlClassroom.TabIndex = 4;
     //
     // btnClassroom
     //
     this.btnClassroom.Checked = true;
     this.btnClassroom.ImageFixedSize = new System.Drawing.Size(16, 16);
     this.btnClassroom.Name = "btnClassroom";
     this.btnClassroom.OptionGroup = "navBar";
     this.btnClassroom.Text = "場地";
     this.btnClassroom.Visible = false;
     //
     // pnlClass
     //
     this.pnlClass.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.pnlClass.Dock = System.Windows.Forms.DockStyle.Fill;
     this.pnlClass.Location = new System.Drawing.Point(1, 1);
     this.pnlClass.Name = "pnlClass";
     this.pnlClass.ParentItem = this.btnClass;
     this.pnlClass.Size = new System.Drawing.Size(202, 538);
     this.pnlClass.Style.Alignment = System.Drawing.StringAlignment.Center;
     this.pnlClass.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
     this.pnlClass.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.pnlClass.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemText;
     this.pnlClass.Style.GradientAngle = 90;
     this.pnlClass.TabIndex = 3;
     //
     // btnClass
     //
     this.btnClass.ImageFixedSize = new System.Drawing.Size(16, 16);
     this.btnClass.Name = "btnClass";
     this.btnClass.OptionGroup = "navBar";
     this.btnClass.Text = "班級";
     this.btnClass.Visible = false;
     //
     // pnlTeacher
     //
     this.pnlTeacher.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.pnlTeacher.Dock = System.Windows.Forms.DockStyle.Fill;
     this.pnlTeacher.Location = new System.Drawing.Point(1, 1);
     this.pnlTeacher.Name = "pnlTeacher";
     this.pnlTeacher.ParentItem = this.btnTeacher;
     this.pnlTeacher.Size = new System.Drawing.Size(202, 538);
     this.pnlTeacher.Style.Alignment = System.Drawing.StringAlignment.Center;
     this.pnlTeacher.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
     this.pnlTeacher.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.pnlTeacher.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemText;
     this.pnlTeacher.Style.GradientAngle = 90;
     this.pnlTeacher.TabIndex = 2;
     //
     // btnTeacher
     //
     this.btnTeacher.ImageFixedSize = new System.Drawing.Size(16, 16);
     this.btnTeacher.Name = "btnTeacher";
     this.btnTeacher.OptionGroup = "navBar";
     this.btnTeacher.Text = "教師";
     this.btnTeacher.Visible = false;
     //
     // tabItem1
     //
     this.tabItem1.Name = "tabItem1";
     this.tabItem1.Text = "tabItem1";
     //
     // buttonItem1
     //
     this.buttonItem1.Name = "buttonItem1";
     this.buttonItem1.Text = "buttonItem1";
     //
     // panel7
     //
     this.panel7.Controls.Add(this.buttonX2);
     this.panel7.Controls.Add(this.buttonX1);
     this.panel7.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.panel7.Location = new System.Drawing.Point(0, 412);
     this.panel7.Name = "panel7";
     this.panel7.Size = new System.Drawing.Size(208, 100);
     this.panel7.TabIndex = 0;
     //
     // buttonX2
     //
     this.buttonX2.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.buttonX2.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.buttonX2.Dock = System.Windows.Forms.DockStyle.Top;
     this.buttonX2.Location = new System.Drawing.Point(0, 23);
     this.buttonX2.Name = "buttonX2";
     this.buttonX2.Size = new System.Drawing.Size(208, 23);
     this.buttonX2.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.buttonX2.TabIndex = 1;
     this.buttonX2.Text = "待處理分課表";
     //
     // buttonX1
     //
     this.buttonX1.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.buttonX1.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.buttonX1.Dock = System.Windows.Forms.DockStyle.Top;
     this.buttonX1.Location = new System.Drawing.Point(0, 0);
     this.buttonX1.Name = "buttonX1";
     this.buttonX1.Size = new System.Drawing.Size(208, 23);
     this.buttonX1.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.buttonX1.TabIndex = 0;
     this.buttonX1.Text = "顯示所有分課";
     //
     // panel8
     //
     this.panel8.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panel8.Location = new System.Drawing.Point(0, 0);
     this.panel8.Name = "panel8";
     this.panel8.Size = new System.Drawing.Size(208, 412);
     this.panel8.TabIndex = 1;
     //
     // contextMenu
     //
     this.contextMenu.Name = "contextMenu";
     this.contextMenu.Size = new System.Drawing.Size(61, 4);
     //
     // dataGridViewTextBoxColumn1
     //
     this.dataGridViewTextBoxColumn1.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.dataGridViewTextBoxColumn1.DataPropertyName = "Lock";
     dataGridViewCellStyle19.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     this.dataGridViewTextBoxColumn1.DefaultCellStyle = dataGridViewCellStyle19;
     this.dataGridViewTextBoxColumn1.HeaderText = "*";
     this.dataGridViewTextBoxColumn1.MinimumWidth = 30;
     this.dataGridViewTextBoxColumn1.Name = "dataGridViewTextBoxColumn1";
     this.dataGridViewTextBoxColumn1.ReadOnly = true;
     //
     // dataGridViewTextBoxColumn2
     //
     this.dataGridViewTextBoxColumn2.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.dataGridViewTextBoxColumn2.DataPropertyName = "SolutionCount";
     dataGridViewCellStyle20.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     this.dataGridViewTextBoxColumn2.DefaultCellStyle = dataGridViewCellStyle20;
     this.dataGridViewTextBoxColumn2.HeaderText = "教師";
     this.dataGridViewTextBoxColumn2.MinimumWidth = 30;
     this.dataGridViewTextBoxColumn2.Name = "dataGridViewTextBoxColumn2";
     this.dataGridViewTextBoxColumn2.ReadOnly = true;
     this.dataGridViewTextBoxColumn2.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Programmatic;
     //
     // dataGridViewTextBoxColumn3
     //
     this.dataGridViewTextBoxColumn3.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.dataGridViewTextBoxColumn3.DataPropertyName = "WhoName";
     dataGridViewCellStyle21.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     this.dataGridViewTextBoxColumn3.DefaultCellStyle = dataGridViewCellStyle21;
     this.dataGridViewTextBoxColumn3.HeaderText = "課程";
     this.dataGridViewTextBoxColumn3.MinimumWidth = 40;
     this.dataGridViewTextBoxColumn3.Name = "dataGridViewTextBoxColumn3";
     this.dataGridViewTextBoxColumn3.ReadOnly = true;
     //
     // dataGridViewTextBoxColumn4
     //
     this.dataGridViewTextBoxColumn4.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.dataGridViewTextBoxColumn4.DataPropertyName = "WhomName";
     dataGridViewCellStyle22.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     this.dataGridViewTextBoxColumn4.DefaultCellStyle = dataGridViewCellStyle22;
     this.dataGridViewTextBoxColumn4.HeaderText = "星期";
     this.dataGridViewTextBoxColumn4.Name = "dataGridViewTextBoxColumn4";
     this.dataGridViewTextBoxColumn4.ReadOnly = true;
     //
     // dataGridViewTextBoxColumn5
     //
     this.dataGridViewTextBoxColumn5.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.dataGridViewTextBoxColumn5.DataPropertyName = "WhereName";
     dataGridViewCellStyle23.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     this.dataGridViewTextBoxColumn5.DefaultCellStyle = dataGridViewCellStyle23;
     this.dataGridViewTextBoxColumn5.HeaderText = "場地";
     this.dataGridViewTextBoxColumn5.Name = "dataGridViewTextBoxColumn5";
     this.dataGridViewTextBoxColumn5.ReadOnly = true;
     //
     // dataGridViewTextBoxColumn6
     //
     this.dataGridViewTextBoxColumn6.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.dataGridViewTextBoxColumn6.DataPropertyName = "WhatName";
     dataGridViewCellStyle24.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     this.dataGridViewTextBoxColumn6.DefaultCellStyle = dataGridViewCellStyle24;
     this.dataGridViewTextBoxColumn6.HeaderText = "科目";
     this.dataGridViewTextBoxColumn6.Name = "dataGridViewTextBoxColumn6";
     this.dataGridViewTextBoxColumn6.ReadOnly = true;
     //
     // dataGridViewTextBoxColumn7
     //
     this.dataGridViewTextBoxColumn7.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.dataGridViewTextBoxColumn7.DataPropertyName = "WhatAliasName";
     this.dataGridViewTextBoxColumn7.HeaderText = "科目簡稱";
     this.dataGridViewTextBoxColumn7.Name = "dataGridViewTextBoxColumn7";
     this.dataGridViewTextBoxColumn7.ReadOnly = true;
     //
     // dataGridViewTextBoxColumn8
     //
     this.dataGridViewTextBoxColumn8.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.dataGridViewTextBoxColumn8.DataPropertyName = "CourseName";
     this.dataGridViewTextBoxColumn8.HeaderText = "課程名稱";
     this.dataGridViewTextBoxColumn8.Name = "dataGridViewTextBoxColumn8";
     this.dataGridViewTextBoxColumn8.ReadOnly = true;
     //
     // dataGridViewTextBoxColumn9
     //
     this.dataGridViewTextBoxColumn9.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.dataGridViewTextBoxColumn9.DataPropertyName = "CourseGroup";
     this.dataGridViewTextBoxColumn9.HeaderText = "課程群組";
     this.dataGridViewTextBoxColumn9.Name = "dataGridViewTextBoxColumn9";
     this.dataGridViewTextBoxColumn9.ReadOnly = true;
     //
     // dataGridViewTextBoxColumn10
     //
     this.dataGridViewTextBoxColumn10.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.dataGridViewTextBoxColumn10.DataPropertyName = "WeekDay";
     this.dataGridViewTextBoxColumn10.HeaderText = "星期";
     this.dataGridViewTextBoxColumn10.Name = "dataGridViewTextBoxColumn10";
     this.dataGridViewTextBoxColumn10.ReadOnly = true;
     //
     // dataGridViewTextBoxColumn11
     //
     this.dataGridViewTextBoxColumn11.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.dataGridViewTextBoxColumn11.DataPropertyName = "PeriodNo";
     this.dataGridViewTextBoxColumn11.HeaderText = "節次";
     this.dataGridViewTextBoxColumn11.Name = "dataGridViewTextBoxColumn11";
     this.dataGridViewTextBoxColumn11.ReadOnly = true;
     //
     // dataGridViewTextBoxColumn12
     //
     this.dataGridViewTextBoxColumn12.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.dataGridViewTextBoxColumn12.DataPropertyName = "Length";
     this.dataGridViewTextBoxColumn12.HeaderText = "節數";
     this.dataGridViewTextBoxColumn12.Name = "dataGridViewTextBoxColumn12";
     this.dataGridViewTextBoxColumn12.ReadOnly = true;
     //
     // dataGridViewTextBoxColumn13
     //
     this.dataGridViewTextBoxColumn13.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.dataGridViewTextBoxColumn13.DataPropertyName = "WeekDayCondition";
     this.dataGridViewTextBoxColumn13.HeaderText = "星期條件";
     this.dataGridViewTextBoxColumn13.Name = "dataGridViewTextBoxColumn13";
     this.dataGridViewTextBoxColumn13.ReadOnly = true;
     //
     // dataGridViewTextBoxColumn14
     //
     this.dataGridViewTextBoxColumn14.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.dataGridViewTextBoxColumn14.DataPropertyName = "PeriodCondition";
     this.dataGridViewTextBoxColumn14.HeaderText = "節次條件";
     this.dataGridViewTextBoxColumn14.Name = "dataGridViewTextBoxColumn14";
     this.dataGridViewTextBoxColumn14.ReadOnly = true;
     //
     // dataGridViewTextBoxColumn15
     //
     this.dataGridViewTextBoxColumn15.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.dataGridViewTextBoxColumn15.DataPropertyName = "AllowLongBreak";
     this.dataGridViewTextBoxColumn15.HeaderText = "跨中午";
     this.dataGridViewTextBoxColumn15.Name = "dataGridViewTextBoxColumn15";
     this.dataGridViewTextBoxColumn15.ReadOnly = true;
     //
     // dataGridViewTextBoxColumn16
     //
     this.dataGridViewTextBoxColumn16.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.dataGridViewTextBoxColumn16.DataPropertyName = "AllowDuplicate";
     this.dataGridViewTextBoxColumn16.HeaderText = "可重複";
     this.dataGridViewTextBoxColumn16.Name = "dataGridViewTextBoxColumn16";
     this.dataGridViewTextBoxColumn16.ReadOnly = true;
     //
     // dataGridViewTextBoxColumn17
     //
     this.dataGridViewTextBoxColumn17.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.dataGridViewTextBoxColumn17.DataPropertyName = "LimitNextDay";
     this.dataGridViewTextBoxColumn17.HeaderText = "不連天";
     this.dataGridViewTextBoxColumn17.Name = "dataGridViewTextBoxColumn17";
     this.dataGridViewTextBoxColumn17.ReadOnly = true;
     //
     // dataGridViewTextBoxColumn18
     //
     this.dataGridViewTextBoxColumn18.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.dataGridViewTextBoxColumn18.DataPropertyName = "WeekFlag";
     this.dataGridViewTextBoxColumn18.HeaderText = "單雙週";
     this.dataGridViewTextBoxColumn18.Name = "dataGridViewTextBoxColumn18";
     this.dataGridViewTextBoxColumn18.ReadOnly = true;
     //
     // dataGridViewTextBoxColumn19
     //
     this.dataGridViewTextBoxColumn19.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.dataGridViewTextBoxColumn19.DataPropertyName = "Priority";
     this.dataGridViewTextBoxColumn19.HeaderText = "優先";
     this.dataGridViewTextBoxColumn19.Name = "dataGridViewTextBoxColumn19";
     this.dataGridViewTextBoxColumn19.ReadOnly = true;
     //
     // dataGridViewTextBoxColumn20
     //
     this.dataGridViewTextBoxColumn20.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.dataGridViewTextBoxColumn20.DataPropertyName = "TimeTableName";
     this.dataGridViewTextBoxColumn20.HeaderText = "時間表";
     this.dataGridViewTextBoxColumn20.Name = "dataGridViewTextBoxColumn20";
     this.dataGridViewTextBoxColumn20.ReadOnly = true;
     //
     // dataGridViewTextBoxColumn21
     //
     this.dataGridViewTextBoxColumn21.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.dataGridViewTextBoxColumn21.DataPropertyName = "ColorIndex";
     this.dataGridViewTextBoxColumn21.HeaderText = "分課編號";
     this.dataGridViewTextBoxColumn21.Name = "dataGridViewTextBoxColumn21";
     this.dataGridViewTextBoxColumn21.ReadOnly = true;
     this.dataGridViewTextBoxColumn21.Visible = false;
     //
     // dataGridViewTextBoxColumn22
     //
     this.dataGridViewTextBoxColumn22.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.dataGridViewTextBoxColumn22.DataPropertyName = "EventID";
     this.dataGridViewTextBoxColumn22.HeaderText = "姓名";
     this.dataGridViewTextBoxColumn22.Name = "dataGridViewTextBoxColumn22";
     this.dataGridViewTextBoxColumn22.ReadOnly = true;
     this.dataGridViewTextBoxColumn22.Visible = false;
     //
     // dataGridViewTextBoxColumn23
     //
     this.dataGridViewTextBoxColumn23.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.dataGridViewTextBoxColumn23.DataPropertyName = "Lock";
     dataGridViewCellStyle25.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     this.dataGridViewTextBoxColumn23.DefaultCellStyle = dataGridViewCellStyle25;
     this.dataGridViewTextBoxColumn23.HeaderText = "總時數";
     this.dataGridViewTextBoxColumn23.MinimumWidth = 40;
     this.dataGridViewTextBoxColumn23.Name = "dataGridViewTextBoxColumn23";
     this.dataGridViewTextBoxColumn23.ReadOnly = true;
     //
     // dataGridViewTextBoxColumn24
     //
     this.dataGridViewTextBoxColumn24.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.dataGridViewTextBoxColumn24.DataPropertyName = "SolutionCount";
     dataGridViewCellStyle26.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     this.dataGridViewTextBoxColumn24.DefaultCellStyle = dataGridViewCellStyle26;
     this.dataGridViewTextBoxColumn24.HeaderText = "未排時數";
     this.dataGridViewTextBoxColumn24.MinimumWidth = 40;
     this.dataGridViewTextBoxColumn24.Name = "dataGridViewTextBoxColumn24";
     this.dataGridViewTextBoxColumn24.ReadOnly = true;
     //
     // dataGridViewTextBoxColumn25
     //
     this.dataGridViewTextBoxColumn25.DataPropertyName = "Lock";
     dataGridViewCellStyle27.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     this.dataGridViewTextBoxColumn25.DefaultCellStyle = dataGridViewCellStyle27;
     this.dataGridViewTextBoxColumn25.HeaderText = "鎖定";
     this.dataGridViewTextBoxColumn25.MinimumWidth = 40;
     this.dataGridViewTextBoxColumn25.Name = "dataGridViewTextBoxColumn25";
     this.dataGridViewTextBoxColumn25.ReadOnly = true;
     this.dataGridViewTextBoxColumn25.Width = 57;
     //
     // dataGridViewTextBoxColumn26
     //
     this.dataGridViewTextBoxColumn26.DataPropertyName = "SolutionCount";
     dataGridViewCellStyle28.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     this.dataGridViewTextBoxColumn26.DefaultCellStyle = dataGridViewCellStyle28;
     this.dataGridViewTextBoxColumn26.HeaderText = "方案";
     this.dataGridViewTextBoxColumn26.MinimumWidth = 40;
     this.dataGridViewTextBoxColumn26.Name = "dataGridViewTextBoxColumn26";
     this.dataGridViewTextBoxColumn26.ReadOnly = true;
     this.dataGridViewTextBoxColumn26.Width = 57;
     //
     // dataGridViewTextBoxColumn27
     //
     this.dataGridViewTextBoxColumn27.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.dataGridViewTextBoxColumn27.DataPropertyName = "WeekDay";
     dataGridViewCellStyle29.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     this.dataGridViewTextBoxColumn27.DefaultCellStyle = dataGridViewCellStyle29;
     this.dataGridViewTextBoxColumn27.HeaderText = "星期";
     this.dataGridViewTextBoxColumn27.MinimumWidth = 40;
     this.dataGridViewTextBoxColumn27.Name = "dataGridViewTextBoxColumn27";
     this.dataGridViewTextBoxColumn27.ReadOnly = true;
     //
     // dataGridViewTextBoxColumn28
     //
     this.dataGridViewTextBoxColumn28.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
     this.dataGridViewTextBoxColumn28.DataPropertyName = "PeriodNo";
     dataGridViewCellStyle30.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     this.dataGridViewTextBoxColumn28.DefaultCellStyle = dataGridViewCellStyle30;
     this.dataGridViewTextBoxColumn28.HeaderText = "節次";
     this.dataGridViewTextBoxColumn28.Name = "dataGridViewTextBoxColumn28";
     this.dataGridViewTextBoxColumn28.ReadOnly = true;
     //
     // dataGridViewTextBoxColumn29
     //
     this.dataGridViewTextBoxColumn29.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
     this.dataGridViewTextBoxColumn29.DataPropertyName = "WhoName";
     this.dataGridViewTextBoxColumn29.HeaderText = "教師";
     this.dataGridViewTextBoxColumn29.Name = "dataGridViewTextBoxColumn29";
     this.dataGridViewTextBoxColumn29.ReadOnly = true;
     //
     // dataGridViewTextBoxColumn30
     //
     this.dataGridViewTextBoxColumn30.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
     this.dataGridViewTextBoxColumn30.DataPropertyName = "WhomName";
     this.dataGridViewTextBoxColumn30.HeaderText = "班級";
     this.dataGridViewTextBoxColumn30.Name = "dataGridViewTextBoxColumn30";
     this.dataGridViewTextBoxColumn30.ReadOnly = true;
     //
     // dataGridViewTextBoxColumn31
     //
     this.dataGridViewTextBoxColumn31.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
     this.dataGridViewTextBoxColumn31.DataPropertyName = "WhereName";
     this.dataGridViewTextBoxColumn31.HeaderText = "場地";
     this.dataGridViewTextBoxColumn31.Name = "dataGridViewTextBoxColumn31";
     this.dataGridViewTextBoxColumn31.ReadOnly = true;
     //
     // dataGridViewTextBoxColumn32
     //
     this.dataGridViewTextBoxColumn32.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
     this.dataGridViewTextBoxColumn32.DataPropertyName = "WhatName";
     this.dataGridViewTextBoxColumn32.HeaderText = "科目";
     this.dataGridViewTextBoxColumn32.Name = "dataGridViewTextBoxColumn32";
     this.dataGridViewTextBoxColumn32.ReadOnly = true;
     //
     // dataGridViewTextBoxColumn33
     //
     this.dataGridViewTextBoxColumn33.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
     this.dataGridViewTextBoxColumn33.DataPropertyName = "WhatAliasName";
     this.dataGridViewTextBoxColumn33.HeaderText = "科目簡稱";
     this.dataGridViewTextBoxColumn33.Name = "dataGridViewTextBoxColumn33";
     this.dataGridViewTextBoxColumn33.ReadOnly = true;
     //
     // dataGridViewTextBoxColumn34
     //
     this.dataGridViewTextBoxColumn34.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
     this.dataGridViewTextBoxColumn34.DataPropertyName = "CourseName";
     this.dataGridViewTextBoxColumn34.HeaderText = "課程名稱";
     this.dataGridViewTextBoxColumn34.Name = "dataGridViewTextBoxColumn34";
     this.dataGridViewTextBoxColumn34.ReadOnly = true;
     //
     // dataGridViewTextBoxColumn35
     //
     this.dataGridViewTextBoxColumn35.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
     this.dataGridViewTextBoxColumn35.DataPropertyName = "CourseGroup";
     this.dataGridViewTextBoxColumn35.HeaderText = "課程群組";
     this.dataGridViewTextBoxColumn35.Name = "dataGridViewTextBoxColumn35";
     this.dataGridViewTextBoxColumn35.ReadOnly = true;
     //
     // dataGridViewTextBoxColumn36
     //
     this.dataGridViewTextBoxColumn36.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.dataGridViewTextBoxColumn36.DataPropertyName = "Length";
     this.dataGridViewTextBoxColumn36.HeaderText = "節數";
     this.dataGridViewTextBoxColumn36.Name = "dataGridViewTextBoxColumn36";
     this.dataGridViewTextBoxColumn36.ReadOnly = true;
     //
     // dataGridViewTextBoxColumn37
     //
     this.dataGridViewTextBoxColumn37.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.dataGridViewTextBoxColumn37.DataPropertyName = "WeekDayCondition";
     this.dataGridViewTextBoxColumn37.HeaderText = "星期條件";
     this.dataGridViewTextBoxColumn37.Name = "dataGridViewTextBoxColumn37";
     this.dataGridViewTextBoxColumn37.ReadOnly = true;
     //
     // dataGridViewTextBoxColumn38
     //
     this.dataGridViewTextBoxColumn38.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.dataGridViewTextBoxColumn38.DataPropertyName = "PeriodCondition";
     this.dataGridViewTextBoxColumn38.HeaderText = "節次條件";
     this.dataGridViewTextBoxColumn38.Name = "dataGridViewTextBoxColumn38";
     this.dataGridViewTextBoxColumn38.ReadOnly = true;
     //
     // dataGridViewTextBoxColumn39
     //
     this.dataGridViewTextBoxColumn39.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.dataGridViewTextBoxColumn39.DataPropertyName = "AllowLongBreak";
     this.dataGridViewTextBoxColumn39.HeaderText = "跨中午";
     this.dataGridViewTextBoxColumn39.Name = "dataGridViewTextBoxColumn39";
     this.dataGridViewTextBoxColumn39.ReadOnly = true;
     //
     // dataGridViewTextBoxColumn40
     //
     this.dataGridViewTextBoxColumn40.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.dataGridViewTextBoxColumn40.DataPropertyName = "AllowDuplicate";
     this.dataGridViewTextBoxColumn40.HeaderText = "可重複";
     this.dataGridViewTextBoxColumn40.Name = "dataGridViewTextBoxColumn40";
     this.dataGridViewTextBoxColumn40.ReadOnly = true;
     //
     // dataGridViewTextBoxColumn41
     //
     this.dataGridViewTextBoxColumn41.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.dataGridViewTextBoxColumn41.DataPropertyName = "LimitNextDay";
     this.dataGridViewTextBoxColumn41.HeaderText = "不連天";
     this.dataGridViewTextBoxColumn41.Name = "dataGridViewTextBoxColumn41";
     this.dataGridViewTextBoxColumn41.ReadOnly = true;
     //
     // dataGridViewTextBoxColumn42
     //
     this.dataGridViewTextBoxColumn42.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.dataGridViewTextBoxColumn42.DataPropertyName = "WeekFlag";
     this.dataGridViewTextBoxColumn42.HeaderText = "單雙週";
     this.dataGridViewTextBoxColumn42.Name = "dataGridViewTextBoxColumn42";
     this.dataGridViewTextBoxColumn42.ReadOnly = true;
     //
     // dataGridViewTextBoxColumn43
     //
     this.dataGridViewTextBoxColumn43.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.dataGridViewTextBoxColumn43.DataPropertyName = "Priority";
     this.dataGridViewTextBoxColumn43.HeaderText = "優先";
     this.dataGridViewTextBoxColumn43.Name = "dataGridViewTextBoxColumn43";
     this.dataGridViewTextBoxColumn43.ReadOnly = true;
     this.dataGridViewTextBoxColumn43.Visible = false;
     //
     // dataGridViewTextBoxColumn44
     //
     this.dataGridViewTextBoxColumn44.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
     this.dataGridViewTextBoxColumn44.DataPropertyName = "TimeTableName";
     this.dataGridViewTextBoxColumn44.HeaderText = "時間表";
     this.dataGridViewTextBoxColumn44.Name = "dataGridViewTextBoxColumn44";
     this.dataGridViewTextBoxColumn44.ReadOnly = true;
     //
     // dataGridViewTextBoxColumn45
     //
     this.dataGridViewTextBoxColumn45.DataPropertyName = "ColorIndex";
     dataGridViewCellStyle31.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     this.dataGridViewTextBoxColumn45.DefaultCellStyle = dataGridViewCellStyle31;
     this.dataGridViewTextBoxColumn45.HeaderText = "顏色";
     this.dataGridViewTextBoxColumn45.MinimumWidth = 40;
     this.dataGridViewTextBoxColumn45.Name = "dataGridViewTextBoxColumn45";
     this.dataGridViewTextBoxColumn45.ReadOnly = true;
     this.dataGridViewTextBoxColumn45.Visible = false;
     this.dataGridViewTextBoxColumn45.Width = 57;
     //
     // dataGridViewTextBoxColumn46
     //
     this.dataGridViewTextBoxColumn46.DataPropertyName = "EventID";
     dataGridViewCellStyle32.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     this.dataGridViewTextBoxColumn46.DefaultCellStyle = dataGridViewCellStyle32;
     this.dataGridViewTextBoxColumn46.HeaderText = "分課編號";
     this.dataGridViewTextBoxColumn46.MinimumWidth = 40;
     this.dataGridViewTextBoxColumn46.Name = "dataGridViewTextBoxColumn46";
     this.dataGridViewTextBoxColumn46.ReadOnly = true;
     this.dataGridViewTextBoxColumn46.Width = 78;
     //
     // dataGridViewTextBoxColumn47
     //
     this.dataGridViewTextBoxColumn47.DataPropertyName = "Lock";
     dataGridViewCellStyle33.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     this.dataGridViewTextBoxColumn47.DefaultCellStyle = dataGridViewCellStyle33;
     this.dataGridViewTextBoxColumn47.HeaderText = "鎖定";
     this.dataGridViewTextBoxColumn47.MinimumWidth = 40;
     this.dataGridViewTextBoxColumn47.Name = "dataGridViewTextBoxColumn47";
     this.dataGridViewTextBoxColumn47.ReadOnly = true;
     this.dataGridViewTextBoxColumn47.Width = 54;
     //
     // dataGridViewTextBoxColumn48
     //
     this.dataGridViewTextBoxColumn48.DataPropertyName = "SolutionCount";
     dataGridViewCellStyle34.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     this.dataGridViewTextBoxColumn48.DefaultCellStyle = dataGridViewCellStyle34;
     this.dataGridViewTextBoxColumn48.HeaderText = "方案";
     this.dataGridViewTextBoxColumn48.MinimumWidth = 40;
     this.dataGridViewTextBoxColumn48.Name = "dataGridViewTextBoxColumn48";
     this.dataGridViewTextBoxColumn48.ReadOnly = true;
     this.dataGridViewTextBoxColumn48.Width = 54;
     //
     // dataGridViewTextBoxColumn49
     //
     this.dataGridViewTextBoxColumn49.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.dataGridViewTextBoxColumn49.DataPropertyName = "WeekDay";
     dataGridViewCellStyle35.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     this.dataGridViewTextBoxColumn49.DefaultCellStyle = dataGridViewCellStyle35;
     this.dataGridViewTextBoxColumn49.HeaderText = "星期";
     this.dataGridViewTextBoxColumn49.MinimumWidth = 40;
     this.dataGridViewTextBoxColumn49.Name = "dataGridViewTextBoxColumn49";
     this.dataGridViewTextBoxColumn49.ReadOnly = true;
     //
     // dataGridViewTextBoxColumn50
     //
     this.dataGridViewTextBoxColumn50.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
     this.dataGridViewTextBoxColumn50.DataPropertyName = "PeriodNo";
     dataGridViewCellStyle36.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     this.dataGridViewTextBoxColumn50.DefaultCellStyle = dataGridViewCellStyle36;
     this.dataGridViewTextBoxColumn50.HeaderText = "節次";
     this.dataGridViewTextBoxColumn50.Name = "dataGridViewTextBoxColumn50";
     this.dataGridViewTextBoxColumn50.ReadOnly = true;
     //
     // dataGridViewTextBoxColumn51
     //
     this.dataGridViewTextBoxColumn51.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
     this.dataGridViewTextBoxColumn51.DataPropertyName = "WhoName";
     this.dataGridViewTextBoxColumn51.HeaderText = "教師";
     this.dataGridViewTextBoxColumn51.Name = "dataGridViewTextBoxColumn51";
     this.dataGridViewTextBoxColumn51.ReadOnly = true;
     //
     // dataGridViewTextBoxColumn52
     //
     this.dataGridViewTextBoxColumn52.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
     this.dataGridViewTextBoxColumn52.DataPropertyName = "WhomName";
     this.dataGridViewTextBoxColumn52.HeaderText = "班級";
     this.dataGridViewTextBoxColumn52.Name = "dataGridViewTextBoxColumn52";
     this.dataGridViewTextBoxColumn52.ReadOnly = true;
     //
     // dataGridViewTextBoxColumn53
     //
     this.dataGridViewTextBoxColumn53.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
     this.dataGridViewTextBoxColumn53.DataPropertyName = "WhereName";
     this.dataGridViewTextBoxColumn53.HeaderText = "場地";
     this.dataGridViewTextBoxColumn53.Name = "dataGridViewTextBoxColumn53";
     this.dataGridViewTextBoxColumn53.ReadOnly = true;
     //
     // dataGridViewTextBoxColumn54
     //
     this.dataGridViewTextBoxColumn54.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
     this.dataGridViewTextBoxColumn54.DataPropertyName = "WhatName";
     this.dataGridViewTextBoxColumn54.HeaderText = "科目";
     this.dataGridViewTextBoxColumn54.Name = "dataGridViewTextBoxColumn54";
     this.dataGridViewTextBoxColumn54.ReadOnly = true;
     //
     // dataGridViewTextBoxColumn55
     //
     this.dataGridViewTextBoxColumn55.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
     this.dataGridViewTextBoxColumn55.DataPropertyName = "WhatAliasName";
     this.dataGridViewTextBoxColumn55.HeaderText = "科目簡稱";
     this.dataGridViewTextBoxColumn55.Name = "dataGridViewTextBoxColumn55";
     this.dataGridViewTextBoxColumn55.ReadOnly = true;
     //
     // dataGridViewTextBoxColumn56
     //
     this.dataGridViewTextBoxColumn56.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
     this.dataGridViewTextBoxColumn56.DataPropertyName = "CourseName";
     this.dataGridViewTextBoxColumn56.HeaderText = "課程名稱";
     this.dataGridViewTextBoxColumn56.Name = "dataGridViewTextBoxColumn56";
     this.dataGridViewTextBoxColumn56.ReadOnly = true;
     //
     // dataGridViewTextBoxColumn57
     //
     this.dataGridViewTextBoxColumn57.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
     this.dataGridViewTextBoxColumn57.DataPropertyName = "CourseGroup";
     this.dataGridViewTextBoxColumn57.HeaderText = "課程群組";
     this.dataGridViewTextBoxColumn57.Name = "dataGridViewTextBoxColumn57";
     this.dataGridViewTextBoxColumn57.ReadOnly = true;
     //
     // dataGridViewTextBoxColumn58
     //
     this.dataGridViewTextBoxColumn58.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.dataGridViewTextBoxColumn58.DataPropertyName = "Length";
     this.dataGridViewTextBoxColumn58.HeaderText = "節數";
     this.dataGridViewTextBoxColumn58.Name = "dataGridViewTextBoxColumn58";
     this.dataGridViewTextBoxColumn58.ReadOnly = true;
     //
     // dataGridViewTextBoxColumn59
     //
     this.dataGridViewTextBoxColumn59.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.dataGridViewTextBoxColumn59.DataPropertyName = "WeekDayCondition";
     this.dataGridViewTextBoxColumn59.HeaderText = "星期條件";
     this.dataGridViewTextBoxColumn59.Name = "dataGridViewTextBoxColumn59";
     this.dataGridViewTextBoxColumn59.ReadOnly = true;
     //
     // dataGridViewTextBoxColumn60
     //
     this.dataGridViewTextBoxColumn60.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.dataGridViewTextBoxColumn60.DataPropertyName = "PeriodCondition";
     this.dataGridViewTextBoxColumn60.HeaderText = "節次條件";
     this.dataGridViewTextBoxColumn60.Name = "dataGridViewTextBoxColumn60";
     this.dataGridViewTextBoxColumn60.ReadOnly = true;
     //
     // dataGridViewTextBoxColumn61
     //
     this.dataGridViewTextBoxColumn61.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.dataGridViewTextBoxColumn61.DataPropertyName = "AllowLongBreak";
     this.dataGridViewTextBoxColumn61.HeaderText = "跨中午";
     this.dataGridViewTextBoxColumn61.Name = "dataGridViewTextBoxColumn61";
     this.dataGridViewTextBoxColumn61.ReadOnly = true;
     //
     // dataGridViewTextBoxColumn62
     //
     this.dataGridViewTextBoxColumn62.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.dataGridViewTextBoxColumn62.DataPropertyName = "AllowDuplicate";
     this.dataGridViewTextBoxColumn62.HeaderText = "可重複";
     this.dataGridViewTextBoxColumn62.Name = "dataGridViewTextBoxColumn62";
     this.dataGridViewTextBoxColumn62.ReadOnly = true;
     //
     // dataGridViewTextBoxColumn63
     //
     this.dataGridViewTextBoxColumn63.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.dataGridViewTextBoxColumn63.DataPropertyName = "LimitNextDay";
     this.dataGridViewTextBoxColumn63.HeaderText = "不連天";
     this.dataGridViewTextBoxColumn63.Name = "dataGridViewTextBoxColumn63";
     this.dataGridViewTextBoxColumn63.ReadOnly = true;
     //
     // dataGridViewTextBoxColumn64
     //
     this.dataGridViewTextBoxColumn64.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.dataGridViewTextBoxColumn64.DataPropertyName = "WeekFlag";
     this.dataGridViewTextBoxColumn64.HeaderText = "單雙週";
     this.dataGridViewTextBoxColumn64.Name = "dataGridViewTextBoxColumn64";
     this.dataGridViewTextBoxColumn64.ReadOnly = true;
     //
     // dataGridViewTextBoxColumn65
     //
     this.dataGridViewTextBoxColumn65.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.dataGridViewTextBoxColumn65.DataPropertyName = "Priority";
     this.dataGridViewTextBoxColumn65.HeaderText = "優先";
     this.dataGridViewTextBoxColumn65.Name = "dataGridViewTextBoxColumn65";
     this.dataGridViewTextBoxColumn65.ReadOnly = true;
     this.dataGridViewTextBoxColumn65.Visible = false;
     //
     // dataGridViewTextBoxColumn66
     //
     this.dataGridViewTextBoxColumn66.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
     this.dataGridViewTextBoxColumn66.DataPropertyName = "TimeTableName";
     this.dataGridViewTextBoxColumn66.HeaderText = "時間表";
     this.dataGridViewTextBoxColumn66.Name = "dataGridViewTextBoxColumn66";
     this.dataGridViewTextBoxColumn66.ReadOnly = true;
     //
     // dataGridViewTextBoxColumn67
     //
     this.dataGridViewTextBoxColumn67.DataPropertyName = "ColorIndex";
     this.dataGridViewTextBoxColumn67.HeaderText = "顏色";
     this.dataGridViewTextBoxColumn67.Name = "dataGridViewTextBoxColumn67";
     this.dataGridViewTextBoxColumn67.ReadOnly = true;
     this.dataGridViewTextBoxColumn67.Visible = false;
     this.dataGridViewTextBoxColumn67.Width = 54;
     //
     // dataGridViewTextBoxColumn68
     //
     this.dataGridViewTextBoxColumn68.DataPropertyName = "EventID";
     this.dataGridViewTextBoxColumn68.HeaderText = "分課編號";
     this.dataGridViewTextBoxColumn68.Name = "dataGridViewTextBoxColumn68";
     this.dataGridViewTextBoxColumn68.ReadOnly = true;
     this.dataGridViewTextBoxColumn68.Width = 81;
     //
     // MainForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 16F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(958, 742);
     this.Controls.Add(this.panel1);
     this.Controls.Add(this.bar1);
     this.Controls.Add(this.ribbonControl1);
     this.Controls.Add(this.ribbonBar1);
     this.Font = new System.Drawing.Font("Microsoft JhengHei", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(136)));
     this.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.Name = "MainForm";
     this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
     this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.MainForm_FormClosing);
     this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.MainForm_FormClosed);
     this.Load += new System.EventHandler(this.Form1_Load);
     this.ribbonControl1.ResumeLayout(false);
     this.ribbonControl1.PerformLayout();
     this.ribbonPanel1.ResumeLayout(false);
     this.ribbonPanel2.ResumeLayout(false);
     this.ribbonPanel3.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.bar1)).EndInit();
     this.bar1.ResumeLayout(false);
     this.bar1.PerformLayout();
     this.panel1.ResumeLayout(false);
     this.panel2.ResumeLayout(false);
     this.panel4.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.tabContent)).EndInit();
     this.tabContent.ResumeLayout(false);
     this.superTabControlPanel1.ResumeLayout(false);
     this.pnlWhoList.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.grdTeacherEvent)).EndInit();
     this.panel5.ResumeLayout(false);
     this.panel5.PerformLayout();
     this.pnlWhoLPView.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.tabTeacherLPView)).EndInit();
     this.tabTeacherLPView.ResumeLayout(false);
     this.superTabControlPanel2.ResumeLayout(false);
     this.pnlWhomLPView.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.tabClassLPView)).EndInit();
     this.tabClassLPView.ResumeLayout(false);
     this.pnlWhomList.ResumeLayout(false);
     this.panel10.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.grdClassEvent)).EndInit();
     this.panel3.ResumeLayout(false);
     this.panel3.PerformLayout();
     this.superTabControlPanel3.ResumeLayout(false);
     this.pnlWhereList.ResumeLayout(false);
     this.panel9.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.grdClassroomEvent)).EndInit();
     this.panel6.ResumeLayout(false);
     this.panel6.PerformLayout();
     this.pnlWhereLPView.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.tabClassroomLPView)).EndInit();
     this.tabClassroomLPView.ResumeLayout(false);
     this.LeftNavigationPanel.ResumeLayout(false);
     this.panel7.ResumeLayout(false);
     this.ResumeLayout(false);
 }
 /// <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.lvhanghoa = new DevComponents.DotNetBar.Controls.ListViewEx();
     this.columnHeader7 = new System.Windows.Forms.ColumnHeader();
     this.columnHeader2 = new System.Windows.Forms.ColumnHeader();
     this.columnHeader4 = new System.Windows.Forms.ColumnHeader();
     this.columnHeader1 = new System.Windows.Forms.ColumnHeader();
     this.groupPanel2 = new DevComponents.DotNetBar.Controls.GroupPanel();
     this.labelX1 = new DevComponents.DotNetBar.LabelX();
     this.txt_mota = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.panel5 = new System.Windows.Forms.Panel();
     this.buttonX6 = new DevComponents.DotNetBar.ButtonX();
     this.buttonX4 = new DevComponents.DotNetBar.ButtonX();
     this.buttonX5 = new DevComponents.DotNetBar.ButtonX();
     this.txttennsx = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.labelX26 = new DevComponents.DotNetBar.LabelX();
     this.groupPanel1.SuspendLayout();
     this.groupPanel2.SuspendLayout();
     this.panel5.SuspendLayout();
     this.SuspendLayout();
     //
     // groupPanel1
     //
     this.groupPanel1.Anchor = System.Windows.Forms.AnchorStyles.Top;
     this.groupPanel1.BackColor = System.Drawing.Color.Transparent;
     this.groupPanel1.CanvasColor = System.Drawing.SystemColors.Control;
     this.groupPanel1.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.groupPanel1.Controls.Add(this.lvhanghoa);
     this.groupPanel1.Location = new System.Drawing.Point(12, 200);
     this.groupPanel1.Name = "groupPanel1";
     this.groupPanel1.Size = new System.Drawing.Size(637, 267);
     //
     //
     //
     this.groupPanel1.Style.BackColor = System.Drawing.Color.Transparent;
     this.groupPanel1.Style.BackColor2 = System.Drawing.Color.Transparent;
     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.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 = 79;
     this.groupPanel1.Text = "DANH SÁCH NHÓM KHÁCH HÀNG";
     //
     // lvhanghoa
     //
     //
     //
     //
     this.lvhanghoa.Border.Class = "ListViewBorder";
     this.lvhanghoa.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
     this.columnHeader7,
     this.columnHeader2,
     this.columnHeader4,
     this.columnHeader1});
     this.lvhanghoa.FullRowSelect = true;
     this.lvhanghoa.GridLines = true;
     this.lvhanghoa.Location = new System.Drawing.Point(7, 3);
     this.lvhanghoa.Name = "lvhanghoa";
     this.lvhanghoa.Size = new System.Drawing.Size(611, 238);
     this.lvhanghoa.TabIndex = 71;
     this.lvhanghoa.UseCompatibleStateImageBehavior = false;
     this.lvhanghoa.View = System.Windows.Forms.View.Details;
     this.lvhanghoa.SelectedIndexChanged += new System.EventHandler(this.lvhanghoa_SelectedIndexChanged);
     //
     // columnHeader7
     //
     this.columnHeader7.Text = "STT";
     this.columnHeader7.Width = 53;
     //
     // columnHeader2
     //
     this.columnHeader2.Text = "Tên Nhóm";
     this.columnHeader2.Width = 218;
     //
     // columnHeader4
     //
     this.columnHeader4.Text = "Mô Tả";
     this.columnHeader4.Width = 329;
     //
     // columnHeader1
     //
     this.columnHeader1.Text = "manhom";
     this.columnHeader1.Width = 0;
     //
     // groupPanel2
     //
     this.groupPanel2.Anchor = System.Windows.Forms.AnchorStyles.Top;
     this.groupPanel2.BackColor = System.Drawing.Color.Transparent;
     this.groupPanel2.CanvasColor = System.Drawing.SystemColors.Control;
     this.groupPanel2.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.groupPanel2.Controls.Add(this.labelX1);
     this.groupPanel2.Controls.Add(this.txt_mota);
     this.groupPanel2.Controls.Add(this.panel5);
     this.groupPanel2.Controls.Add(this.txttennsx);
     this.groupPanel2.Controls.Add(this.labelX26);
     this.groupPanel2.Location = new System.Drawing.Point(108, 38);
     this.groupPanel2.Name = "groupPanel2";
     this.groupPanel2.Size = new System.Drawing.Size(388, 158);
     //
     //
     //
     this.groupPanel2.Style.BackColor = System.Drawing.Color.Transparent;
     this.groupPanel2.Style.BackColor2 = System.Drawing.Color.Transparent;
     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.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 = 1;
     this.groupPanel2.Text = "THÔNG TIN NHÓM KHÁCH HÀNG";
     //
     // labelX1
     //
     this.labelX1.Location = new System.Drawing.Point(3, 56);
     this.labelX1.Name = "labelX1";
     this.labelX1.Size = new System.Drawing.Size(97, 25);
     this.labelX1.TabIndex = 72;
     this.labelX1.Text = "Mô Tả:";
     //
     // txt_mota
     //
     //
     //
     //
     this.txt_mota.Border.Class = "TextBoxBorder";
     this.txt_mota.FocusHighlightEnabled = true;
     this.txt_mota.Location = new System.Drawing.Point(106, 44);
     this.txt_mota.Multiline = true;
     this.txt_mota.Name = "txt_mota";
     this.txt_mota.Size = new System.Drawing.Size(193, 47);
     this.txt_mota.TabIndex = 1;
     //
     // panel5
     //
     this.panel5.BackColor = System.Drawing.Color.SteelBlue;
     this.panel5.Controls.Add(this.buttonX6);
     this.panel5.Controls.Add(this.buttonX4);
     this.panel5.Controls.Add(this.buttonX5);
     this.panel5.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.panel5.Location = new System.Drawing.Point(0, 103);
     this.panel5.Margin = new System.Windows.Forms.Padding(0);
     this.panel5.Name = "panel5";
     this.panel5.Size = new System.Drawing.Size(382, 30);
     this.panel5.TabIndex = 2;
     //
     // buttonX6
     //
     this.buttonX6.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.buttonX6.Anchor = System.Windows.Forms.AnchorStyles.Top;
     this.buttonX6.ColorTable = DevComponents.DotNetBar.eButtonColor.Office2007WithBackground;
     this.buttonX6.Location = new System.Drawing.Point(158, 2);
     this.buttonX6.Margin = new System.Windows.Forms.Padding(0);
     this.buttonX6.Name = "buttonX6";
     this.buttonX6.Size = new System.Drawing.Size(70, 27);
     this.buttonX6.TabIndex = 1;
     this.buttonX6.Text = "Sửa";
     this.buttonX6.Click += new System.EventHandler(this.buttonX6_Click);
     //
     // buttonX4
     //
     this.buttonX4.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.buttonX4.Anchor = System.Windows.Forms.AnchorStyles.Top;
     this.buttonX4.ColorTable = DevComponents.DotNetBar.eButtonColor.Office2007WithBackground;
     this.buttonX4.Location = new System.Drawing.Point(240, 2);
     this.buttonX4.Margin = new System.Windows.Forms.Padding(0);
     this.buttonX4.Name = "buttonX4";
     this.buttonX4.Size = new System.Drawing.Size(70, 27);
     this.buttonX4.TabIndex = 2;
     this.buttonX4.Text = "Xóa";
     this.buttonX4.Click += new System.EventHandler(this.buttonX4_Click);
     //
     // buttonX5
     //
     this.buttonX5.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.buttonX5.Anchor = System.Windows.Forms.AnchorStyles.Top;
     this.buttonX5.ColorTable = DevComponents.DotNetBar.eButtonColor.Office2007WithBackground;
     this.buttonX5.Location = new System.Drawing.Point(75, 2);
     this.buttonX5.Margin = new System.Windows.Forms.Padding(0);
     this.buttonX5.Name = "buttonX5";
     this.buttonX5.Size = new System.Drawing.Size(70, 27);
     this.buttonX5.TabIndex = 0;
     this.buttonX5.Text = "Thêm";
     this.buttonX5.Click += new System.EventHandler(this.buttonX5_Click);
     //
     // txttennsx
     //
     //
     //
     //
     this.txttennsx.Border.Class = "TextBoxBorder";
     this.txttennsx.FocusHighlightEnabled = true;
     this.txttennsx.Location = new System.Drawing.Point(106, 16);
     this.txttennsx.Name = "txttennsx";
     this.txttennsx.Size = new System.Drawing.Size(193, 24);
     this.txttennsx.TabIndex = 0;
     //
     // labelX26
     //
     this.labelX26.Location = new System.Drawing.Point(3, 12);
     this.labelX26.Name = "labelX26";
     this.labelX26.Size = new System.Drawing.Size(97, 25);
     this.labelX26.TabIndex = 60;
     this.labelX26.Text = "Tên Nhóm KH:";
     //
     // fromNhomKH
     //
     this.ClientSize = new System.Drawing.Size(661, 523);
     this.Controls.Add(this.groupPanel1);
     this.Controls.Add(this.groupPanel2);
     this.Name = "fromNhomKH";
     this.Load += new System.EventHandler(this.fromNhomKH_Load);
     this.Controls.SetChildIndex(this.groupPanel2, 0);
     this.Controls.SetChildIndex(this.groupPanel1, 0);
     this.groupPanel1.ResumeLayout(false);
     this.groupPanel2.ResumeLayout(false);
     this.panel5.ResumeLayout(false);
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.labelX1 = new DevComponents.DotNetBar.LabelX();
     this.cbxQuizName = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.btnRun = new DevComponents.DotNetBar.ButtonX();
     this.btnExit = new DevComponents.DotNetBar.ButtonX();
     this.groupPanel1 = new DevComponents.DotNetBar.Controls.GroupPanel();
     this.rbClassSeatNo = new System.Windows.Forms.RadioButton();
     this.rbStudentNumber = new System.Windows.Forms.RadioButton();
     this.groupPanel1.SuspendLayout();
     this.SuspendLayout();
     //
     // labelX1
     //
     this.labelX1.BackColor = System.Drawing.Color.Transparent;
     //
     //
     //
     this.labelX1.BackgroundStyle.Class = "";
     this.labelX1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX1.Location = new System.Drawing.Point(14, 14);
     this.labelX1.Name = "labelX1";
     this.labelX1.Size = new System.Drawing.Size(63, 30);
     this.labelX1.TabIndex = 0;
     this.labelX1.Text = "測驗名稱";
     //
     // cbxQuizName
     //
     this.cbxQuizName.DisplayMember = "Text";
     this.cbxQuizName.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.cbxQuizName.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cbxQuizName.FormattingEnabled = true;
     this.cbxQuizName.ItemHeight = 19;
     this.cbxQuizName.Location = new System.Drawing.Point(81, 17);
     this.cbxQuizName.Name = "cbxQuizName";
     this.cbxQuizName.Size = new System.Drawing.Size(327, 25);
     this.cbxQuizName.TabIndex = 1;
     //
     // btnRun
     //
     this.btnRun.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btnRun.BackColor = System.Drawing.Color.Transparent;
     this.btnRun.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.btnRun.Location = new System.Drawing.Point(261, 88);
     this.btnRun.Name = "btnRun";
     this.btnRun.Size = new System.Drawing.Size(67, 23);
     this.btnRun.TabIndex = 2;
     this.btnRun.Text = "確定";
     this.btnRun.Click += new System.EventHandler(this.btnRun_Click);
     //
     // btnExit
     //
     this.btnExit.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btnExit.BackColor = System.Drawing.Color.Transparent;
     this.btnExit.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.btnExit.Location = new System.Drawing.Point(340, 88);
     this.btnExit.Name = "btnExit";
     this.btnExit.Size = new System.Drawing.Size(67, 23);
     this.btnExit.TabIndex = 3;
     this.btnExit.Text = "離開";
     this.btnExit.Click += new System.EventHandler(this.btnExit_Click);
     //
     // groupPanel1
     //
     this.groupPanel1.BackColor = System.Drawing.Color.Transparent;
     this.groupPanel1.CanvasColor = System.Drawing.SystemColors.Control;
     this.groupPanel1.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.groupPanel1.Controls.Add(this.rbClassSeatNo);
     this.groupPanel1.Controls.Add(this.rbStudentNumber);
     this.groupPanel1.Location = new System.Drawing.Point(10, 52);
     this.groupPanel1.Name = "groupPanel1";
     this.groupPanel1.Size = new System.Drawing.Size(200, 59);
     //
     //
     //
     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 = 4;
     this.groupPanel1.Text = "匯入資料依照方式";
     //
     // rbClassSeatNo
     //
     this.rbClassSeatNo.AutoSize = true;
     this.rbClassSeatNo.Location = new System.Drawing.Point(95, 7);
     this.rbClassSeatNo.Name = "rbClassSeatNo";
     this.rbClassSeatNo.Size = new System.Drawing.Size(78, 21);
     this.rbClassSeatNo.TabIndex = 1;
     this.rbClassSeatNo.TabStop = true;
     this.rbClassSeatNo.Text = "班級座號";
     this.rbClassSeatNo.UseVisualStyleBackColor = true;
     //
     // rbStudentNumber
     //
     this.rbStudentNumber.AutoSize = true;
     this.rbStudentNumber.Location = new System.Drawing.Point(13, 7);
     this.rbStudentNumber.Name = "rbStudentNumber";
     this.rbStudentNumber.Size = new System.Drawing.Size(52, 21);
     this.rbStudentNumber.TabIndex = 0;
     this.rbStudentNumber.TabStop = true;
     this.rbStudentNumber.Text = "學號";
     this.rbStudentNumber.UseVisualStyleBackColor = true;
     //
     // ImportStudQuizDataSelectQuizNameForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 17F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(421, 117);
     this.Controls.Add(this.groupPanel1);
     this.Controls.Add(this.btnExit);
     this.Controls.Add(this.btnRun);
     this.Controls.Add(this.cbxQuizName);
     this.Controls.Add(this.labelX1);
     this.DoubleBuffered = true;
     this.Name = "ImportStudQuizDataSelectQuizNameForm";
     this.Text = "請選擇匯入測驗";
     this.Load += new System.EventHandler(this.ImportStudQuizDataSelectQuizNameForm_Load);
     this.groupPanel1.ResumeLayout(false);
     this.groupPanel1.PerformLayout();
     this.ResumeLayout(false);
 }
Пример #42
0
        private void InitializeComponent()
        {
            var resources = new System.ComponentModel.ComponentResourceManager(typeof(Form_AddSpecialItem));

            _Button_Cancel                         = new DevComponents.DotNetBar.ButtonX();
            _Button_Cancel.Click                  += new EventHandler(Button_Okay_Click);
            _Button_Okay                           = new DevComponents.DotNetBar.ButtonX();
            _Button_Okay.Click                    += new EventHandler(Button_Okay_Click);
            _GroupBox_Type                         = new GroupBox();
            _CheckBoxX_Mist                        = new DevComponents.DotNetBar.Controls.CheckBoxX();
            _CheckBoxX_Mist.CheckedChangedEx      += new DevComponents.DotNetBar.Controls.CheckBoxXChangeEventHandler(CheckBoxX_SpecialBoxType_CheckedChanged);
            _CheckBoxX_ToxicHaze                   = new DevComponents.DotNetBar.Controls.CheckBoxX();
            _CheckBoxX_ToxicHaze.CheckedChangedEx += new DevComponents.DotNetBar.Controls.CheckBoxXChangeEventHandler(CheckBoxX_SpecialBoxType_CheckedChanged);
            _CheckBoxX_Water                       = new DevComponents.DotNetBar.Controls.CheckBoxX();
            _CheckBoxX_Water.CheckedChangedEx     += new DevComponents.DotNetBar.Controls.CheckBoxXChangeEventHandler(CheckBoxX_SpecialBoxType_CheckedChanged);
            _CheckBoxX_Water.CheckedChanged       += new EventHandler(CheckBoxX_Water_CheckedChanged);
            _GroupBox_Box                          = new GroupBox();
            _LabelX3            = new DevComponents.DotNetBar.LabelX();
            _IntegerInput_Alpha = new DevComponents.Editors.IntegerInput();
            _IntegerInput_Alpha.ValueChanged += new EventHandler(IntegerInput1_ValueChanged);
            _LabelX2            = new DevComponents.DotNetBar.LabelX();
            _ComboBox_WaterType = new DevComponents.DotNetBar.Controls.ComboBoxEx();
            _ComboBox_WaterType.SelectedIndexChanged += new EventHandler(ComboBox_WaterType_SelectedIndexChanged);
            _LabelX1                          = new DevComponents.DotNetBar.LabelX();
            _Button_SetUpHeight               = new DevComponents.DotNetBar.ButtonX();
            _Button_SetUpHeight.Click        += new EventHandler(Button_SetUpHeight_Click);
            _LabelX_Height                    = new DevComponents.DotNetBar.LabelX();
            _IntegerInput_Scale               = new DevComponents.Editors.IntegerInput();
            _IntegerInput_Scale.ValueChanged += new EventHandler(IntegerInput_Scale_ValueChanged);
            _Button_SetUpPos2                 = new DevComponents.DotNetBar.ButtonX();
            _Button_SetUpPos2.Click          += new EventHandler(Button_SetUpPos1_Click);
            _Button_SetUpPos1                 = new DevComponents.DotNetBar.ButtonX();
            _Button_SetUpPos1.Click          += new EventHandler(Button_SetUpPos1_Click);
            _LabelX_Pos2                      = new DevComponents.DotNetBar.LabelX();
            _LabelX_Pos1                      = new DevComponents.DotNetBar.LabelX();
            _LabelX59                         = new DevComponents.DotNetBar.LabelX();
            _Panel1 = new Panel();
            _GroupBox_Type.SuspendLayout();
            _GroupBox_Box.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)_IntegerInput_Alpha).BeginInit();
            ((System.ComponentModel.ISupportInitialize)_IntegerInput_Scale).BeginInit();
            _Panel1.SuspendLayout();
            SuspendLayout();
            //
            // Button_Cancel
            //
            _Button_Cancel.AccessibleRole   = AccessibleRole.PushButton;
            _Button_Cancel.ColorTable       = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
            _Button_Cancel.DialogResult     = DialogResult.Cancel;
            _Button_Cancel.FocusCuesEnabled = false;
            _Button_Cancel.Location         = new Point(65, 133);
            _Button_Cancel.Name             = "Button_Cancel";
            _Button_Cancel.Size             = new Size(56, 23);
            _Button_Cancel.Style            = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            _Button_Cancel.TabIndex         = 103;
            _Button_Cancel.Text             = "Cancel";
            //
            // Button_Okay
            //
            _Button_Okay.AccessibleRole   = AccessibleRole.PushButton;
            _Button_Okay.ColorTable       = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
            _Button_Okay.DialogResult     = DialogResult.OK;
            _Button_Okay.FocusCuesEnabled = false;
            _Button_Okay.Location         = new Point(3, 133);
            _Button_Okay.Name             = "Button_Okay";
            _Button_Okay.Size             = new Size(56, 23);
            _Button_Okay.Style            = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            _Button_Okay.TabIndex         = 102;
            _Button_Okay.Text             = "Okay";
            //
            // GroupBox_Type
            //
            _GroupBox_Type.Controls.Add(_CheckBoxX_Mist);
            _GroupBox_Type.Controls.Add(_CheckBoxX_ToxicHaze);
            _GroupBox_Type.Controls.Add(_CheckBoxX_Water);
            _GroupBox_Type.Location = new Point(3, 3);
            _GroupBox_Type.Name     = "GroupBox_Type";
            _GroupBox_Type.Size     = new Size(118, 124);
            _GroupBox_Type.TabIndex = 104;
            _GroupBox_Type.TabStop  = false;
            _GroupBox_Type.Text     = "Type";
            //
            // CheckBoxX_Mist
            //
            //
            //
            //
            _CheckBoxX_Mist.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            _CheckBoxX_Mist.CheckBoxStyle    = DevComponents.DotNetBar.eCheckBoxStyle.RadioButton;
            _CheckBoxX_Mist.FocusCuesEnabled = false;
            _CheckBoxX_Mist.Location         = new Point(6, 71);
            _CheckBoxX_Mist.Name             = "CheckBoxX_Mist";
            _CheckBoxX_Mist.Size             = new Size(106, 20);
            _CheckBoxX_Mist.Style            = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            _CheckBoxX_Mist.TabIndex         = 2;
            _CheckBoxX_Mist.Text             = "Mist";
            //
            // CheckBoxX_ToxicHaze
            //
            //
            //
            //
            _CheckBoxX_ToxicHaze.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            _CheckBoxX_ToxicHaze.CheckBoxStyle    = DevComponents.DotNetBar.eCheckBoxStyle.RadioButton;
            _CheckBoxX_ToxicHaze.FocusCuesEnabled = false;
            _CheckBoxX_ToxicHaze.Location         = new Point(6, 45);
            _CheckBoxX_ToxicHaze.Name             = "CheckBoxX_ToxicHaze";
            _CheckBoxX_ToxicHaze.Size             = new Size(106, 20);
            _CheckBoxX_ToxicHaze.Style            = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            _CheckBoxX_ToxicHaze.TabIndex         = 1;
            _CheckBoxX_ToxicHaze.Text             = "Toxic Haze";
            //
            // CheckBoxX_Water
            //
            //
            //
            //
            _CheckBoxX_Water.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            _CheckBoxX_Water.CheckBoxStyle    = DevComponents.DotNetBar.eCheckBoxStyle.RadioButton;
            _CheckBoxX_Water.FocusCuesEnabled = false;
            _CheckBoxX_Water.Location         = new Point(6, 19);
            _CheckBoxX_Water.Name             = "CheckBoxX_Water";
            _CheckBoxX_Water.Size             = new Size(106, 20);
            _CheckBoxX_Water.Style            = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            _CheckBoxX_Water.TabIndex         = 0;
            _CheckBoxX_Water.Text             = "Water";
            //
            // GroupBox_Box
            //
            _GroupBox_Box.Controls.Add(_LabelX3);
            _GroupBox_Box.Controls.Add(_IntegerInput_Alpha);
            _GroupBox_Box.Controls.Add(_LabelX2);
            _GroupBox_Box.Controls.Add(_ComboBox_WaterType);
            _GroupBox_Box.Controls.Add(_LabelX1);
            _GroupBox_Box.Controls.Add(_Button_SetUpHeight);
            _GroupBox_Box.Controls.Add(_LabelX_Height);
            _GroupBox_Box.Controls.Add(_IntegerInput_Scale);
            _GroupBox_Box.Controls.Add(_Button_SetUpPos2);
            _GroupBox_Box.Controls.Add(_Button_SetUpPos1);
            _GroupBox_Box.Controls.Add(_LabelX_Pos2);
            _GroupBox_Box.Controls.Add(_LabelX_Pos1);
            _GroupBox_Box.Controls.Add(_LabelX59);
            _GroupBox_Box.Location = new Point(127, 3);
            _GroupBox_Box.Name     = "GroupBox_Box";
            _GroupBox_Box.Size     = new Size(258, 153);
            _GroupBox_Box.TabIndex = 105;
            _GroupBox_Box.TabStop  = false;
            _GroupBox_Box.Text     = "Box Settings";
            _GroupBox_Box.Visible  = false;
            //
            // LabelX3
            //
            //
            //
            //
            _LabelX3.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            _LabelX3.Location = new Point(123, 121);
            _LabelX3.Name     = "LabelX3";
            _LabelX3.Size     = new Size(15, 23);
            _LabelX3.TabIndex = 116;
            _LabelX3.Text     = "%";
            //
            // IntegerInput_Alpha
            //
            //
            //
            //
            _IntegerInput_Alpha.BackgroundStyle.Class      = "DateTimeInputBackground";
            _IntegerInput_Alpha.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            _IntegerInput_Alpha.ButtonFreeText.Shortcut    = DevComponents.DotNetBar.eShortcut.F2;
            _IntegerInput_Alpha.Location = new Point(87, 123);
            _IntegerInput_Alpha.MaxValue = 100;
            _IntegerInput_Alpha.MinValue = 0;
            _IntegerInput_Alpha.Name     = "IntegerInput_Alpha";
            _IntegerInput_Alpha.Size     = new Size(30, 20);
            _IntegerInput_Alpha.TabIndex = 115;
            _IntegerInput_Alpha.Value    = 30;
            //
            // LabelX2
            //
            //
            //
            //
            _LabelX2.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            _LabelX2.Location = new Point(6, 123);
            _LabelX2.Name     = "LabelX2";
            _LabelX2.Size     = new Size(75, 20);
            _LabelX2.Style    = DevComponents.DotNetBar.eDotNetBarStyle.VS2005;
            _LabelX2.TabIndex = 114;
            _LabelX2.Text     = "Transparence:";
            //
            // ComboBox_WaterType
            //
            _ComboBox_WaterType.DrawMode          = DrawMode.OwnerDrawFixed;
            _ComboBox_WaterType.DropDownStyle     = ComboBoxStyle.DropDownList;
            _ComboBox_WaterType.ForeColor         = Color.Black;
            _ComboBox_WaterType.FormattingEnabled = true;
            _ComboBox_WaterType.ItemHeight        = 15;
            _ComboBox_WaterType.Items.AddRange(new object[] { "Default Water", "Invisible Water", "JRB Water", "Green Water", "Lava Water" });
            _ComboBox_WaterType.Location = new Point(147, 97);
            _ComboBox_WaterType.Name     = "ComboBox_WaterType";
            _ComboBox_WaterType.Size     = new Size(105, 21);
            _ComboBox_WaterType.Style    = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            _ComboBox_WaterType.TabIndex = 111;
            //
            // LabelX1
            //
            //
            //
            //
            _LabelX1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            _LabelX1.Location = new Point(6, 97);
            _LabelX1.Name     = "LabelX1";
            _LabelX1.Size     = new Size(135, 20);
            _LabelX1.Style    = DevComponents.DotNetBar.eDotNetBarStyle.VS2005;
            _LabelX1.TabIndex = 110;
            _LabelX1.Text     = "Water Type:";
            //
            // Button_SetUpHeight
            //
            _Button_SetUpHeight.AccessibleRole   = AccessibleRole.PushButton;
            _Button_SetUpHeight.ColorTable       = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
            _Button_SetUpHeight.FocusCuesEnabled = false;
            _Button_SetUpHeight.Location         = new Point(202, 70);
            _Button_SetUpHeight.Name             = "Button_SetUpHeight";
            _Button_SetUpHeight.Size             = new Size(50, 22);
            _Button_SetUpHeight.Style            = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            _Button_SetUpHeight.TabIndex         = 109;
            _Button_SetUpHeight.Text             = "Set up";
            //
            // LabelX_Height
            //
            //
            //
            //
            _LabelX_Height.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            _LabelX_Height.Location = new Point(120, 71);
            _LabelX_Height.Name     = "LabelX_Height";
            _LabelX_Height.Size     = new Size(76, 20);
            _LabelX_Height.Style    = DevComponents.DotNetBar.eDotNetBarStyle.VS2005;
            _LabelX_Height.TabIndex = 108;
            _LabelX_Height.Text     = "Height: 0";
            //
            // IntegerInput_Scale
            //
            //
            //
            //
            _IntegerInput_Scale.BackgroundStyle.Class      = "DateTimeInputBackground";
            _IntegerInput_Scale.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            _IntegerInput_Scale.ButtonFreeText.Shortcut    = DevComponents.DotNetBar.eShortcut.F2;
            _IntegerInput_Scale.Location   = new Point(44, 71);
            _IntegerInput_Scale.MaxValue   = 8192;
            _IntegerInput_Scale.MinValue   = -8192;
            _IntegerInput_Scale.Name       = "IntegerInput_Scale";
            _IntegerInput_Scale.ShowUpDown = true;
            _IntegerInput_Scale.Size       = new Size(53, 20);
            _IntegerInput_Scale.TabIndex   = 103;
            //
            // Button_SetUpPos2
            //
            _Button_SetUpPos2.AccessibleRole   = AccessibleRole.PushButton;
            _Button_SetUpPos2.ColorTable       = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
            _Button_SetUpPos2.FocusCuesEnabled = false;
            _Button_SetUpPos2.Location         = new Point(202, 44);
            _Button_SetUpPos2.Name             = "Button_SetUpPos2";
            _Button_SetUpPos2.Size             = new Size(50, 22);
            _Button_SetUpPos2.Style            = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            _Button_SetUpPos2.TabIndex         = 102;
            _Button_SetUpPos2.Text             = "Set up";
            //
            // Button_SetUpPos1
            //
            _Button_SetUpPos1.AccessibleRole   = AccessibleRole.PushButton;
            _Button_SetUpPos1.ColorTable       = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
            _Button_SetUpPos1.FocusCuesEnabled = false;
            _Button_SetUpPos1.Location         = new Point(202, 18);
            _Button_SetUpPos1.Name             = "Button_SetUpPos1";
            _Button_SetUpPos1.Size             = new Size(50, 22);
            _Button_SetUpPos1.Style            = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            _Button_SetUpPos1.TabIndex         = 101;
            _Button_SetUpPos1.Text             = "Set up";
            //
            // LabelX_Pos2
            //
            //
            //
            //
            _LabelX_Pos2.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            _LabelX_Pos2.Location = new Point(6, 45);
            _LabelX_Pos2.Name     = "LabelX_Pos2";
            _LabelX_Pos2.Size     = new Size(190, 20);
            _LabelX_Pos2.Style    = DevComponents.DotNetBar.eDotNetBarStyle.VS2005;
            _LabelX_Pos2.TabIndex = 100;
            _LabelX_Pos2.Text     = "Edge 2: 0, 0";
            //
            // LabelX_Pos1
            //
            //
            //
            //
            _LabelX_Pos1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            _LabelX_Pos1.Location = new Point(6, 19);
            _LabelX_Pos1.Name     = "LabelX_Pos1";
            _LabelX_Pos1.Size     = new Size(190, 20);
            _LabelX_Pos1.Style    = DevComponents.DotNetBar.eDotNetBarStyle.VS2005;
            _LabelX_Pos1.TabIndex = 98;
            _LabelX_Pos1.Text     = "Edge 1: 0, 0";
            //
            // LabelX59
            //
            //
            //
            //
            _LabelX59.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            _LabelX59.Location = new Point(6, 71);
            _LabelX59.Name     = "LabelX59";
            _LabelX59.Size     = new Size(32, 20);
            _LabelX59.Style    = DevComponents.DotNetBar.eDotNetBarStyle.VS2005;
            _LabelX59.TabIndex = 95;
            _LabelX59.Text     = "Scale:";
            //
            // Panel1
            //
            _Panel1.BackColor = Color.Transparent;
            _Panel1.Controls.Add(_GroupBox_Type);
            _Panel1.Controls.Add(_GroupBox_Box);
            _Panel1.Controls.Add(_Button_Cancel);
            _Panel1.Controls.Add(_Button_Okay);
            _Panel1.Dock     = DockStyle.Fill;
            _Panel1.Location = new Point(0, 0);
            _Panel1.Name     = "Panel1";
            _Panel1.Size     = new Size(389, 159);
            _Panel1.TabIndex = 106;
            //
            // Form_AddSpecialItem
            //
            AutoScaleDimensions = new SizeF(6.0F, 13.0F);
            AutoScaleMode       = AutoScaleMode.Font;
            ClientSize          = new Size(389, 159);
            Controls.Add(_Panel1);
            FormBorderStyle    = FormBorderStyle.FixedToolWindow;
            Icon               = (Icon)resources.GetObject("$this.Icon");
            MaximizeBox        = false;
            MinimizeBox        = false;
            Name               = "Form_AddSpecialItem";
            ShowIcon           = false;
            StartPosition      = FormStartPosition.CenterScreen;
            Text               = "Add Special Item";
            TopLeftCornerSize  = 0;
            TopRightCornerSize = 0;
            _GroupBox_Type.ResumeLayout(false);
            _GroupBox_Box.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)_IntegerInput_Alpha).EndInit();
            ((System.ComponentModel.ISupportInitialize)_IntegerInput_Scale).EndInit();
            _Panel1.ResumeLayout(false);
            ResumeLayout(false);
        }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.lblMsg = new DevComponents.DotNetBar.LabelX();
     this.btnShowError = new DevComponents.DotNetBar.ButtonX();
     this.btnExit = new DevComponents.DotNetBar.ButtonX();
     this.SuspendLayout();
     //
     // lblMsg
     //
     this.lblMsg.BackColor = System.Drawing.Color.Transparent;
     //
     //
     //
     this.lblMsg.BackgroundStyle.Class = "";
     this.lblMsg.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.lblMsg.Location = new System.Drawing.Point(12, 12);
     this.lblMsg.Name = "lblMsg";
     this.lblMsg.Size = new System.Drawing.Size(311, 40);
     this.lblMsg.TabIndex = 0;
     this.lblMsg.Text = "labelX1";
     //
     // btnShowError
     //
     this.btnShowError.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btnShowError.AutoSize = true;
     this.btnShowError.BackColor = System.Drawing.Color.Transparent;
     this.btnShowError.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.btnShowError.Location = new System.Drawing.Point(156, 61);
     this.btnShowError.Name = "btnShowError";
     this.btnShowError.Size = new System.Drawing.Size(78, 25);
     this.btnShowError.TabIndex = 1;
     this.btnShowError.Text = "檢視錯誤檔";
     this.btnShowError.Click += new System.EventHandler(this.btnShowError_Click);
     //
     // btnExit
     //
     this.btnExit.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btnExit.AutoSize = true;
     this.btnExit.BackColor = System.Drawing.Color.Transparent;
     this.btnExit.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.btnExit.Location = new System.Drawing.Point(253, 61);
     this.btnExit.Name = "btnExit";
     this.btnExit.Size = new System.Drawing.Size(59, 25);
     this.btnExit.TabIndex = 2;
     this.btnExit.Text = "離開";
     this.btnExit.Click += new System.EventHandler(this.btnExit_Click);
     //
     // PhotoCompleteMessage
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 17F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(324, 90);
     this.Controls.Add(this.btnExit);
     this.Controls.Add(this.btnShowError);
     this.Controls.Add(this.lblMsg);
     this.DoubleBuffered = true;
     this.Name = "PhotoCompleteMessage";
     this.Text = "PhotoProcessMessage";
     this.ResumeLayout(false);
     this.PerformLayout();
 }
 /// <summary>
 /// 此為設計工具支援所需的方法 - 請勿使用程式碼編輯器修改這個方法的內容。
 ///
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ImportClassV2));
     this.wizard1 = new DevComponents.DotNetBar.Wizard();
     this.wizardPage1 = new DevComponents.DotNetBar.WizardPage();
     this.chkTrim = new DevComponents.DotNetBar.Controls.CheckBoxX();
     this.linkLabel2 = new System.Windows.Forms.LinkLabel();
     this.lblReqFields = new DevComponents.DotNetBar.LabelX();
     this.labelX1 = new DevComponents.DotNetBar.LabelX();
     this.buttonX1 = new DevComponents.DotNetBar.ButtonX();
     this.txtFile = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.wizardPage2 = new DevComponents.DotNetBar.WizardPage();
     this.checkBox1 = new System.Windows.Forms.CheckBox();
     this.listView1 = new System.Windows.Forms.ListView();
     this.wizardPage3 = new DevComponents.DotNetBar.WizardPage();
     this.linkLabel3 = new System.Windows.Forms.LinkLabel();
     this.linkLabel1 = new System.Windows.Forms.LinkLabel();
     this.lblErrCount = new DevComponents.DotNetBar.LabelX();
     this.labelX4 = new DevComponents.DotNetBar.LabelX();
     this.lblWarningCount = new DevComponents.DotNetBar.LabelX();
     this.labelX3 = new DevComponents.DotNetBar.LabelX();
     this.progressBarX1 = new DevComponents.DotNetBar.Controls.ProgressBarX();
     this.labelX2 = new DevComponents.DotNetBar.LabelX();
     this.SelectSourceFileDialog = new System.Windows.Forms.OpenFileDialog();
     this.errorFile = new System.Windows.Forms.ErrorProvider(this.components);
     this.errorKey = new System.Windows.Forms.ErrorProvider(this.components);
     this.wizard1.SuspendLayout();
     this.wizardPage1.SuspendLayout();
     this.wizardPage2.SuspendLayout();
     this.wizardPage3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.errorFile)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.errorKey)).BeginInit();
     this.SuspendLayout();
     //
     // wizard1
     //
     this.wizard1.BackButtonText = "上一步";
     this.wizard1.BackColor = System.Drawing.Color.Transparent;
     this.wizard1.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("wizard1.BackgroundImage")));
     this.wizard1.ButtonStyle = DevComponents.DotNetBar.eWizardStyle.Office2007;
     this.wizard1.CancelButtonText = "關閉";
     this.wizard1.Cursor = System.Windows.Forms.Cursors.Default;
     this.wizard1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.wizard1.FinishButtonTabIndex = 3;
     this.wizard1.FinishButtonText = "開始匯入";
     this.wizard1.FooterHeight = 33;
     //
     //
     //
     this.wizard1.FooterStyle.BackColor = System.Drawing.Color.Transparent;
     this.wizard1.FooterStyle.Class = "";
     this.wizard1.FooterStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.wizard1.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(15)))), ((int)(((byte)(57)))), ((int)(((byte)(129)))));
     this.wizard1.HeaderCaptionFont = new System.Drawing.Font("微軟正黑體", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.wizard1.HeaderDescriptionFont = new System.Drawing.Font("微軟正黑體", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(136)));
     this.wizard1.HeaderDescriptionIndent = 16;
     this.wizard1.HeaderImage = ((System.Drawing.Image)(resources.GetObject("wizard1.HeaderImage")));
     //
     //
     //
     this.wizard1.HeaderStyle.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(191)))), ((int)(((byte)(215)))), ((int)(((byte)(243)))));
     this.wizard1.HeaderStyle.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(219)))), ((int)(((byte)(241)))), ((int)(((byte)(254)))));
     this.wizard1.HeaderStyle.BackColorGradientAngle = 90;
     this.wizard1.HeaderStyle.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.wizard1.HeaderStyle.BorderBottomColor = System.Drawing.Color.FromArgb(((int)(((byte)(121)))), ((int)(((byte)(157)))), ((int)(((byte)(182)))));
     this.wizard1.HeaderStyle.BorderBottomWidth = 1;
     this.wizard1.HeaderStyle.BorderColor = System.Drawing.SystemColors.Control;
     this.wizard1.HeaderStyle.BorderLeftWidth = 1;
     this.wizard1.HeaderStyle.BorderRightWidth = 1;
     this.wizard1.HeaderStyle.BorderTopWidth = 1;
     this.wizard1.HeaderStyle.Class = "";
     this.wizard1.HeaderStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.wizard1.HeaderStyle.TextAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Center;
     this.wizard1.HeaderStyle.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.wizard1.HelpButtonVisible = false;
     this.wizard1.LicenseKey = "F962CEC7-CD8F-4911-A9E9-CAB39962FC1F";
     this.wizard1.Location = new System.Drawing.Point(0, 0);
     this.wizard1.Name = "wizard1";
     this.wizard1.NextButtonText = "下一步";
     this.wizard1.Size = new System.Drawing.Size(464, 323);
     this.wizard1.TabIndex = 0;
     this.wizard1.WizardPages.AddRange(new DevComponents.DotNetBar.WizardPage[] {
     this.wizardPage1,
     this.wizardPage2,
     this.wizardPage3});
     this.wizard1.WizardPageChanged += new DevComponents.DotNetBar.WizardPageChangeEventHandler(this.wizard1_WizardPageChanged);
     //
     // wizardPage1
     //
     this.wizardPage1.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.wizardPage1.AntiAlias = false;
     this.wizardPage1.BackButtonVisible = DevComponents.DotNetBar.eWizardButtonState.False;
     this.wizardPage1.BackColor = System.Drawing.Color.Transparent;
     this.wizardPage1.Controls.Add(this.chkTrim);
     this.wizardPage1.Controls.Add(this.linkLabel2);
     this.wizardPage1.Controls.Add(this.lblReqFields);
     this.wizardPage1.Controls.Add(this.labelX1);
     this.wizardPage1.Controls.Add(this.buttonX1);
     this.wizardPage1.Controls.Add(this.txtFile);
     this.wizardPage1.Location = new System.Drawing.Point(7, 72);
     this.wizardPage1.Name = "wizardPage1";
     this.wizardPage1.NextButtonEnabled = DevComponents.DotNetBar.eWizardButtonState.False;
     this.wizardPage1.PageDescription = "選取匯入檔案";
     this.wizardPage1.Size = new System.Drawing.Size(450, 206);
     //
     //
     //
     this.wizardPage1.Style.Class = "";
     this.wizardPage1.Style.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.wizardPage1.StyleMouseDown.Class = "";
     this.wizardPage1.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.wizardPage1.StyleMouseOver.Class = "";
     this.wizardPage1.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.wizardPage1.TabIndex = 7;
     //
     // chkTrim
     //
     this.chkTrim.AutoSize = true;
     //
     //
     //
     this.chkTrim.BackgroundStyle.Class = "";
     this.chkTrim.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.chkTrim.Checked = true;
     this.chkTrim.CheckState = System.Windows.Forms.CheckState.Checked;
     this.chkTrim.CheckValue = "Y";
     this.chkTrim.Location = new System.Drawing.Point(35, 65);
     this.chkTrim.Name = "chkTrim";
     this.chkTrim.Size = new System.Drawing.Size(161, 21);
     this.chkTrim.TabIndex = 4;
     this.chkTrim.Text = "自動過慮頭尾空白字元";
     this.chkTrim.CheckedChanged += new System.EventHandler(this.chkTrim_CheckedChanged);
     //
     // linkLabel2
     //
     this.linkLabel2.AutoSize = true;
     this.linkLabel2.Location = new System.Drawing.Point(357, 65);
     this.linkLabel2.Name = "linkLabel2";
     this.linkLabel2.Size = new System.Drawing.Size(60, 17);
     this.linkLabel2.TabIndex = 3;
     this.linkLabel2.TabStop = true;
     this.linkLabel2.Text = "重新整理";
     this.linkLabel2.Visible = false;
     this.linkLabel2.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel2_LinkClicked);
     //
     // lblReqFields
     //
     this.lblReqFields.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.lblReqFields.BackgroundStyle.Class = "";
     this.lblReqFields.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.lblReqFields.Location = new System.Drawing.Point(105, 85);
     this.lblReqFields.Name = "lblReqFields";
     this.lblReqFields.Size = new System.Drawing.Size(312, 121);
     this.lblReqFields.TabIndex = 2;
     this.lblReqFields.TextLineAlignment = System.Drawing.StringAlignment.Near;
     this.lblReqFields.WordWrap = true;
     //
     // labelX1
     //
     this.labelX1.AutoSize = true;
     //
     //
     //
     this.labelX1.BackgroundStyle.Class = "";
     this.labelX1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX1.Location = new System.Drawing.Point(35, 85);
     this.labelX1.Name = "labelX1";
     this.labelX1.Size = new System.Drawing.Size(74, 21);
     this.labelX1.TabIndex = 2;
     this.labelX1.Text = "必要欄位:";
     //
     // 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.Location = new System.Drawing.Point(394, 36);
     this.buttonX1.Name = "buttonX1";
     this.buttonX1.Size = new System.Drawing.Size(23, 25);
     this.buttonX1.TabIndex = 1;
     this.buttonX1.Text = "‧‧‧";
     this.buttonX1.Click += new System.EventHandler(this.buttonX1_Click);
     //
     // txtFile
     //
     this.txtFile.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     //
     //
     //
     this.txtFile.Border.Class = "TextBoxBorder";
     this.txtFile.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txtFile.Location = new System.Drawing.Point(35, 36);
     this.txtFile.Name = "txtFile";
     this.txtFile.Size = new System.Drawing.Size(353, 25);
     this.txtFile.TabIndex = 0;
     this.txtFile.TextChanged += new System.EventHandler(this.txtFile_TextChanged);
     //
     // wizardPage2
     //
     this.wizardPage2.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.wizardPage2.AntiAlias = false;
     this.wizardPage2.BackColor = System.Drawing.Color.Transparent;
     this.wizardPage2.Controls.Add(this.checkBox1);
     this.wizardPage2.Controls.Add(this.listView1);
     this.wizardPage2.Location = new System.Drawing.Point(7, 72);
     this.wizardPage2.Name = "wizardPage2";
     this.wizardPage2.PageDescription = "選取匯入欄位";
     this.wizardPage2.Size = new System.Drawing.Size(450, 206);
     //
     //
     //
     this.wizardPage2.Style.Class = "";
     this.wizardPage2.Style.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.wizardPage2.StyleMouseDown.Class = "";
     this.wizardPage2.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.wizardPage2.StyleMouseOver.Class = "";
     this.wizardPage2.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.wizardPage2.TabIndex = 8;
     //
     // checkBox1
     //
     this.checkBox1.AutoSize = true;
     this.checkBox1.BackColor = System.Drawing.Color.Transparent;
     this.checkBox1.Location = new System.Drawing.Point(0, -2);
     this.checkBox1.Name = "checkBox1";
     this.checkBox1.Size = new System.Drawing.Size(72, 16);
     this.checkBox1.TabIndex = 1;
     this.checkBox1.Text = "全部選取";
     this.checkBox1.UseVisualStyleBackColor = false;
     //
     // listView1
     //
     this.listView1.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.listView1.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.listView1.CheckBoxes = true;
     this.listView1.Location = new System.Drawing.Point(0, 17);
     this.listView1.Name = "listView1";
     this.listView1.ShowGroups = false;
     this.listView1.Size = new System.Drawing.Size(450, 189);
     this.listView1.TabIndex = 0;
     this.listView1.UseCompatibleStateImageBehavior = false;
     this.listView1.View = System.Windows.Forms.View.List;
     //
     // wizardPage3
     //
     this.wizardPage3.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.wizardPage3.AntiAlias = false;
     this.wizardPage3.BackColor = System.Drawing.Color.Transparent;
     this.wizardPage3.Controls.Add(this.linkLabel3);
     this.wizardPage3.Controls.Add(this.linkLabel1);
     this.wizardPage3.Controls.Add(this.lblErrCount);
     this.wizardPage3.Controls.Add(this.labelX4);
     this.wizardPage3.Controls.Add(this.lblWarningCount);
     this.wizardPage3.Controls.Add(this.labelX3);
     this.wizardPage3.Controls.Add(this.progressBarX1);
     this.wizardPage3.Controls.Add(this.labelX2);
     this.wizardPage3.FinishButtonEnabled = DevComponents.DotNetBar.eWizardButtonState.False;
     this.wizardPage3.Location = new System.Drawing.Point(7, 72);
     this.wizardPage3.Name = "wizardPage3";
     this.wizardPage3.NextButtonVisible = DevComponents.DotNetBar.eWizardButtonState.False;
     this.wizardPage3.PageDescription = "驗證匯入資料";
     this.wizardPage3.Size = new System.Drawing.Size(450, 206);
     //
     //
     //
     this.wizardPage3.Style.Class = "";
     this.wizardPage3.Style.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.wizardPage3.StyleMouseDown.Class = "";
     this.wizardPage3.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.wizardPage3.StyleMouseOver.Class = "";
     this.wizardPage3.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.wizardPage3.TabIndex = 9;
     this.wizardPage3.AfterPageDisplayed += new DevComponents.DotNetBar.WizardPageChangeEventHandler(this.wizardPage3_AfterPageDisplayed);
     this.wizardPage3.BackButtonClick += new System.ComponentModel.CancelEventHandler(this.wizardPage3_BackButtonClick);
     this.wizardPage3.FinishButtonClick += new System.ComponentModel.CancelEventHandler(this.wizardPage3_FinishButtonClick);
     //
     // linkLabel3
     //
     this.linkLabel3.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.linkLabel3.AutoSize = true;
     this.linkLabel3.Location = new System.Drawing.Point(353, 187);
     this.linkLabel3.Name = "linkLabel3";
     this.linkLabel3.Size = new System.Drawing.Size(60, 17);
     this.linkLabel3.TabIndex = 4;
     this.linkLabel3.TabStop = true;
     this.linkLabel3.Text = "終止驗證";
     this.linkLabel3.Visible = false;
     this.linkLabel3.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel3_LinkClicked);
     //
     // linkLabel1
     //
     this.linkLabel1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.linkLabel1.AutoSize = true;
     this.linkLabel1.Location = new System.Drawing.Point(314, 187);
     this.linkLabel1.Name = "linkLabel1";
     this.linkLabel1.Size = new System.Drawing.Size(99, 17);
     this.linkLabel1.TabIndex = 3;
     this.linkLabel1.TabStop = true;
     this.linkLabel1.Text = "檢視驗證後資料";
     this.linkLabel1.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel1_LinkClicked);
     //
     // lblErrCount
     //
     this.lblErrCount.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.lblErrCount.AutoSize = true;
     //
     //
     //
     this.lblErrCount.BackgroundStyle.Class = "";
     this.lblErrCount.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.lblErrCount.Location = new System.Drawing.Point(159, 139);
     this.lblErrCount.Name = "lblErrCount";
     this.lblErrCount.Size = new System.Drawing.Size(15, 21);
     this.lblErrCount.TabIndex = 2;
     this.lblErrCount.Text = "0";
     //
     // labelX4
     //
     this.labelX4.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.labelX4.AutoSize = true;
     //
     //
     //
     this.labelX4.BackgroundStyle.Class = "";
     this.labelX4.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX4.Location = new System.Drawing.Point(58, 139);
     this.labelX4.Name = "labelX4";
     this.labelX4.Size = new System.Drawing.Size(101, 21);
     this.labelX4.TabIndex = 2;
     this.labelX4.Text = "錯誤資料筆數:";
     //
     // lblWarningCount
     //
     this.lblWarningCount.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.lblWarningCount.AutoSize = true;
     //
     //
     //
     this.lblWarningCount.BackgroundStyle.Class = "";
     this.lblWarningCount.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.lblWarningCount.Location = new System.Drawing.Point(159, 101);
     this.lblWarningCount.Name = "lblWarningCount";
     this.lblWarningCount.Size = new System.Drawing.Size(15, 21);
     this.lblWarningCount.TabIndex = 2;
     this.lblWarningCount.Text = "0";
     //
     // labelX3
     //
     this.labelX3.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.labelX3.AutoSize = true;
     //
     //
     //
     this.labelX3.BackgroundStyle.Class = "";
     this.labelX3.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX3.Location = new System.Drawing.Point(58, 101);
     this.labelX3.Name = "labelX3";
     this.labelX3.Size = new System.Drawing.Size(101, 21);
     this.labelX3.TabIndex = 2;
     this.labelX3.Text = "警告資料筆數:";
     //
     // progressBarX1
     //
     this.progressBarX1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     //
     //
     //
     this.progressBarX1.BackgroundStyle.Class = "";
     this.progressBarX1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.progressBarX1.Location = new System.Drawing.Point(118, 30);
     this.progressBarX1.Name = "progressBarX1";
     this.progressBarX1.Size = new System.Drawing.Size(295, 23);
     this.progressBarX1.TabIndex = 1;
     this.progressBarX1.Text = "progressBarX1";
     //
     // labelX2
     //
     this.labelX2.AutoSize = true;
     //
     //
     //
     this.labelX2.BackgroundStyle.Class = "";
     this.labelX2.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX2.Location = new System.Drawing.Point(37, 32);
     this.labelX2.Name = "labelX2";
     this.labelX2.Size = new System.Drawing.Size(74, 21);
     this.labelX2.TabIndex = 0;
     this.labelX2.Text = "資料驗證中";
     //
     // SelectSourceFileDialog
     //
     this.SelectSourceFileDialog.Filter = "Excel 檔案 (*.xls)| *.xls";
     //
     // errorFile
     //
     this.errorFile.BlinkRate = 0;
     this.errorFile.BlinkStyle = System.Windows.Forms.ErrorBlinkStyle.NeverBlink;
     this.errorFile.ContainerControl = this;
     //
     // errorKey
     //
     this.errorKey.ContainerControl = this;
     //
     // ImportClassV2
     //
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
     this.ClientSize = new System.Drawing.Size(464, 323);
     this.Controls.Add(this.wizard1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.Margin = new System.Windows.Forms.Padding(4);
     this.Name = "ImportClassV2";
     this.Text = "";
     this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.ImportStudent_FormClosed);
     this.wizard1.ResumeLayout(false);
     this.wizardPage1.ResumeLayout(false);
     this.wizardPage1.PerformLayout();
     this.wizardPage2.ResumeLayout(false);
     this.wizardPage2.PerformLayout();
     this.wizardPage3.ResumeLayout(false);
     this.wizardPage3.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.errorFile)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.errorKey)).EndInit();
     this.ResumeLayout(false);
 }
Пример #45
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.lvhanghoa = new DevComponents.DotNetBar.Controls.ListViewEx();
     this.columnHeader7 = new System.Windows.Forms.ColumnHeader();
     this.columnHeader2 = new System.Windows.Forms.ColumnHeader();
     this.columnHeader1 = new System.Windows.Forms.ColumnHeader();
     this.columnHeader3 = new System.Windows.Forms.ColumnHeader();
     this.columnHeader4 = new System.Windows.Forms.ColumnHeader();
     this.groupPanel2 = new DevComponents.DotNetBar.Controls.GroupPanel();
     this.cmb_QG = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.comboItem3 = new DevComponents.Editors.ComboItem();
     this.comboItem4 = new DevComponents.Editors.ComboItem();
     this.txtDienThoai = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.labelX2 = new DevComponents.DotNetBar.LabelX();
     this.labelX1 = new DevComponents.DotNetBar.LabelX();
     this.panel5 = new System.Windows.Forms.Panel();
     this.buttonX6 = new DevComponents.DotNetBar.ButtonX();
     this.buttonX4 = new DevComponents.DotNetBar.ButtonX();
     this.buttonX5 = new DevComponents.DotNetBar.ButtonX();
     this.txttennsx = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.labelX26 = new DevComponents.DotNetBar.LabelX();
     this.groupPanel1.SuspendLayout();
     this.groupPanel2.SuspendLayout();
     this.panel5.SuspendLayout();
     this.SuspendLayout();
     //
     // groupPanel1
     //
     this.groupPanel1.Anchor = System.Windows.Forms.AnchorStyles.Top;
     this.groupPanel1.BackColor = System.Drawing.Color.Transparent;
     this.groupPanel1.CanvasColor = System.Drawing.SystemColors.Control;
     this.groupPanel1.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.groupPanel1.Controls.Add(this.lvhanghoa);
     this.groupPanel1.Location = new System.Drawing.Point(34, 214);
     this.groupPanel1.Name = "groupPanel1";
     this.groupPanel1.Size = new System.Drawing.Size(555, 217);
     //
     //
     //
     this.groupPanel1.Style.BackColor = System.Drawing.Color.Transparent;
     this.groupPanel1.Style.BackColor2 = System.Drawing.Color.Transparent;
     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.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 = 75;
     this.groupPanel1.Text = "DANH SÁCH NHÀ SẢN XUẤT";
     //
     // lvhanghoa
     //
     //
     //
     //
     this.lvhanghoa.Border.Class = "ListViewBorder";
     this.lvhanghoa.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
     this.columnHeader7,
     this.columnHeader2,
     this.columnHeader1,
     this.columnHeader3,
     this.columnHeader4});
     this.lvhanghoa.FullRowSelect = true;
     this.lvhanghoa.GridLines = true;
     this.lvhanghoa.Location = new System.Drawing.Point(7, 3);
     this.lvhanghoa.Name = "lvhanghoa";
     this.lvhanghoa.Size = new System.Drawing.Size(531, 177);
     this.lvhanghoa.TabIndex = 71;
     this.lvhanghoa.UseCompatibleStateImageBehavior = false;
     this.lvhanghoa.View = System.Windows.Forms.View.Details;
     this.lvhanghoa.SelectedIndexChanged += new System.EventHandler(this.lvhanghoa_SelectedIndexChanged);
     //
     // columnHeader7
     //
     this.columnHeader7.Text = "STT";
     this.columnHeader7.Width = 46;
     //
     // columnHeader2
     //
     this.columnHeader2.Text = "Tên NSX";
     this.columnHeader2.Width = 190;
     //
     // columnHeader1
     //
     this.columnHeader1.Text = "MÃ QG";
     this.columnHeader1.Width = 106;
     //
     // columnHeader3
     //
     this.columnHeader3.Text = "Điện Thoại";
     this.columnHeader3.Width = 111;
     //
     // columnHeader4
     //
     this.columnHeader4.Text = "masx";
     this.columnHeader4.Width = 0;
     //
     // groupPanel2
     //
     this.groupPanel2.Anchor = System.Windows.Forms.AnchorStyles.Top;
     this.groupPanel2.BackColor = System.Drawing.Color.Transparent;
     this.groupPanel2.CanvasColor = System.Drawing.SystemColors.Control;
     this.groupPanel2.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.groupPanel2.Controls.Add(this.cmb_QG);
     this.groupPanel2.Controls.Add(this.txtDienThoai);
     this.groupPanel2.Controls.Add(this.labelX2);
     this.groupPanel2.Controls.Add(this.labelX1);
     this.groupPanel2.Controls.Add(this.panel5);
     this.groupPanel2.Controls.Add(this.txttennsx);
     this.groupPanel2.Controls.Add(this.labelX26);
     this.groupPanel2.Location = new System.Drawing.Point(34, 41);
     this.groupPanel2.Name = "groupPanel2";
     this.groupPanel2.Size = new System.Drawing.Size(555, 171);
     //
     //
     //
     this.groupPanel2.Style.BackColor = System.Drawing.Color.Transparent;
     this.groupPanel2.Style.BackColor2 = System.Drawing.Color.Transparent;
     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.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 = 0;
     this.groupPanel2.Text = "THÔNG TIN NHÀ SẢN XUẤT";
     //
     // cmb_QG
     //
     this.cmb_QG.DisplayMember = "Text";
     this.cmb_QG.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.cmb_QG.FocusHighlightEnabled = true;
     this.cmb_QG.FormattingEnabled = true;
     this.cmb_QG.ItemHeight = 18;
     this.cmb_QG.Items.AddRange(new object[] {
     this.comboItem3,
     this.comboItem4});
     this.cmb_QG.Location = new System.Drawing.Point(106, 51);
     this.cmb_QG.Name = "cmb_QG";
     this.cmb_QG.Size = new System.Drawing.Size(193, 24);
     this.cmb_QG.TabIndex = 1;
     //
     // comboItem3
     //
     this.comboItem3.Text = "Nhập hàng";
     //
     // comboItem4
     //
     this.comboItem4.Text = "Trả hàng";
     //
     // txtDienThoai
     //
     //
     //
     //
     this.txtDienThoai.Border.Class = "TextBoxBorder";
     this.txtDienThoai.FocusHighlightEnabled = true;
     this.txtDienThoai.Location = new System.Drawing.Point(106, 83);
     this.txtDienThoai.Name = "txtDienThoai";
     this.txtDienThoai.Size = new System.Drawing.Size(193, 24);
     this.txtDienThoai.TabIndex = 2;
     //
     // labelX2
     //
     this.labelX2.Location = new System.Drawing.Point(21, 79);
     this.labelX2.Name = "labelX2";
     this.labelX2.Size = new System.Drawing.Size(79, 25);
     this.labelX2.TabIndex = 74;
     this.labelX2.Text = "Điện thoại:";
     //
     // labelX1
     //
     this.labelX1.Location = new System.Drawing.Point(21, 48);
     this.labelX1.Name = "labelX1";
     this.labelX1.Size = new System.Drawing.Size(70, 25);
     this.labelX1.TabIndex = 72;
     this.labelX1.Text = "Quốc gia:";
     //
     // panel5
     //
     this.panel5.BackColor = System.Drawing.Color.SteelBlue;
     this.panel5.Controls.Add(this.buttonX6);
     this.panel5.Controls.Add(this.buttonX4);
     this.panel5.Controls.Add(this.buttonX5);
     this.panel5.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.panel5.Location = new System.Drawing.Point(0, 116);
     this.panel5.Margin = new System.Windows.Forms.Padding(0);
     this.panel5.Name = "panel5";
     this.panel5.Size = new System.Drawing.Size(549, 30);
     this.panel5.TabIndex = 3;
     //
     // buttonX6
     //
     this.buttonX6.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.buttonX6.ColorTable = DevComponents.DotNetBar.eButtonColor.Office2007WithBackground;
     this.buttonX6.Location = new System.Drawing.Point(223, 2);
     this.buttonX6.Margin = new System.Windows.Forms.Padding(0);
     this.buttonX6.Name = "buttonX6";
     this.buttonX6.Size = new System.Drawing.Size(70, 27);
     this.buttonX6.TabIndex = 1;
     this.buttonX6.Text = "Sửa";
     this.buttonX6.Click += new System.EventHandler(this.buttonX6_Click);
     //
     // buttonX4
     //
     this.buttonX4.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.buttonX4.ColorTable = DevComponents.DotNetBar.eButtonColor.Office2007WithBackground;
     this.buttonX4.Location = new System.Drawing.Point(305, 2);
     this.buttonX4.Margin = new System.Windows.Forms.Padding(0);
     this.buttonX4.Name = "buttonX4";
     this.buttonX4.Size = new System.Drawing.Size(70, 27);
     this.buttonX4.TabIndex = 2;
     this.buttonX4.Text = "Xóa";
     this.buttonX4.Click += new System.EventHandler(this.buttonX4_Click);
     //
     // buttonX5
     //
     this.buttonX5.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.buttonX5.ColorTable = DevComponents.DotNetBar.eButtonColor.Office2007WithBackground;
     this.buttonX5.Location = new System.Drawing.Point(140, 2);
     this.buttonX5.Margin = new System.Windows.Forms.Padding(0);
     this.buttonX5.Name = "buttonX5";
     this.buttonX5.Size = new System.Drawing.Size(70, 27);
     this.buttonX5.TabIndex = 0;
     this.buttonX5.Text = "Thêm";
     this.buttonX5.Click += new System.EventHandler(this.buttonX5_Click);
     //
     // txttennsx
     //
     //
     //
     //
     this.txttennsx.Border.Class = "TextBoxBorder";
     this.txttennsx.FocusHighlightEnabled = true;
     this.txttennsx.Location = new System.Drawing.Point(106, 16);
     this.txttennsx.Name = "txttennsx";
     this.txttennsx.Size = new System.Drawing.Size(193, 24);
     this.txttennsx.TabIndex = 0;
     //
     // labelX26
     //
     this.labelX26.Location = new System.Drawing.Point(21, 12);
     this.labelX26.Name = "labelX26";
     this.labelX26.Size = new System.Drawing.Size(70, 25);
     this.labelX26.TabIndex = 60;
     this.labelX26.Text = "Tên NSX:";
     //
     // frmNSX
     //
     this.ClientSize = new System.Drawing.Size(627, 450);
     this.Controls.Add(this.groupPanel1);
     this.Controls.Add(this.groupPanel2);
     this.Name = "frmNSX";
     this.Text = "Nhà sản xuất";
     this.Load += new System.EventHandler(this.frmNSX_Load);
     this.Controls.SetChildIndex(this.groupPanel2, 0);
     this.Controls.SetChildIndex(this.groupPanel1, 0);
     this.groupPanel1.ResumeLayout(false);
     this.groupPanel2.ResumeLayout(false);
     this.panel5.ResumeLayout(false);
     this.ResumeLayout(false);
 }
 /// <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(add_sys_user));
     this.formFrameSkinner1 = new Elegant.Ui.FormFrameSkinner();
     this.groupPanel1 = new DevComponents.DotNetBar.Controls.GroupPanel();
     this.textBoxX3 = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.labelX5 = new DevComponents.DotNetBar.LabelX();
     this.buttonX2 = new DevComponents.DotNetBar.ButtonX();
     this.buttonX1 = new DevComponents.DotNetBar.ButtonX();
     this.maskedTextBox1 = new System.Windows.Forms.MaskedTextBox();
     this.textBoxX2 = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.textBoxX1 = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.switchButton1 = new DevComponents.DotNetBar.Controls.SwitchButton();
     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.pictureBox1 = new System.Windows.Forms.PictureBox();
     this.groupPanel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
     this.SuspendLayout();
     //
     // formFrameSkinner1
     //
     this.formFrameSkinner1.Form = this;
     //
     // groupPanel1
     //
     this.groupPanel1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)));
     this.groupPanel1.CanvasColor = System.Drawing.SystemColors.Control;
     this.groupPanel1.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.groupPanel1.Controls.Add(this.textBoxX3);
     this.groupPanel1.Controls.Add(this.labelX5);
     this.groupPanel1.Controls.Add(this.buttonX2);
     this.groupPanel1.Controls.Add(this.buttonX1);
     this.groupPanel1.Controls.Add(this.maskedTextBox1);
     this.groupPanel1.Controls.Add(this.textBoxX2);
     this.groupPanel1.Controls.Add(this.textBoxX1);
     this.groupPanel1.Controls.Add(this.switchButton1);
     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.Controls.Add(this.pictureBox1);
     this.groupPanel1.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.groupPanel1.Location = new System.Drawing.Point(12, 7);
     this.groupPanel1.Name = "groupPanel1";
     this.groupPanel1.Size = new System.Drawing.Size(333, 435);
     //
     //
     //
     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 = 2;
     this.groupPanel1.Text = "إضافه مستخدم";
     //
     // textBoxX3
     //
     //
     //
     //
     this.textBoxX3.Border.Class = "TextBoxBorder";
     this.textBoxX3.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.textBoxX3.Location = new System.Drawing.Point(14, 240);
     this.textBoxX3.Name = "textBoxX3";
     this.textBoxX3.Size = new System.Drawing.Size(213, 22);
     this.textBoxX3.TabIndex = 12;
     //
     // labelX5
     //
     this.labelX5.BackColor = System.Drawing.Color.Transparent;
     //
     //
     //
     this.labelX5.BackgroundStyle.Class = "";
     this.labelX5.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX5.Location = new System.Drawing.Point(227, 239);
     this.labelX5.Name = "labelX5";
     this.labelX5.Size = new System.Drawing.Size(98, 20);
     this.labelX5.TabIndex = 11;
     this.labelX5.Text = " تاكيد كلمة المرور :";
     //
     // buttonX2
     //
     this.buttonX2.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.buttonX2.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.buttonX2.Location = new System.Drawing.Point(15, 366);
     this.buttonX2.Name = "buttonX2";
     this.buttonX2.Size = new System.Drawing.Size(123, 23);
     this.buttonX2.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.buttonX2.TabIndex = 10;
     this.buttonX2.Text = "صلاحيات المستخدم";
     //
     // buttonX1
     //
     this.buttonX1.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.buttonX1.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.buttonX1.Image = ((System.Drawing.Image)(resources.GetObject("buttonX1.Image")));
     this.buttonX1.ImagePosition = DevComponents.DotNetBar.eImagePosition.Right;
     this.buttonX1.Location = new System.Drawing.Point(152, 366);
     this.buttonX1.Name = "buttonX1";
     this.buttonX1.Size = new System.Drawing.Size(75, 23);
     this.buttonX1.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.buttonX1.TabIndex = 9;
     this.buttonX1.Text = "إضافه";
     //
     // maskedTextBox1
     //
     this.maskedTextBox1.Location = new System.Drawing.Point(15, 277);
     this.maskedTextBox1.Mask = "000-0-000-000";
     this.maskedTextBox1.Name = "maskedTextBox1";
     this.maskedTextBox1.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.maskedTextBox1.Size = new System.Drawing.Size(212, 22);
     this.maskedTextBox1.TabIndex = 8;
     //
     // textBoxX2
     //
     //
     //
     //
     this.textBoxX2.Border.Class = "TextBoxBorder";
     this.textBoxX2.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.textBoxX2.Location = new System.Drawing.Point(15, 202);
     this.textBoxX2.Name = "textBoxX2";
     this.textBoxX2.Size = new System.Drawing.Size(212, 22);
     this.textBoxX2.TabIndex = 7;
     //
     // textBoxX1
     //
     //
     //
     //
     this.textBoxX1.Border.Class = "TextBoxBorder";
     this.textBoxX1.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.textBoxX1.Location = new System.Drawing.Point(15, 164);
     this.textBoxX1.Name = "textBoxX1";
     this.textBoxX1.Size = new System.Drawing.Size(212, 22);
     this.textBoxX1.TabIndex = 6;
     //
     // switchButton1
     //
     //
     //
     //
     this.switchButton1.BackgroundStyle.Class = "";
     this.switchButton1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.switchButton1.Location = new System.Drawing.Point(15, 317);
     this.switchButton1.Name = "switchButton1";
     this.switchButton1.OffText = "لا يعمل";
     this.switchButton1.OnText = "يعمل";
     this.switchButton1.Size = new System.Drawing.Size(212, 22);
     this.switchButton1.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.switchButton1.TabIndex = 5;
     //
     // labelX4
     //
     this.labelX4.BackColor = System.Drawing.Color.Transparent;
     //
     //
     //
     this.labelX4.BackgroundStyle.Class = "";
     this.labelX4.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX4.Location = new System.Drawing.Point(234, 317);
     this.labelX4.Name = "labelX4";
     this.labelX4.Size = new System.Drawing.Size(92, 22);
     this.labelX4.TabIndex = 4;
     this.labelX4.Text = "مفعل :";
     //
     // labelX3
     //
     this.labelX3.BackColor = System.Drawing.Color.Transparent;
     //
     //
     //
     this.labelX3.BackgroundStyle.Class = "";
     this.labelX3.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX3.Location = new System.Drawing.Point(234, 276);
     this.labelX3.Name = "labelX3";
     this.labelX3.Size = new System.Drawing.Size(92, 21);
     this.labelX3.TabIndex = 3;
     this.labelX3.Text = "الجوال :";
     //
     // labelX2
     //
     this.labelX2.BackColor = System.Drawing.Color.Transparent;
     //
     //
     //
     this.labelX2.BackgroundStyle.Class = "";
     this.labelX2.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX2.Location = new System.Drawing.Point(234, 201);
     this.labelX2.Name = "labelX2";
     this.labelX2.Size = new System.Drawing.Size(92, 20);
     this.labelX2.TabIndex = 2;
     this.labelX2.Text = "كلمة المرور :";
     //
     // labelX1
     //
     this.labelX1.BackColor = System.Drawing.Color.Transparent;
     //
     //
     //
     this.labelX1.BackgroundStyle.Class = "";
     this.labelX1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX1.Location = new System.Drawing.Point(233, 160);
     this.labelX1.Name = "labelX1";
     this.labelX1.Size = new System.Drawing.Size(92, 25);
     this.labelX1.TabIndex = 1;
     this.labelX1.Text = "اسم المستخدم :";
     //
     // pictureBox1
     //
     this.pictureBox1.BackColor = System.Drawing.Color.Transparent;
     this.pictureBox1.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox1.Image")));
     this.pictureBox1.Location = new System.Drawing.Point(97, 13);
     this.pictureBox1.Name = "pictureBox1";
     this.pictureBox1.Size = new System.Drawing.Size(144, 132);
     this.pictureBox1.TabIndex = 0;
     this.pictureBox1.TabStop = false;
     //
     // add_sys_user
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(363, 454);
     this.Controls.Add(this.groupPanel1);
     this.Name = "add_sys_user";
     this.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.RightToLeftLayout = true;
     this.Text = "إضافه مستخدم";
     this.groupPanel1.ResumeLayout(false);
     this.groupPanel1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
     this.ResumeLayout(false);
 }
Пример #47
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);
 }
 /// <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.lvhanghoa = new DevComponents.DotNetBar.Controls.ListViewEx();
     this.columnHeader7 = new System.Windows.Forms.ColumnHeader();
     this.columnHeader2 = new System.Windows.Forms.ColumnHeader();
     this.columnHeader9 = new System.Windows.Forms.ColumnHeader();
     this.columnHeader5 = new System.Windows.Forms.ColumnHeader();
     this.columnHeader10 = new System.Windows.Forms.ColumnHeader();
     this.columnHeader3 = new System.Windows.Forms.ColumnHeader();
     this.columnHeader11 = new System.Windows.Forms.ColumnHeader();
     this.columnHeader12 = new System.Windows.Forms.ColumnHeader();
     this.columnHeader13 = new System.Windows.Forms.ColumnHeader();
     this.columnHeader14 = new System.Windows.Forms.ColumnHeader();
     this.columnHeader1 = new System.Windows.Forms.ColumnHeader();
     this.columnHeader4 = new System.Windows.Forms.ColumnHeader();
     this.groupPanel2 = new DevComponents.DotNetBar.Controls.GroupPanel();
     this.labelX6 = new DevComponents.DotNetBar.LabelX();
     this.txtMST = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.txtdienthoai = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.buttonX6 = new DevComponents.DotNetBar.ButtonX();
     this.buttonX4 = new DevComponents.DotNetBar.ButtonX();
     this.buttonX5 = new DevComponents.DotNetBar.ButtonX();
     this.labelX5 = new DevComponents.DotNetBar.LabelX();
     this.labelX4 = new DevComponents.DotNetBar.LabelX();
     this.txt_capdo = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.txt_codekh = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.labelX3 = new DevComponents.DotNetBar.LabelX();
     this.btnNhomKH = new DevComponents.DotNetBar.ButtonX();
     this.panel5 = new System.Windows.Forms.Panel();
     this.cmdInDS = new DevComponents.DotNetBar.ButtonX();
     this.labelX2 = new DevComponents.DotNetBar.LabelX();
     this.cmb_nhom = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.comboItem3 = new DevComponents.Editors.ComboItem();
     this.comboItem4 = new DevComponents.Editors.ComboItem();
     this.cmdTinhThanh = new DevComponents.DotNetBar.ButtonX();
     this.labelX1 = new DevComponents.DotNetBar.LabelX();
     this.labelX27 = new DevComponents.DotNetBar.LabelX();
     this.txt_diachi = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.txt_tenkh = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.labelX26 = new DevComponents.DotNetBar.LabelX();
     this.cmb_tinhthanh = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.comboItem1 = new DevComponents.Editors.ComboItem();
     this.comboItem2 = new DevComponents.Editors.ComboItem();
     this.labelX7 = new DevComponents.DotNetBar.LabelX();
     this.labelX8 = new DevComponents.DotNetBar.LabelX();
     this.txtHanNo = new DevComponents.Editors.IntegerInput();
     this.groupPanel1.SuspendLayout();
     this.groupPanel2.SuspendLayout();
     this.panel5.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtHanNo)).BeginInit();
     this.SuspendLayout();
     //
     // groupPanel1
     //
     this.groupPanel1.Anchor = System.Windows.Forms.AnchorStyles.Top;
     this.groupPanel1.BackColor = System.Drawing.Color.Transparent;
     this.groupPanel1.CanvasColor = System.Drawing.SystemColors.Control;
     this.groupPanel1.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.groupPanel1.Controls.Add(this.lvhanghoa);
     this.groupPanel1.Location = new System.Drawing.Point(5, 301);
     this.groupPanel1.Name = "groupPanel1";
     this.groupPanel1.Size = new System.Drawing.Size(877, 255);
     //
     //
     //
     this.groupPanel1.Style.BackColor = System.Drawing.Color.Transparent;
     this.groupPanel1.Style.BackColor2 = System.Drawing.Color.Transparent;
     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.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 = 75;
     this.groupPanel1.Text = "DANH SÁCH KHÁCH HÀNG";
     //
     // lvhanghoa
     //
     //
     //
     //
     this.lvhanghoa.Border.Class = "ListViewBorder";
     this.lvhanghoa.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
     this.columnHeader7,
     this.columnHeader2,
     this.columnHeader9,
     this.columnHeader5,
     this.columnHeader10,
     this.columnHeader3,
     this.columnHeader11,
     this.columnHeader12,
     this.columnHeader13,
     this.columnHeader14,
     this.columnHeader1,
     this.columnHeader4});
     this.lvhanghoa.Font = new System.Drawing.Font("Arial", 11F);
     this.lvhanghoa.FullRowSelect = true;
     this.lvhanghoa.GridLines = true;
     this.lvhanghoa.Location = new System.Drawing.Point(7, 3);
     this.lvhanghoa.Name = "lvhanghoa";
     this.lvhanghoa.Size = new System.Drawing.Size(864, 226);
     this.lvhanghoa.TabIndex = 71;
     this.lvhanghoa.UseCompatibleStateImageBehavior = false;
     this.lvhanghoa.View = System.Windows.Forms.View.Details;
     this.lvhanghoa.SelectedIndexChanged += new System.EventHandler(this.lvhanghoa_SelectedIndexChanged);
     //
     // columnHeader7
     //
     this.columnHeader7.Text = "STT";
     this.columnHeader7.Width = 54;
     //
     // columnHeader2
     //
     this.columnHeader2.Text = "Code KH";
     this.columnHeader2.Width = 80;
     //
     // columnHeader9
     //
     this.columnHeader9.Text = "Tên KH";
     this.columnHeader9.Width = 235;
     //
     // columnHeader5
     //
     this.columnHeader5.Text = "MST";
     this.columnHeader5.Width = 83;
     //
     // columnHeader10
     //
     this.columnHeader10.Text = "Nhóm";
     this.columnHeader10.Width = 77;
     //
     // columnHeader3
     //
     this.columnHeader3.Text = "Tỉnh thành";
     this.columnHeader3.Width = 100;
     //
     // columnHeader11
     //
     this.columnHeader11.Text = "Địa chỉ";
     this.columnHeader11.Width = 74;
     //
     // columnHeader12
     //
     this.columnHeader12.Text = "Điện thoại";
     this.columnHeader12.Width = 87;
     //
     // columnHeader13
     //
     this.columnHeader13.Text = "Hạn nợ";
     this.columnHeader13.Width = 80;
     //
     // columnHeader14
     //
     this.columnHeader14.Text = "makh";
     this.columnHeader14.Width = 0;
     //
     // columnHeader1
     //
     this.columnHeader1.Text = "MAnhom";
     this.columnHeader1.Width = 0;
     //
     // columnHeader4
     //
     this.columnHeader4.Text = "matinh";
     this.columnHeader4.Width = 0;
     //
     // groupPanel2
     //
     this.groupPanel2.Anchor = System.Windows.Forms.AnchorStyles.Top;
     this.groupPanel2.BackColor = System.Drawing.Color.Transparent;
     this.groupPanel2.CanvasColor = System.Drawing.SystemColors.Control;
     this.groupPanel2.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.groupPanel2.Controls.Add(this.txtHanNo);
     this.groupPanel2.Controls.Add(this.labelX8);
     this.groupPanel2.Controls.Add(this.labelX7);
     this.groupPanel2.Controls.Add(this.labelX6);
     this.groupPanel2.Controls.Add(this.txtMST);
     this.groupPanel2.Controls.Add(this.txtdienthoai);
     this.groupPanel2.Controls.Add(this.buttonX6);
     this.groupPanel2.Controls.Add(this.buttonX4);
     this.groupPanel2.Controls.Add(this.buttonX5);
     this.groupPanel2.Controls.Add(this.labelX5);
     this.groupPanel2.Controls.Add(this.labelX4);
     this.groupPanel2.Controls.Add(this.txt_capdo);
     this.groupPanel2.Controls.Add(this.txt_codekh);
     this.groupPanel2.Controls.Add(this.labelX3);
     this.groupPanel2.Controls.Add(this.btnNhomKH);
     this.groupPanel2.Controls.Add(this.panel5);
     this.groupPanel2.Controls.Add(this.labelX2);
     this.groupPanel2.Controls.Add(this.cmb_nhom);
     this.groupPanel2.Controls.Add(this.cmdTinhThanh);
     this.groupPanel2.Controls.Add(this.labelX1);
     this.groupPanel2.Controls.Add(this.labelX27);
     this.groupPanel2.Controls.Add(this.txt_diachi);
     this.groupPanel2.Controls.Add(this.txt_tenkh);
     this.groupPanel2.Controls.Add(this.labelX26);
     this.groupPanel2.Controls.Add(this.cmb_tinhthanh);
     this.groupPanel2.Location = new System.Drawing.Point(5, 41);
     this.groupPanel2.Name = "groupPanel2";
     this.groupPanel2.Size = new System.Drawing.Size(880, 252);
     //
     //
     //
     this.groupPanel2.Style.BackColor = System.Drawing.Color.Transparent;
     this.groupPanel2.Style.BackColor2 = System.Drawing.Color.Transparent;
     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.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 = 0;
     this.groupPanel2.Text = "THÔNG TIN KHÁCH HÀNG";
     //
     // labelX6
     //
     this.labelX6.Location = new System.Drawing.Point(20, 151);
     this.labelX6.Name = "labelX6";
     this.labelX6.Size = new System.Drawing.Size(71, 25);
     this.labelX6.TabIndex = 83;
     this.labelX6.Text = "Mã Thuế:";
     //
     // txtMST
     //
     //
     //
     //
     this.txtMST.Border.Class = "TextBoxBorder";
     this.txtMST.FocusHighlightEnabled = true;
     this.txtMST.Location = new System.Drawing.Point(106, 151);
     this.txtMST.Multiline = true;
     this.txtMST.Name = "txtMST";
     this.txtMST.Size = new System.Drawing.Size(193, 24);
     this.txtMST.TabIndex = 4;
     //
     // txtdienthoai
     //
     //
     //
     //
     this.txtdienthoai.Border.Class = "TextBoxBorder";
     this.txtdienthoai.FocusHighlightEnabled = true;
     this.txtdienthoai.Location = new System.Drawing.Point(438, 12);
     this.txtdienthoai.Name = "txtdienthoai";
     this.txtdienthoai.Size = new System.Drawing.Size(374, 24);
     this.txtdienthoai.TabIndex = 5;
     //
     // buttonX6
     //
     this.buttonX6.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.buttonX6.ColorTable = DevComponents.DotNetBar.eButtonColor.Office2007WithBackground;
     this.buttonX6.Location = new System.Drawing.Point(408, 199);
     this.buttonX6.Margin = new System.Windows.Forms.Padding(0);
     this.buttonX6.Name = "buttonX6";
     this.buttonX6.Size = new System.Drawing.Size(70, 27);
     this.buttonX6.TabIndex = 9;
     this.buttonX6.Text = "Sửa";
     this.buttonX6.Click += new System.EventHandler(this.buttonX6_Click);
     //
     // buttonX4
     //
     this.buttonX4.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.buttonX4.ColorTable = DevComponents.DotNetBar.eButtonColor.Office2007WithBackground;
     this.buttonX4.Location = new System.Drawing.Point(490, 199);
     this.buttonX4.Margin = new System.Windows.Forms.Padding(0);
     this.buttonX4.Name = "buttonX4";
     this.buttonX4.Size = new System.Drawing.Size(70, 27);
     this.buttonX4.TabIndex = 10;
     this.buttonX4.Text = "Xóa";
     this.buttonX4.Click += new System.EventHandler(this.buttonX4_Click);
     //
     // buttonX5
     //
     this.buttonX5.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.buttonX5.ColorTable = DevComponents.DotNetBar.eButtonColor.Office2007WithBackground;
     this.buttonX5.Location = new System.Drawing.Point(325, 199);
     this.buttonX5.Margin = new System.Windows.Forms.Padding(0);
     this.buttonX5.Name = "buttonX5";
     this.buttonX5.Size = new System.Drawing.Size(70, 27);
     this.buttonX5.TabIndex = 8;
     this.buttonX5.Text = "Thêm";
     this.buttonX5.Click += new System.EventHandler(this.buttonX5_Click);
     //
     // labelX5
     //
     this.labelX5.Location = new System.Drawing.Point(21, 117);
     this.labelX5.Name = "labelX5";
     this.labelX5.Size = new System.Drawing.Size(83, 25);
     this.labelX5.TabIndex = 79;
     this.labelX5.Text = "Tỉnh:";
     //
     // labelX4
     //
     this.labelX4.Location = new System.Drawing.Point(363, 119);
     this.labelX4.Name = "labelX4";
     this.labelX4.Size = new System.Drawing.Size(71, 25);
     this.labelX4.TabIndex = 78;
     this.labelX4.Text = "Cấp độ:";
     //
     // txt_capdo
     //
     //
     //
     //
     this.txt_capdo.Border.Class = "TextBoxBorder";
     this.txt_capdo.FocusHighlightEnabled = true;
     this.txt_capdo.Location = new System.Drawing.Point(438, 121);
     this.txt_capdo.Multiline = true;
     this.txt_capdo.Name = "txt_capdo";
     this.txt_capdo.Size = new System.Drawing.Size(374, 24);
     this.txt_capdo.TabIndex = 7;
     //
     // txt_codekh
     //
     //
     //
     //
     this.txt_codekh.Border.Class = "TextBoxBorder";
     this.txt_codekh.FocusHighlightEnabled = true;
     this.txt_codekh.Location = new System.Drawing.Point(106, 14);
     this.txt_codekh.Name = "txt_codekh";
     this.txt_codekh.Size = new System.Drawing.Size(193, 24);
     this.txt_codekh.TabIndex = 0;
     //
     // labelX3
     //
     this.labelX3.Location = new System.Drawing.Point(21, 10);
     this.labelX3.Name = "labelX3";
     this.labelX3.Size = new System.Drawing.Size(70, 25);
     this.labelX3.TabIndex = 76;
     this.labelX3.Text = "Code KH";
     //
     // btnNhomKH
     //
     this.btnNhomKH.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btnNhomKH.ColorTable = DevComponents.DotNetBar.eButtonColor.Office2007WithBackground;
     this.btnNhomKH.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnNhomKH.Location = new System.Drawing.Point(302, 83);
     this.btnNhomKH.Name = "btnNhomKH";
     this.btnNhomKH.Size = new System.Drawing.Size(25, 22);
     this.btnNhomKH.TabIndex = 74;
     this.btnNhomKH.Text = "+";
     this.btnNhomKH.Click += new System.EventHandler(this.btnNhomKH_Click);
     //
     // panel5
     //
     this.panel5.BackColor = System.Drawing.Color.SteelBlue;
     this.panel5.Controls.Add(this.cmdInDS);
     this.panel5.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.panel5.Location = new System.Drawing.Point(0, 197);
     this.panel5.Margin = new System.Windows.Forms.Padding(0);
     this.panel5.Name = "panel5";
     this.panel5.Size = new System.Drawing.Size(874, 30);
     this.panel5.TabIndex = 70;
     //
     // cmdInDS
     //
     this.cmdInDS.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.cmdInDS.ColorTable = DevComponents.DotNetBar.eButtonColor.Office2007WithBackground;
     this.cmdInDS.Location = new System.Drawing.Point(571, 2);
     this.cmdInDS.Margin = new System.Windows.Forms.Padding(0);
     this.cmdInDS.Name = "cmdInDS";
     this.cmdInDS.Size = new System.Drawing.Size(70, 27);
     this.cmdInDS.TabIndex = 54;
     this.cmdInDS.Text = "In DS";
     this.cmdInDS.Click += new System.EventHandler(this.cmdInDS_Click);
     //
     // labelX2
     //
     this.labelX2.Location = new System.Drawing.Point(21, 83);
     this.labelX2.Name = "labelX2";
     this.labelX2.Size = new System.Drawing.Size(83, 25);
     this.labelX2.TabIndex = 72;
     this.labelX2.Text = "Nhóm:";
     //
     // cmb_nhom
     //
     this.cmb_nhom.DisplayMember = "Text";
     this.cmb_nhom.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.cmb_nhom.FocusHighlightEnabled = true;
     this.cmb_nhom.FormattingEnabled = true;
     this.cmb_nhom.ItemHeight = 18;
     this.cmb_nhom.Items.AddRange(new object[] {
     this.comboItem3,
     this.comboItem4});
     this.cmb_nhom.Location = new System.Drawing.Point(106, 83);
     this.cmb_nhom.Name = "cmb_nhom";
     this.cmb_nhom.Size = new System.Drawing.Size(193, 24);
     this.cmb_nhom.TabIndex = 2;
     //
     // comboItem3
     //
     this.comboItem3.Text = "Nhập hàng";
     //
     // comboItem4
     //
     this.comboItem4.Text = "Trả hàng";
     //
     // cmdTinhThanh
     //
     this.cmdTinhThanh.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.cmdTinhThanh.ColorTable = DevComponents.DotNetBar.eButtonColor.Office2007WithBackground;
     this.cmdTinhThanh.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.cmdTinhThanh.Location = new System.Drawing.Point(302, 120);
     this.cmdTinhThanh.Name = "cmdTinhThanh";
     this.cmdTinhThanh.Size = new System.Drawing.Size(25, 22);
     this.cmdTinhThanh.TabIndex = 71;
     this.cmdTinhThanh.Text = "+";
     this.cmdTinhThanh.Click += new System.EventHandler(this.cmdTinhThanh_Click);
     //
     // labelX1
     //
     this.labelX1.Location = new System.Drawing.Point(363, 60);
     this.labelX1.Name = "labelX1";
     this.labelX1.Size = new System.Drawing.Size(53, 25);
     this.labelX1.TabIndex = 70;
     this.labelX1.Text = "Địa chỉ:";
     //
     // labelX27
     //
     this.labelX27.Location = new System.Drawing.Point(363, 12);
     this.labelX27.Name = "labelX27";
     this.labelX27.Size = new System.Drawing.Size(71, 25);
     this.labelX27.TabIndex = 67;
     this.labelX27.Text = "Điện thoại:";
     //
     // txt_diachi
     //
     //
     //
     //
     this.txt_diachi.Border.Class = "TextBoxBorder";
     this.txt_diachi.FocusHighlightEnabled = true;
     this.txt_diachi.Location = new System.Drawing.Point(438, 48);
     this.txt_diachi.Multiline = true;
     this.txt_diachi.Name = "txt_diachi";
     this.txt_diachi.Size = new System.Drawing.Size(374, 57);
     this.txt_diachi.TabIndex = 6;
     //
     // txt_tenkh
     //
     //
     //
     //
     this.txt_tenkh.Border.Class = "TextBoxBorder";
     this.txt_tenkh.FocusHighlightEnabled = true;
     this.txt_tenkh.Location = new System.Drawing.Point(106, 48);
     this.txt_tenkh.Name = "txt_tenkh";
     this.txt_tenkh.Size = new System.Drawing.Size(193, 24);
     this.txt_tenkh.TabIndex = 1;
     //
     // labelX26
     //
     this.labelX26.Location = new System.Drawing.Point(21, 45);
     this.labelX26.Name = "labelX26";
     this.labelX26.Size = new System.Drawing.Size(70, 25);
     this.labelX26.TabIndex = 60;
     this.labelX26.Text = "Tên KH:";
     //
     // cmb_tinhthanh
     //
     this.cmb_tinhthanh.DisplayMember = "Text";
     this.cmb_tinhthanh.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.cmb_tinhthanh.FocusHighlightEnabled = true;
     this.cmb_tinhthanh.FormattingEnabled = true;
     this.cmb_tinhthanh.ItemHeight = 18;
     this.cmb_tinhthanh.Items.AddRange(new object[] {
     this.comboItem1,
     this.comboItem2});
     this.cmb_tinhthanh.Location = new System.Drawing.Point(106, 120);
     this.cmb_tinhthanh.Name = "cmb_tinhthanh";
     this.cmb_tinhthanh.Size = new System.Drawing.Size(193, 24);
     this.cmb_tinhthanh.TabIndex = 3;
     //
     // comboItem1
     //
     this.comboItem1.Text = "Nhập hàng";
     //
     // comboItem2
     //
     this.comboItem2.Text = "Trả hàng";
     //
     // labelX7
     //
     this.labelX7.Location = new System.Drawing.Point(364, 152);
     this.labelX7.Name = "labelX7";
     this.labelX7.Size = new System.Drawing.Size(71, 25);
     this.labelX7.TabIndex = 84;
     this.labelX7.Text = "Hạn nợ:";
     //
     // labelX8
     //
     this.labelX8.Location = new System.Drawing.Point(520, 154);
     this.labelX8.Name = "labelX8";
     this.labelX8.Size = new System.Drawing.Size(40, 25);
     this.labelX8.TabIndex = 86;
     this.labelX8.Text = "ngày";
     //
     // txtHanNo
     //
     //
     //
     //
     this.txtHanNo.BackgroundStyle.Class = "DateTimeInputBackground";
     this.txtHanNo.ButtonFreeText.Shortcut = DevComponents.DotNetBar.eShortcut.F2;
     this.txtHanNo.Location = new System.Drawing.Point(438, 154);
     this.txtHanNo.Name = "txtHanNo";
     this.txtHanNo.ShowUpDown = true;
     this.txtHanNo.Size = new System.Drawing.Size(80, 24);
     this.txtHanNo.TabIndex = 87;
     //
     // frmKhachHang
     //
     this.ClientSize = new System.Drawing.Size(897, 577);
     this.Controls.Add(this.groupPanel1);
     this.Controls.Add(this.groupPanel2);
     this.Name = "frmKhachHang";
     this.Text = "Quản lý khách hàng";
     this.Load += new System.EventHandler(this.frmKhachHang_Load);
     this.Controls.SetChildIndex(this.groupPanel2, 0);
     this.Controls.SetChildIndex(this.groupPanel1, 0);
     this.groupPanel1.ResumeLayout(false);
     this.groupPanel2.ResumeLayout(false);
     this.panel5.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.txtHanNo)).EndInit();
     this.ResumeLayout(false);
 }
Пример #49
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);
 }
Пример #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(_frmNewFile));
     this.labelX1 = new DevComponents.DotNetBar.LabelX();
     this.labelX2 = new DevComponents.DotNetBar.LabelX();
     this.textBoxName = new System.Windows.Forms.TextBox();
     this.comboBoxType = new System.Windows.Forms.ComboBox();
     this.lbTieuDe = new DevComponents.DotNetBar.Controls.ReflectionLabel();
     this.pictureBox1 = new System.Windows.Forms.PictureBox();
     this._btAdd = new System.Windows.Forms.Button();
     this._btCancal = new System.Windows.Forms.Button();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
     this.SuspendLayout();
     //
     // labelX1
     //
     //
     //
     //
     this.labelX1.BackgroundStyle.Class = "";
     this.labelX1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX1.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelX1.ForeColor = System.Drawing.SystemColors.Highlight;
     this.labelX1.Location = new System.Drawing.Point(166, 109);
     this.labelX1.Name = "labelX1";
     this.labelX1.Size = new System.Drawing.Size(75, 23);
     this.labelX1.TabIndex = 0;
     this.labelX1.Text = "Name";
     //
     // labelX2
     //
     //
     //
     //
     this.labelX2.BackgroundStyle.Class = "";
     this.labelX2.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX2.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelX2.ForeColor = System.Drawing.SystemColors.Highlight;
     this.labelX2.Location = new System.Drawing.Point(166, 141);
     this.labelX2.Name = "labelX2";
     this.labelX2.Size = new System.Drawing.Size(62, 23);
     this.labelX2.TabIndex = 1;
     this.labelX2.Text = "Type";
     //
     // textBoxName
     //
     this.textBoxName.AcceptsTab = true;
     this.textBoxName.Location = new System.Drawing.Point(232, 111);
     this.textBoxName.Name = "textBoxName";
     this.textBoxName.Size = new System.Drawing.Size(245, 20);
     this.textBoxName.TabIndex = 10;
     //
     // comboBoxType
     //
     this.comboBoxType.BackColor = System.Drawing.SystemColors.ButtonHighlight;
     this.comboBoxType.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.comboBoxType.Enabled = false;
     this.comboBoxType.FormattingEnabled = true;
     this.comboBoxType.Items.AddRange(new object[] {
     "xls",
     "txt"});
     this.comboBoxType.Location = new System.Drawing.Point(234, 143);
     this.comboBoxType.Name = "comboBoxType";
     this.comboBoxType.Size = new System.Drawing.Size(126, 21);
     this.comboBoxType.TabIndex = 11;
     //
     // lbTieuDe
     //
     //
     //
     //
     this.lbTieuDe.BackgroundStyle.Class = "";
     this.lbTieuDe.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.lbTieuDe.Location = new System.Drawing.Point(216, 14);
     this.lbTieuDe.Margin = new System.Windows.Forms.Padding(4);
     this.lbTieuDe.Name = "lbTieuDe";
     this.lbTieuDe.Size = new System.Drawing.Size(175, 68);
     this.lbTieuDe.TabIndex = 39;
     this.lbTieuDe.Text = "<b><font size=\'26\' color=\'#00B7EF\'>New File</font></b>";
     //
     // pictureBox1
     //
     this.pictureBox1.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox1.Image")));
     this.pictureBox1.Location = new System.Drawing.Point(17, 43);
     this.pictureBox1.Name = "pictureBox1";
     this.pictureBox1.Size = new System.Drawing.Size(118, 121);
     this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
     this.pictureBox1.TabIndex = 40;
     this.pictureBox1.TabStop = false;
     //
     // _btAdd
     //
     this._btAdd.BackColor = System.Drawing.SystemColors.MenuHighlight;
     this._btAdd.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this._btAdd.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this._btAdd.ForeColor = System.Drawing.Color.White;
     this._btAdd.Location = new System.Drawing.Point(232, 172);
     this._btAdd.Name = "_btAdd";
     this._btAdd.Size = new System.Drawing.Size(127, 23);
     this._btAdd.TabIndex = 41;
     this._btAdd.Text = "Add";
     this._btAdd.UseVisualStyleBackColor = false;
     this._btAdd.Click += new System.EventHandler(this._btAdd_Click_1);
     //
     // _btCancal
     //
     this._btCancal.BackColor = System.Drawing.SystemColors.MenuHighlight;
     this._btCancal.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this._btCancal.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this._btCancal.ForeColor = System.Drawing.Color.White;
     this._btCancal.Location = new System.Drawing.Point(365, 172);
     this._btCancal.Name = "_btCancal";
     this._btCancal.Size = new System.Drawing.Size(112, 23);
     this._btCancal.TabIndex = 42;
     this._btCancal.Text = "Cancel";
     this._btCancal.UseVisualStyleBackColor = false;
     this._btCancal.Click += new System.EventHandler(this._btCancal_Click);
     //
     // _frmNewFile
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     this.BackColor = System.Drawing.SystemColors.ButtonHighlight;
     this.ClientSize = new System.Drawing.Size(502, 209);
     this.Controls.Add(this._btCancal);
     this.Controls.Add(this._btAdd);
     this.Controls.Add(this.pictureBox1);
     this.Controls.Add(this.lbTieuDe);
     this.Controls.Add(this.comboBoxType);
     this.Controls.Add(this.textBoxName);
     this.Controls.Add(this.labelX2);
     this.Controls.Add(this.labelX1);
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name = "_frmNewFile";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Load += new System.EventHandler(this._frmNewFile_Load);
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
 /// <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);
 }
Пример #52
0
        /// <summary>
        /// 画事件
        /// </summary>
        /// <param name="start_time">这周开始时间</param>
        /// <param name="selectIndex">第几周</param>
        private void getInfo(DateTime start_time, int selectIndex)
        {
            string  SqlInfo = "select in_time,b.textkind_id,b.doc_name,b.textname,document_time,b.tid from t_in_patient a inner join t_patients_doc b on a.id=b.patient_id where  a.id='" + inPatientInfo.Id + "'";
            DataSet dts     = App.GetDataSet(SqlInfo);

            if (dts != null)
            {
                DataTable dt = dts.Tables[0];
                if (dt.Rows.Count >= 0)
                {
                    int[] pointY = { 0, 0, 0, 0, 0, 0, 0 };
                    for (int i = 0; i < dt.Rows.Count; i++)
                    {
                        try
                        {
                            #region 找到事件和发生的时间
                            textname    = dt.Rows[i]["textname"].ToString();
                            doc_name    = dt.Rows[i]["doc_name"].ToString();
                            textkind_id = Convert.ToInt32(dt.Rows[i]["textkind_id"].ToString());
                            DateTime happenTime = inPatientInfo.In_Time;
                            //事件lb形式画到panel_E上,入院,出院,分娩,手术,抢救,转入,转出
                            #region
                            if (textkind_id == 151)//手术记录
                            {
                                if (doc_name.Trim() != "")
                                {
                                    happenTime = Convert.ToDateTime(App.GetTimeString(doc_name));
                                }
                            }
                            else if (textkind_id == 158)//出院记录
                            {
                                if (doc_name.Trim() != "")
                                {
                                    happenTime = Convert.ToDateTime(App.GetTimeString(doc_name));
                                }
                            }
                            else if (textkind_id == 461 || textkind_id == 462 || textkind_id == 1052)//分娩记录
                            {
                                if (doc_name.Trim() != "")
                                {
                                    happenTime = Convert.ToDateTime(App.GetTimeString(doc_name));
                                }
                            }
                            else if (textkind_id == 151)//手术记录
                            {
                                if (doc_name.Trim() != "")
                                {
                                    happenTime = Convert.ToDateTime(App.GetTimeString(doc_name));
                                }
                            }
                            else if (textkind_id == 130)//转出记录
                            {
                                if (doc_name.Trim() != "")
                                {
                                    happenTime = Convert.ToDateTime(App.GetTimeString(doc_name));
                                }
                            }
                            else if (textkind_id == 301)//转入记录
                            {
                                if (doc_name.Trim() != "")
                                {
                                    happenTime = Convert.ToDateTime(App.GetTimeString(doc_name));
                                }
                            }
                            else if (textkind_id == 132)//抢救记录
                            {
                                if (doc_name.Trim() != "")
                                {
                                    happenTime = Convert.ToDateTime(App.GetTimeString(doc_name));
                                }
                            }
                            #endregion
                            #endregion
                            //DateTime happenTime = Convert.ToDateTime(Convert.ToDateTime(App.GetTimeString(doc_name)).ToShortDateString());
                            //if (happenTime == in_time)
                            //{
                            //    continue;
                            //}
                            #region 在画布上画事件
                            //if (happenTime == inPatientInfo.In_Time && isIn_time == true)
                            //    continue;
                            //if (happenTime == inPatientInfo.In_Time && isIn_time == false)
                            //    isIn_time = true;
                            TimeSpan c   = Convert.ToDateTime(happenTime.ToShortDateString()).Subtract(Convert.ToDateTime(start_time.ToShortDateString()));
                            int      day = (int)c.TotalDays;
                            if (day >= 0 && day < 7)
                            {
                                DevComponents.DotNetBar.LabelX lbxEvent = new DevComponents.DotNetBar.LabelX();
                                lbxEvent.BackgroundImage       = imageList1.Images[0];
                                lbxEvent.BackgroundImageLayout = ImageLayout.Stretch;
                                lbxEvent.TextAlignment         = StringAlignment.Center;
                                lbxEvent.Size      = new Size(76, 24);
                                lbxEvent.BackColor = Color.Transparent;
                                //if (textname != "病程记录")
                                //{
                                //    lbxEvent.Text = textname.Remove(2);
                                //}
                                //else
                                //{
                                //    lbxEvent.Text = doc_name.Replace(App.GetTimeString(doc_name), " ").Trim().Remove(2);
                                //}
                                if (happenTime == inPatientInfo.In_Time)
                                {
                                    lbxEvent.Text = "入院";
                                    isIn_time     = true;
                                }
                                else if (textkind_id == 158)
                                {
                                    lbxEvent.Text = "出院";
                                }
                                else if (textkind_id == 151)
                                {
                                    lbxEvent.Text = "手术";
                                }
                                else if (textkind_id == 461 || textkind_id == 462 || textkind_id == 1052)
                                {
                                    lbxEvent.Text = "分娩";
                                }
                                else if (textkind_id == 301)
                                {
                                    lbxEvent.Text = "转入";
                                }
                                else if (textkind_id == 130)
                                {
                                    lbxEvent.Text = "转出";
                                }
                                else if (textkind_id == 132)
                                {
                                    lbxEvent.Text = "抢救";
                                }
                                if (lbxEvent.Text.Trim().Length == 0)
                                {
                                    continue;
                                }
                                lbxEvent.Name      = "lbxEventn" + (i).ToString();
                                lbxEvent.ForeColor = Color.Red;
                                //lbxEvent.Width = 108;
                                //lbxEvent.Height = 20;
                                lbxEvent.Location = new Point(0 + 10, pointY[day] * 24);
                                lbxEvent.Tag      = dt.Rows[i]["tid"].ToString();
                                pointY[day]++;

                                bool isexits = false;
                                for (int i1 = 0; i1 < panel_E1.Controls.Count; i1++)
                                {
                                    if (lbxEvent.Text == panel_E1.Controls[i1].Text)
                                    {
                                        isexits = true;
                                        break;
                                    }
                                }

                                if (!isexits)
                                {
                                    if (day == 0)
                                    {
                                        panel_E1.Controls.Add(lbxEvent);
                                    }
                                    else if (day == 1)
                                    {
                                        panel_E2.Controls.Add(lbxEvent);
                                    }
                                    else if (day == 2)
                                    {
                                        panel_E3.Controls.Add(lbxEvent);
                                    }
                                    else if (day == 3)
                                    {
                                        panel_E4.Controls.Add(lbxEvent);
                                    }
                                    else if (day == 4)
                                    {
                                        panel_E5.Controls.Add(lbxEvent);
                                    }
                                    else if (day == 5)
                                    {
                                        panel_E6.Controls.Add(lbxEvent);
                                    }
                                    else if (day == 6)
                                    {
                                        panel_E7.Controls.Add(lbxEvent);
                                    }
                                }
                            }
                            #endregion
                            document_time = dt.Rows[i]["document_time"].ToString();
                        }
                        catch (Exception ex)
                        {
                            App.MsgErr("出现一个异常!原因:" + ex.Message);
                        }
                    }
                }
            }
        }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.btnSearch = new DevComponents.DotNetBar.ButtonX();
     this.btnPlugin = new DevComponents.DotNetBar.ButtonItem();
     this.btnGadget = new DevComponents.DotNetBar.ButtonItem();
     this.btnUDM = new DevComponents.DotNetBar.ButtonItem();
     this.txtPattern = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.labelX1 = new DevComponents.DotNetBar.LabelX();
     this.SuspendLayout();
     //
     // btnSearch
     //
     this.btnSearch.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btnSearch.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnSearch.AutoExpandOnClick = true;
     this.btnSearch.BackColor = System.Drawing.Color.Transparent;
     this.btnSearch.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.btnSearch.Location = new System.Drawing.Point(449, 60);
     this.btnSearch.Name = "btnSearch";
     this.btnSearch.Size = new System.Drawing.Size(65, 23);
     this.btnSearch.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.btnSearch.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.btnPlugin,
     this.btnGadget,
     this.btnUDM});
     this.btnSearch.TabIndex = 2;
     this.btnSearch.Text = "搜尋";
     //
     // btnPlugin
     //
     this.btnPlugin.GlobalItem = false;
     this.btnPlugin.Name = "btnPlugin";
     this.btnPlugin.Text = "Desktop Plugin";
     this.btnPlugin.Tooltip = "請使用類似:JHCore/app.xml 搜尋。";
     this.btnPlugin.Click += new System.EventHandler(this.btnPlugin_Click);
     //
     // btnGadget
     //
     this.btnGadget.GlobalItem = false;
     this.btnGadget.Name = "btnGadget";
     this.btnGadget.Text = "Web Gadget";
     this.btnGadget.Tooltip = "請使用 Gadget 的 ID,例:934e39d3-893f-4338-96d6-fd486497b930";
     this.btnGadget.Click += new System.EventHandler(this.btnGadget_Click);
     //
     // btnUDM
     //
     this.btnUDM.GlobalItem = false;
     this.btnUDM.Name = "btnUDM";
     this.btnUDM.Text = "UDM";
     this.btnUDM.Tooltip = "請使用 URL 的一部份,例:137815/AttendanceDiscipline/udm.xml";
     this.btnUDM.Click += new System.EventHandler(this.btnUDM_Click);
     //
     // txtPattern
     //
     this.txtPattern.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     //
     //
     //
     this.txtPattern.Border.Class = "TextBoxBorder";
     this.txtPattern.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txtPattern.Location = new System.Drawing.Point(12, 12);
     this.txtPattern.Name = "txtPattern";
     this.txtPattern.Size = new System.Drawing.Size(502, 25);
     this.txtPattern.TabIndex = 0;
     this.txtPattern.WatermarkText = "關鍵字,例:JHCore/app.xml";
     //
     // labelX1
     //
     this.labelX1.AutoSize = true;
     this.labelX1.BackColor = System.Drawing.Color.Transparent;
     //
     //
     //
     this.labelX1.BackgroundStyle.Class = "";
     this.labelX1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX1.Location = new System.Drawing.Point(12, 61);
     this.labelX1.Name = "labelX1";
     this.labelX1.Size = new System.Drawing.Size(311, 21);
     this.labelX1.TabIndex = 1;
     this.labelX1.Text = "※ 搜尋後的結果會加入待處理(只會搜尋選擇的學校)";
     //
     // SearchForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 17F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(526, 94);
     this.Controls.Add(this.labelX1);
     this.Controls.Add(this.txtPattern);
     this.Controls.Add(this.btnSearch);
     this.DoubleBuffered = true;
     this.Name = "SearchForm";
     this.Text = "進階搜尋";
     this.ResumeLayout(false);
     this.PerformLayout();
 }
        private void InitializeComponent()
        {
            var resources = new System.ComponentModel.ComponentResourceManager(typeof(LevelSelectorDialog));

            _Button_Cancel  = new DevComponents.DotNetBar.ButtonX();
            _LabelX10       = new DevComponents.DotNetBar.LabelX();
            _Button_Add     = new DevComponents.DotNetBar.ButtonX();
            _ComboBox_Level = new DevComponents.DotNetBar.Controls.ComboBoxEx();
            _Panel1         = new Panel();
            _Panel1.SuspendLayout();
            SuspendLayout();
            //
            // Button_Cancel
            //
            _Button_Cancel.AccessibleRole = AccessibleRole.PushButton;
            resources.ApplyResources(_Button_Cancel, "Button_Cancel");
            _Button_Cancel.ColorTable       = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
            _Button_Cancel.DialogResult     = DialogResult.Cancel;
            _Button_Cancel.FocusCuesEnabled = false;
            _Button_Cancel.Name             = "Button_Cancel";
            _Button_Cancel.Style            = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            //
            // LabelX10
            //
            resources.ApplyResources(_LabelX10, "LabelX10");
            //
            //
            //
            _LabelX10.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            _LabelX10.Name  = "LabelX10";
            _LabelX10.Style = DevComponents.DotNetBar.eDotNetBarStyle.VS2005;
            //
            // Button_Add
            //
            _Button_Add.AccessibleRole = AccessibleRole.PushButton;
            resources.ApplyResources(_Button_Add, "Button_Add");
            _Button_Add.ColorTable       = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
            _Button_Add.DialogResult     = DialogResult.OK;
            _Button_Add.FocusCuesEnabled = false;
            _Button_Add.Name             = "Button_Add";
            _Button_Add.Style            = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            //
            // ComboBox_Level
            //
            resources.ApplyResources(_ComboBox_Level, "ComboBox_Level");
            _ComboBox_Level.DisplayMember     = "Text";
            _ComboBox_Level.DrawMode          = DrawMode.OwnerDrawFixed;
            _ComboBox_Level.DropDownHeight    = 150;
            _ComboBox_Level.DropDownStyle     = ComboBoxStyle.DropDownList;
            _ComboBox_Level.ForeColor         = Color.Black;
            _ComboBox_Level.FormattingEnabled = true;
            _ComboBox_Level.Name  = "ComboBox_Level";
            _ComboBox_Level.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            //
            // Panel1
            //
            _Panel1.BackColor = Color.Transparent;
            _Panel1.Controls.Add(_LabelX10);
            _Panel1.Controls.Add(_ComboBox_Level);
            _Panel1.Controls.Add(_Button_Cancel);
            _Panel1.Controls.Add(_Button_Add);
            resources.ApplyResources(_Panel1, "Panel1");
            _Panel1.Name = "Panel1";
            //
            // LevelSelectorDialog
            //
            AcceptButton = _Button_Add;
            resources.ApplyResources(this, "$this");
            AutoScaleMode = AutoScaleMode.Font;
            CancelButton  = _Button_Cancel;
            Controls.Add(_Panel1);
            FormBorderStyle    = FormBorderStyle.FixedToolWindow;
            MaximizeBox        = false;
            MinimizeBox        = false;
            Name               = "LevelSelectorDialog";
            ShowIcon           = false;
            TopLeftCornerSize  = 0;
            TopRightCornerSize = 0;
            _Panel1.ResumeLayout(false);
            ResumeLayout(false);
        }
Пример #55
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);
 }
 private void InitializeComponent()
 {
     _ValueTextBox   = new DevComponents.DotNetBar.Controls.TextBoxX();
     _InfoLabel      = new DevComponents.DotNetBar.LabelX();
     _ButtonX_Okay   = new DevComponents.DotNetBar.ButtonX();
     _ButtonX_Cancel = new DevComponents.DotNetBar.ButtonX();
     SuspendLayout();
     //
     // ValueTextBox
     //
     _ValueTextBox.BackColor = Color.White;
     //
     //
     //
     _ValueTextBox.Border.Class      = "TextBoxBorder";
     _ValueTextBox.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     _ValueTextBox.DisabledBackColor = Color.White;
     _ValueTextBox.ForeColor         = Color.Black;
     _ValueTextBox.Location          = new Point(12, 41);
     _ValueTextBox.Name             = "ValueTextBox";
     _ValueTextBox.PreventEnterBeep = true;
     _ValueTextBox.Size             = new Size(128, 20);
     _ValueTextBox.TabIndex         = 0;
     //
     // InfoLabel
     //
     //
     //
     //
     _InfoLabel.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     _InfoLabel.Location = new Point(12, 12);
     _InfoLabel.Name     = "InfoLabel";
     _InfoLabel.Size     = new Size(128, 23);
     _InfoLabel.TabIndex = 1;
     _InfoLabel.Text     = "Value:";
     //
     // ButtonX_Okay
     //
     _ButtonX_Okay.AccessibleRole   = AccessibleRole.PushButton;
     _ButtonX_Okay.ColorTable       = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     _ButtonX_Okay.DialogResult     = DialogResult.OK;
     _ButtonX_Okay.FocusCuesEnabled = false;
     _ButtonX_Okay.Location         = new Point(12, 67);
     _ButtonX_Okay.Name             = "ButtonX_Okay";
     _ButtonX_Okay.Size             = new Size(61, 23);
     _ButtonX_Okay.Style            = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     _ButtonX_Okay.TabIndex         = 2;
     _ButtonX_Okay.Text             = "Okay";
     //
     // ButtonX_Cancel
     //
     _ButtonX_Cancel.AccessibleRole   = AccessibleRole.PushButton;
     _ButtonX_Cancel.ColorTable       = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     _ButtonX_Cancel.DialogResult     = DialogResult.Cancel;
     _ButtonX_Cancel.FocusCuesEnabled = false;
     _ButtonX_Cancel.Location         = new Point(79, 67);
     _ButtonX_Cancel.Name             = "ButtonX_Cancel";
     _ButtonX_Cancel.Size             = new Size(61, 23);
     _ButtonX_Cancel.Style            = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     _ButtonX_Cancel.TabIndex         = 3;
     _ButtonX_Cancel.Text             = "Cancel";
     //
     // ValueInputDialog
     //
     AcceptButton        = _ButtonX_Okay;
     AutoScaleDimensions = new SizeF(6.0F, 13.0F);
     AutoScaleMode       = AutoScaleMode.Font;
     CancelButton        = _ButtonX_Cancel;
     ClientSize          = new Size(151, 101);
     ControlBox          = false;
     Controls.Add(_ButtonX_Cancel);
     Controls.Add(_ButtonX_Okay);
     Controls.Add(_InfoLabel);
     Controls.Add(_ValueTextBox);
     DoubleBuffered     = true;
     EnableGlass        = false;
     FormBorderStyle    = FormBorderStyle.FixedToolWindow;
     MaximizeBox        = false;
     MinimizeBox        = false;
     Name               = "ValueInputDialog";
     ShowIcon           = false;
     ShowInTaskbar      = false;
     StartPosition      = FormStartPosition.CenterParent;
     TopLeftCornerSize  = 0;
     TopRightCornerSize = 0;
     ResumeLayout(false);
 }
        private void InitializeComponent()
        {
            var resources = new System.ComponentModel.ComponentResourceManager(typeof(Tab_MusicManager));

            _GroupPanel12 = new DevComponents.DotNetBar.Controls.GroupPanel();
            _LabelX56     = new DevComponents.DotNetBar.LabelX();
            _SwitchButton_MS_OverwriteSizeRestrictions = new DevComponents.DotNetBar.Controls.SwitchButton();
            _SwitchButton_MS_OverwriteSizeRestrictions.ValueChanged += new EventHandler(SwitchButton_MS_OverwriteSizeRestrictions_ValueChanged);
            _GroupBox_MS_SeqProperties = new DevComponents.DotNetBar.Controls.GroupPanel();
            _LabelX_MS_SeqSize         = new DevComponents.DotNetBar.LabelX();
            _LabelX33                                = new DevComponents.DotNetBar.LabelX();
            _LabelX28                                = new DevComponents.DotNetBar.LabelX();
            _LabelX_MS_SequenceID                    = new DevComponents.DotNetBar.LabelX();
            _GroupBox_MS_SelectedSequence            = new DevComponents.DotNetBar.Controls.GroupPanel();
            _ButtonX1                                = new DevComponents.DotNetBar.ButtonX();
            _ButtonX1.Click                         += new EventHandler(ButtonX1_Click);
            _ComboBox_MS_NInst                       = new DevComponents.DotNetBar.Controls.ComboBoxEx();
            _ComboBox_MS_NInst.SelectedIndexChanged += new EventHandler(ComboBox_MS_NInst_SelectedIndexChanged);
            _LabelX32                                = new DevComponents.DotNetBar.LabelX();
            _LabelX5 = new DevComponents.DotNetBar.LabelX();
            _TextBoxX_MS_Sequencename              = new DevComponents.DotNetBar.Controls.TextBoxX();
            _TextBoxX_MS_Sequencename.TextChanged += new EventHandler(MusicSettings_SequenceNameChanged);
            _Button_MS_ExtractSequence             = new DevComponents.DotNetBar.ButtonX();
            _Button_MS_ExtractSequence.Click      += new EventHandler(Button_MS_ExtractSequence_Click);
            _Button_MS_ReplaceSequence             = new DevComponents.DotNetBar.ButtonX();
            _Button_MS_ReplaceSequence.Click      += new EventHandler(Button_MS_ReplaceSequence_Click);
            _Line6       = new DevComponents.DotNetBar.Controls.Line();
            _GroupPanel9 = new DevComponents.DotNetBar.Controls.GroupPanel();
            _ButtonX_MS_RemoveSequence        = new DevComponents.DotNetBar.ButtonX();
            _ButtonX_MS_RemoveSequence.Click += new EventHandler(ButtonX_MS_RemoveSequence_Click);
            _ButtonX_MS_AddSequence           = new DevComponents.DotNetBar.ButtonX();
            _ButtonX_MS_AddSequence.Click    += new EventHandler(ButtonX_MS_AddSequence_Click);
            _ListBoxAdv_MS_MusicSequences     = new Publics.Controls.ItemListBox();
            _ListBoxAdv_MS_MusicSequences.SelectedItemChanged += new Publics.Controls.ItemListBox.SelectedItemChangedEventHandler(ListBoxAdv_MS_MusicSequences_SelectedIndexChanged);
            _GroupPanel12.SuspendLayout();
            _GroupBox_MS_SeqProperties.SuspendLayout();
            _GroupBox_MS_SelectedSequence.SuspendLayout();
            _GroupPanel9.SuspendLayout();
            SuspendLayout();
            //
            // GroupPanel12
            //
            _GroupPanel12.BackColor        = Color.White;
            _GroupPanel12.CanvasColor      = Color.Empty;
            _GroupPanel12.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            _GroupPanel12.Controls.Add(_LabelX56);
            _GroupPanel12.Controls.Add(_SwitchButton_MS_OverwriteSizeRestrictions);
            _GroupPanel12.DisabledBackColor = Color.Empty;
            resources.ApplyResources(_GroupPanel12, "GroupPanel12");
            _GroupPanel12.Name = "GroupPanel12";
            //
            //
            //
            _GroupPanel12.Style.BackColorGradientAngle = 90;
            _GroupPanel12.Style.BorderBottom           = DevComponents.DotNetBar.eStyleBorderType.Solid;
            _GroupPanel12.Style.BorderBottomWidth      = 1;
            _GroupPanel12.Style.BorderColorSchemePart  = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
            _GroupPanel12.Style.BorderLeft             = DevComponents.DotNetBar.eStyleBorderType.Solid;
            _GroupPanel12.Style.BorderLeftWidth        = 1;
            _GroupPanel12.Style.BorderRight            = DevComponents.DotNetBar.eStyleBorderType.Solid;
            _GroupPanel12.Style.BorderRightWidth       = 1;
            _GroupPanel12.Style.BorderTop           = DevComponents.DotNetBar.eStyleBorderType.Solid;
            _GroupPanel12.Style.BorderTopWidth      = 1;
            _GroupPanel12.Style.CornerDiameter      = 4;
            _GroupPanel12.Style.CornerType          = DevComponents.DotNetBar.eCornerType.Square;
            _GroupPanel12.Style.TextAlignment       = DevComponents.DotNetBar.eStyleTextAlignment.Center;
            _GroupPanel12.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
            _GroupPanel12.Style.TextLineAlignment   = DevComponents.DotNetBar.eStyleTextAlignment.Near;
            //
            //
            //
            _GroupPanel12.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            //
            //
            //
            _GroupPanel12.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            //
            // LabelX56
            //
            _LabelX56.BackColor = Color.Transparent;
            //
            //
            //
            _LabelX56.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            resources.ApplyResources(_LabelX56, "LabelX56");
            _LabelX56.Name  = "LabelX56";
            _LabelX56.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            //
            // SwitchButton_MS_OverwriteSizeRestrictions
            //
            //
            //
            //
            _SwitchButton_MS_OverwriteSizeRestrictions.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            _SwitchButton_MS_OverwriteSizeRestrictions.FocusCuesEnabled           = false;
            resources.ApplyResources(_SwitchButton_MS_OverwriteSizeRestrictions, "SwitchButton_MS_OverwriteSizeRestrictions");
            _SwitchButton_MS_OverwriteSizeRestrictions.Name              = "SwitchButton_MS_OverwriteSizeRestrictions";
            _SwitchButton_MS_OverwriteSizeRestrictions.OffTextColor      = Color.FromArgb(Conversions.ToInteger(Conversions.ToByte(64)), Conversions.ToInteger(Conversions.ToByte(64)), Conversions.ToInteger(Conversions.ToByte(64)));
            _SwitchButton_MS_OverwriteSizeRestrictions.OnBackColor       = Color.FromArgb(Conversions.ToInteger(Conversions.ToByte(139)), Conversions.ToInteger(Conversions.ToByte(195)), Conversions.ToInteger(Conversions.ToByte(80)));
            _SwitchButton_MS_OverwriteSizeRestrictions.OnTextColor       = Color.FromArgb(Conversions.ToInteger(Conversions.ToByte(21)), Conversions.ToInteger(Conversions.ToByte(66)), Conversions.ToInteger(Conversions.ToByte(139)));
            _SwitchButton_MS_OverwriteSizeRestrictions.Style             = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            _SwitchButton_MS_OverwriteSizeRestrictions.SwitchBackColor   = Color.FromArgb(Conversions.ToInteger(Conversions.ToByte(147)), Conversions.ToInteger(Conversions.ToByte(164)), Conversions.ToInteger(Conversions.ToByte(181)));
            _SwitchButton_MS_OverwriteSizeRestrictions.SwitchBorderColor = Color.FromArgb(Conversions.ToInteger(Conversions.ToByte(69)), Conversions.ToInteger(Conversions.ToByte(85)), Conversions.ToInteger(Conversions.ToByte(107)));
            _SwitchButton_MS_OverwriteSizeRestrictions.SwitchWidth       = 15;
            //
            // GroupBox_MS_SeqProperties
            //
            _GroupBox_MS_SeqProperties.BackColor        = Color.White;
            _GroupBox_MS_SeqProperties.CanvasColor      = Color.Empty;
            _GroupBox_MS_SeqProperties.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            _GroupBox_MS_SeqProperties.Controls.Add(_LabelX_MS_SeqSize);
            _GroupBox_MS_SeqProperties.Controls.Add(_LabelX33);
            _GroupBox_MS_SeqProperties.Controls.Add(_LabelX28);
            _GroupBox_MS_SeqProperties.Controls.Add(_LabelX_MS_SequenceID);
            _GroupBox_MS_SeqProperties.DisabledBackColor = Color.Empty;
            resources.ApplyResources(_GroupBox_MS_SeqProperties, "GroupBox_MS_SeqProperties");
            _GroupBox_MS_SeqProperties.Name = "GroupBox_MS_SeqProperties";
            //
            //
            //
            _GroupBox_MS_SeqProperties.Style.BackColorGradientAngle = 90;
            _GroupBox_MS_SeqProperties.Style.BorderBottom           = DevComponents.DotNetBar.eStyleBorderType.Solid;
            _GroupBox_MS_SeqProperties.Style.BorderBottomWidth      = 1;
            _GroupBox_MS_SeqProperties.Style.BorderColorSchemePart  = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
            _GroupBox_MS_SeqProperties.Style.BorderLeft             = DevComponents.DotNetBar.eStyleBorderType.Solid;
            _GroupBox_MS_SeqProperties.Style.BorderLeftWidth        = 1;
            _GroupBox_MS_SeqProperties.Style.BorderRight            = DevComponents.DotNetBar.eStyleBorderType.Solid;
            _GroupBox_MS_SeqProperties.Style.BorderRightWidth       = 1;
            _GroupBox_MS_SeqProperties.Style.BorderTop           = DevComponents.DotNetBar.eStyleBorderType.Solid;
            _GroupBox_MS_SeqProperties.Style.BorderTopWidth      = 1;
            _GroupBox_MS_SeqProperties.Style.CornerDiameter      = 4;
            _GroupBox_MS_SeqProperties.Style.CornerType          = DevComponents.DotNetBar.eCornerType.Square;
            _GroupBox_MS_SeqProperties.Style.TextAlignment       = DevComponents.DotNetBar.eStyleTextAlignment.Center;
            _GroupBox_MS_SeqProperties.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
            _GroupBox_MS_SeqProperties.Style.TextLineAlignment   = DevComponents.DotNetBar.eStyleTextAlignment.Near;
            //
            //
            //
            _GroupBox_MS_SeqProperties.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            //
            //
            //
            _GroupBox_MS_SeqProperties.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            //
            // LabelX_MS_SeqSize
            //
            _LabelX_MS_SeqSize.BackColor = Color.Transparent;
            //
            //
            //
            _LabelX_MS_SeqSize.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            resources.ApplyResources(_LabelX_MS_SeqSize, "LabelX_MS_SeqSize");
            _LabelX_MS_SeqSize.Name  = "LabelX_MS_SeqSize";
            _LabelX_MS_SeqSize.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            //
            // LabelX33
            //
            _LabelX33.BackColor = Color.Transparent;
            //
            //
            //
            _LabelX33.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            resources.ApplyResources(_LabelX33, "LabelX33");
            _LabelX33.Name  = "LabelX33";
            _LabelX33.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            //
            // LabelX28
            //
            _LabelX28.BackColor = Color.Transparent;
            //
            //
            //
            _LabelX28.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            resources.ApplyResources(_LabelX28, "LabelX28");
            _LabelX28.Name  = "LabelX28";
            _LabelX28.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            //
            // LabelX_MS_SequenceID
            //
            _LabelX_MS_SequenceID.BackColor = Color.Transparent;
            //
            //
            //
            _LabelX_MS_SequenceID.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            resources.ApplyResources(_LabelX_MS_SequenceID, "LabelX_MS_SequenceID");
            _LabelX_MS_SequenceID.Name  = "LabelX_MS_SequenceID";
            _LabelX_MS_SequenceID.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            //
            // GroupBox_MS_SelectedSequence
            //
            _GroupBox_MS_SelectedSequence.BackColor        = Color.White;
            _GroupBox_MS_SelectedSequence.CanvasColor      = Color.Empty;
            _GroupBox_MS_SelectedSequence.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            _GroupBox_MS_SelectedSequence.Controls.Add(_ButtonX1);
            _GroupBox_MS_SelectedSequence.Controls.Add(_ComboBox_MS_NInst);
            _GroupBox_MS_SelectedSequence.Controls.Add(_LabelX32);
            _GroupBox_MS_SelectedSequence.Controls.Add(_LabelX5);
            _GroupBox_MS_SelectedSequence.Controls.Add(_TextBoxX_MS_Sequencename);
            _GroupBox_MS_SelectedSequence.Controls.Add(_Button_MS_ExtractSequence);
            _GroupBox_MS_SelectedSequence.Controls.Add(_Button_MS_ReplaceSequence);
            _GroupBox_MS_SelectedSequence.Controls.Add(_Line6);
            _GroupBox_MS_SelectedSequence.DisabledBackColor = Color.Empty;
            resources.ApplyResources(_GroupBox_MS_SelectedSequence, "GroupBox_MS_SelectedSequence");
            _GroupBox_MS_SelectedSequence.Name = "GroupBox_MS_SelectedSequence";
            //
            //
            //
            _GroupBox_MS_SelectedSequence.Style.BackColorGradientAngle = 90;
            _GroupBox_MS_SelectedSequence.Style.BorderBottom           = DevComponents.DotNetBar.eStyleBorderType.Solid;
            _GroupBox_MS_SelectedSequence.Style.BorderBottomWidth      = 1;
            _GroupBox_MS_SelectedSequence.Style.BorderColorSchemePart  = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
            _GroupBox_MS_SelectedSequence.Style.BorderLeft             = DevComponents.DotNetBar.eStyleBorderType.Solid;
            _GroupBox_MS_SelectedSequence.Style.BorderLeftWidth        = 1;
            _GroupBox_MS_SelectedSequence.Style.BorderRight            = DevComponents.DotNetBar.eStyleBorderType.Solid;
            _GroupBox_MS_SelectedSequence.Style.BorderRightWidth       = 1;
            _GroupBox_MS_SelectedSequence.Style.BorderTop           = DevComponents.DotNetBar.eStyleBorderType.Solid;
            _GroupBox_MS_SelectedSequence.Style.BorderTopWidth      = 1;
            _GroupBox_MS_SelectedSequence.Style.CornerDiameter      = 4;
            _GroupBox_MS_SelectedSequence.Style.CornerType          = DevComponents.DotNetBar.eCornerType.Square;
            _GroupBox_MS_SelectedSequence.Style.TextAlignment       = DevComponents.DotNetBar.eStyleTextAlignment.Center;
            _GroupBox_MS_SelectedSequence.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
            _GroupBox_MS_SelectedSequence.Style.TextLineAlignment   = DevComponents.DotNetBar.eStyleTextAlignment.Near;
            //
            //
            //
            _GroupBox_MS_SelectedSequence.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            //
            //
            //
            _GroupBox_MS_SelectedSequence.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            //
            // ButtonX1
            //
            _ButtonX1.AccessibleRole   = AccessibleRole.PushButton;
            _ButtonX1.ColorTable       = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
            _ButtonX1.FocusCuesEnabled = false;
            resources.ApplyResources(_ButtonX1, "ButtonX1");
            _ButtonX1.Name  = "ButtonX1";
            _ButtonX1.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            //
            // ComboBox_MS_NInst
            //
            _ComboBox_MS_NInst.DrawMode          = DrawMode.OwnerDrawFixed;
            _ComboBox_MS_NInst.DropDownHeight    = 150;
            _ComboBox_MS_NInst.DropDownStyle     = ComboBoxStyle.DropDownList;
            _ComboBox_MS_NInst.ForeColor         = Color.Black;
            _ComboBox_MS_NInst.FormattingEnabled = true;
            resources.ApplyResources(_ComboBox_MS_NInst, "ComboBox_MS_NInst");
            _ComboBox_MS_NInst.Items.AddRange(new object[] { resources.GetString("ComboBox_MS_NInst.Items"), resources.GetString("ComboBox_MS_NInst.Items1"), resources.GetString("ComboBox_MS_NInst.Items2"), resources.GetString("ComboBox_MS_NInst.Items3"), resources.GetString("ComboBox_MS_NInst.Items4"), resources.GetString("ComboBox_MS_NInst.Items5"), resources.GetString("ComboBox_MS_NInst.Items6"), resources.GetString("ComboBox_MS_NInst.Items7"), resources.GetString("ComboBox_MS_NInst.Items8"), resources.GetString("ComboBox_MS_NInst.Items9"), resources.GetString("ComboBox_MS_NInst.Items10"), resources.GetString("ComboBox_MS_NInst.Items11"), resources.GetString("ComboBox_MS_NInst.Items12"), resources.GetString("ComboBox_MS_NInst.Items13"), resources.GetString("ComboBox_MS_NInst.Items14"), resources.GetString("ComboBox_MS_NInst.Items15"), resources.GetString("ComboBox_MS_NInst.Items16"), resources.GetString("ComboBox_MS_NInst.Items17"), resources.GetString("ComboBox_MS_NInst.Items18"), resources.GetString("ComboBox_MS_NInst.Items19"), resources.GetString("ComboBox_MS_NInst.Items20"), resources.GetString("ComboBox_MS_NInst.Items21"), resources.GetString("ComboBox_MS_NInst.Items22"), resources.GetString("ComboBox_MS_NInst.Items23"), resources.GetString("ComboBox_MS_NInst.Items24"), resources.GetString("ComboBox_MS_NInst.Items25"), resources.GetString("ComboBox_MS_NInst.Items26"), resources.GetString("ComboBox_MS_NInst.Items27"), resources.GetString("ComboBox_MS_NInst.Items28"), resources.GetString("ComboBox_MS_NInst.Items29"), resources.GetString("ComboBox_MS_NInst.Items30"), resources.GetString("ComboBox_MS_NInst.Items31"), resources.GetString("ComboBox_MS_NInst.Items32"), resources.GetString("ComboBox_MS_NInst.Items33"), resources.GetString("ComboBox_MS_NInst.Items34"), resources.GetString("ComboBox_MS_NInst.Items35"), resources.GetString("ComboBox_MS_NInst.Items36"), resources.GetString("ComboBox_MS_NInst.Items37") });
            _ComboBox_MS_NInst.Name  = "ComboBox_MS_NInst";
            _ComboBox_MS_NInst.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            //
            // LabelX32
            //
            _LabelX32.BackColor = Color.Transparent;
            //
            //
            //
            _LabelX32.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            resources.ApplyResources(_LabelX32, "LabelX32");
            _LabelX32.Name  = "LabelX32";
            _LabelX32.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            //
            // LabelX5
            //
            _LabelX5.BackColor = Color.Transparent;
            //
            //
            //
            _LabelX5.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            resources.ApplyResources(_LabelX5, "LabelX5");
            _LabelX5.Name  = "LabelX5";
            _LabelX5.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            //
            // TextBoxX_MS_Sequencename
            //
            _TextBoxX_MS_Sequencename.BackColor = Color.White;
            //
            //
            //
            _TextBoxX_MS_Sequencename.Border.Class      = "TextBoxBorder";
            _TextBoxX_MS_Sequencename.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            _TextBoxX_MS_Sequencename.DisabledBackColor = Color.White;
            _TextBoxX_MS_Sequencename.ForeColor         = Color.Black;
            resources.ApplyResources(_TextBoxX_MS_Sequencename, "TextBoxX_MS_Sequencename");
            _TextBoxX_MS_Sequencename.Name             = "TextBoxX_MS_Sequencename";
            _TextBoxX_MS_Sequencename.PreventEnterBeep = true;
            //
            // Button_MS_ExtractSequence
            //
            _Button_MS_ExtractSequence.AccessibleRole   = AccessibleRole.PushButton;
            _Button_MS_ExtractSequence.ColorTable       = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
            _Button_MS_ExtractSequence.FocusCuesEnabled = false;
            resources.ApplyResources(_Button_MS_ExtractSequence, "Button_MS_ExtractSequence");
            _Button_MS_ExtractSequence.Name  = "Button_MS_ExtractSequence";
            _Button_MS_ExtractSequence.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            //
            // Button_MS_ReplaceSequence
            //
            _Button_MS_ReplaceSequence.AccessibleRole   = AccessibleRole.PushButton;
            _Button_MS_ReplaceSequence.ColorTable       = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
            _Button_MS_ReplaceSequence.FocusCuesEnabled = false;
            resources.ApplyResources(_Button_MS_ReplaceSequence, "Button_MS_ReplaceSequence");
            _Button_MS_ReplaceSequence.Name  = "Button_MS_ReplaceSequence";
            _Button_MS_ReplaceSequence.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            //
            // Line6
            //
            _Line6.BackColor = Color.Transparent;
            _Line6.ForeColor = Color.Gainsboro;
            resources.ApplyResources(_Line6, "Line6");
            _Line6.Name = "Line6";
            //
            // GroupPanel9
            //
            resources.ApplyResources(_GroupPanel9, "GroupPanel9");
            _GroupPanel9.BackColor        = Color.White;
            _GroupPanel9.CanvasColor      = Color.Empty;
            _GroupPanel9.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            _GroupPanel9.Controls.Add(_ButtonX_MS_RemoveSequence);
            _GroupPanel9.Controls.Add(_ButtonX_MS_AddSequence);
            _GroupPanel9.Controls.Add(_ListBoxAdv_MS_MusicSequences);
            _GroupPanel9.DisabledBackColor = Color.Empty;
            _GroupPanel9.Name = "GroupPanel9";
            //
            //
            //
            _GroupPanel9.Style.BackColorGradientAngle = 90;
            _GroupPanel9.Style.BorderBottom           = DevComponents.DotNetBar.eStyleBorderType.Solid;
            _GroupPanel9.Style.BorderBottomWidth      = 1;
            _GroupPanel9.Style.BorderColorSchemePart  = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
            _GroupPanel9.Style.BorderLeft             = DevComponents.DotNetBar.eStyleBorderType.Solid;
            _GroupPanel9.Style.BorderLeftWidth        = 1;
            _GroupPanel9.Style.BorderRight            = DevComponents.DotNetBar.eStyleBorderType.Solid;
            _GroupPanel9.Style.BorderRightWidth       = 1;
            _GroupPanel9.Style.BorderTop           = DevComponents.DotNetBar.eStyleBorderType.Solid;
            _GroupPanel9.Style.BorderTopWidth      = 1;
            _GroupPanel9.Style.CornerDiameter      = 4;
            _GroupPanel9.Style.CornerType          = DevComponents.DotNetBar.eCornerType.Square;
            _GroupPanel9.Style.TextAlignment       = DevComponents.DotNetBar.eStyleTextAlignment.Center;
            _GroupPanel9.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
            _GroupPanel9.Style.TextLineAlignment   = DevComponents.DotNetBar.eStyleTextAlignment.Near;
            //
            //
            //
            _GroupPanel9.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            //
            //
            //
            _GroupPanel9.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            //
            // ButtonX_MS_RemoveSequence
            //
            _ButtonX_MS_RemoveSequence.AccessibleRole = AccessibleRole.PushButton;
            _ButtonX_MS_RemoveSequence.ColorTable     = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
            resources.ApplyResources(_ButtonX_MS_RemoveSequence, "ButtonX_MS_RemoveSequence");
            _ButtonX_MS_RemoveSequence.FocusCuesEnabled = false;
            _ButtonX_MS_RemoveSequence.Image            = My.Resources.MyIcons.icons8_delete_sign_16px;
            _ButtonX_MS_RemoveSequence.Name             = "ButtonX_MS_RemoveSequence";
            _ButtonX_MS_RemoveSequence.Style            = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            _ButtonX_MS_RemoveSequence.SymbolColor      = Color.FromArgb(Conversions.ToInteger(Conversions.ToByte(150)), Conversions.ToInteger(Conversions.ToByte(0)), Conversions.ToInteger(Conversions.ToByte(0)));
            _ButtonX_MS_RemoveSequence.SymbolSet        = DevComponents.DotNetBar.eSymbolSet.Material;
            _ButtonX_MS_RemoveSequence.SymbolSize       = 12.0F;
            //
            // ButtonX_MS_AddSequence
            //
            _ButtonX_MS_AddSequence.AccessibleRole   = AccessibleRole.PushButton;
            _ButtonX_MS_AddSequence.ColorTable       = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
            _ButtonX_MS_AddSequence.FocusCuesEnabled = false;
            _ButtonX_MS_AddSequence.Image            = My.Resources.MyIcons.icons8_plus_math_16px;
            resources.ApplyResources(_ButtonX_MS_AddSequence, "ButtonX_MS_AddSequence");
            _ButtonX_MS_AddSequence.Name        = "ButtonX_MS_AddSequence";
            _ButtonX_MS_AddSequence.Style       = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            _ButtonX_MS_AddSequence.SymbolColor = Color.FromArgb(Conversions.ToInteger(Conversions.ToByte(82)), Conversions.ToInteger(Conversions.ToByte(124)), Conversions.ToInteger(Conversions.ToByte(64)));
            _ButtonX_MS_AddSequence.SymbolSet   = DevComponents.DotNetBar.eSymbolSet.Material;
            _ButtonX_MS_AddSequence.SymbolSize  = 12.0F;
            //
            // ListBoxAdv_MS_MusicSequences
            //
            resources.ApplyResources(_ListBoxAdv_MS_MusicSequences, "ListBoxAdv_MS_MusicSequences");
            //
            //
            //
            _ListBoxAdv_MS_MusicSequences.BackgroundStyle.Class            = "ListBoxAdv";
            _ListBoxAdv_MS_MusicSequences.BackgroundStyle.CornerType       = DevComponents.DotNetBar.eCornerType.Square;
            _ListBoxAdv_MS_MusicSequences.ContainerControlProcessDialogKey = true;
            _ListBoxAdv_MS_MusicSequences.DragDropSupport   = true;
            _ListBoxAdv_MS_MusicSequences.LayoutOrientation = DevComponents.DotNetBar.eOrientation.Vertical;
            _ListBoxAdv_MS_MusicSequences.LicenseKey        = "F962CEC7-CD8F-4911-A9E9-CAB39962FC1F";
            _ListBoxAdv_MS_MusicSequences.Name             = "ListBoxAdv_MS_MusicSequences";
            _ListBoxAdv_MS_MusicSequences.ReserveLeftSpace = false;
            _ListBoxAdv_MS_MusicSequences.Style            = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            //
            // Tab_MusicManager
            //
            resources.ApplyResources(this, "$this");
            AutoScaleMode = AutoScaleMode.Font;
            BackColor     = Color.White;
            Controls.Add(_GroupPanel12);
            Controls.Add(_GroupBox_MS_SeqProperties);
            Controls.Add(_GroupBox_MS_SelectedSequence);
            Controls.Add(_GroupPanel9);
            Name = "Tab_MusicManager";
            _GroupPanel12.ResumeLayout(false);
            _GroupBox_MS_SeqProperties.ResumeLayout(false);
            _GroupBox_MS_SelectedSequence.ResumeLayout(false);
            _GroupPanel9.ResumeLayout(false);
            ResumeLayout(false);
        }
Пример #58
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(AlertCustom));
     this.reflectionImage1 = new DevComponents.DotNetBar.Controls.ReflectionImage();
     this.bar1             = new DevComponents.DotNetBar.Bar();
     this.buttonItem1      = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem2      = new DevComponents.DotNetBar.ButtonItem();
     this.lblTittle        = new DevComponents.DotNetBar.LabelX();
     this.lblMsg           = new DevComponents.DotNetBar.LabelX();
     ((System.ComponentModel.ISupportInitialize)(this.bar1)).BeginInit();
     this.SuspendLayout();
     //
     // reflectionImage1
     //
     this.reflectionImage1.BackColor = System.Drawing.Color.Transparent;
     this.reflectionImage1.Image     = ((System.Drawing.Image)(resources.GetObject("reflectionImage1.Image")));
     this.reflectionImage1.Location  = new System.Drawing.Point(10, 9);
     this.reflectionImage1.Name      = "reflectionImage1";
     this.reflectionImage1.Size      = new System.Drawing.Size(76, 107);
     this.reflectionImage1.TabIndex  = 0;
     //
     // bar1
     //
     this.bar1.BackColor = System.Drawing.Color.Transparent;
     this.bar1.Dock      = System.Windows.Forms.DockStyle.Bottom;
     this.bar1.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
         this.buttonItem1,
         this.buttonItem2
     });
     this.bar1.Location = new System.Drawing.Point(0, 111);
     this.bar1.Name     = "bar1";
     this.bar1.Size     = new System.Drawing.Size(345, 25);
     this.bar1.Stretch  = true;
     this.bar1.Style    = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.bar1.TabIndex = 1;
     this.bar1.TabStop  = false;
     this.bar1.Text     = "bar1";
     //
     // buttonItem1
     //
     this.buttonItem1.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem1.Image")));
     this.buttonItem1.ImagePaddingHorizontal = 8;
     this.buttonItem1.Name = "buttonItem1";
     this.buttonItem1.Text = "buttonItem1";
     //
     // buttonItem2
     //
     this.buttonItem2.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem2.Image")));
     this.buttonItem2.ImagePaddingHorizontal = 8;
     this.buttonItem2.Name = "buttonItem2";
     this.buttonItem2.Text = "buttonItem2";
     //
     // lblTittle
     //
     this.lblTittle.BackColor = System.Drawing.Color.Transparent;
     this.lblTittle.Font      = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.lblTittle.Location  = new System.Drawing.Point(106, 12);
     this.lblTittle.Name      = "lblTittle";
     this.lblTittle.Size      = new System.Drawing.Size(108, 18);
     this.lblTittle.TabIndex  = 2;
     this.lblTittle.Text      = "<b>信息提示</b>";
     //
     // lblMsg
     //
     this.lblMsg.BackColor = System.Drawing.Color.Transparent;
     this.lblMsg.Location  = new System.Drawing.Point(106, 36);
     this.lblMsg.Name      = "lblMsg";
     this.lblMsg.Size      = new System.Drawing.Size(220, 88);
     this.lblMsg.TabIndex  = 3;
     this.lblMsg.Text      = "Using Balloon and other controls included with DotNetBar you can create great loo" +
                             "king custom alerts.";
     this.lblMsg.TextLineAlignment = System.Drawing.StringAlignment.Near;
     this.lblMsg.WordWrap          = true;
     this.lblMsg.Click            += new System.EventHandler(this.lblMsg_Click);
     this.lblMsg.MouseClick       += new System.Windows.Forms.MouseEventHandler(this.lblMsg_MouseClick);
     this.lblMsg.MouseEnter       += new System.EventHandler(this.lblMsg_MouseEnter);
     this.lblMsg.MouseLeave       += new System.EventHandler(this.lblMsg_MouseLeave);
     //
     // AlertCustom
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(6, 14);
     this.BackColor         = System.Drawing.Color.FromArgb(((int)(((byte)(227)))), ((int)(((byte)(239)))), ((int)(((byte)(255)))));
     this.BackColor2        = System.Drawing.Color.FromArgb(((int)(((byte)(175)))), ((int)(((byte)(210)))), ((int)(((byte)(255)))));
     this.BorderColor       = System.Drawing.Color.FromArgb(((int)(((byte)(101)))), ((int)(((byte)(147)))), ((int)(((byte)(207)))));
     this.CaptionFont       = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
     this.ClientSize        = new System.Drawing.Size(345, 136);
     this.Controls.Add(this.lblMsg);
     this.Controls.Add(this.lblTittle);
     this.Controls.Add(this.bar1);
     this.Controls.Add(this.reflectionImage1);
     this.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(8)))), ((int)(((byte)(55)))), ((int)(((byte)(114)))));
     this.Location  = new System.Drawing.Point(0, 0);
     this.Name      = "AlertCustom";
     this.Style     = DevComponents.DotNetBar.eBallonStyle.Office2007Alert;
     ((System.ComponentModel.ISupportInitialize)(this.bar1)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle4 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle3 = new System.Windows.Forms.DataGridViewCellStyle();
     this.dataGridViewTextBoxColumn1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.labelX1 = new DevComponents.DotNetBar.LabelX();
     this.btnClose = new DevComponents.DotNetBar.ButtonX();
     this.btnCopy = new DevComponents.DotNetBar.ButtonX();
     this.dataGridViewTextBoxColumn2 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.grdProgramPlanList = new DevComponents.DotNetBar.Controls.DataGridViewX();
     this.colID = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colName = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colGrade_year = new System.Windows.Forms.DataGridViewTextBoxColumn();
     ((System.ComponentModel.ISupportInitialize)(this.grdProgramPlanList)).BeginInit();
     this.SuspendLayout();
     //
     // dataGridViewTextBoxColumn1
     //
     this.dataGridViewTextBoxColumn1.HeaderText = "系統編號";
     this.dataGridViewTextBoxColumn1.Name = "dataGridViewTextBoxColumn1";
     this.dataGridViewTextBoxColumn1.ReadOnly = true;
     this.dataGridViewTextBoxColumn1.Visible = false;
     //
     // labelX1
     //
     this.labelX1.AutoSize = true;
     this.labelX1.BackColor = System.Drawing.Color.Transparent;
     //
     //
     //
     this.labelX1.BackgroundStyle.Class = "";
     this.labelX1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX1.Location = new System.Drawing.Point(9, 396);
     this.labelX1.Name = "labelX1";
     this.labelX1.Size = new System.Drawing.Size(194, 56);
     this.labelX1.TabIndex = 7;
     this.labelX1.Text = "黃色為重覆班級\r\n請選擇所要複製班級\r\n複製時,您可選擇覆蓋或略過。";
     //
     // btnClose
     //
     this.btnClose.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btnClose.BackColor = System.Drawing.Color.Transparent;
     this.btnClose.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.btnClose.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.btnClose.Location = new System.Drawing.Point(309, 423);
     this.btnClose.Name = "btnClose";
     this.btnClose.Size = new System.Drawing.Size(75, 25);
     this.btnClose.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.btnClose.TabIndex = 6;
     this.btnClose.Text = "關閉";
     //
     // btnCopy
     //
     this.btnCopy.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btnCopy.BackColor = System.Drawing.Color.Transparent;
     this.btnCopy.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.btnCopy.DialogResult = System.Windows.Forms.DialogResult.OK;
     this.btnCopy.Location = new System.Drawing.Point(196, 423);
     this.btnCopy.Name = "btnCopy";
     this.btnCopy.Size = new System.Drawing.Size(107, 25);
     this.btnCopy.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.btnCopy.TabIndex = 5;
     this.btnCopy.Text = "複製所選(0)";
     this.btnCopy.Click += new System.EventHandler(this.btnCopy_Click);
     //
     // dataGridViewTextBoxColumn2
     //
     this.dataGridViewTextBoxColumn2.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
     dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     this.dataGridViewTextBoxColumn2.DefaultCellStyle = dataGridViewCellStyle1;
     this.dataGridViewTextBoxColumn2.HeaderText = "課程規劃名稱";
     this.dataGridViewTextBoxColumn2.Name = "dataGridViewTextBoxColumn2";
     this.dataGridViewTextBoxColumn2.ReadOnly = true;
     //
     // grdProgramPlanList
     //
     this.grdProgramPlanList.AllowUserToAddRows = false;
     this.grdProgramPlanList.AllowUserToDeleteRows = false;
     this.grdProgramPlanList.AllowUserToResizeRows = false;
     this.grdProgramPlanList.BackgroundColor = System.Drawing.Color.White;
     dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     dataGridViewCellStyle2.BackColor = System.Drawing.SystemColors.Control;
     dataGridViewCellStyle2.Font = new System.Drawing.Font("微軟正黑體", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(136)));
     dataGridViewCellStyle2.ForeColor = System.Drawing.SystemColors.WindowText;
     dataGridViewCellStyle2.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle2.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
     dataGridViewCellStyle2.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
     this.grdProgramPlanList.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle2;
     this.grdProgramPlanList.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.grdProgramPlanList.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.colID,
     this.colName,
     this.colGrade_year});
     dataGridViewCellStyle4.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle4.BackColor = System.Drawing.SystemColors.Window;
     dataGridViewCellStyle4.Font = new System.Drawing.Font("微軟正黑體", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(136)));
     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.grdProgramPlanList.DefaultCellStyle = dataGridViewCellStyle4;
     this.grdProgramPlanList.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(208)))), ((int)(((byte)(215)))), ((int)(((byte)(229)))));
     this.grdProgramPlanList.Location = new System.Drawing.Point(9, 9);
     this.grdProgramPlanList.Name = "grdProgramPlanList";
     this.grdProgramPlanList.ReadOnly = true;
     this.grdProgramPlanList.RowTemplate.Height = 24;
     this.grdProgramPlanList.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
     this.grdProgramPlanList.Size = new System.Drawing.Size(375, 381);
     this.grdProgramPlanList.TabIndex = 4;
     this.grdProgramPlanList.SelectionChanged += new System.EventHandler(this.grdProgramPlanList_SelectionChanged);
     //
     // colID
     //
     this.colID.HeaderText = "系統編號";
     this.colID.Name = "colID";
     this.colID.ReadOnly = true;
     this.colID.Visible = false;
     //
     // colName
     //
     dataGridViewCellStyle3.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     this.colName.DefaultCellStyle = dataGridViewCellStyle3;
     this.colName.HeaderText = "班級名稱";
     this.colName.Name = "colName";
     this.colName.ReadOnly = true;
     this.colName.Width = 220;
     //
     // colGrade_year
     //
     this.colGrade_year.HeaderText = "年級";
     this.colGrade_year.Name = "colGrade_year";
     this.colGrade_year.ReadOnly = true;
     //
     // GetClassListForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 17F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(393, 461);
     this.Controls.Add(this.btnClose);
     this.Controls.Add(this.btnCopy);
     this.Controls.Add(this.labelX1);
     this.Controls.Add(this.grdProgramPlanList);
     this.Name = "GetClassListForm";
     this.Text = "複製班級清單";
     this.Load += new System.EventHandler(this.GetClassListForm_Load);
     ((System.ComponentModel.ISupportInitialize)(this.grdProgramPlanList)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Пример #60
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(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);
 }