コード例 #1
1
 /// <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
        public void Init()
        {
            string           sms_sqlstr2 = "SELECT * FROM dev_tree_t";
            MySqlDataAdapter sms_da      = new MySqlDataAdapter(sms_sqlstr2, Framework.Environment.SMS_CONN);

            sms_ds = new DataSet();
            sms_da.Fill(sms_ds, "T");

            flowLayoutPanel1.Controls.Clear();
            GroupID       = 0;
            GroupName     = "";
            GroupTreeName = "";
            foreach (DataRow item in sms_ds.Tables[0].Rows)
            {
                if (item["level"].ToString() == "1")
                {
                    DevComponents.DotNetBar.ButtonX btn = new DevComponents.DotNetBar.ButtonX();
                    btn.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
                    btn.ColorTable     = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
                    btn.Name           = "btn_" + item["node_id"].ToString();
                    btn.Style          = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
                    btn.Text           = item["node_name"].ToString();
                    SizeF size = btn.CreateGraphics().MeasureString(btn.Text, DefaultFont);
                    btn.Size   = new System.Drawing.Size((int)size.Width + 40, 23);
                    btn.Tag    = item;
                    btn.Click += btn_Click;
                    flowLayoutPanel1.Controls.Add(btn);
                }
            }
        }
コード例 #3
0
        void btn_Click(object sender, EventArgs e)
        {
            DataRow row = ((DevComponents.DotNetBar.ButtonX)sender).Tag as DataRow;

            if (row != null)
            {
                GroupTreeName += "." + row["node_name"].ToString();
                flowLayoutPanel1.Controls.Clear();
                foreach (DataRow item in sms_ds.Tables[0].Rows)
                {
                    if (item["parent_id"].ToString() == row["node_id"].ToString())
                    {
                        DevComponents.DotNetBar.ButtonX btn = new DevComponents.DotNetBar.ButtonX();
                        btn.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
                        btn.ColorTable     = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
                        btn.Name           = "btn_" + item["node_id"].ToString();
                        btn.Style          = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
                        btn.Text           = item["node_name"].ToString();
                        SizeF size = btn.CreateGraphics().MeasureString(btn.Text, DefaultFont);
                        btn.Size = new System.Drawing.Size((int)size.Width + 40, 23);
                        btn.Tag  = item;
                        if (item["level"].ToString() == "4")
                        {
                            btn.Click += level4_btn_Click;
                        }
                        else
                        {
                            btn.Click += btn_Click;
                        }
                        flowLayoutPanel1.Controls.Add(btn);
                    }
                }
            }
        }
コード例 #4
0
ファイル: ButtonShape.cs プロジェクト: chiumimy/CaxGlobalTek
 public static void DownArrowBtn(DevComponents.DotNetBar.ButtonX Btn)
 {
     try
     {
         Point[] pts =
         {
             new Point(0,  20),
             new Point(10, 20),
             new Point(10,  0),
             new Point(30,  0),
             new Point(30, 20),
             new Point(40, 20),
             new Point(20, 40)
         };
         GraphicsPath polygon_path = new GraphicsPath(FillMode.Winding);
         polygon_path.AddPolygon(pts);
         Region polygon_region = new Region(polygon_path);
         Btn.Region = polygon_region;
         Btn.SetBounds(Btn.Location.X, Btn.Location.Y + 10, pts[5].X + 5, pts[6].Y + 5);
     }
     catch (System.Exception ex)
     {
         CaxLog.ShowListingWindow("箭頭按鈕建立失敗");
     }
 }
コード例 #5
0
        private void Duyet(DevComponents.DotNetBar.ButtonX but)
        {
            DialogResult dg = MessageBox.Show("Ban có chắn chắc muốn đặt:\n- Xe: " + fm.cbo_XeVe.SelectedValue.ToString() + "\n- Vị trí chỗ ngồi: " + but.Text, "Thông báo", MessageBoxButtons.YesNo, MessageBoxIcon.Question);

            if (dg == DialogResult.Yes)
            {
                lenh   = "Insert into ChoNgoi Values('" + IdChuyen + "', '" + fm.cbo_XeVe.Text + "', '" + but.Text + "')";
                lenh1  = "Insert into BanVe(IdChuyen, TenHanhKhach, SDTHanhKhach) ";
                lenh1 += "Values('" + IdChuyen + "', N'" + fm.txt_TenHanhKhach.Text + "', '" + fm.txt_SoDTHanhKhach.Text + "')";
                SqlCommand com  = new SqlCommand(lenh, Ket_noi.connect);
                SqlCommand com1 = new SqlCommand(lenh1, Ket_noi.connect);
                try
                {
                    Ket_noi.connect.Open();
                    com.ExecuteNonQuery();
                    com1.ExecuteNonQuery();
                    Ket_noi.connect.Close();
                    MessageBox.Show("Đặt chỗ thành công", "Thông báo", MessageBoxButtons.OK, MessageBoxIcon.Information);
                    Duyet_danh_sach_cho_ngoi();
                }
                catch (Exception ex)
                {
                    MessageBox.Show("Chỗ này đã có người đặt rồi bạn ơi!", "Thông báo", MessageBoxButtons.OK, MessageBoxIcon.Hand);
                    Ket_noi.connect.Close();
                }
            }
            else
            {
                MessageBox.Show("Đã hủy thao tác chọn chỗ ngồi, bạn có thể chọn chỗ khác nếu muốn!", "Thông báo", MessageBoxButtons.OK, MessageBoxIcon.Information);
            }
        }
コード例 #6
0
ファイル: frmSymbolEdit.cs プロジェクト: siszoey/geosufan
        private void Button_Click(object sender, EventArgs e)
        {
            DevComponents.DotNetBar.ButtonX button = sender as DevComponents.DotNetBar.ButtonX;
            switch (button.Name)
            {
            case "buttonOK":
                m_SymbolObject.ReGenerateSymbol(labelPreview.Tag as ESRI.ArcGIS.Display.ISymbol);
                m_EditItem.DoAfterEdit(labelPreview.Tag, System.Windows.Forms.DialogResult.OK, m_EditType);
                axSymbologyControl1.Clear();
                this.Close();
                break;

            case "buttonCancel":
                //m_EditItem.DoAfterEdit(null, System.Windows.Forms.DialogResult.Cancel, m_EditType);
                axSymbologyControl1.Clear();
                this.Close();
                break;

            case "buttonBrowse":
                System.Windows.Forms.OpenFileDialog openDialog = new System.Windows.Forms.OpenFileDialog();
                openDialog.RestoreDirectory = true;
                openDialog.Filter           = "Engine·ûºÅ¿âÎļþ (*.ServerStyle)|*.ServerStyle|ArcGIS·ûºÅ¿âÎļþ (*.Style)|*.Style";
                openDialog.Title            = "Ñ¡Ôñ·ûºÅ¿â";
                openDialog.ShowReadOnly     = true;
                openDialog.Multiselect      = false;
                if (openDialog.ShowDialog() == System.Windows.Forms.DialogResult.OK)
                {
                    cmbStyleFiles.Items.Add(openDialog.FileName);
                    cmbStyleFiles.Text = openDialog.FileName;
                }
                break;
            }
        }
コード例 #7
0
        private void LoadPagebut()
        {
            try
            {
                int x = this.Width - 110;
                int y = this.Height - 140;
                DevComponents.DotNetBar.ButtonX[] but_Page = new DevComponents.DotNetBar.ButtonX[3];
                for (int i = 1; i <= 2; i++)
                {
                    but_Page[i] = new DevComponents.DotNetBar.ButtonX
                    {
                        Name = "but_page" + i.ToString(),
                        Size = new Size(80, 75)
                    };
                    if (i == 1)
                    {
                        but_Page[i].Location        = new Point(5, y);
                        but_Page[i].BackgroundImage = imageList_page.Images[1];
                    }
                    else
                    {
                        but_Page[i].Location        = new Point(x, y);
                        but_Page[i].BackgroundImage = imageList_page.Images[0];
                    }

                    but_Page[i].BackgroundImageLayout = ImageLayout.Stretch;
                    but_Page[i].ColorTable            = DevComponents.DotNetBar.eButtonColor.Blue;
                    but_Page[i].Click += new System.EventHandler(but_Page_Click);
                    this.Gr_gui.Controls.Add(but_Page[i]);
                }
            }
            catch
            { }
        }
コード例 #8
0
        private void LoadGui()
        {
            try
            {
                this.pan_gui.Controls.Clear();
                int GroupW = this.pan_gui.Width;
                int GroupH = this.pan_gui.Height;
                int Guibut = HouseGui + 10;
                DevComponents.DotNetBar.ButtonX[] but_gui = new DevComponents.DotNetBar.ButtonX[Guibut];

                for (int i = 0; i < 10; i++)
                {
                    int id = Guibox[i];
                    but_gui[i + 1] = new DevComponents.DotNetBar.ButtonX
                    {
                        Name = "but" + id.ToString(),
                        Text = id.ToString() + "号柜",
                        Font = new Font("宋体", 12, FontStyle.Bold),
                        Size = new Size(GroupW / 10, GroupH)
                    };
                    but_gui[i + 1].Location              = new Point((i + 1 - 1) * (but_gui[i + 1].Width + 1), 0);
                    but_gui[i + 1].BackgroundImage       = imageList_gui.Images[0];
                    but_gui[i + 1].BackgroundImageLayout = ImageLayout.Stretch;
                    but_gui[i + 1].ColorTable            = DevComponents.DotNetBar.eButtonColor.Blue;
                    this.pan_gui.Controls.Add(but_gui[i + 1]);
                    but_gui[i + 1].Click += new System.EventHandler(but_gui_Click);
                }
                this.pan_gui.Refresh();
                this.pan_gui.Update();
            }
            catch (Exception ex)
            {
                MessageBox.Show(ex.ToString());
            }
        }
コード例 #9
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.btnOK = new DevComponents.DotNetBar.ButtonX();
     this.btnCancel = new DevComponents.DotNetBar.ButtonX();
     this.txtMessage = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.SuspendLayout();
     //
     // btnOK
     //
     this.btnOK.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btnOK.BackColor = System.Drawing.Color.Transparent;
     this.btnOK.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.btnOK.DialogResult = System.Windows.Forms.DialogResult.OK;
     this.btnOK.Location = new System.Drawing.Point(68, 47);
     this.btnOK.Name = "btnOK";
     this.btnOK.Size = new System.Drawing.Size(60, 20);
     this.btnOK.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.btnOK.TabIndex = 0;
     this.btnOK.Text = "確定";
     this.btnOK.Click += new System.EventHandler(this.btnOK_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(134, 47);
     this.btnCancel.Name = "btnCancel";
     this.btnCancel.Size = new System.Drawing.Size(60, 20);
     this.btnCancel.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.btnCancel.TabIndex = 1;
     this.btnCancel.Text = "取消";
     this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
     //
     // txtMessage
     //
     //
     //
     //
     this.txtMessage.Border.Class = "TextBoxBorder";
     this.txtMessage.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txtMessage.Location = new System.Drawing.Point(12, 12);
     this.txtMessage.Name = "txtMessage";
     this.txtMessage.Size = new System.Drawing.Size(181, 25);
     this.txtMessage.TabIndex = 2;
     //
     // frmInputBox
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 17F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(210, 80);
     this.Controls.Add(this.txtMessage);
     this.Controls.Add(this.btnCancel);
     this.Controls.Add(this.btnOK);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.Name = "frmInputBox";
     this.Text = "frmInputBox";
     this.ResumeLayout(false);
 }
コード例 #10
0
 private void but_Page_Click(object sender, EventArgs e)
 {
     try
     {
         DevComponents.DotNetBar.ButtonX bt = (DevComponents.DotNetBar.ButtonX)sender;
         if (bt.Name == "but_page1")
         {
             if (Guibox[0] <= 1)
             {
                 return;
             }
             GuiboxSz(1);
             LoadGui();
         }
         else
         {
             if (Guibox[9] < HouseGui)
             {
                 GuiboxSz(2);
                 LoadGui();
             }
         }
     }
     catch
     {
         MessageBox.Show("加载库房失败,请重新加载!");
         return;
     }
 }
コード例 #11
0
ファイル: Copia de General.cs プロジェクト: ferbenor/moro
 static void AsignaImagen(object sender)
 {
     DevComponents.DotNetBar.ButtonX boton = (DevComponents.DotNetBar.ButtonX)sender;
     boton.TextColor = System.Drawing.Color.Black;
     // Asignar Imagenes
     if (boton.Name.Contains("btnAceptar") || boton.Name.Contains("btnSeleccionar") || boton.Name.Contains("btnRegistrar"))
     {
         boton.Image = General.Imagenes.Images["Aceptar.png"];
     }
     if (boton.Name.Contains("btnSalir") || boton.Name.Contains("btnCancelar"))
     {
         boton.Image = General.Imagenes.Images["Salir.png"];
     }
     if (boton.Name.Contains("btnBuscar") || boton.Name.Contains("btnConsultar"))
     {
         boton.Image = General.Imagenes.Images["Listar.ico"];
     }
     if (boton.Name.Contains("btnQuitar"))
     {
         boton.Image = General.Imagenes.Images["Eliminar.ico"];
     }
     if (boton.Name.Contains("btnCargar"))
     {
         boton.Image = General.Imagenes.Images["Agregar.png"];
     }
     return;
 }
コード例 #12
0
ファイル: ClsDataBasePanel.cs プロジェクト: siszoey/geosufan
        /// <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);
        }
コード例 #13
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.txtInput = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.btnConfirm = new DevComponents.DotNetBar.ButtonX();
     this.btnCancel = new DevComponents.DotNetBar.ButtonX();
     this.SuspendLayout();
     //
     // txtInput
     //
     //
     //
     //
     this.txtInput.Border.Class = "TextBoxBorder";
     this.txtInput.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txtInput.Location = new System.Drawing.Point(12, 12);
     this.txtInput.Name = "txtInput";
     this.txtInput.Size = new System.Drawing.Size(484, 25);
     this.txtInput.TabIndex = 0;
     //
     // btnConfirm
     //
     this.btnConfirm.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btnConfirm.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.btnConfirm.Location = new System.Drawing.Point(421, 47);
     this.btnConfirm.Name = "btnConfirm";
     this.btnConfirm.Size = new System.Drawing.Size(75, 23);
     this.btnConfirm.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.btnConfirm.TabIndex = 1;
     this.btnConfirm.Text = "確定";
     this.btnConfirm.Click += new System.EventHandler(this.btnConfirm_Click);
     //
     // btnCancel
     //
     this.btnCancel.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btnCancel.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.btnCancel.Location = new System.Drawing.Point(340, 47);
     this.btnCancel.Name = "btnCancel";
     this.btnCancel.Size = new System.Drawing.Size(75, 23);
     this.btnCancel.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.btnCancel.TabIndex = 1;
     this.btnCancel.Text = "取消";
     this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
     //
     // InputBox
     //
     this.AcceptButton = this.btnConfirm;
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
     this.CancelButton = this.btnCancel;
     this.ClientSize = new System.Drawing.Size(504, 82);
     this.Controls.Add(this.btnCancel);
     this.Controls.Add(this.btnConfirm);
     this.Controls.Add(this.txtInput);
     this.Font = new System.Drawing.Font("微軟正黑體", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(136)));
     this.Name = "InputBox";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "InputBox";
     this.ResumeLayout(false);
 }
コード例 #14
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);
 }
コード例 #15
0
ファイル: Copia de General.cs プロジェクト: ferbenor/moro
        static void AsignaGlobo(object sender, EventArgs e)
        {
            DevComponents.DotNetBar.ButtonX boton = (DevComponents.DotNetBar.ButtonX)sender;

            //Asignar ToolTipText
            globo.RemoveAll();
            globo.IsBalloon    = true;
            globo.ToolTipIcon  = ToolTipIcon.Info;
            globo.ToolTipTitle = "Click aquí";
            globo.SetToolTip(boton, "Para " + (boton.Text.Length == 0 ? boton.Name.Substring(3) : boton.Text.ToLower()));
        }
コード例 #16
0
 public static void KeyDown(object sender, KeyEventArgs e, DevComponents.DotNetBar.ButtonX btn)
 {
     if (e.KeyCode == Keys.Enter)
     {
         SendKeys.Send("{tab}");
     }
     if (e.KeyCode == Keys.F5)
     {
         btn.PerformClick();
     }
 }
コード例 #17
0
        private void InitializeComponent()
        {
            this.listBox1 = new System.Windows.Forms.ListBox();
            this.buttonX1 = new DevComponents.DotNetBar.ButtonX();
            this.buttonX2 = new DevComponents.DotNetBar.ButtonX();
            this.SuspendLayout();
            // 
            // listBox1
            // 
            foreach (INuGenCounter item in log.Items)
            {
                listBox1.Items.Add(item.CategoryName + " -> " + item.CounterName);
            }
            this.listBox1.FormattingEnabled = true;
            this.listBox1.Location = new System.Drawing.Point(12, 12);
            this.listBox1.Name = "listBox1";
            this.listBox1.Size = new System.Drawing.Size(229, 173);
            this.listBox1.TabIndex = 0;
            // 
            // buttonX1
            // 
            this.buttonX1.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
            this.buttonX1.Location = new System.Drawing.Point(12, 191);
            this.buttonX1.Name = "buttonX1";
            this.buttonX1.Size = new System.Drawing.Size(75, 23);
            this.buttonX1.TabIndex = 1;
            this.buttonX1.Text = "Remove";
            this.buttonX1.Click += new EventHandler(buttonX1_Click);
            // 
            // buttonX2
            // 
            this.buttonX2.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
            this.buttonX2.DialogResult = System.Windows.Forms.DialogResult.OK;
            this.buttonX2.Location = new System.Drawing.Point(182, 207);
            this.buttonX2.Name = "buttonX2";
            this.buttonX2.Size = new System.Drawing.Size(75, 23);
            this.buttonX2.TabIndex = 1;
            this.buttonX2.Text = "OK";
            // 
            // NuGenLogViewerDialog
            // 
            this.ClientSize = new System.Drawing.Size(269, 242);
            this.Controls.Add(this.buttonX2);
            this.Controls.Add(this.buttonX1);
            this.Controls.Add(this.listBox1);
            this.Name = "NuGenLogViewerDialog";
            this.Text = "Counters Being Logged";
            this.ResumeLayout(false);
            this.MaximumSize = this.Size;
            this.MinimumSize = this.Size;

        }
コード例 #18
0
 public override void DoButtonClick(DevComponents.DotNetBar.ButtonX button)
 {
     switch (button.Name)
     {
     case "SimpleSymbol":
     {
         m_EditObject = button;
         Form.frmSymbolEdit frm = new GeoSymbology.Form.frmSymbolEdit(this, m_ForeSymbol.DataValue, "");
         frm.ShowDialog();
     }
     break;
     }
 }
コード例 #19
0
 private void InitializeComponent()
 {
     this.listBox1 = new System.Windows.Forms.ListBox();
     this.buttonX1 = new DevComponents.DotNetBar.ButtonX();
     this.buttonX2 = new DevComponents.DotNetBar.ButtonX();
     this.SuspendLayout();
     //
     // listBox1
     //
     foreach (INuGenCounter item in log.Items)
     {
         listBox1.Items.Add(item.CategoryName + " -> " + item.CounterName);
     }
     this.listBox1.FormattingEnabled = true;
     this.listBox1.Location          = new System.Drawing.Point(12, 12);
     this.listBox1.Name     = "listBox1";
     this.listBox1.Size     = new System.Drawing.Size(229, 173);
     this.listBox1.TabIndex = 0;
     //
     // buttonX1
     //
     this.buttonX1.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.buttonX1.Location       = new System.Drawing.Point(12, 191);
     this.buttonX1.Name           = "buttonX1";
     this.buttonX1.Size           = new System.Drawing.Size(75, 23);
     this.buttonX1.TabIndex       = 1;
     this.buttonX1.Text           = "Remove";
     this.buttonX1.Click         += new EventHandler(buttonX1_Click);
     //
     // buttonX2
     //
     this.buttonX2.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.buttonX2.DialogResult   = System.Windows.Forms.DialogResult.OK;
     this.buttonX2.Location       = new System.Drawing.Point(182, 207);
     this.buttonX2.Name           = "buttonX2";
     this.buttonX2.Size           = new System.Drawing.Size(75, 23);
     this.buttonX2.TabIndex       = 1;
     this.buttonX2.Text           = "OK";
     //
     // NuGenLogViewerDialog
     //
     this.ClientSize = new System.Drawing.Size(269, 242);
     this.Controls.Add(this.buttonX2);
     this.Controls.Add(this.buttonX1);
     this.Controls.Add(this.listBox1);
     this.Name = "NuGenLogViewerDialog";
     this.Text = "Counters Being Logged";
     this.ResumeLayout(false);
     this.MaximumSize = this.Size;
     this.MinimumSize = this.Size;
 }
コード例 #20
0
ファイル: FrmCaselist.cs プロジェクト: zh7262703/Emr_MySql
 /// <summary>
 /// 构造函数
 /// </summary>
 /// <param name="inPatient">病人实例</param>
 /// <param name="frmCaseFirst">病案首页窗体引用</param>
 /// <param name="btn">被点击的按钮</param>
 public FrmCaselist(InPatientInfo inPatient, frmCases_First frmCaseFirst, DevComponents.DotNetBar.ButtonX btn, bool _isFree)
 {
     try
     {
         InitializeComponent();
         this.inPatient    = inPatient;
         this.frmCaseFirst = frmCaseFirst;
         this.btn          = btn;
         this.isFree       = _isFree;
     }
     catch
     {
     }
 }
コード例 #21
0
        private void Button_Click(object sender, EventArgs e)
        {
            DevComponents.DotNetBar.ButtonX button = sender as DevComponents.DotNetBar.ButtonX;
            switch (button.Name)
            {
            case "buttonOK":
                this.DialogResult = DialogResult.OK;
                break;

            case "buttonCancel":
                this.DialogResult = DialogResult.Cancel;
                break;
            }
        }
コード例 #22
0
        private void pictureBox1_Click(object sender, EventArgs e)
        {
            flowLayoutPanel1.Visible = false;
            DevComponents.DotNetBar.ButtonX bt = sender as DevComponents.DotNetBar.ButtonX;
            if (bt.Tag == null)
            {
                return;
            }

            if (bt.Tag is string)
            {
                switch (bt.Tag.ToString())
                {
                case "Play":
                    if (TaskPlay != null)
                    {
                        TaskPlay(this, null);
                    }
                    break;

                case "ReImport":
                    if (ReImport != null)
                    {
                        ReImport(this, null);
                    }
                    break;

                case "ReAnalyse":
                    break;

                case "Info":
                    if (Click != null)
                    {
                        Click(this, null);
                    }
                    break;

                default:
                    break;
                }
            }
            if (bt.Tag is E_TASK_ACTION_TYPE)
            {
                if (TaskDoAction != null)
                {
                    TaskDoAction(this, (E_TASK_ACTION_TYPE)bt.Tag);
                }
            }
        }
コード例 #23
0
ファイル: FrmMain1.cs プロジェクト: callme119/civil
        private void CreateItem(string title, string @class, object arg)
        {
            if (!SelectItem(title))
            {
                DevComponents.DotNetBar.DockContainerItem dockItem = new DevComponents.DotNetBar.DockContainerItem();
                System.Reflection.Assembly ass = System.Reflection.Assembly.LoadFrom(System.Windows.Forms.Application.ExecutablePath.Replace("\\" + System.Windows.Forms.Application.StartupPath, ""));
                System.Object obj;
                try
                {
                    obj = ass.CreateInstance(@class);
                    obj.GetType().GetProperty("Dock").SetValue(obj, System.Windows.Forms.DockStyle.Fill, null);
                    obj.GetType().GetProperty("Tag").SetValue(obj, arg, null);
                    if (arg != null)
                    {
                        System.Type type    = ass.GetType(@class);
                        object      @object = type.GetField("BtnAdd", System.Reflection.BindingFlags.Instance | System.Reflection.BindingFlags.NonPublic).GetValue(obj);
                        if (@object != null)
                        {
                            DevComponents.DotNetBar.ButtonX btn = (DevComponents.DotNetBar.ButtonX)@object;
                            btn.Click += new System.EventHandler(delegate(object o, System.EventArgs a)
                            {
                                RefreshChapterTree();
                            });
                        }
                    }
                }
                catch
                {
                    obj = ass.CreateInstance("Framework.Interface.Common.UclError");
                    obj.GetType().GetProperty("Dock").SetValue(obj, System.Windows.Forms.DockStyle.Fill, null);
                }
                if ("".Equals(BarMain.Items[0].Text))
                {
                    DockPanelMain.Controls.Add((System.Windows.Forms.Control)obj);

                    DockItemMain.Text = title;
                }
                else
                {
                    DevComponents.DotNetBar.PanelDockContainer panel = new DevComponents.DotNetBar.PanelDockContainer();
                    panel.Controls.Add((System.Windows.Forms.Control)obj);
                    BarMain.Items.Add(dockItem);
                    BarMain.RecalcLayout();
                    dockItem.Text     = title;
                    dockItem.Control  = panel;
                    dockItem.Selected = true;
                }
            }
        }
コード例 #24
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.btnNext = new DevComponents.DotNetBar.ButtonX();
     this.btnPrevious = new DevComponents.DotNetBar.ButtonX();
     this.SuspendLayout();
     //
     // btnNext
     //
     this.btnNext.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btnNext.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnNext.AutoSize = true;
     this.btnNext.BackColor = System.Drawing.Color.Transparent;
     this.btnNext.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.btnNext.DialogResult = System.Windows.Forms.DialogResult.OK;
     this.btnNext.Location = new System.Drawing.Point(405, 329);
     this.btnNext.Name = "btnNext";
     this.btnNext.Size = new System.Drawing.Size(75, 25);
     this.btnNext.TabIndex = 1;
     this.btnNext.Text = "下一步";
     this.btnNext.Click += new System.EventHandler(this.btnNext_Click);
     //
     // btnPrevious
     //
     this.btnPrevious.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btnPrevious.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnPrevious.AutoSize = true;
     this.btnPrevious.BackColor = System.Drawing.Color.Transparent;
     this.btnPrevious.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.btnPrevious.DialogResult = System.Windows.Forms.DialogResult.OK;
     this.btnPrevious.Location = new System.Drawing.Point(320, 329);
     this.btnPrevious.Name = "btnPrevious";
     this.btnPrevious.Size = new System.Drawing.Size(75, 25);
     this.btnPrevious.TabIndex = 0;
     this.btnPrevious.Text = "上一步";
     this.btnPrevious.Click += new System.EventHandler(this.btnPrevious_Click);
     //
     // WizardForm
     //
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
     this.ClientSize = new System.Drawing.Size(492, 366);
     this.Controls.Add(this.btnPrevious);
     this.Controls.Add(this.btnNext);
     this.Name = "WizardForm";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "WizardForm";
     this.ResumeLayout(false);
     this.PerformLayout();
 }
コード例 #25
0
 private void but_gui_Click(object sender, EventArgs e)
 {
     try
     {
         DevComponents.DotNetBar.ButtonX bt = (DevComponents.DotNetBar.ButtonX)sender;
         int g = Convert.ToInt32(bt.Name.Substring(3));
         V_HouseSetCs.HouseGui = g;
         T_Sysset.GetHouseGuiCs();
         StoreView st = new StoreView
         {
             ShowInTaskbar = true
         };
         st.Show();
     }
     catch (Exception ex)
     {
         MessageBox.Show(ex.ToString());
     }
 }
コード例 #26
0
 public static void SetXg(GroupBox g)
 {
     try {
         foreach (Control c in g.Controls)
         {
             if (c is DevComponents.DotNetBar.ButtonX)
             {
                 if (c.Text.Contains("修改"))
                 {
                     DevComponents.DotNetBar.ButtonX but = (DevComponents.DotNetBar.ButtonX)c;
                     but.PerformClick();
                     //SendKeys.Send("{Enter}");
                 }
             }
         }
     } catch (Exception e) {
         MessageBox.Show("此处错误:" + e.ToString());
     }
 }
コード例 #27
0
ファイル: Form1.cs プロジェクト: weimingtom/pap2
        private void buttonX3_Click(object sender, EventArgs e) // load
        {
            DevComponents.DotNetBar.ButtonX butt = sender as DevComponents.DotNetBar.ButtonX;
            butt.Enabled = false;

            this.buttonOpenMap.ContextMenuStrip.Items.Clear();
            foreach (string s in m_LogicIniFiles)
            {
                string postfix = ".Map.Logical";
                int    iStart  = s.LastIndexOfAny(new char[] { '\\', '/' });
                string mapname = s.Substring(iStart + 1, s.Length - iStart - postfix.Length - 1);

                ToolStripItem addedItem = this.buttonOpenMap.ContextMenuStrip.Items.Add(mapname);
                addedItem.Tag = s; // full file name
            }
            this.buttonOpenMap.ContextMenuStrip.Show(this.buttonOpenMap, (e as MouseEventArgs).Location);

            butt.Enabled = true;
        }
コード例 #28
0
ファイル: MainFrm.cs プロジェクト: wwkkww1983/WMS
 void DynAddButton(string name, string Text, string tag)
 {
     DevComponents.DotNetBar.ButtonX btn = new DevComponents.DotNetBar.ButtonX();
     btn.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     btn.ColorTable     = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     btn.Dock           = System.Windows.Forms.DockStyle.Top;
     btn.Image          = global::CIT.MES.Properties.Resources.extend;
     btn.ImageFixedSize = new System.Drawing.Size(40, 35);
     btn.Location       = new System.Drawing.Point(1, 25);
     btn.Name           = name;
     btn.Tag            = tag;
     btn.Size           = new System.Drawing.Size(205, 50);
     btn.Style          = DevComponents.DotNetBar.eDotNetBarStyle.OfficeXP;
     btn.TabIndex       = 25;
     btn.Text           = Text;
     btn.TextAlignment  = DevComponents.DotNetBar.eButtonTextAlignment.Left;
     btn.Click         += btn_menu_Click;
     this.xPanderPanel3.Controls.Add(btn);
 }
コード例 #29
0
        public void DoAfterEdit(object newValue, System.Windows.Forms.DialogResult result, string editType)
        {
            if (result != System.Windows.Forms.DialogResult.OK)
            {
                m_EditObject = null;
                return;
            }

            if (m_EditObject is DevComponents.DotNetBar.ButtonX)
            {
                DevComponents.DotNetBar.ButtonX button = m_EditObject as DevComponents.DotNetBar.ButtonX;
                m_ForeSymbol.DataValue = newValue as ISymbol;
                if (button.Image != null)
                {
                    button.Image.Dispose();
                    button.Image = null;
                }
                button.Image = ModuleCommon.Symbol2Picture(m_ForeSymbol.DataValue, 80, 40);
            }
        }
コード例 #30
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.webBrowser1 = new System.Windows.Forms.WebBrowser();
     this.btnClose = new DevComponents.DotNetBar.ButtonX();
     this.SuspendLayout();
     //
     // webBrowser1
     //
     this.webBrowser1.Location = new System.Drawing.Point(12, 12);
     this.webBrowser1.MinimumSize = new System.Drawing.Size(20, 20);
     this.webBrowser1.Name = "webBrowser1";
     this.webBrowser1.Size = new System.Drawing.Size(768, 507);
     this.webBrowser1.TabIndex = 2;
     //
     // btnClose
     //
     this.btnClose.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btnClose.BackColor = System.Drawing.Color.Transparent;
     this.btnClose.Location = new System.Drawing.Point(705, 531);
     this.btnClose.Name = "btnClose";
     this.btnClose.Size = new System.Drawing.Size(75, 23);
     this.btnClose.TabIndex = 40;
     this.btnClose.Text = "關閉";
     //
     // XmlViewForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 17F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(792, 566);
     this.Controls.Add(this.btnClose);
     this.Controls.Add(this.webBrowser1);
     this.MaximizeBox = true;
     this.Name = "XmlViewForm";
     this.Text = "驗證規則檢視器";
     this.ResumeLayout(false);
 }
コード例 #31
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.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();
 }
コード例 #32
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(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);
 }
コード例 #33
0
 /// <summary>
 /// �����֧������ķ��� - ��Ҫ
 /// ʹ�ô���༭���޸Ĵ˷��������ݡ�
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmScaffoldRecommendSelect));
     this.Btn_TjBzsgsj = new DevComponents.DotNetBar.ButtonX();
     this.Lb_TjDsyt = new DevComponents.DotNetBar.LabelX();
     this.Lb_TjDsgd = new DevComponents.DotNetBar.LabelX();
     this.DbInput_TjDsgd = new DevComponents.Editors.DoubleInput();
     this.comboItem2 = new DevComponents.Editors.ComboItem();
     this.comboItem1 = new DevComponents.Editors.ComboItem();
     this.Cbx_TjDsyt = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.groupPanel1 = new DevComponents.DotNetBar.Controls.GroupPanel();
     this.panelEx1 = new DevComponents.DotNetBar.PanelEx();
     this.groupPanel2 = new DevComponents.DotNetBar.Controls.GroupPanel();
     this.Lb7_Tj = new DevComponents.DotNetBar.LabelX();
     this.Lb6_Tj = new DevComponents.DotNetBar.LabelX();
     this.Lb5_Tj = new DevComponents.DotNetBar.LabelX();
     this.Lb4_Tj = new DevComponents.DotNetBar.LabelX();
     this.Lb3_Tj = new DevComponents.DotNetBar.LabelX();
     this.Lb2_Tj = new DevComponents.DotNetBar.LabelX();
     this.Lb1_Tj = new DevComponents.DotNetBar.LabelX();
     this.tabControlPanel1 = new DevComponents.DotNetBar.TabControlPanel();
     this.textBoxX1 = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.tabControlPanel4 = new DevComponents.DotNetBar.TabControlPanel();
     this.textBoxX4 = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.tabControlPanel3 = new DevComponents.DotNetBar.TabControlPanel();
     this.textBoxX3 = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.tabControlPanel2 = new DevComponents.DotNetBar.TabControlPanel();
     this.textBoxX2 = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.tabControlPanel5 = new DevComponents.DotNetBar.TabControlPanel();
     this.textBoxX5 = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.tabControlPanel6 = new DevComponents.DotNetBar.TabControlPanel();
     this.textBoxX6 = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.tabControlPanel7 = new DevComponents.DotNetBar.TabControlPanel();
     this.textBoxX7 = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.tabControlPanel8 = new DevComponents.DotNetBar.TabControlPanel();
     this.tabControl_Tj = new DevComponents.DotNetBar.TabControl();
     this.tcPanel_Tj5 = new DevComponents.DotNetBar.TabControlPanel();
     this.TJtabItem5 = new DevComponents.DotNetBar.TabItem(this.components);
     this.tcPanel_Tj1 = new DevComponents.DotNetBar.TabControlPanel();
     this.TJtabItem1 = new DevComponents.DotNetBar.TabItem(this.components);
     this.tcPanel_Tj2 = new DevComponents.DotNetBar.TabControlPanel();
     this.TJtabItem2 = new DevComponents.DotNetBar.TabItem(this.components);
     this.tcPanel_Tj7 = new DevComponents.DotNetBar.TabControlPanel();
     this.TJtabItem7 = new DevComponents.DotNetBar.TabItem(this.components);
     this.tcPanel_Tj6 = new DevComponents.DotNetBar.TabControlPanel();
     this.TJtabItem6 = new DevComponents.DotNetBar.TabItem(this.components);
     this.tcPanel_Tj4 = new DevComponents.DotNetBar.TabControlPanel();
     this.TJtabItem4 = new DevComponents.DotNetBar.TabItem(this.components);
     this.tcPanel_Tj3 = new DevComponents.DotNetBar.TabControlPanel();
     this.TJtabItem3 = new DevComponents.DotNetBar.TabItem(this.components);
     this.tabControlPanel16 = new DevComponents.DotNetBar.TabControlPanel();
     this.tabItem1 = new DevComponents.DotNetBar.TabItem(this.components);
     this.panelEx2 = new DevComponents.DotNetBar.PanelEx();
     ((System.ComponentModel.ISupportInitialize)(this.DbInput_TjDsgd)).BeginInit();
     this.groupPanel1.SuspendLayout();
     this.panelEx1.SuspendLayout();
     this.groupPanel2.SuspendLayout();
     this.tabControlPanel1.SuspendLayout();
     this.tabControlPanel4.SuspendLayout();
     this.tabControlPanel3.SuspendLayout();
     this.tabControlPanel2.SuspendLayout();
     this.tabControlPanel5.SuspendLayout();
     this.tabControlPanel6.SuspendLayout();
     this.tabControlPanel7.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.tabControl_Tj)).BeginInit();
     this.tabControl_Tj.SuspendLayout();
     this.panelEx2.SuspendLayout();
     this.SuspendLayout();
     //
     // Btn_TjBzsgsj
     //
     this.Btn_TjBzsgsj.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.Btn_TjBzsgsj.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.Btn_TjBzsgsj.Font = new System.Drawing.Font("����", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.Btn_TjBzsgsj.Location = new System.Drawing.Point(240, 2);
     this.Btn_TjBzsgsj.Name = "Btn_TjBzsgsj";
     this.Btn_TjBzsgsj.Size = new System.Drawing.Size(122, 36);
     this.Btn_TjBzsgsj.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.Btn_TjBzsgsj.TabIndex = 0;
     this.Btn_TjBzsgsj.Text = "����ר��ʩ������ ";
     this.Btn_TjBzsgsj.Click += new System.EventHandler(this.Btn_TjBzsgsj_Click);
     //
     // Lb_TjDsyt
     //
     this.Lb_TjDsyt.AutoSize = true;
     //
     //
     //
     this.Lb_TjDsyt.BackgroundStyle.Class = "";
     this.Lb_TjDsyt.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.Lb_TjDsyt.Location = new System.Drawing.Point(9, 27);
     this.Lb_TjDsyt.Name = "Lb_TjDsyt";
     this.Lb_TjDsyt.Size = new System.Drawing.Size(118, 18);
     this.Lb_TjDsyt.TabIndex = 48;
     this.Lb_TjDsyt.Text = "�������ּܵ���;";
     //
     // Lb_TjDsgd
     //
     this.Lb_TjDsgd.AutoSize = true;
     //
     //
     //
     this.Lb_TjDsgd.BackgroundStyle.Class = "";
     this.Lb_TjDsgd.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.Lb_TjDsgd.Location = new System.Drawing.Point(9, 76);
     this.Lb_TjDsgd.Name = "Lb_TjDsgd";
     this.Lb_TjDsgd.Size = new System.Drawing.Size(118, 18);
     this.Lb_TjDsgd.TabIndex = 47;
     this.Lb_TjDsgd.Text = "�������ּܵĸ߶�";
     //
     // DbInput_TjDsgd
     //
     //
     //
     //
     this.DbInput_TjDsgd.BackgroundStyle.Class = "DateTimeInputBackground";
     this.DbInput_TjDsgd.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.DbInput_TjDsgd.ButtonFreeText.Shortcut = DevComponents.DotNetBar.eShortcut.F2;
     this.DbInput_TjDsgd.Increment = 1;
     this.DbInput_TjDsgd.Location = new System.Drawing.Point(131, 76);
     this.DbInput_TjDsgd.MinValue = 0;
     this.DbInput_TjDsgd.Name = "DbInput_TjDsgd";
     this.DbInput_TjDsgd.ShowUpDown = true;
     this.DbInput_TjDsgd.Size = new System.Drawing.Size(89, 21);
     this.DbInput_TjDsgd.TabIndex = 49;
     this.DbInput_TjDsgd.ValueChanged += new System.EventHandler(this.DbInput_TjDsgd_ValueChanged);
     //
     // comboItem2
     //
     this.comboItem2.Text = "װ��װ��";
     //
     // comboItem1
     //
     this.comboItem1.Text = "�ṹʩ��";
     //
     // Cbx_TjDsyt
     //
     this.Cbx_TjDsyt.DisplayMember = "Text";
     this.Cbx_TjDsyt.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.Cbx_TjDsyt.FormattingEnabled = true;
     this.Cbx_TjDsyt.ItemHeight = 15;
     this.Cbx_TjDsyt.Items.AddRange(new object[] {
     this.comboItem1,
     this.comboItem2});
     this.Cbx_TjDsyt.Location = new System.Drawing.Point(130, 24);
     this.Cbx_TjDsyt.Name = "Cbx_TjDsyt";
     this.Cbx_TjDsyt.Size = new System.Drawing.Size(89, 21);
     this.Cbx_TjDsyt.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.Cbx_TjDsyt.TabIndex = 50;
     this.Cbx_TjDsyt.SelectedIndexChanged += new System.EventHandler(this.Cbx_TjDsyt_SelectedIndexChanged);
     //
     // groupPanel1
     //
     this.groupPanel1.CanvasColor = System.Drawing.SystemColors.Control;
     this.groupPanel1.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Windows7;
     this.groupPanel1.Controls.Add(this.Lb_TjDsgd);
     this.groupPanel1.Controls.Add(this.Lb_TjDsyt);
     this.groupPanel1.Controls.Add(this.Cbx_TjDsyt);
     this.groupPanel1.Controls.Add(this.DbInput_TjDsgd);
     this.groupPanel1.Dock = System.Windows.Forms.DockStyle.Top;
     this.groupPanel1.Location = new System.Drawing.Point(0, 0);
     this.groupPanel1.Name = "groupPanel1";
     this.groupPanel1.Size = new System.Drawing.Size(252, 150);
     //
     //
     //
     this.groupPanel1.Style.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.groupPanel1.Style.BackColorGradientAngle = 90;
     this.groupPanel1.Style.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.groupPanel1.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel1.Style.BorderBottomWidth = 1;
     this.groupPanel1.Style.BorderColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.groupPanel1.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel1.Style.BorderLeftWidth = 1;
     this.groupPanel1.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel1.Style.BorderRightWidth = 1;
     this.groupPanel1.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel1.Style.BorderTopWidth = 1;
     this.groupPanel1.Style.Class = "";
     this.groupPanel1.Style.CornerDiameter = 4;
     this.groupPanel1.Style.CornerType = DevComponents.DotNetBar.eCornerType.Rounded;
     this.groupPanel1.Style.TextAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Center;
     this.groupPanel1.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.groupPanel1.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near;
     //
     //
     //
     this.groupPanel1.StyleMouseDown.Class = "";
     this.groupPanel1.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.groupPanel1.StyleMouseOver.Class = "";
     this.groupPanel1.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.groupPanel1.TabIndex = 0;
     //
     // panelEx1
     //
     this.panelEx1.CanvasColor = System.Drawing.SystemColors.Control;
     this.panelEx1.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.panelEx1.Controls.Add(this.groupPanel2);
     this.panelEx1.Controls.Add(this.groupPanel1);
     this.panelEx1.Dock = System.Windows.Forms.DockStyle.Left;
     this.panelEx1.Location = new System.Drawing.Point(0, 0);
     this.panelEx1.Name = "panelEx1";
     this.panelEx1.Size = new System.Drawing.Size(252, 558);
     this.panelEx1.Style.Alignment = System.Drawing.StringAlignment.Center;
     this.panelEx1.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.panelEx1.Style.BackColor2.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.panelEx1.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.panelEx1.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.panelEx1.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.panelEx1.Style.GradientAngle = 90;
     this.panelEx1.TabIndex = 47;
     //
     // groupPanel2
     //
     this.groupPanel2.CanvasColor = System.Drawing.SystemColors.Control;
     this.groupPanel2.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Windows7;
     this.groupPanel2.Controls.Add(this.Lb7_Tj);
     this.groupPanel2.Controls.Add(this.Lb6_Tj);
     this.groupPanel2.Controls.Add(this.Lb5_Tj);
     this.groupPanel2.Controls.Add(this.Lb4_Tj);
     this.groupPanel2.Controls.Add(this.Lb3_Tj);
     this.groupPanel2.Controls.Add(this.Lb2_Tj);
     this.groupPanel2.Controls.Add(this.Lb1_Tj);
     this.groupPanel2.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.groupPanel2.Location = new System.Drawing.Point(0, 151);
     this.groupPanel2.Name = "groupPanel2";
     this.groupPanel2.Size = new System.Drawing.Size(252, 407);
     //
     //
     //
     this.groupPanel2.Style.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.groupPanel2.Style.BackColorGradientAngle = 90;
     this.groupPanel2.Style.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.groupPanel2.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel2.Style.BorderBottomWidth = 1;
     this.groupPanel2.Style.BorderColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.groupPanel2.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel2.Style.BorderLeftWidth = 1;
     this.groupPanel2.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel2.Style.BorderRightWidth = 1;
     this.groupPanel2.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel2.Style.BorderTopWidth = 1;
     this.groupPanel2.Style.Class = "";
     this.groupPanel2.Style.CornerDiameter = 4;
     this.groupPanel2.Style.CornerType = DevComponents.DotNetBar.eCornerType.Rounded;
     this.groupPanel2.Style.TextAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Center;
     this.groupPanel2.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.groupPanel2.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near;
     //
     //
     //
     this.groupPanel2.StyleMouseDown.Class = "";
     this.groupPanel2.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.groupPanel2.StyleMouseOver.Class = "";
     this.groupPanel2.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.groupPanel2.TabIndex = 3;
     //
     // Lb7_Tj
     //
     this.Lb7_Tj.AutoSize = true;
     //
     //
     //
     this.Lb7_Tj.BackgroundStyle.Class = "";
     this.Lb7_Tj.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.Lb7_Tj.Enabled = false;
     this.Lb7_Tj.Font = new System.Drawing.Font("����", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.Lb7_Tj.Location = new System.Drawing.Point(12, 303);
     this.Lb7_Tj.Name = "Lb7_Tj";
     this.Lb7_Tj.Size = new System.Drawing.Size(86, 20);
     this.Lb7_Tj.TabIndex = 48;
     this.Lb7_Tj.Text = "�� �����ּ�";
     //
     // Lb6_Tj
     //
     this.Lb6_Tj.AutoSize = true;
     //
     //
     //
     this.Lb6_Tj.BackgroundStyle.Class = "";
     this.Lb6_Tj.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.Lb6_Tj.Enabled = false;
     this.Lb6_Tj.Font = new System.Drawing.Font("����", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.Lb6_Tj.Location = new System.Drawing.Point(12, 265);
     this.Lb6_Tj.Name = "Lb6_Tj";
     this.Lb6_Tj.Size = new System.Drawing.Size(159, 20);
     this.Lb6_Tj.TabIndex = 48;
     this.Lb6_Tj.Text = "�� Һѹ����������ּ�";
     //
     // Lb5_Tj
     //
     this.Lb5_Tj.AutoSize = true;
     //
     //
     //
     this.Lb5_Tj.BackgroundStyle.Class = "";
     this.Lb5_Tj.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.Lb5_Tj.Enabled = false;
     this.Lb5_Tj.Font = new System.Drawing.Font("����", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.Lb5_Tj.Location = new System.Drawing.Point(12, 218);
     this.Lb5_Tj.Name = "Lb5_Tj";
     this.Lb5_Tj.Size = new System.Drawing.Size(130, 20);
     this.Lb5_Tj.TabIndex = 48;
     this.Lb5_Tj.Text = "�� ��ʽ�ֹܽ��ּ�";
     //
     // Lb4_Tj
     //
     this.Lb4_Tj.AutoSize = true;
     //
     //
     //
     this.Lb4_Tj.BackgroundStyle.Class = "";
     this.Lb4_Tj.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.Lb4_Tj.Enabled = false;
     this.Lb4_Tj.Font = new System.Drawing.Font("����", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.Lb4_Tj.Location = new System.Drawing.Point(12, 171);
     this.Lb4_Tj.Name = "Lb4_Tj";
     this.Lb4_Tj.Size = new System.Drawing.Size(187, 20);
     this.Lb4_Tj.TabIndex = 48;
     this.Lb4_Tj.Text = "�� �в����̿�ʽ�ֹܽ��ּ�";
     //
     // Lb3_Tj
     //
     this.Lb3_Tj.AutoSize = true;
     //
     //
     //
     this.Lb3_Tj.BackgroundStyle.Class = "";
     this.Lb3_Tj.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.Lb3_Tj.Enabled = false;
     this.Lb3_Tj.Font = new System.Drawing.Font("����", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.Lb3_Tj.Location = new System.Drawing.Point(12, 130);
     this.Lb3_Tj.Name = "Lb3_Tj";
     this.Lb3_Tj.Size = new System.Drawing.Size(115, 20);
     this.Lb3_Tj.TabIndex = 48;
     this.Lb3_Tj.Text = "�� ���ʽ���ּ�";
     //
     // Lb2_Tj
     //
     this.Lb2_Tj.AutoSize = true;
     //
     //
     //
     this.Lb2_Tj.BackgroundStyle.Class = "";
     this.Lb2_Tj.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.Lb2_Tj.Enabled = false;
     this.Lb2_Tj.Font = new System.Drawing.Font("����", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.Lb2_Tj.Location = new System.Drawing.Point(12, 86);
     this.Lb2_Tj.Name = "Lb2_Tj";
     this.Lb2_Tj.Size = new System.Drawing.Size(238, 20);
     this.Lb2_Tj.TabIndex = 48;
     this.Lb2_Tj.Text = "�� �ۼ�ʽ�ֹܽ��ּܣ����+�����";
     //
     // Lb1_Tj
     //
     this.Lb1_Tj.AutoSize = true;
     //
     //
     //
     this.Lb1_Tj.BackgroundStyle.Class = "";
     this.Lb1_Tj.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.Lb1_Tj.Enabled = false;
     this.Lb1_Tj.Font = new System.Drawing.Font("����", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.Lb1_Tj.Location = new System.Drawing.Point(12, 47);
     this.Lb1_Tj.Name = "Lb1_Tj";
     this.Lb1_Tj.Size = new System.Drawing.Size(202, 20);
     this.Lb1_Tj.TabIndex = 48;
     this.Lb1_Tj.Text = "�� �ۼ�ʽ�ֹܽ��ּܣ���أ�";
     //
     // tabControlPanel1
     //
     this.tabControlPanel1.Controls.Add(this.textBoxX1);
     this.tabControlPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabControlPanel1.Font = new System.Drawing.Font("����", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.tabControlPanel1.Location = new System.Drawing.Point(0, 47);
     this.tabControlPanel1.Name = "tabControlPanel1";
     this.tabControlPanel1.Padding = new System.Windows.Forms.Padding(1);
     this.tabControlPanel1.Size = new System.Drawing.Size(580, 470);
     this.tabControlPanel1.Style.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     this.tabControlPanel1.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.tabControlPanel1.Style.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(141)))), ((int)(((byte)(147)))), ((int)(((byte)(160)))));
     this.tabControlPanel1.Style.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Right)
                 | DevComponents.DotNetBar.eBorderSide.Bottom)));
     this.tabControlPanel1.Style.GradientAngle = 90;
     this.tabControlPanel1.TabIndex = 1;
     //
     // textBoxX1
     //
     //
     //
     //
     this.textBoxX1.Border.Class = "TextBoxBorder";
     this.textBoxX1.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.textBoxX1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.textBoxX1.Font = new System.Drawing.Font("����", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.textBoxX1.Location = new System.Drawing.Point(1, 1);
     this.textBoxX1.Multiline = true;
     this.textBoxX1.Name = "textBoxX1";
     this.textBoxX1.ReadOnly = true;
     this.textBoxX1.Size = new System.Drawing.Size(578, 468);
     this.textBoxX1.TabIndex = 1;
     this.textBoxX1.Text = resources.GetString("textBoxX1.Text");
     //
     // tabControlPanel4
     //
     this.tabControlPanel4.Controls.Add(this.textBoxX4);
     this.tabControlPanel4.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabControlPanel4.Location = new System.Drawing.Point(0, 47);
     this.tabControlPanel4.Name = "tabControlPanel4";
     this.tabControlPanel4.Padding = new System.Windows.Forms.Padding(1);
     this.tabControlPanel4.Size = new System.Drawing.Size(580, 470);
     this.tabControlPanel4.Style.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     this.tabControlPanel4.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.tabControlPanel4.Style.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(141)))), ((int)(((byte)(147)))), ((int)(((byte)(160)))));
     this.tabControlPanel4.Style.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Right)
                 | DevComponents.DotNetBar.eBorderSide.Bottom)));
     this.tabControlPanel4.Style.GradientAngle = 90;
     this.tabControlPanel4.TabIndex = 4;
     //
     // textBoxX4
     //
     //
     //
     //
     this.textBoxX4.Border.Class = "TextBoxBorder";
     this.textBoxX4.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.textBoxX4.Dock = System.Windows.Forms.DockStyle.Fill;
     this.textBoxX4.Font = new System.Drawing.Font("����", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.textBoxX4.Location = new System.Drawing.Point(1, 1);
     this.textBoxX4.Multiline = true;
     this.textBoxX4.Name = "textBoxX4";
     this.textBoxX4.ReadOnly = true;
     this.textBoxX4.Size = new System.Drawing.Size(578, 468);
     this.textBoxX4.TabIndex = 2;
     this.textBoxX4.Text = resources.GetString("textBoxX4.Text");
     //
     // tabControlPanel3
     //
     this.tabControlPanel3.Controls.Add(this.textBoxX3);
     this.tabControlPanel3.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabControlPanel3.Location = new System.Drawing.Point(0, 47);
     this.tabControlPanel3.Name = "tabControlPanel3";
     this.tabControlPanel3.Padding = new System.Windows.Forms.Padding(1);
     this.tabControlPanel3.Size = new System.Drawing.Size(580, 470);
     this.tabControlPanel3.Style.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     this.tabControlPanel3.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.tabControlPanel3.Style.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(141)))), ((int)(((byte)(147)))), ((int)(((byte)(160)))));
     this.tabControlPanel3.Style.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Right)
                 | DevComponents.DotNetBar.eBorderSide.Bottom)));
     this.tabControlPanel3.Style.GradientAngle = 90;
     this.tabControlPanel3.TabIndex = 3;
     //
     // textBoxX3
     //
     //
     //
     //
     this.textBoxX3.Border.Class = "TextBoxBorder";
     this.textBoxX3.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.textBoxX3.Dock = System.Windows.Forms.DockStyle.Fill;
     this.textBoxX3.Font = new System.Drawing.Font("����", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.textBoxX3.Location = new System.Drawing.Point(1, 1);
     this.textBoxX3.Multiline = true;
     this.textBoxX3.Name = "textBoxX3";
     this.textBoxX3.ReadOnly = true;
     this.textBoxX3.Size = new System.Drawing.Size(578, 468);
     this.textBoxX3.TabIndex = 2;
     this.textBoxX3.Text = resources.GetString("textBoxX3.Text");
     //
     // tabControlPanel2
     //
     this.tabControlPanel2.Controls.Add(this.textBoxX2);
     this.tabControlPanel2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabControlPanel2.Location = new System.Drawing.Point(0, 47);
     this.tabControlPanel2.Name = "tabControlPanel2";
     this.tabControlPanel2.Padding = new System.Windows.Forms.Padding(1);
     this.tabControlPanel2.Size = new System.Drawing.Size(580, 470);
     this.tabControlPanel2.Style.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     this.tabControlPanel2.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.tabControlPanel2.Style.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(141)))), ((int)(((byte)(147)))), ((int)(((byte)(160)))));
     this.tabControlPanel2.Style.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Right)
                 | DevComponents.DotNetBar.eBorderSide.Bottom)));
     this.tabControlPanel2.Style.GradientAngle = 90;
     this.tabControlPanel2.TabIndex = 2;
     //
     // textBoxX2
     //
     //
     //
     //
     this.textBoxX2.Border.Class = "TextBoxBorder";
     this.textBoxX2.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.textBoxX2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.textBoxX2.Font = new System.Drawing.Font("����", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.textBoxX2.Location = new System.Drawing.Point(1, 1);
     this.textBoxX2.Multiline = true;
     this.textBoxX2.Name = "textBoxX2";
     this.textBoxX2.ReadOnly = true;
     this.textBoxX2.Size = new System.Drawing.Size(578, 468);
     this.textBoxX2.TabIndex = 2;
     this.textBoxX2.Text = resources.GetString("textBoxX2.Text");
     //
     // tabControlPanel5
     //
     this.tabControlPanel5.Controls.Add(this.textBoxX5);
     this.tabControlPanel5.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabControlPanel5.Location = new System.Drawing.Point(0, 47);
     this.tabControlPanel5.Name = "tabControlPanel5";
     this.tabControlPanel5.Padding = new System.Windows.Forms.Padding(1);
     this.tabControlPanel5.Size = new System.Drawing.Size(580, 470);
     this.tabControlPanel5.Style.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     this.tabControlPanel5.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.tabControlPanel5.Style.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(141)))), ((int)(((byte)(147)))), ((int)(((byte)(160)))));
     this.tabControlPanel5.Style.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Right)
                 | DevComponents.DotNetBar.eBorderSide.Bottom)));
     this.tabControlPanel5.Style.GradientAngle = 90;
     this.tabControlPanel5.TabIndex = 5;
     //
     // textBoxX5
     //
     //
     //
     //
     this.textBoxX5.Border.Class = "TextBoxBorder";
     this.textBoxX5.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.textBoxX5.Dock = System.Windows.Forms.DockStyle.Fill;
     this.textBoxX5.Font = new System.Drawing.Font("����", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.textBoxX5.Location = new System.Drawing.Point(1, 1);
     this.textBoxX5.Multiline = true;
     this.textBoxX5.Name = "textBoxX5";
     this.textBoxX5.ReadOnly = true;
     this.textBoxX5.Size = new System.Drawing.Size(578, 468);
     this.textBoxX5.TabIndex = 2;
     this.textBoxX5.Text = resources.GetString("textBoxX5.Text");
     //
     // tabControlPanel6
     //
     this.tabControlPanel6.Controls.Add(this.textBoxX6);
     this.tabControlPanel6.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabControlPanel6.Location = new System.Drawing.Point(0, 47);
     this.tabControlPanel6.Name = "tabControlPanel6";
     this.tabControlPanel6.Padding = new System.Windows.Forms.Padding(1);
     this.tabControlPanel6.Size = new System.Drawing.Size(580, 470);
     this.tabControlPanel6.Style.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     this.tabControlPanel6.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.tabControlPanel6.Style.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(141)))), ((int)(((byte)(147)))), ((int)(((byte)(160)))));
     this.tabControlPanel6.Style.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Right)
                 | DevComponents.DotNetBar.eBorderSide.Bottom)));
     this.tabControlPanel6.Style.GradientAngle = 90;
     this.tabControlPanel6.TabIndex = 6;
     //
     // textBoxX6
     //
     //
     //
     //
     this.textBoxX6.Border.Class = "TextBoxBorder";
     this.textBoxX6.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.textBoxX6.Dock = System.Windows.Forms.DockStyle.Fill;
     this.textBoxX6.Font = new System.Drawing.Font("����", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.textBoxX6.Location = new System.Drawing.Point(1, 1);
     this.textBoxX6.Multiline = true;
     this.textBoxX6.Name = "textBoxX6";
     this.textBoxX6.ReadOnly = true;
     this.textBoxX6.Size = new System.Drawing.Size(578, 468);
     this.textBoxX6.TabIndex = 2;
     this.textBoxX6.Text = resources.GetString("textBoxX6.Text");
     //
     // tabControlPanel7
     //
     this.tabControlPanel7.Controls.Add(this.textBoxX7);
     this.tabControlPanel7.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabControlPanel7.Location = new System.Drawing.Point(0, 47);
     this.tabControlPanel7.Name = "tabControlPanel7";
     this.tabControlPanel7.Padding = new System.Windows.Forms.Padding(1);
     this.tabControlPanel7.Size = new System.Drawing.Size(580, 470);
     this.tabControlPanel7.Style.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     this.tabControlPanel7.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.tabControlPanel7.Style.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(141)))), ((int)(((byte)(147)))), ((int)(((byte)(160)))));
     this.tabControlPanel7.Style.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Right)
                 | DevComponents.DotNetBar.eBorderSide.Bottom)));
     this.tabControlPanel7.Style.GradientAngle = 90;
     this.tabControlPanel7.TabIndex = 7;
     this.tabControlPanel7.Visible = false;
     //
     // textBoxX7
     //
     //
     //
     //
     this.textBoxX7.Border.Class = "TextBoxBorder";
     this.textBoxX7.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.textBoxX7.Dock = System.Windows.Forms.DockStyle.Fill;
     this.textBoxX7.Font = new System.Drawing.Font("����", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.textBoxX7.ForeColor = System.Drawing.SystemColors.WindowText;
     this.textBoxX7.Location = new System.Drawing.Point(1, 1);
     this.textBoxX7.Multiline = true;
     this.textBoxX7.Name = "textBoxX7";
     this.textBoxX7.ReadOnly = true;
     this.textBoxX7.Size = new System.Drawing.Size(578, 468);
     this.textBoxX7.TabIndex = 2;
     this.textBoxX7.Text = "\r\n�ŵ㣺\r\n������ס�\r\n\r\nȱ�㣺\r\n��ȫ�Խϲ\r\n\r\n�����ԣ�\r\n��Ҫ���ڽ���������װ��װ�޹��̡�\r\n";
     //
     // tabControlPanel8
     //
     this.tabControlPanel8.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabControlPanel8.Location = new System.Drawing.Point(0, 47);
     this.tabControlPanel8.Name = "tabControlPanel8";
     this.tabControlPanel8.Padding = new System.Windows.Forms.Padding(1);
     this.tabControlPanel8.Size = new System.Drawing.Size(580, 470);
     this.tabControlPanel8.Style.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     this.tabControlPanel8.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.tabControlPanel8.Style.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(141)))), ((int)(((byte)(147)))), ((int)(((byte)(160)))));
     this.tabControlPanel8.Style.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Right)
                 | DevComponents.DotNetBar.eBorderSide.Bottom)));
     this.tabControlPanel8.Style.GradientAngle = 90;
     this.tabControlPanel8.TabIndex = 8;
     //
     // tabControl_Tj
     //
     this.tabControl_Tj.BackColor = System.Drawing.Color.Transparent;
     this.tabControl_Tj.CanReorderTabs = true;
     this.tabControl_Tj.Controls.Add(this.tcPanel_Tj1);
     this.tabControl_Tj.Controls.Add(this.tcPanel_Tj5);
     this.tabControl_Tj.Controls.Add(this.tcPanel_Tj2);
     this.tabControl_Tj.Controls.Add(this.tcPanel_Tj7);
     this.tabControl_Tj.Controls.Add(this.tcPanel_Tj6);
     this.tabControl_Tj.Controls.Add(this.tcPanel_Tj4);
     this.tabControl_Tj.Controls.Add(this.tcPanel_Tj3);
     this.tabControl_Tj.Controls.Add(this.tabControlPanel16);
     this.tabControl_Tj.Dock = System.Windows.Forms.DockStyle.Top;
     this.tabControl_Tj.Location = new System.Drawing.Point(252, 0);
     this.tabControl_Tj.Name = "tabControl_Tj";
     this.tabControl_Tj.SelectedTabFont = new System.Drawing.Font("����", 9F, System.Drawing.FontStyle.Bold);
     this.tabControl_Tj.SelectedTabIndex = 6;
     this.tabControl_Tj.Size = new System.Drawing.Size(580, 514);
     this.tabControl_Tj.Style = DevComponents.DotNetBar.eTabStripStyle.Office2007Document;
     this.tabControl_Tj.TabIndex = 51;
     this.tabControl_Tj.TabLayoutType = DevComponents.DotNetBar.eTabLayoutType.MultilineNoNavigationBox;
     this.tabControl_Tj.Tabs.Add(this.TJtabItem1);
     this.tabControl_Tj.Tabs.Add(this.TJtabItem2);
     this.tabControl_Tj.Tabs.Add(this.TJtabItem3);
     this.tabControl_Tj.Tabs.Add(this.TJtabItem4);
     this.tabControl_Tj.Tabs.Add(this.TJtabItem5);
     this.tabControl_Tj.Tabs.Add(this.TJtabItem6);
     this.tabControl_Tj.Tabs.Add(this.TJtabItem7);
     this.tabControl_Tj.Tabs.Add(this.tabItem1);
     this.tabControl_Tj.Text = "tabControl1";
     //
     // tcPanel_Tj5
     //
     this.tcPanel_Tj5.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tcPanel_Tj5.Location = new System.Drawing.Point(0, 47);
     this.tcPanel_Tj5.Name = "tcPanel_Tj5";
     this.tcPanel_Tj5.Padding = new System.Windows.Forms.Padding(1);
     this.tcPanel_Tj5.Size = new System.Drawing.Size(580, 467);
     this.tcPanel_Tj5.Style.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     this.tcPanel_Tj5.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.tcPanel_Tj5.Style.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(141)))), ((int)(((byte)(147)))), ((int)(((byte)(160)))));
     this.tcPanel_Tj5.Style.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Right)
                 | DevComponents.DotNetBar.eBorderSide.Bottom)));
     this.tcPanel_Tj5.Style.GradientAngle = 90;
     this.tcPanel_Tj5.TabIndex = 5;
     this.tcPanel_Tj5.TabItem = this.TJtabItem5;
     //
     // TJtabItem5
     //
     this.TJtabItem5.AttachedControl = this.tcPanel_Tj5;
     this.TJtabItem5.Name = "TJtabItem5";
     this.TJtabItem5.Text = "��ʽ�ֹܽ��ּ�";
     this.TJtabItem5.Visible = false;
     //
     // tcPanel_Tj1
     //
     this.tcPanel_Tj1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tcPanel_Tj1.Font = new System.Drawing.Font("����", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.tcPanel_Tj1.Location = new System.Drawing.Point(0, 47);
     this.tcPanel_Tj1.Name = "tcPanel_Tj1";
     this.tcPanel_Tj1.Padding = new System.Windows.Forms.Padding(1);
     this.tcPanel_Tj1.Size = new System.Drawing.Size(580, 467);
     this.tcPanel_Tj1.Style.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     this.tcPanel_Tj1.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.tcPanel_Tj1.Style.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(141)))), ((int)(((byte)(147)))), ((int)(((byte)(160)))));
     this.tcPanel_Tj1.Style.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Right)
                 | DevComponents.DotNetBar.eBorderSide.Bottom)));
     this.tcPanel_Tj1.Style.GradientAngle = 90;
     this.tcPanel_Tj1.TabIndex = 1;
     this.tcPanel_Tj1.TabItem = this.TJtabItem1;
     //
     // TJtabItem1
     //
     this.TJtabItem1.AttachedControl = this.tcPanel_Tj1;
     this.TJtabItem1.Name = "TJtabItem1";
     this.TJtabItem1.Text = "�ۼ�ʽ�ֹܽ��ּܣ���أ�";
     this.TJtabItem1.Visible = false;
     //
     // tcPanel_Tj2
     //
     this.tcPanel_Tj2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tcPanel_Tj2.Location = new System.Drawing.Point(0, 47);
     this.tcPanel_Tj2.Name = "tcPanel_Tj2";
     this.tcPanel_Tj2.Padding = new System.Windows.Forms.Padding(1);
     this.tcPanel_Tj2.Size = new System.Drawing.Size(580, 467);
     this.tcPanel_Tj2.Style.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     this.tcPanel_Tj2.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.tcPanel_Tj2.Style.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(141)))), ((int)(((byte)(147)))), ((int)(((byte)(160)))));
     this.tcPanel_Tj2.Style.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Right)
                 | DevComponents.DotNetBar.eBorderSide.Bottom)));
     this.tcPanel_Tj2.Style.GradientAngle = 90;
     this.tcPanel_Tj2.TabIndex = 2;
     this.tcPanel_Tj2.TabItem = this.TJtabItem2;
     //
     // TJtabItem2
     //
     this.TJtabItem2.AttachedControl = this.tcPanel_Tj2;
     this.TJtabItem2.Name = "TJtabItem2";
     this.TJtabItem2.Text = "�ۼ�ʽ�ֹܽ��ּܣ����+�����";
     this.TJtabItem2.Visible = false;
     //
     // tcPanel_Tj7
     //
     this.tcPanel_Tj7.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tcPanel_Tj7.Location = new System.Drawing.Point(0, 47);
     this.tcPanel_Tj7.Name = "tcPanel_Tj7";
     this.tcPanel_Tj7.Padding = new System.Windows.Forms.Padding(1);
     this.tcPanel_Tj7.Size = new System.Drawing.Size(580, 467);
     this.tcPanel_Tj7.Style.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     this.tcPanel_Tj7.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.tcPanel_Tj7.Style.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(141)))), ((int)(((byte)(147)))), ((int)(((byte)(160)))));
     this.tcPanel_Tj7.Style.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Right)
                 | DevComponents.DotNetBar.eBorderSide.Bottom)));
     this.tcPanel_Tj7.Style.GradientAngle = 90;
     this.tcPanel_Tj7.TabIndex = 7;
     this.tcPanel_Tj7.TabItem = this.TJtabItem7;
     this.tcPanel_Tj7.Visible = false;
     //
     // TJtabItem7
     //
     this.TJtabItem7.AttachedControl = this.tcPanel_Tj7;
     this.TJtabItem7.Name = "TJtabItem7";
     this.TJtabItem7.Text = "�����ּ�";
     this.TJtabItem7.Visible = false;
     //
     // tcPanel_Tj6
     //
     this.tcPanel_Tj6.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tcPanel_Tj6.Location = new System.Drawing.Point(0, 47);
     this.tcPanel_Tj6.Name = "tcPanel_Tj6";
     this.tcPanel_Tj6.Padding = new System.Windows.Forms.Padding(1);
     this.tcPanel_Tj6.Size = new System.Drawing.Size(580, 467);
     this.tcPanel_Tj6.Style.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     this.tcPanel_Tj6.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.tcPanel_Tj6.Style.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(141)))), ((int)(((byte)(147)))), ((int)(((byte)(160)))));
     this.tcPanel_Tj6.Style.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Right)
                 | DevComponents.DotNetBar.eBorderSide.Bottom)));
     this.tcPanel_Tj6.Style.GradientAngle = 90;
     this.tcPanel_Tj6.TabIndex = 6;
     this.tcPanel_Tj6.TabItem = this.TJtabItem6;
     //
     // TJtabItem6
     //
     this.TJtabItem6.AttachedControl = this.tcPanel_Tj6;
     this.TJtabItem6.Name = "TJtabItem6";
     this.TJtabItem6.Text = "Һѹ����������ּ�";
     this.TJtabItem6.Visible = false;
     //
     // tcPanel_Tj4
     //
     this.tcPanel_Tj4.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tcPanel_Tj4.Location = new System.Drawing.Point(0, 47);
     this.tcPanel_Tj4.Name = "tcPanel_Tj4";
     this.tcPanel_Tj4.Padding = new System.Windows.Forms.Padding(1);
     this.tcPanel_Tj4.Size = new System.Drawing.Size(580, 467);
     this.tcPanel_Tj4.Style.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     this.tcPanel_Tj4.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.tcPanel_Tj4.Style.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(141)))), ((int)(((byte)(147)))), ((int)(((byte)(160)))));
     this.tcPanel_Tj4.Style.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Right)
                 | DevComponents.DotNetBar.eBorderSide.Bottom)));
     this.tcPanel_Tj4.Style.GradientAngle = 90;
     this.tcPanel_Tj4.TabIndex = 4;
     this.tcPanel_Tj4.TabItem = this.TJtabItem4;
     //
     // TJtabItem4
     //
     this.TJtabItem4.AttachedControl = this.tcPanel_Tj4;
     this.TJtabItem4.Name = "TJtabItem4";
     this.TJtabItem4.Text = "�в����̿�ʽ�ֹܽ��ּ�";
     this.TJtabItem4.Visible = false;
     //
     // tcPanel_Tj3
     //
     this.tcPanel_Tj3.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tcPanel_Tj3.Location = new System.Drawing.Point(0, 47);
     this.tcPanel_Tj3.Name = "tcPanel_Tj3";
     this.tcPanel_Tj3.Padding = new System.Windows.Forms.Padding(1);
     this.tcPanel_Tj3.Size = new System.Drawing.Size(580, 467);
     this.tcPanel_Tj3.Style.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     this.tcPanel_Tj3.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.tcPanel_Tj3.Style.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(141)))), ((int)(((byte)(147)))), ((int)(((byte)(160)))));
     this.tcPanel_Tj3.Style.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Right)
                 | DevComponents.DotNetBar.eBorderSide.Bottom)));
     this.tcPanel_Tj3.Style.GradientAngle = 90;
     this.tcPanel_Tj3.TabIndex = 3;
     this.tcPanel_Tj3.TabItem = this.TJtabItem3;
     //
     // TJtabItem3
     //
     this.TJtabItem3.AttachedControl = this.tcPanel_Tj3;
     this.TJtabItem3.Name = "TJtabItem3";
     this.TJtabItem3.Text = "���ʽ���ּ�";
     this.TJtabItem3.Visible = false;
     //
     // tabControlPanel16
     //
     this.tabControlPanel16.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabControlPanel16.Location = new System.Drawing.Point(0, 47);
     this.tabControlPanel16.Name = "tabControlPanel16";
     this.tabControlPanel16.Padding = new System.Windows.Forms.Padding(1);
     this.tabControlPanel16.Size = new System.Drawing.Size(580, 467);
     this.tabControlPanel16.Style.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     this.tabControlPanel16.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.tabControlPanel16.Style.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(141)))), ((int)(((byte)(147)))), ((int)(((byte)(160)))));
     this.tabControlPanel16.Style.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Right)
                 | DevComponents.DotNetBar.eBorderSide.Bottom)));
     this.tabControlPanel16.Style.GradientAngle = 90;
     this.tabControlPanel16.TabIndex = 8;
     this.tabControlPanel16.TabItem = this.tabItem1;
     //
     // tabItem1
     //
     this.tabItem1.AttachedControl = this.tabControlPanel16;
     this.tabItem1.Name = "tabItem1";
     this.tabItem1.Text = "";
     //
     // panelEx2
     //
     this.panelEx2.CanvasColor = System.Drawing.SystemColors.Control;
     this.panelEx2.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.panelEx2.Controls.Add(this.Btn_TjBzsgsj);
     this.panelEx2.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.panelEx2.Location = new System.Drawing.Point(252, 520);
     this.panelEx2.Name = "panelEx2";
     this.panelEx2.Size = new System.Drawing.Size(580, 38);
     this.panelEx2.Style.Alignment = System.Drawing.StringAlignment.Center;
     this.panelEx2.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.panelEx2.Style.BackColor2.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.panelEx2.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.panelEx2.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.panelEx2.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.panelEx2.Style.GradientAngle = 90;
     this.panelEx2.TabIndex = 52;
     //
     // FrmScaffoldRecommendSelect
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.ClientSize = new System.Drawing.Size(832, 558);
     this.Controls.Add(this.panelEx2);
     this.Controls.Add(this.tabControl_Tj);
     this.Controls.Add(this.panelEx1);
     this.DoubleBuffered = true;
     this.Name = "FrmScaffoldRecommendSelect";
     this.Text = "���ּ�ѡ��-�Ƽ�ѡ��";
     ((System.ComponentModel.ISupportInitialize)(this.DbInput_TjDsgd)).EndInit();
     this.groupPanel1.ResumeLayout(false);
     this.groupPanel1.PerformLayout();
     this.panelEx1.ResumeLayout(false);
     this.groupPanel2.ResumeLayout(false);
     this.groupPanel2.PerformLayout();
     this.tabControlPanel1.ResumeLayout(false);
     this.tabControlPanel4.ResumeLayout(false);
     this.tabControlPanel3.ResumeLayout(false);
     this.tabControlPanel2.ResumeLayout(false);
     this.tabControlPanel5.ResumeLayout(false);
     this.tabControlPanel6.ResumeLayout(false);
     this.tabControlPanel7.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.tabControl_Tj)).EndInit();
     this.tabControl_Tj.ResumeLayout(false);
     this.panelEx2.ResumeLayout(false);
     this.ResumeLayout(false);
 }
コード例 #34
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.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);
 }
コード例 #35
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.label3 = new System.Windows.Forms.Label();
     this.cb_tipo = new System.Windows.Forms.ComboBox();
     this.btn_gr = new DevComponents.DotNetBar.ButtonX();
     this.crv = new CrystalDecisions.Windows.Forms.CrystalReportViewer();
     this.SuspendLayout();
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.Location = new System.Drawing.Point(18, 21);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(84, 13);
     this.label3.TabIndex = 38;
     this.label3.Text = "Tipo de Reporte";
     //
     // cb_tipo
     //
     this.cb_tipo.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cb_tipo.FormattingEnabled = true;
     this.cb_tipo.Items.AddRange(new object[] {
     "Texto",
     "Gráfica",
     "Ambos"});
     this.cb_tipo.Location = new System.Drawing.Point(108, 18);
     this.cb_tipo.Name = "cb_tipo";
     this.cb_tipo.Size = new System.Drawing.Size(139, 21);
     this.cb_tipo.TabIndex = 37;
     //
     // btn_gr
     //
     this.btn_gr.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btn_gr.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.btn_gr.Location = new System.Drawing.Point(849, 18);
     this.btn_gr.Name = "btn_gr";
     this.btn_gr.Size = new System.Drawing.Size(123, 30);
     this.btn_gr.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.btn_gr.TabIndex = 36;
     this.btn_gr.Text = "Generar reporte";
     this.btn_gr.Click += new System.EventHandler(this.btn_gr_Click);
     //
     // crv
     //
     this.crv.ActiveViewIndex = -1;
     this.crv.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.crv.Cursor = System.Windows.Forms.Cursors.Default;
     this.crv.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.crv.Location = new System.Drawing.Point(15, 61);
     this.crv.Name = "crv";
     this.crv.Size = new System.Drawing.Size(957, 625);
     this.crv.TabIndex = 39;
     this.crv.ToolPanelView = CrystalDecisions.Windows.Forms.ToolPanelViewType.None;
     //
     // FPorcentaje_MPA
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor = System.Drawing.Color.White;
     this.ClientSize = new System.Drawing.Size(987, 701);
     this.Controls.Add(this.crv);
     this.Controls.Add(this.label3);
     this.Controls.Add(this.cb_tipo);
     this.Controls.Add(this.btn_gr);
     this.Name = "FPorcentaje_MPA";
     this.Padding = new System.Windows.Forms.Padding(15);
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Porcentaje de materia prima en almacén";
     this.Load += new System.EventHandler(this.FPorcentaje_MPA_Load);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
コード例 #36
0
 /// <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();
 }
コード例 #37
0
        private void InitializeComponent()
        {
            var resources = new System.ComponentModel.ComponentResourceManager(typeof(AddressListEditor));

            ItemPanel_Values = new DevComponents.DotNetBar.ItemPanel();
            ItemPanel_Values.SelectedIndexChanged += new EventHandler(ItemPanel_Values_SelectedIndexChanged);
            LayoutControl1              = new DevComponents.DotNetBar.Layout.LayoutControl();
            TextBoxX_Value              = new DevComponents.DotNetBar.Controls.TextBoxX();
            TextBoxX_Value.TextChanged += new EventHandler(TextBoxX_Value_TextChanged);
            ButtonX_Hinzufügen          = new DevComponents.DotNetBar.ButtonX();
            ButtonX_Hinzufügen.Click   += new EventHandler(ButtonX_Hinzufügen_Click);
            ButtonX_Entfernen           = new DevComponents.DotNetBar.ButtonX();
            ButtonX_Entfernen.Click    += new EventHandler(ButtonX_Entfernen_Click);
            LayoutControlItem1          = new DevComponents.DotNetBar.Layout.LayoutControlItem();
            LayoutControlItem2          = new DevComponents.DotNetBar.Layout.LayoutControlItem();
            LayoutControlItem3          = new DevComponents.DotNetBar.Layout.LayoutControlItem();
            LayoutControl1.SuspendLayout();
            SuspendLayout();
            //
            // ItemPanel_Values
            //
            resources.ApplyResources(ItemPanel_Values, "ItemPanel_Values");
            ItemPanel_Values.BackColor = Color.Transparent;
            //
            //
            //
            ItemPanel_Values.BackgroundStyle.Class            = "ItemPanel";
            ItemPanel_Values.BackgroundStyle.CornerType       = DevComponents.DotNetBar.eCornerType.Square;
            ItemPanel_Values.ContainerControlProcessDialogKey = true;
            ItemPanel_Values.DragDropSupport   = true;
            ItemPanel_Values.LayoutOrientation = DevComponents.DotNetBar.eOrientation.Vertical;
            ItemPanel_Values.LicenseKey        = "F962CEC7-CD8F-4911-A9E9-CAB39962FC1F";
            ItemPanel_Values.Name             = "ItemPanel_Values";
            ItemPanel_Values.ReserveLeftSpace = false;
            ItemPanel_Values.Style            = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            //
            // LayoutControl1
            //
            LayoutControl1.BackColor = Color.Transparent;
            LayoutControl1.Controls.Add(TextBoxX_Value);
            LayoutControl1.Controls.Add(ButtonX_Hinzufügen);
            LayoutControl1.Controls.Add(ButtonX_Entfernen);
            resources.ApplyResources(LayoutControl1, "LayoutControl1");
            LayoutControl1.ForeColor = Color.Black;
            LayoutControl1.Name      = "LayoutControl1";
            //
            //
            //
            LayoutControl1.RootGroup.Items.AddRange(new DevComponents.DotNetBar.Layout.LayoutItemBase[] { LayoutControlItem1, LayoutControlItem2, LayoutControlItem3 });
            //
            // TextBoxX_Value
            //
            TextBoxX_Value.BackColor = Color.White;
            //
            //
            //
            TextBoxX_Value.Border.Class      = "TextBoxBorder";
            TextBoxX_Value.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            TextBoxX_Value.DisabledBackColor = Color.White;
            TextBoxX_Value.ForeColor         = Color.Black;
            resources.ApplyResources(TextBoxX_Value, "TextBoxX_Value");
            TextBoxX_Value.Name             = "TextBoxX_Value";
            TextBoxX_Value.PreventEnterBeep = true;
            //
            // ButtonX_Hinzufügen
            //
            ButtonX_Hinzufügen.AccessibleRole = AccessibleRole.PushButton;
            ButtonX_Hinzufügen.ColorTable     = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
            ButtonX_Hinzufügen.Image          = My.Resources.MyIcons.icons8_plus_math_16px;
            resources.ApplyResources(ButtonX_Hinzufügen, "ButtonX_Hinzufügen");
            ButtonX_Hinzufügen.Name  = "ButtonX_Hinzufügen";
            ButtonX_Hinzufügen.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            //
            // ButtonX_Entfernen
            //
            ButtonX_Entfernen.AccessibleRole = AccessibleRole.PushButton;
            ButtonX_Entfernen.ColorTable     = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
            ButtonX_Entfernen.Image          = My.Resources.MyIcons.icons8_delete_sign_16px;
            resources.ApplyResources(ButtonX_Entfernen, "ButtonX_Entfernen");
            ButtonX_Entfernen.Name  = "ButtonX_Entfernen";
            ButtonX_Entfernen.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            //
            // LayoutControlItem1
            //
            LayoutControlItem1.Control   = TextBoxX_Value;
            LayoutControlItem1.Height    = 28;
            LayoutControlItem1.MinSize   = new Size(120, 0);
            LayoutControlItem1.Name      = "LayoutControlItem1";
            LayoutControlItem1.Width     = 100;
            LayoutControlItem1.WidthType = DevComponents.DotNetBar.Layout.eLayoutSizeType.Percent;
            //
            // LayoutControlItem2
            //
            LayoutControlItem2.Control   = ButtonX_Hinzufügen;
            LayoutControlItem2.Height    = 31;
            LayoutControlItem2.MinSize   = new Size(32, 20);
            LayoutControlItem2.Name      = "LayoutControlItem2";
            LayoutControlItem2.Width     = 50;
            LayoutControlItem2.WidthType = DevComponents.DotNetBar.Layout.eLayoutSizeType.Percent;
            //
            // LayoutControlItem3
            //
            LayoutControlItem3.Control   = ButtonX_Entfernen;
            LayoutControlItem3.Height    = 31;
            LayoutControlItem3.MinSize   = new Size(32, 20);
            LayoutControlItem3.Name      = "LayoutControlItem3";
            LayoutControlItem3.Width     = 50;
            LayoutControlItem3.WidthType = DevComponents.DotNetBar.Layout.eLayoutSizeType.Percent;
            //
            // AddressListEditor
            //
            resources.ApplyResources(this, "$this");
            AutoScaleMode = AutoScaleMode.Font;
            Controls.Add(ItemPanel_Values);
            Controls.Add(LayoutControl1);
            FormBorderStyle    = FormBorderStyle.FixedSingle;
            MaximizeBox        = false;
            Name               = "AddressListEditor";
            TopLeftCornerSize  = 0;
            TopRightCornerSize = 0;
            LayoutControl1.ResumeLayout(false);
            ResumeLayout(false);
        }
コード例 #38
0
 /// <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();
 }
コード例 #39
0
        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);
        }
コード例 #40
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     this.styleManager1 = new DevComponents.DotNetBar.StyleManager(this.components);
     this.btnOk = new DevComponents.DotNetBar.ButtonX();
     this.btnCancel = new DevComponents.DotNetBar.ButtonX();
     this.panel1 = new System.Windows.Forms.Panel();
     this.tbTester = new System.Windows.Forms.TextBox();
     this.label1 = new System.Windows.Forms.Label();
     this.panel = new System.Windows.Forms.Panel();
     this.ribbonControl1 = new DevComponents.DotNetBar.RibbonControl();
     this.btnReadBack = new DevComponents.DotNetBar.ButtonX();
     this.panel1.SuspendLayout();
     this.SuspendLayout();
     //
     // styleManager1
     //
     this.styleManager1.ManagerStyle = DevComponents.DotNetBar.eStyle.Office2007Blue;
     //
     // btnOk
     //
     this.btnOk.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btnOk.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.btnOk.Location = new System.Drawing.Point(499, 120);
     this.btnOk.Name = "btnOk";
     this.btnOk.Size = new System.Drawing.Size(75, 23);
     this.btnOk.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.btnOk.TabIndex = 2;
     this.btnOk.Text = "确定";
     this.btnOk.Click += new System.EventHandler(this.btnOk_Click);
     //
     // btnCancel
     //
     this.btnCancel.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btnCancel.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.btnCancel.Location = new System.Drawing.Point(615, 120);
     this.btnCancel.Name = "btnCancel";
     this.btnCancel.Size = new System.Drawing.Size(75, 23);
     this.btnCancel.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.btnCancel.TabIndex = 3;
     this.btnCancel.Text = "取消";
     this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
     //
     // panel1
     //
     this.panel1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.panel1.Controls.Add(this.tbTester);
     this.panel1.Controls.Add(this.label1);
     this.panel1.Location = new System.Drawing.Point(5, 35);
     this.panel1.Name = "panel1";
     this.panel1.Size = new System.Drawing.Size(685, 27);
     this.panel1.TabIndex = 9;
     //
     // tbTester
     //
     this.tbTester.Location = new System.Drawing.Point(78, 1);
     this.tbTester.Name = "tbTester";
     this.tbTester.Size = new System.Drawing.Size(160, 21);
     this.tbTester.TabIndex = 1;
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(17, 6);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(53, 12);
     this.label1.TabIndex = 0;
     this.label1.Text = "测试人:";
     //
     // panel
     //
     this.panel.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.panel.Location = new System.Drawing.Point(5, 77);
     this.panel.Name = "panel";
     this.panel.Size = new System.Drawing.Size(685, 27);
     this.panel.TabIndex = 8;
     //
     // ribbonControl1
     //
     this.ribbonControl1.AutoSize = true;
     //
     //
     //
     this.ribbonControl1.BackgroundStyle.Class = "";
     this.ribbonControl1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribbonControl1.CaptionVisible = true;
     this.ribbonControl1.Dock = System.Windows.Forms.DockStyle.Top;
     this.ribbonControl1.KeyTipsFont = new System.Drawing.Font("Tahoma", 7F);
     this.ribbonControl1.Location = new System.Drawing.Point(5, 1);
     this.ribbonControl1.Name = "ribbonControl1";
     this.ribbonControl1.Padding = new System.Windows.Forms.Padding(0, 0, 0, 2);
     this.ribbonControl1.Size = new System.Drawing.Size(685, 40);
     this.ribbonControl1.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.ribbonControl1.TabGroupHeight = 14;
     this.ribbonControl1.TabIndex = 0;
     this.ribbonControl1.Text = "ribbonControl1";
     //
     // btnReadBack
     //
     this.btnReadBack.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btnReadBack.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.btnReadBack.Location = new System.Drawing.Point(17, 120);
     this.btnReadBack.Name = "btnReadBack";
     this.btnReadBack.Size = new System.Drawing.Size(144, 23);
     this.btnReadBack.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.btnReadBack.TabIndex = 10;
     this.btnReadBack.Text = "读回上次SN号";
     this.btnReadBack.Click += new System.EventHandler(this.btnReadBack_Click);
     //
     // FormTestConfig
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.CancelButton = this.btnCancel;
     this.ClientSize = new System.Drawing.Size(695, 148);
     this.Controls.Add(this.btnReadBack);
     this.Controls.Add(this.panel1);
     this.Controls.Add(this.panel);
     this.Controls.Add(this.btnOk);
     this.Controls.Add(this.btnCancel);
     this.Controls.Add(this.ribbonControl1);
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name = "FormTestConfig";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "测试预设";
     this.Load += new System.EventHandler(this.formTestConfig_Load);
     this.panel1.ResumeLayout(false);
     this.panel1.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
コード例 #41
0
 /// <summary> 
 /// 设计器支持所需的方法 - 不要
 /// 使用代码编辑器修改此方法的内容。
 /// </summary>
 private void InitializeComponent()
 {
     this.PnlButton = new DevComponents.DotNetBar.PanelEx();
     this.BtnRedo = new DevComponents.DotNetBar.ButtonX();
     this.BtnAdd = new DevComponents.DotNetBar.ButtonX();
     this.WinWordControlEx = new Framework.Interface.Common.WinWordControlEx();
     this.PnlButton.SuspendLayout();
     this.SuspendLayout();
     //
     // PnlButton
     //
     this.PnlButton.CanvasColor = System.Drawing.SystemColors.Control;
     this.PnlButton.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.PnlButton.Controls.Add(this.BtnRedo);
     this.PnlButton.Controls.Add(this.BtnAdd);
     this.PnlButton.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.PnlButton.Location = new System.Drawing.Point(0, 319);
     this.PnlButton.Name = "PnlButton";
     this.PnlButton.Size = new System.Drawing.Size(512, 28);
     this.PnlButton.Style.Alignment = System.Drawing.StringAlignment.Center;
     this.PnlButton.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.PnlButton.Style.BackColor2.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.PnlButton.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.PnlButton.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.PnlButton.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.PnlButton.Style.GradientAngle = 90;
     this.PnlButton.TabIndex = 1;
     //
     // BtnRedo
     //
     this.BtnRedo.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.BtnRedo.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.BtnRedo.Dock = System.Windows.Forms.DockStyle.Right;
     this.BtnRedo.Location = new System.Drawing.Point(362, 0);
     this.BtnRedo.Name = "BtnRedo";
     this.BtnRedo.Size = new System.Drawing.Size(75, 28);
     this.BtnRedo.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.BtnRedo.TabIndex = 2;
     this.BtnRedo.Text = "重新生成";
     this.BtnRedo.Click += new System.EventHandler(this.BtnRedo_Click);
     //
     // BtnAdd
     //
     this.BtnAdd.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.BtnAdd.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.BtnAdd.Dock = System.Windows.Forms.DockStyle.Right;
     this.BtnAdd.Location = new System.Drawing.Point(437, 0);
     this.BtnAdd.Name = "BtnAdd";
     this.BtnAdd.Size = new System.Drawing.Size(75, 28);
     this.BtnAdd.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.BtnAdd.TabIndex = 3;
     this.BtnAdd.Text = "保 存";
     this.BtnAdd.Click += new System.EventHandler(this.BtnAdd_Click);
     //
     // WinWordControlEx
     //
     this.WinWordControlEx.Dock = System.Windows.Forms.DockStyle.Fill;
     this.WinWordControlEx.Location = new System.Drawing.Point(0, 0);
     this.WinWordControlEx.Name = "WinWordControlEx";
     this.WinWordControlEx.Size = new System.Drawing.Size(512, 319);
     this.WinWordControlEx.TabIndex = 0;
     this.WinWordControlEx.Load += new System.EventHandler(this.WinWordControlEx_Load);
     //
     // UclArrayList
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.WinWordControlEx);
     this.Controls.Add(this.PnlButton);
     this.Name = "UclArrayList";
     this.Size = new System.Drawing.Size(512, 347);
     this.Load += new System.EventHandler(this.UclArrayList_Load);
     this.PnlButton.ResumeLayout(false);
     this.ResumeLayout(false);
 }
コード例 #42
0
 /// <summary> 
 /// Required method for Designer support - do not modify 
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.lvCareRecord = new DevComponents.DotNetBar.Controls.ListViewEx();
     this.colEditor = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.colFileDate = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.colCaseCategory = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.btnInsert = new DevComponents.DotNetBar.ButtonX();
     this.btnEdit = new DevComponents.DotNetBar.ButtonX();
     this.btnDelete = new DevComponents.DotNetBar.ButtonX();
     this.SuspendLayout();
     //
     // lvCareRecord
     //
     //
     //
     //
     this.lvCareRecord.Border.Class = "ListViewBorder";
     this.lvCareRecord.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.lvCareRecord.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
     this.colEditor,
     this.colFileDate,
     this.colCaseCategory});
     this.lvCareRecord.FullRowSelect = true;
     this.lvCareRecord.Location = new System.Drawing.Point(15, 12);
     this.lvCareRecord.MultiSelect = false;
     this.lvCareRecord.Name = "lvCareRecord";
     this.lvCareRecord.Size = new System.Drawing.Size(520, 186);
     this.lvCareRecord.TabIndex = 0;
     this.lvCareRecord.UseCompatibleStateImageBehavior = false;
     this.lvCareRecord.View = System.Windows.Forms.View.Details;
     //
     // colEditor
     //
     this.colEditor.Text = "記錄者";
     this.colEditor.Width = 100;
     //
     // colFileDate
     //
     this.colFileDate.Text = "立案日期";
     this.colFileDate.Width = 100;
     //
     // colCaseCategory
     //
     this.colCaseCategory.Text = "個案類別";
     this.colCaseCategory.Width = 200;
     //
     // btnInsert
     //
     this.btnInsert.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btnInsert.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.btnInsert.Location = new System.Drawing.Point(15, 205);
     this.btnInsert.Name = "btnInsert";
     this.btnInsert.Size = new System.Drawing.Size(75, 25);
     this.btnInsert.TabIndex = 1;
     this.btnInsert.Text = "新增";
     this.btnInsert.Click += new System.EventHandler(this.btnInsert_Click);
     //
     // btnEdit
     //
     this.btnEdit.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btnEdit.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.btnEdit.Location = new System.Drawing.Point(100, 205);
     this.btnEdit.Name = "btnEdit";
     this.btnEdit.Size = new System.Drawing.Size(75, 25);
     this.btnEdit.TabIndex = 2;
     this.btnEdit.Text = "修改";
     this.btnEdit.Click += new System.EventHandler(this.btnEdit_Click);
     //
     // btnDelete
     //
     this.btnDelete.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btnDelete.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.btnDelete.Location = new System.Drawing.Point(185, 205);
     this.btnDelete.Name = "btnDelete";
     this.btnDelete.Size = new System.Drawing.Size(75, 25);
     this.btnDelete.TabIndex = 3;
     this.btnDelete.Text = "刪除";
     this.btnDelete.Click += new System.EventHandler(this.btnDelete_Click);
     //
     // StudCareRecordContent
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 17F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.btnDelete);
     this.Controls.Add(this.btnEdit);
     this.Controls.Add(this.btnInsert);
     this.Controls.Add(this.lvCareRecord);
     this.Name = "StudCareRecordContent";
     this.Size = new System.Drawing.Size(550, 240);
     this.Load += new System.EventHandler(this.StudCareRecordContent_Load);
     this.ResumeLayout(false);
 }
コード例 #43
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
     this.cmdDelete = new DevComponents.DotNetBar.ButtonX();
     this.cmdUpdate = new DevComponents.DotNetBar.ButtonX();
     this.cmdAdd = new DevComponents.DotNetBar.ButtonX();
     this.cmdSelect = new DevComponents.DotNetBar.ButtonX();
     this.dataGridView1 = new DevComponents.DotNetBar.Controls.DataGridViewX();
     this.DepartmentGroupName = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.DepartmentGroupEnglishName = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.DepartmentGroupCode = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Order = new System.Windows.Forms.DataGridViewTextBoxColumn();
     ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).BeginInit();
     this.SuspendLayout();
     //
     // cmdDelete
     //
     this.cmdDelete.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.cmdDelete.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.cmdDelete.AutoSize = true;
     this.cmdDelete.BackColor = System.Drawing.Color.Transparent;
     this.cmdDelete.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.cmdDelete.Location = new System.Drawing.Point(452, 336);
     this.cmdDelete.Name = "cmdDelete";
     this.cmdDelete.Size = new System.Drawing.Size(75, 25);
     this.cmdDelete.TabIndex = 6;
     this.cmdDelete.Text = "刪除";
     //
     // cmdUpdate
     //
     this.cmdUpdate.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.cmdUpdate.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.cmdUpdate.AutoSize = true;
     this.cmdUpdate.BackColor = System.Drawing.Color.Transparent;
     this.cmdUpdate.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.cmdUpdate.Location = new System.Drawing.Point(366, 336);
     this.cmdUpdate.Name = "cmdUpdate";
     this.cmdUpdate.Size = new System.Drawing.Size(75, 25);
     this.cmdUpdate.TabIndex = 7;
     this.cmdUpdate.Text = "修改";
     //
     // cmdAdd
     //
     this.cmdAdd.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.cmdAdd.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.cmdAdd.AutoSize = true;
     this.cmdAdd.BackColor = System.Drawing.Color.Transparent;
     this.cmdAdd.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.cmdAdd.Location = new System.Drawing.Point(280, 336);
     this.cmdAdd.Name = "cmdAdd";
     this.cmdAdd.Size = new System.Drawing.Size(75, 25);
     this.cmdAdd.TabIndex = 8;
     this.cmdAdd.Text = "新增";
     //
     // cmdSelect
     //
     this.cmdSelect.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.cmdSelect.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.cmdSelect.AutoSize = true;
     this.cmdSelect.BackColor = System.Drawing.Color.Transparent;
     this.cmdSelect.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.cmdSelect.Location = new System.Drawing.Point(12, 336);
     this.cmdSelect.Name = "cmdSelect";
     this.cmdSelect.Size = new System.Drawing.Size(75, 25);
     this.cmdSelect.TabIndex = 9;
     this.cmdSelect.Text = "確定";
     //
     // dataGridView1
     //
     this.dataGridView1.AllowUserToAddRows = false;
     this.dataGridView1.AllowUserToDeleteRows = false;
     this.dataGridView1.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.dataGridView1.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.AllCells;
     this.dataGridView1.AutoSizeRowsMode = System.Windows.Forms.DataGridViewAutoSizeRowsMode.AllCells;
     this.dataGridView1.BackgroundColor = System.Drawing.Color.White;
     this.dataGridView1.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.dataGridView1.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.DepartmentGroupName,
     this.DepartmentGroupEnglishName,
     this.DepartmentGroupCode,
     this.Order});
     dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle1.BackColor = System.Drawing.SystemColors.Window;
     dataGridViewCellStyle1.Font = new System.Drawing.Font("微軟正黑體", 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.dataGridView1.DefaultCellStyle = dataGridViewCellStyle1;
     this.dataGridView1.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(208)))), ((int)(((byte)(215)))), ((int)(((byte)(229)))));
     this.dataGridView1.Location = new System.Drawing.Point(12, 13);
     this.dataGridView1.Name = "dataGridView1";
     this.dataGridView1.ReadOnly = true;
     this.dataGridView1.RowHeadersWidth = 25;
     this.dataGridView1.RowTemplate.Height = 24;
     this.dataGridView1.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
     this.dataGridView1.Size = new System.Drawing.Size(515, 314);
     this.dataGridView1.TabIndex = 1;
     //
     // DepartmentGroupName
     //
     this.DepartmentGroupName.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.AllCells;
     this.DepartmentGroupName.HeaderText = "系所組別中文名稱";
     this.DepartmentGroupName.Name = "DepartmentGroupName";
     this.DepartmentGroupName.ReadOnly = true;
     this.DepartmentGroupName.Width = 137;
     //
     // DepartmentGroupEnglishName
     //
     this.DepartmentGroupEnglishName.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.AllCells;
     this.DepartmentGroupEnglishName.HeaderText = "系所組別英文名稱";
     this.DepartmentGroupEnglishName.Name = "DepartmentGroupEnglishName";
     this.DepartmentGroupEnglishName.ReadOnly = true;
     this.DepartmentGroupEnglishName.Width = 137;
     //
     // DepartmentGroupCode
     //
     this.DepartmentGroupCode.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.AllCells;
     this.DepartmentGroupCode.HeaderText = "系所組別代碼";
     this.DepartmentGroupCode.Name = "DepartmentGroupCode";
     this.DepartmentGroupCode.ReadOnly = true;
     this.DepartmentGroupCode.Resizable = System.Windows.Forms.DataGridViewTriState.True;
     this.DepartmentGroupCode.Width = 111;
     //
     // Order
     //
     this.Order.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.AllCells;
     this.Order.HeaderText = "排列順序";
     this.Order.Name = "Order";
     this.Order.ReadOnly = true;
     this.Order.Width = 85;
     //
     // DepartmentGroupForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 17F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(537, 366);
     this.Controls.Add(this.cmdSelect);
     this.Controls.Add(this.cmdAdd);
     this.Controls.Add(this.cmdUpdate);
     this.Controls.Add(this.cmdDelete);
     this.Controls.Add(this.dataGridView1);
     this.DoubleBuffered = true;
     this.Name = "DepartmentGroupForm";
     this.Text = "系所組別";
     ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
コード例 #44
0
        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);
        }
コード例 #45
0
 /// <summary>
 /// 设计器支持所需的方法 - 不要
 /// 使用代码编辑器修改此方法的内容。
 /// </summary>
 private void InitializeComponent()
 {
     this.label1 = new System.Windows.Forms.Label();
     this.label2 = new System.Windows.Forms.Label();
     this.textBox1 = new System.Windows.Forms.TextBox();
     this.label3 = new System.Windows.Forms.Label();
     this.comboBox1 = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.comboBox2 = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.button1 = new DevComponents.DotNetBar.ButtonX();
     this.button2 = new DevComponents.DotNetBar.ButtonX();
     this.SuspendLayout();
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.BackColor = System.Drawing.Color.Transparent;
     this.label1.Location = new System.Drawing.Point(28, 40);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(53, 12);
     this.label1.TabIndex = 0;
     this.label1.Text = "项目名称";
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.BackColor = System.Drawing.Color.Transparent;
     this.label2.Location = new System.Drawing.Point(52, 72);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(29, 12);
     this.label2.TabIndex = 1;
     this.label2.Text = "条件";
     //
     // textBox1
     //
     this.textBox1.Location = new System.Drawing.Point(84, 100);
     this.textBox1.Name = "textBox1";
     this.textBox1.Size = new System.Drawing.Size(212, 21);
     this.textBox1.TabIndex = 2;
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.BackColor = System.Drawing.Color.Transparent;
     this.label3.Location = new System.Drawing.Point(40, 104);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(41, 12);
     this.label3.TabIndex = 3;
     this.label3.Text = "关键字";
     //
     // comboBox1
     //
     this.comboBox1.DisplayMember = "Text";
     this.comboBox1.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.comboBox1.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.comboBox1.FormattingEnabled = true;
     this.comboBox1.Items.AddRange(new object[] {
     "车牌",
     "Sim卡号",
     "终端序列号",
     "反控密码",
     "终端型号",
     "车辆品牌",
     "车辆类型",
     "车身颜色",
     "安装地点",
     "安装人员",
     "业务人员",
     "入网日期",
     "服务日期",
     "车辆信息备注",
     "车主1",
     "车主1电话",
     "车主1手机",
     "车主2",
     "车主2电话",
     "车主2手机",
     "登陆密码",
     "家庭地址",
     "办公室电话",
     "车主公司",
     "购车日期",
     "特殊要求",
     "用户信息备注"});
     this.comboBox1.Location = new System.Drawing.Point(84, 36);
     this.comboBox1.Name = "comboBox1";
     this.comboBox1.Size = new System.Drawing.Size(212, 22);
     this.comboBox1.TabIndex = 4;
     //
     // comboBox2
     //
     this.comboBox2.DisplayMember = "Text";
     this.comboBox2.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.comboBox2.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.comboBox2.FormattingEnabled = true;
     this.comboBox2.Items.AddRange(new object[] {
     "包含关键字",
     "等于关键字",
     "不包含关键字"});
     this.comboBox2.Location = new System.Drawing.Point(84, 68);
     this.comboBox2.Name = "comboBox2";
     this.comboBox2.Size = new System.Drawing.Size(212, 22);
     this.comboBox2.TabIndex = 5;
     //
     // button1
     //
     this.button1.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.button1.DialogResult = System.Windows.Forms.DialogResult.OK;
     this.button1.Location = new System.Drawing.Point(152, 132);
     this.button1.Name = "button1";
     this.button1.Size = new System.Drawing.Size(75, 23);
     this.button1.Style = DevComponents.DotNetBar.eDotNetBarStyle.Office2003;
     this.button1.TabIndex = 6;
     this.button1.Text = "确定";
     this.button1.Click += new System.EventHandler(this.button1_Click);
     //
     // button2
     //
     this.button2.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.button2.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.button2.Location = new System.Drawing.Point(240, 132);
     this.button2.Name = "button2";
     this.button2.Size = new System.Drawing.Size(75, 23);
     this.button2.Style = DevComponents.DotNetBar.eDotNetBarStyle.Office2003;
     this.button2.TabIndex = 7;
     this.button2.Text = "取消";
     //
     // FormQueryCondition
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.BackgroundImage = global::YTGPS_Client.Properties.Resources.fbk1;
     this.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
     this.ClientSize = new System.Drawing.Size(334, 175);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.textBox1);
     this.Controls.Add(this.button1);
     this.Controls.Add(this.label3);
     this.Controls.Add(this.comboBox2);
     this.Controls.Add(this.comboBox1);
     this.Controls.Add(this.button2);
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name = "FormQueryCondition";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "查询条件";
     this.Controls.SetChildIndex(this.button2, 0);
     this.Controls.SetChildIndex(this.comboBox1, 0);
     this.Controls.SetChildIndex(this.comboBox2, 0);
     this.Controls.SetChildIndex(this.label3, 0);
     this.Controls.SetChildIndex(this.button1, 0);
     this.Controls.SetChildIndex(this.textBox1, 0);
     this.Controls.SetChildIndex(this.label2, 0);
     this.Controls.SetChildIndex(this.label1, 0);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
コード例 #46
0
 private void assign_btn(DevComponents.DotNetBar.ButtonX btn)
 {
     btn.MouseLeave += new System.EventHandler(btn_MouseLeave);
     btn.MouseEnter += new System.EventHandler(btn_MouseEnter);
     btn.Click      += new System.EventHandler(btn_MouseClick);
 }
コード例 #47
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);
 }
コード例 #48
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);
 }
コード例 #49
0
 /// <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();
 }
コード例 #50
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.groupPanel1 = new DevComponents.DotNetBar.Controls.GroupPanel();
     this.panelEx1 = new DevComponents.DotNetBar.PanelEx();
     this.panelEx2 = new DevComponents.DotNetBar.PanelEx();
     this.groupPanel3 = new DevComponents.DotNetBar.Controls.GroupPanel();
     this.btnoktk = new DevComponents.DotNetBar.ButtonX();
     this.btnsuatk = new DevComponents.DotNetBar.ButtonX();
     this.btnhuy = new DevComponents.DotNetBar.ButtonX();
     this.txttienkham = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.labelX2 = new DevComponents.DotNetBar.LabelX();
     this.groupPanel2 = new DevComponents.DotNetBar.Controls.GroupPanel();
     this.groupPanel4 = new DevComponents.DotNetBar.Controls.GroupPanel();
     this.btnsuasobn = new DevComponents.DotNetBar.ButtonX();
     this.btnhuybn = new DevComponents.DotNetBar.ButtonX();
     this.btnok = new DevComponents.DotNetBar.ButtonX();
     this.labelX3 = new DevComponents.DotNetBar.LabelX();
     this.txtsobn = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.btnhuysobn = new DevComponents.DotNetBar.ButtonX();
     this.labelX1 = new DevComponents.DotNetBar.LabelX();
     this.btnsuasbn = new DevComponents.DotNetBar.ButtonX();
     this.txtsobntoida = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.groupPanel1.SuspendLayout();
     this.groupPanel3.SuspendLayout();
     this.groupPanel2.SuspendLayout();
     this.groupPanel4.SuspendLayout();
     this.SuspendLayout();
     //
     // groupPanel1
     //
     this.groupPanel1.CanvasColor = System.Drawing.SystemColors.Control;
     this.groupPanel1.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.groupPanel1.Controls.Add(this.panelEx1);
     this.groupPanel1.Controls.Add(this.panelEx2);
     this.groupPanel1.Controls.Add(this.groupPanel3);
     this.groupPanel1.Controls.Add(this.groupPanel2);
     this.groupPanel1.Location = new System.Drawing.Point(0, 0);
     this.groupPanel1.Name = "groupPanel1";
     this.groupPanel1.Size = new System.Drawing.Size(332, 340);
     //
     //
     //
     this.groupPanel1.Style.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.groupPanel1.Style.BackColorGradientAngle = 90;
     this.groupPanel1.Style.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.groupPanel1.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel1.Style.BorderBottomWidth = 1;
     this.groupPanel1.Style.BorderColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.groupPanel1.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel1.Style.BorderLeftWidth = 1;
     this.groupPanel1.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel1.Style.BorderRightWidth = 1;
     this.groupPanel1.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel1.Style.BorderTopWidth = 1;
     this.groupPanel1.Style.CornerDiameter = 4;
     this.groupPanel1.Style.TextAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Center;
     this.groupPanel1.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.groupPanel1.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near;
     this.groupPanel1.TabIndex = 3;
     //
     // panelEx1
     //
     this.panelEx1.CanvasColor = System.Drawing.SystemColors.Control;
     this.panelEx1.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.panelEx1.Location = new System.Drawing.Point(22, 173);
     this.panelEx1.Name = "panelEx1";
     this.panelEx1.Size = new System.Drawing.Size(269, 33);
     this.panelEx1.Style.Alignment = System.Drawing.StringAlignment.Center;
     this.panelEx1.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.panelEx1.Style.BackColor2.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.panelEx1.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.panelEx1.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.panelEx1.Style.CornerType = DevComponents.DotNetBar.eCornerType.Rounded;
     this.panelEx1.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.panelEx1.Style.GradientAngle = 90;
     this.panelEx1.TabIndex = 2;
     this.panelEx1.Text = "Tiền khám";
     //
     // panelEx2
     //
     this.panelEx2.CanvasColor = System.Drawing.SystemColors.Control;
     this.panelEx2.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.panelEx2.Location = new System.Drawing.Point(21, 6);
     this.panelEx2.Name = "panelEx2";
     this.panelEx2.Size = new System.Drawing.Size(270, 33);
     this.panelEx2.Style.Alignment = System.Drawing.StringAlignment.Center;
     this.panelEx2.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.panelEx2.Style.BackColor2.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.panelEx2.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.panelEx2.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.panelEx2.Style.CornerType = DevComponents.DotNetBar.eCornerType.Rounded;
     this.panelEx2.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.panelEx2.Style.GradientAngle = 90;
     this.panelEx2.TabIndex = 4;
     this.panelEx2.Text = "Số bệnh nhân tối đa";
     //
     // groupPanel3
     //
     this.groupPanel3.CanvasColor = System.Drawing.SystemColors.Control;
     this.groupPanel3.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.groupPanel3.Controls.Add(this.btnoktk);
     this.groupPanel3.Controls.Add(this.btnsuatk);
     this.groupPanel3.Controls.Add(this.btnhuy);
     this.groupPanel3.Controls.Add(this.txttienkham);
     this.groupPanel3.Controls.Add(this.labelX2);
     this.groupPanel3.Location = new System.Drawing.Point(11, 182);
     this.groupPanel3.Name = "groupPanel3";
     this.groupPanel3.Size = new System.Drawing.Size(308, 143);
     //
     //
     //
     this.groupPanel3.Style.BackColor = System.Drawing.Color.White;
     this.groupPanel3.Style.BackColor2 = System.Drawing.Color.White;
     this.groupPanel3.Style.BackColorGradientAngle = 90;
     this.groupPanel3.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel3.Style.BorderBottomWidth = 2;
     this.groupPanel3.Style.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(255)))));
     this.groupPanel3.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel3.Style.BorderLeftWidth = 2;
     this.groupPanel3.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel3.Style.BorderRightWidth = 2;
     this.groupPanel3.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel3.Style.BorderTopWidth = 2;
     this.groupPanel3.Style.CornerDiameter = 4;
     this.groupPanel3.Style.CornerType = DevComponents.DotNetBar.eCornerType.Rounded;
     this.groupPanel3.Style.TextAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Center;
     this.groupPanel3.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.groupPanel3.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near;
     this.groupPanel3.TabIndex = 4;
     //
     // btnoktk
     //
     this.btnoktk.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btnoktk.ColorTable = DevComponents.DotNetBar.eButtonColor.Office2007WithBackground;
     this.btnoktk.Location = new System.Drawing.Point(93, 88);
     this.btnoktk.Name = "btnoktk";
     this.btnoktk.Size = new System.Drawing.Size(75, 23);
     this.btnoktk.TabIndex = 5;
     this.btnoktk.Text = "OK";
     this.btnoktk.Visible = false;
     this.btnoktk.Click += new System.EventHandler(this.btnoktk_Click);
     //
     // btnsuatk
     //
     this.btnsuatk.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btnsuatk.ColorTable = DevComponents.DotNetBar.eButtonColor.Office2007WithBackground;
     this.btnsuatk.Location = new System.Drawing.Point(215, 42);
     this.btnsuatk.Name = "btnsuatk";
     this.btnsuatk.Size = new System.Drawing.Size(75, 23);
     this.btnsuatk.TabIndex = 4;
     this.btnsuatk.Text = "Sửa";
     this.btnsuatk.Click += new System.EventHandler(this.btnsuatk_Click);
     //
     // btnhuy
     //
     this.btnhuy.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btnhuy.ColorTable = DevComponents.DotNetBar.eButtonColor.Office2007WithBackground;
     this.btnhuy.Location = new System.Drawing.Point(174, 88);
     this.btnhuy.Name = "btnhuy";
     this.btnhuy.Size = new System.Drawing.Size(75, 23);
     this.btnhuy.TabIndex = 2;
     this.btnhuy.Text = "Hủy";
     this.btnhuy.Visible = false;
     this.btnhuy.Click += new System.EventHandler(this.btnhuy_Click);
     //
     // txttienkham
     //
     //
     //
     //
     this.txttienkham.Border.Class = "TextBoxBorder";
     this.txttienkham.Enabled = false;
     this.txttienkham.Location = new System.Drawing.Point(121, 45);
     this.txttienkham.Name = "txttienkham";
     this.txttienkham.Size = new System.Drawing.Size(88, 20);
     this.txttienkham.TabIndex = 1;
     //
     // labelX2
     //
     this.labelX2.BackColor = System.Drawing.Color.Transparent;
     this.labelX2.Location = new System.Drawing.Point(43, 42);
     this.labelX2.Name = "labelX2";
     this.labelX2.Size = new System.Drawing.Size(62, 23);
     this.labelX2.TabIndex = 3;
     this.labelX2.Text = "Tiền khám :";
     //
     // groupPanel2
     //
     this.groupPanel2.CanvasColor = System.Drawing.SystemColors.Control;
     this.groupPanel2.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.groupPanel2.Controls.Add(this.groupPanel4);
     this.groupPanel2.Controls.Add(this.btnhuysobn);
     this.groupPanel2.Controls.Add(this.labelX1);
     this.groupPanel2.Controls.Add(this.btnsuasbn);
     this.groupPanel2.Controls.Add(this.txtsobntoida);
     this.groupPanel2.Location = new System.Drawing.Point(11, 12);
     this.groupPanel2.Name = "groupPanel2";
     this.groupPanel2.Size = new System.Drawing.Size(308, 147);
     //
     //
     //
     this.groupPanel2.Style.BackColor = System.Drawing.Color.White;
     this.groupPanel2.Style.BackColor2 = System.Drawing.Color.White;
     this.groupPanel2.Style.BackColorGradientAngle = 90;
     this.groupPanel2.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel2.Style.BorderBottomWidth = 2;
     this.groupPanel2.Style.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(255)))));
     this.groupPanel2.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel2.Style.BorderLeftWidth = 2;
     this.groupPanel2.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel2.Style.BorderRightWidth = 2;
     this.groupPanel2.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel2.Style.BorderTopWidth = 2;
     this.groupPanel2.Style.CornerDiameter = 4;
     this.groupPanel2.Style.CornerType = DevComponents.DotNetBar.eCornerType.Rounded;
     this.groupPanel2.Style.TextAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Center;
     this.groupPanel2.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.groupPanel2.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near;
     this.groupPanel2.TabIndex = 3;
     //
     // groupPanel4
     //
     this.groupPanel4.CanvasColor = System.Drawing.SystemColors.Control;
     this.groupPanel4.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.groupPanel4.Controls.Add(this.btnsuasobn);
     this.groupPanel4.Controls.Add(this.btnhuybn);
     this.groupPanel4.Controls.Add(this.btnok);
     this.groupPanel4.Controls.Add(this.labelX3);
     this.groupPanel4.Controls.Add(this.txtsobn);
     this.groupPanel4.Location = new System.Drawing.Point(-3, -3);
     this.groupPanel4.Name = "groupPanel4";
     this.groupPanel4.Size = new System.Drawing.Size(308, 147);
     //
     //
     //
     this.groupPanel4.Style.BackColor = System.Drawing.Color.White;
     this.groupPanel4.Style.BackColor2 = System.Drawing.Color.White;
     this.groupPanel4.Style.BackColorGradientAngle = 90;
     this.groupPanel4.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel4.Style.BorderBottomWidth = 2;
     this.groupPanel4.Style.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(255)))));
     this.groupPanel4.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel4.Style.BorderLeftWidth = 2;
     this.groupPanel4.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel4.Style.BorderRightWidth = 2;
     this.groupPanel4.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel4.Style.BorderTopWidth = 2;
     this.groupPanel4.Style.CornerDiameter = 4;
     this.groupPanel4.Style.CornerType = DevComponents.DotNetBar.eCornerType.Rounded;
     this.groupPanel4.Style.TextAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Center;
     this.groupPanel4.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.groupPanel4.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near;
     this.groupPanel4.TabIndex = 4;
     //
     // btnsuasobn
     //
     this.btnsuasobn.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btnsuasobn.ColorTable = DevComponents.DotNetBar.eButtonColor.Office2007WithBackground;
     this.btnsuasobn.Location = new System.Drawing.Point(215, 51);
     this.btnsuasobn.Name = "btnsuasobn";
     this.btnsuasobn.Size = new System.Drawing.Size(75, 23);
     this.btnsuasobn.TabIndex = 7;
     this.btnsuasobn.Text = "Sửa";
     this.btnsuasobn.Click += new System.EventHandler(this.buttonX1_Click_1);
     //
     // btnhuybn
     //
     this.btnhuybn.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btnhuybn.ColorTable = DevComponents.DotNetBar.eButtonColor.Office2007WithBackground;
     this.btnhuybn.Location = new System.Drawing.Point(174, 93);
     this.btnhuybn.Name = "btnhuybn";
     this.btnhuybn.Size = new System.Drawing.Size(75, 23);
     this.btnhuybn.TabIndex = 5;
     this.btnhuybn.Text = "Hủy";
     this.btnhuybn.Visible = false;
     this.btnhuybn.Click += new System.EventHandler(this.btnhuybn_Click);
     //
     // btnok
     //
     this.btnok.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btnok.ColorTable = DevComponents.DotNetBar.eButtonColor.Office2007WithBackground;
     this.btnok.Location = new System.Drawing.Point(93, 93);
     this.btnok.Name = "btnok";
     this.btnok.Size = new System.Drawing.Size(75, 23);
     this.btnok.TabIndex = 3;
     this.btnok.Text = "OK";
     this.btnok.Visible = false;
     this.btnok.Click += new System.EventHandler(this.btnok_Click);
     //
     // labelX3
     //
     this.labelX3.BackColor = System.Drawing.Color.Transparent;
     this.labelX3.Location = new System.Drawing.Point(13, 50);
     this.labelX3.Name = "labelX3";
     this.labelX3.Size = new System.Drawing.Size(105, 23);
     this.labelX3.TabIndex = 2;
     this.labelX3.Text = "Số bệnh nhân tối đa :";
     //
     // txtsobn
     //
     //
     //
     //
     this.txtsobn.Border.Class = "TextBoxBorder";
     this.txtsobn.Enabled = false;
     this.txtsobn.Location = new System.Drawing.Point(121, 53);
     this.txtsobn.Name = "txtsobn";
     this.txtsobn.Size = new System.Drawing.Size(88, 20);
     this.txtsobn.TabIndex = 0;
     this.txtsobn.TextChanged += new System.EventHandler(this.txtsobn_TextChanged);
     //
     // btnhuysobn
     //
     this.btnhuysobn.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btnhuysobn.ColorTable = DevComponents.DotNetBar.eButtonColor.Office2007WithBackground;
     this.btnhuysobn.Location = new System.Drawing.Point(174, 96);
     this.btnhuysobn.Name = "btnhuysobn";
     this.btnhuysobn.Size = new System.Drawing.Size(75, 23);
     this.btnhuysobn.TabIndex = 1;
     this.btnhuysobn.Text = "Hủy";
     //
     // labelX1
     //
     this.labelX1.BackColor = System.Drawing.Color.Transparent;
     this.labelX1.Location = new System.Drawing.Point(25, 53);
     this.labelX1.Name = "labelX1";
     this.labelX1.Size = new System.Drawing.Size(105, 23);
     this.labelX1.TabIndex = 2;
     this.labelX1.Text = "Số bệnh nhân tối đa :";
     //
     // btnsuasbn
     //
     this.btnsuasbn.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btnsuasbn.ColorTable = DevComponents.DotNetBar.eButtonColor.Office2007WithBackground;
     this.btnsuasbn.Location = new System.Drawing.Point(81, 96);
     this.btnsuasbn.Name = "btnsuasbn";
     this.btnsuasbn.Size = new System.Drawing.Size(75, 23);
     this.btnsuasbn.TabIndex = 0;
     this.btnsuasbn.Text = "Sửa";
     //
     // txtsobntoida
     //
     //
     //
     //
     this.txtsobntoida.Border.Class = "TextBoxBorder";
     this.txtsobntoida.Enabled = false;
     this.txtsobntoida.Location = new System.Drawing.Point(136, 56);
     this.txtsobntoida.Name = "txtsobntoida";
     this.txtsobntoida.Size = new System.Drawing.Size(113, 20);
     this.txtsobntoida.TabIndex = 0;
     //
     // frmthaydoiquidinh
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(332, 340);
     this.Controls.Add(this.groupPanel1);
     this.MaximizeBox = false;
     this.Name = "frmthaydoiquidinh";
     this.ShowInTaskbar = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Thay đổi qui định";
     this.Load += new System.EventHandler(this.frmthaydoiquidinh_Load);
     this.groupPanel1.ResumeLayout(false);
     this.groupPanel3.ResumeLayout(false);
     this.groupPanel2.ResumeLayout(false);
     this.groupPanel4.ResumeLayout(false);
     this.ResumeLayout(false);
 }
コード例 #51
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     DevComponents.DotNetBar.ButtonX buttonX3;
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(AreaNear));
     this.buttonX1 = new DevComponents.DotNetBar.ButtonX();
     this.buttonX2 = new DevComponents.DotNetBar.ButtonX();
     this.buttonX4 = new DevComponents.DotNetBar.ButtonX();
     this.buttonX5 = new DevComponents.DotNetBar.ButtonX();
     this.buttonX6 = new DevComponents.DotNetBar.ButtonX();
     this.buttonX7 = new DevComponents.DotNetBar.ButtonX();
     this.buttonX8 = new DevComponents.DotNetBar.ButtonX();
     this.buttonX9 = new DevComponents.DotNetBar.ButtonX();
     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.labelX6  = new DevComponents.DotNetBar.LabelX();
     this.labelX7  = new DevComponents.DotNetBar.LabelX();
     this.labelX8  = new DevComponents.DotNetBar.LabelX();
     this.labelX9  = new DevComponents.DotNetBar.LabelX();
     buttonX3      = new DevComponents.DotNetBar.ButtonX();
     this.SuspendLayout();
     //
     // buttonX3
     //
     buttonX3.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     buttonX3.BackColor      = System.Drawing.Color.WhiteSmoke;
     buttonX3.ColorTable     = DevComponents.DotNetBar.eButtonColor.Flat;
     buttonX3.Font           = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     buttonX3.Image          = ((System.Drawing.Image)(resources.GetObject("buttonX3.Image")));
     buttonX3.ImageFixedSize = new System.Drawing.Size(45, 45);
     buttonX3.Location       = new System.Drawing.Point(276, 12);
     buttonX3.Name           = "buttonX3";
     buttonX3.Size           = new System.Drawing.Size(50, 50);
     buttonX3.Style          = DevComponents.DotNetBar.eDotNetBarStyle.Metro;
     buttonX3.TabIndex       = 11;
     buttonX3.Click         += new System.EventHandler(this.buttonX3_Click);
     //
     // buttonX1
     //
     this.buttonX1.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.buttonX1.ColorTable     = DevComponents.DotNetBar.eButtonColor.Flat;
     this.buttonX1.Font           = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.buttonX1.Image          = ((System.Drawing.Image)(resources.GetObject("buttonX1.Image")));
     this.buttonX1.ImageFixedSize = new System.Drawing.Size(45, 45);
     this.buttonX1.Location       = new System.Drawing.Point(53, 12);
     this.buttonX1.Name           = "buttonX1";
     this.buttonX1.Size           = new System.Drawing.Size(50, 50);
     this.buttonX1.Style          = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.buttonX1.TabIndex       = 9;
     this.buttonX1.Click         += new System.EventHandler(this.buttonX1_Click);
     //
     // buttonX2
     //
     this.buttonX2.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.buttonX2.ColorTable     = DevComponents.DotNetBar.eButtonColor.Flat;
     this.buttonX2.Font           = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.buttonX2.Image          = ((System.Drawing.Image)(resources.GetObject("buttonX2.Image")));
     this.buttonX2.ImageFixedSize = new System.Drawing.Size(45, 45);
     this.buttonX2.Location       = new System.Drawing.Point(165, 12);
     this.buttonX2.Name           = "buttonX2";
     this.buttonX2.Size           = new System.Drawing.Size(50, 50);
     this.buttonX2.Style          = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.buttonX2.TabIndex       = 10;
     this.buttonX2.Click         += new System.EventHandler(this.buttonX2_Click);
     //
     // buttonX4
     //
     this.buttonX4.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.buttonX4.ColorTable     = DevComponents.DotNetBar.eButtonColor.Flat;
     this.buttonX4.Font           = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.buttonX4.Image          = ((System.Drawing.Image)(resources.GetObject("buttonX4.Image")));
     this.buttonX4.ImageFixedSize = new System.Drawing.Size(45, 45);
     this.buttonX4.Location       = new System.Drawing.Point(53, 102);
     this.buttonX4.Name           = "buttonX4";
     this.buttonX4.Size           = new System.Drawing.Size(50, 50);
     this.buttonX4.Style          = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.buttonX4.TabIndex       = 12;
     this.buttonX4.Click         += new System.EventHandler(this.buttonX4_Click);
     //
     // buttonX5
     //
     this.buttonX5.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.buttonX5.ColorTable     = DevComponents.DotNetBar.eButtonColor.Flat;
     this.buttonX5.Font           = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.buttonX5.Image          = ((System.Drawing.Image)(resources.GetObject("buttonX5.Image")));
     this.buttonX5.ImageFixedSize = new System.Drawing.Size(45, 45);
     this.buttonX5.Location       = new System.Drawing.Point(276, 102);
     this.buttonX5.Name           = "buttonX5";
     this.buttonX5.Size           = new System.Drawing.Size(50, 50);
     this.buttonX5.Style          = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.buttonX5.TabIndex       = 13;
     this.buttonX5.Click         += new System.EventHandler(this.buttonX5_Click);
     //
     // buttonX6
     //
     this.buttonX6.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.buttonX6.ColorTable     = DevComponents.DotNetBar.eButtonColor.Flat;
     this.buttonX6.Font           = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.buttonX6.Image          = ((System.Drawing.Image)(resources.GetObject("buttonX6.Image")));
     this.buttonX6.ImageFixedSize = new System.Drawing.Size(45, 45);
     this.buttonX6.Location       = new System.Drawing.Point(165, 102);
     this.buttonX6.Name           = "buttonX6";
     this.buttonX6.Size           = new System.Drawing.Size(50, 50);
     this.buttonX6.Style          = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.buttonX6.TabIndex       = 14;
     this.buttonX6.Click         += new System.EventHandler(this.buttonX6_Click);
     //
     // buttonX7
     //
     this.buttonX7.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.buttonX7.ColorTable     = DevComponents.DotNetBar.eButtonColor.Flat;
     this.buttonX7.Font           = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.buttonX7.Image          = ((System.Drawing.Image)(resources.GetObject("buttonX7.Image")));
     this.buttonX7.ImageFixedSize = new System.Drawing.Size(45, 45);
     this.buttonX7.Location       = new System.Drawing.Point(53, 195);
     this.buttonX7.Name           = "buttonX7";
     this.buttonX7.Size           = new System.Drawing.Size(50, 50);
     this.buttonX7.Style          = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.buttonX7.TabIndex       = 15;
     this.buttonX7.Click         += new System.EventHandler(this.buttonX7_Click);
     //
     // buttonX8
     //
     this.buttonX8.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.buttonX8.ColorTable     = DevComponents.DotNetBar.eButtonColor.Flat;
     this.buttonX8.Font           = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.buttonX8.Image          = ((System.Drawing.Image)(resources.GetObject("buttonX8.Image")));
     this.buttonX8.ImageFixedSize = new System.Drawing.Size(45, 45);
     this.buttonX8.Location       = new System.Drawing.Point(165, 195);
     this.buttonX8.Name           = "buttonX8";
     this.buttonX8.Size           = new System.Drawing.Size(50, 50);
     this.buttonX8.Style          = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.buttonX8.TabIndex       = 16;
     this.buttonX8.Click         += new System.EventHandler(this.buttonX8_Click);
     //
     // buttonX9
     //
     this.buttonX9.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.buttonX9.ColorTable     = DevComponents.DotNetBar.eButtonColor.Flat;
     this.buttonX9.Font           = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.buttonX9.Image          = ((System.Drawing.Image)(resources.GetObject("buttonX9.Image")));
     this.buttonX9.ImageFixedSize = new System.Drawing.Size(45, 45);
     this.buttonX9.Location       = new System.Drawing.Point(276, 195);
     this.buttonX9.Name           = "buttonX9";
     this.buttonX9.Size           = new System.Drawing.Size(50, 50);
     this.buttonX9.Style          = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.buttonX9.TabIndex       = 17;
     this.buttonX9.Click         += new System.EventHandler(this.buttonX9_Click);
     //
     // labelX1
     //
     //
     //
     //
     this.labelX1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX1.Font     = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.labelX1.Location = new System.Drawing.Point(60, 68);
     this.labelX1.Name     = "labelX1";
     this.labelX1.Size     = new System.Drawing.Size(40, 23);
     this.labelX1.TabIndex = 18;
     this.labelX1.Text     = "银行";
     //
     // labelX2
     //
     //
     //
     //
     this.labelX2.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX2.Font     = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.labelX2.Location = new System.Drawing.Point(173, 68);
     this.labelX2.Name     = "labelX2";
     this.labelX2.Size     = new System.Drawing.Size(40, 23);
     this.labelX2.TabIndex = 19;
     this.labelX2.Text     = "酒店";
     //
     // labelX3
     //
     //
     //
     //
     this.labelX3.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX3.Font     = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.labelX3.Location = new System.Drawing.Point(279, 68);
     this.labelX3.Name     = "labelX3";
     this.labelX3.Size     = new System.Drawing.Size(60, 23);
     this.labelX3.TabIndex = 20;
     this.labelX3.Text     = "地铁站";
     //
     // labelX4
     //
     //
     //
     //
     this.labelX4.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX4.Font     = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.labelX4.Location = new System.Drawing.Point(53, 158);
     this.labelX4.Name     = "labelX4";
     this.labelX4.Size     = new System.Drawing.Size(60, 23);
     this.labelX4.TabIndex = 21;
     this.labelX4.Text     = "快餐店";
     //
     // labelX5
     //
     //
     //
     //
     this.labelX5.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX5.Font     = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.labelX5.Location = new System.Drawing.Point(165, 158);
     this.labelX5.Name     = "labelX5";
     this.labelX5.Size     = new System.Drawing.Size(60, 23);
     this.labelX5.TabIndex = 22;
     this.labelX5.Text     = "加油站";
     //
     // labelX6
     //
     //
     //
     //
     this.labelX6.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX6.Font     = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.labelX6.Location = new System.Drawing.Point(285, 158);
     this.labelX6.Name     = "labelX6";
     this.labelX6.Size     = new System.Drawing.Size(60, 23);
     this.labelX6.TabIndex = 23;
     this.labelX6.Text     = "美食";
     //
     // labelX7
     //
     //
     //
     //
     this.labelX7.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX7.Font     = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.labelX7.Location = new System.Drawing.Point(169, 251);
     this.labelX7.Name     = "labelX7";
     this.labelX7.Size     = new System.Drawing.Size(60, 23);
     this.labelX7.TabIndex = 24;
     this.labelX7.Text     = "停车场";
     //
     // labelX8
     //
     //
     //
     //
     this.labelX8.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX8.Font     = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.labelX8.Location = new System.Drawing.Point(60, 251);
     this.labelX8.Name     = "labelX8";
     this.labelX8.Size     = new System.Drawing.Size(60, 23);
     this.labelX8.TabIndex = 25;
     this.labelX8.Text     = "医院";
     //
     // labelX9
     //
     //
     //
     //
     this.labelX9.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX9.Font     = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.labelX9.Location = new System.Drawing.Point(276, 251);
     this.labelX9.Name     = "labelX9";
     this.labelX9.Size     = new System.Drawing.Size(60, 23);
     this.labelX9.TabIndex = 26;
     this.labelX9.Text     = "公交站";
     //
     // AreaNear
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor           = System.Drawing.Color.WhiteSmoke;
     this.ClientSize          = new System.Drawing.Size(437, 339);
     this.Controls.Add(this.labelX9);
     this.Controls.Add(this.labelX8);
     this.Controls.Add(this.labelX7);
     this.Controls.Add(this.labelX6);
     this.Controls.Add(this.labelX5);
     this.Controls.Add(this.labelX4);
     this.Controls.Add(this.labelX3);
     this.Controls.Add(this.labelX2);
     this.Controls.Add(this.labelX1);
     this.Controls.Add(this.buttonX9);
     this.Controls.Add(this.buttonX8);
     this.Controls.Add(this.buttonX7);
     this.Controls.Add(this.buttonX6);
     this.Controls.Add(this.buttonX5);
     this.Controls.Add(this.buttonX4);
     this.Controls.Add(buttonX3);
     this.Controls.Add(this.buttonX2);
     this.Controls.Add(this.buttonX1);
     this.DoubleBuffered  = true;
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     this.Margin          = new System.Windows.Forms.Padding(2);
     this.Name            = "AreaNear";
     this.ShowIcon        = false;
     this.Text            = "景点周边";
     this.TopMost         = true;
     this.Load           += new System.EventHandler(this.AreaNear_Load);
     this.ResumeLayout(false);
 }
コード例 #52
0
 /// <summary> 
 /// 此為設計工具支援所需的方法 - 請勿使用程式碼編輯器修改這個方法的內容。
 ///
 /// </summary>
 private void InitializeComponent()
 {
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
     this.btnRemove = new DevComponents.DotNetBar.ButtonX();
     this.btnAdd = new DevComponents.DotNetBar.ButtonX();
     this.buttonItem1 = new DevComponents.DotNetBar.ButtonItem();
     this.label1 = new System.Windows.Forms.Label();
     this.label2 = new System.Windows.Forms.Label();
     this.dgvData = new DevComponents.DotNetBar.Controls.DataGridViewX();
     this.ClassName = new DevComponents.DotNetBar.Controls.DataGridViewLabelXColumn();
     this.SNum = new DevComponents.DotNetBar.Controls.DataGridViewLabelXColumn();
     this.StudentName = new DevComponents.DotNetBar.Controls.DataGridViewLabelXColumn();
     this.Gender = new DevComponents.DotNetBar.Controls.DataGridViewLabelXColumn();
     this.ReportGroup = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.IsCancel = new System.Windows.Forms.DataGridViewCheckBoxColumn();
     ((System.ComponentModel.ISupportInitialize)(this.dgvData)).BeginInit();
     this.SuspendLayout();
     //
     // btnRemove
     //
     this.btnRemove.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btnRemove.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.btnRemove.Location = new System.Drawing.Point(20, 227);
     this.btnRemove.Name = "btnRemove";
     this.btnRemove.Size = new System.Drawing.Size(115, 23);
     this.btnRemove.TabIndex = 4;
     this.btnRemove.Text = "移除修課學生";
     this.btnRemove.Click += new System.EventHandler(this.btnRemove_Click);
     //
     // btnAdd
     //
     this.btnAdd.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btnAdd.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.btnAdd.Location = new System.Drawing.Point(141, 227);
     this.btnAdd.Name = "btnAdd";
     this.btnAdd.Size = new System.Drawing.Size(132, 23);
     this.btnAdd.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.buttonItem1});
     this.btnAdd.TabIndex = 6;
     this.btnAdd.Text = "加入待處理學生";
     this.btnAdd.PopupOpen += new System.EventHandler(this.btnAdd_PopupOpen);
     this.btnAdd.Click += new System.EventHandler(this.btnAdd_Click);
     //
     // buttonItem1
     //
     this.buttonItem1.Name = "buttonItem1";
     this.buttonItem1.Text = "New Item";
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(304, 230);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(99, 17);
     this.label1.TabIndex = 7;
     this.label1.Text = "目前修課人數:";
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Location = new System.Drawing.Point(399, 230);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(21, 17);
     this.label2.TabIndex = 8;
     this.label2.Text = " ";
     //
     // dgvData
     //
     this.dgvData.AllowUserToAddRows = false;
     this.dgvData.AllowUserToDeleteRows = false;
     this.dgvData.BackgroundColor = System.Drawing.Color.White;
     this.dgvData.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.dgvData.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dgvData.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.ClassName,
     this.SNum,
     this.StudentName,
     this.Gender,
     this.ReportGroup,
     this.IsCancel});
     dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle1.BackColor = System.Drawing.SystemColors.Window;
     dataGridViewCellStyle1.Font = new System.Drawing.Font("微軟正黑體", 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.dgvData.DefaultCellStyle = dataGridViewCellStyle1;
     this.dgvData.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(208)))), ((int)(((byte)(215)))), ((int)(((byte)(229)))));
     this.dgvData.Location = new System.Drawing.Point(20, 22);
     this.dgvData.Name = "dgvData";
     this.dgvData.RowHeadersWidth = 25;
     this.dgvData.RowTemplate.Height = 24;
     this.dgvData.Size = new System.Drawing.Size(508, 188);
     this.dgvData.TabIndex = 9;
     //
     // ClassName
     //
     this.ClassName.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.AllCells;
     this.ClassName.HeaderText = "教學分班";
     this.ClassName.Name = "ClassName";
     this.ClassName.ReadOnly = true;
     this.ClassName.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
     this.ClassName.TextAlignment = System.Drawing.StringAlignment.Center;
     this.ClassName.Width = 85;
     //
     // SNum
     //
     this.SNum.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.AllCells;
     this.SNum.HeaderText = "學號";
     this.SNum.Name = "SNum";
     this.SNum.ReadOnly = true;
     this.SNum.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
     this.SNum.TextAlignment = System.Drawing.StringAlignment.Center;
     this.SNum.Width = 59;
     //
     // StudentName
     //
     this.StudentName.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.AllCells;
     this.StudentName.HeaderText = "學生姓名";
     this.StudentName.Name = "StudentName";
     this.StudentName.ReadOnly = true;
     this.StudentName.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
     this.StudentName.TextAlignment = System.Drawing.StringAlignment.Center;
     this.StudentName.Width = 85;
     //
     // Gender
     //
     this.Gender.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.AllCells;
     this.Gender.HeaderText = "性別";
     this.Gender.Name = "Gender";
     this.Gender.ReadOnly = true;
     this.Gender.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
     this.Gender.TextAlignment = System.Drawing.StringAlignment.Center;
     this.Gender.Width = 59;
     //
     // ReportGroup
     //
     this.ReportGroup.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.AllCells;
     this.ReportGroup.HeaderText = "報告小組";
     this.ReportGroup.Name = "ReportGroup";
     this.ReportGroup.Resizable = System.Windows.Forms.DataGridViewTriState.True;
     this.ReportGroup.Width = 85;
     //
     // IsCancel
     //
     this.IsCancel.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.AllCells;
     this.IsCancel.HeaderText = "停修";
     this.IsCancel.Name = "IsCancel";
     this.IsCancel.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
     this.IsCancel.Width = 59;
     //
     // Course_SCAttend
     //
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
     this.BackColor = System.Drawing.Color.Transparent;
     this.Controls.Add(this.dgvData);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.btnAdd);
     this.Controls.Add(this.btnRemove);
     this.Name = "Course_SCAttend";
     this.Size = new System.Drawing.Size(550, 260);
     ((System.ComponentModel.ISupportInitialize)(this.dgvData)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
コード例 #53
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.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();
 }
 /// <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);
 }
コード例 #55
0
 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);
 }
コード例 #56
0
 /// <summary>
 /// 设计器支持所需的方法 - 不要
 /// 使用代码编辑器修改此方法的内容。
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormDeclareList));
     this.listView1 = new System.Windows.Forms.ListView();
     this.columnHeader1 = new System.Windows.Forms.ColumnHeader();
     this.columnHeader2 = new System.Windows.Forms.ColumnHeader();
     this.columnHeader3 = new System.Windows.Forms.ColumnHeader();
     this.button1 = new DevComponents.DotNetBar.ButtonX();
     this.button2 = new DevComponents.DotNetBar.ButtonX();
     this.imageList1 = new System.Windows.Forms.ImageList(this.components);
     this.SuspendLayout();
     //
     // 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.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
     this.columnHeader1,
     this.columnHeader2,
     this.columnHeader3});
     this.listView1.FullRowSelect = true;
     this.listView1.GridLines = true;
     this.listView1.Location = new System.Drawing.Point(12, 32);
     this.listView1.Name = "listView1";
     this.listView1.Size = new System.Drawing.Size(564, 293);
     this.listView1.SmallImageList = this.imageList1;
     this.listView1.TabIndex = 0;
     this.listView1.UseCompatibleStateImageBehavior = false;
     this.listView1.View = System.Windows.Forms.View.Details;
     this.listView1.DoubleClick += new System.EventHandler(this.listView1_DoubleClick);
     //
     // columnHeader1
     //
     this.columnHeader1.Text = "单号";
     this.columnHeader1.Width = 66;
     //
     // columnHeader2
     //
     this.columnHeader2.Text = "投诉时间";
     this.columnHeader2.Width = 117;
     //
     // columnHeader3
     //
     this.columnHeader3.Text = "投诉内容";
     this.columnHeader3.Width = 374;
     //
     // button1
     //
     this.button1.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.button1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.button1.Location = new System.Drawing.Point(351, 331);
     this.button1.Name = "button1";
     this.button1.Size = new System.Drawing.Size(102, 23);
     this.button1.Style = DevComponents.DotNetBar.eDotNetBarStyle.VS2005;
     this.button1.TabIndex = 42;
     this.button1.Text = "处  理";
     this.button1.Click += new System.EventHandler(this.button1_Click);
     //
     // button2
     //
     this.button2.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.button2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.button2.DialogResult = System.Windows.Forms.DialogResult.OK;
     this.button2.Location = new System.Drawing.Point(474, 331);
     this.button2.Name = "button2";
     this.button2.Size = new System.Drawing.Size(102, 23);
     this.button2.Style = DevComponents.DotNetBar.eDotNetBarStyle.VS2005;
     this.button2.TabIndex = 43;
     this.button2.Text = "关  闭";
     this.button2.Click += new System.EventHandler(this.button2_Click);
     //
     // imageList1
     //
     this.imageList1.ColorDepth = System.Windows.Forms.ColorDepth.Depth16Bit;
     this.imageList1.ImageSize = new System.Drawing.Size(1, 14);
     this.imageList1.TransparentColor = System.Drawing.Color.Transparent;
     //
     // FormDeclareList
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.BackgroundImage = global::YTGPS_Client.Properties.Resources.fbk2;
     this.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
     this.ClientSize = new System.Drawing.Size(588, 366);
     this.Controls.Add(this.button2);
     this.Controls.Add(this.listView1);
     this.Controls.Add(this.button1);
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Name = "FormDeclareList";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "待处理投诉、故障列表";
     this.Controls.SetChildIndex(this.button1, 0);
     this.Controls.SetChildIndex(this.listView1, 0);
     this.Controls.SetChildIndex(this.button2, 0);
     this.ResumeLayout(false);
 }
コード例 #57
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     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);
 }
コード例 #58
0
        private void InitializeComponent()
        {
            var resources = new System.ComponentModel.ComponentResourceManager(typeof(PluginInstallerForm));

            _Panel1                       = new Panel();
            _ButtonX_Remove               = new DevComponents.DotNetBar.ButtonX();
            _ButtonX_Remove.Click        += new EventHandler(ButtonX_Remove_Click);
            _ButtonX_Install              = new DevComponents.DotNetBar.ButtonX();
            _ButtonItem_SingleFile        = new DevComponents.DotNetBar.ButtonItem();
            _ButtonItem_SingleFile.Click += new EventHandler(ButtonItem_SingleFile_Click);
            _ButtonItem_ZipFile           = new DevComponents.DotNetBar.ButtonItem();
            _ButtonItem_ZipFile.Click    += new EventHandler(ButtonItem_ZipFile_Click);
            _ButtonItem_Directory         = new DevComponents.DotNetBar.ButtonItem();
            _ButtonItem_Directory.Click  += new EventHandler(ButtonItem_Directory_Click);
            _ButtonX_Close                = new DevComponents.DotNetBar.ButtonX();
            _ButtonX_Close.Click         += new EventHandler(ButtonX_Close_Click);
            _ListViewEx_Plugins           = new DevComponents.DotNetBar.Controls.ListViewEx();
            _ColumnHeader1                = new ColumnHeader();
            _ColumnHeader2                = new ColumnHeader();
            _ColumnHeader3                = new ColumnHeader();
            _ColumnHeader4                = new ColumnHeader();
            _Panel1.SuspendLayout();
            SuspendLayout();
            //
            // Panel1
            //
            _Panel1.BackColor = Color.Transparent;
            _Panel1.Controls.Add(_ButtonX_Remove);
            _Panel1.Controls.Add(_ButtonX_Install);
            _Panel1.Controls.Add(_ButtonX_Close);
            _Panel1.Controls.Add(_ListViewEx_Plugins);
            resources.ApplyResources(_Panel1, "Panel1");
            _Panel1.Name = "Panel1";
            //
            // ButtonX_Remove
            //
            _ButtonX_Remove.AccessibleRole = AccessibleRole.PushButton;
            resources.ApplyResources(_ButtonX_Remove, "ButtonX_Remove");
            _ButtonX_Remove.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
            _ButtonX_Remove.Name       = "ButtonX_Remove";
            _ButtonX_Remove.Style      = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            //
            // ButtonX_Install
            //
            _ButtonX_Install.AccessibleRole = AccessibleRole.PushButton;
            resources.ApplyResources(_ButtonX_Install, "ButtonX_Install");
            _ButtonX_Install.AutoExpandOnClick = true;
            _ButtonX_Install.ColorTable        = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
            _ButtonX_Install.Name  = "ButtonX_Install";
            _ButtonX_Install.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            _ButtonX_Install.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] { _ButtonItem_SingleFile, _ButtonItem_ZipFile, _ButtonItem_Directory });
            //
            // ButtonItem_SingleFile
            //
            _ButtonItem_SingleFile.GlobalItem = false;
            _ButtonItem_SingleFile.Name       = "ButtonItem_SingleFile";
            resources.ApplyResources(_ButtonItem_SingleFile, "ButtonItem_SingleFile");
            //
            // ButtonItem_ZipFile
            //
            _ButtonItem_ZipFile.GlobalItem = false;
            _ButtonItem_ZipFile.Name       = "ButtonItem_ZipFile";
            resources.ApplyResources(_ButtonItem_ZipFile, "ButtonItem_ZipFile");
            //
            // ButtonItem_Directory
            //
            _ButtonItem_Directory.GlobalItem = false;
            _ButtonItem_Directory.Name       = "ButtonItem_Directory";
            resources.ApplyResources(_ButtonItem_Directory, "ButtonItem_Directory");
            //
            // ButtonX_Close
            //
            _ButtonX_Close.AccessibleRole = AccessibleRole.PushButton;
            resources.ApplyResources(_ButtonX_Close, "ButtonX_Close");
            _ButtonX_Close.ColorTable   = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
            _ButtonX_Close.DialogResult = DialogResult.Cancel;
            _ButtonX_Close.Name         = "ButtonX_Close";
            _ButtonX_Close.Style        = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            //
            // ListViewEx_Plugins
            //
            resources.ApplyResources(_ListViewEx_Plugins, "ListViewEx_Plugins");
            _ListViewEx_Plugins.BackColor = Color.White;
            //
            //
            //
            _ListViewEx_Plugins.Border.Class      = "ListViewBorder";
            _ListViewEx_Plugins.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            _ListViewEx_Plugins.Columns.AddRange(new ColumnHeader[] { _ColumnHeader1, _ColumnHeader2, _ColumnHeader3, _ColumnHeader4 });
            _ListViewEx_Plugins.DisabledBackColor = Color.Empty;
            _ListViewEx_Plugins.ForeColor         = Color.Black;
            _ListViewEx_Plugins.FullRowSelect     = true;
            _ListViewEx_Plugins.Groups.AddRange(new ListViewGroup[] { (ListViewGroup)resources.GetObject("ListViewEx_Plugins.Groups"), (ListViewGroup)resources.GetObject("ListViewEx_Plugins.Groups1") });
            _ListViewEx_Plugins.HideSelection = false;
            _ListViewEx_Plugins.Name          = "ListViewEx_Plugins";
            _ListViewEx_Plugins.UseCompatibleStateImageBehavior = false;
            _ListViewEx_Plugins.View = View.Details;
            //
            // ColumnHeader1
            //
            resources.ApplyResources(_ColumnHeader1, "ColumnHeader1");
            //
            // ColumnHeader2
            //
            resources.ApplyResources(_ColumnHeader2, "ColumnHeader2");
            //
            // ColumnHeader3
            //
            resources.ApplyResources(_ColumnHeader3, "ColumnHeader3");
            //
            // ColumnHeader4
            //
            resources.ApplyResources(_ColumnHeader4, "ColumnHeader4");
            //
            // PluginInstallerForm
            //
            resources.ApplyResources(this, "$this");
            AutoScaleMode = AutoScaleMode.Font;
            CancelButton  = _ButtonX_Close;
            Controls.Add(_Panel1);
            Name = "PluginInstallerForm";
            TopLeftCornerSize  = 0;
            TopRightCornerSize = 0;
            _Panel1.ResumeLayout(false);
            ResumeLayout(false);
        }
コード例 #59
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     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>
 /// 此為設計工具支援所需的方法 - 請勿使用程式碼編輯器修改這個方法的內容。
 ///
 /// </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);
 }