示例#1
0
        public static void  setAllVendorInfo(string PacsFctCode, DevExpress.XtraEditors.ComboBoxEdit cbComBox)
        {
            try
            {
                string sql = " select vend_code4||':'||vend_nm_cn as vendorInfo " +
                             " from( " +
                             " select vend_code,vend_code4,vend_nm,vend_nm_cn " +
                             " from pacsm_md_vend  " +
                             " where instr(','||vend_func||',',',SECU_USE_VEND,') > 0 and fct_code = '" + PacsFctCode + "' " +
                             " ) ";

                OracleDataReader odr = OracleHelper.ExecuteReader(sql);

                if (odr.HasRows)
                {
                    cbComBox.Properties.Items.Clear();
                    while (odr.Read())
                    {
                        cbComBox.Properties.Items.Add(odr["vendorInfo"]);
                    }
                }
                else
                {
                    XtraMessageBox.Show("没有找到信息");
                }
            }
            catch (Exception getAllVendorInfo)
            {
                XtraMessageBox.Show("getAllVendorInfo-" + getAllVendorInfo.Message);
            }
        }
示例#2
0
        //初始化详细信息
        public void setControlValue(JbxxViewForm jvf, string cName, String val, bool enable)
        {
            if (cName == null || "" == cName)
            {
                return;
            }

            Control[] c = jvf.Controls.Find(cName, true);
            if (c.Length > 0)
            {
                if (c[0] is TextEdit)
                {
                    c[0].Text = val;
                }
                if (c[0] is DevExpress.XtraEditors.ComboBoxEdit)
                {
                    DevExpress.XtraEditors.ComboBoxEdit cbe = c[0] as DevExpress.XtraEditors.ComboBoxEdit;
                    cbe.Text = val;
                    if (cbe.Text == "汽油" || cbe.Text == "柴油" || cbe.Text == "两用燃料" ||
                        cbe.Text == "双燃料" || cbe.Text == "纯电动" || cbe.Text == "非插电式混合动力" || cbe.Text == "插电式混合动力" || cbe.Text == "燃料电池")
                    {
                        string rlval = cbe.Text;
                        if (cbe.Text == "汽油" || cbe.Text == "柴油" || cbe.Text == "两用燃料" ||
                            cbe.Text == "双燃料")
                        {
                            rlval = "传统能源";
                        }

                        // 构建燃料参数控件
                        jvf.getParamList(rlval, false);
                    }
                }
                c[0].Enabled = enable;
            }
        }
示例#3
0
        private void repositoryItemComboBox1_SelectedIndexChanged(object sender, System.EventArgs e)
        {
            int i = gridView1.GetSelectedRows()[0];

            repositoryItemComboBox2.Items.Clear();
            DevExpress.XtraEditors.ComboBoxEdit cbeGrade = (DevExpress.XtraEditors.ComboBoxEdit)sender;
            string grade = cbeGrade.SelectedItem.ToString();

            if (grade.Length != 0 && !grade.Equals("不选择"))
            {
                repositoryItemComboBox2.Items.Add("不选择");
                GetStuInfoByCondition getStuInfoByCondition = new GetStuInfoByCondition();
                string getGradeNumberFromCombo = getStuInfoByCondition.getGradeInfo(
                    grade, "").Tables[0].Rows[0][0].ToString();
                foreach (DataRow getClassList in getStuInfoByCondition.getClassInfo("", "",
                                                                                    getGradeNumberFromCombo).Tables[0].Rows)
                {
                    repositoryItemComboBox2.Items.AddRange(
                        new object[] { getClassList[1].ToString() });
                }
            }
            else
            {
                if (grade.Equals("不选择"))
                {
                    repositoryItemComboBox2.Items.Clear();
                    repositoryItemComboBox2.Items.Add("不选择");
                }
            }

            gridView1.SetRowCellValue(i, gridView1.Columns["指定班级"], null);
            gridView1.SetRowCellValue(i, gridView1.Columns["指定年级"], grade);
        }
示例#4
0
        public static void getLineInfo(DevExpress.XtraEditors.ComboBoxEdit cbComBox, string vend4)
        {
            try
            {
                string           sql = " select line_code||':'||line_desc as lineInfo from tb_line_mapping where pop_line_type = 'MAINS' and lifnr = '" + vend4 + "' order by line_code ";
                OracleDataReader odr = OracleHelper.ExecuteReader(sql);

                if (odr.HasRows)
                {
                    cbComBox.Properties.Items.Clear();
                    while (odr.Read())
                    {
                        cbComBox.Properties.Items.Add(odr["lineInfo"]);
                    }
                }
                else
                {
                    XtraMessageBox.Show("没有找到信息");
                }
            }
            catch (Exception getLineInfo)
            {
                XtraMessageBox.Show(getLineInfo.Message);
            }
        }
示例#5
0
        public static void getMeterialCode(DevExpress.XtraEditors.ComboBoxEdit cbComBox)
        {
            try
            {
                string           sql = " SELECT TRIM(material_code) FROM TB_security_master  where barcode_flag = 'Y'  ORDER BY material_code ";
                OracleDataReader odr = OracleHelper.ExecuteReader(sql);

                if (odr.HasRows)
                {
                    cbComBox.Properties.Items.Clear();
                    cbComBox.Properties.Items.Add("ALL");
                    while (odr.Read())
                    {
                        cbComBox.Properties.Items.Add(odr["TRIM(material_code)"]);
                    }
                }
                else
                {
                    XtraMessageBox.Show("没有找到信息");
                }
            }
            catch (Exception getVendorCode)
            {
                XtraMessageBox.Show(getVendorCode.Message);
            }
        }
示例#6
0
 public static void fillCombo(DevExpress.XtraEditors.ComboBoxEdit combo, IEnumerable <string> datasource)
 {
     combo.Properties.Items.Clear();
     foreach (var item in datasource)
     {
         combo.Properties.Items.Add(item);
     }
 }
示例#7
0
        //Tạo nội dung combo box cho user lựa chọn
        private void SetValue_Combobox(DevExpress.XtraEditors.ComboBoxEdit comboBox)
        {
            List <string> Boolean = new List <string>();

            Boolean.Add("No");  //SelectIndex = 0
            Boolean.Add("Yes"); //SelectIndex = 1
            comboBox.Properties.Items.AddRange(Boolean);
        }
示例#8
0
 void AddControls(Control container, DevExpress.XtraEditors.ComboBoxEdit cb)
 {
     foreach (object obj in container.Controls)
     {
         cb.Properties.Items.Add(obj);
         if (obj is Control)
         {
             AddControls(obj as Control, cb);
         }
     }
 }
示例#9
0
        //protected int[] getRowSeleteIndex(DevExpress.XtraGrid.Views.Grid.GridView objGridView)
        //{
        //    try
        //    {
        //        int[] rs;
        //        for (int i = objGridView.SelectedRowsCount - 1; i >= 0; i--)
        //        {
        //            rs = objGridView.GetSelectedRows()[i];
        //        }
        //        return rs;
        //    }
        //    catch (Exception ex)
        //    {
        //        //TODO: Ghi log cho nay nhe
        //        return null;
        //    }
        //}

        #endregion

        #region "Xu ly control"
        protected object getValue(DevExpress.XtraEditors.ComboBoxEdit cboControl, string strValueMember)
        {
            try
            {
                DataRow dr = (DataRow)cboControl.SelectedItem;
                return(dr[strValueMember]);
            }
            catch (Exception ex)
            {
                throw ex;
            }
        }
示例#10
0
        public static void Combodoldur(DevExpress.XtraEditors.ComboBoxEdit combobox, Type enumtipi, bool Isbosrow = false, string bosrowyazisi = "")
        {
            if (Isbosrow)
            {
                combobox.Properties.Items.Add(bosrowyazisi);
                combobox.EditValue = bosrowyazisi;
            }
            Array list = Enum.GetValues(enumtipi);

            for (int i = 0; i < list.Length; i++)
            {
                combobox.Properties.Items.Add(Enum.GetName(enumtipi, list.GetValue(i)));
            }
        }
示例#11
0
 public static void csSetIndexByRid(this DevExpress.XtraEditors.ComboBoxEdit cb, int rid)
 {
     cb.SelectedIndex = -1;
     for (int i = 0; i < cb.Properties.Items.Count; i++)
     {
         TRID_NAME t = cb.Properties.Items[i] as TRID_NAME;
         if (t == null)
         {
             break;
         }
         if (t.RID == rid)
         {
             cb.SelectedIndex = i;
             break;
         }
     }
 }
示例#12
0
 /// <summary>
 /// Record 数据加载到Combobox - Zhao : 20150126
 /// </summary>
 /// <param name="panelControl"></param>
 /// <param name="lblStatus"></param>
 /// <param name="str"></param>
 public static void RecordToComboBox(string Sql, DevExpress.XtraEditors.ComboBoxEdit cbComBox)
 {
     try
     {
         OracleDataReader odr = OracleHelper.ExecuteReader(Sql);
         if (odr.HasRows)
         {
             while (odr.Read())
             {
                 cbComBox.Properties.Items.Add(odr[0]);
             }
         }
     }
     catch (Exception RecordToComboBox)
     {
         XtraMessageBox.Show("RecordToComboBox-" + RecordToComboBox.Message);
     }
 }
示例#13
0
        /// <summary>
        /// 配置下拉列表框的属性
        /// </summary>
        /// <param name="cn"></param>
        private void ConfigComboBoxProperty(DevExpress.XtraEditors.ComboBoxEdit cn, string field)
        {
            // 查找ComboBox控件匹配的字段信息
            FieldCfgDto arvField = PropertyHelper.FieldCfgItems.Find(item => item.FieldName == field);

            if (arvField != null)
            {
                // ComboBox控件是否可用
                cn.Enabled = arvField.IsFieldUsable;

                if (cn.Enabled)
                {
                    // 查找ComboBox是否对应可配置字段
                    //        List<DataDictDto> Items = PropertyHelper.DataDictItems.Where<DataDictDto>(item => item.FieldTypeName == field).OrderBy(item => item.FieldTypeSerialNo) .ToList<DataDictDto>();

                    // 加入配置信息到ComboBox下拉框
                    //     if (Items.Count != 0)
                    {
                        // cn.Properties.Items.AddRange(Items.Select(q=>q.FieldTypeValue).ToList());
                    }
                }
            }
        }
示例#14
0
 /// <summary>
 /// 绑定ComboBoxEdit
 /// </summary>
 /// <param name="dt"></param>
 /// <param name="lst"></param>
 public static void BindDropDownList(DataTable dt, DevExpress.XtraEditors.ComboBoxEdit lst)
 {
     if (dt != null && dt.Columns.Count >= 1 && dt.Columns.Count <= 2)
     {
         lst.Properties.Items.Clear();
         foreach (DataRow row in dt.Rows)
         {
             ComboBoxItem item;
             if (dt.Columns.Count != 1)
             {
                 item = new ComboBoxItem(row[0].ToString(), row[1].ToString());
             }
             else
             {
                 item = new ComboBoxItem(row[0].ToString(), row[0].ToString());
             }
             lst.Properties.Items.Add(item);
         }
         if (lst.Properties.Items.Count > 0)
         {
             lst.SelectedIndex = 0;
         }
     }
 }
示例#15
0
		/// <summary> 
		/// Required method for Designer support - do not modify 
		/// the contents of this method with the code editor.
		/// </summary>
		private void InitializeComponent()
		{
			this.comboBoxEdit_Send_TeaGrade = new DevExpress.XtraEditors.ComboBoxEdit();
			this.textEdit_Send_TeaName = new DevExpress.XtraEditors.TextEdit();
			this.notePanel_Send_TeaName = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_Send_TeaNumber = new DevExpress.Utils.Frames.NotePanel();
			this.textEdit_Send_TeaNumber = new DevExpress.XtraEditors.TextEdit();
			this.notePanel19 = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel20 = new DevExpress.Utils.Frames.NotePanel();
			this.comboBoxEdit_Send_TeaClass = new DevExpress.XtraEditors.ComboBoxEdit();
			this.groupControl1 = new DevExpress.XtraEditors.GroupControl();
			this.groupControl6 = new DevExpress.XtraEditors.GroupControl();
			this.gridControl1 = new DevExpress.XtraGrid.GridControl();
			this.gridView1 = new DevExpress.XtraGrid.Views.Grid.GridView();
			this.gridColumn1 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn2 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn3 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn4 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn5 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.groupControl5 = new DevExpress.XtraEditors.GroupControl();
			this.comboBoxEdit_Send_Mode = new DevExpress.XtraEditors.ComboBoxEdit();
			this.notePanel_Send_Mode = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel1 = new DevExpress.Utils.Frames.NotePanel();
			this.groupControl3 = new DevExpress.XtraEditors.GroupControl();
			this.textEdit_SendMsgTitle = new DevExpress.XtraEditors.TextEdit();
			this.notePanel_SendMsgTitle = new DevExpress.Utils.Frames.NotePanel();
			this.memoEdit_SendContent = new DevExpress.XtraEditors.MemoEdit();
			this.simpleButton_EditPhoneNum = new DevExpress.XtraEditors.SimpleButton();
			this.notePanel_SendMsgContent = new DevExpress.Utils.Frames.NotePanel();
			this.groupControl4 = new DevExpress.XtraEditors.GroupControl();
			this.comboBoxEdit_HasRead = new DevExpress.XtraEditors.ComboBoxEdit();
			this.notePanel_HasRead = new DevExpress.Utils.Frames.NotePanel();
			this.comboBoxEdit_MsgDate = new DevExpress.XtraEditors.ComboBoxEdit();
			this.textEdit_SerContent = new DevExpress.XtraEditors.TextEdit();
			this.notePanel_MsgDate = new DevExpress.Utils.Frames.NotePanel();
			this.comboBoxEdit_SerType = new DevExpress.XtraEditors.ComboBoxEdit();
			this.notePanel_SerType = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_Realtime_GraphicSearch = new DevExpress.Utils.Frames.NotePanel();
			this.gridControl2 = new DevExpress.XtraGrid.GridControl();
			this.gridView2 = new DevExpress.XtraGrid.Views.Grid.GridView();
			this.gridColumn6 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn7 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn8 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn10 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn9 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.barManager1 = new DevExpress.XtraBars.BarManager();
			this.popupMenu2 = new DevExpress.XtraBars.PopupMenu();
			this.barButtonItem_RecAdd = new DevExpress.XtraBars.BarButtonItem();
			this.barButtonItem_RecDel = new DevExpress.XtraBars.BarButtonItem();
			this.barButtonItem_RecReset = new DevExpress.XtraBars.BarButtonItem();
			this.popupMenu1 = new DevExpress.XtraBars.PopupMenu();
			this.barButtonItem_MsgRefresh = new DevExpress.XtraBars.BarButtonItem();
			this.barButtonItem_MsgDelete = new DevExpress.XtraBars.BarButtonItem();
			this.barDockControlTop = new DevExpress.XtraBars.BarDockControl();
			this.barDockControlBottom = new DevExpress.XtraBars.BarDockControl();
			this.barDockControlLeft = new DevExpress.XtraBars.BarDockControl();
			this.barDockControlRight = new DevExpress.XtraBars.BarDockControl();
			this.helpProvider_TransactionInfo = new System.Windows.Forms.HelpProvider();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_Send_TeaGrade.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_Send_TeaName.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_Send_TeaNumber.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_Send_TeaClass.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
			this.groupControl1.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.groupControl6)).BeginInit();
			this.groupControl6.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.gridControl1)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl5)).BeginInit();
			this.groupControl5.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_Send_Mode.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl3)).BeginInit();
			this.groupControl3.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_SendMsgTitle.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.memoEdit_SendContent.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl4)).BeginInit();
			this.groupControl4.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_HasRead.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_MsgDate.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_SerContent.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_SerType.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.gridControl2)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.gridView2)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.barManager1)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.popupMenu2)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.popupMenu1)).BeginInit();
			this.SuspendLayout();
			// 
			// comboBoxEdit_Send_TeaGrade
			// 
			this.comboBoxEdit_Send_TeaGrade.EditValue = "全部";
			this.comboBoxEdit_Send_TeaGrade.Location = new System.Drawing.Point(112, 56);
			this.comboBoxEdit_Send_TeaGrade.Name = "comboBoxEdit_Send_TeaGrade";
			// 
			// comboBoxEdit_Send_TeaGrade.Properties
			// 
			this.comboBoxEdit_Send_TeaGrade.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																															   new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.comboBoxEdit_Send_TeaGrade.Properties.Items.AddRange(new object[] {
																					   "全部"});
			this.comboBoxEdit_Send_TeaGrade.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
			this.comboBoxEdit_Send_TeaGrade.Size = new System.Drawing.Size(88, 23);
			this.comboBoxEdit_Send_TeaGrade.TabIndex = 40;
			this.comboBoxEdit_Send_TeaGrade.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit_Send_TeaGrade_SelectedIndexChanged);
			// 
			// textEdit_Send_TeaName
			// 
			this.textEdit_Send_TeaName.EditValue = "";
			this.textEdit_Send_TeaName.Location = new System.Drawing.Point(112, 152);
			this.textEdit_Send_TeaName.Name = "textEdit_Send_TeaName";
			this.textEdit_Send_TeaName.Size = new System.Drawing.Size(88, 23);
			this.textEdit_Send_TeaName.TabIndex = 37;
			this.textEdit_Send_TeaName.EditValueChanged += new System.EventHandler(this.textEdit_Send_TeaName_EditValueChanged);
			// 
			// notePanel_Send_TeaName
			// 
			this.notePanel_Send_TeaName.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_Send_TeaName.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_Send_TeaName.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_Send_TeaName.ForeColor = System.Drawing.Color.Black;
			this.notePanel_Send_TeaName.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_Send_TeaName.Location = new System.Drawing.Point(24, 152);
			this.notePanel_Send_TeaName.MaxRows = 5;
			this.notePanel_Send_TeaName.Name = "notePanel_Send_TeaName";
			this.notePanel_Send_TeaName.ParentAutoHeight = true;
			this.notePanel_Send_TeaName.Size = new System.Drawing.Size(80, 22);
			this.notePanel_Send_TeaName.TabIndex = 36;
			this.notePanel_Send_TeaName.TabStop = false;
			this.notePanel_Send_TeaName.Text = "  姓  名:";
			// 
			// notePanel_Send_TeaNumber
			// 
			this.notePanel_Send_TeaNumber.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_Send_TeaNumber.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_Send_TeaNumber.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_Send_TeaNumber.ForeColor = System.Drawing.Color.Black;
			this.notePanel_Send_TeaNumber.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_Send_TeaNumber.Location = new System.Drawing.Point(24, 120);
			this.notePanel_Send_TeaNumber.MaxRows = 5;
			this.notePanel_Send_TeaNumber.Name = "notePanel_Send_TeaNumber";
			this.notePanel_Send_TeaNumber.ParentAutoHeight = true;
			this.notePanel_Send_TeaNumber.Size = new System.Drawing.Size(80, 22);
			this.notePanel_Send_TeaNumber.TabIndex = 33;
			this.notePanel_Send_TeaNumber.TabStop = false;
			this.notePanel_Send_TeaNumber.Text = "  工  号:";
			// 
			// textEdit_Send_TeaNumber
			// 
			this.textEdit_Send_TeaNumber.EditValue = "";
			this.textEdit_Send_TeaNumber.Location = new System.Drawing.Point(112, 120);
			this.textEdit_Send_TeaNumber.Name = "textEdit_Send_TeaNumber";
			this.textEdit_Send_TeaNumber.Size = new System.Drawing.Size(88, 23);
			this.textEdit_Send_TeaNumber.TabIndex = 38;
			this.textEdit_Send_TeaNumber.EditValueChanged += new System.EventHandler(this.textEdit_Send_TeaNumber_EditValueChanged);
			// 
			// notePanel19
			// 
			this.notePanel19.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel19.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel19.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel19.ForeColor = System.Drawing.Color.Black;
			this.notePanel19.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel19.Location = new System.Drawing.Point(24, 56);
			this.notePanel19.MaxRows = 5;
			this.notePanel19.Name = "notePanel19";
			this.notePanel19.ParentAutoHeight = true;
			this.notePanel19.Size = new System.Drawing.Size(80, 22);
			this.notePanel19.TabIndex = 34;
			this.notePanel19.TabStop = false;
			this.notePanel19.Text = "  部  门: ";
			// 
			// notePanel20
			// 
			this.notePanel20.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel20.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel20.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel20.ForeColor = System.Drawing.Color.Black;
			this.notePanel20.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel20.Location = new System.Drawing.Point(24, 88);
			this.notePanel20.MaxRows = 5;
			this.notePanel20.Name = "notePanel20";
			this.notePanel20.ParentAutoHeight = true;
			this.notePanel20.Size = new System.Drawing.Size(80, 22);
			this.notePanel20.TabIndex = 35;
			this.notePanel20.TabStop = false;
			this.notePanel20.Text = "  岗  位:";
			// 
			// comboBoxEdit_Send_TeaClass
			// 
			this.comboBoxEdit_Send_TeaClass.EditValue = "全部";
			this.comboBoxEdit_Send_TeaClass.Location = new System.Drawing.Point(112, 88);
			this.comboBoxEdit_Send_TeaClass.Name = "comboBoxEdit_Send_TeaClass";
			// 
			// comboBoxEdit_Send_TeaClass.Properties
			// 
			this.comboBoxEdit_Send_TeaClass.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																															   new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.comboBoxEdit_Send_TeaClass.Properties.Items.AddRange(new object[] {
																					   "全部"});
			this.comboBoxEdit_Send_TeaClass.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
			this.comboBoxEdit_Send_TeaClass.Size = new System.Drawing.Size(88, 23);
			this.comboBoxEdit_Send_TeaClass.TabIndex = 39;
			this.comboBoxEdit_Send_TeaClass.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit_Send_TeaClass_SelectedIndexChanged);
			// 
			// groupControl1
			// 
			this.groupControl1.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
			this.groupControl1.AppearanceCaption.ForeColor = System.Drawing.Color.OrangeRed;
			this.groupControl1.AppearanceCaption.Options.UseFont = true;
			this.groupControl1.AppearanceCaption.Options.UseForeColor = true;
			this.groupControl1.Controls.Add(this.groupControl6);
			this.groupControl1.Controls.Add(this.groupControl5);
			this.groupControl1.Dock = System.Windows.Forms.DockStyle.Left;
			this.groupControl1.Location = new System.Drawing.Point(0, 0);
			this.groupControl1.Name = "groupControl1";
			this.groupControl1.Size = new System.Drawing.Size(224, 540);
			this.groupControl1.TabIndex = 24;
			this.groupControl1.Text = "发送目的";
			// 
			// groupControl6
			// 
			this.groupControl6.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.groupControl6.AppearanceCaption.ForeColor = System.Drawing.Color.DimGray;
			this.groupControl6.AppearanceCaption.Options.UseFont = true;
			this.groupControl6.AppearanceCaption.Options.UseForeColor = true;
			this.groupControl6.Controls.Add(this.gridControl1);
			this.groupControl6.Dock = System.Windows.Forms.DockStyle.Fill;
			this.groupControl6.Location = new System.Drawing.Point(3, 240);
			this.groupControl6.Name = "groupControl6";
			this.groupControl6.Size = new System.Drawing.Size(218, 297);
			this.groupControl6.TabIndex = 26;
			this.groupControl6.Text = "待发送人员列表";
			// 
			// gridControl1
			// 
			this.gridControl1.Dock = System.Windows.Forms.DockStyle.Fill;
			// 
			// gridControl1.EmbeddedNavigator
			// 
			this.gridControl1.EmbeddedNavigator.Name = "";
			this.gridControl1.Location = new System.Drawing.Point(3, 18);
			this.gridControl1.MainView = this.gridView1;
			this.gridControl1.Name = "gridControl1";
			this.barManager1.SetPopupContextMenu(this.gridControl1, this.popupMenu2);
			this.gridControl1.Size = new System.Drawing.Size(212, 276);
			this.gridControl1.TabIndex = 26;
			this.gridControl1.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
																										this.gridView1});
			// 
			// gridView1
			// 
			this.gridView1.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
																							 this.gridColumn1,
																							 this.gridColumn2,
																							 this.gridColumn3,
																							 this.gridColumn4,
																							 this.gridColumn5});
			this.gridView1.GridControl = this.gridControl1;
			this.gridView1.Name = "gridView1";
			this.gridView1.OptionsBehavior.Editable = false;
			this.gridView1.OptionsCustomization.AllowFilter = false;
			this.gridView1.OptionsCustomization.AllowGroup = false;
			this.gridView1.OptionsView.ShowFilterPanel = false;
			this.gridView1.OptionsView.ShowFooter = true;
			this.gridView1.OptionsView.ShowGroupPanel = false;
			// 
			// gridColumn1
			// 
			this.gridColumn1.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn1.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn1.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn1.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn1.Caption = "工号";
			this.gridColumn1.FieldName = "T_Number";
			this.gridColumn1.Name = "gridColumn1";
			this.gridColumn1.OptionsColumn.AllowEdit = false;
			this.gridColumn1.OptionsColumn.AllowFocus = false;
			this.gridColumn1.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn1.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn1.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn1.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn1.OptionsColumn.ReadOnly = true;
			this.gridColumn1.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn1.Visible = true;
			this.gridColumn1.VisibleIndex = 0;
			// 
			// gridColumn2
			// 
			this.gridColumn2.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn2.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn2.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn2.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn2.Caption = "姓名";
			this.gridColumn2.FieldName = "T_Name";
			this.gridColumn2.Name = "gridColumn2";
			this.gridColumn2.OptionsColumn.AllowEdit = false;
			this.gridColumn2.OptionsColumn.AllowFocus = false;
			this.gridColumn2.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn2.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn2.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn2.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn2.OptionsColumn.ReadOnly = true;
			this.gridColumn2.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn2.Visible = true;
			this.gridColumn2.VisibleIndex = 1;
			// 
			// gridColumn3
			// 
			this.gridColumn3.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn3.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn3.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn3.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn3.Caption = "部门";
			this.gridColumn3.FieldName = "T_Depart";
			this.gridColumn3.Name = "gridColumn3";
			this.gridColumn3.OptionsColumn.AllowEdit = false;
			this.gridColumn3.OptionsColumn.AllowFocus = false;
			this.gridColumn3.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn3.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn3.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn3.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn3.OptionsColumn.ReadOnly = true;
			this.gridColumn3.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn3.Visible = true;
			this.gridColumn3.VisibleIndex = 2;
			// 
			// gridColumn4
			// 
			this.gridColumn4.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn4.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn4.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn4.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn4.Caption = "岗位";
			this.gridColumn4.FieldName = "T_Duty";
			this.gridColumn4.Name = "gridColumn4";
			this.gridColumn4.OptionsColumn.AllowEdit = false;
			this.gridColumn4.OptionsColumn.AllowFocus = false;
			this.gridColumn4.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn4.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn4.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn4.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn4.OptionsColumn.ReadOnly = true;
			this.gridColumn4.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn4.Visible = true;
			this.gridColumn4.VisibleIndex = 3;
			// 
			// gridColumn5
			// 
			this.gridColumn5.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn5.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn5.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn5.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn5.Caption = "gridColumn5";
			this.gridColumn5.FieldName = "info_stuID";
			this.gridColumn5.Name = "gridColumn5";
			this.gridColumn5.OptionsColumn.AllowEdit = false;
			this.gridColumn5.OptionsColumn.AllowFocus = false;
			this.gridColumn5.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn5.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn5.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn5.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn5.OptionsColumn.ReadOnly = true;
			this.gridColumn5.OptionsColumn.ShowInCustomizationForm = false;
			// 
			// groupControl5
			// 
			this.groupControl5.Appearance.ForeColor = System.Drawing.Color.Black;
			this.groupControl5.Appearance.Options.UseForeColor = true;
			this.groupControl5.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.groupControl5.AppearanceCaption.ForeColor = System.Drawing.Color.DimGray;
			this.groupControl5.AppearanceCaption.Options.UseFont = true;
			this.groupControl5.AppearanceCaption.Options.UseForeColor = true;
			this.groupControl5.Controls.Add(this.comboBoxEdit_Send_Mode);
			this.groupControl5.Controls.Add(this.notePanel_Send_Mode);
			this.groupControl5.Controls.Add(this.notePanel1);
			this.groupControl5.Controls.Add(this.notePanel_Send_TeaName);
			this.groupControl5.Controls.Add(this.textEdit_Send_TeaName);
			this.groupControl5.Controls.Add(this.notePanel19);
			this.groupControl5.Controls.Add(this.comboBoxEdit_Send_TeaGrade);
			this.groupControl5.Controls.Add(this.notePanel20);
			this.groupControl5.Controls.Add(this.comboBoxEdit_Send_TeaClass);
			this.groupControl5.Controls.Add(this.notePanel_Send_TeaNumber);
			this.groupControl5.Controls.Add(this.textEdit_Send_TeaNumber);
			this.groupControl5.Dock = System.Windows.Forms.DockStyle.Top;
			this.groupControl5.Location = new System.Drawing.Point(3, 18);
			this.groupControl5.Name = "groupControl5";
			this.groupControl5.Size = new System.Drawing.Size(218, 222);
			this.groupControl5.TabIndex = 25;
			this.groupControl5.Text = "查找要发送信息的同事";
			// 
			// comboBoxEdit_Send_Mode
			// 
			this.comboBoxEdit_Send_Mode.EditValue = "自动获取";
			this.comboBoxEdit_Send_Mode.Location = new System.Drawing.Point(112, 184);
			this.comboBoxEdit_Send_Mode.Name = "comboBoxEdit_Send_Mode";
			// 
			// comboBoxEdit_Send_Mode.Properties
			// 
			this.comboBoxEdit_Send_Mode.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																														   new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.comboBoxEdit_Send_Mode.Properties.Items.AddRange(new object[] {
																				   "自动获取",
																				   "自行添加"});
			this.comboBoxEdit_Send_Mode.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
			this.comboBoxEdit_Send_Mode.Size = new System.Drawing.Size(88, 23);
			this.comboBoxEdit_Send_Mode.TabIndex = 52;
			this.comboBoxEdit_Send_Mode.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit_Send_Mode_SelectedIndexChanged);
			// 
			// notePanel_Send_Mode
			// 
			this.notePanel_Send_Mode.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_Send_Mode.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_Send_Mode.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_Send_Mode.ForeColor = System.Drawing.Color.Black;
			this.notePanel_Send_Mode.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_Send_Mode.Location = new System.Drawing.Point(24, 184);
			this.notePanel_Send_Mode.MaxRows = 5;
			this.notePanel_Send_Mode.Name = "notePanel_Send_Mode";
			this.notePanel_Send_Mode.ParentAutoHeight = true;
			this.notePanel_Send_Mode.Size = new System.Drawing.Size(80, 22);
			this.notePanel_Send_Mode.TabIndex = 51;
			this.notePanel_Send_Mode.TabStop = false;
			this.notePanel_Send_Mode.Text = "添加模式:";
			this.notePanel_Send_Mode.Click += new System.EventHandler(this.notePanel_Send_Mode_Click);
			// 
			// notePanel1
			// 
			this.notePanel1.BackColor = System.Drawing.Color.LightGoldenrodYellow;
			this.notePanel1.Dock = System.Windows.Forms.DockStyle.Top;
			this.notePanel1.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.notePanel1.ForeColor = System.Drawing.Color.OrangeRed;
			this.notePanel1.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel1.Location = new System.Drawing.Point(3, 18);
			this.notePanel1.MaxRows = 5;
			this.notePanel1.Name = "notePanel1";
			this.notePanel1.ParentAutoHeight = true;
			this.notePanel1.Size = new System.Drawing.Size(212, 23);
			this.notePanel1.TabIndex = 50;
			this.notePanel1.TabStop = false;
			this.notePanel1.Text = "请点击模式标签进行自行添加";
			// 
			// groupControl3
			// 
			this.groupControl3.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
			this.groupControl3.AppearanceCaption.ForeColor = System.Drawing.Color.DarkOrange;
			this.groupControl3.AppearanceCaption.Options.UseFont = true;
			this.groupControl3.AppearanceCaption.Options.UseForeColor = true;
			this.groupControl3.Controls.Add(this.textEdit_SendMsgTitle);
			this.groupControl3.Controls.Add(this.notePanel_SendMsgTitle);
			this.groupControl3.Controls.Add(this.memoEdit_SendContent);
			this.groupControl3.Controls.Add(this.simpleButton_EditPhoneNum);
			this.groupControl3.Controls.Add(this.notePanel_SendMsgContent);
			this.groupControl3.Dock = System.Windows.Forms.DockStyle.Top;
			this.groupControl3.Location = new System.Drawing.Point(224, 0);
			this.groupControl3.Name = "groupControl3";
			this.groupControl3.Size = new System.Drawing.Size(548, 144);
			this.groupControl3.TabIndex = 25;
			this.groupControl3.Text = "发送信息";
			// 
			// textEdit_SendMsgTitle
			// 
			this.textEdit_SendMsgTitle.EditValue = "";
			this.textEdit_SendMsgTitle.Location = new System.Drawing.Point(128, 24);
			this.textEdit_SendMsgTitle.Name = "textEdit_SendMsgTitle";
			this.textEdit_SendMsgTitle.Size = new System.Drawing.Size(320, 23);
			this.textEdit_SendMsgTitle.TabIndex = 43;
			// 
			// notePanel_SendMsgTitle
			// 
			this.notePanel_SendMsgTitle.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_SendMsgTitle.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_SendMsgTitle.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_SendMsgTitle.ForeColor = System.Drawing.Color.Black;
			this.notePanel_SendMsgTitle.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_SendMsgTitle.Location = new System.Drawing.Point(40, 24);
			this.notePanel_SendMsgTitle.MaxRows = 5;
			this.notePanel_SendMsgTitle.Name = "notePanel_SendMsgTitle";
			this.notePanel_SendMsgTitle.ParentAutoHeight = true;
			this.notePanel_SendMsgTitle.Size = new System.Drawing.Size(80, 22);
			this.notePanel_SendMsgTitle.TabIndex = 42;
			this.notePanel_SendMsgTitle.TabStop = false;
			this.notePanel_SendMsgTitle.Text = "信息主题:";
			// 
			// memoEdit_SendContent
			// 
			this.memoEdit_SendContent.EditValue = "";
			this.memoEdit_SendContent.Location = new System.Drawing.Point(128, 56);
			this.memoEdit_SendContent.Name = "memoEdit_SendContent";
			this.memoEdit_SendContent.Size = new System.Drawing.Size(320, 72);
			this.memoEdit_SendContent.TabIndex = 41;
			// 
			// simpleButton_EditPhoneNum
			// 
			this.simpleButton_EditPhoneNum.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
			this.simpleButton_EditPhoneNum.Location = new System.Drawing.Point(416, 104);
			this.simpleButton_EditPhoneNum.Name = "simpleButton_EditPhoneNum";
			this.simpleButton_EditPhoneNum.Size = new System.Drawing.Size(72, 24);
			this.simpleButton_EditPhoneNum.TabIndex = 40;
			this.simpleButton_EditPhoneNum.Text = "发送";
			this.simpleButton_EditPhoneNum.Click += new System.EventHandler(this.simpleButton_EditPhoneNum_Click);
			// 
			// notePanel_SendMsgContent
			// 
			this.notePanel_SendMsgContent.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_SendMsgContent.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_SendMsgContent.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_SendMsgContent.ForeColor = System.Drawing.Color.Black;
			this.notePanel_SendMsgContent.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_SendMsgContent.Location = new System.Drawing.Point(40, 56);
			this.notePanel_SendMsgContent.MaxRows = 5;
			this.notePanel_SendMsgContent.Name = "notePanel_SendMsgContent";
			this.notePanel_SendMsgContent.ParentAutoHeight = true;
			this.notePanel_SendMsgContent.Size = new System.Drawing.Size(80, 22);
			this.notePanel_SendMsgContent.TabIndex = 38;
			this.notePanel_SendMsgContent.TabStop = false;
			this.notePanel_SendMsgContent.Text = "信息内容:";
			// 
			// groupControl4
			// 
			this.groupControl4.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
			this.groupControl4.AppearanceCaption.ForeColor = System.Drawing.Color.DarkOrange;
			this.groupControl4.AppearanceCaption.Options.UseFont = true;
			this.groupControl4.AppearanceCaption.Options.UseForeColor = true;
			this.groupControl4.Controls.Add(this.comboBoxEdit_HasRead);
			this.groupControl4.Controls.Add(this.notePanel_HasRead);
			this.groupControl4.Controls.Add(this.comboBoxEdit_MsgDate);
			this.groupControl4.Controls.Add(this.textEdit_SerContent);
			this.groupControl4.Controls.Add(this.notePanel_MsgDate);
			this.groupControl4.Controls.Add(this.comboBoxEdit_SerType);
			this.groupControl4.Controls.Add(this.notePanel_SerType);
			this.groupControl4.Controls.Add(this.notePanel_Realtime_GraphicSearch);
			this.groupControl4.Controls.Add(this.gridControl2);
			this.groupControl4.Dock = System.Windows.Forms.DockStyle.Fill;
			this.groupControl4.Location = new System.Drawing.Point(224, 144);
			this.groupControl4.Name = "groupControl4";
			this.groupControl4.Size = new System.Drawing.Size(548, 396);
			this.groupControl4.TabIndex = 26;
			this.groupControl4.Text = "已收到的提醒";
			// 
			// comboBoxEdit_HasRead
			// 
			this.comboBoxEdit_HasRead.EditValue = "全部";
			this.comboBoxEdit_HasRead.Location = new System.Drawing.Point(480, 48);
			this.comboBoxEdit_HasRead.Name = "comboBoxEdit_HasRead";
			// 
			// comboBoxEdit_HasRead.Properties
			// 
			this.comboBoxEdit_HasRead.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																														 new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.comboBoxEdit_HasRead.Properties.Items.AddRange(new object[] {
																				 "全部",
																				 "已阅读",
																				 "未阅读"});
			this.comboBoxEdit_HasRead.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
			this.comboBoxEdit_HasRead.Size = new System.Drawing.Size(80, 23);
			this.comboBoxEdit_HasRead.TabIndex = 56;
			this.comboBoxEdit_HasRead.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit_HasRead_SelectedIndexChanged);
			// 
			// notePanel_HasRead
			// 
			this.notePanel_HasRead.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_HasRead.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_HasRead.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_HasRead.ForeColor = System.Drawing.Color.Black;
			this.notePanel_HasRead.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_HasRead.Location = new System.Drawing.Point(392, 48);
			this.notePanel_HasRead.MaxRows = 5;
			this.notePanel_HasRead.Name = "notePanel_HasRead";
			this.notePanel_HasRead.ParentAutoHeight = true;
			this.notePanel_HasRead.Size = new System.Drawing.Size(80, 22);
			this.notePanel_HasRead.TabIndex = 55;
			this.notePanel_HasRead.TabStop = false;
			this.notePanel_HasRead.Text = "阅读情况:";
			// 
			// comboBoxEdit_MsgDate
			// 
			this.comboBoxEdit_MsgDate.EditValue = "全部";
			this.comboBoxEdit_MsgDate.Location = new System.Drawing.Point(288, 48);
			this.comboBoxEdit_MsgDate.Name = "comboBoxEdit_MsgDate";
			// 
			// comboBoxEdit_MsgDate.Properties
			// 
			this.comboBoxEdit_MsgDate.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																														 new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.comboBoxEdit_MsgDate.Properties.Items.AddRange(new object[] {
																				 "全部",
																				 "最近三天",
																				 "最近一周",
																				 "最近一月",
																				 "最近一年"});
			this.comboBoxEdit_MsgDate.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
			this.comboBoxEdit_MsgDate.Size = new System.Drawing.Size(96, 23);
			this.comboBoxEdit_MsgDate.TabIndex = 54;
			this.comboBoxEdit_MsgDate.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit_MsgDate_SelectedIndexChanged);
			// 
			// textEdit_SerContent
			// 
			this.textEdit_SerContent.EditValue = "";
			this.textEdit_SerContent.Location = new System.Drawing.Point(8, 72);
			this.textEdit_SerContent.Name = "textEdit_SerContent";
			this.textEdit_SerContent.Size = new System.Drawing.Size(552, 23);
			this.textEdit_SerContent.TabIndex = 53;
			this.textEdit_SerContent.EditValueChanged += new System.EventHandler(this.textEdit_SerContent_EditValueChanged);
			// 
			// notePanel_MsgDate
			// 
			this.notePanel_MsgDate.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_MsgDate.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_MsgDate.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_MsgDate.ForeColor = System.Drawing.Color.Black;
			this.notePanel_MsgDate.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_MsgDate.Location = new System.Drawing.Point(200, 48);
			this.notePanel_MsgDate.MaxRows = 5;
			this.notePanel_MsgDate.Name = "notePanel_MsgDate";
			this.notePanel_MsgDate.ParentAutoHeight = true;
			this.notePanel_MsgDate.Size = new System.Drawing.Size(80, 22);
			this.notePanel_MsgDate.TabIndex = 52;
			this.notePanel_MsgDate.TabStop = false;
			this.notePanel_MsgDate.Text = "信息时间:";
			// 
			// comboBoxEdit_SerType
			// 
			this.comboBoxEdit_SerType.EditValue = "全部";
			this.comboBoxEdit_SerType.Location = new System.Drawing.Point(96, 48);
			this.comboBoxEdit_SerType.Name = "comboBoxEdit_SerType";
			// 
			// comboBoxEdit_SerType.Properties
			// 
			this.comboBoxEdit_SerType.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																														 new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.comboBoxEdit_SerType.Properties.Items.AddRange(new object[] {
																				 "全部",
																				 "发信人",
																				 "信息主题",
																				 "信息内容"});
			this.comboBoxEdit_SerType.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
			this.comboBoxEdit_SerType.Size = new System.Drawing.Size(96, 23);
			this.comboBoxEdit_SerType.TabIndex = 51;
			this.comboBoxEdit_SerType.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit_SerType_SelectedIndexChanged);
			// 
			// notePanel_SerType
			// 
			this.notePanel_SerType.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_SerType.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_SerType.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_SerType.ForeColor = System.Drawing.Color.Black;
			this.notePanel_SerType.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_SerType.Location = new System.Drawing.Point(8, 48);
			this.notePanel_SerType.MaxRows = 5;
			this.notePanel_SerType.Name = "notePanel_SerType";
			this.notePanel_SerType.ParentAutoHeight = true;
			this.notePanel_SerType.Size = new System.Drawing.Size(80, 22);
			this.notePanel_SerType.TabIndex = 50;
			this.notePanel_SerType.TabStop = false;
			this.notePanel_SerType.Text = "查询类型:";
			// 
			// notePanel_Realtime_GraphicSearch
			// 
			this.notePanel_Realtime_GraphicSearch.BackColor = System.Drawing.Color.LightGoldenrodYellow;
			this.notePanel_Realtime_GraphicSearch.Dock = System.Windows.Forms.DockStyle.Top;
			this.notePanel_Realtime_GraphicSearch.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.notePanel_Realtime_GraphicSearch.ForeColor = System.Drawing.Color.OrangeRed;
			this.notePanel_Realtime_GraphicSearch.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_Realtime_GraphicSearch.Location = new System.Drawing.Point(3, 18);
			this.notePanel_Realtime_GraphicSearch.MaxRows = 5;
			this.notePanel_Realtime_GraphicSearch.Name = "notePanel_Realtime_GraphicSearch";
			this.notePanel_Realtime_GraphicSearch.ParentAutoHeight = true;
			this.notePanel_Realtime_GraphicSearch.Size = new System.Drawing.Size(542, 23);
			this.notePanel_Realtime_GraphicSearch.TabIndex = 49;
			this.notePanel_Realtime_GraphicSearch.TabStop = false;
			this.notePanel_Realtime_GraphicSearch.Text = "双击指定信息以获取该信息的内容";
			// 
			// gridControl2
			// 
			this.gridControl2.Dock = System.Windows.Forms.DockStyle.Bottom;
			// 
			// gridControl2.EmbeddedNavigator
			// 
			this.gridControl2.EmbeddedNavigator.Name = "";
			this.gridControl2.Location = new System.Drawing.Point(3, 33);
			this.gridControl2.MainView = this.gridView2;
			this.gridControl2.Name = "gridControl2";
			this.barManager1.SetPopupContextMenu(this.gridControl2, this.popupMenu1);
			this.gridControl2.Size = new System.Drawing.Size(542, 360);
			this.gridControl2.TabIndex = 23;
			this.gridControl2.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
																										this.gridView2});
			this.gridControl2.DoubleClick += new System.EventHandler(this.gridControl2_DoubleClick);
			// 
			// gridView2
			// 
			this.gridView2.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
																							 this.gridColumn6,
																							 this.gridColumn7,
																							 this.gridColumn8,
																							 this.gridColumn10,
																							 this.gridColumn9});
			this.gridView2.GridControl = this.gridControl2;
			this.gridView2.Name = "gridView2";
			this.gridView2.OptionsBehavior.Editable = false;
			this.gridView2.OptionsCustomization.AllowFilter = false;
			this.gridView2.OptionsCustomization.AllowGroup = false;
			this.gridView2.OptionsView.ShowFilterPanel = false;
			this.gridView2.OptionsView.ShowFooter = true;
			this.gridView2.OptionsView.ShowGroupPanel = false;
			// 
			// gridColumn6
			// 
			this.gridColumn6.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn6.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn6.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn6.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn6.Caption = "发信人";
			this.gridColumn6.FieldName = "T_Name";
			this.gridColumn6.Name = "gridColumn6";
			this.gridColumn6.OptionsColumn.AllowEdit = false;
			this.gridColumn6.OptionsColumn.AllowFocus = false;
			this.gridColumn6.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn6.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn6.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn6.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn6.OptionsColumn.ReadOnly = true;
			this.gridColumn6.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn6.Visible = true;
			this.gridColumn6.VisibleIndex = 0;
			this.gridColumn6.Width = 93;
			// 
			// gridColumn7
			// 
			this.gridColumn7.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn7.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn7.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn7.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn7.Caption = "信息时间";
			this.gridColumn7.DisplayFormat.FormatString = "yyyy-MM-dd HH:mm:ss";
			this.gridColumn7.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
			this.gridColumn7.FieldName = "SendDate";
			this.gridColumn7.Name = "gridColumn7";
			this.gridColumn7.OptionsColumn.AllowEdit = false;
			this.gridColumn7.OptionsColumn.AllowFocus = false;
			this.gridColumn7.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn7.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn7.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn7.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn7.OptionsColumn.ReadOnly = true;
			this.gridColumn7.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn7.Visible = true;
			this.gridColumn7.VisibleIndex = 1;
			this.gridColumn7.Width = 152;
			// 
			// gridColumn8
			// 
			this.gridColumn8.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn8.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn8.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn8.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn8.Caption = "信息主题";
			this.gridColumn8.DisplayFormat.FormatString = "content";
			this.gridColumn8.FieldName = "Title";
			this.gridColumn8.Name = "gridColumn8";
			this.gridColumn8.OptionsColumn.AllowEdit = false;
			this.gridColumn8.OptionsColumn.AllowFocus = false;
			this.gridColumn8.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn8.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn8.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn8.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn8.OptionsColumn.ReadOnly = true;
			this.gridColumn8.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn8.Visible = true;
			this.gridColumn8.VisibleIndex = 2;
			this.gridColumn8.Width = 195;
			// 
			// gridColumn10
			// 
			this.gridColumn10.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn10.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn10.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn10.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn10.Caption = "阅读情况";
			this.gridColumn10.FieldName = "HasRead";
			this.gridColumn10.Name = "gridColumn10";
			this.gridColumn10.OptionsColumn.AllowEdit = false;
			this.gridColumn10.OptionsColumn.AllowFocus = false;
			this.gridColumn10.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn10.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn10.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn10.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn10.OptionsColumn.ReadOnly = true;
			this.gridColumn10.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn10.Visible = true;
			this.gridColumn10.VisibleIndex = 3;
			this.gridColumn10.Width = 85;
			// 
			// gridColumn9
			// 
			this.gridColumn9.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn9.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn9.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn9.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn9.Caption = "gridColumn9";
			this.gridColumn9.FieldName = "TransactionID";
			this.gridColumn9.Name = "gridColumn9";
			this.gridColumn9.OptionsColumn.AllowEdit = false;
			this.gridColumn9.OptionsColumn.AllowFocus = false;
			this.gridColumn9.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn9.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn9.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn9.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn9.OptionsColumn.ReadOnly = true;
			this.gridColumn9.OptionsColumn.ShowInCustomizationForm = false;
			// 
			// barManager1
			// 
			this.barManager1.DockControls.Add(this.barDockControlTop);
			this.barManager1.DockControls.Add(this.barDockControlBottom);
			this.barManager1.DockControls.Add(this.barDockControlLeft);
			this.barManager1.DockControls.Add(this.barDockControlRight);
			this.barManager1.Form = this;
			this.barManager1.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
																				  this.barButtonItem_MsgRefresh,
																				  this.barButtonItem_MsgDelete,
																				  this.barButtonItem_RecAdd,
																				  this.barButtonItem_RecDel,
																				  this.barButtonItem_RecReset});
			this.barManager1.MaxItemId = 5;
			// 
			// popupMenu2
			// 
			this.popupMenu2.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
																									new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem_RecAdd),
																									new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem_RecDel),
																									new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem_RecReset)});
			this.popupMenu2.Manager = this.barManager1;
			this.popupMenu2.Name = "popupMenu2";
			// 
			// barButtonItem_RecAdd
			// 
			this.barButtonItem_RecAdd.Caption = "记录添加";
			this.barButtonItem_RecAdd.Id = 2;
			this.barButtonItem_RecAdd.Name = "barButtonItem_RecAdd";
			this.barButtonItem_RecAdd.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem_RecAdd_ItemClick);
			// 
			// barButtonItem_RecDel
			// 
			this.barButtonItem_RecDel.Caption = "记录删除";
			this.barButtonItem_RecDel.Id = 3;
			this.barButtonItem_RecDel.Name = "barButtonItem_RecDel";
			this.barButtonItem_RecDel.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem_RecDel_ItemClick);
			// 
			// barButtonItem_RecReset
			// 
			this.barButtonItem_RecReset.Caption = "记录重置";
			this.barButtonItem_RecReset.Id = 4;
			this.barButtonItem_RecReset.Name = "barButtonItem_RecReset";
			this.barButtonItem_RecReset.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem_RecReset_ItemClick);
			// 
			// popupMenu1
			// 
			this.popupMenu1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
																									new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem_MsgRefresh),
																									new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem_MsgDelete)});
			this.popupMenu1.Manager = this.barManager1;
			this.popupMenu1.Name = "popupMenu1";
			// 
			// barButtonItem_MsgRefresh
			// 
			this.barButtonItem_MsgRefresh.Caption = "信息刷新";
			this.barButtonItem_MsgRefresh.Id = 0;
			this.barButtonItem_MsgRefresh.Name = "barButtonItem_MsgRefresh";
			this.barButtonItem_MsgRefresh.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem_MsgRefresh_ItemClick);
			// 
			// barButtonItem_MsgDelete
			// 
			this.barButtonItem_MsgDelete.Caption = "信息删除";
			this.barButtonItem_MsgDelete.Id = 1;
			this.barButtonItem_MsgDelete.Name = "barButtonItem_MsgDelete";
			this.barButtonItem_MsgDelete.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem_MsgDelete_ItemClick);
			// 
			// TransactionReminding
			// 
			this.Appearance.BackColor = System.Drawing.Color.WhiteSmoke;
			this.Appearance.Options.UseBackColor = true;
			this.Controls.Add(this.groupControl4);
			this.Controls.Add(this.groupControl3);
			this.Controls.Add(this.groupControl1);
			this.Controls.Add(this.barDockControlTop);
			this.Controls.Add(this.barDockControlBottom);
			this.Controls.Add(this.barDockControlLeft);
			this.Controls.Add(this.barDockControlRight);
			this.Name = "TransactionReminding";
			this.Size = new System.Drawing.Size(772, 540);
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_Send_TeaGrade.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_Send_TeaName.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_Send_TeaNumber.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_Send_TeaClass.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
			this.groupControl1.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.groupControl6)).EndInit();
			this.groupControl6.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.gridControl1)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl5)).EndInit();
			this.groupControl5.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_Send_Mode.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl3)).EndInit();
			this.groupControl3.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.textEdit_SendMsgTitle.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.memoEdit_SendContent.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl4)).EndInit();
			this.groupControl4.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_HasRead.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_MsgDate.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_SerContent.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_SerType.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.gridControl2)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.gridView2)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.barManager1)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.popupMenu2)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.popupMenu1)).EndInit();
			this.ResumeLayout(false);

		}
示例#16
0
		/// <summary> 
		/// Required method for Designer support - do not modify 
		/// the contents of this method with the code editor.
		/// </summary>
		private void InitializeComponent()
		{
			this.xtraTabControl1 = new DevExpress.XtraTab.XtraTabControl();
			this.xtraTabPage_InfoMgmt = new DevExpress.XtraTab.XtraTabPage();
			this.splitContainerControl_Mgmt = new DevExpress.XtraEditors.SplitContainerControl();
			this.gridControl_Mgmt = new DevExpress.XtraGrid.GridControl();
			this.gridView1 = new DevExpress.XtraGrid.Views.Grid.GridView();
			this.gridColumn1 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn2 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn3 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.groupControl_MgmtClass = new DevExpress.XtraEditors.GroupControl();
			this.dateEdit_MgmtDate = new DevExpress.XtraEditors.DateEdit();
			this.notePanel_MgmtDate = new DevExpress.Utils.Frames.NotePanel();
			this.dataNavigator_Mgmt = new DevExpress.XtraEditors.DataNavigator();
			this.comboBoxEdit_MgmtClass = new DevExpress.XtraEditors.ComboBoxEdit();
			this.notePanel_MgmtClass = new DevExpress.Utils.Frames.NotePanel();
			this.comboBoxEdit_MgmtGrade = new DevExpress.XtraEditors.ComboBoxEdit();
			this.notePanel_MgmtGrade = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_MgmtQuery = new DevExpress.Utils.Frames.NotePanel();
			this.groupControl_VisitInfoInput = new DevExpress.XtraEditors.GroupControl();
			this.memoEdit_MgmtAbsRemark = new DevExpress.XtraEditors.MemoEdit();
			this.notePanel_MgmtVisState = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_MgmtAbsReason = new DevExpress.Utils.Frames.NotePanel();
			this.comboBoxEdit_MgmtVisState = new DevExpress.XtraEditors.ComboBoxEdit();
			this.notePanel_MgmtVisDate = new DevExpress.Utils.Frames.NotePanel();
			this.dateEdit_MgmtVisDate = new DevExpress.XtraEditors.DateEdit();
			this.comboBoxEdit_MgmtAbsReason = new DevExpress.XtraEditors.ComboBoxEdit();
			this.groupControl_MgmtParentLink = new DevExpress.XtraEditors.GroupControl();
			this.textEdit_MgmtMOWorkingAddr = new DevExpress.XtraEditors.TextEdit();
			this.notePanel_MgmtMOWorkingAddr = new DevExpress.Utils.Frames.NotePanel();
			this.textEdit_MgmtMOPhone = new DevExpress.XtraEditors.TextEdit();
			this.textEdit_MgmtMOName = new DevExpress.XtraEditors.TextEdit();
			this.notePanel_MgmtMOPhone = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_MgmtMOName = new DevExpress.Utils.Frames.NotePanel();
			this.textEdit_MgmtFAWorkingAddr = new DevExpress.XtraEditors.TextEdit();
			this.notePanel_MgmtFAWorkingAddr = new DevExpress.Utils.Frames.NotePanel();
			this.textEdit_MgmtFAPhone = new DevExpress.XtraEditors.TextEdit();
			this.notePanel_MgmtFAPhone = new DevExpress.Utils.Frames.NotePanel();
			this.textEdit_MgmtFAName = new DevExpress.XtraEditors.TextEdit();
			this.notePanel_MgmtFAName = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_MgmtFamilyAddr = new DevExpress.Utils.Frames.NotePanel();
			this.textEdit_MgmtFamilyAddr = new DevExpress.XtraEditors.TextEdit();
			this.panelControl1 = new DevExpress.XtraEditors.PanelControl();
			this.simpleButton_Mgmt2DaysAbs = new DevExpress.XtraEditors.SimpleButton();
			this.simpleButton_MgmtSave = new DevExpress.XtraEditors.SimpleButton();
			this.notePanel_WelcomePanel = new DevExpress.Utils.Frames.NotePanel();
			this.xtraTabPage_InfoQuery = new DevExpress.XtraTab.XtraTabPage();
			this.splitContainerControl1 = new DevExpress.XtraEditors.SplitContainerControl();
			this.groupControl_VisitInfoClass = new DevExpress.XtraEditors.GroupControl();
			this.textEdit_VisitInfoNumber = new DevExpress.XtraEditors.TextEdit();
			this.textEdit_VisitInfoName = new DevExpress.XtraEditors.TextEdit();
			this.dateEdit_VisitInfoEndDate = new DevExpress.XtraEditors.DateEdit();
			this.dateEdit_VisitInfoBegDate = new DevExpress.XtraEditors.DateEdit();
			this.notePanel_VisitInfoEndDate = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_VisitInfoBegDate = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_VisitInfoNumber = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_VisistInfoName = new DevExpress.Utils.Frames.NotePanel();
			this.comboBoxEdit_VisitInfoClass = new DevExpress.XtraEditors.ComboBoxEdit();
			this.notePanel_VisitInfoClass = new DevExpress.Utils.Frames.NotePanel();
			this.comboBoxEdit_VisitInfoGrade = new DevExpress.XtraEditors.ComboBoxEdit();
			this.notePanel_VisitInfoGrade = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_VisitInfoQuery = new DevExpress.Utils.Frames.NotePanel();
			this.groupControl_VisitInfo = new DevExpress.XtraEditors.GroupControl();
			this.memoEdit_VisInfoAbsRemark = new DevExpress.XtraEditors.MemoEdit();
			this.notePanel_VisInfoVisMode = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_VisInfoAbsReason = new DevExpress.Utils.Frames.NotePanel();
			this.comboBoxEdit_VisInfoVisMode = new DevExpress.XtraEditors.ComboBoxEdit();
			this.notePanel_VisInfoVisDate = new DevExpress.Utils.Frames.NotePanel();
			this.dateEdit_VisInfoVisDate = new DevExpress.XtraEditors.DateEdit();
			this.comboBoxEdit_VisInfoAbsReason = new DevExpress.XtraEditors.ComboBoxEdit();
			this.gridControl_VisitInfo = new DevExpress.XtraGrid.GridControl();
			this.gridView2 = new DevExpress.XtraGrid.Views.Grid.GridView();
			this.gridColumn4 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn5 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn6 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn7 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn8 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn9 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn10 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn11 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn12 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.panelControl2 = new DevExpress.XtraEditors.PanelControl();
			this.simpleButton_VisitInfoPrint = new DevExpress.XtraEditors.SimpleButton();
			this.simpleButton_VisitInfoBack = new DevExpress.XtraEditors.SimpleButton();
			this.simpleButton_VisitInfoDelete = new DevExpress.XtraEditors.SimpleButton();
			this.simpleButton_VisitInfoSearch = new DevExpress.XtraEditors.SimpleButton();
			this.simpleButton_VisitInfoModify = new DevExpress.XtraEditors.SimpleButton();
			this.notePanel_VisitInfoPanel = new DevExpress.Utils.Frames.NotePanel();
			this.saveFileDialog_Report = new System.Windows.Forms.SaveFileDialog();
			this.helpProvider_StuVisitInfo = new System.Windows.Forms.HelpProvider();
			((System.ComponentModel.ISupportInitialize)(this.xtraTabControl1)).BeginInit();
			this.xtraTabControl1.SuspendLayout();
			this.xtraTabPage_InfoMgmt.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.splitContainerControl_Mgmt)).BeginInit();
			this.splitContainerControl_Mgmt.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.gridControl_Mgmt)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_MgmtClass)).BeginInit();
			this.groupControl_MgmtClass.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.dateEdit_MgmtDate.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_MgmtClass.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_MgmtGrade.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_VisitInfoInput)).BeginInit();
			this.groupControl_VisitInfoInput.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.memoEdit_MgmtAbsRemark.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_MgmtVisState.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.dateEdit_MgmtVisDate.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_MgmtAbsReason.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_MgmtParentLink)).BeginInit();
			this.groupControl_MgmtParentLink.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MgmtMOWorkingAddr.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MgmtMOPhone.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MgmtMOName.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MgmtFAWorkingAddr.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MgmtFAPhone.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MgmtFAName.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MgmtFamilyAddr.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
			this.panelControl1.SuspendLayout();
			this.xtraTabPage_InfoQuery.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.splitContainerControl1)).BeginInit();
			this.splitContainerControl1.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_VisitInfoClass)).BeginInit();
			this.groupControl_VisitInfoClass.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_VisitInfoNumber.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_VisitInfoName.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.dateEdit_VisitInfoEndDate.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.dateEdit_VisitInfoBegDate.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_VisitInfoClass.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_VisitInfoGrade.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_VisitInfo)).BeginInit();
			this.groupControl_VisitInfo.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.memoEdit_VisInfoAbsRemark.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_VisInfoVisMode.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.dateEdit_VisInfoVisDate.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_VisInfoAbsReason.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.gridControl_VisitInfo)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.gridView2)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.panelControl2)).BeginInit();
			this.panelControl2.SuspendLayout();
			this.SuspendLayout();
			// 
			// xtraTabControl1
			// 
			this.xtraTabControl1.Controls.Add(this.xtraTabPage_InfoMgmt);
			this.xtraTabControl1.Controls.Add(this.xtraTabPage_InfoQuery);
			this.xtraTabControl1.Dock = System.Windows.Forms.DockStyle.Fill;
			this.xtraTabControl1.Location = new System.Drawing.Point(0, 0);
			this.xtraTabControl1.Name = "xtraTabControl1";
			this.xtraTabControl1.SelectedTabPage = this.xtraTabPage_InfoMgmt;
			this.xtraTabControl1.Size = new System.Drawing.Size(772, 540);
			this.xtraTabControl1.TabIndex = 0;
			this.xtraTabControl1.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
																							this.xtraTabPage_InfoMgmt,
																							this.xtraTabPage_InfoQuery});
			this.xtraTabControl1.Text = "xtraTabControl1";
			// 
			// xtraTabPage_InfoMgmt
			// 
			this.xtraTabPage_InfoMgmt.Appearance.PageClient.BackColor = System.Drawing.Color.WhiteSmoke;
			this.xtraTabPage_InfoMgmt.Appearance.PageClient.Options.UseBackColor = true;
			this.xtraTabPage_InfoMgmt.Controls.Add(this.splitContainerControl_Mgmt);
			this.xtraTabPage_InfoMgmt.Controls.Add(this.notePanel_WelcomePanel);
			this.xtraTabPage_InfoMgmt.Name = "xtraTabPage_InfoMgmt";
			this.xtraTabPage_InfoMgmt.Size = new System.Drawing.Size(768, 515);
			this.xtraTabPage_InfoMgmt.Text = "幼儿家访信息管理";
			// 
			// splitContainerControl_Mgmt
			// 
			this.splitContainerControl_Mgmt.Dock = System.Windows.Forms.DockStyle.Fill;
			this.splitContainerControl_Mgmt.Location = new System.Drawing.Point(0, 23);
			this.splitContainerControl_Mgmt.Name = "splitContainerControl_Mgmt";
			this.splitContainerControl_Mgmt.Panel1.Controls.Add(this.gridControl_Mgmt);
			this.splitContainerControl_Mgmt.Panel1.Controls.Add(this.groupControl_MgmtClass);
			this.splitContainerControl_Mgmt.Panel1.Text = "splitContainerControl1_Panel1";
			this.splitContainerControl_Mgmt.Panel2.Controls.Add(this.groupControl_VisitInfoInput);
			this.splitContainerControl_Mgmt.Panel2.Controls.Add(this.groupControl_MgmtParentLink);
			this.splitContainerControl_Mgmt.Panel2.Controls.Add(this.panelControl1);
			this.splitContainerControl_Mgmt.Panel2.Text = "splitContainerControl1_Panel2";
			this.splitContainerControl_Mgmt.Size = new System.Drawing.Size(768, 492);
			this.splitContainerControl_Mgmt.SplitterPosition = 208;
			this.splitContainerControl_Mgmt.TabIndex = 12;
			this.splitContainerControl_Mgmt.Text = "splitContainerControl1";
			// 
			// gridControl_Mgmt
			// 
			this.gridControl_Mgmt.Dock = System.Windows.Forms.DockStyle.Fill;
			// 
			// gridControl_Mgmt.EmbeddedNavigator
			// 
			this.gridControl_Mgmt.EmbeddedNavigator.Name = "";
			this.gridControl_Mgmt.Location = new System.Drawing.Point(0, 192);
			this.gridControl_Mgmt.MainView = this.gridView1;
			this.gridControl_Mgmt.Name = "gridControl_Mgmt";
			this.gridControl_Mgmt.Size = new System.Drawing.Size(202, 294);
			this.gridControl_Mgmt.TabIndex = 1;
			this.gridControl_Mgmt.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
																											this.gridView1});
			// 
			// gridView1
			// 
			this.gridView1.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
																							 this.gridColumn1,
																							 this.gridColumn2,
																							 this.gridColumn3});
			this.gridView1.GridControl = this.gridControl_Mgmt;
			this.gridView1.Name = "gridView1";
			this.gridView1.OptionsCustomization.AllowFilter = false;
			this.gridView1.OptionsView.ShowFilterPanel = false;
			this.gridView1.OptionsView.ShowGroupPanel = false;
			this.gridView1.FocusedRowChanged += new DevExpress.XtraGrid.Views.Base.FocusedRowChangedEventHandler(this.gridView1_FocusedRowChanged);
			// 
			// gridColumn1
			// 
			this.gridColumn1.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn1.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn1.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn1.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn1.Caption = "学号";
			this.gridColumn1.FieldName = "info_stuNumber";
			this.gridColumn1.Name = "gridColumn1";
			this.gridColumn1.OptionsColumn.AllowEdit = false;
			this.gridColumn1.OptionsColumn.AllowFocus = false;
			this.gridColumn1.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn1.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn1.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn1.OptionsColumn.AllowMove = false;
			this.gridColumn1.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn1.OptionsColumn.FixedWidth = true;
			this.gridColumn1.OptionsColumn.ReadOnly = true;
			this.gridColumn1.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn1.Visible = true;
			this.gridColumn1.VisibleIndex = 0;
			// 
			// gridColumn2
			// 
			this.gridColumn2.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn2.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn2.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn2.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn2.Caption = "姓名";
			this.gridColumn2.FieldName = "info_stuName";
			this.gridColumn2.Name = "gridColumn2";
			this.gridColumn2.OptionsColumn.AllowEdit = false;
			this.gridColumn2.OptionsColumn.AllowFocus = false;
			this.gridColumn2.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn2.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn2.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn2.OptionsColumn.AllowMove = false;
			this.gridColumn2.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn2.OptionsColumn.FixedWidth = true;
			this.gridColumn2.OptionsColumn.ReadOnly = true;
			this.gridColumn2.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn2.Visible = true;
			this.gridColumn2.VisibleIndex = 1;
			// 
			// gridColumn3
			// 
			this.gridColumn3.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn3.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn3.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn3.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn3.Caption = "班级";
			this.gridColumn3.FieldName = "info_className";
			this.gridColumn3.Name = "gridColumn3";
			this.gridColumn3.OptionsColumn.AllowEdit = false;
			this.gridColumn3.OptionsColumn.AllowFocus = false;
			this.gridColumn3.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn3.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn3.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn3.OptionsColumn.AllowMove = false;
			this.gridColumn3.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn3.OptionsColumn.FixedWidth = true;
			this.gridColumn3.OptionsColumn.ReadOnly = true;
			this.gridColumn3.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn3.Visible = true;
			this.gridColumn3.VisibleIndex = 2;
			// 
			// groupControl_MgmtClass
			// 
			this.groupControl_MgmtClass.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.groupControl_MgmtClass.AppearanceCaption.Options.UseFont = true;
			this.groupControl_MgmtClass.Controls.Add(this.dateEdit_MgmtDate);
			this.groupControl_MgmtClass.Controls.Add(this.notePanel_MgmtDate);
			this.groupControl_MgmtClass.Controls.Add(this.dataNavigator_Mgmt);
			this.groupControl_MgmtClass.Controls.Add(this.comboBoxEdit_MgmtClass);
			this.groupControl_MgmtClass.Controls.Add(this.notePanel_MgmtClass);
			this.groupControl_MgmtClass.Controls.Add(this.comboBoxEdit_MgmtGrade);
			this.groupControl_MgmtClass.Controls.Add(this.notePanel_MgmtGrade);
			this.groupControl_MgmtClass.Controls.Add(this.notePanel_MgmtQuery);
			this.groupControl_MgmtClass.Dock = System.Windows.Forms.DockStyle.Top;
			this.groupControl_MgmtClass.Location = new System.Drawing.Point(0, 0);
			this.groupControl_MgmtClass.Name = "groupControl_MgmtClass";
			this.groupControl_MgmtClass.Size = new System.Drawing.Size(202, 192);
			this.groupControl_MgmtClass.TabIndex = 0;
			this.groupControl_MgmtClass.Text = "我的班级";
			// 
			// dateEdit_MgmtDate
			// 
			this.dateEdit_MgmtDate.EditValue = new System.DateTime(2005, 1, 24, 0, 0, 0, 0);
			this.dateEdit_MgmtDate.Location = new System.Drawing.Point(96, 120);
			this.dateEdit_MgmtDate.Name = "dateEdit_MgmtDate";
			// 
			// dateEdit_MgmtDate.Properties
			// 
			this.dateEdit_MgmtDate.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																													  new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.dateEdit_MgmtDate.Properties.DisplayFormat.FormatString = "yyyy年M月";
			this.dateEdit_MgmtDate.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
			this.dateEdit_MgmtDate.Properties.Mask.EditMask = "d";
			this.dateEdit_MgmtDate.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.DateTime;
			this.dateEdit_MgmtDate.Size = new System.Drawing.Size(88, 23);
			this.dateEdit_MgmtDate.TabIndex = 20;
			// 
			// notePanel_MgmtDate
			// 
			this.notePanel_MgmtDate.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_MgmtDate.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_MgmtDate.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_MgmtDate.ForeColor = System.Drawing.Color.Black;
			this.notePanel_MgmtDate.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_MgmtDate.Location = new System.Drawing.Point(16, 120);
			this.notePanel_MgmtDate.MaxRows = 5;
			this.notePanel_MgmtDate.Name = "notePanel_MgmtDate";
			this.notePanel_MgmtDate.ParentAutoHeight = true;
			this.notePanel_MgmtDate.Size = new System.Drawing.Size(64, 22);
			this.notePanel_MgmtDate.TabIndex = 19;
			this.notePanel_MgmtDate.TabStop = false;
			this.notePanel_MgmtDate.Text = "日  期:";
			// 
			// dataNavigator_Mgmt
			// 
			this.dataNavigator_Mgmt.Buttons.Append.Visible = false;
			this.dataNavigator_Mgmt.Buttons.CancelEdit.Visible = false;
			this.dataNavigator_Mgmt.Buttons.EndEdit.Visible = false;
			this.dataNavigator_Mgmt.Buttons.First.Hint = "第一条记录";
			this.dataNavigator_Mgmt.Buttons.Last.Hint = "最后一条记录";
			this.dataNavigator_Mgmt.Buttons.Next.Hint = "下一条记录";
			this.dataNavigator_Mgmt.Buttons.NextPage.Visible = false;
			this.dataNavigator_Mgmt.Buttons.Prev.Hint = "上一条";
			this.dataNavigator_Mgmt.Buttons.PrevPage.Visible = false;
			this.dataNavigator_Mgmt.Buttons.Remove.Visible = false;
			this.dataNavigator_Mgmt.Dock = System.Windows.Forms.DockStyle.Bottom;
			this.dataNavigator_Mgmt.Location = new System.Drawing.Point(3, 157);
			this.dataNavigator_Mgmt.Name = "dataNavigator_Mgmt";
			this.dataNavigator_Mgmt.ShowToolTips = true;
			this.dataNavigator_Mgmt.Size = new System.Drawing.Size(196, 32);
			this.dataNavigator_Mgmt.TabIndex = 18;
			this.dataNavigator_Mgmt.Text = "dataNavigator1";
			this.dataNavigator_Mgmt.TextLocation = DevExpress.XtraEditors.NavigatorButtonsTextLocation.End;
			// 
			// comboBoxEdit_MgmtClass
			// 
			this.comboBoxEdit_MgmtClass.EditValue = "全部";
			this.comboBoxEdit_MgmtClass.Location = new System.Drawing.Point(96, 88);
			this.comboBoxEdit_MgmtClass.Name = "comboBoxEdit_MgmtClass";
			// 
			// comboBoxEdit_MgmtClass.Properties
			// 
			this.comboBoxEdit_MgmtClass.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																														   new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.comboBoxEdit_MgmtClass.Properties.Items.AddRange(new object[] {
																				   "全部"});
			this.comboBoxEdit_MgmtClass.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
			this.comboBoxEdit_MgmtClass.Size = new System.Drawing.Size(88, 23);
			this.comboBoxEdit_MgmtClass.TabIndex = 17;
			this.comboBoxEdit_MgmtClass.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit_MgmtClass_SelectedIndexChanged);
			// 
			// notePanel_MgmtClass
			// 
			this.notePanel_MgmtClass.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_MgmtClass.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_MgmtClass.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_MgmtClass.ForeColor = System.Drawing.Color.Black;
			this.notePanel_MgmtClass.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_MgmtClass.Location = new System.Drawing.Point(16, 88);
			this.notePanel_MgmtClass.MaxRows = 5;
			this.notePanel_MgmtClass.Name = "notePanel_MgmtClass";
			this.notePanel_MgmtClass.ParentAutoHeight = true;
			this.notePanel_MgmtClass.Size = new System.Drawing.Size(64, 22);
			this.notePanel_MgmtClass.TabIndex = 16;
			this.notePanel_MgmtClass.TabStop = false;
			this.notePanel_MgmtClass.Text = "班  级:";
			// 
			// comboBoxEdit_MgmtGrade
			// 
			this.comboBoxEdit_MgmtGrade.EditValue = "全部";
			this.comboBoxEdit_MgmtGrade.Location = new System.Drawing.Point(96, 56);
			this.comboBoxEdit_MgmtGrade.Name = "comboBoxEdit_MgmtGrade";
			// 
			// comboBoxEdit_MgmtGrade.Properties
			// 
			this.comboBoxEdit_MgmtGrade.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																														   new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.comboBoxEdit_MgmtGrade.Properties.Items.AddRange(new object[] {
																				   "全部"});
			this.comboBoxEdit_MgmtGrade.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
			this.comboBoxEdit_MgmtGrade.Size = new System.Drawing.Size(88, 23);
			this.comboBoxEdit_MgmtGrade.TabIndex = 15;
			this.comboBoxEdit_MgmtGrade.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit_MgmtGrade_SelectedIndexChanged);
			// 
			// notePanel_MgmtGrade
			// 
			this.notePanel_MgmtGrade.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_MgmtGrade.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_MgmtGrade.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_MgmtGrade.ForeColor = System.Drawing.Color.Black;
			this.notePanel_MgmtGrade.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_MgmtGrade.Location = new System.Drawing.Point(16, 56);
			this.notePanel_MgmtGrade.MaxRows = 5;
			this.notePanel_MgmtGrade.Name = "notePanel_MgmtGrade";
			this.notePanel_MgmtGrade.ParentAutoHeight = true;
			this.notePanel_MgmtGrade.Size = new System.Drawing.Size(64, 22);
			this.notePanel_MgmtGrade.TabIndex = 14;
			this.notePanel_MgmtGrade.TabStop = false;
			this.notePanel_MgmtGrade.Text = "年  级:";
			// 
			// notePanel_MgmtQuery
			// 
			this.notePanel_MgmtQuery.BackColor = System.Drawing.Color.LightGoldenrodYellow;
			this.notePanel_MgmtQuery.Dock = System.Windows.Forms.DockStyle.Top;
			this.notePanel_MgmtQuery.ForeColor = System.Drawing.Color.OrangeRed;
			this.notePanel_MgmtQuery.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_MgmtQuery.Location = new System.Drawing.Point(3, 18);
			this.notePanel_MgmtQuery.MaxRows = 5;
			this.notePanel_MgmtQuery.Name = "notePanel_MgmtQuery";
			this.notePanel_MgmtQuery.ParentAutoHeight = true;
			this.notePanel_MgmtQuery.Size = new System.Drawing.Size(196, 23);
			this.notePanel_MgmtQuery.TabIndex = 7;
			this.notePanel_MgmtQuery.TabStop = false;
			this.notePanel_MgmtQuery.Text = "您需要查询哪个班级?";
			// 
			// groupControl_VisitInfoInput
			// 
			this.groupControl_VisitInfoInput.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.groupControl_VisitInfoInput.AppearanceCaption.Options.UseFont = true;
			this.groupControl_VisitInfoInput.Controls.Add(this.memoEdit_MgmtAbsRemark);
			this.groupControl_VisitInfoInput.Controls.Add(this.notePanel_MgmtVisState);
			this.groupControl_VisitInfoInput.Controls.Add(this.notePanel_MgmtAbsReason);
			this.groupControl_VisitInfoInput.Controls.Add(this.comboBoxEdit_MgmtVisState);
			this.groupControl_VisitInfoInput.Controls.Add(this.notePanel_MgmtVisDate);
			this.groupControl_VisitInfoInput.Controls.Add(this.dateEdit_MgmtVisDate);
			this.groupControl_VisitInfoInput.Controls.Add(this.comboBoxEdit_MgmtAbsReason);
			this.groupControl_VisitInfoInput.Dock = System.Windows.Forms.DockStyle.Top;
			this.groupControl_VisitInfoInput.Location = new System.Drawing.Point(0, 248);
			this.groupControl_VisitInfoInput.Name = "groupControl_VisitInfoInput";
			this.groupControl_VisitInfoInput.Size = new System.Drawing.Size(550, 160);
			this.groupControl_VisitInfoInput.TabIndex = 16;
			this.groupControl_VisitInfoInput.Text = "家访信息录入";
			// 
			// memoEdit_MgmtAbsRemark
			// 
			this.memoEdit_MgmtAbsRemark.EditValue = "";
			this.memoEdit_MgmtAbsRemark.Location = new System.Drawing.Point(216, 32);
			this.memoEdit_MgmtAbsRemark.Name = "memoEdit_MgmtAbsRemark";
			this.memoEdit_MgmtAbsRemark.Size = new System.Drawing.Size(320, 104);
			this.memoEdit_MgmtAbsRemark.TabIndex = 108;
			// 
			// notePanel_MgmtVisState
			// 
			this.notePanel_MgmtVisState.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_MgmtVisState.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_MgmtVisState.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_MgmtVisState.ForeColor = System.Drawing.Color.Black;
			this.notePanel_MgmtVisState.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_MgmtVisState.Location = new System.Drawing.Point(24, 72);
			this.notePanel_MgmtVisState.MaxRows = 5;
			this.notePanel_MgmtVisState.Name = "notePanel_MgmtVisState";
			this.notePanel_MgmtVisState.ParentAutoHeight = true;
			this.notePanel_MgmtVisState.Size = new System.Drawing.Size(80, 22);
			this.notePanel_MgmtVisState.TabIndex = 104;
			this.notePanel_MgmtVisState.TabStop = false;
			this.notePanel_MgmtVisState.Text = "访问方式:";
			// 
			// notePanel_MgmtAbsReason
			// 
			this.notePanel_MgmtAbsReason.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_MgmtAbsReason.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_MgmtAbsReason.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_MgmtAbsReason.ForeColor = System.Drawing.Color.Black;
			this.notePanel_MgmtAbsReason.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_MgmtAbsReason.Location = new System.Drawing.Point(24, 32);
			this.notePanel_MgmtAbsReason.MaxRows = 5;
			this.notePanel_MgmtAbsReason.Name = "notePanel_MgmtAbsReason";
			this.notePanel_MgmtAbsReason.ParentAutoHeight = true;
			this.notePanel_MgmtAbsReason.Size = new System.Drawing.Size(80, 22);
			this.notePanel_MgmtAbsReason.TabIndex = 102;
			this.notePanel_MgmtAbsReason.TabStop = false;
			this.notePanel_MgmtAbsReason.Text = "缺席原因:";
			// 
			// comboBoxEdit_MgmtVisState
			// 
			this.comboBoxEdit_MgmtVisState.EditValue = "上门";
			this.comboBoxEdit_MgmtVisState.Location = new System.Drawing.Point(120, 72);
			this.comboBoxEdit_MgmtVisState.Name = "comboBoxEdit_MgmtVisState";
			// 
			// comboBoxEdit_MgmtVisState.Properties
			// 
			this.comboBoxEdit_MgmtVisState.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																															  new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.comboBoxEdit_MgmtVisState.Properties.Items.AddRange(new object[] {
																					  "上门",
																					  "电话"});
			this.comboBoxEdit_MgmtVisState.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
			this.comboBoxEdit_MgmtVisState.Size = new System.Drawing.Size(80, 23);
			this.comboBoxEdit_MgmtVisState.TabIndex = 105;
			// 
			// notePanel_MgmtVisDate
			// 
			this.notePanel_MgmtVisDate.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_MgmtVisDate.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_MgmtVisDate.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_MgmtVisDate.ForeColor = System.Drawing.Color.Black;
			this.notePanel_MgmtVisDate.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.ForwardDiagonal;
			this.notePanel_MgmtVisDate.Location = new System.Drawing.Point(24, 112);
			this.notePanel_MgmtVisDate.MaxRows = 5;
			this.notePanel_MgmtVisDate.Name = "notePanel_MgmtVisDate";
			this.notePanel_MgmtVisDate.ParentAutoHeight = true;
			this.notePanel_MgmtVisDate.Size = new System.Drawing.Size(80, 22);
			this.notePanel_MgmtVisDate.TabIndex = 106;
			this.notePanel_MgmtVisDate.TabStop = false;
			this.notePanel_MgmtVisDate.Text = "访问时间:";
			// 
			// dateEdit_MgmtVisDate
			// 
			this.dateEdit_MgmtVisDate.EditValue = new System.DateTime(2005, 4, 11, 0, 0, 0, 0);
			this.dateEdit_MgmtVisDate.Location = new System.Drawing.Point(120, 112);
			this.dateEdit_MgmtVisDate.Name = "dateEdit_MgmtVisDate";
			// 
			// dateEdit_MgmtVisDate.Properties
			// 
			this.dateEdit_MgmtVisDate.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																														 new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.dateEdit_MgmtVisDate.Properties.Mask.EditMask = "d";
			this.dateEdit_MgmtVisDate.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.DateTime;
			this.dateEdit_MgmtVisDate.Size = new System.Drawing.Size(80, 23);
			this.dateEdit_MgmtVisDate.TabIndex = 107;
			// 
			// comboBoxEdit_MgmtAbsReason
			// 
			this.comboBoxEdit_MgmtAbsReason.EditValue = "患病";
			this.comboBoxEdit_MgmtAbsReason.Location = new System.Drawing.Point(120, 32);
			this.comboBoxEdit_MgmtAbsReason.Name = "comboBoxEdit_MgmtAbsReason";
			// 
			// comboBoxEdit_MgmtAbsReason.Properties
			// 
			this.comboBoxEdit_MgmtAbsReason.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																															   new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.comboBoxEdit_MgmtAbsReason.Properties.Items.AddRange(new object[] {
																					   "患病",
																					   "家中有人",
																					   "走亲戚",
																					   "其他"});
			this.comboBoxEdit_MgmtAbsReason.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
			this.comboBoxEdit_MgmtAbsReason.Size = new System.Drawing.Size(80, 23);
			this.comboBoxEdit_MgmtAbsReason.TabIndex = 103;
			// 
			// groupControl_MgmtParentLink
			// 
			this.groupControl_MgmtParentLink.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.groupControl_MgmtParentLink.AppearanceCaption.Options.UseFont = true;
			this.groupControl_MgmtParentLink.Controls.Add(this.textEdit_MgmtMOWorkingAddr);
			this.groupControl_MgmtParentLink.Controls.Add(this.notePanel_MgmtMOWorkingAddr);
			this.groupControl_MgmtParentLink.Controls.Add(this.textEdit_MgmtMOPhone);
			this.groupControl_MgmtParentLink.Controls.Add(this.textEdit_MgmtMOName);
			this.groupControl_MgmtParentLink.Controls.Add(this.notePanel_MgmtMOPhone);
			this.groupControl_MgmtParentLink.Controls.Add(this.notePanel_MgmtMOName);
			this.groupControl_MgmtParentLink.Controls.Add(this.textEdit_MgmtFAWorkingAddr);
			this.groupControl_MgmtParentLink.Controls.Add(this.notePanel_MgmtFAWorkingAddr);
			this.groupControl_MgmtParentLink.Controls.Add(this.textEdit_MgmtFAPhone);
			this.groupControl_MgmtParentLink.Controls.Add(this.notePanel_MgmtFAPhone);
			this.groupControl_MgmtParentLink.Controls.Add(this.textEdit_MgmtFAName);
			this.groupControl_MgmtParentLink.Controls.Add(this.notePanel_MgmtFAName);
			this.groupControl_MgmtParentLink.Controls.Add(this.notePanel_MgmtFamilyAddr);
			this.groupControl_MgmtParentLink.Controls.Add(this.textEdit_MgmtFamilyAddr);
			this.groupControl_MgmtParentLink.Dock = System.Windows.Forms.DockStyle.Top;
			this.groupControl_MgmtParentLink.Location = new System.Drawing.Point(0, 40);
			this.groupControl_MgmtParentLink.Name = "groupControl_MgmtParentLink";
			this.groupControl_MgmtParentLink.Size = new System.Drawing.Size(550, 208);
			this.groupControl_MgmtParentLink.TabIndex = 15;
			this.groupControl_MgmtParentLink.Text = "幼儿家长联系方式";
			// 
			// textEdit_MgmtMOWorkingAddr
			// 
			this.textEdit_MgmtMOWorkingAddr.EditValue = "";
			this.textEdit_MgmtMOWorkingAddr.Location = new System.Drawing.Point(104, 128);
			this.textEdit_MgmtMOWorkingAddr.Name = "textEdit_MgmtMOWorkingAddr";
			this.textEdit_MgmtMOWorkingAddr.Size = new System.Drawing.Size(432, 23);
			this.textEdit_MgmtMOWorkingAddr.TabIndex = 108;
			// 
			// notePanel_MgmtMOWorkingAddr
			// 
			this.notePanel_MgmtMOWorkingAddr.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_MgmtMOWorkingAddr.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_MgmtMOWorkingAddr.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_MgmtMOWorkingAddr.ForeColor = System.Drawing.Color.Black;
			this.notePanel_MgmtMOWorkingAddr.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_MgmtMOWorkingAddr.Location = new System.Drawing.Point(16, 128);
			this.notePanel_MgmtMOWorkingAddr.MaxRows = 5;
			this.notePanel_MgmtMOWorkingAddr.Name = "notePanel_MgmtMOWorkingAddr";
			this.notePanel_MgmtMOWorkingAddr.ParentAutoHeight = true;
			this.notePanel_MgmtMOWorkingAddr.Size = new System.Drawing.Size(80, 22);
			this.notePanel_MgmtMOWorkingAddr.TabIndex = 107;
			this.notePanel_MgmtMOWorkingAddr.TabStop = false;
			this.notePanel_MgmtMOWorkingAddr.Text = "工作单位:";
			// 
			// textEdit_MgmtMOPhone
			// 
			this.textEdit_MgmtMOPhone.EditValue = "";
			this.textEdit_MgmtMOPhone.Location = new System.Drawing.Point(392, 96);
			this.textEdit_MgmtMOPhone.Name = "textEdit_MgmtMOPhone";
			this.textEdit_MgmtMOPhone.Size = new System.Drawing.Size(144, 23);
			this.textEdit_MgmtMOPhone.TabIndex = 106;
			// 
			// textEdit_MgmtMOName
			// 
			this.textEdit_MgmtMOName.EditValue = "";
			this.textEdit_MgmtMOName.Location = new System.Drawing.Point(104, 96);
			this.textEdit_MgmtMOName.Name = "textEdit_MgmtMOName";
			this.textEdit_MgmtMOName.Size = new System.Drawing.Size(184, 23);
			this.textEdit_MgmtMOName.TabIndex = 105;
			// 
			// notePanel_MgmtMOPhone
			// 
			this.notePanel_MgmtMOPhone.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_MgmtMOPhone.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_MgmtMOPhone.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_MgmtMOPhone.ForeColor = System.Drawing.Color.Black;
			this.notePanel_MgmtMOPhone.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_MgmtMOPhone.Location = new System.Drawing.Point(304, 96);
			this.notePanel_MgmtMOPhone.MaxRows = 5;
			this.notePanel_MgmtMOPhone.Name = "notePanel_MgmtMOPhone";
			this.notePanel_MgmtMOPhone.ParentAutoHeight = true;
			this.notePanel_MgmtMOPhone.Size = new System.Drawing.Size(80, 22);
			this.notePanel_MgmtMOPhone.TabIndex = 104;
			this.notePanel_MgmtMOPhone.TabStop = false;
			this.notePanel_MgmtMOPhone.Text = "联系电话:";
			// 
			// notePanel_MgmtMOName
			// 
			this.notePanel_MgmtMOName.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_MgmtMOName.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_MgmtMOName.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_MgmtMOName.ForeColor = System.Drawing.Color.Black;
			this.notePanel_MgmtMOName.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_MgmtMOName.Location = new System.Drawing.Point(16, 96);
			this.notePanel_MgmtMOName.MaxRows = 5;
			this.notePanel_MgmtMOName.Name = "notePanel_MgmtMOName";
			this.notePanel_MgmtMOName.ParentAutoHeight = true;
			this.notePanel_MgmtMOName.Size = new System.Drawing.Size(80, 22);
			this.notePanel_MgmtMOName.TabIndex = 103;
			this.notePanel_MgmtMOName.TabStop = false;
			this.notePanel_MgmtMOName.Text = "母亲姓名:";
			// 
			// textEdit_MgmtFAWorkingAddr
			// 
			this.textEdit_MgmtFAWorkingAddr.EditValue = "";
			this.textEdit_MgmtFAWorkingAddr.Location = new System.Drawing.Point(104, 64);
			this.textEdit_MgmtFAWorkingAddr.Name = "textEdit_MgmtFAWorkingAddr";
			this.textEdit_MgmtFAWorkingAddr.Size = new System.Drawing.Size(432, 23);
			this.textEdit_MgmtFAWorkingAddr.TabIndex = 102;
			// 
			// notePanel_MgmtFAWorkingAddr
			// 
			this.notePanel_MgmtFAWorkingAddr.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_MgmtFAWorkingAddr.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_MgmtFAWorkingAddr.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_MgmtFAWorkingAddr.ForeColor = System.Drawing.Color.Black;
			this.notePanel_MgmtFAWorkingAddr.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_MgmtFAWorkingAddr.Location = new System.Drawing.Point(16, 64);
			this.notePanel_MgmtFAWorkingAddr.MaxRows = 5;
			this.notePanel_MgmtFAWorkingAddr.Name = "notePanel_MgmtFAWorkingAddr";
			this.notePanel_MgmtFAWorkingAddr.ParentAutoHeight = true;
			this.notePanel_MgmtFAWorkingAddr.Size = new System.Drawing.Size(80, 22);
			this.notePanel_MgmtFAWorkingAddr.TabIndex = 101;
			this.notePanel_MgmtFAWorkingAddr.TabStop = false;
			this.notePanel_MgmtFAWorkingAddr.Text = "工作单位:";
			// 
			// textEdit_MgmtFAPhone
			// 
			this.textEdit_MgmtFAPhone.EditValue = "";
			this.textEdit_MgmtFAPhone.Location = new System.Drawing.Point(392, 32);
			this.textEdit_MgmtFAPhone.Name = "textEdit_MgmtFAPhone";
			this.textEdit_MgmtFAPhone.Size = new System.Drawing.Size(144, 23);
			this.textEdit_MgmtFAPhone.TabIndex = 100;
			// 
			// notePanel_MgmtFAPhone
			// 
			this.notePanel_MgmtFAPhone.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_MgmtFAPhone.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_MgmtFAPhone.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_MgmtFAPhone.ForeColor = System.Drawing.Color.Black;
			this.notePanel_MgmtFAPhone.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_MgmtFAPhone.Location = new System.Drawing.Point(304, 32);
			this.notePanel_MgmtFAPhone.MaxRows = 5;
			this.notePanel_MgmtFAPhone.Name = "notePanel_MgmtFAPhone";
			this.notePanel_MgmtFAPhone.ParentAutoHeight = true;
			this.notePanel_MgmtFAPhone.Size = new System.Drawing.Size(80, 22);
			this.notePanel_MgmtFAPhone.TabIndex = 99;
			this.notePanel_MgmtFAPhone.TabStop = false;
			this.notePanel_MgmtFAPhone.Text = "联系电话:";
			// 
			// textEdit_MgmtFAName
			// 
			this.textEdit_MgmtFAName.EditValue = "";
			this.textEdit_MgmtFAName.Location = new System.Drawing.Point(104, 32);
			this.textEdit_MgmtFAName.Name = "textEdit_MgmtFAName";
			this.textEdit_MgmtFAName.Size = new System.Drawing.Size(184, 23);
			this.textEdit_MgmtFAName.TabIndex = 98;
			// 
			// notePanel_MgmtFAName
			// 
			this.notePanel_MgmtFAName.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_MgmtFAName.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_MgmtFAName.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_MgmtFAName.ForeColor = System.Drawing.Color.Black;
			this.notePanel_MgmtFAName.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_MgmtFAName.Location = new System.Drawing.Point(16, 32);
			this.notePanel_MgmtFAName.MaxRows = 5;
			this.notePanel_MgmtFAName.Name = "notePanel_MgmtFAName";
			this.notePanel_MgmtFAName.ParentAutoHeight = true;
			this.notePanel_MgmtFAName.Size = new System.Drawing.Size(80, 22);
			this.notePanel_MgmtFAName.TabIndex = 97;
			this.notePanel_MgmtFAName.TabStop = false;
			this.notePanel_MgmtFAName.Text = "父亲姓名:";
			// 
			// notePanel_MgmtFamilyAddr
			// 
			this.notePanel_MgmtFamilyAddr.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_MgmtFamilyAddr.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_MgmtFamilyAddr.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_MgmtFamilyAddr.ForeColor = System.Drawing.Color.Black;
			this.notePanel_MgmtFamilyAddr.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_MgmtFamilyAddr.Location = new System.Drawing.Point(16, 160);
			this.notePanel_MgmtFamilyAddr.MaxRows = 5;
			this.notePanel_MgmtFamilyAddr.Name = "notePanel_MgmtFamilyAddr";
			this.notePanel_MgmtFamilyAddr.ParentAutoHeight = true;
			this.notePanel_MgmtFamilyAddr.Size = new System.Drawing.Size(80, 22);
			this.notePanel_MgmtFamilyAddr.TabIndex = 95;
			this.notePanel_MgmtFamilyAddr.TabStop = false;
			this.notePanel_MgmtFamilyAddr.Text = "家庭地址:";
			// 
			// textEdit_MgmtFamilyAddr
			// 
			this.textEdit_MgmtFamilyAddr.EditValue = "";
			this.textEdit_MgmtFamilyAddr.Location = new System.Drawing.Point(104, 160);
			this.textEdit_MgmtFamilyAddr.Name = "textEdit_MgmtFamilyAddr";
			this.textEdit_MgmtFamilyAddr.Size = new System.Drawing.Size(432, 23);
			this.textEdit_MgmtFamilyAddr.TabIndex = 96;
			// 
			// panelControl1
			// 
			this.panelControl1.Controls.Add(this.simpleButton_Mgmt2DaysAbs);
			this.panelControl1.Controls.Add(this.simpleButton_MgmtSave);
			this.panelControl1.Dock = System.Windows.Forms.DockStyle.Top;
			this.panelControl1.Location = new System.Drawing.Point(0, 0);
			this.panelControl1.Name = "panelControl1";
			this.panelControl1.Size = new System.Drawing.Size(550, 40);
			this.panelControl1.TabIndex = 14;
			this.panelControl1.Text = "panelControl1";
			// 
			// simpleButton_Mgmt2DaysAbs
			// 
			this.simpleButton_Mgmt2DaysAbs.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.simpleButton_Mgmt2DaysAbs.Appearance.ForeColor = System.Drawing.Color.DarkMagenta;
			this.simpleButton_Mgmt2DaysAbs.Appearance.Options.UseFont = true;
			this.simpleButton_Mgmt2DaysAbs.Appearance.Options.UseForeColor = true;
			this.simpleButton_Mgmt2DaysAbs.Location = new System.Drawing.Point(8, 8);
			this.simpleButton_Mgmt2DaysAbs.Name = "simpleButton_Mgmt2DaysAbs";
			this.simpleButton_Mgmt2DaysAbs.Size = new System.Drawing.Size(72, 26);
			this.simpleButton_Mgmt2DaysAbs.TabIndex = 8;
			this.simpleButton_Mgmt2DaysAbs.Tag = 4;
			this.simpleButton_Mgmt2DaysAbs.Text = "检  索";
			this.simpleButton_Mgmt2DaysAbs.Click += new System.EventHandler(this.simpleButton_Mgmt2DaysAbs_Click);
			// 
			// simpleButton_MgmtSave
			// 
			this.simpleButton_MgmtSave.Appearance.ForeColor = System.Drawing.Color.DarkMagenta;
			this.simpleButton_MgmtSave.Appearance.Options.UseForeColor = true;
			this.simpleButton_MgmtSave.Location = new System.Drawing.Point(88, 8);
			this.simpleButton_MgmtSave.Name = "simpleButton_MgmtSave";
			this.simpleButton_MgmtSave.Size = new System.Drawing.Size(72, 26);
			this.simpleButton_MgmtSave.TabIndex = 13;
			this.simpleButton_MgmtSave.Text = "保  存";
			this.simpleButton_MgmtSave.Click += new System.EventHandler(this.simpleButton_MgmtSave_Click);
			// 
			// notePanel_WelcomePanel
			// 
			this.notePanel_WelcomePanel.BackColor = System.Drawing.Color.LightGoldenrodYellow;
			this.notePanel_WelcomePanel.Dock = System.Windows.Forms.DockStyle.Top;
			this.notePanel_WelcomePanel.ForeColor = System.Drawing.Color.OrangeRed;
			this.notePanel_WelcomePanel.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_WelcomePanel.Location = new System.Drawing.Point(0, 0);
			this.notePanel_WelcomePanel.MaxRows = 5;
			this.notePanel_WelcomePanel.Name = "notePanel_WelcomePanel";
			this.notePanel_WelcomePanel.ParentAutoHeight = true;
			this.notePanel_WelcomePanel.Size = new System.Drawing.Size(768, 23);
			this.notePanel_WelcomePanel.TabIndex = 9;
			this.notePanel_WelcomePanel.TabStop = false;
			this.notePanel_WelcomePanel.Text = "本月连续两天幼儿缺席检索与家访信息录入";
			// 
			// xtraTabPage_InfoQuery
			// 
			this.xtraTabPage_InfoQuery.Appearance.PageClient.BackColor = System.Drawing.Color.WhiteSmoke;
			this.xtraTabPage_InfoQuery.Appearance.PageClient.Options.UseBackColor = true;
			this.xtraTabPage_InfoQuery.Controls.Add(this.splitContainerControl1);
			this.xtraTabPage_InfoQuery.Controls.Add(this.notePanel_VisitInfoPanel);
			this.xtraTabPage_InfoQuery.Name = "xtraTabPage_InfoQuery";
			this.xtraTabPage_InfoQuery.Size = new System.Drawing.Size(768, 515);
			this.xtraTabPage_InfoQuery.Text = "幼儿家访信息检索";
			// 
			// splitContainerControl1
			// 
			this.splitContainerControl1.Dock = System.Windows.Forms.DockStyle.Fill;
			this.splitContainerControl1.Location = new System.Drawing.Point(0, 23);
			this.splitContainerControl1.Name = "splitContainerControl1";
			this.splitContainerControl1.Panel1.Controls.Add(this.groupControl_VisitInfoClass);
			this.splitContainerControl1.Panel1.Text = "splitContainerControl1_Panel1";
			this.splitContainerControl1.Panel2.Controls.Add(this.groupControl_VisitInfo);
			this.splitContainerControl1.Panel2.Controls.Add(this.gridControl_VisitInfo);
			this.splitContainerControl1.Panel2.Controls.Add(this.panelControl2);
			this.splitContainerControl1.Panel2.Text = "splitContainerControl1_Panel2";
			this.splitContainerControl1.Size = new System.Drawing.Size(768, 492);
			this.splitContainerControl1.SplitterPosition = 199;
			this.splitContainerControl1.TabIndex = 11;
			this.splitContainerControl1.Text = "splitContainerControl1";
			// 
			// groupControl_VisitInfoClass
			// 
			this.groupControl_VisitInfoClass.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.groupControl_VisitInfoClass.AppearanceCaption.Options.UseFont = true;
			this.groupControl_VisitInfoClass.Controls.Add(this.textEdit_VisitInfoNumber);
			this.groupControl_VisitInfoClass.Controls.Add(this.textEdit_VisitInfoName);
			this.groupControl_VisitInfoClass.Controls.Add(this.dateEdit_VisitInfoEndDate);
			this.groupControl_VisitInfoClass.Controls.Add(this.dateEdit_VisitInfoBegDate);
			this.groupControl_VisitInfoClass.Controls.Add(this.notePanel_VisitInfoEndDate);
			this.groupControl_VisitInfoClass.Controls.Add(this.notePanel_VisitInfoBegDate);
			this.groupControl_VisitInfoClass.Controls.Add(this.notePanel_VisitInfoNumber);
			this.groupControl_VisitInfoClass.Controls.Add(this.notePanel_VisistInfoName);
			this.groupControl_VisitInfoClass.Controls.Add(this.comboBoxEdit_VisitInfoClass);
			this.groupControl_VisitInfoClass.Controls.Add(this.notePanel_VisitInfoClass);
			this.groupControl_VisitInfoClass.Controls.Add(this.comboBoxEdit_VisitInfoGrade);
			this.groupControl_VisitInfoClass.Controls.Add(this.notePanel_VisitInfoGrade);
			this.groupControl_VisitInfoClass.Controls.Add(this.notePanel_VisitInfoQuery);
			this.groupControl_VisitInfoClass.Dock = System.Windows.Forms.DockStyle.Top;
			this.groupControl_VisitInfoClass.Location = new System.Drawing.Point(0, 0);
			this.groupControl_VisitInfoClass.Name = "groupControl_VisitInfoClass";
			this.groupControl_VisitInfoClass.Size = new System.Drawing.Size(193, 256);
			this.groupControl_VisitInfoClass.TabIndex = 0;
			this.groupControl_VisitInfoClass.Text = "我的班级";
			// 
			// textEdit_VisitInfoNumber
			// 
			this.textEdit_VisitInfoNumber.EditValue = "";
			this.textEdit_VisitInfoNumber.Location = new System.Drawing.Point(96, 152);
			this.textEdit_VisitInfoNumber.Name = "textEdit_VisitInfoNumber";
			this.textEdit_VisitInfoNumber.Size = new System.Drawing.Size(88, 23);
			this.textEdit_VisitInfoNumber.TabIndex = 30;
			// 
			// textEdit_VisitInfoName
			// 
			this.textEdit_VisitInfoName.EditValue = "";
			this.textEdit_VisitInfoName.Location = new System.Drawing.Point(96, 120);
			this.textEdit_VisitInfoName.Name = "textEdit_VisitInfoName";
			this.textEdit_VisitInfoName.Size = new System.Drawing.Size(88, 23);
			this.textEdit_VisitInfoName.TabIndex = 29;
			// 
			// dateEdit_VisitInfoEndDate
			// 
			this.dateEdit_VisitInfoEndDate.EditValue = new System.DateTime(2005, 5, 20, 0, 0, 0, 0);
			this.dateEdit_VisitInfoEndDate.Location = new System.Drawing.Point(104, 216);
			this.dateEdit_VisitInfoEndDate.Name = "dateEdit_VisitInfoEndDate";
			// 
			// dateEdit_VisitInfoEndDate.Properties
			// 
			this.dateEdit_VisitInfoEndDate.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																															  new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.dateEdit_VisitInfoEndDate.Properties.Mask.EditMask = "d";
			this.dateEdit_VisitInfoEndDate.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.DateTime;
			this.dateEdit_VisitInfoEndDate.Size = new System.Drawing.Size(80, 23);
			this.dateEdit_VisitInfoEndDate.TabIndex = 28;
			// 
			// dateEdit_VisitInfoBegDate
			// 
			this.dateEdit_VisitInfoBegDate.EditValue = new System.DateTime(2005, 5, 20, 0, 0, 0, 0);
			this.dateEdit_VisitInfoBegDate.Location = new System.Drawing.Point(104, 184);
			this.dateEdit_VisitInfoBegDate.Name = "dateEdit_VisitInfoBegDate";
			// 
			// dateEdit_VisitInfoBegDate.Properties
			// 
			this.dateEdit_VisitInfoBegDate.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																															  new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.dateEdit_VisitInfoBegDate.Properties.Mask.EditMask = "d";
			this.dateEdit_VisitInfoBegDate.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.DateTime;
			this.dateEdit_VisitInfoBegDate.Size = new System.Drawing.Size(80, 23);
			this.dateEdit_VisitInfoBegDate.TabIndex = 27;
			// 
			// notePanel_VisitInfoEndDate
			// 
			this.notePanel_VisitInfoEndDate.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_VisitInfoEndDate.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_VisitInfoEndDate.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_VisitInfoEndDate.ForeColor = System.Drawing.Color.Black;
			this.notePanel_VisitInfoEndDate.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_VisitInfoEndDate.Location = new System.Drawing.Point(16, 216);
			this.notePanel_VisitInfoEndDate.MaxRows = 5;
			this.notePanel_VisitInfoEndDate.Name = "notePanel_VisitInfoEndDate";
			this.notePanel_VisitInfoEndDate.ParentAutoHeight = true;
			this.notePanel_VisitInfoEndDate.Size = new System.Drawing.Size(80, 22);
			this.notePanel_VisitInfoEndDate.TabIndex = 26;
			this.notePanel_VisitInfoEndDate.TabStop = false;
			this.notePanel_VisitInfoEndDate.Text = "结束时间:";
			// 
			// notePanel_VisitInfoBegDate
			// 
			this.notePanel_VisitInfoBegDate.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_VisitInfoBegDate.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_VisitInfoBegDate.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_VisitInfoBegDate.ForeColor = System.Drawing.Color.Black;
			this.notePanel_VisitInfoBegDate.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_VisitInfoBegDate.Location = new System.Drawing.Point(16, 184);
			this.notePanel_VisitInfoBegDate.MaxRows = 5;
			this.notePanel_VisitInfoBegDate.Name = "notePanel_VisitInfoBegDate";
			this.notePanel_VisitInfoBegDate.ParentAutoHeight = true;
			this.notePanel_VisitInfoBegDate.Size = new System.Drawing.Size(80, 22);
			this.notePanel_VisitInfoBegDate.TabIndex = 25;
			this.notePanel_VisitInfoBegDate.TabStop = false;
			this.notePanel_VisitInfoBegDate.Text = "起始时间:";
			// 
			// notePanel_VisitInfoNumber
			// 
			this.notePanel_VisitInfoNumber.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_VisitInfoNumber.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_VisitInfoNumber.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_VisitInfoNumber.ForeColor = System.Drawing.Color.Black;
			this.notePanel_VisitInfoNumber.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_VisitInfoNumber.Location = new System.Drawing.Point(16, 152);
			this.notePanel_VisitInfoNumber.MaxRows = 5;
			this.notePanel_VisitInfoNumber.Name = "notePanel_VisitInfoNumber";
			this.notePanel_VisitInfoNumber.ParentAutoHeight = true;
			this.notePanel_VisitInfoNumber.Size = new System.Drawing.Size(64, 22);
			this.notePanel_VisitInfoNumber.TabIndex = 24;
			this.notePanel_VisitInfoNumber.TabStop = false;
			this.notePanel_VisitInfoNumber.Text = "学  号:";
			// 
			// notePanel_VisistInfoName
			// 
			this.notePanel_VisistInfoName.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_VisistInfoName.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_VisistInfoName.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_VisistInfoName.ForeColor = System.Drawing.Color.Black;
			this.notePanel_VisistInfoName.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_VisistInfoName.Location = new System.Drawing.Point(16, 120);
			this.notePanel_VisistInfoName.MaxRows = 5;
			this.notePanel_VisistInfoName.Name = "notePanel_VisistInfoName";
			this.notePanel_VisistInfoName.ParentAutoHeight = true;
			this.notePanel_VisistInfoName.Size = new System.Drawing.Size(64, 22);
			this.notePanel_VisistInfoName.TabIndex = 22;
			this.notePanel_VisistInfoName.TabStop = false;
			this.notePanel_VisistInfoName.Text = "姓  名:";
			// 
			// comboBoxEdit_VisitInfoClass
			// 
			this.comboBoxEdit_VisitInfoClass.EditValue = "全部";
			this.comboBoxEdit_VisitInfoClass.Location = new System.Drawing.Point(96, 88);
			this.comboBoxEdit_VisitInfoClass.Name = "comboBoxEdit_VisitInfoClass";
			// 
			// comboBoxEdit_VisitInfoClass.Properties
			// 
			this.comboBoxEdit_VisitInfoClass.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																																new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.comboBoxEdit_VisitInfoClass.Properties.Items.AddRange(new object[] {
																						"全部"});
			this.comboBoxEdit_VisitInfoClass.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
			this.comboBoxEdit_VisitInfoClass.Size = new System.Drawing.Size(88, 23);
			this.comboBoxEdit_VisitInfoClass.TabIndex = 21;
			this.comboBoxEdit_VisitInfoClass.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit_VisitInfoClass_SelectedIndexChanged);
			// 
			// notePanel_VisitInfoClass
			// 
			this.notePanel_VisitInfoClass.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_VisitInfoClass.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_VisitInfoClass.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_VisitInfoClass.ForeColor = System.Drawing.Color.Black;
			this.notePanel_VisitInfoClass.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_VisitInfoClass.Location = new System.Drawing.Point(16, 88);
			this.notePanel_VisitInfoClass.MaxRows = 5;
			this.notePanel_VisitInfoClass.Name = "notePanel_VisitInfoClass";
			this.notePanel_VisitInfoClass.ParentAutoHeight = true;
			this.notePanel_VisitInfoClass.Size = new System.Drawing.Size(64, 22);
			this.notePanel_VisitInfoClass.TabIndex = 20;
			this.notePanel_VisitInfoClass.TabStop = false;
			this.notePanel_VisitInfoClass.Text = "班  级:";
			// 
			// comboBoxEdit_VisitInfoGrade
			// 
			this.comboBoxEdit_VisitInfoGrade.EditValue = "全部";
			this.comboBoxEdit_VisitInfoGrade.Location = new System.Drawing.Point(96, 56);
			this.comboBoxEdit_VisitInfoGrade.Name = "comboBoxEdit_VisitInfoGrade";
			// 
			// comboBoxEdit_VisitInfoGrade.Properties
			// 
			this.comboBoxEdit_VisitInfoGrade.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																																new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.comboBoxEdit_VisitInfoGrade.Properties.Items.AddRange(new object[] {
																						"全部"});
			this.comboBoxEdit_VisitInfoGrade.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
			this.comboBoxEdit_VisitInfoGrade.Size = new System.Drawing.Size(88, 23);
			this.comboBoxEdit_VisitInfoGrade.TabIndex = 19;
			this.comboBoxEdit_VisitInfoGrade.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit_VisitInfoGrade_SelectedIndexChanged);
			// 
			// notePanel_VisitInfoGrade
			// 
			this.notePanel_VisitInfoGrade.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_VisitInfoGrade.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_VisitInfoGrade.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_VisitInfoGrade.ForeColor = System.Drawing.Color.Black;
			this.notePanel_VisitInfoGrade.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_VisitInfoGrade.Location = new System.Drawing.Point(16, 56);
			this.notePanel_VisitInfoGrade.MaxRows = 5;
			this.notePanel_VisitInfoGrade.Name = "notePanel_VisitInfoGrade";
			this.notePanel_VisitInfoGrade.ParentAutoHeight = true;
			this.notePanel_VisitInfoGrade.Size = new System.Drawing.Size(64, 22);
			this.notePanel_VisitInfoGrade.TabIndex = 18;
			this.notePanel_VisitInfoGrade.TabStop = false;
			this.notePanel_VisitInfoGrade.Text = "年  级:";
			// 
			// notePanel_VisitInfoQuery
			// 
			this.notePanel_VisitInfoQuery.BackColor = System.Drawing.Color.LightGoldenrodYellow;
			this.notePanel_VisitInfoQuery.Dock = System.Windows.Forms.DockStyle.Top;
			this.notePanel_VisitInfoQuery.ForeColor = System.Drawing.Color.OrangeRed;
			this.notePanel_VisitInfoQuery.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_VisitInfoQuery.Location = new System.Drawing.Point(3, 18);
			this.notePanel_VisitInfoQuery.MaxRows = 5;
			this.notePanel_VisitInfoQuery.Name = "notePanel_VisitInfoQuery";
			this.notePanel_VisitInfoQuery.ParentAutoHeight = true;
			this.notePanel_VisitInfoQuery.Size = new System.Drawing.Size(187, 23);
			this.notePanel_VisitInfoQuery.TabIndex = 11;
			this.notePanel_VisitInfoQuery.TabStop = false;
			this.notePanel_VisitInfoQuery.Text = "您要查找哪些小朋友?";
			// 
			// groupControl_VisitInfo
			// 
			this.groupControl_VisitInfo.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.groupControl_VisitInfo.AppearanceCaption.Options.UseFont = true;
			this.groupControl_VisitInfo.Controls.Add(this.memoEdit_VisInfoAbsRemark);
			this.groupControl_VisitInfo.Controls.Add(this.notePanel_VisInfoVisMode);
			this.groupControl_VisitInfo.Controls.Add(this.notePanel_VisInfoAbsReason);
			this.groupControl_VisitInfo.Controls.Add(this.comboBoxEdit_VisInfoVisMode);
			this.groupControl_VisitInfo.Controls.Add(this.notePanel_VisInfoVisDate);
			this.groupControl_VisitInfo.Controls.Add(this.dateEdit_VisInfoVisDate);
			this.groupControl_VisitInfo.Controls.Add(this.comboBoxEdit_VisInfoAbsReason);
			this.groupControl_VisitInfo.Dock = System.Windows.Forms.DockStyle.Top;
			this.groupControl_VisitInfo.Location = new System.Drawing.Point(0, 40);
			this.groupControl_VisitInfo.Name = "groupControl_VisitInfo";
			this.groupControl_VisitInfo.Size = new System.Drawing.Size(559, 168);
			this.groupControl_VisitInfo.TabIndex = 2;
			this.groupControl_VisitInfo.Text = "家访详细信息";
			this.groupControl_VisitInfo.Visible = false;
			// 
			// memoEdit_VisInfoAbsRemark
			// 
			this.memoEdit_VisInfoAbsRemark.EditValue = "";
			this.memoEdit_VisInfoAbsRemark.Location = new System.Drawing.Point(211, 32);
			this.memoEdit_VisInfoAbsRemark.Name = "memoEdit_VisInfoAbsRemark";
			this.memoEdit_VisInfoAbsRemark.Size = new System.Drawing.Size(320, 104);
			this.memoEdit_VisInfoAbsRemark.TabIndex = 115;
			// 
			// notePanel_VisInfoVisMode
			// 
			this.notePanel_VisInfoVisMode.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_VisInfoVisMode.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_VisInfoVisMode.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_VisInfoVisMode.ForeColor = System.Drawing.Color.Black;
			this.notePanel_VisInfoVisMode.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_VisInfoVisMode.Location = new System.Drawing.Point(19, 72);
			this.notePanel_VisInfoVisMode.MaxRows = 5;
			this.notePanel_VisInfoVisMode.Name = "notePanel_VisInfoVisMode";
			this.notePanel_VisInfoVisMode.ParentAutoHeight = true;
			this.notePanel_VisInfoVisMode.Size = new System.Drawing.Size(80, 22);
			this.notePanel_VisInfoVisMode.TabIndex = 111;
			this.notePanel_VisInfoVisMode.TabStop = false;
			this.notePanel_VisInfoVisMode.Text = "访问方式:";
			// 
			// notePanel_VisInfoAbsReason
			// 
			this.notePanel_VisInfoAbsReason.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_VisInfoAbsReason.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_VisInfoAbsReason.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_VisInfoAbsReason.ForeColor = System.Drawing.Color.Black;
			this.notePanel_VisInfoAbsReason.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_VisInfoAbsReason.Location = new System.Drawing.Point(19, 32);
			this.notePanel_VisInfoAbsReason.MaxRows = 5;
			this.notePanel_VisInfoAbsReason.Name = "notePanel_VisInfoAbsReason";
			this.notePanel_VisInfoAbsReason.ParentAutoHeight = true;
			this.notePanel_VisInfoAbsReason.Size = new System.Drawing.Size(80, 22);
			this.notePanel_VisInfoAbsReason.TabIndex = 109;
			this.notePanel_VisInfoAbsReason.TabStop = false;
			this.notePanel_VisInfoAbsReason.Text = "缺席原因:";
			// 
			// comboBoxEdit_VisInfoVisMode
			// 
			this.comboBoxEdit_VisInfoVisMode.EditValue = "上门";
			this.comboBoxEdit_VisInfoVisMode.Location = new System.Drawing.Point(115, 72);
			this.comboBoxEdit_VisInfoVisMode.Name = "comboBoxEdit_VisInfoVisMode";
			// 
			// comboBoxEdit_VisInfoVisMode.Properties
			// 
			this.comboBoxEdit_VisInfoVisMode.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																																new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.comboBoxEdit_VisInfoVisMode.Properties.Items.AddRange(new object[] {
																						"上门",
																						"电话"});
			this.comboBoxEdit_VisInfoVisMode.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
			this.comboBoxEdit_VisInfoVisMode.Size = new System.Drawing.Size(80, 23);
			this.comboBoxEdit_VisInfoVisMode.TabIndex = 112;
			// 
			// notePanel_VisInfoVisDate
			// 
			this.notePanel_VisInfoVisDate.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_VisInfoVisDate.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_VisInfoVisDate.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_VisInfoVisDate.ForeColor = System.Drawing.Color.Black;
			this.notePanel_VisInfoVisDate.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.ForwardDiagonal;
			this.notePanel_VisInfoVisDate.Location = new System.Drawing.Point(19, 112);
			this.notePanel_VisInfoVisDate.MaxRows = 5;
			this.notePanel_VisInfoVisDate.Name = "notePanel_VisInfoVisDate";
			this.notePanel_VisInfoVisDate.ParentAutoHeight = true;
			this.notePanel_VisInfoVisDate.Size = new System.Drawing.Size(80, 22);
			this.notePanel_VisInfoVisDate.TabIndex = 113;
			this.notePanel_VisInfoVisDate.TabStop = false;
			this.notePanel_VisInfoVisDate.Text = "访问时间:";
			// 
			// dateEdit_VisInfoVisDate
			// 
			this.dateEdit_VisInfoVisDate.EditValue = new System.DateTime(2005, 4, 11, 0, 0, 0, 0);
			this.dateEdit_VisInfoVisDate.Location = new System.Drawing.Point(115, 112);
			this.dateEdit_VisInfoVisDate.Name = "dateEdit_VisInfoVisDate";
			// 
			// dateEdit_VisInfoVisDate.Properties
			// 
			this.dateEdit_VisInfoVisDate.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																															new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.dateEdit_VisInfoVisDate.Properties.Mask.EditMask = "d";
			this.dateEdit_VisInfoVisDate.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.DateTime;
			this.dateEdit_VisInfoVisDate.Size = new System.Drawing.Size(80, 23);
			this.dateEdit_VisInfoVisDate.TabIndex = 114;
			// 
			// comboBoxEdit_VisInfoAbsReason
			// 
			this.comboBoxEdit_VisInfoAbsReason.EditValue = "患病";
			this.comboBoxEdit_VisInfoAbsReason.Location = new System.Drawing.Point(115, 32);
			this.comboBoxEdit_VisInfoAbsReason.Name = "comboBoxEdit_VisInfoAbsReason";
			// 
			// comboBoxEdit_VisInfoAbsReason.Properties
			// 
			this.comboBoxEdit_VisInfoAbsReason.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																																  new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.comboBoxEdit_VisInfoAbsReason.Properties.Items.AddRange(new object[] {
																						  "患病",
																						  "家中有人",
																						  "走亲戚",
																						  "其他"});
			this.comboBoxEdit_VisInfoAbsReason.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
			this.comboBoxEdit_VisInfoAbsReason.Size = new System.Drawing.Size(80, 23);
			this.comboBoxEdit_VisInfoAbsReason.TabIndex = 110;
			// 
			// gridControl_VisitInfo
			// 
			this.gridControl_VisitInfo.Dock = System.Windows.Forms.DockStyle.Fill;
			// 
			// gridControl_VisitInfo.EmbeddedNavigator
			// 
			this.gridControl_VisitInfo.EmbeddedNavigator.Name = "";
			this.gridControl_VisitInfo.Location = new System.Drawing.Point(0, 40);
			this.gridControl_VisitInfo.MainView = this.gridView2;
			this.gridControl_VisitInfo.Name = "gridControl_VisitInfo";
			this.gridControl_VisitInfo.Size = new System.Drawing.Size(559, 446);
			this.gridControl_VisitInfo.TabIndex = 1;
			this.gridControl_VisitInfo.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
																												 this.gridView2});
			// 
			// gridView2
			// 
			this.gridView2.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
																							 this.gridColumn4,
																							 this.gridColumn5,
																							 this.gridColumn6,
																							 this.gridColumn7,
																							 this.gridColumn8,
																							 this.gridColumn9,
																							 this.gridColumn10,
																							 this.gridColumn11,
																							 this.gridColumn12});
			this.gridView2.GridControl = this.gridControl_VisitInfo;
			this.gridView2.Name = "gridView2";
			this.gridView2.OptionsCustomization.AllowFilter = false;
			this.gridView2.OptionsView.ShowFilterPanel = false;
			this.gridView2.OptionsView.ShowGroupPanel = false;
			this.gridView2.DoubleClick += new System.EventHandler(this.gridView2_DoubleClick);
			this.gridView2.FocusedRowChanged += new DevExpress.XtraGrid.Views.Base.FocusedRowChangedEventHandler(this.gridView2_FocusedRowChanged);
			// 
			// gridColumn4
			// 
			this.gridColumn4.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.gridColumn4.AppearanceCell.Options.UseFont = true;
			this.gridColumn4.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn4.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn4.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn4.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn4.Caption = "序号";
			this.gridColumn4.FieldName = "info_stuOrderNumber";
			this.gridColumn4.Name = "gridColumn4";
			this.gridColumn4.OptionsColumn.AllowEdit = false;
			this.gridColumn4.OptionsColumn.AllowFocus = false;
			this.gridColumn4.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn4.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn4.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn4.OptionsColumn.AllowMove = false;
			this.gridColumn4.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn4.OptionsColumn.FixedWidth = true;
			this.gridColumn4.OptionsColumn.ReadOnly = true;
			this.gridColumn4.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn4.Visible = true;
			this.gridColumn4.VisibleIndex = 0;
			this.gridColumn4.Width = 48;
			// 
			// gridColumn5
			// 
			this.gridColumn5.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.gridColumn5.AppearanceCell.Options.UseFont = true;
			this.gridColumn5.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn5.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn5.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn5.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn5.Caption = "班级";
			this.gridColumn5.FieldName = "info_className";
			this.gridColumn5.Name = "gridColumn5";
			this.gridColumn5.OptionsColumn.AllowEdit = false;
			this.gridColumn5.OptionsColumn.AllowFocus = false;
			this.gridColumn5.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn5.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn5.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn5.OptionsColumn.AllowMove = false;
			this.gridColumn5.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn5.OptionsColumn.FixedWidth = true;
			this.gridColumn5.OptionsColumn.ReadOnly = true;
			this.gridColumn5.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn5.Visible = true;
			this.gridColumn5.VisibleIndex = 1;
			this.gridColumn5.Width = 53;
			// 
			// gridColumn6
			// 
			this.gridColumn6.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.gridColumn6.AppearanceCell.Options.UseFont = true;
			this.gridColumn6.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn6.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn6.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn6.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn6.Caption = "学号";
			this.gridColumn6.FieldName = "info_stuNumber";
			this.gridColumn6.Name = "gridColumn6";
			this.gridColumn6.OptionsColumn.AllowEdit = false;
			this.gridColumn6.OptionsColumn.AllowFocus = false;
			this.gridColumn6.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn6.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn6.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn6.OptionsColumn.AllowMove = false;
			this.gridColumn6.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn6.OptionsColumn.FixedWidth = true;
			this.gridColumn6.OptionsColumn.ReadOnly = true;
			this.gridColumn6.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn6.Visible = true;
			this.gridColumn6.VisibleIndex = 2;
			this.gridColumn6.Width = 49;
			// 
			// gridColumn7
			// 
			this.gridColumn7.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.gridColumn7.AppearanceCell.Options.UseFont = true;
			this.gridColumn7.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn7.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn7.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn7.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn7.Caption = "姓名";
			this.gridColumn7.FieldName = "info_stuName";
			this.gridColumn7.Name = "gridColumn7";
			this.gridColumn7.OptionsColumn.AllowEdit = false;
			this.gridColumn7.OptionsColumn.AllowFocus = false;
			this.gridColumn7.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn7.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn7.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn7.OptionsColumn.AllowMove = false;
			this.gridColumn7.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn7.OptionsColumn.FixedWidth = true;
			this.gridColumn7.OptionsColumn.ReadOnly = true;
			this.gridColumn7.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn7.Visible = true;
			this.gridColumn7.VisibleIndex = 3;
			this.gridColumn7.Width = 51;
			// 
			// gridColumn8
			// 
			this.gridColumn8.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.gridColumn8.AppearanceCell.Options.UseFont = true;
			this.gridColumn8.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn8.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn8.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn8.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn8.Caption = "家访日期";
			this.gridColumn8.DisplayFormat.FormatString = "yyyy-MM-dd";
			this.gridColumn8.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
			this.gridColumn8.FieldName = "info_visitDate";
			this.gridColumn8.Name = "gridColumn8";
			this.gridColumn8.OptionsColumn.AllowEdit = false;
			this.gridColumn8.OptionsColumn.AllowFocus = false;
			this.gridColumn8.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn8.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn8.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn8.OptionsColumn.AllowMove = false;
			this.gridColumn8.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn8.OptionsColumn.FixedWidth = true;
			this.gridColumn8.OptionsColumn.ReadOnly = true;
			this.gridColumn8.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn8.Visible = true;
			this.gridColumn8.VisibleIndex = 4;
			// 
			// gridColumn9
			// 
			this.gridColumn9.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.gridColumn9.AppearanceCell.Options.UseFont = true;
			this.gridColumn9.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn9.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn9.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn9.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn9.Caption = "访问方式";
			this.gridColumn9.FieldName = "info_visitMode";
			this.gridColumn9.Name = "gridColumn9";
			this.gridColumn9.OptionsColumn.AllowEdit = false;
			this.gridColumn9.OptionsColumn.AllowFocus = false;
			this.gridColumn9.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn9.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn9.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn9.OptionsColumn.AllowMove = false;
			this.gridColumn9.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn9.OptionsColumn.FixedWidth = true;
			this.gridColumn9.OptionsColumn.ReadOnly = true;
			this.gridColumn9.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn9.Visible = true;
			this.gridColumn9.VisibleIndex = 5;
			this.gridColumn9.Width = 60;
			// 
			// gridColumn10
			// 
			this.gridColumn10.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.gridColumn10.AppearanceCell.Options.UseFont = true;
			this.gridColumn10.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn10.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn10.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn10.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn10.Caption = "缺席原因";
			this.gridColumn10.FieldName = "info_absReason";
			this.gridColumn10.Name = "gridColumn10";
			this.gridColumn10.OptionsColumn.AllowEdit = false;
			this.gridColumn10.OptionsColumn.AllowFocus = false;
			this.gridColumn10.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn10.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn10.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn10.OptionsColumn.AllowMove = false;
			this.gridColumn10.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn10.OptionsColumn.FixedWidth = true;
			this.gridColumn10.OptionsColumn.ReadOnly = true;
			this.gridColumn10.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn10.Visible = true;
			this.gridColumn10.VisibleIndex = 6;
			this.gridColumn10.Width = 58;
			// 
			// gridColumn11
			// 
			this.gridColumn11.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.gridColumn11.AppearanceCell.Options.UseFont = true;
			this.gridColumn11.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn11.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn11.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn11.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn11.Caption = "教师签名";
			this.gridColumn11.FieldName = "info_visitTeaSign";
			this.gridColumn11.Name = "gridColumn11";
			this.gridColumn11.OptionsColumn.AllowEdit = false;
			this.gridColumn11.OptionsColumn.AllowFocus = false;
			this.gridColumn11.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn11.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn11.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn11.OptionsColumn.AllowMove = false;
			this.gridColumn11.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn11.OptionsColumn.FixedWidth = true;
			this.gridColumn11.OptionsColumn.ReadOnly = true;
			this.gridColumn11.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn11.Visible = true;
			this.gridColumn11.VisibleIndex = 7;
			this.gridColumn11.Width = 63;
			// 
			// gridColumn12
			// 
			this.gridColumn12.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.gridColumn12.AppearanceCell.Options.UseFont = true;
			this.gridColumn12.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn12.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn12.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn12.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn12.Caption = "详细信息";
			this.gridColumn12.FieldName = "info_absRemark";
			this.gridColumn12.Name = "gridColumn12";
			this.gridColumn12.OptionsColumn.AllowEdit = false;
			this.gridColumn12.OptionsColumn.AllowFocus = false;
			this.gridColumn12.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn12.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn12.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn12.OptionsColumn.AllowMove = false;
			this.gridColumn12.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn12.OptionsColumn.FixedWidth = true;
			this.gridColumn12.OptionsColumn.ReadOnly = true;
			this.gridColumn12.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn12.Visible = true;
			this.gridColumn12.VisibleIndex = 8;
			// 
			// panelControl2
			// 
			this.panelControl2.Controls.Add(this.simpleButton_VisitInfoPrint);
			this.panelControl2.Controls.Add(this.simpleButton_VisitInfoBack);
			this.panelControl2.Controls.Add(this.simpleButton_VisitInfoDelete);
			this.panelControl2.Controls.Add(this.simpleButton_VisitInfoSearch);
			this.panelControl2.Controls.Add(this.simpleButton_VisitInfoModify);
			this.panelControl2.Dock = System.Windows.Forms.DockStyle.Top;
			this.panelControl2.Location = new System.Drawing.Point(0, 0);
			this.panelControl2.Name = "panelControl2";
			this.panelControl2.Size = new System.Drawing.Size(559, 40);
			this.panelControl2.TabIndex = 0;
			this.panelControl2.Text = "panelControl2";
			// 
			// simpleButton_VisitInfoPrint
			// 
			this.simpleButton_VisitInfoPrint.Appearance.ForeColor = System.Drawing.Color.DarkMagenta;
			this.simpleButton_VisitInfoPrint.Appearance.Options.UseForeColor = true;
			this.simpleButton_VisitInfoPrint.Location = new System.Drawing.Point(336, 8);
			this.simpleButton_VisitInfoPrint.Name = "simpleButton_VisitInfoPrint";
			this.simpleButton_VisitInfoPrint.Size = new System.Drawing.Size(72, 26);
			this.simpleButton_VisitInfoPrint.TabIndex = 19;
			this.simpleButton_VisitInfoPrint.Text = "报  表";
			this.simpleButton_VisitInfoPrint.Click += new System.EventHandler(this.simpleButton_VisitInfoPrint_Click);
			// 
			// simpleButton_VisitInfoBack
			// 
			this.simpleButton_VisitInfoBack.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.simpleButton_VisitInfoBack.Appearance.ForeColor = System.Drawing.Color.DarkMagenta;
			this.simpleButton_VisitInfoBack.Appearance.Options.UseFont = true;
			this.simpleButton_VisitInfoBack.Appearance.Options.UseForeColor = true;
			this.simpleButton_VisitInfoBack.Location = new System.Drawing.Point(16, 8);
			this.simpleButton_VisitInfoBack.Name = "simpleButton_VisitInfoBack";
			this.simpleButton_VisitInfoBack.Size = new System.Drawing.Size(72, 26);
			this.simpleButton_VisitInfoBack.TabIndex = 18;
			this.simpleButton_VisitInfoBack.Tag = 4;
			this.simpleButton_VisitInfoBack.Text = "返  回";
			this.simpleButton_VisitInfoBack.Click += new System.EventHandler(this.simpleButton_VisitInfoBack_Click);
			// 
			// simpleButton_VisitInfoDelete
			// 
			this.simpleButton_VisitInfoDelete.Appearance.ForeColor = System.Drawing.Color.DarkMagenta;
			this.simpleButton_VisitInfoDelete.Appearance.Options.UseForeColor = true;
			this.simpleButton_VisitInfoDelete.Location = new System.Drawing.Point(256, 8);
			this.simpleButton_VisitInfoDelete.Name = "simpleButton_VisitInfoDelete";
			this.simpleButton_VisitInfoDelete.Size = new System.Drawing.Size(72, 26);
			this.simpleButton_VisitInfoDelete.TabIndex = 17;
			this.simpleButton_VisitInfoDelete.Text = "删  除";
			this.simpleButton_VisitInfoDelete.Click += new System.EventHandler(this.simpleButton_VisitInfoDelete_Click);
			// 
			// simpleButton_VisitInfoSearch
			// 
			this.simpleButton_VisitInfoSearch.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.simpleButton_VisitInfoSearch.Appearance.ForeColor = System.Drawing.Color.DarkMagenta;
			this.simpleButton_VisitInfoSearch.Appearance.Options.UseFont = true;
			this.simpleButton_VisitInfoSearch.Appearance.Options.UseForeColor = true;
			this.simpleButton_VisitInfoSearch.Location = new System.Drawing.Point(96, 8);
			this.simpleButton_VisitInfoSearch.Name = "simpleButton_VisitInfoSearch";
			this.simpleButton_VisitInfoSearch.Size = new System.Drawing.Size(72, 26);
			this.simpleButton_VisitInfoSearch.TabIndex = 14;
			this.simpleButton_VisitInfoSearch.Tag = 4;
			this.simpleButton_VisitInfoSearch.Text = "检  索";
			this.simpleButton_VisitInfoSearch.Click += new System.EventHandler(this.simpleButton_VisitInfoSearch_Click);
			// 
			// simpleButton_VisitInfoModify
			// 
			this.simpleButton_VisitInfoModify.Appearance.ForeColor = System.Drawing.Color.DarkMagenta;
			this.simpleButton_VisitInfoModify.Appearance.Options.UseForeColor = true;
			this.simpleButton_VisitInfoModify.Location = new System.Drawing.Point(176, 8);
			this.simpleButton_VisitInfoModify.Name = "simpleButton_VisitInfoModify";
			this.simpleButton_VisitInfoModify.Size = new System.Drawing.Size(72, 26);
			this.simpleButton_VisitInfoModify.TabIndex = 16;
			this.simpleButton_VisitInfoModify.Text = "修  改";
			this.simpleButton_VisitInfoModify.Click += new System.EventHandler(this.simpleButton_VisitInfoModify_Click);
			// 
			// notePanel_VisitInfoPanel
			// 
			this.notePanel_VisitInfoPanel.BackColor = System.Drawing.Color.LightGoldenrodYellow;
			this.notePanel_VisitInfoPanel.Dock = System.Windows.Forms.DockStyle.Top;
			this.notePanel_VisitInfoPanel.ForeColor = System.Drawing.Color.OrangeRed;
			this.notePanel_VisitInfoPanel.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_VisitInfoPanel.Location = new System.Drawing.Point(0, 0);
			this.notePanel_VisitInfoPanel.MaxRows = 5;
			this.notePanel_VisitInfoPanel.Name = "notePanel_VisitInfoPanel";
			this.notePanel_VisitInfoPanel.ParentAutoHeight = true;
			this.notePanel_VisitInfoPanel.Size = new System.Drawing.Size(768, 23);
			this.notePanel_VisitInfoPanel.TabIndex = 10;
			this.notePanel_VisitInfoPanel.TabStop = false;
			this.notePanel_VisitInfoPanel.Text = "家访信息检索与修改";
			// 
			// StudentVisitInfo
			// 
			this.Controls.Add(this.xtraTabControl1);
			this.Name = "StudentVisitInfo";
			this.Size = new System.Drawing.Size(772, 540);
			this.Load += new System.EventHandler(this.StudentVisitInfo_Load);
			((System.ComponentModel.ISupportInitialize)(this.xtraTabControl1)).EndInit();
			this.xtraTabControl1.ResumeLayout(false);
			this.xtraTabPage_InfoMgmt.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.splitContainerControl_Mgmt)).EndInit();
			this.splitContainerControl_Mgmt.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.gridControl_Mgmt)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_MgmtClass)).EndInit();
			this.groupControl_MgmtClass.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.dateEdit_MgmtDate.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_MgmtClass.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_MgmtGrade.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_VisitInfoInput)).EndInit();
			this.groupControl_VisitInfoInput.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.memoEdit_MgmtAbsRemark.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_MgmtVisState.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.dateEdit_MgmtVisDate.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_MgmtAbsReason.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_MgmtParentLink)).EndInit();
			this.groupControl_MgmtParentLink.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MgmtMOWorkingAddr.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MgmtMOPhone.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MgmtMOName.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MgmtFAWorkingAddr.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MgmtFAPhone.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MgmtFAName.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MgmtFamilyAddr.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
			this.panelControl1.ResumeLayout(false);
			this.xtraTabPage_InfoQuery.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.splitContainerControl1)).EndInit();
			this.splitContainerControl1.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.groupControl_VisitInfoClass)).EndInit();
			this.groupControl_VisitInfoClass.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.textEdit_VisitInfoNumber.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_VisitInfoName.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.dateEdit_VisitInfoEndDate.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.dateEdit_VisitInfoBegDate.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_VisitInfoClass.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_VisitInfoGrade.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_VisitInfo)).EndInit();
			this.groupControl_VisitInfo.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.memoEdit_VisInfoAbsRemark.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_VisInfoVisMode.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.dateEdit_VisInfoVisDate.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_VisInfoAbsReason.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.gridControl_VisitInfo)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.gridView2)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.panelControl2)).EndInit();
			this.panelControl2.ResumeLayout(false);
			this.ResumeLayout(false);

		}
示例#17
0
		/// <summary> 
		/// Required method for Designer support - do not modify 
		/// the contents of this method with the code editor.
		/// </summary>
		private void InitializeComponent()
		{
			this.notePanel_WelcomePanel = new DevExpress.Utils.Frames.NotePanel();
			this.splitContainerControl1 = new DevExpress.XtraEditors.SplitContainerControl();
			this.groupControl_FinanInfo = new DevExpress.XtraEditors.GroupControl();
			this.notePanel1 = new DevExpress.Utils.Frames.NotePanel();
			this.memoEdit_Remark = new DevExpress.XtraEditors.MemoEdit();
			this.textEdit_ExtraCharge = new DevExpress.XtraEditors.TextEdit();
			this.notePanel_ExtraCharge = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_CommCharge = new DevExpress.Utils.Frames.NotePanel();
			this.textEdit_CommCharge = new DevExpress.XtraEditors.TextEdit();
			this.textEdit_MilkCharge = new DevExpress.XtraEditors.TextEdit();
			this.textEdit_NightCharge = new DevExpress.XtraEditors.TextEdit();
			this.notePanel_MilkCharge = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_NightCharge = new DevExpress.Utils.Frames.NotePanel();
			this.textEdit_AdmCharge = new DevExpress.XtraEditors.TextEdit();
			this.notePanel_AdmCharge = new DevExpress.Utils.Frames.NotePanel();
			this.textEdit_MessCharge = new DevExpress.XtraEditors.TextEdit();
			this.notePanel_MessCharge = new DevExpress.Utils.Frames.NotePanel();
			this.textEdit_AdmRestoreDays = new DevExpress.XtraEditors.TextEdit();
			this.notePanel_AdmRestoreDays = new DevExpress.Utils.Frames.NotePanel();
			this.textEdit_MessRestoreDays = new DevExpress.XtraEditors.TextEdit();
			this.notePanel_MessRestoreDays = new DevExpress.Utils.Frames.NotePanel();
			this.groupControl_FinanQuery = new DevExpress.XtraEditors.GroupControl();
			this.dateEdit_SearchMonth = new DevExpress.XtraEditors.DateEdit();
			this.notePanel_SearchMonth = new DevExpress.Utils.Frames.NotePanel();
			this.dateEdit_BalanceMonth = new DevExpress.XtraEditors.DateEdit();
			this.notePanel_BalanceMonth = new DevExpress.Utils.Frames.NotePanel();
			this.textEdit_Number = new DevExpress.XtraEditors.TextEdit();
			this.textEdit_Name = new DevExpress.XtraEditors.TextEdit();
			this.notePanel_Number = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_Name = new DevExpress.Utils.Frames.NotePanel();
			this.comboBoxEdit_Class = new DevExpress.XtraEditors.ComboBoxEdit();
			this.notePanel_Class = new DevExpress.Utils.Frames.NotePanel();
			this.comboBoxEdit_Grade = new DevExpress.XtraEditors.ComboBoxEdit();
			this.notePanel_Grade = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_FinanQuery = new DevExpress.Utils.Frames.NotePanel();
			this.gridControl_FinanInfo = new DevExpress.XtraGrid.GridControl();
			this.advBandedGridView1 = new DevExpress.XtraGrid.Views.BandedGrid.AdvBandedGridView();
			this.gridBand1 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
			this.bandedGridColumn15 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.bandedGridColumn1 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.bandedGridColumn2 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.gridBand2 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
			this.bandedGridColumn3 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.bandedGridColumn4 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.gridBand3 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
			this.bandedGridColumn5 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.bandedGridColumn7 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.bandedGridColumn6 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.bandedGridColumn9 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.bandedGridColumn8 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.bandedGridColumn10 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.gridBand4 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
			this.bandedGridColumn12 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.bandedGridColumn11 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.gridBand5 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
			this.bandedGridColumn13 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.bandedGridColumn14 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.gridView1 = new DevExpress.XtraGrid.Views.Grid.GridView();
			this.gridColumn2 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn1 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn4 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn5 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn6 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn7 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn8 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn9 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn10 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn13 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn11 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn12 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn14 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn15 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.panelControl1 = new DevExpress.XtraEditors.PanelControl();
			this.simpleButton_DeleteData = new DevExpress.XtraEditors.SimpleButton();
			this.simpleButton_DataModify = new DevExpress.XtraEditors.SimpleButton();
			this.simpleButton_ChargeSave = new DevExpress.XtraEditors.SimpleButton();
			this.simpleButton_History = new DevExpress.XtraEditors.SimpleButton();
			this.simpleButton_DataPrint = new DevExpress.XtraEditors.SimpleButton();
			this.simpleButton_MonthBalance = new DevExpress.XtraEditors.SimpleButton();
			this.saveFileDialog_Report = new System.Windows.Forms.SaveFileDialog();
			this.helpProvider_FinanInfo = new System.Windows.Forms.HelpProvider();
			((System.ComponentModel.ISupportInitialize)(this.splitContainerControl1)).BeginInit();
			this.splitContainerControl1.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_FinanInfo)).BeginInit();
			this.groupControl_FinanInfo.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.memoEdit_Remark.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_ExtraCharge.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_CommCharge.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MilkCharge.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_NightCharge.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_AdmCharge.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MessCharge.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_AdmRestoreDays.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MessRestoreDays.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_FinanQuery)).BeginInit();
			this.groupControl_FinanQuery.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.dateEdit_SearchMonth.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.dateEdit_BalanceMonth.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_Number.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_Name.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_Class.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_Grade.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.gridControl_FinanInfo)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.advBandedGridView1)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
			this.panelControl1.SuspendLayout();
			this.SuspendLayout();
			// 
			// notePanel_WelcomePanel
			// 
			this.notePanel_WelcomePanel.BackColor = System.Drawing.Color.LightGoldenrodYellow;
			this.notePanel_WelcomePanel.Dock = System.Windows.Forms.DockStyle.Top;
			this.notePanel_WelcomePanel.ForeColor = System.Drawing.Color.OrangeRed;
			this.notePanel_WelcomePanel.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_WelcomePanel.Location = new System.Drawing.Point(0, 0);
			this.notePanel_WelcomePanel.MaxRows = 5;
			this.notePanel_WelcomePanel.Name = "notePanel_WelcomePanel";
			this.notePanel_WelcomePanel.ParentAutoHeight = true;
			this.notePanel_WelcomePanel.Size = new System.Drawing.Size(772, 23);
			this.notePanel_WelcomePanel.TabIndex = 4;
			this.notePanel_WelcomePanel.TabStop = false;
			this.notePanel_WelcomePanel.Text = "财务信息管理";
			// 
			// splitContainerControl1
			// 
			this.splitContainerControl1.Dock = System.Windows.Forms.DockStyle.Fill;
			this.splitContainerControl1.Location = new System.Drawing.Point(0, 23);
			this.splitContainerControl1.Name = "splitContainerControl1";
			this.splitContainerControl1.Panel1.Controls.Add(this.groupControl_FinanInfo);
			this.splitContainerControl1.Panel1.Controls.Add(this.groupControl_FinanQuery);
			this.splitContainerControl1.Panel1.Text = "splitContainerControl1_Panel1";
			this.splitContainerControl1.Panel2.Controls.Add(this.gridControl_FinanInfo);
			this.splitContainerControl1.Panel2.Controls.Add(this.panelControl1);
			this.splitContainerControl1.Panel2.Text = "splitContainerControl1_Panel2";
			this.splitContainerControl1.Size = new System.Drawing.Size(772, 517);
			this.splitContainerControl1.SplitterPosition = 193;
			this.splitContainerControl1.TabIndex = 5;
			this.splitContainerControl1.Text = "splitContainerControl1";
			// 
			// groupControl_FinanInfo
			// 
			this.groupControl_FinanInfo.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.groupControl_FinanInfo.AppearanceCaption.Options.UseFont = true;
			this.groupControl_FinanInfo.Controls.Add(this.notePanel1);
			this.groupControl_FinanInfo.Controls.Add(this.memoEdit_Remark);
			this.groupControl_FinanInfo.Controls.Add(this.textEdit_ExtraCharge);
			this.groupControl_FinanInfo.Controls.Add(this.notePanel_ExtraCharge);
			this.groupControl_FinanInfo.Controls.Add(this.notePanel_CommCharge);
			this.groupControl_FinanInfo.Controls.Add(this.textEdit_CommCharge);
			this.groupControl_FinanInfo.Controls.Add(this.textEdit_MilkCharge);
			this.groupControl_FinanInfo.Controls.Add(this.textEdit_NightCharge);
			this.groupControl_FinanInfo.Controls.Add(this.notePanel_MilkCharge);
			this.groupControl_FinanInfo.Controls.Add(this.notePanel_NightCharge);
			this.groupControl_FinanInfo.Controls.Add(this.textEdit_AdmCharge);
			this.groupControl_FinanInfo.Controls.Add(this.notePanel_AdmCharge);
			this.groupControl_FinanInfo.Controls.Add(this.textEdit_MessCharge);
			this.groupControl_FinanInfo.Controls.Add(this.notePanel_MessCharge);
			this.groupControl_FinanInfo.Controls.Add(this.textEdit_AdmRestoreDays);
			this.groupControl_FinanInfo.Controls.Add(this.notePanel_AdmRestoreDays);
			this.groupControl_FinanInfo.Controls.Add(this.textEdit_MessRestoreDays);
			this.groupControl_FinanInfo.Controls.Add(this.notePanel_MessRestoreDays);
			this.groupControl_FinanInfo.Dock = System.Windows.Forms.DockStyle.Fill;
			this.groupControl_FinanInfo.Location = new System.Drawing.Point(0, 248);
			this.groupControl_FinanInfo.Name = "groupControl_FinanInfo";
			this.groupControl_FinanInfo.Size = new System.Drawing.Size(187, 263);
			this.groupControl_FinanInfo.TabIndex = 1;
			this.groupControl_FinanInfo.Text = "财务信息";
			// 
			// notePanel1
			// 
			this.notePanel1.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel1.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel1.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel1.ForeColor = System.Drawing.Color.Black;
			this.notePanel1.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel1.Location = new System.Drawing.Point(16, 224);
			this.notePanel1.MaxRows = 5;
			this.notePanel1.Name = "notePanel1";
			this.notePanel1.ParentAutoHeight = true;
			this.notePanel1.Size = new System.Drawing.Size(160, 22);
			this.notePanel1.TabIndex = 60;
			this.notePanel1.TabStop = false;
			this.notePanel1.Text = "             备  注:";
			// 
			// memoEdit_Remark
			// 
			this.memoEdit_Remark.EditValue = "";
			this.memoEdit_Remark.Location = new System.Drawing.Point(16, 248);
			this.memoEdit_Remark.Name = "memoEdit_Remark";
			this.memoEdit_Remark.Size = new System.Drawing.Size(160, 72);
			this.memoEdit_Remark.TabIndex = 59;
			// 
			// textEdit_ExtraCharge
			// 
			this.textEdit_ExtraCharge.EditValue = "";
			this.textEdit_ExtraCharge.Location = new System.Drawing.Point(104, 200);
			this.textEdit_ExtraCharge.Name = "textEdit_ExtraCharge";
			this.textEdit_ExtraCharge.Size = new System.Drawing.Size(72, 23);
			this.textEdit_ExtraCharge.TabIndex = 57;
			// 
			// notePanel_ExtraCharge
			// 
			this.notePanel_ExtraCharge.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_ExtraCharge.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_ExtraCharge.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_ExtraCharge.ForeColor = System.Drawing.Color.Black;
			this.notePanel_ExtraCharge.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_ExtraCharge.Location = new System.Drawing.Point(16, 200);
			this.notePanel_ExtraCharge.MaxRows = 5;
			this.notePanel_ExtraCharge.Name = "notePanel_ExtraCharge";
			this.notePanel_ExtraCharge.ParentAutoHeight = true;
			this.notePanel_ExtraCharge.Size = new System.Drawing.Size(80, 22);
			this.notePanel_ExtraCharge.TabIndex = 56;
			this.notePanel_ExtraCharge.TabStop = false;
			this.notePanel_ExtraCharge.Text = " 附加费:";
			// 
			// notePanel_CommCharge
			// 
			this.notePanel_CommCharge.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_CommCharge.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_CommCharge.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_CommCharge.ForeColor = System.Drawing.Color.Black;
			this.notePanel_CommCharge.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_CommCharge.Location = new System.Drawing.Point(16, 176);
			this.notePanel_CommCharge.MaxRows = 5;
			this.notePanel_CommCharge.Name = "notePanel_CommCharge";
			this.notePanel_CommCharge.ParentAutoHeight = true;
			this.notePanel_CommCharge.Size = new System.Drawing.Size(80, 22);
			this.notePanel_CommCharge.TabIndex = 55;
			this.notePanel_CommCharge.TabStop = false;
			this.notePanel_CommCharge.Text = " 代办费:";
			// 
			// textEdit_CommCharge
			// 
			this.textEdit_CommCharge.EditValue = "";
			this.textEdit_CommCharge.Location = new System.Drawing.Point(104, 176);
			this.textEdit_CommCharge.Name = "textEdit_CommCharge";
			this.textEdit_CommCharge.Size = new System.Drawing.Size(72, 23);
			this.textEdit_CommCharge.TabIndex = 54;
			// 
			// textEdit_MilkCharge
			// 
			this.textEdit_MilkCharge.EditValue = "";
			this.textEdit_MilkCharge.Location = new System.Drawing.Point(104, 152);
			this.textEdit_MilkCharge.Name = "textEdit_MilkCharge";
			this.textEdit_MilkCharge.Size = new System.Drawing.Size(72, 23);
			this.textEdit_MilkCharge.TabIndex = 53;
			// 
			// textEdit_NightCharge
			// 
			this.textEdit_NightCharge.EditValue = "";
			this.textEdit_NightCharge.Location = new System.Drawing.Point(104, 128);
			this.textEdit_NightCharge.Name = "textEdit_NightCharge";
			this.textEdit_NightCharge.Size = new System.Drawing.Size(72, 23);
			this.textEdit_NightCharge.TabIndex = 52;
			// 
			// notePanel_MilkCharge
			// 
			this.notePanel_MilkCharge.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_MilkCharge.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_MilkCharge.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_MilkCharge.ForeColor = System.Drawing.Color.Black;
			this.notePanel_MilkCharge.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_MilkCharge.Location = new System.Drawing.Point(16, 152);
			this.notePanel_MilkCharge.MaxRows = 5;
			this.notePanel_MilkCharge.Name = "notePanel_MilkCharge";
			this.notePanel_MilkCharge.ParentAutoHeight = true;
			this.notePanel_MilkCharge.Size = new System.Drawing.Size(80, 22);
			this.notePanel_MilkCharge.TabIndex = 51;
			this.notePanel_MilkCharge.TabStop = false;
			this.notePanel_MilkCharge.Text = " 牛奶费:";
			// 
			// notePanel_NightCharge
			// 
			this.notePanel_NightCharge.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_NightCharge.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_NightCharge.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_NightCharge.ForeColor = System.Drawing.Color.Black;
			this.notePanel_NightCharge.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_NightCharge.Location = new System.Drawing.Point(16, 128);
			this.notePanel_NightCharge.MaxRows = 5;
			this.notePanel_NightCharge.Name = "notePanel_NightCharge";
			this.notePanel_NightCharge.ParentAutoHeight = true;
			this.notePanel_NightCharge.Size = new System.Drawing.Size(80, 22);
			this.notePanel_NightCharge.TabIndex = 50;
			this.notePanel_NightCharge.TabStop = false;
			this.notePanel_NightCharge.Text = " 晚托费:";
			// 
			// textEdit_AdmCharge
			// 
			this.textEdit_AdmCharge.EditValue = "";
			this.textEdit_AdmCharge.Location = new System.Drawing.Point(104, 104);
			this.textEdit_AdmCharge.Name = "textEdit_AdmCharge";
			this.textEdit_AdmCharge.Size = new System.Drawing.Size(72, 23);
			this.textEdit_AdmCharge.TabIndex = 49;
			// 
			// notePanel_AdmCharge
			// 
			this.notePanel_AdmCharge.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_AdmCharge.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_AdmCharge.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_AdmCharge.ForeColor = System.Drawing.Color.Black;
			this.notePanel_AdmCharge.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_AdmCharge.Location = new System.Drawing.Point(16, 104);
			this.notePanel_AdmCharge.MaxRows = 5;
			this.notePanel_AdmCharge.Name = "notePanel_AdmCharge";
			this.notePanel_AdmCharge.ParentAutoHeight = true;
			this.notePanel_AdmCharge.Size = new System.Drawing.Size(80, 22);
			this.notePanel_AdmCharge.TabIndex = 48;
			this.notePanel_AdmCharge.TabStop = false;
			this.notePanel_AdmCharge.Text = " 管理费:";
			// 
			// textEdit_MessCharge
			// 
			this.textEdit_MessCharge.EditValue = "";
			this.textEdit_MessCharge.Location = new System.Drawing.Point(104, 80);
			this.textEdit_MessCharge.Name = "textEdit_MessCharge";
			this.textEdit_MessCharge.Size = new System.Drawing.Size(72, 23);
			this.textEdit_MessCharge.TabIndex = 47;
			// 
			// notePanel_MessCharge
			// 
			this.notePanel_MessCharge.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_MessCharge.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_MessCharge.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_MessCharge.ForeColor = System.Drawing.Color.Black;
			this.notePanel_MessCharge.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_MessCharge.Location = new System.Drawing.Point(16, 80);
			this.notePanel_MessCharge.MaxRows = 5;
			this.notePanel_MessCharge.Name = "notePanel_MessCharge";
			this.notePanel_MessCharge.ParentAutoHeight = true;
			this.notePanel_MessCharge.Size = new System.Drawing.Size(80, 22);
			this.notePanel_MessCharge.TabIndex = 46;
			this.notePanel_MessCharge.TabStop = false;
			this.notePanel_MessCharge.Text = " 伙食费:";
			// 
			// textEdit_AdmRestoreDays
			// 
			this.textEdit_AdmRestoreDays.EditValue = "";
			this.textEdit_AdmRestoreDays.Location = new System.Drawing.Point(104, 56);
			this.textEdit_AdmRestoreDays.Name = "textEdit_AdmRestoreDays";
			this.textEdit_AdmRestoreDays.Size = new System.Drawing.Size(72, 23);
			this.textEdit_AdmRestoreDays.TabIndex = 45;
			// 
			// notePanel_AdmRestoreDays
			// 
			this.notePanel_AdmRestoreDays.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_AdmRestoreDays.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_AdmRestoreDays.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_AdmRestoreDays.ForeColor = System.Drawing.Color.Black;
			this.notePanel_AdmRestoreDays.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_AdmRestoreDays.Location = new System.Drawing.Point(16, 56);
			this.notePanel_AdmRestoreDays.MaxRows = 5;
			this.notePanel_AdmRestoreDays.Name = "notePanel_AdmRestoreDays";
			this.notePanel_AdmRestoreDays.ParentAutoHeight = true;
			this.notePanel_AdmRestoreDays.Size = new System.Drawing.Size(80, 22);
			this.notePanel_AdmRestoreDays.TabIndex = 44;
			this.notePanel_AdmRestoreDays.TabStop = false;
			this.notePanel_AdmRestoreDays.Text = "退管天数:";
			// 
			// textEdit_MessRestoreDays
			// 
			this.textEdit_MessRestoreDays.EditValue = "";
			this.textEdit_MessRestoreDays.Location = new System.Drawing.Point(104, 32);
			this.textEdit_MessRestoreDays.Name = "textEdit_MessRestoreDays";
			this.textEdit_MessRestoreDays.Size = new System.Drawing.Size(72, 23);
			this.textEdit_MessRestoreDays.TabIndex = 43;
			// 
			// notePanel_MessRestoreDays
			// 
			this.notePanel_MessRestoreDays.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_MessRestoreDays.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_MessRestoreDays.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_MessRestoreDays.ForeColor = System.Drawing.Color.Black;
			this.notePanel_MessRestoreDays.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_MessRestoreDays.Location = new System.Drawing.Point(16, 32);
			this.notePanel_MessRestoreDays.MaxRows = 5;
			this.notePanel_MessRestoreDays.Name = "notePanel_MessRestoreDays";
			this.notePanel_MessRestoreDays.ParentAutoHeight = true;
			this.notePanel_MessRestoreDays.Size = new System.Drawing.Size(80, 22);
			this.notePanel_MessRestoreDays.TabIndex = 42;
			this.notePanel_MessRestoreDays.TabStop = false;
			this.notePanel_MessRestoreDays.Text = "退伙天数:";
			// 
			// groupControl_FinanQuery
			// 
			this.groupControl_FinanQuery.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.groupControl_FinanQuery.AppearanceCaption.Options.UseFont = true;
			this.groupControl_FinanQuery.Controls.Add(this.dateEdit_SearchMonth);
			this.groupControl_FinanQuery.Controls.Add(this.notePanel_SearchMonth);
			this.groupControl_FinanQuery.Controls.Add(this.dateEdit_BalanceMonth);
			this.groupControl_FinanQuery.Controls.Add(this.notePanel_BalanceMonth);
			this.groupControl_FinanQuery.Controls.Add(this.textEdit_Number);
			this.groupControl_FinanQuery.Controls.Add(this.textEdit_Name);
			this.groupControl_FinanQuery.Controls.Add(this.notePanel_Number);
			this.groupControl_FinanQuery.Controls.Add(this.notePanel_Name);
			this.groupControl_FinanQuery.Controls.Add(this.comboBoxEdit_Class);
			this.groupControl_FinanQuery.Controls.Add(this.notePanel_Class);
			this.groupControl_FinanQuery.Controls.Add(this.comboBoxEdit_Grade);
			this.groupControl_FinanQuery.Controls.Add(this.notePanel_Grade);
			this.groupControl_FinanQuery.Controls.Add(this.notePanel_FinanQuery);
			this.groupControl_FinanQuery.Dock = System.Windows.Forms.DockStyle.Top;
			this.groupControl_FinanQuery.Location = new System.Drawing.Point(0, 0);
			this.groupControl_FinanQuery.Name = "groupControl_FinanQuery";
			this.groupControl_FinanQuery.Size = new System.Drawing.Size(187, 248);
			this.groupControl_FinanQuery.TabIndex = 0;
			this.groupControl_FinanQuery.Text = "信息查询";
			// 
			// dateEdit_SearchMonth
			// 
			this.dateEdit_SearchMonth.EditValue = new System.DateTime(2005, 12, 20, 0, 0, 0, 0);
			this.dateEdit_SearchMonth.Location = new System.Drawing.Point(88, 216);
			this.dateEdit_SearchMonth.Name = "dateEdit_SearchMonth";
			// 
			// dateEdit_SearchMonth.Properties
			// 
			this.dateEdit_SearchMonth.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																														 new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.dateEdit_SearchMonth.Properties.DisplayFormat.FormatString = "yyyy年M月";
			this.dateEdit_SearchMonth.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
			this.dateEdit_SearchMonth.Properties.Mask.EditMask = "d";
			this.dateEdit_SearchMonth.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.DateTime;
			this.dateEdit_SearchMonth.Size = new System.Drawing.Size(88, 23);
			this.dateEdit_SearchMonth.TabIndex = 47;
			// 
			// notePanel_SearchMonth
			// 
			this.notePanel_SearchMonth.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_SearchMonth.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_SearchMonth.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_SearchMonth.ForeColor = System.Drawing.Color.Black;
			this.notePanel_SearchMonth.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_SearchMonth.Location = new System.Drawing.Point(16, 216);
			this.notePanel_SearchMonth.MaxRows = 5;
			this.notePanel_SearchMonth.Name = "notePanel_SearchMonth";
			this.notePanel_SearchMonth.ParentAutoHeight = true;
			this.notePanel_SearchMonth.Size = new System.Drawing.Size(64, 22);
			this.notePanel_SearchMonth.TabIndex = 46;
			this.notePanel_SearchMonth.TabStop = false;
			this.notePanel_SearchMonth.Text = "查询月:";
			// 
			// dateEdit_BalanceMonth
			// 
			this.dateEdit_BalanceMonth.EditValue = new System.DateTime(2005, 12, 20, 0, 0, 0, 0);
			this.dateEdit_BalanceMonth.Location = new System.Drawing.Point(88, 184);
			this.dateEdit_BalanceMonth.Name = "dateEdit_BalanceMonth";
			// 
			// dateEdit_BalanceMonth.Properties
			// 
			this.dateEdit_BalanceMonth.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																														  new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.dateEdit_BalanceMonth.Properties.DisplayFormat.FormatString = "yyyy年M月";
			this.dateEdit_BalanceMonth.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
			this.dateEdit_BalanceMonth.Properties.Mask.EditMask = "d";
			this.dateEdit_BalanceMonth.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.DateTime;
			this.dateEdit_BalanceMonth.Size = new System.Drawing.Size(88, 23);
			this.dateEdit_BalanceMonth.TabIndex = 45;
			// 
			// notePanel_BalanceMonth
			// 
			this.notePanel_BalanceMonth.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_BalanceMonth.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_BalanceMonth.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_BalanceMonth.ForeColor = System.Drawing.Color.Black;
			this.notePanel_BalanceMonth.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_BalanceMonth.Location = new System.Drawing.Point(16, 184);
			this.notePanel_BalanceMonth.MaxRows = 5;
			this.notePanel_BalanceMonth.Name = "notePanel_BalanceMonth";
			this.notePanel_BalanceMonth.ParentAutoHeight = true;
			this.notePanel_BalanceMonth.Size = new System.Drawing.Size(64, 22);
			this.notePanel_BalanceMonth.TabIndex = 43;
			this.notePanel_BalanceMonth.TabStop = false;
			this.notePanel_BalanceMonth.Text = "结算月:";
			// 
			// textEdit_Number
			// 
			this.textEdit_Number.EditValue = "";
			this.textEdit_Number.Location = new System.Drawing.Point(88, 152);
			this.textEdit_Number.Name = "textEdit_Number";
			this.textEdit_Number.Size = new System.Drawing.Size(80, 23);
			this.textEdit_Number.TabIndex = 42;
			// 
			// textEdit_Name
			// 
			this.textEdit_Name.EditValue = "";
			this.textEdit_Name.Location = new System.Drawing.Point(88, 120);
			this.textEdit_Name.Name = "textEdit_Name";
			this.textEdit_Name.Size = new System.Drawing.Size(80, 23);
			this.textEdit_Name.TabIndex = 41;
			// 
			// notePanel_Number
			// 
			this.notePanel_Number.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_Number.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_Number.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_Number.ForeColor = System.Drawing.Color.Black;
			this.notePanel_Number.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_Number.Location = new System.Drawing.Point(16, 152);
			this.notePanel_Number.MaxRows = 5;
			this.notePanel_Number.Name = "notePanel_Number";
			this.notePanel_Number.ParentAutoHeight = true;
			this.notePanel_Number.Size = new System.Drawing.Size(65, 22);
			this.notePanel_Number.TabIndex = 40;
			this.notePanel_Number.TabStop = false;
			this.notePanel_Number.Text = "学  号:";
			// 
			// notePanel_Name
			// 
			this.notePanel_Name.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_Name.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_Name.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_Name.ForeColor = System.Drawing.Color.Black;
			this.notePanel_Name.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_Name.Location = new System.Drawing.Point(16, 120);
			this.notePanel_Name.MaxRows = 5;
			this.notePanel_Name.Name = "notePanel_Name";
			this.notePanel_Name.ParentAutoHeight = true;
			this.notePanel_Name.Size = new System.Drawing.Size(65, 22);
			this.notePanel_Name.TabIndex = 39;
			this.notePanel_Name.TabStop = false;
			this.notePanel_Name.Text = "姓  名:";
			// 
			// comboBoxEdit_Class
			// 
			this.comboBoxEdit_Class.EditValue = "全部";
			this.comboBoxEdit_Class.Location = new System.Drawing.Point(88, 88);
			this.comboBoxEdit_Class.Name = "comboBoxEdit_Class";
			// 
			// comboBoxEdit_Class.Properties
			// 
			this.comboBoxEdit_Class.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																													   new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.comboBoxEdit_Class.Properties.Items.AddRange(new object[] {
																			   "全部"});
			this.comboBoxEdit_Class.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
			this.comboBoxEdit_Class.Size = new System.Drawing.Size(80, 23);
			this.comboBoxEdit_Class.TabIndex = 38;
			this.comboBoxEdit_Class.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit_Class_SelectedIndexChanged);
			// 
			// notePanel_Class
			// 
			this.notePanel_Class.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_Class.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_Class.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_Class.ForeColor = System.Drawing.Color.Black;
			this.notePanel_Class.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_Class.Location = new System.Drawing.Point(16, 88);
			this.notePanel_Class.MaxRows = 5;
			this.notePanel_Class.Name = "notePanel_Class";
			this.notePanel_Class.ParentAutoHeight = true;
			this.notePanel_Class.Size = new System.Drawing.Size(64, 22);
			this.notePanel_Class.TabIndex = 37;
			this.notePanel_Class.TabStop = false;
			this.notePanel_Class.Text = "班  级:";
			// 
			// comboBoxEdit_Grade
			// 
			this.comboBoxEdit_Grade.EditValue = "全部";
			this.comboBoxEdit_Grade.Location = new System.Drawing.Point(88, 56);
			this.comboBoxEdit_Grade.Name = "comboBoxEdit_Grade";
			// 
			// comboBoxEdit_Grade.Properties
			// 
			this.comboBoxEdit_Grade.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																													   new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.comboBoxEdit_Grade.Properties.Items.AddRange(new object[] {
																			   "全部"});
			this.comboBoxEdit_Grade.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
			this.comboBoxEdit_Grade.Size = new System.Drawing.Size(80, 23);
			this.comboBoxEdit_Grade.TabIndex = 36;
			this.comboBoxEdit_Grade.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit_Grade_SelectedIndexChanged);
			// 
			// notePanel_Grade
			// 
			this.notePanel_Grade.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_Grade.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_Grade.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_Grade.ForeColor = System.Drawing.Color.Black;
			this.notePanel_Grade.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_Grade.Location = new System.Drawing.Point(16, 56);
			this.notePanel_Grade.MaxRows = 5;
			this.notePanel_Grade.Name = "notePanel_Grade";
			this.notePanel_Grade.ParentAutoHeight = true;
			this.notePanel_Grade.Size = new System.Drawing.Size(64, 22);
			this.notePanel_Grade.TabIndex = 35;
			this.notePanel_Grade.TabStop = false;
			this.notePanel_Grade.Text = "年  级:";
			// 
			// notePanel_FinanQuery
			// 
			this.notePanel_FinanQuery.BackColor = System.Drawing.Color.LightGoldenrodYellow;
			this.notePanel_FinanQuery.Dock = System.Windows.Forms.DockStyle.Top;
			this.notePanel_FinanQuery.ForeColor = System.Drawing.Color.OrangeRed;
			this.notePanel_FinanQuery.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_FinanQuery.Location = new System.Drawing.Point(3, 18);
			this.notePanel_FinanQuery.MaxRows = 5;
			this.notePanel_FinanQuery.Name = "notePanel_FinanQuery";
			this.notePanel_FinanQuery.ParentAutoHeight = true;
			this.notePanel_FinanQuery.Size = new System.Drawing.Size(181, 23);
			this.notePanel_FinanQuery.TabIndex = 19;
			this.notePanel_FinanQuery.TabStop = false;
			this.notePanel_FinanQuery.Text = "您要查找哪个班级?";
			// 
			// gridControl_FinanInfo
			// 
			this.gridControl_FinanInfo.Dock = System.Windows.Forms.DockStyle.Fill;
			// 
			// gridControl_FinanInfo.EmbeddedNavigator
			// 
			this.gridControl_FinanInfo.EmbeddedNavigator.Name = "";
			this.gridControl_FinanInfo.Location = new System.Drawing.Point(0, 40);
			this.gridControl_FinanInfo.MainView = this.advBandedGridView1;
			this.gridControl_FinanInfo.Name = "gridControl_FinanInfo";
			this.gridControl_FinanInfo.Size = new System.Drawing.Size(569, 471);
			this.gridControl_FinanInfo.TabIndex = 1;
			this.gridControl_FinanInfo.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
																												 this.advBandedGridView1,
																												 this.gridView1});
			this.gridControl_FinanInfo.Load += new System.EventHandler(this.gridControl_FinanInfo_Load);
			// 
			// advBandedGridView1
			// 
			this.advBandedGridView1.Bands.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.GridBand[] {
																										   this.gridBand1,
																										   this.gridBand2,
																										   this.gridBand3,
																										   this.gridBand4,
																										   this.gridBand5});
			this.advBandedGridView1.Columns.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn[] {
																													 this.bandedGridColumn1,
																													 this.bandedGridColumn2,
																													 this.bandedGridColumn3,
																													 this.bandedGridColumn4,
																													 this.bandedGridColumn5,
																													 this.bandedGridColumn6,
																													 this.bandedGridColumn7,
																													 this.bandedGridColumn8,
																													 this.bandedGridColumn9,
																													 this.bandedGridColumn10,
																													 this.bandedGridColumn11,
																													 this.bandedGridColumn12,
																													 this.bandedGridColumn13,
																													 this.bandedGridColumn14,
																													 this.bandedGridColumn15});
			this.advBandedGridView1.GridControl = this.gridControl_FinanInfo;
			this.advBandedGridView1.Name = "advBandedGridView1";
			this.advBandedGridView1.OptionsCustomization.AllowFilter = false;
			this.advBandedGridView1.OptionsView.ShowFilterPanel = false;
			this.advBandedGridView1.OptionsView.ShowGroupPanel = false;
			// 
			// gridBand1
			// 
			this.gridBand1.AppearanceHeader.ForeColor = System.Drawing.Color.Red;
			this.gridBand1.AppearanceHeader.Options.UseForeColor = true;
			this.gridBand1.AppearanceHeader.Options.UseTextOptions = true;
			this.gridBand1.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridBand1.Caption = "学生信息";
			this.gridBand1.Columns.Add(this.bandedGridColumn15);
			this.gridBand1.Columns.Add(this.bandedGridColumn1);
			this.gridBand1.Columns.Add(this.bandedGridColumn2);
			this.gridBand1.Name = "gridBand1";
			this.gridBand1.Width = 150;
			// 
			// bandedGridColumn15
			// 
			this.bandedGridColumn15.AppearanceCell.Options.UseTextOptions = true;
			this.bandedGridColumn15.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn15.AppearanceHeader.Options.UseTextOptions = true;
			this.bandedGridColumn15.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn15.AutoFillDown = true;
			this.bandedGridColumn15.Caption = "学号";
			this.bandedGridColumn15.FieldName = "info_stuNumber";
			this.bandedGridColumn15.Name = "bandedGridColumn15";
			this.bandedGridColumn15.OptionsColumn.AllowEdit = false;
			this.bandedGridColumn15.OptionsColumn.AllowFocus = false;
			this.bandedGridColumn15.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn15.OptionsColumn.AllowIncrementalSearch = false;
			this.bandedGridColumn15.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn15.OptionsColumn.AllowMove = false;
			this.bandedGridColumn15.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.bandedGridColumn15.OptionsColumn.FixedWidth = true;
			this.bandedGridColumn15.OptionsColumn.ReadOnly = true;
			this.bandedGridColumn15.OptionsColumn.ShowInCustomizationForm = false;
			this.bandedGridColumn15.Visible = true;
			this.bandedGridColumn15.Width = 50;
			// 
			// bandedGridColumn1
			// 
			this.bandedGridColumn1.AppearanceCell.Options.UseTextOptions = true;
			this.bandedGridColumn1.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn1.AppearanceHeader.Options.UseTextOptions = true;
			this.bandedGridColumn1.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn1.AutoFillDown = true;
			this.bandedGridColumn1.Caption = "姓名";
			this.bandedGridColumn1.FieldName = "info_stuName";
			this.bandedGridColumn1.Name = "bandedGridColumn1";
			this.bandedGridColumn1.OptionsColumn.AllowEdit = false;
			this.bandedGridColumn1.OptionsColumn.AllowFocus = false;
			this.bandedGridColumn1.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn1.OptionsColumn.AllowIncrementalSearch = false;
			this.bandedGridColumn1.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn1.OptionsColumn.AllowMove = false;
			this.bandedGridColumn1.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn1.OptionsColumn.FixedWidth = true;
			this.bandedGridColumn1.OptionsColumn.ReadOnly = true;
			this.bandedGridColumn1.OptionsColumn.ShowInCustomizationForm = false;
			this.bandedGridColumn1.Visible = true;
			this.bandedGridColumn1.Width = 50;
			// 
			// bandedGridColumn2
			// 
			this.bandedGridColumn2.AppearanceCell.Options.UseTextOptions = true;
			this.bandedGridColumn2.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn2.AppearanceHeader.Options.UseTextOptions = true;
			this.bandedGridColumn2.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn2.AutoFillDown = true;
			this.bandedGridColumn2.Caption = "班级";
			this.bandedGridColumn2.FieldName = "info_className";
			this.bandedGridColumn2.MinWidth = 10;
			this.bandedGridColumn2.Name = "bandedGridColumn2";
			this.bandedGridColumn2.OptionsColumn.AllowEdit = false;
			this.bandedGridColumn2.OptionsColumn.AllowFocus = false;
			this.bandedGridColumn2.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn2.OptionsColumn.AllowIncrementalSearch = false;
			this.bandedGridColumn2.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn2.OptionsColumn.AllowMove = false;
			this.bandedGridColumn2.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn2.OptionsColumn.FixedWidth = true;
			this.bandedGridColumn2.OptionsColumn.ReadOnly = true;
			this.bandedGridColumn2.OptionsColumn.ShowInCustomizationForm = false;
			this.bandedGridColumn2.Visible = true;
			this.bandedGridColumn2.Width = 50;
			// 
			// gridBand2
			// 
			this.gridBand2.AppearanceHeader.ForeColor = System.Drawing.Color.Red;
			this.gridBand2.AppearanceHeader.Options.UseForeColor = true;
			this.gridBand2.AppearanceHeader.Options.UseTextOptions = true;
			this.gridBand2.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridBand2.Caption = "本月结算";
			this.gridBand2.Columns.Add(this.bandedGridColumn3);
			this.gridBand2.Columns.Add(this.bandedGridColumn4);
			this.gridBand2.Name = "gridBand2";
			this.gridBand2.Width = 120;
			// 
			// bandedGridColumn3
			// 
			this.bandedGridColumn3.AppearanceCell.Options.UseTextOptions = true;
			this.bandedGridColumn3.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn3.AppearanceHeader.Options.UseTextOptions = true;
			this.bandedGridColumn3.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn3.AutoFillDown = true;
			this.bandedGridColumn3.Caption = "应交天数";
			this.bandedGridColumn3.FieldName = "info_needHandDays";
			this.bandedGridColumn3.Name = "bandedGridColumn3";
			this.bandedGridColumn3.OptionsColumn.AllowEdit = false;
			this.bandedGridColumn3.OptionsColumn.AllowFocus = false;
			this.bandedGridColumn3.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn3.OptionsColumn.AllowIncrementalSearch = false;
			this.bandedGridColumn3.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn3.OptionsColumn.AllowMove = false;
			this.bandedGridColumn3.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.bandedGridColumn3.OptionsColumn.FixedWidth = true;
			this.bandedGridColumn3.OptionsColumn.ReadOnly = true;
			this.bandedGridColumn3.OptionsColumn.ShowInCustomizationForm = false;
			this.bandedGridColumn3.Visible = true;
			this.bandedGridColumn3.Width = 60;
			// 
			// bandedGridColumn4
			// 
			this.bandedGridColumn4.AppearanceCell.Options.UseTextOptions = true;
			this.bandedGridColumn4.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn4.AppearanceHeader.Options.UseTextOptions = true;
			this.bandedGridColumn4.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn4.AutoFillDown = true;
			this.bandedGridColumn4.Caption = "停伙天数";
			this.bandedGridColumn4.FieldName = "info_messStopDays";
			this.bandedGridColumn4.Name = "bandedGridColumn4";
			this.bandedGridColumn4.OptionsColumn.AllowEdit = false;
			this.bandedGridColumn4.OptionsColumn.AllowFocus = false;
			this.bandedGridColumn4.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn4.OptionsColumn.AllowIncrementalSearch = false;
			this.bandedGridColumn4.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn4.OptionsColumn.AllowMove = false;
			this.bandedGridColumn4.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.bandedGridColumn4.OptionsColumn.FixedWidth = true;
			this.bandedGridColumn4.OptionsColumn.ReadOnly = true;
			this.bandedGridColumn4.OptionsColumn.ShowInCustomizationForm = false;
			this.bandedGridColumn4.Visible = true;
			this.bandedGridColumn4.Width = 60;
			// 
			// gridBand3
			// 
			this.gridBand3.AppearanceHeader.ForeColor = System.Drawing.Color.Red;
			this.gridBand3.AppearanceHeader.Options.UseForeColor = true;
			this.gridBand3.AppearanceHeader.Options.UseTextOptions = true;
			this.gridBand3.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridBand3.Caption = "各项费用";
			this.gridBand3.Columns.Add(this.bandedGridColumn5);
			this.gridBand3.Columns.Add(this.bandedGridColumn7);
			this.gridBand3.Columns.Add(this.bandedGridColumn6);
			this.gridBand3.Columns.Add(this.bandedGridColumn9);
			this.gridBand3.Columns.Add(this.bandedGridColumn8);
			this.gridBand3.Columns.Add(this.bandedGridColumn10);
			this.gridBand3.Name = "gridBand3";
			this.gridBand3.Width = 195;
			// 
			// bandedGridColumn5
			// 
			this.bandedGridColumn5.AppearanceCell.Options.UseTextOptions = true;
			this.bandedGridColumn5.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn5.AppearanceCell.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
			this.bandedGridColumn5.AppearanceHeader.Options.UseTextOptions = true;
			this.bandedGridColumn5.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn5.Caption = "管理费";
			this.bandedGridColumn5.FieldName = "info_admCharge";
			this.bandedGridColumn5.Name = "bandedGridColumn5";
			this.bandedGridColumn5.OptionsColumn.AllowEdit = false;
			this.bandedGridColumn5.OptionsColumn.AllowFocus = false;
			this.bandedGridColumn5.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn5.OptionsColumn.AllowIncrementalSearch = false;
			this.bandedGridColumn5.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn5.OptionsColumn.AllowMove = false;
			this.bandedGridColumn5.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn5.OptionsColumn.FixedWidth = true;
			this.bandedGridColumn5.OptionsColumn.ReadOnly = true;
			this.bandedGridColumn5.OptionsColumn.ShowInCustomizationForm = false;
			this.bandedGridColumn5.Visible = true;
			this.bandedGridColumn5.Width = 65;
			// 
			// bandedGridColumn7
			// 
			this.bandedGridColumn7.AppearanceCell.Options.UseTextOptions = true;
			this.bandedGridColumn7.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn7.AppearanceHeader.Options.UseTextOptions = true;
			this.bandedGridColumn7.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn7.Caption = "伙食费";
			this.bandedGridColumn7.FieldName = "info_messCharge";
			this.bandedGridColumn7.Name = "bandedGridColumn7";
			this.bandedGridColumn7.OptionsColumn.AllowEdit = false;
			this.bandedGridColumn7.OptionsColumn.AllowFocus = false;
			this.bandedGridColumn7.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn7.OptionsColumn.AllowIncrementalSearch = false;
			this.bandedGridColumn7.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn7.OptionsColumn.AllowMove = false;
			this.bandedGridColumn7.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn7.OptionsColumn.FixedWidth = true;
			this.bandedGridColumn7.OptionsColumn.ReadOnly = true;
			this.bandedGridColumn7.OptionsColumn.ShowInCustomizationForm = false;
			this.bandedGridColumn7.Visible = true;
			this.bandedGridColumn7.Width = 65;
			// 
			// bandedGridColumn6
			// 
			this.bandedGridColumn6.AppearanceCell.Options.UseTextOptions = true;
			this.bandedGridColumn6.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn6.AppearanceHeader.Options.UseTextOptions = true;
			this.bandedGridColumn6.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn6.Caption = "晚托费";
			this.bandedGridColumn6.FieldName = "info_nightCharge";
			this.bandedGridColumn6.Name = "bandedGridColumn6";
			this.bandedGridColumn6.OptionsColumn.AllowEdit = false;
			this.bandedGridColumn6.OptionsColumn.AllowFocus = false;
			this.bandedGridColumn6.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn6.OptionsColumn.AllowIncrementalSearch = false;
			this.bandedGridColumn6.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn6.OptionsColumn.AllowMove = false;
			this.bandedGridColumn6.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn6.OptionsColumn.FixedWidth = true;
			this.bandedGridColumn6.OptionsColumn.ReadOnly = true;
			this.bandedGridColumn6.OptionsColumn.ShowInCustomizationForm = false;
			this.bandedGridColumn6.Visible = true;
			this.bandedGridColumn6.Width = 65;
			// 
			// bandedGridColumn9
			// 
			this.bandedGridColumn9.AppearanceCell.Options.UseTextOptions = true;
			this.bandedGridColumn9.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn9.AppearanceHeader.Options.UseTextOptions = true;
			this.bandedGridColumn9.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn9.Caption = "代办费";
			this.bandedGridColumn9.FieldName = "info_commCharge";
			this.bandedGridColumn9.Name = "bandedGridColumn9";
			this.bandedGridColumn9.OptionsColumn.AllowEdit = false;
			this.bandedGridColumn9.OptionsColumn.AllowFocus = false;
			this.bandedGridColumn9.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn9.OptionsColumn.AllowIncrementalSearch = false;
			this.bandedGridColumn9.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn9.OptionsColumn.AllowMove = false;
			this.bandedGridColumn9.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn9.OptionsColumn.FixedWidth = true;
			this.bandedGridColumn9.OptionsColumn.ReadOnly = true;
			this.bandedGridColumn9.OptionsColumn.ShowInCustomizationForm = false;
			this.bandedGridColumn9.RowIndex = 1;
			this.bandedGridColumn9.Visible = true;
			this.bandedGridColumn9.Width = 65;
			// 
			// bandedGridColumn8
			// 
			this.bandedGridColumn8.AppearanceCell.Options.UseTextOptions = true;
			this.bandedGridColumn8.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn8.AppearanceHeader.Options.UseTextOptions = true;
			this.bandedGridColumn8.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn8.Caption = "牛奶费";
			this.bandedGridColumn8.FieldName = "info_milkCharge";
			this.bandedGridColumn8.Name = "bandedGridColumn8";
			this.bandedGridColumn8.OptionsColumn.AllowEdit = false;
			this.bandedGridColumn8.OptionsColumn.AllowFocus = false;
			this.bandedGridColumn8.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn8.OptionsColumn.AllowIncrementalSearch = false;
			this.bandedGridColumn8.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn8.OptionsColumn.AllowMove = false;
			this.bandedGridColumn8.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn8.OptionsColumn.FixedWidth = true;
			this.bandedGridColumn8.OptionsColumn.ReadOnly = true;
			this.bandedGridColumn8.OptionsColumn.ShowInCustomizationForm = false;
			this.bandedGridColumn8.RowIndex = 1;
			this.bandedGridColumn8.Visible = true;
			this.bandedGridColumn8.Width = 65;
			// 
			// bandedGridColumn10
			// 
			this.bandedGridColumn10.AppearanceCell.Options.UseTextOptions = true;
			this.bandedGridColumn10.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn10.AppearanceHeader.Options.UseTextOptions = true;
			this.bandedGridColumn10.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn10.Caption = "附加费";
			this.bandedGridColumn10.FieldName = "info_extraCharge";
			this.bandedGridColumn10.Name = "bandedGridColumn10";
			this.bandedGridColumn10.OptionsColumn.AllowEdit = false;
			this.bandedGridColumn10.OptionsColumn.AllowFocus = false;
			this.bandedGridColumn10.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn10.OptionsColumn.AllowIncrementalSearch = false;
			this.bandedGridColumn10.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn10.OptionsColumn.AllowMove = false;
			this.bandedGridColumn10.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn10.OptionsColumn.FixedWidth = true;
			this.bandedGridColumn10.OptionsColumn.ReadOnly = true;
			this.bandedGridColumn10.OptionsColumn.ShowInCustomizationForm = false;
			this.bandedGridColumn10.RowIndex = 1;
			this.bandedGridColumn10.Visible = true;
			this.bandedGridColumn10.Width = 65;
			// 
			// gridBand4
			// 
			this.gridBand4.AppearanceHeader.ForeColor = System.Drawing.Color.Red;
			this.gridBand4.AppearanceHeader.Options.UseForeColor = true;
			this.gridBand4.AppearanceHeader.Options.UseTextOptions = true;
			this.gridBand4.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridBand4.Caption = "退费信息";
			this.gridBand4.Columns.Add(this.bandedGridColumn12);
			this.gridBand4.Columns.Add(this.bandedGridColumn11);
			this.gridBand4.Name = "gridBand4";
			this.gridBand4.Width = 75;
			// 
			// bandedGridColumn12
			// 
			this.bandedGridColumn12.AppearanceCell.Options.UseTextOptions = true;
			this.bandedGridColumn12.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn12.AppearanceHeader.Options.UseTextOptions = true;
			this.bandedGridColumn12.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn12.Caption = "管理退费";
			this.bandedGridColumn12.FieldName = "info_admRestoreCharge";
			this.bandedGridColumn12.Name = "bandedGridColumn12";
			this.bandedGridColumn12.OptionsColumn.AllowEdit = false;
			this.bandedGridColumn12.OptionsColumn.AllowFocus = false;
			this.bandedGridColumn12.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn12.OptionsColumn.AllowIncrementalSearch = false;
			this.bandedGridColumn12.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn12.OptionsColumn.AllowMove = false;
			this.bandedGridColumn12.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn12.OptionsColumn.FixedWidth = true;
			this.bandedGridColumn12.OptionsColumn.ReadOnly = true;
			this.bandedGridColumn12.OptionsColumn.ShowInCustomizationForm = false;
			this.bandedGridColumn12.Visible = true;
			// 
			// bandedGridColumn11
			// 
			this.bandedGridColumn11.AppearanceCell.Options.UseTextOptions = true;
			this.bandedGridColumn11.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn11.AppearanceHeader.Options.UseTextOptions = true;
			this.bandedGridColumn11.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn11.Caption = "伙食退费";
			this.bandedGridColumn11.FieldName = "info_messRestoreCharge";
			this.bandedGridColumn11.Name = "bandedGridColumn11";
			this.bandedGridColumn11.OptionsColumn.AllowEdit = false;
			this.bandedGridColumn11.OptionsColumn.AllowFocus = false;
			this.bandedGridColumn11.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn11.OptionsColumn.AllowIncrementalSearch = false;
			this.bandedGridColumn11.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn11.OptionsColumn.AllowMove = false;
			this.bandedGridColumn11.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn11.OptionsColumn.FixedWidth = true;
			this.bandedGridColumn11.OptionsColumn.ReadOnly = true;
			this.bandedGridColumn11.OptionsColumn.ShowInCustomizationForm = false;
			this.bandedGridColumn11.RowIndex = 1;
			this.bandedGridColumn11.Visible = true;
			// 
			// gridBand5
			// 
			this.gridBand5.AppearanceHeader.ForeColor = System.Drawing.Color.Red;
			this.gridBand5.AppearanceHeader.Options.UseForeColor = true;
			this.gridBand5.AppearanceHeader.Options.UseTextOptions = true;
			this.gridBand5.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridBand5.Caption = "备注信息";
			this.gridBand5.Columns.Add(this.bandedGridColumn13);
			this.gridBand5.Columns.Add(this.bandedGridColumn14);
			this.gridBand5.Name = "gridBand5";
			this.gridBand5.Width = 80;
			// 
			// bandedGridColumn13
			// 
			this.bandedGridColumn13.AppearanceCell.Options.UseTextOptions = true;
			this.bandedGridColumn13.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn13.AppearanceHeader.Options.UseTextOptions = true;
			this.bandedGridColumn13.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn13.Caption = "实收金额";
			this.bandedGridColumn13.FieldName = "info_currency";
			this.bandedGridColumn13.Name = "bandedGridColumn13";
			this.bandedGridColumn13.OptionsColumn.AllowEdit = false;
			this.bandedGridColumn13.OptionsColumn.AllowFocus = false;
			this.bandedGridColumn13.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn13.OptionsColumn.AllowIncrementalSearch = false;
			this.bandedGridColumn13.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn13.OptionsColumn.AllowMove = false;
			this.bandedGridColumn13.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn13.OptionsColumn.FixedWidth = true;
			this.bandedGridColumn13.OptionsColumn.ReadOnly = true;
			this.bandedGridColumn13.OptionsColumn.ShowInCustomizationForm = false;
			this.bandedGridColumn13.Visible = true;
			this.bandedGridColumn13.Width = 80;
			// 
			// bandedGridColumn14
			// 
			this.bandedGridColumn14.AppearanceCell.Options.UseTextOptions = true;
			this.bandedGridColumn14.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn14.AppearanceHeader.Options.UseTextOptions = true;
			this.bandedGridColumn14.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn14.Caption = "备注";
			this.bandedGridColumn14.FieldName = "info_remark";
			this.bandedGridColumn14.Name = "bandedGridColumn14";
			this.bandedGridColumn14.OptionsColumn.AllowEdit = false;
			this.bandedGridColumn14.OptionsColumn.AllowFocus = false;
			this.bandedGridColumn14.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn14.OptionsColumn.AllowIncrementalSearch = false;
			this.bandedGridColumn14.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn14.OptionsColumn.AllowMove = false;
			this.bandedGridColumn14.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn14.OptionsColumn.FixedWidth = true;
			this.bandedGridColumn14.OptionsColumn.ReadOnly = true;
			this.bandedGridColumn14.OptionsColumn.ShowInCustomizationForm = false;
			this.bandedGridColumn14.RowIndex = 1;
			this.bandedGridColumn14.Visible = true;
			this.bandedGridColumn14.Width = 80;
			// 
			// gridView1
			// 
			this.gridView1.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
																							 this.gridColumn2,
																							 this.gridColumn1,
																							 this.gridColumn4,
																							 this.gridColumn5,
																							 this.gridColumn6,
																							 this.gridColumn7,
																							 this.gridColumn8,
																							 this.gridColumn9,
																							 this.gridColumn10,
																							 this.gridColumn13,
																							 this.gridColumn11,
																							 this.gridColumn12,
																							 this.gridColumn14,
																							 this.gridColumn15});
			this.gridView1.GridControl = this.gridControl_FinanInfo;
			this.gridView1.Name = "gridView1";
			// 
			// gridColumn2
			// 
			this.gridColumn2.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn2.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn2.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn2.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn2.Caption = "姓名";
			this.gridColumn2.Name = "gridColumn2";
			this.gridColumn2.OptionsColumn.AllowEdit = false;
			this.gridColumn2.OptionsColumn.AllowFocus = false;
			this.gridColumn2.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn2.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn2.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn2.OptionsColumn.AllowMove = false;
			this.gridColumn2.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn2.OptionsColumn.FixedWidth = true;
			this.gridColumn2.OptionsColumn.ReadOnly = true;
			this.gridColumn2.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn2.Visible = true;
			this.gridColumn2.VisibleIndex = 0;
			// 
			// gridColumn1
			// 
			this.gridColumn1.Caption = "班级";
			this.gridColumn1.Name = "gridColumn1";
			this.gridColumn1.Visible = true;
			this.gridColumn1.VisibleIndex = 13;
			this.gridColumn1.Width = 20;
			// 
			// gridColumn4
			// 
			this.gridColumn4.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn4.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn4.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn4.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn4.Caption = "应交天数";
			this.gridColumn4.Name = "gridColumn4";
			this.gridColumn4.OptionsColumn.AllowEdit = false;
			this.gridColumn4.OptionsColumn.AllowFocus = false;
			this.gridColumn4.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn4.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn4.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn4.OptionsColumn.AllowMove = false;
			this.gridColumn4.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn4.OptionsColumn.FixedWidth = true;
			this.gridColumn4.OptionsColumn.ReadOnly = true;
			this.gridColumn4.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn4.Visible = true;
			this.gridColumn4.VisibleIndex = 1;
			this.gridColumn4.Width = 106;
			// 
			// gridColumn5
			// 
			this.gridColumn5.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn5.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn5.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn5.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn5.Caption = "停伙天数";
			this.gridColumn5.Name = "gridColumn5";
			this.gridColumn5.OptionsColumn.AllowEdit = false;
			this.gridColumn5.OptionsColumn.AllowFocus = false;
			this.gridColumn5.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn5.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn5.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn5.OptionsColumn.AllowMove = false;
			this.gridColumn5.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn5.OptionsColumn.FixedWidth = true;
			this.gridColumn5.OptionsColumn.ReadOnly = true;
			this.gridColumn5.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn5.Visible = true;
			this.gridColumn5.VisibleIndex = 2;
			this.gridColumn5.Width = 83;
			// 
			// gridColumn6
			// 
			this.gridColumn6.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn6.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn6.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn6.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn6.Caption = "管理费";
			this.gridColumn6.Name = "gridColumn6";
			this.gridColumn6.OptionsColumn.AllowEdit = false;
			this.gridColumn6.OptionsColumn.AllowFocus = false;
			this.gridColumn6.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn6.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn6.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn6.OptionsColumn.AllowMove = false;
			this.gridColumn6.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn6.OptionsColumn.FixedWidth = true;
			this.gridColumn6.OptionsColumn.ReadOnly = true;
			this.gridColumn6.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn6.Visible = true;
			this.gridColumn6.VisibleIndex = 3;
			// 
			// gridColumn7
			// 
			this.gridColumn7.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn7.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn7.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn7.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn7.Caption = "晚托费";
			this.gridColumn7.Name = "gridColumn7";
			this.gridColumn7.OptionsColumn.AllowEdit = false;
			this.gridColumn7.OptionsColumn.AllowFocus = false;
			this.gridColumn7.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn7.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn7.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn7.OptionsColumn.AllowMove = false;
			this.gridColumn7.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn7.OptionsColumn.FixedWidth = true;
			this.gridColumn7.OptionsColumn.ReadOnly = true;
			this.gridColumn7.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn7.Visible = true;
			this.gridColumn7.VisibleIndex = 4;
			// 
			// gridColumn8
			// 
			this.gridColumn8.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn8.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn8.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn8.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn8.Caption = "伙食费";
			this.gridColumn8.Name = "gridColumn8";
			this.gridColumn8.OptionsColumn.AllowEdit = false;
			this.gridColumn8.OptionsColumn.AllowFocus = false;
			this.gridColumn8.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn8.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn8.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn8.OptionsColumn.AllowMove = false;
			this.gridColumn8.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn8.OptionsColumn.FixedWidth = true;
			this.gridColumn8.OptionsColumn.ReadOnly = true;
			this.gridColumn8.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn8.Visible = true;
			this.gridColumn8.VisibleIndex = 5;
			// 
			// gridColumn9
			// 
			this.gridColumn9.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn9.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn9.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn9.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn9.Caption = "牛奶费";
			this.gridColumn9.Name = "gridColumn9";
			this.gridColumn9.OptionsColumn.AllowEdit = false;
			this.gridColumn9.OptionsColumn.AllowFocus = false;
			this.gridColumn9.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn9.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn9.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn9.OptionsColumn.AllowMove = false;
			this.gridColumn9.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn9.OptionsColumn.FixedWidth = true;
			this.gridColumn9.OptionsColumn.ReadOnly = true;
			this.gridColumn9.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn9.Visible = true;
			this.gridColumn9.VisibleIndex = 6;
			this.gridColumn9.Width = 65;
			// 
			// gridColumn10
			// 
			this.gridColumn10.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn10.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn10.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn10.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn10.Caption = "代办费";
			this.gridColumn10.Name = "gridColumn10";
			this.gridColumn10.OptionsColumn.AllowEdit = false;
			this.gridColumn10.OptionsColumn.AllowFocus = false;
			this.gridColumn10.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn10.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn10.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn10.OptionsColumn.AllowMove = false;
			this.gridColumn10.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn10.OptionsColumn.FixedWidth = true;
			this.gridColumn10.OptionsColumn.ReadOnly = true;
			this.gridColumn10.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn10.Visible = true;
			this.gridColumn10.VisibleIndex = 7;
			// 
			// gridColumn13
			// 
			this.gridColumn13.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn13.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn13.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn13.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn13.Caption = "附加费";
			this.gridColumn13.Name = "gridColumn13";
			this.gridColumn13.OptionsColumn.AllowEdit = false;
			this.gridColumn13.OptionsColumn.AllowFocus = false;
			this.gridColumn13.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn13.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn13.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn13.OptionsColumn.AllowMove = false;
			this.gridColumn13.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn13.OptionsColumn.FixedWidth = true;
			this.gridColumn13.OptionsColumn.ReadOnly = true;
			this.gridColumn13.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn13.Visible = true;
			this.gridColumn13.VisibleIndex = 10;
			// 
			// gridColumn11
			// 
			this.gridColumn11.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn11.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn11.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn11.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn11.Caption = "伙食退费";
			this.gridColumn11.Name = "gridColumn11";
			this.gridColumn11.OptionsColumn.AllowEdit = false;
			this.gridColumn11.OptionsColumn.AllowFocus = false;
			this.gridColumn11.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn11.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn11.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn11.OptionsColumn.AllowMove = false;
			this.gridColumn11.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn11.OptionsColumn.FixedWidth = true;
			this.gridColumn11.OptionsColumn.ReadOnly = true;
			this.gridColumn11.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn11.Visible = true;
			this.gridColumn11.VisibleIndex = 8;
			// 
			// gridColumn12
			// 
			this.gridColumn12.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn12.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn12.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn12.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn12.Caption = "管理退费";
			this.gridColumn12.Name = "gridColumn12";
			this.gridColumn12.OptionsColumn.AllowEdit = false;
			this.gridColumn12.OptionsColumn.AllowFocus = false;
			this.gridColumn12.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn12.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn12.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn12.OptionsColumn.AllowMove = false;
			this.gridColumn12.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn12.OptionsColumn.FixedWidth = true;
			this.gridColumn12.OptionsColumn.ReadOnly = true;
			this.gridColumn12.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn12.Visible = true;
			this.gridColumn12.VisibleIndex = 9;
			// 
			// gridColumn14
			// 
			this.gridColumn14.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn14.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn14.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn14.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn14.Caption = "实收金额";
			this.gridColumn14.Name = "gridColumn14";
			this.gridColumn14.OptionsColumn.AllowEdit = false;
			this.gridColumn14.OptionsColumn.AllowFocus = false;
			this.gridColumn14.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn14.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn14.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn14.OptionsColumn.AllowMove = false;
			this.gridColumn14.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn14.OptionsColumn.FixedWidth = true;
			this.gridColumn14.OptionsColumn.ReadOnly = true;
			this.gridColumn14.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn14.Visible = true;
			this.gridColumn14.VisibleIndex = 11;
			// 
			// gridColumn15
			// 
			this.gridColumn15.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn15.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn15.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn15.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn15.Caption = "备注";
			this.gridColumn15.Name = "gridColumn15";
			this.gridColumn15.OptionsColumn.AllowEdit = false;
			this.gridColumn15.OptionsColumn.AllowFocus = false;
			this.gridColumn15.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn15.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn15.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn15.OptionsColumn.AllowMove = false;
			this.gridColumn15.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn15.OptionsColumn.FixedWidth = true;
			this.gridColumn15.OptionsColumn.ReadOnly = true;
			this.gridColumn15.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn15.Visible = true;
			this.gridColumn15.VisibleIndex = 12;
			// 
			// panelControl1
			// 
			this.panelControl1.Controls.Add(this.simpleButton_DeleteData);
			this.panelControl1.Controls.Add(this.simpleButton_DataModify);
			this.panelControl1.Controls.Add(this.simpleButton_ChargeSave);
			this.panelControl1.Controls.Add(this.simpleButton_History);
			this.panelControl1.Controls.Add(this.simpleButton_DataPrint);
			this.panelControl1.Controls.Add(this.simpleButton_MonthBalance);
			this.panelControl1.Dock = System.Windows.Forms.DockStyle.Top;
			this.panelControl1.Location = new System.Drawing.Point(0, 0);
			this.panelControl1.Name = "panelControl1";
			this.panelControl1.Size = new System.Drawing.Size(569, 40);
			this.panelControl1.TabIndex = 0;
			this.panelControl1.Text = "panelControl1";
			// 
			// simpleButton_DeleteData
			// 
			this.simpleButton_DeleteData.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.simpleButton_DeleteData.Appearance.ForeColor = System.Drawing.Color.DarkMagenta;
			this.simpleButton_DeleteData.Appearance.Options.UseFont = true;
			this.simpleButton_DeleteData.Appearance.Options.UseForeColor = true;
			this.simpleButton_DeleteData.Location = new System.Drawing.Point(336, 8);
			this.simpleButton_DeleteData.Name = "simpleButton_DeleteData";
			this.simpleButton_DeleteData.Size = new System.Drawing.Size(72, 26);
			this.simpleButton_DeleteData.TabIndex = 14;
			this.simpleButton_DeleteData.Tag = 4;
			this.simpleButton_DeleteData.Text = "存根删除";
			this.simpleButton_DeleteData.Click += new System.EventHandler(this.simpleButton_DeleteData_Click);
			// 
			// simpleButton_DataModify
			// 
			this.simpleButton_DataModify.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.simpleButton_DataModify.Appearance.ForeColor = System.Drawing.Color.DarkMagenta;
			this.simpleButton_DataModify.Appearance.Options.UseFont = true;
			this.simpleButton_DataModify.Appearance.Options.UseForeColor = true;
			this.simpleButton_DataModify.Location = new System.Drawing.Point(96, 8);
			this.simpleButton_DataModify.Name = "simpleButton_DataModify";
			this.simpleButton_DataModify.Size = new System.Drawing.Size(72, 26);
			this.simpleButton_DataModify.TabIndex = 13;
			this.simpleButton_DataModify.Tag = 4;
			this.simpleButton_DataModify.Text = "数据修改";
			this.simpleButton_DataModify.Click += new System.EventHandler(this.simpleButton_DataModify_Click);
			// 
			// simpleButton_ChargeSave
			// 
			this.simpleButton_ChargeSave.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.simpleButton_ChargeSave.Appearance.ForeColor = System.Drawing.Color.DarkMagenta;
			this.simpleButton_ChargeSave.Appearance.Options.UseFont = true;
			this.simpleButton_ChargeSave.Appearance.Options.UseForeColor = true;
			this.simpleButton_ChargeSave.Location = new System.Drawing.Point(256, 8);
			this.simpleButton_ChargeSave.Name = "simpleButton_ChargeSave";
			this.simpleButton_ChargeSave.Size = new System.Drawing.Size(72, 26);
			this.simpleButton_ChargeSave.TabIndex = 12;
			this.simpleButton_ChargeSave.Tag = 4;
			this.simpleButton_ChargeSave.Text = "费用存根";
			this.simpleButton_ChargeSave.Click += new System.EventHandler(this.simpleButton_ChargeSave_Click);
			// 
			// simpleButton_History
			// 
			this.simpleButton_History.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.simpleButton_History.Appearance.ForeColor = System.Drawing.Color.DarkMagenta;
			this.simpleButton_History.Appearance.Options.UseFont = true;
			this.simpleButton_History.Appearance.Options.UseForeColor = true;
			this.simpleButton_History.Location = new System.Drawing.Point(176, 8);
			this.simpleButton_History.Name = "simpleButton_History";
			this.simpleButton_History.Size = new System.Drawing.Size(72, 26);
			this.simpleButton_History.TabIndex = 11;
			this.simpleButton_History.Tag = 4;
			this.simpleButton_History.Text = "历史查询";
			this.simpleButton_History.Click += new System.EventHandler(this.simpleButton_History_Click);
			// 
			// simpleButton_DataPrint
			// 
			this.simpleButton_DataPrint.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.simpleButton_DataPrint.Appearance.ForeColor = System.Drawing.Color.DarkMagenta;
			this.simpleButton_DataPrint.Appearance.Options.UseFont = true;
			this.simpleButton_DataPrint.Appearance.Options.UseForeColor = true;
			this.simpleButton_DataPrint.Location = new System.Drawing.Point(416, 8);
			this.simpleButton_DataPrint.Name = "simpleButton_DataPrint";
			this.simpleButton_DataPrint.Size = new System.Drawing.Size(72, 26);
			this.simpleButton_DataPrint.TabIndex = 9;
			this.simpleButton_DataPrint.Tag = 4;
			this.simpleButton_DataPrint.Text = "数据打印";
			this.simpleButton_DataPrint.Click += new System.EventHandler(this.simpleButton_DataPrint_Click);
			// 
			// simpleButton_MonthBalance
			// 
			this.simpleButton_MonthBalance.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.simpleButton_MonthBalance.Appearance.ForeColor = System.Drawing.Color.DarkMagenta;
			this.simpleButton_MonthBalance.Appearance.Options.UseFont = true;
			this.simpleButton_MonthBalance.Appearance.Options.UseForeColor = true;
			this.simpleButton_MonthBalance.Location = new System.Drawing.Point(16, 8);
			this.simpleButton_MonthBalance.Name = "simpleButton_MonthBalance";
			this.simpleButton_MonthBalance.Size = new System.Drawing.Size(72, 26);
			this.simpleButton_MonthBalance.TabIndex = 8;
			this.simpleButton_MonthBalance.Tag = 4;
			this.simpleButton_MonthBalance.Text = "本月结算";
			this.simpleButton_MonthBalance.Click += new System.EventHandler(this.simpleButton_MonthBalance_Click);
			// 
			// FinanManagement
			// 
			this.Controls.Add(this.splitContainerControl1);
			this.Controls.Add(this.notePanel_WelcomePanel);
			this.Name = "FinanManagement";
			this.Size = new System.Drawing.Size(772, 540);
			((System.ComponentModel.ISupportInitialize)(this.splitContainerControl1)).EndInit();
			this.splitContainerControl1.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.groupControl_FinanInfo)).EndInit();
			this.groupControl_FinanInfo.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.memoEdit_Remark.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_ExtraCharge.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_CommCharge.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MilkCharge.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_NightCharge.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_AdmCharge.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MessCharge.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_AdmRestoreDays.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MessRestoreDays.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_FinanQuery)).EndInit();
			this.groupControl_FinanQuery.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.dateEdit_SearchMonth.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.dateEdit_BalanceMonth.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_Number.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_Name.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_Class.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_Grade.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.gridControl_FinanInfo)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.advBandedGridView1)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
			this.panelControl1.ResumeLayout(false);
			this.ResumeLayout(false);

		}
示例#18
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.lblName      = new System.Windows.Forms.Label();
     this.cboBlockList = new DevExpress.XtraEditors.ComboBoxEdit();
     this.btnAdd       = new DevExpress.XtraEditors.SimpleButton();
     this.btnInsert    = new DevExpress.XtraEditors.SimpleButton();
     this.btnDuplicate = new DevExpress.XtraEditors.SimpleButton();
     this.btnDelete    = new DevExpress.XtraEditors.SimpleButton();
     this.btnDeleteAll = new DevExpress.XtraEditors.SimpleButton();
     ((System.ComponentModel.ISupportInitialize)(this.cboBlockList.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // lblName
     //
     this.lblName.Location  = new System.Drawing.Point(4, 5);
     this.lblName.Name      = "lblName";
     this.lblName.Size      = new System.Drawing.Size(128, 16);
     this.lblName.TabIndex  = 2;
     this.lblName.Text      = "Block";
     this.lblName.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // cboBlockList
     //
     this.cboBlockList.EditValue = "";
     this.cboBlockList.Location  = new System.Drawing.Point(136, 4);
     this.cboBlockList.Name      = "cboBlockList";
     //
     // cboBlockList.Properties
     //
     this.cboBlockList.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.cboBlockList.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
     this.cboBlockList.Size                  = new System.Drawing.Size(269, 20);
     this.cboBlockList.TabIndex              = 4;
     this.cboBlockList.SelectedIndexChanged += new System.EventHandler(this.cboBlockList_SelectedIndexChanged);
     //
     // btnAdd
     //
     this.btnAdd.Location = new System.Drawing.Point(136, 28);
     this.btnAdd.Name     = "btnAdd";
     this.btnAdd.Size     = new System.Drawing.Size(40, 23);
     this.btnAdd.TabIndex = 5;
     this.btnAdd.Text     = "Add";
     this.btnAdd.Click   += new System.EventHandler(this.btnAdd_Click);
     //
     // btnInsert
     //
     this.btnInsert.Location = new System.Drawing.Point(180, 28);
     this.btnInsert.Name     = "btnInsert";
     this.btnInsert.Size     = new System.Drawing.Size(44, 23);
     this.btnInsert.TabIndex = 6;
     this.btnInsert.Text     = "Insert";
     //
     // btnDuplicate
     //
     this.btnDuplicate.Location = new System.Drawing.Point(228, 28);
     this.btnDuplicate.Name     = "btnDuplicate";
     this.btnDuplicate.Size     = new System.Drawing.Size(60, 23);
     this.btnDuplicate.TabIndex = 7;
     this.btnDuplicate.Text     = "Duplicate";
     //
     // btnDelete
     //
     this.btnDelete.Location = new System.Drawing.Point(292, 28);
     this.btnDelete.Name     = "btnDelete";
     this.btnDelete.Size     = new System.Drawing.Size(48, 23);
     this.btnDelete.TabIndex = 8;
     this.btnDelete.Text     = "Delete";
     this.btnDelete.Click   += new System.EventHandler(this.btnDelete_Click);
     //
     // btnDeleteAll
     //
     this.btnDeleteAll.Location = new System.Drawing.Point(344, 28);
     this.btnDeleteAll.Name     = "btnDeleteAll";
     this.btnDeleteAll.Size     = new System.Drawing.Size(60, 23);
     this.btnDeleteAll.TabIndex = 9;
     this.btnDeleteAll.Text     = "Delete All";
     this.btnDeleteAll.Click   += new System.EventHandler(this.btnDeleteAll_Click);
     //
     // Block
     //
     this.Appearance.BackColor            = System.Drawing.Color.Transparent;
     this.Appearance.Options.UseBackColor = true;
     this.Controls.Add(this.btnDeleteAll);
     this.Controls.Add(this.btnDelete);
     this.Controls.Add(this.btnDuplicate);
     this.Controls.Add(this.btnInsert);
     this.Controls.Add(this.btnAdd);
     this.Controls.Add(this.cboBlockList);
     this.Controls.Add(this.lblName);
     this.Name = "Block";
     this.Size = new System.Drawing.Size(412, 56);
     ((System.ComponentModel.ISupportInitialize)(this.cboBlockList.Properties)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.labelPointerLocation            = new System.Windows.Forms.Label();
     this.labelPointerX                   = new System.Windows.Forms.Label();
     this.labelPointerY                   = new System.Windows.Forms.Label();
     this.labelPointerZ                   = new System.Windows.Forms.Label();
     this.labelPointerXValue              = new System.Windows.Forms.Label();
     this.labelPointerYValue              = new System.Windows.Forms.Label();
     this.labelPointerZValue              = new System.Windows.Forms.Label();
     this.labelCameraLocation             = new System.Windows.Forms.Label();
     this.labelCameraZ                    = new System.Windows.Forms.Label();
     this.labelCameraY                    = new System.Windows.Forms.Label();
     this.labelCameraXValue               = new System.Windows.Forms.Label();
     this.labelCameraYValue               = new System.Windows.Forms.Label();
     this.labelCameraZValue               = new System.Windows.Forms.Label();
     this.labelCameraSpeedIndex           = new System.Windows.Forms.Label();
     this.labelCameraSpeedDesc            = new System.Windows.Forms.Label();
     this.labelCameraSpeed                = new System.Windows.Forms.Label();
     this.simpleButtonAdvancedMapControls = new DevExpress.XtraEditors.SimpleButton();
     this.comboBoxEditMapRenderMode       = new DevExpress.XtraEditors.ComboBoxEdit();
     this.labelCameraSensitivityDesc      = new System.Windows.Forms.Label();
     this.labelCameraSensitivityIndex     = new System.Windows.Forms.Label();
     this.labelCameraSensitivity          = new System.Windows.Forms.Label();
     this.labelCameraX                    = new System.Windows.Forms.Label();
     this.checkEditCollisionToggle        = new DevExpress.XtraEditors.CheckEdit();
     this.dockManager1                    = new DevExpress.XtraBars.Docking.DockManager();
     this.dockPanelMapRenderAdvDialog     = new DevExpress.XtraBars.Docking.DockPanel();
     this.dockPanel1_Container            = new DevExpress.XtraBars.Docking.ControlContainer();
     this.labelDebug = new System.Windows.Forms.Label();
     ((System.ComponentModel.ISupportInitialize)(this.comboBoxEditMapRenderMode.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEditCollisionToggle.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dockManager1)).BeginInit();
     this.dockPanelMapRenderAdvDialog.SuspendLayout();
     this.SuspendLayout();
     //
     // labelPointerLocation
     //
     this.labelPointerLocation.Font     = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Underline, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.labelPointerLocation.Location = new System.Drawing.Point(4, 4);
     this.labelPointerLocation.Name     = "labelPointerLocation";
     this.labelPointerLocation.Size     = new System.Drawing.Size(118, 16);
     this.labelPointerLocation.TabIndex = 0;
     this.labelPointerLocation.Text     = "Selection Location";
     //
     // labelPointerX
     //
     this.labelPointerX.CausesValidation = false;
     this.labelPointerX.Font             = new System.Drawing.Font("Microsoft Sans Serif", 7.5F, System.Drawing.FontStyle.Bold);
     this.labelPointerX.Location         = new System.Drawing.Point(4, 20);
     this.labelPointerX.Name             = "labelPointerX";
     this.labelPointerX.Size             = new System.Drawing.Size(16, 16);
     this.labelPointerX.TabIndex         = 1;
     this.labelPointerX.Text             = "X:";
     this.labelPointerX.TextAlign        = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // labelPointerY
     //
     this.labelPointerY.Font      = new System.Drawing.Font("Microsoft Sans Serif", 7.5F, System.Drawing.FontStyle.Bold);
     this.labelPointerY.Location  = new System.Drawing.Point(70, 20);
     this.labelPointerY.Name      = "labelPointerY";
     this.labelPointerY.Size      = new System.Drawing.Size(16, 16);
     this.labelPointerY.TabIndex  = 2;
     this.labelPointerY.Text      = "Y:";
     this.labelPointerY.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // labelPointerZ
     //
     this.labelPointerZ.Font      = new System.Drawing.Font("Microsoft Sans Serif", 7.5F, System.Drawing.FontStyle.Bold);
     this.labelPointerZ.Location  = new System.Drawing.Point(136, 20);
     this.labelPointerZ.Name      = "labelPointerZ";
     this.labelPointerZ.Size      = new System.Drawing.Size(14, 16);
     this.labelPointerZ.TabIndex  = 3;
     this.labelPointerZ.Text      = "Z:";
     this.labelPointerZ.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // labelPointerXValue
     //
     this.labelPointerXValue.Font        = new System.Drawing.Font("Microsoft Sans Serif", 7.25F);
     this.labelPointerXValue.ForeColor   = System.Drawing.Color.Red;
     this.labelPointerXValue.Location    = new System.Drawing.Point(18, 20);
     this.labelPointerXValue.Name        = "labelPointerXValue";
     this.labelPointerXValue.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.labelPointerXValue.Size        = new System.Drawing.Size(48, 16);
     this.labelPointerXValue.TabIndex    = 4;
     this.labelPointerXValue.Text        = "-0,000.00";
     this.labelPointerXValue.TextAlign   = System.Drawing.ContentAlignment.MiddleRight;
     //
     // labelPointerYValue
     //
     this.labelPointerYValue.Font        = new System.Drawing.Font("Microsoft Sans Serif", 7.25F);
     this.labelPointerYValue.ForeColor   = System.Drawing.Color.Red;
     this.labelPointerYValue.Location    = new System.Drawing.Point(84, 20);
     this.labelPointerYValue.Name        = "labelPointerYValue";
     this.labelPointerYValue.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.labelPointerYValue.Size        = new System.Drawing.Size(48, 16);
     this.labelPointerYValue.TabIndex    = 5;
     this.labelPointerYValue.Text        = "-0,000.00";
     this.labelPointerYValue.TextAlign   = System.Drawing.ContentAlignment.MiddleRight;
     //
     // labelPointerZValue
     //
     this.labelPointerZValue.Font        = new System.Drawing.Font("Microsoft Sans Serif", 7.25F);
     this.labelPointerZValue.ForeColor   = System.Drawing.Color.Red;
     this.labelPointerZValue.Location    = new System.Drawing.Point(148, 20);
     this.labelPointerZValue.Name        = "labelPointerZValue";
     this.labelPointerZValue.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.labelPointerZValue.Size        = new System.Drawing.Size(48, 16);
     this.labelPointerZValue.TabIndex    = 6;
     this.labelPointerZValue.Text        = "-0,000.00";
     this.labelPointerZValue.TextAlign   = System.Drawing.ContentAlignment.MiddleRight;
     //
     // labelCameraLocation
     //
     this.labelCameraLocation.Font     = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Underline, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.labelCameraLocation.Location = new System.Drawing.Point(4, 40);
     this.labelCameraLocation.Name     = "labelCameraLocation";
     this.labelCameraLocation.Size     = new System.Drawing.Size(114, 16);
     this.labelCameraLocation.TabIndex = 7;
     this.labelCameraLocation.Text     = "Camera Location";
     //
     // labelCameraZ
     //
     this.labelCameraZ.Font      = new System.Drawing.Font("Microsoft Sans Serif", 7.5F, System.Drawing.FontStyle.Bold);
     this.labelCameraZ.Location  = new System.Drawing.Point(136, 56);
     this.labelCameraZ.Name      = "labelCameraZ";
     this.labelCameraZ.Size      = new System.Drawing.Size(14, 16);
     this.labelCameraZ.TabIndex  = 10;
     this.labelCameraZ.Text      = "Z:";
     this.labelCameraZ.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // labelCameraY
     //
     this.labelCameraY.Font      = new System.Drawing.Font("Microsoft Sans Serif", 7.5F, System.Drawing.FontStyle.Bold);
     this.labelCameraY.Location  = new System.Drawing.Point(70, 56);
     this.labelCameraY.Name      = "labelCameraY";
     this.labelCameraY.Size      = new System.Drawing.Size(16, 16);
     this.labelCameraY.TabIndex  = 9;
     this.labelCameraY.Text      = "Y:";
     this.labelCameraY.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // labelCameraXValue
     //
     this.labelCameraXValue.Font        = new System.Drawing.Font("Microsoft Sans Serif", 7.25F);
     this.labelCameraXValue.ForeColor   = System.Drawing.Color.Red;
     this.labelCameraXValue.Location    = new System.Drawing.Point(18, 56);
     this.labelCameraXValue.Name        = "labelCameraXValue";
     this.labelCameraXValue.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.labelCameraXValue.Size        = new System.Drawing.Size(48, 16);
     this.labelCameraXValue.TabIndex    = 13;
     this.labelCameraXValue.Text        = "-0,000.00";
     this.labelCameraXValue.TextAlign   = System.Drawing.ContentAlignment.MiddleRight;
     //
     // labelCameraYValue
     //
     this.labelCameraYValue.Font        = new System.Drawing.Font("Microsoft Sans Serif", 7.25F);
     this.labelCameraYValue.ForeColor   = System.Drawing.Color.Red;
     this.labelCameraYValue.Location    = new System.Drawing.Point(84, 56);
     this.labelCameraYValue.Name        = "labelCameraYValue";
     this.labelCameraYValue.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.labelCameraYValue.Size        = new System.Drawing.Size(48, 16);
     this.labelCameraYValue.TabIndex    = 12;
     this.labelCameraYValue.Text        = "-0,000.00";
     this.labelCameraYValue.TextAlign   = System.Drawing.ContentAlignment.MiddleRight;
     //
     // labelCameraZValue
     //
     this.labelCameraZValue.Font        = new System.Drawing.Font("Microsoft Sans Serif", 7.25F);
     this.labelCameraZValue.ForeColor   = System.Drawing.Color.Red;
     this.labelCameraZValue.Location    = new System.Drawing.Point(148, 56);
     this.labelCameraZValue.Name        = "labelCameraZValue";
     this.labelCameraZValue.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.labelCameraZValue.Size        = new System.Drawing.Size(48, 16);
     this.labelCameraZValue.TabIndex    = 11;
     this.labelCameraZValue.Text        = "-0,000.00";
     this.labelCameraZValue.TextAlign   = System.Drawing.ContentAlignment.MiddleRight;
     //
     // labelCameraSpeedIndex
     //
     this.labelCameraSpeedIndex.Font        = new System.Drawing.Font("Microsoft Sans Serif", 7.25F);
     this.labelCameraSpeedIndex.ForeColor   = System.Drawing.Color.Green;
     this.labelCameraSpeedIndex.Location    = new System.Drawing.Point(200, 56);
     this.labelCameraSpeedIndex.Name        = "labelCameraSpeedIndex";
     this.labelCameraSpeedIndex.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.labelCameraSpeedIndex.Size        = new System.Drawing.Size(26, 16);
     this.labelCameraSpeedIndex.TabIndex    = 18;
     this.labelCameraSpeedIndex.Text        = "5x";
     this.labelCameraSpeedIndex.TextAlign   = System.Drawing.ContentAlignment.MiddleRight;
     //
     // labelCameraSpeedDesc
     //
     this.labelCameraSpeedDesc.Font      = new System.Drawing.Font("Microsoft Sans Serif", 7.25F);
     this.labelCameraSpeedDesc.Location  = new System.Drawing.Point(226, 56);
     this.labelCameraSpeedDesc.Name      = "labelCameraSpeedDesc";
     this.labelCameraSpeedDesc.Size      = new System.Drawing.Size(88, 16);
     this.labelCameraSpeedDesc.TabIndex  = 19;
     this.labelCameraSpeedDesc.Text      = "(12.0 wu/sec)";
     this.labelCameraSpeedDesc.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // labelCameraSpeed
     //
     this.labelCameraSpeed.Font     = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Underline, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.labelCameraSpeed.Location = new System.Drawing.Point(200, 42);
     this.labelCameraSpeed.Name     = "labelCameraSpeed";
     this.labelCameraSpeed.Size     = new System.Drawing.Size(100, 16);
     this.labelCameraSpeed.TabIndex = 20;
     this.labelCameraSpeed.Text     = "Camera Speed";
     //
     // simpleButtonAdvancedMapControls
     //
     this.simpleButtonAdvancedMapControls.Appearance.Font            = new System.Drawing.Font("Tahoma", 8F);
     this.simpleButtonAdvancedMapControls.Appearance.Options.UseFont = true;
     this.simpleButtonAdvancedMapControls.Location = new System.Drawing.Point(346, 50);
     this.simpleButtonAdvancedMapControls.Name     = "simpleButtonAdvancedMapControls";
     this.simpleButtonAdvancedMapControls.Size     = new System.Drawing.Size(80, 22);
     this.simpleButtonAdvancedMapControls.TabIndex = 22;
     this.simpleButtonAdvancedMapControls.Text     = "Advanced";
     this.simpleButtonAdvancedMapControls.Click   += new System.EventHandler(this.simpleButtonAdvancedMapControls_Click);
     //
     // comboBoxEditMapRenderMode
     //
     this.comboBoxEditMapRenderMode.EditValue = "Textures";
     this.comboBoxEditMapRenderMode.Location  = new System.Drawing.Point(346, 4);
     this.comboBoxEditMapRenderMode.Name      = "comboBoxEditMapRenderMode";
     //
     // comboBoxEditMapRenderMode.Properties
     //
     this.comboBoxEditMapRenderMode.Properties.Appearance.Font            = new System.Drawing.Font("Tahoma", 8F);
     this.comboBoxEditMapRenderMode.Properties.Appearance.Options.UseFont = true;
     this.comboBoxEditMapRenderMode.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.comboBoxEditMapRenderMode.Properties.Items.AddRange(new object[] {
         "Textures",
         "Wireframe",
         "Overlay"
     });
     this.comboBoxEditMapRenderMode.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
     this.comboBoxEditMapRenderMode.Size     = new System.Drawing.Size(80, 19);
     this.comboBoxEditMapRenderMode.TabIndex = 23;
     this.comboBoxEditMapRenderMode.ToolTip  = "Textures:   Render with textures. Simulates in-game view.\nWireframe: View only th" +
                                               "e wireframe of models.\nOverlay:     See textures with the wireframe of the model" +
                                               " laying over the top of them.";
     this.comboBoxEditMapRenderMode.ToolTipIconType = DevExpress.Utils.ToolTipIconType.Information;
     //
     // labelCameraSensitivityDesc
     //
     this.labelCameraSensitivityDesc.Font      = new System.Drawing.Font("Microsoft Sans Serif", 7.25F, System.Drawing.FontStyle.Italic);
     this.labelCameraSensitivityDesc.Location  = new System.Drawing.Point(226, 20);
     this.labelCameraSensitivityDesc.Name      = "labelCameraSensitivityDesc";
     this.labelCameraSensitivityDesc.Size      = new System.Drawing.Size(72, 16);
     this.labelCameraSensitivityDesc.TabIndex  = 43;
     this.labelCameraSensitivityDesc.Text      = "(High)";
     this.labelCameraSensitivityDesc.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // labelCameraSensitivityIndex
     //
     this.labelCameraSensitivityIndex.Font        = new System.Drawing.Font("Microsoft Sans Serif", 7.25F);
     this.labelCameraSensitivityIndex.ForeColor   = System.Drawing.Color.Red;
     this.labelCameraSensitivityIndex.Location    = new System.Drawing.Point(200, 20);
     this.labelCameraSensitivityIndex.Name        = "labelCameraSensitivityIndex";
     this.labelCameraSensitivityIndex.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.labelCameraSensitivityIndex.Size        = new System.Drawing.Size(26, 16);
     this.labelCameraSensitivityIndex.TabIndex    = 42;
     this.labelCameraSensitivityIndex.Text        = "12";
     this.labelCameraSensitivityIndex.TextAlign   = System.Drawing.ContentAlignment.MiddleRight;
     //
     // labelCameraSensitivity
     //
     this.labelCameraSensitivity.Font     = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Underline, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.labelCameraSensitivity.Location = new System.Drawing.Point(200, 4);
     this.labelCameraSensitivity.Name     = "labelCameraSensitivity";
     this.labelCameraSensitivity.Size     = new System.Drawing.Size(124, 16);
     this.labelCameraSensitivity.TabIndex = 41;
     this.labelCameraSensitivity.Text     = "Camera Sensitivity";
     //
     // labelCameraX
     //
     this.labelCameraX.CausesValidation = false;
     this.labelCameraX.Font             = new System.Drawing.Font("Microsoft Sans Serif", 7.5F, System.Drawing.FontStyle.Bold);
     this.labelCameraX.Location         = new System.Drawing.Point(4, 56);
     this.labelCameraX.Name             = "labelCameraX";
     this.labelCameraX.Size             = new System.Drawing.Size(16, 16);
     this.labelCameraX.TabIndex         = 44;
     this.labelCameraX.Text             = "X:";
     this.labelCameraX.TextAlign        = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // checkEditCollisionToggle
     //
     this.checkEditCollisionToggle.Location = new System.Drawing.Point(320, 27);
     this.checkEditCollisionToggle.Name     = "checkEditCollisionToggle";
     //
     // checkEditCollisionToggle.Properties
     //
     this.checkEditCollisionToggle.Properties.Appearance.Font            = new System.Drawing.Font("Microsoft Sans Serif", 7.8F);
     this.checkEditCollisionToggle.Properties.Appearance.Options.UseFont = true;
     this.checkEditCollisionToggle.Properties.BorderStyle    = DevExpress.XtraEditors.Controls.BorderStyles.Default;
     this.checkEditCollisionToggle.Properties.Caption        = "Draw Collision";
     this.checkEditCollisionToggle.Properties.GlyphAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.checkEditCollisionToggle.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.checkEditCollisionToggle.Size        = new System.Drawing.Size(108, 19);
     this.checkEditCollisionToggle.TabIndex    = 45;
     //
     // dockManager1
     //
     this.dockManager1.Form = this;
     this.dockManager1.HiddenPanels.AddRange(new DevExpress.XtraBars.Docking.DockPanel[] {
         this.dockPanelMapRenderAdvDialog
     });
     this.dockManager1.TopZIndexControls.AddRange(new string[] {
         "DevExpress.XtraBars.BarDockControl",
         "System.Windows.Forms.StatusBar"
     });
     //
     // dockPanelMapRenderAdvDialog
     //
     this.dockPanelMapRenderAdvDialog.Controls.Add(this.dockPanel1_Container);
     this.dockPanelMapRenderAdvDialog.Dock                       = DevExpress.XtraBars.Docking.DockingStyle.Float;
     this.dockPanelMapRenderAdvDialog.FloatLocation              = new System.Drawing.Point(246, 208);
     this.dockPanelMapRenderAdvDialog.FloatSize                  = new System.Drawing.Size(283, 276);
     this.dockPanelMapRenderAdvDialog.FloatVertical              = true;
     this.dockPanelMapRenderAdvDialog.ID                         = new System.Guid("04a294b6-97cd-46ff-bc93-549dea455c50");
     this.dockPanelMapRenderAdvDialog.Location                   = new System.Drawing.Point(246, 208);
     this.dockPanelMapRenderAdvDialog.Name                       = "dockPanelMapRenderAdvDialog";
     this.dockPanelMapRenderAdvDialog.Options.AllowDockBottom    = false;
     this.dockPanelMapRenderAdvDialog.Options.AllowDockFill      = false;
     this.dockPanelMapRenderAdvDialog.Options.AllowDockLeft      = false;
     this.dockPanelMapRenderAdvDialog.Options.AllowDockRight     = false;
     this.dockPanelMapRenderAdvDialog.Options.AllowDockTop       = false;
     this.dockPanelMapRenderAdvDialog.Options.FloatOnDblClick    = false;
     this.dockPanelMapRenderAdvDialog.Options.ShowAutoHideButton = false;
     this.dockPanelMapRenderAdvDialog.Options.ShowMaximizeButton = false;
     this.dockPanelMapRenderAdvDialog.SavedIndex                 = 0;
     this.dockPanelMapRenderAdvDialog.Size                       = new System.Drawing.Size(219, 176);
     this.dockPanelMapRenderAdvDialog.Text                       = "Advanced Map Render Controls";
     this.dockPanelMapRenderAdvDialog.Visibility                 = DevExpress.XtraBars.Docking.DockVisibility.Hidden;
     this.dockPanelMapRenderAdvDialog.Resize                    += new System.EventHandler(this.dockPanelMapRenderAdvDialog_Resize);
     //
     // dockPanel1_Container
     //
     this.dockPanel1_Container.Location = new System.Drawing.Point(2, 24);
     this.dockPanel1_Container.Name     = "dockPanel1_Container";
     this.dockPanel1_Container.Size     = new System.Drawing.Size(216, 164);
     this.dockPanel1_Container.TabIndex = 0;
     //
     // labelDebug
     //
     this.labelDebug.Location = new System.Drawing.Point(8, 82);
     this.labelDebug.Name     = "labelDebug";
     this.labelDebug.Size     = new System.Drawing.Size(280, 23);
     this.labelDebug.TabIndex = 46;
     this.labelDebug.Text     = "Debug";
     //
     // MapRenderCompact
     //
     this.Controls.Add(this.labelDebug);
     this.Controls.Add(this.comboBoxEditMapRenderMode);
     this.Controls.Add(this.checkEditCollisionToggle);
     this.Controls.Add(this.labelCameraX);
     this.Controls.Add(this.labelCameraSensitivityDesc);
     this.Controls.Add(this.labelCameraSensitivityIndex);
     this.Controls.Add(this.labelCameraSensitivity);
     this.Controls.Add(this.simpleButtonAdvancedMapControls);
     this.Controls.Add(this.labelCameraSpeed);
     this.Controls.Add(this.labelCameraSpeedDesc);
     this.Controls.Add(this.labelCameraSpeedIndex);
     this.Controls.Add(this.labelCameraZValue);
     this.Controls.Add(this.labelCameraYValue);
     this.Controls.Add(this.labelCameraXValue);
     this.Controls.Add(this.labelCameraY);
     this.Controls.Add(this.labelCameraZ);
     this.Controls.Add(this.labelCameraLocation);
     this.Controls.Add(this.labelPointerZValue);
     this.Controls.Add(this.labelPointerYValue);
     this.Controls.Add(this.labelPointerXValue);
     this.Controls.Add(this.labelPointerZ);
     this.Controls.Add(this.labelPointerY);
     this.Controls.Add(this.labelPointerX);
     this.Controls.Add(this.labelPointerLocation);
     this.Name = "MapRenderCompact";
     this.Size = new System.Drawing.Size(432, 110);
     ((System.ComponentModel.ISupportInitialize)(this.comboBoxEditMapRenderMode.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEditCollisionToggle.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dockManager1)).EndInit();
     this.dockPanelMapRenderAdvDialog.ResumeLayout(false);
     this.ResumeLayout(false);
 }
示例#20
0
		/// <summary> 
		/// Required method for Designer support - do not modify 
		/// the contents of this method with the code editor.
		/// </summary>
		private void InitializeComponent()
		{
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(CardManagement));
            this.xtraTabControl_CardMgmt = new DevExpress.XtraTab.XtraTabControl();
            this.xtraTabPage_CardSent = new DevExpress.XtraTab.XtraTabPage();
            this.splitContainerControl1 = new DevExpress.XtraEditors.SplitContainerControl();
            this.groupControl_Send_CardInfo = new DevExpress.XtraEditors.GroupControl();
            this.gridControl_Send_CardInfo = new DevExpress.XtraGrid.GridControl();
            this.gridView1 = new DevExpress.XtraGrid.Views.Grid.GridView();
            this.gridColumn1 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn2 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn3 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn4 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn5 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn6 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.groupControl_Send_TeaCardMgmt = new DevExpress.XtraEditors.GroupControl();
            this.comboBoxEdit_Send_TeaGrade = new DevExpress.XtraEditors.ComboBoxEdit();
            this.textEdit_Send_TeaName = new DevExpress.XtraEditors.TextEdit();
            this.notePanel_Send_TeaCardSerCond = new DevExpress.Utils.Frames.NotePanel();
            this.notePanel_Send_TeaName = new DevExpress.Utils.Frames.NotePanel();
            this.notePanel_Send_TeaNumber = new DevExpress.Utils.Frames.NotePanel();
            this.textEdit_Send_TeaNumber = new DevExpress.XtraEditors.TextEdit();
            this.notePanel19 = new DevExpress.Utils.Frames.NotePanel();
            this.notePanel20 = new DevExpress.Utils.Frames.NotePanel();
            this.comboBoxEdit_Send_TeaClass = new DevExpress.XtraEditors.ComboBoxEdit();
            this.groupControl_Send_StuCardMgmt = new DevExpress.XtraEditors.GroupControl();
            this.textEdit_Send_StuName = new DevExpress.XtraEditors.TextEdit();
            this.comboBoxEdit_Send_StuClass = new DevExpress.XtraEditors.ComboBoxEdit();
            this.comboBoxEdit_Send_StuGrade = new DevExpress.XtraEditors.ComboBoxEdit();
            this.textEdit_Send_StuNumber = new DevExpress.XtraEditors.TextEdit();
            this.notePanel_Send_StuNumber = new DevExpress.Utils.Frames.NotePanel();
            this.notePanel_Send_StuClass = new DevExpress.Utils.Frames.NotePanel();
            this.notePanel_Send_StuGrade = new DevExpress.Utils.Frames.NotePanel();
            this.notePanel_Send_StuCardSerCond = new DevExpress.Utils.Frames.NotePanel();
            this.notePanel_Send_StuName = new DevExpress.Utils.Frames.NotePanel();
            this.panelControl4 = new DevExpress.XtraEditors.PanelControl();
            this.simpleButton_LoadEncryFile = new DevExpress.XtraEditors.SimpleButton();
            this.simpleButton_Send_TeaCard = new DevExpress.XtraEditors.SimpleButton();
            this.simpleButton_Send_StuCard = new DevExpress.XtraEditors.SimpleButton();
            this.simpleButton1 = new DevExpress.XtraEditors.SimpleButton();
            this.groupControl_Send_MyCardRec = new DevExpress.XtraEditors.GroupControl();
            this.groupControl1 = new DevExpress.XtraEditors.GroupControl();
            this.lblMark1 = new System.Windows.Forms.Label();
            this.notePanel_Send_Card1stRemove = new DevExpress.Utils.Frames.NotePanel();
            this.SendCard1Date = new DevExpress.XtraEditors.DateEdit();
            this.notePanel_Send_Card5thRemove = new DevExpress.Utils.Frames.NotePanel();
            this.notePanel_Send_Card4thDate = new DevExpress.Utils.Frames.NotePanel();
            this.notePanel_Send_Card5thDate = new DevExpress.Utils.Frames.NotePanel();
            this.SendCard4Holder = new DevExpress.XtraEditors.TextEdit();
            this.notePanel_Send_Card1stHolder = new DevExpress.Utils.Frames.NotePanel();
            this.notePanel_Send_Card1stNumber = new DevExpress.Utils.Frames.NotePanel();
            this.SendCard1Holder = new DevExpress.XtraEditors.TextEdit();
            this.SendCard1Number = new DevExpress.XtraEditors.TextEdit();
            this.notePanel_Send_Card4thHolder = new DevExpress.Utils.Frames.NotePanel();
            this.SendCard4Number = new DevExpress.XtraEditors.TextEdit();
            this.notePanel_Send_Card4thNumber = new DevExpress.Utils.Frames.NotePanel();
            this.notePanel_Send_Card1stDate = new DevExpress.Utils.Frames.NotePanel();
            this.SendCard4Date = new DevExpress.XtraEditors.DateEdit();
            this.notePanel_Send_Card4thRemove = new DevExpress.Utils.Frames.NotePanel();
            this.notePanel_Send_Card3rdRemove = new DevExpress.Utils.Frames.NotePanel();
            this.removeCard5 = new DevExpress.XtraEditors.CheckEdit();
            this.SendCard5Date = new DevExpress.XtraEditors.DateEdit();
            this.notePanel_Send_Card5thNumber = new DevExpress.Utils.Frames.NotePanel();
            this.SendCard5Number = new DevExpress.XtraEditors.TextEdit();
            this.notePanel_Send_Card5thHolder = new DevExpress.Utils.Frames.NotePanel();
            this.notePanel_Send_Card2ndNumber = new DevExpress.Utils.Frames.NotePanel();
            this.SendCard5Holder = new DevExpress.XtraEditors.TextEdit();
            this.notePanel_Send_Card2ndHolder = new DevExpress.Utils.Frames.NotePanel();
            this.notePanel_Send_Card2ndDate = new DevExpress.Utils.Frames.NotePanel();
            this.SendCard2Date = new DevExpress.XtraEditors.DateEdit();
            this.SendCard2Number = new DevExpress.XtraEditors.TextEdit();
            this.removeCard1 = new DevExpress.XtraEditors.CheckEdit();
            this.removeCard3 = new DevExpress.XtraEditors.CheckEdit();
            this.SendCard2Holder = new DevExpress.XtraEditors.TextEdit();
            this.removeCard2 = new DevExpress.XtraEditors.CheckEdit();
            this.notePanel_Send_Card2ndRemove = new DevExpress.Utils.Frames.NotePanel();
            this.removeCard4 = new DevExpress.XtraEditors.CheckEdit();
            this.SendCard3Date = new DevExpress.XtraEditors.DateEdit();
            this.notePanel_Send_Card3rdNumber = new DevExpress.Utils.Frames.NotePanel();
            this.SendCard3Number = new DevExpress.XtraEditors.TextEdit();
            this.notePanel_Send_Card3rdHolder = new DevExpress.Utils.Frames.NotePanel();
            this.SendCard3Holder = new DevExpress.XtraEditors.TextEdit();
            this.notePanel_Send_Card3rdDate = new DevExpress.Utils.Frames.NotePanel();
            this.lblMark2 = new System.Windows.Forms.Label();
            this.lblMark3 = new System.Windows.Forms.Label();
            this.lblMark4 = new System.Windows.Forms.Label();
            this.lblMark5 = new System.Windows.Forms.Label();
            this.combo_SendCardGrade = new DevExpress.XtraEditors.ComboBoxEdit();
            this.dataNavigator_CardSent = new DevExpress.XtraEditors.DataNavigator();
            this.notePanel_Send_MyCardRec = new DevExpress.Utils.Frames.NotePanel();
            this.notePanel_Send_Card1stMadeDate = new DevExpress.Utils.Frames.NotePanel();
            this.notePanel1 = new DevExpress.Utils.Frames.NotePanel();
            this.notePanel4 = new DevExpress.Utils.Frames.NotePanel();
            this.notePanel5 = new DevExpress.Utils.Frames.NotePanel();
            this.textEdit_SendCardStuNumber = new DevExpress.XtraEditors.TextEdit();
            this.textEdit_SendCardStuName = new DevExpress.XtraEditors.TextEdit();
            this.combo_SendCardClass = new DevExpress.XtraEditors.ComboBoxEdit();
            this.xtraTabPage_BatchSend = new DevExpress.XtraTab.XtraTabPage();
            this.groupControl_BatchSendView = new DevExpress.XtraEditors.GroupControl();
            this.gridControl_BatchSendView = new DevExpress.XtraGrid.GridControl();
            this.gridView3 = new DevExpress.XtraGrid.Views.Grid.GridView();
            this.gridColumn7 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn8 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn9 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn10 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn11 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn12 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn13 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn14 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.simpleButton_Logout_CardSearch = new DevExpress.XtraEditors.SimpleButton();
            this.panelControl1 = new DevExpress.XtraEditors.PanelControl();
            this.groupControl2 = new DevExpress.XtraEditors.GroupControl();
            this.textEdit3 = new DevExpress.XtraEditors.TextEdit();
            this.simpleButton_BatchSendCheck = new DevExpress.XtraEditors.SimpleButton();
            this.groupControl_BatchSendSerCond = new DevExpress.XtraEditors.GroupControl();
            this.notePanel_BatchSendSerCond = new DevExpress.Utils.Frames.NotePanel();
            this.simpleButton_BatchSendStuCard = new DevExpress.XtraEditors.SimpleButton();
            this.simpleButton_BatchSendTeaCard = new DevExpress.XtraEditors.SimpleButton();
            this.simpleButton_BatchSendStop = new DevExpress.XtraEditors.SimpleButton();
            this.simpleButton2 = new DevExpress.XtraEditors.SimpleButton();
            this.groupControl_BatchSendButtonGroup = new DevExpress.XtraEditors.GroupControl();
            this.notePanel_BatchSendButtonGroup = new DevExpress.Utils.Frames.NotePanel();
            this.notePanel_BatchSendClass = new DevExpress.Utils.Frames.NotePanel();
            this.comboBoxEdit_BatchSendGrade = new DevExpress.XtraEditors.ComboBoxEdit();
            this.notePanel_BatchSendGrade = new DevExpress.Utils.Frames.NotePanel();
            this.comboBoxEdit_BatchSendClass = new DevExpress.XtraEditors.ComboBoxEdit();
            this.notePanel14 = new DevExpress.Utils.Frames.NotePanel();
            this.comboBoxEdit3 = new DevExpress.XtraEditors.ComboBoxEdit();
            this.xtraTabPage_CardLogout = new DevExpress.XtraTab.XtraTabPage();
            this.splitContainerControl2 = new DevExpress.XtraEditors.SplitContainerControl();
            this.dataNavigator_CardLogout = new DevExpress.XtraEditors.DataNavigator();
            this.groupControl_Logout_TeaCardMgmt = new DevExpress.XtraEditors.GroupControl();
            this.textEdit1 = new DevExpress.XtraEditors.TextEdit();
            this.comboBoxEdit1 = new DevExpress.XtraEditors.ComboBoxEdit();
            this.comboBoxEdit2 = new DevExpress.XtraEditors.ComboBoxEdit();
            this.textEdit2 = new DevExpress.XtraEditors.TextEdit();
            this.notePanel9 = new DevExpress.Utils.Frames.NotePanel();
            this.notePanel10 = new DevExpress.Utils.Frames.NotePanel();
            this.notePanel11 = new DevExpress.Utils.Frames.NotePanel();
            this.notePanel12 = new DevExpress.Utils.Frames.NotePanel();
            this.notePanel_Logout_TeaCardSerCond = new DevExpress.Utils.Frames.NotePanel();
            this.groupControl_Logout_StuCardMgmt = new DevExpress.XtraEditors.GroupControl();
            this.textEdit_Logout_StuName = new DevExpress.XtraEditors.TextEdit();
            this.comboBoxEdit_Logout_StuClass = new DevExpress.XtraEditors.ComboBoxEdit();
            this.comboBoxEdit_Logout_StuGrade = new DevExpress.XtraEditors.ComboBoxEdit();
            this.textEdit_Logout_StuNumber = new DevExpress.XtraEditors.TextEdit();
            this.notePanel_Logout_StuNumber = new DevExpress.Utils.Frames.NotePanel();
            this.notePanel_Logout_StuClass = new DevExpress.Utils.Frames.NotePanel();
            this.notePanel_Logout_StuGrade = new DevExpress.Utils.Frames.NotePanel();
            this.notePanel_Logout_StuCardSerCond = new DevExpress.Utils.Frames.NotePanel();
            this.notePanel_Logout_StuName = new DevExpress.Utils.Frames.NotePanel();
            this.panelControl3 = new DevExpress.XtraEditors.PanelControl();
            this.simpleButton_Logout_StuCard = new DevExpress.XtraEditors.SimpleButton();
            this.simpleButton_Logout_TeaCard = new DevExpress.XtraEditors.SimpleButton();
            this.groupControl_Logout_MyCardRec = new DevExpress.XtraEditors.GroupControl();
            this.gridControl_Logout_CardInfo = new DevExpress.XtraGrid.GridControl();
            this.gridView2 = new DevExpress.XtraGrid.Views.Grid.GridView();
            this.gridColumn15 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn16 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn17 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn18 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn19 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn20 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.xtraTabPage_IDQuery = new DevExpress.XtraTab.XtraTabPage();
            this.splitContainerControl3 = new DevExpress.XtraEditors.SplitContainerControl();
            this.groupControl_IDQueryFastSer = new DevExpress.XtraEditors.GroupControl();
            this.groupControl_IDQueryTeaNumberAndName = new DevExpress.XtraEditors.GroupControl();
            this.notePanel_IDQueryTeaName = new DevExpress.Utils.Frames.NotePanel();
            this.textEdit_IDQueryTeaName = new DevExpress.XtraEditors.TextEdit();
            this.textEdit_IDQueryTeaNumber = new DevExpress.XtraEditors.TextEdit();
            this.notePanel_IDQueryTeaNumber = new DevExpress.Utils.Frames.NotePanel();
            this.panelControl_TeaField = new DevExpress.XtraEditors.PanelControl();
            this.notePanel_IDQueryTeaTimeAndCardNumber = new DevExpress.Utils.Frames.NotePanel();
            this.notePanel_IDQueryTeaNumberAndName = new DevExpress.Utils.Frames.NotePanel();
            this.panelControl_StuField = new DevExpress.XtraEditors.PanelControl();
            this.notePanel_IDQueryNumberAndName = new DevExpress.Utils.Frames.NotePanel();
            this.notePanel_IDQueryTimeAndCardNumber = new DevExpress.Utils.Frames.NotePanel();
            this.notePanel_IDQueryGradeAndClass = new DevExpress.Utils.Frames.NotePanel();
            this.groupControl_IDQueryTimeAndCardNumber = new DevExpress.XtraEditors.GroupControl();
            this.textEdit_IDQueryCardNumber = new DevExpress.XtraEditors.TextEdit();
            this.notePanel_IDQueryCardNumber = new DevExpress.Utils.Frames.NotePanel();
            this.dateEdit_IDQueryEndTime = new DevExpress.XtraEditors.DateEdit();
            this.notePanel_IDQueryBegTime = new DevExpress.Utils.Frames.NotePanel();
            this.notePanel_IDQueryEndTime = new DevExpress.Utils.Frames.NotePanel();
            this.dateEdit_IDQueryBegTime = new DevExpress.XtraEditors.DateEdit();
            this.groupControl_IDQueryNumberAndName = new DevExpress.XtraEditors.GroupControl();
            this.textEdit_IDQueryStuName = new DevExpress.XtraEditors.TextEdit();
            this.textEdit_IDQueryStuNumber = new DevExpress.XtraEditors.TextEdit();
            this.notePanel_IDQueryStuNumber = new DevExpress.Utils.Frames.NotePanel();
            this.notePanel_IDQueryStuName = new DevExpress.Utils.Frames.NotePanel();
            this.groupControl_IDQueryGradeAndClass = new DevExpress.XtraEditors.GroupControl();
            this.comboBoxEdit_IDQueryStuClass = new DevExpress.XtraEditors.ComboBoxEdit();
            this.comboBoxEdit_IDQueryStuGrade = new DevExpress.XtraEditors.ComboBoxEdit();
            this.notePanel_IDQueryStuGrade = new DevExpress.Utils.Frames.NotePanel();
            this.notePanel_IDQueryStuClass = new DevExpress.Utils.Frames.NotePanel();
            this.notePanel1_IDQueryFastSer = new DevExpress.Utils.Frames.NotePanel();
            this.gridControl_IDQueryView = new DevExpress.XtraGrid.GridControl();
            this.gridView4 = new DevExpress.XtraGrid.Views.Grid.GridView();
            this.panelControl2 = new DevExpress.XtraEditors.PanelControl();
            this.simpleButton_IDQueryPrint = new DevExpress.XtraEditors.SimpleButton();
            this.simpleButton_IDQueryStuCard = new DevExpress.XtraEditors.SimpleButton();
            this.simpleButton_IDQueryTeaCard = new DevExpress.XtraEditors.SimpleButton();
            this.simpleButton_IDQuerySearch = new DevExpress.XtraEditors.SimpleButton();
            this.xtraTabPage_DataSynchAndReceive = new DevExpress.XtraTab.XtraTabPage();
            this.groupControl_DeviceView = new DevExpress.XtraEditors.GroupControl();
            this.gridControl_DeviceView = new DevExpress.XtraGrid.GridControl();
            this.gridView5 = new DevExpress.XtraGrid.Views.Grid.GridView();
            this.gridColumn21 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn22 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.groupControl_DataSynchReceiDesk = new DevExpress.XtraEditors.GroupControl();
            this.notePanel_DataSynchReceiDesk = new DevExpress.Utils.Frames.NotePanel();
            this.simpleButton_Date = new DevExpress.XtraEditors.SimpleButton();
            this.simpleButton_GetMobile = new DevExpress.XtraEditors.SimpleButton();
            this.simpleButton_FastDataReceive = new DevExpress.XtraEditors.SimpleButton();
            this.simpleButton_StopDataReceive = new DevExpress.XtraEditors.SimpleButton();
            this.Timer_SendCardOverTime = new System.Timers.Timer();
            this.Timer_ValidateCardOverTime = new System.Timers.Timer();
            this.Timer_LeaveTime = new System.Timers.Timer();
            this.saveFileDialog_ImportExcel = new System.Windows.Forms.SaveFileDialog();
            this.timer_SychnDate = new System.Timers.Timer();
            this.helpProvider_Help = new System.Windows.Forms.HelpProvider();
            this.openFileDialog_LoadEncryFile = new System.Windows.Forms.OpenFileDialog();
            ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl_CardMgmt)).BeginInit();
            this.xtraTabControl_CardMgmt.SuspendLayout();
            this.xtraTabPage_CardSent.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl1)).BeginInit();
            this.splitContainerControl1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.groupControl_Send_CardInfo)).BeginInit();
            this.groupControl_Send_CardInfo.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.gridControl_Send_CardInfo)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.groupControl_Send_TeaCardMgmt)).BeginInit();
            this.groupControl_Send_TeaCardMgmt.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_Send_TeaGrade.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_Send_TeaName.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_Send_TeaNumber.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_Send_TeaClass.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.groupControl_Send_StuCardMgmt)).BeginInit();
            this.groupControl_Send_StuCardMgmt.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_Send_StuName.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_Send_StuClass.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_Send_StuGrade.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_Send_StuNumber.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.panelControl4)).BeginInit();
            this.panelControl4.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.groupControl_Send_MyCardRec)).BeginInit();
            this.groupControl_Send_MyCardRec.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
            this.groupControl1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.SendCard1Date.Properties.VistaTimeProperties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.SendCard1Date.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.SendCard4Holder.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.SendCard1Holder.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.SendCard1Number.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.SendCard4Number.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.SendCard4Date.Properties.VistaTimeProperties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.SendCard4Date.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.removeCard5.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.SendCard5Date.Properties.VistaTimeProperties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.SendCard5Date.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.SendCard5Number.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.SendCard5Holder.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.SendCard2Date.Properties.VistaTimeProperties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.SendCard2Date.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.SendCard2Number.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.removeCard1.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.removeCard3.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.SendCard2Holder.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.removeCard2.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.removeCard4.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.SendCard3Date.Properties.VistaTimeProperties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.SendCard3Date.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.SendCard3Number.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.SendCard3Holder.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.combo_SendCardGrade.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_SendCardStuNumber.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_SendCardStuName.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.combo_SendCardClass.Properties)).BeginInit();
            this.xtraTabPage_BatchSend.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.groupControl_BatchSendView)).BeginInit();
            this.groupControl_BatchSendView.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.gridControl_BatchSendView)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridView3)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
            this.panelControl1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).BeginInit();
            this.groupControl2.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit3.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.groupControl_BatchSendSerCond)).BeginInit();
            this.groupControl_BatchSendSerCond.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.groupControl_BatchSendButtonGroup)).BeginInit();
            this.groupControl_BatchSendButtonGroup.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_BatchSendGrade.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_BatchSendClass.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit3.Properties)).BeginInit();
            this.xtraTabPage_CardLogout.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl2)).BeginInit();
            this.splitContainerControl2.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.groupControl_Logout_TeaCardMgmt)).BeginInit();
            this.groupControl_Logout_TeaCardMgmt.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit1.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit1.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit2.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit2.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.groupControl_Logout_StuCardMgmt)).BeginInit();
            this.groupControl_Logout_StuCardMgmt.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_Logout_StuName.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_Logout_StuClass.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_Logout_StuGrade.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_Logout_StuNumber.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.panelControl3)).BeginInit();
            this.panelControl3.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.groupControl_Logout_MyCardRec)).BeginInit();
            this.groupControl_Logout_MyCardRec.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.gridControl_Logout_CardInfo)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridView2)).BeginInit();
            this.xtraTabPage_IDQuery.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl3)).BeginInit();
            this.splitContainerControl3.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.groupControl_IDQueryFastSer)).BeginInit();
            this.groupControl_IDQueryFastSer.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.groupControl_IDQueryTeaNumberAndName)).BeginInit();
            this.groupControl_IDQueryTeaNumberAndName.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_IDQueryTeaName.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_IDQueryTeaNumber.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.panelControl_TeaField)).BeginInit();
            this.panelControl_TeaField.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.panelControl_StuField)).BeginInit();
            this.panelControl_StuField.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.groupControl_IDQueryTimeAndCardNumber)).BeginInit();
            this.groupControl_IDQueryTimeAndCardNumber.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_IDQueryCardNumber.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.dateEdit_IDQueryEndTime.Properties.VistaTimeProperties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.dateEdit_IDQueryEndTime.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.dateEdit_IDQueryBegTime.Properties.VistaTimeProperties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.dateEdit_IDQueryBegTime.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.groupControl_IDQueryNumberAndName)).BeginInit();
            this.groupControl_IDQueryNumberAndName.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_IDQueryStuName.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_IDQueryStuNumber.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.groupControl_IDQueryGradeAndClass)).BeginInit();
            this.groupControl_IDQueryGradeAndClass.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_IDQueryStuClass.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_IDQueryStuGrade.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridControl_IDQueryView)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridView4)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).BeginInit();
            this.panelControl2.SuspendLayout();
            this.xtraTabPage_DataSynchAndReceive.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.groupControl_DeviceView)).BeginInit();
            this.groupControl_DeviceView.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.gridControl_DeviceView)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridView5)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.groupControl_DataSynchReceiDesk)).BeginInit();
            this.groupControl_DataSynchReceiDesk.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.Timer_SendCardOverTime)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.Timer_ValidateCardOverTime)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.Timer_LeaveTime)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.timer_SychnDate)).BeginInit();
            this.SuspendLayout();
            // 
            // xtraTabControl_CardMgmt
            // 
            this.xtraTabControl_CardMgmt.AppearancePage.HeaderActive.ForeColor = System.Drawing.Color.DarkOrange;
            this.xtraTabControl_CardMgmt.AppearancePage.HeaderActive.Options.UseForeColor = true;
            this.xtraTabControl_CardMgmt.Dock = System.Windows.Forms.DockStyle.Fill;
            this.helpProvider_Help.SetHelpKeyword(this.xtraTabControl_CardMgmt, "批量发卡");
            this.helpProvider_Help.SetHelpNavigator(this.xtraTabControl_CardMgmt, System.Windows.Forms.HelpNavigator.KeywordIndex);
            this.xtraTabControl_CardMgmt.Location = new System.Drawing.Point(0, 0);
            this.xtraTabControl_CardMgmt.Name = "xtraTabControl_CardMgmt";
            this.xtraTabControl_CardMgmt.SelectedTabPage = this.xtraTabPage_CardSent;
            this.helpProvider_Help.SetShowHelp(this.xtraTabControl_CardMgmt, false);
            this.xtraTabControl_CardMgmt.Size = new System.Drawing.Size(772, 540);
            this.xtraTabControl_CardMgmt.TabIndex = 0;
            this.xtraTabControl_CardMgmt.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
            this.xtraTabPage_CardSent,
            this.xtraTabPage_BatchSend,
            this.xtraTabPage_CardLogout,
            this.xtraTabPage_IDQuery,
            this.xtraTabPage_DataSynchAndReceive});
            // 
            // xtraTabPage_CardSent
            // 
            this.xtraTabPage_CardSent.Appearance.PageClient.BackColor = System.Drawing.Color.WhiteSmoke;
            this.xtraTabPage_CardSent.Appearance.PageClient.Options.UseBackColor = true;
            this.xtraTabPage_CardSent.Controls.Add(this.splitContainerControl1);
            this.helpProvider_Help.SetHelpKeyword(this.xtraTabPage_CardSent, "制卡与销卡");
            this.helpProvider_Help.SetHelpNavigator(this.xtraTabPage_CardSent, System.Windows.Forms.HelpNavigator.KeywordIndex);
            this.xtraTabPage_CardSent.Name = "xtraTabPage_CardSent";
            this.helpProvider_Help.SetShowHelp(this.xtraTabPage_CardSent, true);
            this.xtraTabPage_CardSent.Size = new System.Drawing.Size(766, 511);
            this.xtraTabPage_CardSent.Text = "制卡与销卡";
            // 
            // splitContainerControl1
            // 
            this.splitContainerControl1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.splitContainerControl1.Location = new System.Drawing.Point(0, 0);
            this.splitContainerControl1.Name = "splitContainerControl1";
            this.splitContainerControl1.Panel1.Controls.Add(this.groupControl_Send_CardInfo);
            this.splitContainerControl1.Panel1.Controls.Add(this.groupControl_Send_TeaCardMgmt);
            this.splitContainerControl1.Panel1.Controls.Add(this.groupControl_Send_StuCardMgmt);
            this.splitContainerControl1.Panel1.Controls.Add(this.panelControl4);
            this.splitContainerControl1.Panel1.Text = "splitContainerControl1_Panel1";
            this.splitContainerControl1.Panel2.Controls.Add(this.groupControl_Send_MyCardRec);
            this.splitContainerControl1.Panel2.Text = "splitContainerControl1_Panel2";
            this.splitContainerControl1.Size = new System.Drawing.Size(766, 511);
            this.splitContainerControl1.SplitterPosition = 295;
            this.splitContainerControl1.TabIndex = 0;
            this.splitContainerControl1.Text = "splitContainerControl1";
            // 
            // groupControl_Send_CardInfo
            // 
            this.groupControl_Send_CardInfo.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.groupControl_Send_CardInfo.AppearanceCaption.Options.UseFont = true;
            this.groupControl_Send_CardInfo.Controls.Add(this.gridControl_Send_CardInfo);
            this.groupControl_Send_CardInfo.Dock = System.Windows.Forms.DockStyle.Fill;
            this.groupControl_Send_CardInfo.Location = new System.Drawing.Point(0, 272);
            this.groupControl_Send_CardInfo.Name = "groupControl_Send_CardInfo";
            this.groupControl_Send_CardInfo.Size = new System.Drawing.Size(295, 239);
            this.groupControl_Send_CardInfo.TabIndex = 20;
            this.groupControl_Send_CardInfo.Text = "持卡信息";
            // 
            // gridControl_Send_CardInfo
            // 
            this.gridControl_Send_CardInfo.Dock = System.Windows.Forms.DockStyle.Fill;
            this.gridControl_Send_CardInfo.Location = new System.Drawing.Point(2, 22);
            this.gridControl_Send_CardInfo.MainView = this.gridView1;
            this.gridControl_Send_CardInfo.Name = "gridControl_Send_CardInfo";
            this.gridControl_Send_CardInfo.Size = new System.Drawing.Size(291, 215);
            this.gridControl_Send_CardInfo.TabIndex = 0;
            this.gridControl_Send_CardInfo.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
            this.gridView1});
            // 
            // gridView1
            // 
            this.gridView1.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
            this.gridColumn1,
            this.gridColumn2,
            this.gridColumn3,
            this.gridColumn4,
            this.gridColumn5,
            this.gridColumn6});
            this.gridView1.GridControl = this.gridControl_Send_CardInfo;
            this.gridView1.Name = "gridView1";
            this.gridView1.OptionsBehavior.Editable = false;
            this.gridView1.OptionsCustomization.AllowFilter = false;
            this.gridView1.OptionsView.ShowDetailButtons = false;
            this.gridView1.OptionsView.ShowFilterPanelMode = DevExpress.XtraGrid.Views.Base.ShowFilterPanelMode.Never;
            this.gridView1.OptionsView.ShowFooter = true;
            this.gridView1.OptionsView.ShowGroupPanel = false;
            this.gridView1.FocusedRowChanged += new DevExpress.XtraGrid.Views.Base.FocusedRowChangedEventHandler(this.gridView1_FocusedRowChanged);
            // 
            // gridColumn1
            // 
            this.gridColumn1.Name = "gridColumn1";
            this.gridColumn1.Visible = true;
            this.gridColumn1.VisibleIndex = 0;
            // 
            // gridColumn2
            // 
            this.gridColumn2.Name = "gridColumn2";
            this.gridColumn2.Visible = true;
            this.gridColumn2.VisibleIndex = 1;
            // 
            // gridColumn3
            // 
            this.gridColumn3.Name = "gridColumn3";
            this.gridColumn3.Visible = true;
            this.gridColumn3.VisibleIndex = 2;
            // 
            // gridColumn4
            // 
            this.gridColumn4.Name = "gridColumn4";
            this.gridColumn4.Visible = true;
            this.gridColumn4.VisibleIndex = 3;
            // 
            // gridColumn5
            // 
            this.gridColumn5.Name = "gridColumn5";
            this.gridColumn5.Visible = true;
            this.gridColumn5.VisibleIndex = 4;
            // 
            // gridColumn6
            // 
            this.gridColumn6.Name = "gridColumn6";
            this.gridColumn6.Visible = true;
            this.gridColumn6.VisibleIndex = 5;
            // 
            // groupControl_Send_TeaCardMgmt
            // 
            this.groupControl_Send_TeaCardMgmt.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.groupControl_Send_TeaCardMgmt.AppearanceCaption.Options.UseFont = true;
            this.groupControl_Send_TeaCardMgmt.Controls.Add(this.comboBoxEdit_Send_TeaGrade);
            this.groupControl_Send_TeaCardMgmt.Controls.Add(this.textEdit_Send_TeaName);
            this.groupControl_Send_TeaCardMgmt.Controls.Add(this.notePanel_Send_TeaCardSerCond);
            this.groupControl_Send_TeaCardMgmt.Controls.Add(this.notePanel_Send_TeaName);
            this.groupControl_Send_TeaCardMgmt.Controls.Add(this.notePanel_Send_TeaNumber);
            this.groupControl_Send_TeaCardMgmt.Controls.Add(this.textEdit_Send_TeaNumber);
            this.groupControl_Send_TeaCardMgmt.Controls.Add(this.notePanel19);
            this.groupControl_Send_TeaCardMgmt.Controls.Add(this.notePanel20);
            this.groupControl_Send_TeaCardMgmt.Controls.Add(this.comboBoxEdit_Send_TeaClass);
            this.groupControl_Send_TeaCardMgmt.Dock = System.Windows.Forms.DockStyle.Top;
            this.groupControl_Send_TeaCardMgmt.Location = new System.Drawing.Point(0, 160);
            this.groupControl_Send_TeaCardMgmt.Name = "groupControl_Send_TeaCardMgmt";
            this.groupControl_Send_TeaCardMgmt.Size = new System.Drawing.Size(295, 112);
            this.groupControl_Send_TeaCardMgmt.TabIndex = 19;
            this.groupControl_Send_TeaCardMgmt.Text = "教师发卡管理";
            this.groupControl_Send_TeaCardMgmt.Visible = false;
            // 
            // comboBoxEdit_Send_TeaGrade
            // 
            this.comboBoxEdit_Send_TeaGrade.EditValue = "全部";
            this.comboBoxEdit_Send_TeaGrade.Location = new System.Drawing.Point(216, 48);
            this.comboBoxEdit_Send_TeaGrade.Name = "comboBoxEdit_Send_TeaGrade";
            this.comboBoxEdit_Send_TeaGrade.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.comboBoxEdit_Send_TeaGrade.Properties.Items.AddRange(new object[] {
            "全部"});
            this.comboBoxEdit_Send_TeaGrade.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
            this.comboBoxEdit_Send_TeaGrade.Size = new System.Drawing.Size(64, 20);
            this.comboBoxEdit_Send_TeaGrade.TabIndex = 32;
            this.comboBoxEdit_Send_TeaGrade.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit_Send_TeaGrade_SelectedIndexChanged);
            // 
            // textEdit_Send_TeaName
            // 
            this.textEdit_Send_TeaName.EditValue = "";
            this.textEdit_Send_TeaName.Location = new System.Drawing.Point(80, 48);
            this.textEdit_Send_TeaName.Name = "textEdit_Send_TeaName";
            this.textEdit_Send_TeaName.Size = new System.Drawing.Size(56, 20);
            this.textEdit_Send_TeaName.TabIndex = 31;
            this.textEdit_Send_TeaName.EditValueChanged += new System.EventHandler(this.textEdit_Send_TeaName_EditValueChanged);
            // 
            // notePanel_Send_TeaCardSerCond
            // 
            this.notePanel_Send_TeaCardSerCond.BackColor = System.Drawing.Color.LightGoldenrodYellow;
            this.notePanel_Send_TeaCardSerCond.Dock = System.Windows.Forms.DockStyle.Top;
            this.notePanel_Send_TeaCardSerCond.ForeColor = System.Drawing.Color.OrangeRed;
            this.notePanel_Send_TeaCardSerCond.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_Send_TeaCardSerCond.Location = new System.Drawing.Point(2, 22);
            this.notePanel_Send_TeaCardSerCond.MaxRows = 5;
            this.notePanel_Send_TeaCardSerCond.Name = "notePanel_Send_TeaCardSerCond";
            this.notePanel_Send_TeaCardSerCond.ParentAutoHeight = true;
            this.notePanel_Send_TeaCardSerCond.Size = new System.Drawing.Size(291, 23);
            this.notePanel_Send_TeaCardSerCond.TabIndex = 24;
            this.notePanel_Send_TeaCardSerCond.TabStop = false;
            this.notePanel_Send_TeaCardSerCond.Text = "您要检索的条件?";
            // 
            // notePanel_Send_TeaName
            // 
            this.notePanel_Send_TeaName.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel_Send_TeaName.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel_Send_TeaName.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel_Send_TeaName.ForeColor = System.Drawing.Color.Black;
            this.notePanel_Send_TeaName.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_Send_TeaName.Location = new System.Drawing.Point(8, 48);
            this.notePanel_Send_TeaName.MaxRows = 5;
            this.notePanel_Send_TeaName.Name = "notePanel_Send_TeaName";
            this.notePanel_Send_TeaName.ParentAutoHeight = true;
            this.notePanel_Send_TeaName.Size = new System.Drawing.Size(64, 22);
            this.notePanel_Send_TeaName.TabIndex = 30;
            this.notePanel_Send_TeaName.TabStop = false;
            this.notePanel_Send_TeaName.Text = "姓  名:";
            // 
            // notePanel_Send_TeaNumber
            // 
            this.notePanel_Send_TeaNumber.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel_Send_TeaNumber.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel_Send_TeaNumber.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel_Send_TeaNumber.ForeColor = System.Drawing.Color.Black;
            this.notePanel_Send_TeaNumber.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_Send_TeaNumber.Location = new System.Drawing.Point(8, 80);
            this.notePanel_Send_TeaNumber.MaxRows = 5;
            this.notePanel_Send_TeaNumber.Name = "notePanel_Send_TeaNumber";
            this.notePanel_Send_TeaNumber.ParentAutoHeight = true;
            this.notePanel_Send_TeaNumber.Size = new System.Drawing.Size(64, 22);
            this.notePanel_Send_TeaNumber.TabIndex = 30;
            this.notePanel_Send_TeaNumber.TabStop = false;
            this.notePanel_Send_TeaNumber.Text = "工  号:";
            // 
            // textEdit_Send_TeaNumber
            // 
            this.textEdit_Send_TeaNumber.EditValue = "";
            this.textEdit_Send_TeaNumber.Location = new System.Drawing.Point(80, 80);
            this.textEdit_Send_TeaNumber.Name = "textEdit_Send_TeaNumber";
            this.textEdit_Send_TeaNumber.Size = new System.Drawing.Size(56, 20);
            this.textEdit_Send_TeaNumber.TabIndex = 31;
            this.textEdit_Send_TeaNumber.EditValueChanged += new System.EventHandler(this.textEdit_Send_TeaNumber_EditValueChanged);
            // 
            // notePanel19
            // 
            this.notePanel19.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel19.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel19.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel19.ForeColor = System.Drawing.Color.Black;
            this.notePanel19.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel19.Location = new System.Drawing.Point(144, 48);
            this.notePanel19.MaxRows = 5;
            this.notePanel19.Name = "notePanel19";
            this.notePanel19.ParentAutoHeight = true;
            this.notePanel19.Size = new System.Drawing.Size(64, 22);
            this.notePanel19.TabIndex = 30;
            this.notePanel19.TabStop = false;
            this.notePanel19.Text = "部  门:";
            // 
            // notePanel20
            // 
            this.notePanel20.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel20.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel20.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel20.ForeColor = System.Drawing.Color.Black;
            this.notePanel20.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel20.Location = new System.Drawing.Point(144, 80);
            this.notePanel20.MaxRows = 5;
            this.notePanel20.Name = "notePanel20";
            this.notePanel20.ParentAutoHeight = true;
            this.notePanel20.Size = new System.Drawing.Size(64, 22);
            this.notePanel20.TabIndex = 30;
            this.notePanel20.TabStop = false;
            this.notePanel20.Text = "岗  位:";
            // 
            // comboBoxEdit_Send_TeaClass
            // 
            this.comboBoxEdit_Send_TeaClass.EditValue = "全部";
            this.comboBoxEdit_Send_TeaClass.Location = new System.Drawing.Point(216, 80);
            this.comboBoxEdit_Send_TeaClass.Name = "comboBoxEdit_Send_TeaClass";
            this.comboBoxEdit_Send_TeaClass.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.comboBoxEdit_Send_TeaClass.Properties.Items.AddRange(new object[] {
            "全部"});
            this.comboBoxEdit_Send_TeaClass.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
            this.comboBoxEdit_Send_TeaClass.Size = new System.Drawing.Size(64, 20);
            this.comboBoxEdit_Send_TeaClass.TabIndex = 32;
            this.comboBoxEdit_Send_TeaClass.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit_Send_TeaClass_SelectedIndexChanged);
            // 
            // groupControl_Send_StuCardMgmt
            // 
            this.groupControl_Send_StuCardMgmt.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.groupControl_Send_StuCardMgmt.Appearance.Options.UseFont = true;
            this.groupControl_Send_StuCardMgmt.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.groupControl_Send_StuCardMgmt.AppearanceCaption.Options.UseFont = true;
            this.groupControl_Send_StuCardMgmt.Controls.Add(this.textEdit_Send_StuName);
            this.groupControl_Send_StuCardMgmt.Controls.Add(this.comboBoxEdit_Send_StuClass);
            this.groupControl_Send_StuCardMgmt.Controls.Add(this.comboBoxEdit_Send_StuGrade);
            this.groupControl_Send_StuCardMgmt.Controls.Add(this.textEdit_Send_StuNumber);
            this.groupControl_Send_StuCardMgmt.Controls.Add(this.notePanel_Send_StuNumber);
            this.groupControl_Send_StuCardMgmt.Controls.Add(this.notePanel_Send_StuClass);
            this.groupControl_Send_StuCardMgmt.Controls.Add(this.notePanel_Send_StuGrade);
            this.groupControl_Send_StuCardMgmt.Controls.Add(this.notePanel_Send_StuCardSerCond);
            this.groupControl_Send_StuCardMgmt.Controls.Add(this.notePanel_Send_StuName);
            this.groupControl_Send_StuCardMgmt.Dock = System.Windows.Forms.DockStyle.Top;
            this.groupControl_Send_StuCardMgmt.Location = new System.Drawing.Point(0, 40);
            this.groupControl_Send_StuCardMgmt.Name = "groupControl_Send_StuCardMgmt";
            this.groupControl_Send_StuCardMgmt.Size = new System.Drawing.Size(295, 120);
            this.groupControl_Send_StuCardMgmt.TabIndex = 18;
            this.groupControl_Send_StuCardMgmt.Text = "学生发卡管理";
            // 
            // textEdit_Send_StuName
            // 
            this.textEdit_Send_StuName.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.textEdit_Send_StuName.EditValue = "";
            this.textEdit_Send_StuName.Location = new System.Drawing.Point(86, 48);
            this.textEdit_Send_StuName.Name = "textEdit_Send_StuName";
            this.textEdit_Send_StuName.Size = new System.Drawing.Size(56, 20);
            this.textEdit_Send_StuName.TabIndex = 32;
            this.textEdit_Send_StuName.EditValueChanged += new System.EventHandler(this.textEdit_Send_StuName_EditValueChanged);
            // 
            // comboBoxEdit_Send_StuClass
            // 
            this.comboBoxEdit_Send_StuClass.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.comboBoxEdit_Send_StuClass.EditValue = "全部";
            this.comboBoxEdit_Send_StuClass.Location = new System.Drawing.Point(222, 80);
            this.comboBoxEdit_Send_StuClass.Name = "comboBoxEdit_Send_StuClass";
            this.comboBoxEdit_Send_StuClass.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.comboBoxEdit_Send_StuClass.Properties.Items.AddRange(new object[] {
            "全部"});
            this.comboBoxEdit_Send_StuClass.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
            this.comboBoxEdit_Send_StuClass.Size = new System.Drawing.Size(64, 20);
            this.comboBoxEdit_Send_StuClass.TabIndex = 31;
            this.comboBoxEdit_Send_StuClass.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit_Send_StuClass_SelectedIndexChanged);
            // 
            // comboBoxEdit_Send_StuGrade
            // 
            this.comboBoxEdit_Send_StuGrade.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.comboBoxEdit_Send_StuGrade.EditValue = "全部";
            this.comboBoxEdit_Send_StuGrade.Location = new System.Drawing.Point(222, 48);
            this.comboBoxEdit_Send_StuGrade.Name = "comboBoxEdit_Send_StuGrade";
            this.comboBoxEdit_Send_StuGrade.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.comboBoxEdit_Send_StuGrade.Properties.Items.AddRange(new object[] {
            "全部"});
            this.comboBoxEdit_Send_StuGrade.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
            this.comboBoxEdit_Send_StuGrade.Size = new System.Drawing.Size(64, 20);
            this.comboBoxEdit_Send_StuGrade.TabIndex = 30;
            this.comboBoxEdit_Send_StuGrade.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit_Send_StuGrade_SelectedIndexChanged);
            // 
            // textEdit_Send_StuNumber
            // 
            this.textEdit_Send_StuNumber.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.textEdit_Send_StuNumber.EditValue = "";
            this.textEdit_Send_StuNumber.Location = new System.Drawing.Point(86, 80);
            this.textEdit_Send_StuNumber.Name = "textEdit_Send_StuNumber";
            this.textEdit_Send_StuNumber.Size = new System.Drawing.Size(56, 20);
            this.textEdit_Send_StuNumber.TabIndex = 29;
            this.textEdit_Send_StuNumber.EditValueChanged += new System.EventHandler(this.textEdit_Send_StuNumber_EditValueChanged);
            // 
            // notePanel_Send_StuNumber
            // 
            this.notePanel_Send_StuNumber.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.notePanel_Send_StuNumber.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel_Send_StuNumber.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel_Send_StuNumber.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel_Send_StuNumber.ForeColor = System.Drawing.Color.Black;
            this.notePanel_Send_StuNumber.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_Send_StuNumber.Location = new System.Drawing.Point(14, 80);
            this.notePanel_Send_StuNumber.MaxRows = 5;
            this.notePanel_Send_StuNumber.Name = "notePanel_Send_StuNumber";
            this.notePanel_Send_StuNumber.ParentAutoHeight = true;
            this.notePanel_Send_StuNumber.Size = new System.Drawing.Size(64, 22);
            this.notePanel_Send_StuNumber.TabIndex = 27;
            this.notePanel_Send_StuNumber.TabStop = false;
            this.notePanel_Send_StuNumber.Text = "学  号:";
            // 
            // notePanel_Send_StuClass
            // 
            this.notePanel_Send_StuClass.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.notePanel_Send_StuClass.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel_Send_StuClass.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel_Send_StuClass.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel_Send_StuClass.ForeColor = System.Drawing.Color.Black;
            this.notePanel_Send_StuClass.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_Send_StuClass.Location = new System.Drawing.Point(150, 80);
            this.notePanel_Send_StuClass.MaxRows = 5;
            this.notePanel_Send_StuClass.Name = "notePanel_Send_StuClass";
            this.notePanel_Send_StuClass.ParentAutoHeight = true;
            this.notePanel_Send_StuClass.Size = new System.Drawing.Size(64, 22);
            this.notePanel_Send_StuClass.TabIndex = 26;
            this.notePanel_Send_StuClass.TabStop = false;
            this.notePanel_Send_StuClass.Text = "班  级:";
            // 
            // notePanel_Send_StuGrade
            // 
            this.notePanel_Send_StuGrade.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.notePanel_Send_StuGrade.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel_Send_StuGrade.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel_Send_StuGrade.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel_Send_StuGrade.ForeColor = System.Drawing.Color.Black;
            this.notePanel_Send_StuGrade.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_Send_StuGrade.Location = new System.Drawing.Point(150, 48);
            this.notePanel_Send_StuGrade.MaxRows = 5;
            this.notePanel_Send_StuGrade.Name = "notePanel_Send_StuGrade";
            this.notePanel_Send_StuGrade.ParentAutoHeight = true;
            this.notePanel_Send_StuGrade.Size = new System.Drawing.Size(64, 22);
            this.notePanel_Send_StuGrade.TabIndex = 25;
            this.notePanel_Send_StuGrade.TabStop = false;
            this.notePanel_Send_StuGrade.Text = "年  级:";
            // 
            // notePanel_Send_StuCardSerCond
            // 
            this.notePanel_Send_StuCardSerCond.BackColor = System.Drawing.Color.LightGoldenrodYellow;
            this.notePanel_Send_StuCardSerCond.Dock = System.Windows.Forms.DockStyle.Top;
            this.notePanel_Send_StuCardSerCond.ForeColor = System.Drawing.Color.OrangeRed;
            this.notePanel_Send_StuCardSerCond.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_Send_StuCardSerCond.Location = new System.Drawing.Point(2, 22);
            this.notePanel_Send_StuCardSerCond.MaxRows = 5;
            this.notePanel_Send_StuCardSerCond.Name = "notePanel_Send_StuCardSerCond";
            this.notePanel_Send_StuCardSerCond.ParentAutoHeight = true;
            this.notePanel_Send_StuCardSerCond.Size = new System.Drawing.Size(291, 23);
            this.notePanel_Send_StuCardSerCond.TabIndex = 23;
            this.notePanel_Send_StuCardSerCond.TabStop = false;
            this.notePanel_Send_StuCardSerCond.Text = "您要检索的条件?";
            // 
            // notePanel_Send_StuName
            // 
            this.notePanel_Send_StuName.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.notePanel_Send_StuName.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel_Send_StuName.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel_Send_StuName.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel_Send_StuName.ForeColor = System.Drawing.Color.Black;
            this.notePanel_Send_StuName.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_Send_StuName.Location = new System.Drawing.Point(14, 48);
            this.notePanel_Send_StuName.MaxRows = 5;
            this.notePanel_Send_StuName.Name = "notePanel_Send_StuName";
            this.notePanel_Send_StuName.ParentAutoHeight = true;
            this.notePanel_Send_StuName.Size = new System.Drawing.Size(64, 22);
            this.notePanel_Send_StuName.TabIndex = 11;
            this.notePanel_Send_StuName.TabStop = false;
            this.notePanel_Send_StuName.Text = "姓  名:";
            // 
            // panelControl4
            // 
            this.panelControl4.Controls.Add(this.simpleButton_LoadEncryFile);
            this.panelControl4.Controls.Add(this.simpleButton_Send_TeaCard);
            this.panelControl4.Controls.Add(this.simpleButton_Send_StuCard);
            this.panelControl4.Controls.Add(this.simpleButton1);
            this.panelControl4.Dock = System.Windows.Forms.DockStyle.Top;
            this.panelControl4.Location = new System.Drawing.Point(0, 0);
            this.panelControl4.Name = "panelControl4";
            this.panelControl4.Size = new System.Drawing.Size(295, 40);
            this.panelControl4.TabIndex = 8;
            // 
            // simpleButton_LoadEncryFile
            // 
            this.simpleButton_LoadEncryFile.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.simpleButton_LoadEncryFile.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.simpleButton_LoadEncryFile.Appearance.ForeColor = System.Drawing.Color.DarkMagenta;
            this.simpleButton_LoadEncryFile.Appearance.Options.UseFont = true;
            this.simpleButton_LoadEncryFile.Appearance.Options.UseForeColor = true;
            this.simpleButton_LoadEncryFile.Location = new System.Drawing.Point(214, 8);
            this.simpleButton_LoadEncryFile.Name = "simpleButton_LoadEncryFile";
            this.simpleButton_LoadEncryFile.Size = new System.Drawing.Size(72, 26);
            this.simpleButton_LoadEncryFile.TabIndex = 7;
            this.simpleButton_LoadEncryFile.Tag = 4;
            this.simpleButton_LoadEncryFile.Text = "导入卡文件";
            this.simpleButton_LoadEncryFile.Click += new System.EventHandler(this.simpleButton_LoadEncryFile_Click);
            // 
            // simpleButton_Send_TeaCard
            // 
            this.simpleButton_Send_TeaCard.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.simpleButton_Send_TeaCard.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.simpleButton_Send_TeaCard.Appearance.ForeColor = System.Drawing.Color.DarkMagenta;
            this.simpleButton_Send_TeaCard.Appearance.Options.UseFont = true;
            this.simpleButton_Send_TeaCard.Appearance.Options.UseForeColor = true;
            this.simpleButton_Send_TeaCard.Location = new System.Drawing.Point(78, 8);
            this.simpleButton_Send_TeaCard.Name = "simpleButton_Send_TeaCard";
            this.simpleButton_Send_TeaCard.Size = new System.Drawing.Size(57, 26);
            this.simpleButton_Send_TeaCard.TabIndex = 6;
            this.simpleButton_Send_TeaCard.Tag = 4;
            this.simpleButton_Send_TeaCard.Text = "教师卡";
            this.simpleButton_Send_TeaCard.Click += new System.EventHandler(this.simpleButton_Send_TeaCard_Click);
            // 
            // simpleButton_Send_StuCard
            // 
            this.simpleButton_Send_StuCard.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.simpleButton_Send_StuCard.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.simpleButton_Send_StuCard.Appearance.ForeColor = System.Drawing.Color.DarkMagenta;
            this.simpleButton_Send_StuCard.Appearance.Options.UseFont = true;
            this.simpleButton_Send_StuCard.Appearance.Options.UseForeColor = true;
            this.simpleButton_Send_StuCard.Location = new System.Drawing.Point(14, 8);
            this.simpleButton_Send_StuCard.Name = "simpleButton_Send_StuCard";
            this.simpleButton_Send_StuCard.Size = new System.Drawing.Size(57, 26);
            this.simpleButton_Send_StuCard.TabIndex = 5;
            this.simpleButton_Send_StuCard.Tag = 4;
            this.simpleButton_Send_StuCard.Text = "学生卡";
            this.simpleButton_Send_StuCard.Click += new System.EventHandler(this.simpleButton_Send_StuCard_Click);
            // 
            // simpleButton1
            // 
            this.simpleButton1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.simpleButton1.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.simpleButton1.Appearance.ForeColor = System.Drawing.Color.DarkMagenta;
            this.simpleButton1.Appearance.Options.UseFont = true;
            this.simpleButton1.Appearance.Options.UseForeColor = true;
            this.simpleButton1.Location = new System.Drawing.Point(142, 8);
            this.simpleButton1.Name = "simpleButton1";
            this.simpleButton1.Size = new System.Drawing.Size(64, 26);
            this.simpleButton1.TabIndex = 6;
            this.simpleButton1.Tag = 4;
            this.simpleButton1.Text = "导出Excel";
            this.simpleButton1.Click += new System.EventHandler(this.simpleButton1_Click);
            // 
            // groupControl_Send_MyCardRec
            // 
            this.groupControl_Send_MyCardRec.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.groupControl_Send_MyCardRec.AppearanceCaption.Options.UseFont = true;
            this.groupControl_Send_MyCardRec.Controls.Add(this.groupControl1);
            this.groupControl_Send_MyCardRec.Controls.Add(this.combo_SendCardGrade);
            this.groupControl_Send_MyCardRec.Controls.Add(this.dataNavigator_CardSent);
            this.groupControl_Send_MyCardRec.Controls.Add(this.notePanel_Send_MyCardRec);
            this.groupControl_Send_MyCardRec.Controls.Add(this.notePanel_Send_Card1stMadeDate);
            this.groupControl_Send_MyCardRec.Controls.Add(this.notePanel1);
            this.groupControl_Send_MyCardRec.Controls.Add(this.notePanel4);
            this.groupControl_Send_MyCardRec.Controls.Add(this.notePanel5);
            this.groupControl_Send_MyCardRec.Controls.Add(this.textEdit_SendCardStuNumber);
            this.groupControl_Send_MyCardRec.Controls.Add(this.textEdit_SendCardStuName);
            this.groupControl_Send_MyCardRec.Controls.Add(this.combo_SendCardClass);
            this.groupControl_Send_MyCardRec.Dock = System.Windows.Forms.DockStyle.Fill;
            this.groupControl_Send_MyCardRec.Location = new System.Drawing.Point(0, 0);
            this.groupControl_Send_MyCardRec.Name = "groupControl_Send_MyCardRec";
            this.groupControl_Send_MyCardRec.Size = new System.Drawing.Size(466, 511);
            this.groupControl_Send_MyCardRec.TabIndex = 26;
            this.groupControl_Send_MyCardRec.Text = "我的卡记录";
            // 
            // groupControl1
            // 
            this.groupControl1.Controls.Add(this.lblMark1);
            this.groupControl1.Controls.Add(this.notePanel_Send_Card1stRemove);
            this.groupControl1.Controls.Add(this.SendCard1Date);
            this.groupControl1.Controls.Add(this.notePanel_Send_Card5thRemove);
            this.groupControl1.Controls.Add(this.notePanel_Send_Card4thDate);
            this.groupControl1.Controls.Add(this.notePanel_Send_Card5thDate);
            this.groupControl1.Controls.Add(this.SendCard4Holder);
            this.groupControl1.Controls.Add(this.notePanel_Send_Card1stHolder);
            this.groupControl1.Controls.Add(this.notePanel_Send_Card1stNumber);
            this.groupControl1.Controls.Add(this.SendCard1Holder);
            this.groupControl1.Controls.Add(this.SendCard1Number);
            this.groupControl1.Controls.Add(this.notePanel_Send_Card4thHolder);
            this.groupControl1.Controls.Add(this.SendCard4Number);
            this.groupControl1.Controls.Add(this.notePanel_Send_Card4thNumber);
            this.groupControl1.Controls.Add(this.notePanel_Send_Card1stDate);
            this.groupControl1.Controls.Add(this.SendCard4Date);
            this.groupControl1.Controls.Add(this.notePanel_Send_Card4thRemove);
            this.groupControl1.Controls.Add(this.notePanel_Send_Card3rdRemove);
            this.groupControl1.Controls.Add(this.removeCard5);
            this.groupControl1.Controls.Add(this.SendCard5Date);
            this.groupControl1.Controls.Add(this.notePanel_Send_Card5thNumber);
            this.groupControl1.Controls.Add(this.SendCard5Number);
            this.groupControl1.Controls.Add(this.notePanel_Send_Card5thHolder);
            this.groupControl1.Controls.Add(this.notePanel_Send_Card2ndNumber);
            this.groupControl1.Controls.Add(this.SendCard5Holder);
            this.groupControl1.Controls.Add(this.notePanel_Send_Card2ndHolder);
            this.groupControl1.Controls.Add(this.notePanel_Send_Card2ndDate);
            this.groupControl1.Controls.Add(this.SendCard2Date);
            this.groupControl1.Controls.Add(this.SendCard2Number);
            this.groupControl1.Controls.Add(this.removeCard1);
            this.groupControl1.Controls.Add(this.removeCard3);
            this.groupControl1.Controls.Add(this.SendCard2Holder);
            this.groupControl1.Controls.Add(this.removeCard2);
            this.groupControl1.Controls.Add(this.notePanel_Send_Card2ndRemove);
            this.groupControl1.Controls.Add(this.removeCard4);
            this.groupControl1.Controls.Add(this.SendCard3Date);
            this.groupControl1.Controls.Add(this.notePanel_Send_Card3rdNumber);
            this.groupControl1.Controls.Add(this.SendCard3Number);
            this.groupControl1.Controls.Add(this.notePanel_Send_Card3rdHolder);
            this.groupControl1.Controls.Add(this.SendCard3Holder);
            this.groupControl1.Controls.Add(this.notePanel_Send_Card3rdDate);
            this.groupControl1.Controls.Add(this.lblMark2);
            this.groupControl1.Controls.Add(this.lblMark3);
            this.groupControl1.Controls.Add(this.lblMark4);
            this.groupControl1.Controls.Add(this.lblMark5);
            this.groupControl1.Dock = System.Windows.Forms.DockStyle.Bottom;
            this.groupControl1.Location = new System.Drawing.Point(2, 101);
            this.groupControl1.Name = "groupControl1";
            this.groupControl1.Size = new System.Drawing.Size(462, 368);
            this.groupControl1.TabIndex = 65;
            this.groupControl1.Text = "卡信息";
            // 
            // lblMark1
            // 
            this.lblMark1.BackColor = System.Drawing.Color.Transparent;
            this.lblMark1.ForeColor = System.Drawing.Color.Red;
            this.lblMark1.Location = new System.Drawing.Point(24, 32);
            this.lblMark1.Name = "lblMark1";
            this.lblMark1.Size = new System.Drawing.Size(8, 16);
            this.lblMark1.TabIndex = 80;
            this.lblMark1.Text = "*";
            // 
            // notePanel_Send_Card1stRemove
            // 
            this.notePanel_Send_Card1stRemove.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel_Send_Card1stRemove.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel_Send_Card1stRemove.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel_Send_Card1stRemove.ForeColor = System.Drawing.Color.Black;
            this.notePanel_Send_Card1stRemove.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_Send_Card1stRemove.Location = new System.Drawing.Point(240, 60);
            this.notePanel_Send_Card1stRemove.MaxRows = 5;
            this.notePanel_Send_Card1stRemove.Name = "notePanel_Send_Card1stRemove";
            this.notePanel_Send_Card1stRemove.ParentAutoHeight = true;
            this.notePanel_Send_Card1stRemove.Size = new System.Drawing.Size(72, 22);
            this.notePanel_Send_Card1stRemove.TabIndex = 28;
            this.notePanel_Send_Card1stRemove.TabStop = false;
            this.notePanel_Send_Card1stRemove.Text = "是否销卡";
            // 
            // SendCard1Date
            // 
            this.SendCard1Date.EditValue = new System.DateTime(2005, 11, 2, 0, 0, 0, 0);
            this.SendCard1Date.Location = new System.Drawing.Point(120, 60);
            this.SendCard1Date.Name = "SendCard1Date";
            this.SendCard1Date.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.SendCard1Date.Properties.ReadOnly = true;
            this.SendCard1Date.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton()});
            this.SendCard1Date.Size = new System.Drawing.Size(96, 20);
            this.SendCard1Date.TabIndex = 61;
            // 
            // notePanel_Send_Card5thRemove
            // 
            this.notePanel_Send_Card5thRemove.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel_Send_Card5thRemove.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel_Send_Card5thRemove.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel_Send_Card5thRemove.ForeColor = System.Drawing.Color.Black;
            this.notePanel_Send_Card5thRemove.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_Send_Card5thRemove.Location = new System.Drawing.Point(240, 300);
            this.notePanel_Send_Card5thRemove.MaxRows = 5;
            this.notePanel_Send_Card5thRemove.Name = "notePanel_Send_Card5thRemove";
            this.notePanel_Send_Card5thRemove.ParentAutoHeight = true;
            this.notePanel_Send_Card5thRemove.Size = new System.Drawing.Size(72, 22);
            this.notePanel_Send_Card5thRemove.TabIndex = 28;
            this.notePanel_Send_Card5thRemove.TabStop = false;
            this.notePanel_Send_Card5thRemove.Text = "是否销卡";
            // 
            // notePanel_Send_Card4thDate
            // 
            this.notePanel_Send_Card4thDate.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel_Send_Card4thDate.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel_Send_Card4thDate.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel_Send_Card4thDate.ForeColor = System.Drawing.Color.Black;
            this.notePanel_Send_Card4thDate.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_Send_Card4thDate.Location = new System.Drawing.Point(40, 240);
            this.notePanel_Send_Card4thDate.MaxRows = 5;
            this.notePanel_Send_Card4thDate.Name = "notePanel_Send_Card4thDate";
            this.notePanel_Send_Card4thDate.ParentAutoHeight = true;
            this.notePanel_Send_Card4thDate.Size = new System.Drawing.Size(72, 22);
            this.notePanel_Send_Card4thDate.TabIndex = 28;
            this.notePanel_Send_Card4thDate.TabStop = false;
            this.notePanel_Send_Card4thDate.Text = "发卡日期";
            // 
            // notePanel_Send_Card5thDate
            // 
            this.notePanel_Send_Card5thDate.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel_Send_Card5thDate.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel_Send_Card5thDate.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel_Send_Card5thDate.ForeColor = System.Drawing.Color.Black;
            this.notePanel_Send_Card5thDate.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_Send_Card5thDate.Location = new System.Drawing.Point(40, 300);
            this.notePanel_Send_Card5thDate.MaxRows = 5;
            this.notePanel_Send_Card5thDate.Name = "notePanel_Send_Card5thDate";
            this.notePanel_Send_Card5thDate.ParentAutoHeight = true;
            this.notePanel_Send_Card5thDate.Size = new System.Drawing.Size(72, 22);
            this.notePanel_Send_Card5thDate.TabIndex = 28;
            this.notePanel_Send_Card5thDate.TabStop = false;
            this.notePanel_Send_Card5thDate.Text = "发卡日期";
            // 
            // SendCard4Holder
            // 
            this.SendCard4Holder.EditValue = "";
            this.SendCard4Holder.Location = new System.Drawing.Point(320, 210);
            this.SendCard4Holder.Name = "SendCard4Holder";
            this.SendCard4Holder.Size = new System.Drawing.Size(96, 20);
            this.SendCard4Holder.TabIndex = 27;
            // 
            // notePanel_Send_Card1stHolder
            // 
            this.notePanel_Send_Card1stHolder.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel_Send_Card1stHolder.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel_Send_Card1stHolder.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel_Send_Card1stHolder.ForeColor = System.Drawing.Color.Black;
            this.notePanel_Send_Card1stHolder.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_Send_Card1stHolder.Location = new System.Drawing.Point(240, 30);
            this.notePanel_Send_Card1stHolder.MaxRows = 5;
            this.notePanel_Send_Card1stHolder.Name = "notePanel_Send_Card1stHolder";
            this.notePanel_Send_Card1stHolder.ParentAutoHeight = true;
            this.notePanel_Send_Card1stHolder.Size = new System.Drawing.Size(72, 22);
            this.notePanel_Send_Card1stHolder.TabIndex = 28;
            this.notePanel_Send_Card1stHolder.TabStop = false;
            this.notePanel_Send_Card1stHolder.Text = "持卡用户";
            // 
            // notePanel_Send_Card1stNumber
            // 
            this.notePanel_Send_Card1stNumber.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel_Send_Card1stNumber.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel_Send_Card1stNumber.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel_Send_Card1stNumber.ForeColor = System.Drawing.Color.Black;
            this.notePanel_Send_Card1stNumber.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_Send_Card1stNumber.Location = new System.Drawing.Point(40, 30);
            this.notePanel_Send_Card1stNumber.MaxRows = 5;
            this.notePanel_Send_Card1stNumber.Name = "notePanel_Send_Card1stNumber";
            this.notePanel_Send_Card1stNumber.ParentAutoHeight = true;
            this.notePanel_Send_Card1stNumber.Size = new System.Drawing.Size(72, 22);
            this.notePanel_Send_Card1stNumber.TabIndex = 14;
            this.notePanel_Send_Card1stNumber.TabStop = false;
            this.notePanel_Send_Card1stNumber.Text = "卡1号码";
            // 
            // SendCard1Holder
            // 
            this.SendCard1Holder.EditValue = "";
            this.SendCard1Holder.Location = new System.Drawing.Point(320, 30);
            this.SendCard1Holder.Name = "SendCard1Holder";
            this.SendCard1Holder.Size = new System.Drawing.Size(96, 20);
            this.SendCard1Holder.TabIndex = 27;
            // 
            // SendCard1Number
            // 
            this.SendCard1Number.EditValue = "";
            this.SendCard1Number.Location = new System.Drawing.Point(120, 30);
            this.SendCard1Number.Name = "SendCard1Number";
            this.SendCard1Number.Properties.Mask.SaveLiteral = false;
            this.SendCard1Number.Properties.Mask.ShowPlaceHolders = false;
            this.SendCard1Number.Size = new System.Drawing.Size(96, 20);
            this.SendCard1Number.TabIndex = 27;
            this.SendCard1Number.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.SendCard1Number_KeyPress);
            // 
            // notePanel_Send_Card4thHolder
            // 
            this.notePanel_Send_Card4thHolder.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel_Send_Card4thHolder.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel_Send_Card4thHolder.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel_Send_Card4thHolder.ForeColor = System.Drawing.Color.Black;
            this.notePanel_Send_Card4thHolder.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_Send_Card4thHolder.Location = new System.Drawing.Point(240, 210);
            this.notePanel_Send_Card4thHolder.MaxRows = 5;
            this.notePanel_Send_Card4thHolder.Name = "notePanel_Send_Card4thHolder";
            this.notePanel_Send_Card4thHolder.ParentAutoHeight = true;
            this.notePanel_Send_Card4thHolder.Size = new System.Drawing.Size(72, 22);
            this.notePanel_Send_Card4thHolder.TabIndex = 28;
            this.notePanel_Send_Card4thHolder.TabStop = false;
            this.notePanel_Send_Card4thHolder.Text = "持卡用户";
            // 
            // SendCard4Number
            // 
            this.SendCard4Number.EditValue = "";
            this.SendCard4Number.Location = new System.Drawing.Point(120, 210);
            this.SendCard4Number.Name = "SendCard4Number";
            this.SendCard4Number.Size = new System.Drawing.Size(96, 20);
            this.SendCard4Number.TabIndex = 27;
            this.SendCard4Number.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.SendCard4Number_KeyPress);
            // 
            // notePanel_Send_Card4thNumber
            // 
            this.notePanel_Send_Card4thNumber.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel_Send_Card4thNumber.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel_Send_Card4thNumber.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel_Send_Card4thNumber.ForeColor = System.Drawing.Color.Black;
            this.notePanel_Send_Card4thNumber.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_Send_Card4thNumber.Location = new System.Drawing.Point(40, 210);
            this.notePanel_Send_Card4thNumber.MaxRows = 5;
            this.notePanel_Send_Card4thNumber.Name = "notePanel_Send_Card4thNumber";
            this.notePanel_Send_Card4thNumber.ParentAutoHeight = true;
            this.notePanel_Send_Card4thNumber.Size = new System.Drawing.Size(72, 22);
            this.notePanel_Send_Card4thNumber.TabIndex = 14;
            this.notePanel_Send_Card4thNumber.TabStop = false;
            this.notePanel_Send_Card4thNumber.Text = "卡4号码";
            // 
            // notePanel_Send_Card1stDate
            // 
            this.notePanel_Send_Card1stDate.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel_Send_Card1stDate.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel_Send_Card1stDate.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel_Send_Card1stDate.ForeColor = System.Drawing.Color.Black;
            this.notePanel_Send_Card1stDate.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_Send_Card1stDate.Location = new System.Drawing.Point(40, 60);
            this.notePanel_Send_Card1stDate.MaxRows = 5;
            this.notePanel_Send_Card1stDate.Name = "notePanel_Send_Card1stDate";
            this.notePanel_Send_Card1stDate.ParentAutoHeight = true;
            this.notePanel_Send_Card1stDate.Size = new System.Drawing.Size(72, 22);
            this.notePanel_Send_Card1stDate.TabIndex = 28;
            this.notePanel_Send_Card1stDate.TabStop = false;
            this.notePanel_Send_Card1stDate.Text = "发卡日期";
            // 
            // SendCard4Date
            // 
            this.SendCard4Date.EditValue = new System.DateTime(2005, 11, 2, 0, 0, 0, 0);
            this.SendCard4Date.Location = new System.Drawing.Point(120, 240);
            this.SendCard4Date.Name = "SendCard4Date";
            this.SendCard4Date.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.SendCard4Date.Properties.ReadOnly = true;
            this.SendCard4Date.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton()});
            this.SendCard4Date.Size = new System.Drawing.Size(96, 20);
            this.SendCard4Date.TabIndex = 61;
            // 
            // notePanel_Send_Card4thRemove
            // 
            this.notePanel_Send_Card4thRemove.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel_Send_Card4thRemove.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel_Send_Card4thRemove.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel_Send_Card4thRemove.ForeColor = System.Drawing.Color.Black;
            this.notePanel_Send_Card4thRemove.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_Send_Card4thRemove.Location = new System.Drawing.Point(240, 240);
            this.notePanel_Send_Card4thRemove.MaxRows = 5;
            this.notePanel_Send_Card4thRemove.Name = "notePanel_Send_Card4thRemove";
            this.notePanel_Send_Card4thRemove.ParentAutoHeight = true;
            this.notePanel_Send_Card4thRemove.Size = new System.Drawing.Size(72, 22);
            this.notePanel_Send_Card4thRemove.TabIndex = 28;
            this.notePanel_Send_Card4thRemove.TabStop = false;
            this.notePanel_Send_Card4thRemove.Text = "是否销卡";
            // 
            // notePanel_Send_Card3rdRemove
            // 
            this.notePanel_Send_Card3rdRemove.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel_Send_Card3rdRemove.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel_Send_Card3rdRemove.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel_Send_Card3rdRemove.ForeColor = System.Drawing.Color.Black;
            this.notePanel_Send_Card3rdRemove.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_Send_Card3rdRemove.Location = new System.Drawing.Point(240, 180);
            this.notePanel_Send_Card3rdRemove.MaxRows = 5;
            this.notePanel_Send_Card3rdRemove.Name = "notePanel_Send_Card3rdRemove";
            this.notePanel_Send_Card3rdRemove.ParentAutoHeight = true;
            this.notePanel_Send_Card3rdRemove.Size = new System.Drawing.Size(72, 22);
            this.notePanel_Send_Card3rdRemove.TabIndex = 28;
            this.notePanel_Send_Card3rdRemove.TabStop = false;
            this.notePanel_Send_Card3rdRemove.Text = "是否销卡";
            // 
            // removeCard5
            // 
            this.removeCard5.Location = new System.Drawing.Point(320, 300);
            this.removeCard5.Name = "removeCard5";
            this.removeCard5.Properties.Caption = "注销此卡";
            this.removeCard5.Size = new System.Drawing.Size(75, 19);
            this.removeCard5.TabIndex = 64;
            // 
            // SendCard5Date
            // 
            this.SendCard5Date.EditValue = new System.DateTime(2005, 11, 2, 0, 0, 0, 0);
            this.SendCard5Date.Location = new System.Drawing.Point(120, 300);
            this.SendCard5Date.Name = "SendCard5Date";
            this.SendCard5Date.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.SendCard5Date.Properties.ReadOnly = true;
            this.SendCard5Date.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton()});
            this.SendCard5Date.Size = new System.Drawing.Size(96, 20);
            this.SendCard5Date.TabIndex = 61;
            // 
            // notePanel_Send_Card5thNumber
            // 
            this.notePanel_Send_Card5thNumber.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel_Send_Card5thNumber.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel_Send_Card5thNumber.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel_Send_Card5thNumber.ForeColor = System.Drawing.Color.Black;
            this.notePanel_Send_Card5thNumber.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_Send_Card5thNumber.Location = new System.Drawing.Point(40, 270);
            this.notePanel_Send_Card5thNumber.MaxRows = 5;
            this.notePanel_Send_Card5thNumber.Name = "notePanel_Send_Card5thNumber";
            this.notePanel_Send_Card5thNumber.ParentAutoHeight = true;
            this.notePanel_Send_Card5thNumber.Size = new System.Drawing.Size(72, 22);
            this.notePanel_Send_Card5thNumber.TabIndex = 14;
            this.notePanel_Send_Card5thNumber.TabStop = false;
            this.notePanel_Send_Card5thNumber.Text = "卡5号码";
            // 
            // SendCard5Number
            // 
            this.SendCard5Number.EditValue = "";
            this.SendCard5Number.Location = new System.Drawing.Point(120, 270);
            this.SendCard5Number.Name = "SendCard5Number";
            this.SendCard5Number.Size = new System.Drawing.Size(96, 20);
            this.SendCard5Number.TabIndex = 27;
            this.SendCard5Number.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.SendCard5Number_KeyPress);
            // 
            // notePanel_Send_Card5thHolder
            // 
            this.notePanel_Send_Card5thHolder.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel_Send_Card5thHolder.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel_Send_Card5thHolder.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel_Send_Card5thHolder.ForeColor = System.Drawing.Color.Black;
            this.notePanel_Send_Card5thHolder.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_Send_Card5thHolder.Location = new System.Drawing.Point(240, 270);
            this.notePanel_Send_Card5thHolder.MaxRows = 5;
            this.notePanel_Send_Card5thHolder.Name = "notePanel_Send_Card5thHolder";
            this.notePanel_Send_Card5thHolder.ParentAutoHeight = true;
            this.notePanel_Send_Card5thHolder.Size = new System.Drawing.Size(72, 22);
            this.notePanel_Send_Card5thHolder.TabIndex = 28;
            this.notePanel_Send_Card5thHolder.TabStop = false;
            this.notePanel_Send_Card5thHolder.Text = "持卡用户";
            // 
            // notePanel_Send_Card2ndNumber
            // 
            this.notePanel_Send_Card2ndNumber.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel_Send_Card2ndNumber.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel_Send_Card2ndNumber.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel_Send_Card2ndNumber.ForeColor = System.Drawing.Color.Black;
            this.notePanel_Send_Card2ndNumber.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_Send_Card2ndNumber.Location = new System.Drawing.Point(40, 90);
            this.notePanel_Send_Card2ndNumber.MaxRows = 5;
            this.notePanel_Send_Card2ndNumber.Name = "notePanel_Send_Card2ndNumber";
            this.notePanel_Send_Card2ndNumber.ParentAutoHeight = true;
            this.notePanel_Send_Card2ndNumber.Size = new System.Drawing.Size(72, 22);
            this.notePanel_Send_Card2ndNumber.TabIndex = 14;
            this.notePanel_Send_Card2ndNumber.TabStop = false;
            this.notePanel_Send_Card2ndNumber.Text = "卡2号码";
            // 
            // SendCard5Holder
            // 
            this.SendCard5Holder.EditValue = "";
            this.SendCard5Holder.Location = new System.Drawing.Point(320, 270);
            this.SendCard5Holder.Name = "SendCard5Holder";
            this.SendCard5Holder.Size = new System.Drawing.Size(96, 20);
            this.SendCard5Holder.TabIndex = 27;
            // 
            // notePanel_Send_Card2ndHolder
            // 
            this.notePanel_Send_Card2ndHolder.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel_Send_Card2ndHolder.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel_Send_Card2ndHolder.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel_Send_Card2ndHolder.ForeColor = System.Drawing.Color.Black;
            this.notePanel_Send_Card2ndHolder.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_Send_Card2ndHolder.Location = new System.Drawing.Point(240, 90);
            this.notePanel_Send_Card2ndHolder.MaxRows = 5;
            this.notePanel_Send_Card2ndHolder.Name = "notePanel_Send_Card2ndHolder";
            this.notePanel_Send_Card2ndHolder.ParentAutoHeight = true;
            this.notePanel_Send_Card2ndHolder.Size = new System.Drawing.Size(72, 22);
            this.notePanel_Send_Card2ndHolder.TabIndex = 28;
            this.notePanel_Send_Card2ndHolder.TabStop = false;
            this.notePanel_Send_Card2ndHolder.Text = "持卡用户";
            // 
            // notePanel_Send_Card2ndDate
            // 
            this.notePanel_Send_Card2ndDate.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel_Send_Card2ndDate.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel_Send_Card2ndDate.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel_Send_Card2ndDate.ForeColor = System.Drawing.Color.Black;
            this.notePanel_Send_Card2ndDate.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_Send_Card2ndDate.Location = new System.Drawing.Point(40, 120);
            this.notePanel_Send_Card2ndDate.MaxRows = 5;
            this.notePanel_Send_Card2ndDate.Name = "notePanel_Send_Card2ndDate";
            this.notePanel_Send_Card2ndDate.ParentAutoHeight = true;
            this.notePanel_Send_Card2ndDate.Size = new System.Drawing.Size(72, 22);
            this.notePanel_Send_Card2ndDate.TabIndex = 28;
            this.notePanel_Send_Card2ndDate.TabStop = false;
            this.notePanel_Send_Card2ndDate.Text = "发卡日期";
            // 
            // SendCard2Date
            // 
            this.SendCard2Date.EditValue = new System.DateTime(2005, 11, 2, 0, 0, 0, 0);
            this.SendCard2Date.Location = new System.Drawing.Point(120, 120);
            this.SendCard2Date.Name = "SendCard2Date";
            this.SendCard2Date.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.SendCard2Date.Properties.ReadOnly = true;
            this.SendCard2Date.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton()});
            this.SendCard2Date.Size = new System.Drawing.Size(96, 20);
            this.SendCard2Date.TabIndex = 61;
            // 
            // SendCard2Number
            // 
            this.SendCard2Number.EditValue = "";
            this.SendCard2Number.Location = new System.Drawing.Point(120, 90);
            this.SendCard2Number.Name = "SendCard2Number";
            this.SendCard2Number.Size = new System.Drawing.Size(96, 20);
            this.SendCard2Number.TabIndex = 27;
            this.SendCard2Number.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.SendCard2Number_KeyPress);
            // 
            // removeCard1
            // 
            this.removeCard1.Location = new System.Drawing.Point(320, 60);
            this.removeCard1.Name = "removeCard1";
            this.removeCard1.Properties.Caption = "注销此卡";
            this.removeCard1.Size = new System.Drawing.Size(75, 19);
            this.removeCard1.TabIndex = 64;
            // 
            // removeCard3
            // 
            this.removeCard3.Location = new System.Drawing.Point(320, 180);
            this.removeCard3.Name = "removeCard3";
            this.removeCard3.Properties.Caption = "注销此卡";
            this.removeCard3.Size = new System.Drawing.Size(75, 19);
            this.removeCard3.TabIndex = 64;
            // 
            // SendCard2Holder
            // 
            this.SendCard2Holder.EditValue = "";
            this.SendCard2Holder.Location = new System.Drawing.Point(320, 90);
            this.SendCard2Holder.Name = "SendCard2Holder";
            this.SendCard2Holder.Size = new System.Drawing.Size(96, 20);
            this.SendCard2Holder.TabIndex = 27;
            // 
            // removeCard2
            // 
            this.removeCard2.Location = new System.Drawing.Point(320, 120);
            this.removeCard2.Name = "removeCard2";
            this.removeCard2.Properties.Caption = "注销此卡";
            this.removeCard2.Size = new System.Drawing.Size(75, 19);
            this.removeCard2.TabIndex = 64;
            // 
            // notePanel_Send_Card2ndRemove
            // 
            this.notePanel_Send_Card2ndRemove.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel_Send_Card2ndRemove.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel_Send_Card2ndRemove.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel_Send_Card2ndRemove.ForeColor = System.Drawing.Color.Black;
            this.notePanel_Send_Card2ndRemove.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_Send_Card2ndRemove.Location = new System.Drawing.Point(240, 120);
            this.notePanel_Send_Card2ndRemove.MaxRows = 5;
            this.notePanel_Send_Card2ndRemove.Name = "notePanel_Send_Card2ndRemove";
            this.notePanel_Send_Card2ndRemove.ParentAutoHeight = true;
            this.notePanel_Send_Card2ndRemove.Size = new System.Drawing.Size(72, 22);
            this.notePanel_Send_Card2ndRemove.TabIndex = 28;
            this.notePanel_Send_Card2ndRemove.TabStop = false;
            this.notePanel_Send_Card2ndRemove.Text = "是否销卡";
            // 
            // removeCard4
            // 
            this.removeCard4.Location = new System.Drawing.Point(320, 240);
            this.removeCard4.Name = "removeCard4";
            this.removeCard4.Properties.Caption = "注销此卡";
            this.removeCard4.Size = new System.Drawing.Size(75, 19);
            this.removeCard4.TabIndex = 64;
            // 
            // SendCard3Date
            // 
            this.SendCard3Date.EditValue = new System.DateTime(2005, 11, 2, 0, 0, 0, 0);
            this.SendCard3Date.Location = new System.Drawing.Point(120, 180);
            this.SendCard3Date.Name = "SendCard3Date";
            this.SendCard3Date.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.SendCard3Date.Properties.ReadOnly = true;
            this.SendCard3Date.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton()});
            this.SendCard3Date.Size = new System.Drawing.Size(96, 20);
            this.SendCard3Date.TabIndex = 61;
            // 
            // notePanel_Send_Card3rdNumber
            // 
            this.notePanel_Send_Card3rdNumber.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel_Send_Card3rdNumber.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel_Send_Card3rdNumber.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel_Send_Card3rdNumber.ForeColor = System.Drawing.Color.Black;
            this.notePanel_Send_Card3rdNumber.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_Send_Card3rdNumber.Location = new System.Drawing.Point(40, 150);
            this.notePanel_Send_Card3rdNumber.MaxRows = 5;
            this.notePanel_Send_Card3rdNumber.Name = "notePanel_Send_Card3rdNumber";
            this.notePanel_Send_Card3rdNumber.ParentAutoHeight = true;
            this.notePanel_Send_Card3rdNumber.Size = new System.Drawing.Size(72, 22);
            this.notePanel_Send_Card3rdNumber.TabIndex = 14;
            this.notePanel_Send_Card3rdNumber.TabStop = false;
            this.notePanel_Send_Card3rdNumber.Text = "卡3号码";
            // 
            // SendCard3Number
            // 
            this.SendCard3Number.EditValue = "";
            this.SendCard3Number.Location = new System.Drawing.Point(120, 150);
            this.SendCard3Number.Name = "SendCard3Number";
            this.SendCard3Number.Size = new System.Drawing.Size(96, 20);
            this.SendCard3Number.TabIndex = 27;
            this.SendCard3Number.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.SendCard3Number_KeyPress);
            // 
            // notePanel_Send_Card3rdHolder
            // 
            this.notePanel_Send_Card3rdHolder.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel_Send_Card3rdHolder.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel_Send_Card3rdHolder.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel_Send_Card3rdHolder.ForeColor = System.Drawing.Color.Black;
            this.notePanel_Send_Card3rdHolder.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_Send_Card3rdHolder.Location = new System.Drawing.Point(240, 150);
            this.notePanel_Send_Card3rdHolder.MaxRows = 5;
            this.notePanel_Send_Card3rdHolder.Name = "notePanel_Send_Card3rdHolder";
            this.notePanel_Send_Card3rdHolder.ParentAutoHeight = true;
            this.notePanel_Send_Card3rdHolder.Size = new System.Drawing.Size(72, 22);
            this.notePanel_Send_Card3rdHolder.TabIndex = 28;
            this.notePanel_Send_Card3rdHolder.TabStop = false;
            this.notePanel_Send_Card3rdHolder.Text = "持卡用户";
            // 
            // SendCard3Holder
            // 
            this.SendCard3Holder.EditValue = "";
            this.SendCard3Holder.Location = new System.Drawing.Point(320, 150);
            this.SendCard3Holder.Name = "SendCard3Holder";
            this.SendCard3Holder.Size = new System.Drawing.Size(96, 20);
            this.SendCard3Holder.TabIndex = 27;
            // 
            // notePanel_Send_Card3rdDate
            // 
            this.notePanel_Send_Card3rdDate.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel_Send_Card3rdDate.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel_Send_Card3rdDate.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel_Send_Card3rdDate.ForeColor = System.Drawing.Color.Black;
            this.notePanel_Send_Card3rdDate.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_Send_Card3rdDate.Location = new System.Drawing.Point(40, 180);
            this.notePanel_Send_Card3rdDate.MaxRows = 5;
            this.notePanel_Send_Card3rdDate.Name = "notePanel_Send_Card3rdDate";
            this.notePanel_Send_Card3rdDate.ParentAutoHeight = true;
            this.notePanel_Send_Card3rdDate.Size = new System.Drawing.Size(72, 22);
            this.notePanel_Send_Card3rdDate.TabIndex = 28;
            this.notePanel_Send_Card3rdDate.TabStop = false;
            this.notePanel_Send_Card3rdDate.Text = "发卡日期";
            // 
            // lblMark2
            // 
            this.lblMark2.BackColor = System.Drawing.Color.Transparent;
            this.lblMark2.ForeColor = System.Drawing.Color.Red;
            this.lblMark2.Location = new System.Drawing.Point(24, 96);
            this.lblMark2.Name = "lblMark2";
            this.lblMark2.Size = new System.Drawing.Size(8, 16);
            this.lblMark2.TabIndex = 80;
            this.lblMark2.Text = "*";
            // 
            // lblMark3
            // 
            this.lblMark3.BackColor = System.Drawing.Color.Transparent;
            this.lblMark3.ForeColor = System.Drawing.Color.Red;
            this.lblMark3.Location = new System.Drawing.Point(24, 152);
            this.lblMark3.Name = "lblMark3";
            this.lblMark3.Size = new System.Drawing.Size(8, 16);
            this.lblMark3.TabIndex = 80;
            this.lblMark3.Text = "*";
            // 
            // lblMark4
            // 
            this.lblMark4.BackColor = System.Drawing.Color.Transparent;
            this.lblMark4.ForeColor = System.Drawing.Color.Red;
            this.lblMark4.Location = new System.Drawing.Point(24, 216);
            this.lblMark4.Name = "lblMark4";
            this.lblMark4.Size = new System.Drawing.Size(8, 16);
            this.lblMark4.TabIndex = 80;
            this.lblMark4.Text = "*";
            // 
            // lblMark5
            // 
            this.lblMark5.BackColor = System.Drawing.Color.Transparent;
            this.lblMark5.ForeColor = System.Drawing.Color.Red;
            this.lblMark5.Location = new System.Drawing.Point(24, 272);
            this.lblMark5.Name = "lblMark5";
            this.lblMark5.Size = new System.Drawing.Size(8, 16);
            this.lblMark5.TabIndex = 80;
            this.lblMark5.Text = "*";
            // 
            // combo_SendCardGrade
            // 
            this.combo_SendCardGrade.EditValue = "全部";
            this.combo_SendCardGrade.Location = new System.Drawing.Point(120, 104);
            this.combo_SendCardGrade.Name = "combo_SendCardGrade";
            this.combo_SendCardGrade.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.combo_SendCardGrade.Properties.Items.AddRange(new object[] {
            "全部"});
            this.combo_SendCardGrade.Properties.ReadOnly = true;
            this.combo_SendCardGrade.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
            this.combo_SendCardGrade.Size = new System.Drawing.Size(96, 20);
            this.combo_SendCardGrade.TabIndex = 63;
            this.combo_SendCardGrade.SelectedIndexChanged += new System.EventHandler(this.combo_SendCardGrade_SelectedIndexChanged);
            // 
            // dataNavigator_CardSent
            // 
            this.dataNavigator_CardSent.Buttons.Append.Hint = "添加新卡";
            this.dataNavigator_CardSent.Buttons.Append.Visible = false;
            this.dataNavigator_CardSent.Buttons.CancelEdit.Hint = "取消编辑";
            this.dataNavigator_CardSent.Buttons.CancelEdit.Visible = false;
            this.dataNavigator_CardSent.Buttons.EnabledAutoRepeat = false;
            this.dataNavigator_CardSent.Buttons.EndEdit.Hint = "保存卡信息";
            this.dataNavigator_CardSent.Buttons.First.Hint = "第一条记录";
            this.dataNavigator_CardSent.Buttons.Last.Hint = "最后一条记录";
            this.dataNavigator_CardSent.Buttons.Next.Hint = "下一条记录";
            this.dataNavigator_CardSent.Buttons.NextPage.Hint = "下一页记录";
            this.dataNavigator_CardSent.Buttons.Prev.Hint = "前一条记录";
            this.dataNavigator_CardSent.Buttons.PrevPage.Hint = "前一页记录";
            this.dataNavigator_CardSent.Buttons.Remove.Hint = "删除卡记录";
            this.dataNavigator_CardSent.Buttons.Remove.Visible = false;
            this.dataNavigator_CardSent.CustomButtons.AddRange(new DevExpress.XtraEditors.NavigatorCustomButton[] {
            new DevExpress.XtraEditors.NavigatorCustomButton(-1, 6, true, true, "发卡", "0"),
            new DevExpress.XtraEditors.NavigatorCustomButton(-1, 10, true, true, "销卡", "1")});
            this.dataNavigator_CardSent.Dock = System.Windows.Forms.DockStyle.Bottom;
            this.dataNavigator_CardSent.Location = new System.Drawing.Point(2, 469);
            this.dataNavigator_CardSent.Name = "dataNavigator_CardSent";
            this.dataNavigator_CardSent.ShowToolTips = true;
            this.dataNavigator_CardSent.Size = new System.Drawing.Size(462, 40);
            this.dataNavigator_CardSent.TabIndex = 57;
            this.dataNavigator_CardSent.Text = "dataNavigator1";
            this.dataNavigator_CardSent.TextLocation = DevExpress.XtraEditors.NavigatorButtonsTextLocation.End;
            this.dataNavigator_CardSent.ButtonClick += new DevExpress.XtraEditors.NavigatorButtonClickEventHandler(this.dataNavigator_CardSent_ButtonClick);
            // 
            // notePanel_Send_MyCardRec
            // 
            this.notePanel_Send_MyCardRec.BackColor = System.Drawing.Color.LightGoldenrodYellow;
            this.notePanel_Send_MyCardRec.Dock = System.Windows.Forms.DockStyle.Top;
            this.notePanel_Send_MyCardRec.ForeColor = System.Drawing.Color.OrangeRed;
            this.notePanel_Send_MyCardRec.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_Send_MyCardRec.Location = new System.Drawing.Point(2, 22);
            this.notePanel_Send_MyCardRec.MaxRows = 5;
            this.notePanel_Send_MyCardRec.Name = "notePanel_Send_MyCardRec";
            this.notePanel_Send_MyCardRec.ParentAutoHeight = true;
            this.notePanel_Send_MyCardRec.Size = new System.Drawing.Size(462, 23);
            this.notePanel_Send_MyCardRec.TabIndex = 56;
            this.notePanel_Send_MyCardRec.TabStop = false;
            this.notePanel_Send_MyCardRec.Text = "卡信息管理";
            // 
            // notePanel_Send_Card1stMadeDate
            // 
            this.notePanel_Send_Card1stMadeDate.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel_Send_Card1stMadeDate.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel_Send_Card1stMadeDate.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel_Send_Card1stMadeDate.ForeColor = System.Drawing.Color.Black;
            this.notePanel_Send_Card1stMadeDate.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_Send_Card1stMadeDate.Location = new System.Drawing.Point(40, 72);
            this.notePanel_Send_Card1stMadeDate.MaxRows = 5;
            this.notePanel_Send_Card1stMadeDate.Name = "notePanel_Send_Card1stMadeDate";
            this.notePanel_Send_Card1stMadeDate.ParentAutoHeight = true;
            this.notePanel_Send_Card1stMadeDate.Size = new System.Drawing.Size(72, 22);
            this.notePanel_Send_Card1stMadeDate.TabIndex = 30;
            this.notePanel_Send_Card1stMadeDate.TabStop = false;
            this.notePanel_Send_Card1stMadeDate.Text = " 姓  名:";
            // 
            // notePanel1
            // 
            this.notePanel1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel1.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel1.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel1.ForeColor = System.Drawing.Color.Black;
            this.notePanel1.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel1.Location = new System.Drawing.Point(40, 104);
            this.notePanel1.MaxRows = 5;
            this.notePanel1.Name = "notePanel1";
            this.notePanel1.ParentAutoHeight = true;
            this.notePanel1.Size = new System.Drawing.Size(72, 22);
            this.notePanel1.TabIndex = 30;
            this.notePanel1.TabStop = false;
            this.notePanel1.Text = " 年  级:";
            // 
            // notePanel4
            // 
            this.notePanel4.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel4.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel4.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel4.ForeColor = System.Drawing.Color.Black;
            this.notePanel4.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel4.Location = new System.Drawing.Point(240, 72);
            this.notePanel4.MaxRows = 5;
            this.notePanel4.Name = "notePanel4";
            this.notePanel4.ParentAutoHeight = true;
            this.notePanel4.Size = new System.Drawing.Size(72, 22);
            this.notePanel4.TabIndex = 30;
            this.notePanel4.TabStop = false;
            this.notePanel4.Text = " 学  号:";
            // 
            // notePanel5
            // 
            this.notePanel5.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel5.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel5.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel5.ForeColor = System.Drawing.Color.Black;
            this.notePanel5.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel5.Location = new System.Drawing.Point(240, 104);
            this.notePanel5.MaxRows = 5;
            this.notePanel5.Name = "notePanel5";
            this.notePanel5.ParentAutoHeight = true;
            this.notePanel5.Size = new System.Drawing.Size(72, 22);
            this.notePanel5.TabIndex = 30;
            this.notePanel5.TabStop = false;
            this.notePanel5.Text = " 班  级:";
            // 
            // textEdit_SendCardStuNumber
            // 
            this.textEdit_SendCardStuNumber.EditValue = "";
            this.textEdit_SendCardStuNumber.Location = new System.Drawing.Point(320, 72);
            this.textEdit_SendCardStuNumber.Name = "textEdit_SendCardStuNumber";
            this.textEdit_SendCardStuNumber.Properties.Mask.EditMask = "d4";
            this.textEdit_SendCardStuNumber.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
            this.textEdit_SendCardStuNumber.Properties.ReadOnly = true;
            this.textEdit_SendCardStuNumber.Size = new System.Drawing.Size(96, 20);
            this.textEdit_SendCardStuNumber.TabIndex = 27;
            // 
            // textEdit_SendCardStuName
            // 
            this.textEdit_SendCardStuName.EditValue = "";
            this.textEdit_SendCardStuName.Location = new System.Drawing.Point(120, 72);
            this.textEdit_SendCardStuName.Name = "textEdit_SendCardStuName";
            this.textEdit_SendCardStuName.Properties.ReadOnly = true;
            this.textEdit_SendCardStuName.Size = new System.Drawing.Size(96, 20);
            this.textEdit_SendCardStuName.TabIndex = 27;
            // 
            // combo_SendCardClass
            // 
            this.combo_SendCardClass.EditValue = "全部";
            this.combo_SendCardClass.Location = new System.Drawing.Point(320, 104);
            this.combo_SendCardClass.Name = "combo_SendCardClass";
            this.combo_SendCardClass.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.combo_SendCardClass.Properties.Items.AddRange(new object[] {
            "全部"});
            this.combo_SendCardClass.Properties.ReadOnly = true;
            this.combo_SendCardClass.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
            this.combo_SendCardClass.Size = new System.Drawing.Size(96, 20);
            this.combo_SendCardClass.TabIndex = 63;
            // 
            // xtraTabPage_BatchSend
            // 
            this.xtraTabPage_BatchSend.Appearance.PageClient.BackColor = System.Drawing.Color.WhiteSmoke;
            this.xtraTabPage_BatchSend.Appearance.PageClient.Options.UseBackColor = true;
            this.xtraTabPage_BatchSend.Controls.Add(this.groupControl_BatchSendView);
            this.xtraTabPage_BatchSend.Controls.Add(this.panelControl1);
            this.helpProvider_Help.SetHelpKeyword(this.xtraTabPage_BatchSend, "批量发卡");
            this.helpProvider_Help.SetHelpNavigator(this.xtraTabPage_BatchSend, System.Windows.Forms.HelpNavigator.KeywordIndex);
            this.xtraTabPage_BatchSend.Name = "xtraTabPage_BatchSend";
            this.helpProvider_Help.SetShowHelp(this.xtraTabPage_BatchSend, true);
            this.xtraTabPage_BatchSend.Size = new System.Drawing.Size(766, 511);
            this.xtraTabPage_BatchSend.Text = "批量发卡";
            // 
            // groupControl_BatchSendView
            // 
            this.groupControl_BatchSendView.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.groupControl_BatchSendView.AppearanceCaption.Options.UseFont = true;
            this.groupControl_BatchSendView.Controls.Add(this.gridControl_BatchSendView);
            this.groupControl_BatchSendView.Controls.Add(this.simpleButton_Logout_CardSearch);
            this.groupControl_BatchSendView.Dock = System.Windows.Forms.DockStyle.Fill;
            this.groupControl_BatchSendView.Location = new System.Drawing.Point(176, 0);
            this.groupControl_BatchSendView.Name = "groupControl_BatchSendView";
            this.groupControl_BatchSendView.Size = new System.Drawing.Size(590, 511);
            this.groupControl_BatchSendView.TabIndex = 14;
            this.groupControl_BatchSendView.Text = "待发卡浏览";
            // 
            // gridControl_BatchSendView
            // 
            this.gridControl_BatchSendView.Dock = System.Windows.Forms.DockStyle.Fill;
            this.gridControl_BatchSendView.Location = new System.Drawing.Point(2, 22);
            this.gridControl_BatchSendView.MainView = this.gridView3;
            this.gridControl_BatchSendView.Name = "gridControl_BatchSendView";
            this.gridControl_BatchSendView.Size = new System.Drawing.Size(586, 487);
            this.gridControl_BatchSendView.TabIndex = 0;
            this.gridControl_BatchSendView.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
            this.gridView3});
            // 
            // gridView3
            // 
            this.gridView3.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
            this.gridColumn7,
            this.gridColumn8,
            this.gridColumn9,
            this.gridColumn10,
            this.gridColumn11,
            this.gridColumn12,
            this.gridColumn13,
            this.gridColumn14});
            this.gridView3.GridControl = this.gridControl_BatchSendView;
            this.gridView3.Name = "gridView3";
            this.gridView3.OptionsBehavior.Editable = false;
            this.gridView3.OptionsCustomization.AllowFilter = false;
            this.gridView3.OptionsView.ShowFilterPanelMode = DevExpress.XtraGrid.Views.Base.ShowFilterPanelMode.Never;
            this.gridView3.OptionsView.ShowFooter = true;
            this.gridView3.OptionsView.ShowGroupPanel = false;
            // 
            // gridColumn7
            // 
            this.gridColumn7.Name = "gridColumn7";
            // 
            // gridColumn8
            // 
            this.gridColumn8.Name = "gridColumn8";
            this.gridColumn8.Visible = true;
            this.gridColumn8.VisibleIndex = 0;
            // 
            // gridColumn9
            // 
            this.gridColumn9.Name = "gridColumn9";
            this.gridColumn9.Visible = true;
            this.gridColumn9.VisibleIndex = 1;
            // 
            // gridColumn10
            // 
            this.gridColumn10.Name = "gridColumn10";
            this.gridColumn10.Visible = true;
            this.gridColumn10.VisibleIndex = 2;
            // 
            // gridColumn11
            // 
            this.gridColumn11.Name = "gridColumn11";
            this.gridColumn11.Visible = true;
            this.gridColumn11.VisibleIndex = 3;
            // 
            // gridColumn12
            // 
            this.gridColumn12.Name = "gridColumn12";
            this.gridColumn12.Visible = true;
            this.gridColumn12.VisibleIndex = 4;
            // 
            // gridColumn13
            // 
            this.gridColumn13.Name = "gridColumn13";
            this.gridColumn13.Visible = true;
            this.gridColumn13.VisibleIndex = 5;
            // 
            // gridColumn14
            // 
            this.gridColumn14.Name = "gridColumn14";
            this.gridColumn14.Visible = true;
            this.gridColumn14.VisibleIndex = 6;
            // 
            // simpleButton_Logout_CardSearch
            // 
            this.simpleButton_Logout_CardSearch.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.simpleButton_Logout_CardSearch.Appearance.ForeColor = System.Drawing.Color.DarkMagenta;
            this.simpleButton_Logout_CardSearch.Appearance.Options.UseFont = true;
            this.simpleButton_Logout_CardSearch.Appearance.Options.UseForeColor = true;
            this.simpleButton_Logout_CardSearch.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton_Logout_CardSearch.Image")));
            this.simpleButton_Logout_CardSearch.Location = new System.Drawing.Point(16, 24);
            this.simpleButton_Logout_CardSearch.Name = "simpleButton_Logout_CardSearch";
            this.simpleButton_Logout_CardSearch.Size = new System.Drawing.Size(88, 26);
            this.simpleButton_Logout_CardSearch.TabIndex = 9;
            this.simpleButton_Logout_CardSearch.Tag = 4;
            this.simpleButton_Logout_CardSearch.Text = "查  询";
            // 
            // panelControl1
            // 
            this.panelControl1.Appearance.BackColor = System.Drawing.Color.LightGray;
            this.panelControl1.Appearance.BackColor2 = System.Drawing.Color.Gray;
            this.panelControl1.Appearance.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.ForwardDiagonal;
            this.panelControl1.Appearance.Options.UseBackColor = true;
            this.panelControl1.Controls.Add(this.groupControl2);
            this.panelControl1.Controls.Add(this.groupControl_BatchSendSerCond);
            this.panelControl1.Controls.Add(this.groupControl_BatchSendButtonGroup);
            this.panelControl1.Dock = System.Windows.Forms.DockStyle.Left;
            this.panelControl1.Location = new System.Drawing.Point(0, 0);
            this.panelControl1.Name = "panelControl1";
            this.panelControl1.Size = new System.Drawing.Size(176, 511);
            this.panelControl1.TabIndex = 13;
            // 
            // groupControl2
            // 
            this.groupControl2.Appearance.BackColor = System.Drawing.Color.Transparent;
            this.groupControl2.Appearance.Options.UseBackColor = true;
            this.groupControl2.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
            this.groupControl2.AppearanceCaption.Options.UseFont = true;
            this.groupControl2.Controls.Add(this.textEdit3);
            this.groupControl2.Controls.Add(this.simpleButton_BatchSendCheck);
            this.groupControl2.Location = new System.Drawing.Point(3, 408);
            this.groupControl2.Name = "groupControl2";
            this.groupControl2.Size = new System.Drawing.Size(170, 100);
            this.groupControl2.TabIndex = 3;
            this.groupControl2.Text = "卡检验";
            // 
            // textEdit3
            // 
            this.textEdit3.EditValue = "";
            this.textEdit3.Location = new System.Drawing.Point(28, 32);
            this.textEdit3.Name = "textEdit3";
            this.textEdit3.Size = new System.Drawing.Size(114, 20);
            this.textEdit3.TabIndex = 10;
            // 
            // simpleButton_BatchSendCheck
            // 
            this.simpleButton_BatchSendCheck.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.simpleButton_BatchSendCheck.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.simpleButton_BatchSendCheck.Appearance.ForeColor = System.Drawing.Color.DarkMagenta;
            this.simpleButton_BatchSendCheck.Appearance.Options.UseFont = true;
            this.simpleButton_BatchSendCheck.Appearance.Options.UseForeColor = true;
            this.simpleButton_BatchSendCheck.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton_BatchSendCheck.Image")));
            this.simpleButton_BatchSendCheck.Location = new System.Drawing.Point(28, 64);
            this.simpleButton_BatchSendCheck.Name = "simpleButton_BatchSendCheck";
            this.simpleButton_BatchSendCheck.Size = new System.Drawing.Size(114, 26);
            this.simpleButton_BatchSendCheck.TabIndex = 9;
            this.simpleButton_BatchSendCheck.Tag = 4;
            this.simpleButton_BatchSendCheck.Text = "校   验";
            this.simpleButton_BatchSendCheck.Click += new System.EventHandler(this.simpleButton_BatchSendCheck_Click);
            // 
            // groupControl_BatchSendSerCond
            // 
            this.groupControl_BatchSendSerCond.Appearance.BackColor = System.Drawing.Color.Transparent;
            this.groupControl_BatchSendSerCond.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.groupControl_BatchSendSerCond.Appearance.Options.UseBackColor = true;
            this.groupControl_BatchSendSerCond.Appearance.Options.UseFont = true;
            this.groupControl_BatchSendSerCond.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.groupControl_BatchSendSerCond.AppearanceCaption.Options.UseFont = true;
            this.groupControl_BatchSendSerCond.Controls.Add(this.notePanel_BatchSendSerCond);
            this.groupControl_BatchSendSerCond.Controls.Add(this.simpleButton_BatchSendStuCard);
            this.groupControl_BatchSendSerCond.Controls.Add(this.simpleButton_BatchSendTeaCard);
            this.groupControl_BatchSendSerCond.Controls.Add(this.simpleButton_BatchSendStop);
            this.groupControl_BatchSendSerCond.Controls.Add(this.simpleButton2);
            this.groupControl_BatchSendSerCond.Dock = System.Windows.Forms.DockStyle.Top;
            this.groupControl_BatchSendSerCond.Location = new System.Drawing.Point(2, 2);
            this.groupControl_BatchSendSerCond.Name = "groupControl_BatchSendSerCond";
            this.groupControl_BatchSendSerCond.Size = new System.Drawing.Size(172, 221);
            this.groupControl_BatchSendSerCond.TabIndex = 1;
            this.groupControl_BatchSendSerCond.Text = "批量发卡操作台";
            // 
            // notePanel_BatchSendSerCond
            // 
            this.notePanel_BatchSendSerCond.BackColor = System.Drawing.Color.LightGoldenrodYellow;
            this.notePanel_BatchSendSerCond.Dock = System.Windows.Forms.DockStyle.Top;
            this.notePanel_BatchSendSerCond.ForeColor = System.Drawing.Color.Gray;
            this.notePanel_BatchSendSerCond.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_BatchSendSerCond.Location = new System.Drawing.Point(2, 22);
            this.notePanel_BatchSendSerCond.MaxRows = 5;
            this.notePanel_BatchSendSerCond.Name = "notePanel_BatchSendSerCond";
            this.notePanel_BatchSendSerCond.ParentAutoHeight = true;
            this.notePanel_BatchSendSerCond.Size = new System.Drawing.Size(168, 23);
            this.notePanel_BatchSendSerCond.TabIndex = 25;
            this.notePanel_BatchSendSerCond.TabStop = false;
            this.notePanel_BatchSendSerCond.Text = "您要完成什么?";
            // 
            // simpleButton_BatchSendStuCard
            // 
            this.simpleButton_BatchSendStuCard.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.simpleButton_BatchSendStuCard.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.simpleButton_BatchSendStuCard.Appearance.ForeColor = System.Drawing.Color.DarkMagenta;
            this.simpleButton_BatchSendStuCard.Appearance.Options.UseFont = true;
            this.simpleButton_BatchSendStuCard.Appearance.Options.UseForeColor = true;
            this.simpleButton_BatchSendStuCard.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton_BatchSendStuCard.Image")));
            this.simpleButton_BatchSendStuCard.Location = new System.Drawing.Point(28, 57);
            this.simpleButton_BatchSendStuCard.Name = "simpleButton_BatchSendStuCard";
            this.simpleButton_BatchSendStuCard.Size = new System.Drawing.Size(116, 26);
            this.simpleButton_BatchSendStuCard.TabIndex = 7;
            this.simpleButton_BatchSendStuCard.Tag = 4;
            this.simpleButton_BatchSendStuCard.Text = "学生卡";
            this.simpleButton_BatchSendStuCard.Click += new System.EventHandler(this.simpleButton_BatchSendStuCard_Click);
            // 
            // simpleButton_BatchSendTeaCard
            // 
            this.simpleButton_BatchSendTeaCard.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.simpleButton_BatchSendTeaCard.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.simpleButton_BatchSendTeaCard.Appearance.ForeColor = System.Drawing.Color.DarkMagenta;
            this.simpleButton_BatchSendTeaCard.Appearance.Options.UseFont = true;
            this.simpleButton_BatchSendTeaCard.Appearance.Options.UseForeColor = true;
            this.simpleButton_BatchSendTeaCard.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton_BatchSendTeaCard.Image")));
            this.simpleButton_BatchSendTeaCard.Location = new System.Drawing.Point(28, 89);
            this.simpleButton_BatchSendTeaCard.Name = "simpleButton_BatchSendTeaCard";
            this.simpleButton_BatchSendTeaCard.Size = new System.Drawing.Size(116, 26);
            this.simpleButton_BatchSendTeaCard.TabIndex = 8;
            this.simpleButton_BatchSendTeaCard.Tag = 4;
            this.simpleButton_BatchSendTeaCard.Text = "教师卡";
            this.simpleButton_BatchSendTeaCard.Click += new System.EventHandler(this.simpleButton_BatchSendTeaCard_Click);
            // 
            // simpleButton_BatchSendStop
            // 
            this.simpleButton_BatchSendStop.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.simpleButton_BatchSendStop.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.simpleButton_BatchSendStop.Appearance.ForeColor = System.Drawing.Color.DarkMagenta;
            this.simpleButton_BatchSendStop.Appearance.Options.UseFont = true;
            this.simpleButton_BatchSendStop.Appearance.Options.UseForeColor = true;
            this.simpleButton_BatchSendStop.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton_BatchSendStop.Image")));
            this.simpleButton_BatchSendStop.Location = new System.Drawing.Point(28, 176);
            this.simpleButton_BatchSendStop.Name = "simpleButton_BatchSendStop";
            this.simpleButton_BatchSendStop.Size = new System.Drawing.Size(116, 26);
            this.simpleButton_BatchSendStop.TabIndex = 11;
            this.simpleButton_BatchSendStop.Tag = 4;
            this.simpleButton_BatchSendStop.Text = "暂   停";
            this.simpleButton_BatchSendStop.Click += new System.EventHandler(this.simpleButton_BatchSendStop_Click);
            // 
            // simpleButton2
            // 
            this.simpleButton2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.simpleButton2.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.simpleButton2.Appearance.ForeColor = System.Drawing.Color.DarkMagenta;
            this.simpleButton2.Appearance.Options.UseFont = true;
            this.simpleButton2.Appearance.Options.UseForeColor = true;
            this.simpleButton2.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton2.Image")));
            this.simpleButton2.Location = new System.Drawing.Point(28, 144);
            this.simpleButton2.Name = "simpleButton2";
            this.simpleButton2.Size = new System.Drawing.Size(116, 26);
            this.simpleButton2.TabIndex = 10;
            this.simpleButton2.Tag = 4;
            this.simpleButton2.Text = "发   卡";
            this.simpleButton2.Click += new System.EventHandler(this.simpleButton2_Click);
            // 
            // groupControl_BatchSendButtonGroup
            // 
            this.groupControl_BatchSendButtonGroup.Appearance.BackColor = System.Drawing.Color.Transparent;
            this.groupControl_BatchSendButtonGroup.Appearance.Options.UseBackColor = true;
            this.groupControl_BatchSendButtonGroup.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.groupControl_BatchSendButtonGroup.AppearanceCaption.Options.UseFont = true;
            this.groupControl_BatchSendButtonGroup.Controls.Add(this.notePanel_BatchSendButtonGroup);
            this.groupControl_BatchSendButtonGroup.Controls.Add(this.notePanel_BatchSendClass);
            this.groupControl_BatchSendButtonGroup.Controls.Add(this.comboBoxEdit_BatchSendGrade);
            this.groupControl_BatchSendButtonGroup.Controls.Add(this.notePanel_BatchSendGrade);
            this.groupControl_BatchSendButtonGroup.Controls.Add(this.comboBoxEdit_BatchSendClass);
            this.groupControl_BatchSendButtonGroup.Controls.Add(this.notePanel14);
            this.groupControl_BatchSendButtonGroup.Controls.Add(this.comboBoxEdit3);
            this.groupControl_BatchSendButtonGroup.Location = new System.Drawing.Point(3, 232);
            this.groupControl_BatchSendButtonGroup.Name = "groupControl_BatchSendButtonGroup";
            this.groupControl_BatchSendButtonGroup.Size = new System.Drawing.Size(170, 176);
            this.groupControl_BatchSendButtonGroup.TabIndex = 2;
            this.groupControl_BatchSendButtonGroup.Text = "指定搜索的对象";
            // 
            // notePanel_BatchSendButtonGroup
            // 
            this.notePanel_BatchSendButtonGroup.BackColor = System.Drawing.Color.LightGoldenrodYellow;
            this.notePanel_BatchSendButtonGroup.Dock = System.Windows.Forms.DockStyle.Top;
            this.notePanel_BatchSendButtonGroup.ForeColor = System.Drawing.Color.Gray;
            this.notePanel_BatchSendButtonGroup.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_BatchSendButtonGroup.Location = new System.Drawing.Point(2, 22);
            this.notePanel_BatchSendButtonGroup.MaxRows = 5;
            this.notePanel_BatchSendButtonGroup.Name = "notePanel_BatchSendButtonGroup";
            this.notePanel_BatchSendButtonGroup.ParentAutoHeight = true;
            this.notePanel_BatchSendButtonGroup.Size = new System.Drawing.Size(166, 23);
            this.notePanel_BatchSendButtonGroup.TabIndex = 24;
            this.notePanel_BatchSendButtonGroup.TabStop = false;
            this.notePanel_BatchSendButtonGroup.Text = "您要检索什么?";
            // 
            // notePanel_BatchSendClass
            // 
            this.notePanel_BatchSendClass.BackColor = System.Drawing.Color.LightGray;
            this.notePanel_BatchSendClass.BackColor2 = System.Drawing.Color.Gray;
            this.notePanel_BatchSendClass.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel_BatchSendClass.ForeColor = System.Drawing.Color.Black;
            this.notePanel_BatchSendClass.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_BatchSendClass.Location = new System.Drawing.Point(8, 96);
            this.notePanel_BatchSendClass.MaxRows = 5;
            this.notePanel_BatchSendClass.Name = "notePanel_BatchSendClass";
            this.notePanel_BatchSendClass.ParentAutoHeight = true;
            this.notePanel_BatchSendClass.Size = new System.Drawing.Size(64, 22);
            this.notePanel_BatchSendClass.TabIndex = 36;
            this.notePanel_BatchSendClass.TabStop = false;
            this.notePanel_BatchSendClass.Text = "班  级:";
            // 
            // comboBoxEdit_BatchSendGrade
            // 
            this.comboBoxEdit_BatchSendGrade.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.comboBoxEdit_BatchSendGrade.EditValue = "全部";
            this.comboBoxEdit_BatchSendGrade.Location = new System.Drawing.Point(80, 56);
            this.comboBoxEdit_BatchSendGrade.Name = "comboBoxEdit_BatchSendGrade";
            this.comboBoxEdit_BatchSendGrade.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.comboBoxEdit_BatchSendGrade.Properties.Items.AddRange(new object[] {
            "全部"});
            this.comboBoxEdit_BatchSendGrade.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
            this.comboBoxEdit_BatchSendGrade.Size = new System.Drawing.Size(82, 23);
            this.comboBoxEdit_BatchSendGrade.TabIndex = 34;
            this.comboBoxEdit_BatchSendGrade.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit_BatchSendGrade_SelectedIndexChanged);
            // 
            // notePanel_BatchSendGrade
            // 
            this.notePanel_BatchSendGrade.BackColor = System.Drawing.Color.LightGray;
            this.notePanel_BatchSendGrade.BackColor2 = System.Drawing.Color.Gray;
            this.notePanel_BatchSendGrade.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel_BatchSendGrade.ForeColor = System.Drawing.Color.Black;
            this.notePanel_BatchSendGrade.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_BatchSendGrade.Location = new System.Drawing.Point(8, 56);
            this.notePanel_BatchSendGrade.MaxRows = 5;
            this.notePanel_BatchSendGrade.Name = "notePanel_BatchSendGrade";
            this.notePanel_BatchSendGrade.ParentAutoHeight = true;
            this.notePanel_BatchSendGrade.Size = new System.Drawing.Size(64, 22);
            this.notePanel_BatchSendGrade.TabIndex = 35;
            this.notePanel_BatchSendGrade.TabStop = false;
            this.notePanel_BatchSendGrade.Text = "年  级:";
            // 
            // comboBoxEdit_BatchSendClass
            // 
            this.comboBoxEdit_BatchSendClass.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.comboBoxEdit_BatchSendClass.EditValue = "全部";
            this.comboBoxEdit_BatchSendClass.Location = new System.Drawing.Point(80, 96);
            this.comboBoxEdit_BatchSendClass.Name = "comboBoxEdit_BatchSendClass";
            this.comboBoxEdit_BatchSendClass.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.comboBoxEdit_BatchSendClass.Properties.Items.AddRange(new object[] {
            "全部"});
            this.comboBoxEdit_BatchSendClass.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
            this.comboBoxEdit_BatchSendClass.Size = new System.Drawing.Size(82, 23);
            this.comboBoxEdit_BatchSendClass.TabIndex = 35;
            this.comboBoxEdit_BatchSendClass.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit_BatchSendClass_SelectedIndexChanged);
            // 
            // notePanel14
            // 
            this.notePanel14.BackColor = System.Drawing.Color.LightGray;
            this.notePanel14.BackColor2 = System.Drawing.Color.Gray;
            this.notePanel14.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel14.ForeColor = System.Drawing.Color.Black;
            this.notePanel14.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel14.Location = new System.Drawing.Point(8, 136);
            this.notePanel14.MaxRows = 5;
            this.notePanel14.Name = "notePanel14";
            this.notePanel14.ParentAutoHeight = true;
            this.notePanel14.Size = new System.Drawing.Size(64, 22);
            this.notePanel14.TabIndex = 36;
            this.notePanel14.TabStop = false;
            this.notePanel14.Text = "卡状态:";
            // 
            // comboBoxEdit3
            // 
            this.comboBoxEdit3.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.comboBoxEdit3.EditValue = "全部";
            this.comboBoxEdit3.Location = new System.Drawing.Point(80, 136);
            this.comboBoxEdit3.Name = "comboBoxEdit3";
            this.comboBoxEdit3.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.comboBoxEdit3.Properties.Items.AddRange(new object[] {
            "全部",
            "待发卡",
            "已发卡",
            "暂无卡"});
            this.comboBoxEdit3.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
            this.comboBoxEdit3.Size = new System.Drawing.Size(82, 23);
            this.comboBoxEdit3.TabIndex = 35;
            this.comboBoxEdit3.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit3_SelectedIndexChanged);
            // 
            // xtraTabPage_CardLogout
            // 
            this.xtraTabPage_CardLogout.Appearance.PageClient.BackColor = System.Drawing.Color.WhiteSmoke;
            this.xtraTabPage_CardLogout.Appearance.PageClient.Options.UseBackColor = true;
            this.xtraTabPage_CardLogout.Controls.Add(this.splitContainerControl2);
            this.helpProvider_Help.SetHelpKeyword(this.xtraTabPage_CardLogout, "退学与离职");
            this.helpProvider_Help.SetHelpNavigator(this.xtraTabPage_CardLogout, System.Windows.Forms.HelpNavigator.KeywordIndex);
            this.helpProvider_Help.SetHelpString(this.xtraTabPage_CardLogout, "");
            this.xtraTabPage_CardLogout.Name = "xtraTabPage_CardLogout";
            this.helpProvider_Help.SetShowHelp(this.xtraTabPage_CardLogout, true);
            this.xtraTabPage_CardLogout.Size = new System.Drawing.Size(766, 511);
            this.xtraTabPage_CardLogout.Text = "退学与离职";
            // 
            // splitContainerControl2
            // 
            this.splitContainerControl2.Dock = System.Windows.Forms.DockStyle.Fill;
            this.splitContainerControl2.Location = new System.Drawing.Point(0, 0);
            this.splitContainerControl2.Name = "splitContainerControl2";
            this.splitContainerControl2.Panel1.Controls.Add(this.dataNavigator_CardLogout);
            this.splitContainerControl2.Panel1.Controls.Add(this.groupControl_Logout_TeaCardMgmt);
            this.splitContainerControl2.Panel1.Controls.Add(this.groupControl_Logout_StuCardMgmt);
            this.splitContainerControl2.Panel1.Controls.Add(this.panelControl3);
            this.splitContainerControl2.Panel1.Text = "splitContainerControl2_Panel1";
            this.splitContainerControl2.Panel2.Controls.Add(this.groupControl_Logout_MyCardRec);
            this.splitContainerControl2.Panel2.Text = "splitContainerControl2_Panel2";
            this.splitContainerControl2.Size = new System.Drawing.Size(766, 511);
            this.splitContainerControl2.SplitterPosition = 319;
            this.splitContainerControl2.TabIndex = 0;
            this.splitContainerControl2.Text = "splitContainerControl2";
            // 
            // dataNavigator_CardLogout
            // 
            this.dataNavigator_CardLogout.Buttons.Append.Visible = false;
            this.dataNavigator_CardLogout.Buttons.CancelEdit.Hint = "退学&离职";
            this.dataNavigator_CardLogout.Buttons.EndEdit.Visible = false;
            this.dataNavigator_CardLogout.Buttons.First.Hint = "第一条记录";
            this.dataNavigator_CardLogout.Buttons.Last.Hint = "最后一条记录";
            this.dataNavigator_CardLogout.Buttons.Next.Hint = "下一条记录";
            this.dataNavigator_CardLogout.Buttons.NextPage.Hint = "下一页记录";
            this.dataNavigator_CardLogout.Buttons.Prev.Hint = "前一条记录";
            this.dataNavigator_CardLogout.Buttons.PrevPage.Hint = "上一页记录";
            this.dataNavigator_CardLogout.Buttons.Remove.Visible = false;
            this.dataNavigator_CardLogout.Dock = System.Windows.Forms.DockStyle.Top;
            this.dataNavigator_CardLogout.Location = new System.Drawing.Point(0, 312);
            this.dataNavigator_CardLogout.Name = "dataNavigator_CardLogout";
            this.dataNavigator_CardLogout.ShowToolTips = true;
            this.dataNavigator_CardLogout.Size = new System.Drawing.Size(319, 40);
            this.dataNavigator_CardLogout.TabIndex = 63;
            this.dataNavigator_CardLogout.Text = "dataNavigator2";
            this.dataNavigator_CardLogout.TextLocation = DevExpress.XtraEditors.NavigatorButtonsTextLocation.End;
            this.dataNavigator_CardLogout.ButtonClick += new DevExpress.XtraEditors.NavigatorButtonClickEventHandler(this.dataNavigator_CardLogout_ButtonClick);
            // 
            // groupControl_Logout_TeaCardMgmt
            // 
            this.groupControl_Logout_TeaCardMgmt.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.groupControl_Logout_TeaCardMgmt.AppearanceCaption.Options.UseFont = true;
            this.groupControl_Logout_TeaCardMgmt.Controls.Add(this.textEdit1);
            this.groupControl_Logout_TeaCardMgmt.Controls.Add(this.comboBoxEdit1);
            this.groupControl_Logout_TeaCardMgmt.Controls.Add(this.comboBoxEdit2);
            this.groupControl_Logout_TeaCardMgmt.Controls.Add(this.textEdit2);
            this.groupControl_Logout_TeaCardMgmt.Controls.Add(this.notePanel9);
            this.groupControl_Logout_TeaCardMgmt.Controls.Add(this.notePanel10);
            this.groupControl_Logout_TeaCardMgmt.Controls.Add(this.notePanel11);
            this.groupControl_Logout_TeaCardMgmt.Controls.Add(this.notePanel12);
            this.groupControl_Logout_TeaCardMgmt.Controls.Add(this.notePanel_Logout_TeaCardSerCond);
            this.groupControl_Logout_TeaCardMgmt.Dock = System.Windows.Forms.DockStyle.Top;
            this.groupControl_Logout_TeaCardMgmt.Location = new System.Drawing.Point(0, 176);
            this.groupControl_Logout_TeaCardMgmt.Name = "groupControl_Logout_TeaCardMgmt";
            this.groupControl_Logout_TeaCardMgmt.Size = new System.Drawing.Size(319, 136);
            this.groupControl_Logout_TeaCardMgmt.TabIndex = 16;
            this.groupControl_Logout_TeaCardMgmt.Text = "教师离职管理";
            this.groupControl_Logout_TeaCardMgmt.Visible = false;
            // 
            // textEdit1
            // 
            this.textEdit1.EditValue = "";
            this.textEdit1.Location = new System.Drawing.Point(80, 64);
            this.textEdit1.Name = "textEdit1";
            this.textEdit1.Size = new System.Drawing.Size(64, 20);
            this.textEdit1.TabIndex = 40;
            this.textEdit1.EditValueChanged += new System.EventHandler(this.textEdit1_EditValueChanged);
            // 
            // comboBoxEdit1
            // 
            this.comboBoxEdit1.EditValue = "全部";
            this.comboBoxEdit1.Location = new System.Drawing.Point(224, 96);
            this.comboBoxEdit1.Name = "comboBoxEdit1";
            this.comboBoxEdit1.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.comboBoxEdit1.Properties.Items.AddRange(new object[] {
            "全部"});
            this.comboBoxEdit1.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
            this.comboBoxEdit1.Size = new System.Drawing.Size(79, 20);
            this.comboBoxEdit1.TabIndex = 39;
            this.comboBoxEdit1.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit1_SelectedIndexChanged);
            // 
            // comboBoxEdit2
            // 
            this.comboBoxEdit2.EditValue = "全部";
            this.comboBoxEdit2.Location = new System.Drawing.Point(224, 64);
            this.comboBoxEdit2.Name = "comboBoxEdit2";
            this.comboBoxEdit2.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.comboBoxEdit2.Properties.Items.AddRange(new object[] {
            "全部"});
            this.comboBoxEdit2.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
            this.comboBoxEdit2.Size = new System.Drawing.Size(78, 20);
            this.comboBoxEdit2.TabIndex = 38;
            this.comboBoxEdit2.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit2_SelectedIndexChanged);
            // 
            // textEdit2
            // 
            this.textEdit2.EditValue = "";
            this.textEdit2.Location = new System.Drawing.Point(80, 96);
            this.textEdit2.Name = "textEdit2";
            this.textEdit2.Properties.Mask.EditMask = "d";
            this.textEdit2.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
            this.textEdit2.Properties.MaxLength = 4;
            this.textEdit2.Size = new System.Drawing.Size(64, 20);
            this.textEdit2.TabIndex = 37;
            this.textEdit2.EditValueChanged += new System.EventHandler(this.textEdit2_EditValueChanged);
            // 
            // notePanel9
            // 
            this.notePanel9.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel9.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel9.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel9.ForeColor = System.Drawing.Color.Black;
            this.notePanel9.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel9.Location = new System.Drawing.Point(8, 96);
            this.notePanel9.MaxRows = 5;
            this.notePanel9.Name = "notePanel9";
            this.notePanel9.ParentAutoHeight = true;
            this.notePanel9.Size = new System.Drawing.Size(64, 22);
            this.notePanel9.TabIndex = 36;
            this.notePanel9.TabStop = false;
            this.notePanel9.Text = "工  号:";
            // 
            // notePanel10
            // 
            this.notePanel10.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel10.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel10.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel10.ForeColor = System.Drawing.Color.Black;
            this.notePanel10.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel10.Location = new System.Drawing.Point(152, 96);
            this.notePanel10.MaxRows = 5;
            this.notePanel10.Name = "notePanel10";
            this.notePanel10.ParentAutoHeight = true;
            this.notePanel10.Size = new System.Drawing.Size(64, 22);
            this.notePanel10.TabIndex = 35;
            this.notePanel10.TabStop = false;
            this.notePanel10.Text = "部  门:";
            // 
            // notePanel11
            // 
            this.notePanel11.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel11.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel11.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel11.ForeColor = System.Drawing.Color.Black;
            this.notePanel11.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel11.Location = new System.Drawing.Point(152, 64);
            this.notePanel11.MaxRows = 5;
            this.notePanel11.Name = "notePanel11";
            this.notePanel11.ParentAutoHeight = true;
            this.notePanel11.Size = new System.Drawing.Size(64, 22);
            this.notePanel11.TabIndex = 34;
            this.notePanel11.TabStop = false;
            this.notePanel11.Text = "岗  位:";
            // 
            // notePanel12
            // 
            this.notePanel12.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel12.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel12.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel12.ForeColor = System.Drawing.Color.Black;
            this.notePanel12.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel12.Location = new System.Drawing.Point(8, 64);
            this.notePanel12.MaxRows = 5;
            this.notePanel12.Name = "notePanel12";
            this.notePanel12.ParentAutoHeight = true;
            this.notePanel12.Size = new System.Drawing.Size(64, 22);
            this.notePanel12.TabIndex = 33;
            this.notePanel12.TabStop = false;
            this.notePanel12.Text = "姓  名:";
            // 
            // notePanel_Logout_TeaCardSerCond
            // 
            this.notePanel_Logout_TeaCardSerCond.BackColor = System.Drawing.Color.LightGoldenrodYellow;
            this.notePanel_Logout_TeaCardSerCond.Dock = System.Windows.Forms.DockStyle.Top;
            this.notePanel_Logout_TeaCardSerCond.ForeColor = System.Drawing.Color.OrangeRed;
            this.notePanel_Logout_TeaCardSerCond.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_Logout_TeaCardSerCond.Location = new System.Drawing.Point(2, 22);
            this.notePanel_Logout_TeaCardSerCond.MaxRows = 5;
            this.notePanel_Logout_TeaCardSerCond.Name = "notePanel_Logout_TeaCardSerCond";
            this.notePanel_Logout_TeaCardSerCond.ParentAutoHeight = true;
            this.notePanel_Logout_TeaCardSerCond.Size = new System.Drawing.Size(315, 23);
            this.notePanel_Logout_TeaCardSerCond.TabIndex = 24;
            this.notePanel_Logout_TeaCardSerCond.TabStop = false;
            this.notePanel_Logout_TeaCardSerCond.Text = "您要检索的条件?";
            // 
            // groupControl_Logout_StuCardMgmt
            // 
            this.groupControl_Logout_StuCardMgmt.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.groupControl_Logout_StuCardMgmt.Appearance.Options.UseFont = true;
            this.groupControl_Logout_StuCardMgmt.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.groupControl_Logout_StuCardMgmt.AppearanceCaption.Options.UseFont = true;
            this.groupControl_Logout_StuCardMgmt.Controls.Add(this.textEdit_Logout_StuName);
            this.groupControl_Logout_StuCardMgmt.Controls.Add(this.comboBoxEdit_Logout_StuClass);
            this.groupControl_Logout_StuCardMgmt.Controls.Add(this.comboBoxEdit_Logout_StuGrade);
            this.groupControl_Logout_StuCardMgmt.Controls.Add(this.textEdit_Logout_StuNumber);
            this.groupControl_Logout_StuCardMgmt.Controls.Add(this.notePanel_Logout_StuNumber);
            this.groupControl_Logout_StuCardMgmt.Controls.Add(this.notePanel_Logout_StuClass);
            this.groupControl_Logout_StuCardMgmt.Controls.Add(this.notePanel_Logout_StuGrade);
            this.groupControl_Logout_StuCardMgmt.Controls.Add(this.notePanel_Logout_StuCardSerCond);
            this.groupControl_Logout_StuCardMgmt.Controls.Add(this.notePanel_Logout_StuName);
            this.groupControl_Logout_StuCardMgmt.Dock = System.Windows.Forms.DockStyle.Top;
            this.groupControl_Logout_StuCardMgmt.Location = new System.Drawing.Point(0, 40);
            this.groupControl_Logout_StuCardMgmt.Name = "groupControl_Logout_StuCardMgmt";
            this.groupControl_Logout_StuCardMgmt.Size = new System.Drawing.Size(319, 136);
            this.groupControl_Logout_StuCardMgmt.TabIndex = 15;
            this.groupControl_Logout_StuCardMgmt.Text = "学生退学管理";
            // 
            // textEdit_Logout_StuName
            // 
            this.textEdit_Logout_StuName.EditValue = "";
            this.textEdit_Logout_StuName.Location = new System.Drawing.Point(80, 64);
            this.textEdit_Logout_StuName.Name = "textEdit_Logout_StuName";
            this.textEdit_Logout_StuName.Size = new System.Drawing.Size(64, 20);
            this.textEdit_Logout_StuName.TabIndex = 32;
            this.textEdit_Logout_StuName.EditValueChanged += new System.EventHandler(this.textEdit_Logout_StuName_EditValueChanged);
            // 
            // comboBoxEdit_Logout_StuClass
            // 
            this.comboBoxEdit_Logout_StuClass.EditValue = "全部";
            this.comboBoxEdit_Logout_StuClass.Location = new System.Drawing.Point(224, 96);
            this.comboBoxEdit_Logout_StuClass.Name = "comboBoxEdit_Logout_StuClass";
            this.comboBoxEdit_Logout_StuClass.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.comboBoxEdit_Logout_StuClass.Properties.Items.AddRange(new object[] {
            "全部"});
            this.comboBoxEdit_Logout_StuClass.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
            this.comboBoxEdit_Logout_StuClass.Size = new System.Drawing.Size(79, 20);
            this.comboBoxEdit_Logout_StuClass.TabIndex = 31;
            this.comboBoxEdit_Logout_StuClass.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit_Logout_StuClass_SelectedIndexChanged);
            // 
            // comboBoxEdit_Logout_StuGrade
            // 
            this.comboBoxEdit_Logout_StuGrade.EditValue = "全部";
            this.comboBoxEdit_Logout_StuGrade.Location = new System.Drawing.Point(224, 64);
            this.comboBoxEdit_Logout_StuGrade.Name = "comboBoxEdit_Logout_StuGrade";
            this.comboBoxEdit_Logout_StuGrade.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.comboBoxEdit_Logout_StuGrade.Properties.Items.AddRange(new object[] {
            "全部"});
            this.comboBoxEdit_Logout_StuGrade.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
            this.comboBoxEdit_Logout_StuGrade.Size = new System.Drawing.Size(78, 20);
            this.comboBoxEdit_Logout_StuGrade.TabIndex = 30;
            this.comboBoxEdit_Logout_StuGrade.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit_Logout_StuGrade_SelectedIndexChanged);
            // 
            // textEdit_Logout_StuNumber
            // 
            this.textEdit_Logout_StuNumber.EditValue = "";
            this.textEdit_Logout_StuNumber.Location = new System.Drawing.Point(80, 96);
            this.textEdit_Logout_StuNumber.Name = "textEdit_Logout_StuNumber";
            this.textEdit_Logout_StuNumber.Properties.MaxLength = 4;
            this.textEdit_Logout_StuNumber.Size = new System.Drawing.Size(64, 20);
            this.textEdit_Logout_StuNumber.TabIndex = 29;
            this.textEdit_Logout_StuNumber.EditValueChanged += new System.EventHandler(this.textEdit_Logout_StuNumber_EditValueChanged);
            // 
            // notePanel_Logout_StuNumber
            // 
            this.notePanel_Logout_StuNumber.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel_Logout_StuNumber.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel_Logout_StuNumber.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel_Logout_StuNumber.ForeColor = System.Drawing.Color.Black;
            this.notePanel_Logout_StuNumber.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_Logout_StuNumber.Location = new System.Drawing.Point(8, 96);
            this.notePanel_Logout_StuNumber.MaxRows = 5;
            this.notePanel_Logout_StuNumber.Name = "notePanel_Logout_StuNumber";
            this.notePanel_Logout_StuNumber.ParentAutoHeight = true;
            this.notePanel_Logout_StuNumber.Size = new System.Drawing.Size(64, 22);
            this.notePanel_Logout_StuNumber.TabIndex = 27;
            this.notePanel_Logout_StuNumber.TabStop = false;
            this.notePanel_Logout_StuNumber.Text = "学  号:";
            // 
            // notePanel_Logout_StuClass
            // 
            this.notePanel_Logout_StuClass.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel_Logout_StuClass.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel_Logout_StuClass.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel_Logout_StuClass.ForeColor = System.Drawing.Color.Black;
            this.notePanel_Logout_StuClass.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_Logout_StuClass.Location = new System.Drawing.Point(152, 96);
            this.notePanel_Logout_StuClass.MaxRows = 5;
            this.notePanel_Logout_StuClass.Name = "notePanel_Logout_StuClass";
            this.notePanel_Logout_StuClass.ParentAutoHeight = true;
            this.notePanel_Logout_StuClass.Size = new System.Drawing.Size(64, 22);
            this.notePanel_Logout_StuClass.TabIndex = 26;
            this.notePanel_Logout_StuClass.TabStop = false;
            this.notePanel_Logout_StuClass.Text = "班  级:";
            // 
            // notePanel_Logout_StuGrade
            // 
            this.notePanel_Logout_StuGrade.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel_Logout_StuGrade.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel_Logout_StuGrade.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel_Logout_StuGrade.ForeColor = System.Drawing.Color.Black;
            this.notePanel_Logout_StuGrade.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_Logout_StuGrade.Location = new System.Drawing.Point(152, 64);
            this.notePanel_Logout_StuGrade.MaxRows = 5;
            this.notePanel_Logout_StuGrade.Name = "notePanel_Logout_StuGrade";
            this.notePanel_Logout_StuGrade.ParentAutoHeight = true;
            this.notePanel_Logout_StuGrade.Size = new System.Drawing.Size(64, 22);
            this.notePanel_Logout_StuGrade.TabIndex = 25;
            this.notePanel_Logout_StuGrade.TabStop = false;
            this.notePanel_Logout_StuGrade.Text = "年  级:";
            // 
            // notePanel_Logout_StuCardSerCond
            // 
            this.notePanel_Logout_StuCardSerCond.BackColor = System.Drawing.Color.LightGoldenrodYellow;
            this.notePanel_Logout_StuCardSerCond.Dock = System.Windows.Forms.DockStyle.Top;
            this.notePanel_Logout_StuCardSerCond.ForeColor = System.Drawing.Color.OrangeRed;
            this.notePanel_Logout_StuCardSerCond.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_Logout_StuCardSerCond.Location = new System.Drawing.Point(2, 22);
            this.notePanel_Logout_StuCardSerCond.MaxRows = 5;
            this.notePanel_Logout_StuCardSerCond.Name = "notePanel_Logout_StuCardSerCond";
            this.notePanel_Logout_StuCardSerCond.ParentAutoHeight = true;
            this.notePanel_Logout_StuCardSerCond.Size = new System.Drawing.Size(315, 23);
            this.notePanel_Logout_StuCardSerCond.TabIndex = 23;
            this.notePanel_Logout_StuCardSerCond.TabStop = false;
            this.notePanel_Logout_StuCardSerCond.Text = "您要检索的条件?";
            // 
            // notePanel_Logout_StuName
            // 
            this.notePanel_Logout_StuName.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel_Logout_StuName.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel_Logout_StuName.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel_Logout_StuName.ForeColor = System.Drawing.Color.Black;
            this.notePanel_Logout_StuName.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_Logout_StuName.Location = new System.Drawing.Point(8, 64);
            this.notePanel_Logout_StuName.MaxRows = 5;
            this.notePanel_Logout_StuName.Name = "notePanel_Logout_StuName";
            this.notePanel_Logout_StuName.ParentAutoHeight = true;
            this.notePanel_Logout_StuName.Size = new System.Drawing.Size(64, 22);
            this.notePanel_Logout_StuName.TabIndex = 11;
            this.notePanel_Logout_StuName.TabStop = false;
            this.notePanel_Logout_StuName.Text = "姓  名:";
            // 
            // panelControl3
            // 
            this.panelControl3.Controls.Add(this.simpleButton_Logout_StuCard);
            this.panelControl3.Controls.Add(this.simpleButton_Logout_TeaCard);
            this.panelControl3.Dock = System.Windows.Forms.DockStyle.Top;
            this.panelControl3.Location = new System.Drawing.Point(0, 0);
            this.panelControl3.Name = "panelControl3";
            this.panelControl3.Size = new System.Drawing.Size(319, 40);
            this.panelControl3.TabIndex = 14;
            // 
            // simpleButton_Logout_StuCard
            // 
            this.simpleButton_Logout_StuCard.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.simpleButton_Logout_StuCard.Appearance.ForeColor = System.Drawing.Color.DarkMagenta;
            this.simpleButton_Logout_StuCard.Appearance.Options.UseFont = true;
            this.simpleButton_Logout_StuCard.Appearance.Options.UseForeColor = true;
            this.simpleButton_Logout_StuCard.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton_Logout_StuCard.Image")));
            this.simpleButton_Logout_StuCard.Location = new System.Drawing.Point(56, 8);
            this.simpleButton_Logout_StuCard.Name = "simpleButton_Logout_StuCard";
            this.simpleButton_Logout_StuCard.Size = new System.Drawing.Size(88, 26);
            this.simpleButton_Logout_StuCard.TabIndex = 6;
            this.simpleButton_Logout_StuCard.Tag = 4;
            this.simpleButton_Logout_StuCard.Text = "学生卡";
            this.simpleButton_Logout_StuCard.Click += new System.EventHandler(this.simpleButton_Logout_StuCard_Click);
            // 
            // simpleButton_Logout_TeaCard
            // 
            this.simpleButton_Logout_TeaCard.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.simpleButton_Logout_TeaCard.Appearance.ForeColor = System.Drawing.Color.DarkMagenta;
            this.simpleButton_Logout_TeaCard.Appearance.Options.UseFont = true;
            this.simpleButton_Logout_TeaCard.Appearance.Options.UseForeColor = true;
            this.simpleButton_Logout_TeaCard.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton_Logout_TeaCard.Image")));
            this.simpleButton_Logout_TeaCard.Location = new System.Drawing.Point(168, 8);
            this.simpleButton_Logout_TeaCard.Name = "simpleButton_Logout_TeaCard";
            this.simpleButton_Logout_TeaCard.Size = new System.Drawing.Size(88, 26);
            this.simpleButton_Logout_TeaCard.TabIndex = 8;
            this.simpleButton_Logout_TeaCard.Tag = 4;
            this.simpleButton_Logout_TeaCard.Text = "教师卡";
            this.simpleButton_Logout_TeaCard.Click += new System.EventHandler(this.simpleButton_Logout_TeaCard_Click);
            // 
            // groupControl_Logout_MyCardRec
            // 
            this.groupControl_Logout_MyCardRec.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.groupControl_Logout_MyCardRec.AppearanceCaption.Options.UseFont = true;
            this.groupControl_Logout_MyCardRec.Controls.Add(this.gridControl_Logout_CardInfo);
            this.groupControl_Logout_MyCardRec.Dock = System.Windows.Forms.DockStyle.Fill;
            this.groupControl_Logout_MyCardRec.Location = new System.Drawing.Point(0, 0);
            this.groupControl_Logout_MyCardRec.Name = "groupControl_Logout_MyCardRec";
            this.groupControl_Logout_MyCardRec.Size = new System.Drawing.Size(442, 511);
            this.groupControl_Logout_MyCardRec.TabIndex = 27;
            this.groupControl_Logout_MyCardRec.Text = "检索结果";
            // 
            // gridControl_Logout_CardInfo
            // 
            this.gridControl_Logout_CardInfo.Dock = System.Windows.Forms.DockStyle.Fill;
            this.gridControl_Logout_CardInfo.Location = new System.Drawing.Point(2, 22);
            this.gridControl_Logout_CardInfo.MainView = this.gridView2;
            this.gridControl_Logout_CardInfo.Name = "gridControl_Logout_CardInfo";
            this.gridControl_Logout_CardInfo.Size = new System.Drawing.Size(438, 487);
            this.gridControl_Logout_CardInfo.TabIndex = 0;
            this.gridControl_Logout_CardInfo.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
            this.gridView2});
            // 
            // gridView2
            // 
            this.gridView2.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
            this.gridColumn15,
            this.gridColumn16,
            this.gridColumn17,
            this.gridColumn18,
            this.gridColumn19,
            this.gridColumn20});
            this.gridView2.GridControl = this.gridControl_Logout_CardInfo;
            this.gridView2.Name = "gridView2";
            this.gridView2.OptionsBehavior.Editable = false;
            this.gridView2.OptionsCustomization.AllowFilter = false;
            this.gridView2.OptionsCustomization.AllowGroup = false;
            this.gridView2.OptionsView.ShowFilterPanelMode = DevExpress.XtraGrid.Views.Base.ShowFilterPanelMode.Never;
            this.gridView2.OptionsView.ShowFooter = true;
            this.gridView2.OptionsView.ShowGroupPanel = false;
            // 
            // gridColumn15
            // 
            this.gridColumn15.Name = "gridColumn15";
            this.gridColumn15.Visible = true;
            this.gridColumn15.VisibleIndex = 0;
            // 
            // gridColumn16
            // 
            this.gridColumn16.Name = "gridColumn16";
            this.gridColumn16.Visible = true;
            this.gridColumn16.VisibleIndex = 1;
            // 
            // gridColumn17
            // 
            this.gridColumn17.Name = "gridColumn17";
            this.gridColumn17.Visible = true;
            this.gridColumn17.VisibleIndex = 2;
            // 
            // gridColumn18
            // 
            this.gridColumn18.Name = "gridColumn18";
            this.gridColumn18.Visible = true;
            this.gridColumn18.VisibleIndex = 3;
            // 
            // gridColumn19
            // 
            this.gridColumn19.Name = "gridColumn19";
            this.gridColumn19.Visible = true;
            this.gridColumn19.VisibleIndex = 4;
            // 
            // gridColumn20
            // 
            this.gridColumn20.Name = "gridColumn20";
            this.gridColumn20.Visible = true;
            this.gridColumn20.VisibleIndex = 5;
            // 
            // xtraTabPage_IDQuery
            // 
            this.xtraTabPage_IDQuery.Appearance.PageClient.BackColor = System.Drawing.Color.WhiteSmoke;
            this.xtraTabPage_IDQuery.Appearance.PageClient.Options.UseBackColor = true;
            this.xtraTabPage_IDQuery.Controls.Add(this.splitContainerControl3);
            this.xtraTabPage_IDQuery.Name = "xtraTabPage_IDQuery";
            this.xtraTabPage_IDQuery.PageVisible = false;
            this.xtraTabPage_IDQuery.Size = new System.Drawing.Size(766, 511);
            this.xtraTabPage_IDQuery.Text = "ID卡查询";
            // 
            // splitContainerControl3
            // 
            this.splitContainerControl3.Dock = System.Windows.Forms.DockStyle.Fill;
            this.splitContainerControl3.Location = new System.Drawing.Point(0, 0);
            this.splitContainerControl3.Name = "splitContainerControl3";
            this.splitContainerControl3.Panel1.Controls.Add(this.groupControl_IDQueryFastSer);
            this.splitContainerControl3.Panel1.Text = "splitContainerControl3_Panel1";
            this.splitContainerControl3.Panel2.Controls.Add(this.gridControl_IDQueryView);
            this.splitContainerControl3.Panel2.Controls.Add(this.panelControl2);
            this.splitContainerControl3.Panel2.Text = "splitContainerControl3_Panel2";
            this.splitContainerControl3.Size = new System.Drawing.Size(766, 511);
            this.splitContainerControl3.SplitterPosition = 223;
            this.splitContainerControl3.TabIndex = 0;
            this.splitContainerControl3.Text = "splitContainerControl3";
            // 
            // groupControl_IDQueryFastSer
            // 
            this.groupControl_IDQueryFastSer.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.groupControl_IDQueryFastSer.AppearanceCaption.Options.UseFont = true;
            this.groupControl_IDQueryFastSer.Controls.Add(this.groupControl_IDQueryTeaNumberAndName);
            this.groupControl_IDQueryFastSer.Controls.Add(this.panelControl_TeaField);
            this.groupControl_IDQueryFastSer.Controls.Add(this.panelControl_StuField);
            this.groupControl_IDQueryFastSer.Controls.Add(this.groupControl_IDQueryTimeAndCardNumber);
            this.groupControl_IDQueryFastSer.Controls.Add(this.groupControl_IDQueryNumberAndName);
            this.groupControl_IDQueryFastSer.Controls.Add(this.groupControl_IDQueryGradeAndClass);
            this.groupControl_IDQueryFastSer.Controls.Add(this.notePanel1_IDQueryFastSer);
            this.groupControl_IDQueryFastSer.Dock = System.Windows.Forms.DockStyle.Top;
            this.groupControl_IDQueryFastSer.Location = new System.Drawing.Point(0, 0);
            this.groupControl_IDQueryFastSer.Name = "groupControl_IDQueryFastSer";
            this.groupControl_IDQueryFastSer.Size = new System.Drawing.Size(223, 288);
            this.groupControl_IDQueryFastSer.TabIndex = 10;
            this.groupControl_IDQueryFastSer.Text = "快速搜索";
            // 
            // groupControl_IDQueryTeaNumberAndName
            // 
            this.groupControl_IDQueryTeaNumberAndName.Controls.Add(this.notePanel_IDQueryTeaName);
            this.groupControl_IDQueryTeaNumberAndName.Controls.Add(this.textEdit_IDQueryTeaName);
            this.groupControl_IDQueryTeaNumberAndName.Controls.Add(this.textEdit_IDQueryTeaNumber);
            this.groupControl_IDQueryTeaNumberAndName.Controls.Add(this.notePanel_IDQueryTeaNumber);
            this.groupControl_IDQueryTeaNumberAndName.Dock = System.Windows.Forms.DockStyle.Bottom;
            this.groupControl_IDQueryTeaNumberAndName.Location = new System.Drawing.Point(2, -194);
            this.groupControl_IDQueryTeaNumberAndName.Name = "groupControl_IDQueryTeaNumberAndName";
            this.groupControl_IDQueryTeaNumberAndName.Size = new System.Drawing.Size(219, 120);
            this.groupControl_IDQueryTeaNumberAndName.TabIndex = 25;
            this.groupControl_IDQueryTeaNumberAndName.Text = "指定搜索教师的工号和姓名";
            this.groupControl_IDQueryTeaNumberAndName.Visible = false;
            // 
            // notePanel_IDQueryTeaName
            // 
            this.notePanel_IDQueryTeaName.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel_IDQueryTeaName.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel_IDQueryTeaName.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel_IDQueryTeaName.ForeColor = System.Drawing.Color.Black;
            this.notePanel_IDQueryTeaName.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_IDQueryTeaName.Location = new System.Drawing.Point(16, 72);
            this.notePanel_IDQueryTeaName.MaxRows = 5;
            this.notePanel_IDQueryTeaName.Name = "notePanel_IDQueryTeaName";
            this.notePanel_IDQueryTeaName.ParentAutoHeight = true;
            this.notePanel_IDQueryTeaName.Size = new System.Drawing.Size(64, 22);
            this.notePanel_IDQueryTeaName.TabIndex = 14;
            this.notePanel_IDQueryTeaName.TabStop = false;
            this.notePanel_IDQueryTeaName.Text = "姓   名:";
            // 
            // textEdit_IDQueryTeaName
            // 
            this.textEdit_IDQueryTeaName.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.textEdit_IDQueryTeaName.EditValue = "";
            this.textEdit_IDQueryTeaName.Location = new System.Drawing.Point(88, 72);
            this.textEdit_IDQueryTeaName.Name = "textEdit_IDQueryTeaName";
            this.textEdit_IDQueryTeaName.Size = new System.Drawing.Size(225, 20);
            this.textEdit_IDQueryTeaName.TabIndex = 13;
            // 
            // textEdit_IDQueryTeaNumber
            // 
            this.textEdit_IDQueryTeaNumber.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.textEdit_IDQueryTeaNumber.EditValue = "";
            this.textEdit_IDQueryTeaNumber.Location = new System.Drawing.Point(88, 32);
            this.textEdit_IDQueryTeaNumber.Name = "textEdit_IDQueryTeaNumber";
            this.textEdit_IDQueryTeaNumber.Size = new System.Drawing.Size(225, 20);
            this.textEdit_IDQueryTeaNumber.TabIndex = 12;
            // 
            // notePanel_IDQueryTeaNumber
            // 
            this.notePanel_IDQueryTeaNumber.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel_IDQueryTeaNumber.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel_IDQueryTeaNumber.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel_IDQueryTeaNumber.ForeColor = System.Drawing.Color.Black;
            this.notePanel_IDQueryTeaNumber.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_IDQueryTeaNumber.Location = new System.Drawing.Point(16, 32);
            this.notePanel_IDQueryTeaNumber.MaxRows = 5;
            this.notePanel_IDQueryTeaNumber.Name = "notePanel_IDQueryTeaNumber";
            this.notePanel_IDQueryTeaNumber.ParentAutoHeight = true;
            this.notePanel_IDQueryTeaNumber.Size = new System.Drawing.Size(64, 22);
            this.notePanel_IDQueryTeaNumber.TabIndex = 11;
            this.notePanel_IDQueryTeaNumber.TabStop = false;
            this.notePanel_IDQueryTeaNumber.Text = "工  号:";
            // 
            // panelControl_TeaField
            // 
            this.panelControl_TeaField.Appearance.BackColor = System.Drawing.Color.Transparent;
            this.panelControl_TeaField.Appearance.Options.UseBackColor = true;
            this.panelControl_TeaField.Controls.Add(this.notePanel_IDQueryTeaTimeAndCardNumber);
            this.panelControl_TeaField.Controls.Add(this.notePanel_IDQueryTeaNumberAndName);
            this.panelControl_TeaField.Dock = System.Windows.Forms.DockStyle.Top;
            this.panelControl_TeaField.Location = new System.Drawing.Point(2, 131);
            this.panelControl_TeaField.Name = "panelControl_TeaField";
            this.panelControl_TeaField.Size = new System.Drawing.Size(219, 72);
            this.panelControl_TeaField.TabIndex = 24;
            this.panelControl_TeaField.Visible = false;
            // 
            // notePanel_IDQueryTeaTimeAndCardNumber
            // 
            this.notePanel_IDQueryTeaTimeAndCardNumber.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.notePanel_IDQueryTeaTimeAndCardNumber.BackColor = System.Drawing.Color.Yellow;
            this.notePanel_IDQueryTeaTimeAndCardNumber.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel_IDQueryTeaTimeAndCardNumber.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel_IDQueryTeaTimeAndCardNumber.ForeColor = System.Drawing.Color.Black;
            this.notePanel_IDQueryTeaTimeAndCardNumber.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_IDQueryTeaTimeAndCardNumber.Location = new System.Drawing.Point(16, 34);
            this.notePanel_IDQueryTeaTimeAndCardNumber.MaxRows = 5;
            this.notePanel_IDQueryTeaTimeAndCardNumber.Name = "notePanel_IDQueryTeaTimeAndCardNumber";
            this.notePanel_IDQueryTeaTimeAndCardNumber.ParentAutoHeight = true;
            this.notePanel_IDQueryTeaTimeAndCardNumber.Size = new System.Drawing.Size(225, 22);
            this.notePanel_IDQueryTeaTimeAndCardNumber.TabIndex = 19;
            this.notePanel_IDQueryTeaTimeAndCardNumber.TabStop = false;
            this.notePanel_IDQueryTeaTimeAndCardNumber.Text = "时间和卡号:";
            this.notePanel_IDQueryTeaTimeAndCardNumber.Click += new System.EventHandler(this.notePanel_IDQueryTeaTimeAndCardNumber_Click);
            // 
            // notePanel_IDQueryTeaNumberAndName
            // 
            this.notePanel_IDQueryTeaNumberAndName.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.notePanel_IDQueryTeaNumberAndName.BackColor = System.Drawing.Color.Yellow;
            this.notePanel_IDQueryTeaNumberAndName.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel_IDQueryTeaNumberAndName.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel_IDQueryTeaNumberAndName.ForeColor = System.Drawing.Color.Black;
            this.notePanel_IDQueryTeaNumberAndName.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_IDQueryTeaNumberAndName.Location = new System.Drawing.Point(16, 8);
            this.notePanel_IDQueryTeaNumberAndName.MaxRows = 5;
            this.notePanel_IDQueryTeaNumberAndName.Name = "notePanel_IDQueryTeaNumberAndName";
            this.notePanel_IDQueryTeaNumberAndName.ParentAutoHeight = true;
            this.notePanel_IDQueryTeaNumberAndName.Size = new System.Drawing.Size(225, 22);
            this.notePanel_IDQueryTeaNumberAndName.TabIndex = 18;
            this.notePanel_IDQueryTeaNumberAndName.TabStop = false;
            this.notePanel_IDQueryTeaNumberAndName.Text = "工号和姓名:";
            this.notePanel_IDQueryTeaNumberAndName.Click += new System.EventHandler(this.notePanel_IDQueryTeaNumberAndName_Click);
            // 
            // panelControl_StuField
            // 
            this.panelControl_StuField.Appearance.BackColor = System.Drawing.Color.Transparent;
            this.panelControl_StuField.Appearance.Options.UseBackColor = true;
            this.panelControl_StuField.Controls.Add(this.notePanel_IDQueryNumberAndName);
            this.panelControl_StuField.Controls.Add(this.notePanel_IDQueryTimeAndCardNumber);
            this.panelControl_StuField.Controls.Add(this.notePanel_IDQueryGradeAndClass);
            this.panelControl_StuField.Dock = System.Windows.Forms.DockStyle.Top;
            this.panelControl_StuField.Location = new System.Drawing.Point(2, 45);
            this.panelControl_StuField.Name = "panelControl_StuField";
            this.panelControl_StuField.Size = new System.Drawing.Size(219, 86);
            this.panelControl_StuField.TabIndex = 23;
            // 
            // notePanel_IDQueryNumberAndName
            // 
            this.notePanel_IDQueryNumberAndName.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.notePanel_IDQueryNumberAndName.BackColor = System.Drawing.Color.LightGray;
            this.notePanel_IDQueryNumberAndName.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel_IDQueryNumberAndName.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel_IDQueryNumberAndName.ForeColor = System.Drawing.Color.Black;
            this.notePanel_IDQueryNumberAndName.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_IDQueryNumberAndName.Location = new System.Drawing.Point(16, 34);
            this.notePanel_IDQueryNumberAndName.MaxRows = 5;
            this.notePanel_IDQueryNumberAndName.Name = "notePanel_IDQueryNumberAndName";
            this.notePanel_IDQueryNumberAndName.ParentAutoHeight = true;
            this.notePanel_IDQueryNumberAndName.Size = new System.Drawing.Size(225, 22);
            this.notePanel_IDQueryNumberAndName.TabIndex = 17;
            this.notePanel_IDQueryNumberAndName.TabStop = false;
            this.notePanel_IDQueryNumberAndName.Text = "学号和姓名:";
            this.notePanel_IDQueryNumberAndName.Click += new System.EventHandler(this.notePanel_IDQueryNumberAndName_Click);
            // 
            // notePanel_IDQueryTimeAndCardNumber
            // 
            this.notePanel_IDQueryTimeAndCardNumber.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.notePanel_IDQueryTimeAndCardNumber.BackColor = System.Drawing.Color.LightGray;
            this.notePanel_IDQueryTimeAndCardNumber.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel_IDQueryTimeAndCardNumber.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel_IDQueryTimeAndCardNumber.ForeColor = System.Drawing.Color.Black;
            this.notePanel_IDQueryTimeAndCardNumber.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_IDQueryTimeAndCardNumber.Location = new System.Drawing.Point(16, 58);
            this.notePanel_IDQueryTimeAndCardNumber.MaxRows = 5;
            this.notePanel_IDQueryTimeAndCardNumber.Name = "notePanel_IDQueryTimeAndCardNumber";
            this.notePanel_IDQueryTimeAndCardNumber.ParentAutoHeight = true;
            this.notePanel_IDQueryTimeAndCardNumber.Size = new System.Drawing.Size(225, 22);
            this.notePanel_IDQueryTimeAndCardNumber.TabIndex = 18;
            this.notePanel_IDQueryTimeAndCardNumber.TabStop = false;
            this.notePanel_IDQueryTimeAndCardNumber.Text = "时间和卡号:";
            this.notePanel_IDQueryTimeAndCardNumber.Click += new System.EventHandler(this.notePanel_IDQueryTimeAndCardNumber_Click);
            // 
            // notePanel_IDQueryGradeAndClass
            // 
            this.notePanel_IDQueryGradeAndClass.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.notePanel_IDQueryGradeAndClass.BackColor = System.Drawing.Color.LightGray;
            this.notePanel_IDQueryGradeAndClass.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel_IDQueryGradeAndClass.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.notePanel_IDQueryGradeAndClass.ForeColor = System.Drawing.Color.Black;
            this.notePanel_IDQueryGradeAndClass.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_IDQueryGradeAndClass.Location = new System.Drawing.Point(16, 8);
            this.notePanel_IDQueryGradeAndClass.MaxRows = 5;
            this.notePanel_IDQueryGradeAndClass.Name = "notePanel_IDQueryGradeAndClass";
            this.notePanel_IDQueryGradeAndClass.ParentAutoHeight = true;
            this.notePanel_IDQueryGradeAndClass.Size = new System.Drawing.Size(225, 22);
            this.notePanel_IDQueryGradeAndClass.TabIndex = 19;
            this.notePanel_IDQueryGradeAndClass.TabStop = false;
            this.notePanel_IDQueryGradeAndClass.Text = "年级和班级:";
            this.notePanel_IDQueryGradeAndClass.Click += new System.EventHandler(this.notePanel_IDQueryGradeAndClass_Click);
            // 
            // groupControl_IDQueryTimeAndCardNumber
            // 
            this.groupControl_IDQueryTimeAndCardNumber.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.groupControl_IDQueryTimeAndCardNumber.AppearanceCaption.ForeColor = System.Drawing.Color.Black;
            this.groupControl_IDQueryTimeAndCardNumber.AppearanceCaption.Options.UseFont = true;
            this.groupControl_IDQueryTimeAndCardNumber.AppearanceCaption.Options.UseForeColor = true;
            this.groupControl_IDQueryTimeAndCardNumber.Controls.Add(this.textEdit_IDQueryCardNumber);
            this.groupControl_IDQueryTimeAndCardNumber.Controls.Add(this.notePanel_IDQueryCardNumber);
            this.groupControl_IDQueryTimeAndCardNumber.Controls.Add(this.dateEdit_IDQueryEndTime);
            this.groupControl_IDQueryTimeAndCardNumber.Controls.Add(this.notePanel_IDQueryBegTime);
            this.groupControl_IDQueryTimeAndCardNumber.Controls.Add(this.notePanel_IDQueryEndTime);
            this.groupControl_IDQueryTimeAndCardNumber.Controls.Add(this.dateEdit_IDQueryBegTime);
            this.groupControl_IDQueryTimeAndCardNumber.Dock = System.Windows.Forms.DockStyle.Bottom;
            this.groupControl_IDQueryTimeAndCardNumber.Location = new System.Drawing.Point(2, -74);
            this.groupControl_IDQueryTimeAndCardNumber.Name = "groupControl_IDQueryTimeAndCardNumber";
            this.groupControl_IDQueryTimeAndCardNumber.Size = new System.Drawing.Size(219, 120);
            this.groupControl_IDQueryTimeAndCardNumber.TabIndex = 22;
            this.groupControl_IDQueryTimeAndCardNumber.Text = "指定发卡的起止时间和卡号";
            this.groupControl_IDQueryTimeAndCardNumber.Visible = false;
            // 
            // textEdit_IDQueryCardNumber
            // 
            this.textEdit_IDQueryCardNumber.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.textEdit_IDQueryCardNumber.EditValue = "";
            this.textEdit_IDQueryCardNumber.Location = new System.Drawing.Point(104, 88);
            this.textEdit_IDQueryCardNumber.Name = "textEdit_IDQueryCardNumber";
            this.textEdit_IDQueryCardNumber.Size = new System.Drawing.Size(225, 20);
            this.textEdit_IDQueryCardNumber.TabIndex = 18;
            // 
            // notePanel_IDQueryCardNumber
            // 
            this.notePanel_IDQueryCardNumber.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel_IDQueryCardNumber.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel_IDQueryCardNumber.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel_IDQueryCardNumber.ForeColor = System.Drawing.Color.Black;
            this.notePanel_IDQueryCardNumber.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_IDQueryCardNumber.Location = new System.Drawing.Point(16, 88);
            this.notePanel_IDQueryCardNumber.MaxRows = 5;
            this.notePanel_IDQueryCardNumber.Name = "notePanel_IDQueryCardNumber";
            this.notePanel_IDQueryCardNumber.ParentAutoHeight = true;
            this.notePanel_IDQueryCardNumber.Size = new System.Drawing.Size(80, 22);
            this.notePanel_IDQueryCardNumber.TabIndex = 17;
            this.notePanel_IDQueryCardNumber.TabStop = false;
            this.notePanel_IDQueryCardNumber.Text = "卡   号:";
            // 
            // dateEdit_IDQueryEndTime
            // 
            this.dateEdit_IDQueryEndTime.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.dateEdit_IDQueryEndTime.EditValue = new System.DateTime(2005, 9, 9, 0, 0, 0, 0);
            this.dateEdit_IDQueryEndTime.Location = new System.Drawing.Point(104, 56);
            this.dateEdit_IDQueryEndTime.Name = "dateEdit_IDQueryEndTime";
            this.dateEdit_IDQueryEndTime.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.dateEdit_IDQueryEndTime.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton()});
            this.dateEdit_IDQueryEndTime.Size = new System.Drawing.Size(225, 20);
            this.dateEdit_IDQueryEndTime.TabIndex = 16;
            // 
            // notePanel_IDQueryBegTime
            // 
            this.notePanel_IDQueryBegTime.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel_IDQueryBegTime.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel_IDQueryBegTime.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel_IDQueryBegTime.ForeColor = System.Drawing.Color.Black;
            this.notePanel_IDQueryBegTime.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_IDQueryBegTime.Location = new System.Drawing.Point(16, 24);
            this.notePanel_IDQueryBegTime.MaxRows = 5;
            this.notePanel_IDQueryBegTime.Name = "notePanel_IDQueryBegTime";
            this.notePanel_IDQueryBegTime.ParentAutoHeight = true;
            this.notePanel_IDQueryBegTime.Size = new System.Drawing.Size(80, 22);
            this.notePanel_IDQueryBegTime.TabIndex = 14;
            this.notePanel_IDQueryBegTime.TabStop = false;
            this.notePanel_IDQueryBegTime.Text = "起始时间";
            // 
            // notePanel_IDQueryEndTime
            // 
            this.notePanel_IDQueryEndTime.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel_IDQueryEndTime.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel_IDQueryEndTime.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel_IDQueryEndTime.ForeColor = System.Drawing.Color.Black;
            this.notePanel_IDQueryEndTime.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_IDQueryEndTime.Location = new System.Drawing.Point(16, 56);
            this.notePanel_IDQueryEndTime.MaxRows = 5;
            this.notePanel_IDQueryEndTime.Name = "notePanel_IDQueryEndTime";
            this.notePanel_IDQueryEndTime.ParentAutoHeight = true;
            this.notePanel_IDQueryEndTime.Size = new System.Drawing.Size(80, 22);
            this.notePanel_IDQueryEndTime.TabIndex = 13;
            this.notePanel_IDQueryEndTime.TabStop = false;
            this.notePanel_IDQueryEndTime.Text = "结束时间";
            // 
            // dateEdit_IDQueryBegTime
            // 
            this.dateEdit_IDQueryBegTime.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.dateEdit_IDQueryBegTime.EditValue = new System.DateTime(2005, 9, 9, 0, 0, 0, 0);
            this.dateEdit_IDQueryBegTime.Location = new System.Drawing.Point(104, 24);
            this.dateEdit_IDQueryBegTime.Name = "dateEdit_IDQueryBegTime";
            this.dateEdit_IDQueryBegTime.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.dateEdit_IDQueryBegTime.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton()});
            this.dateEdit_IDQueryBegTime.Size = new System.Drawing.Size(225, 20);
            this.dateEdit_IDQueryBegTime.TabIndex = 15;
            // 
            // groupControl_IDQueryNumberAndName
            // 
            this.groupControl_IDQueryNumberAndName.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.groupControl_IDQueryNumberAndName.AppearanceCaption.ForeColor = System.Drawing.Color.Black;
            this.groupControl_IDQueryNumberAndName.AppearanceCaption.Options.UseFont = true;
            this.groupControl_IDQueryNumberAndName.AppearanceCaption.Options.UseForeColor = true;
            this.groupControl_IDQueryNumberAndName.Controls.Add(this.textEdit_IDQueryStuName);
            this.groupControl_IDQueryNumberAndName.Controls.Add(this.textEdit_IDQueryStuNumber);
            this.groupControl_IDQueryNumberAndName.Controls.Add(this.notePanel_IDQueryStuNumber);
            this.groupControl_IDQueryNumberAndName.Controls.Add(this.notePanel_IDQueryStuName);
            this.groupControl_IDQueryNumberAndName.Dock = System.Windows.Forms.DockStyle.Bottom;
            this.groupControl_IDQueryNumberAndName.Location = new System.Drawing.Point(2, 46);
            this.groupControl_IDQueryNumberAndName.Name = "groupControl_IDQueryNumberAndName";
            this.groupControl_IDQueryNumberAndName.Size = new System.Drawing.Size(219, 120);
            this.groupControl_IDQueryNumberAndName.TabIndex = 21;
            this.groupControl_IDQueryNumberAndName.Text = "指定搜索的幼儿学号和姓名";
            this.groupControl_IDQueryNumberAndName.Visible = false;
            // 
            // textEdit_IDQueryStuName
            // 
            this.textEdit_IDQueryStuName.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.textEdit_IDQueryStuName.EditValue = "";
            this.textEdit_IDQueryStuName.Location = new System.Drawing.Point(96, 72);
            this.textEdit_IDQueryStuName.Name = "textEdit_IDQueryStuName";
            this.textEdit_IDQueryStuName.Size = new System.Drawing.Size(225, 20);
            this.textEdit_IDQueryStuName.TabIndex = 12;
            // 
            // textEdit_IDQueryStuNumber
            // 
            this.textEdit_IDQueryStuNumber.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.textEdit_IDQueryStuNumber.EditValue = "";
            this.textEdit_IDQueryStuNumber.Location = new System.Drawing.Point(96, 32);
            this.textEdit_IDQueryStuNumber.Name = "textEdit_IDQueryStuNumber";
            this.textEdit_IDQueryStuNumber.Size = new System.Drawing.Size(225, 20);
            this.textEdit_IDQueryStuNumber.TabIndex = 11;
            // 
            // notePanel_IDQueryStuNumber
            // 
            this.notePanel_IDQueryStuNumber.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel_IDQueryStuNumber.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel_IDQueryStuNumber.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel_IDQueryStuNumber.ForeColor = System.Drawing.Color.Black;
            this.notePanel_IDQueryStuNumber.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_IDQueryStuNumber.Location = new System.Drawing.Point(16, 32);
            this.notePanel_IDQueryStuNumber.MaxRows = 5;
            this.notePanel_IDQueryStuNumber.Name = "notePanel_IDQueryStuNumber";
            this.notePanel_IDQueryStuNumber.ParentAutoHeight = true;
            this.notePanel_IDQueryStuNumber.Size = new System.Drawing.Size(64, 22);
            this.notePanel_IDQueryStuNumber.TabIndex = 10;
            this.notePanel_IDQueryStuNumber.TabStop = false;
            this.notePanel_IDQueryStuNumber.Text = "学  号:";
            // 
            // notePanel_IDQueryStuName
            // 
            this.notePanel_IDQueryStuName.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel_IDQueryStuName.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel_IDQueryStuName.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel_IDQueryStuName.ForeColor = System.Drawing.Color.Black;
            this.notePanel_IDQueryStuName.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_IDQueryStuName.Location = new System.Drawing.Point(16, 72);
            this.notePanel_IDQueryStuName.MaxRows = 5;
            this.notePanel_IDQueryStuName.Name = "notePanel_IDQueryStuName";
            this.notePanel_IDQueryStuName.ParentAutoHeight = true;
            this.notePanel_IDQueryStuName.Size = new System.Drawing.Size(64, 22);
            this.notePanel_IDQueryStuName.TabIndex = 9;
            this.notePanel_IDQueryStuName.TabStop = false;
            this.notePanel_IDQueryStuName.Text = "姓  名:";
            // 
            // groupControl_IDQueryGradeAndClass
            // 
            this.groupControl_IDQueryGradeAndClass.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.groupControl_IDQueryGradeAndClass.AppearanceCaption.Options.UseFont = true;
            this.groupControl_IDQueryGradeAndClass.Controls.Add(this.comboBoxEdit_IDQueryStuClass);
            this.groupControl_IDQueryGradeAndClass.Controls.Add(this.comboBoxEdit_IDQueryStuGrade);
            this.groupControl_IDQueryGradeAndClass.Controls.Add(this.notePanel_IDQueryStuGrade);
            this.groupControl_IDQueryGradeAndClass.Controls.Add(this.notePanel_IDQueryStuClass);
            this.groupControl_IDQueryGradeAndClass.Dock = System.Windows.Forms.DockStyle.Bottom;
            this.groupControl_IDQueryGradeAndClass.Location = new System.Drawing.Point(2, 166);
            this.groupControl_IDQueryGradeAndClass.Name = "groupControl_IDQueryGradeAndClass";
            this.groupControl_IDQueryGradeAndClass.Size = new System.Drawing.Size(219, 120);
            this.groupControl_IDQueryGradeAndClass.TabIndex = 20;
            this.groupControl_IDQueryGradeAndClass.Text = "指定搜索幼儿的年级和班级";
            this.groupControl_IDQueryGradeAndClass.Visible = false;
            // 
            // comboBoxEdit_IDQueryStuClass
            // 
            this.comboBoxEdit_IDQueryStuClass.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.comboBoxEdit_IDQueryStuClass.EditValue = "";
            this.comboBoxEdit_IDQueryStuClass.Location = new System.Drawing.Point(96, 72);
            this.comboBoxEdit_IDQueryStuClass.Name = "comboBoxEdit_IDQueryStuClass";
            this.comboBoxEdit_IDQueryStuClass.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.comboBoxEdit_IDQueryStuClass.Size = new System.Drawing.Size(225, 20);
            this.comboBoxEdit_IDQueryStuClass.TabIndex = 18;
            // 
            // comboBoxEdit_IDQueryStuGrade
            // 
            this.comboBoxEdit_IDQueryStuGrade.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.comboBoxEdit_IDQueryStuGrade.EditValue = "";
            this.comboBoxEdit_IDQueryStuGrade.Location = new System.Drawing.Point(96, 32);
            this.comboBoxEdit_IDQueryStuGrade.Name = "comboBoxEdit_IDQueryStuGrade";
            this.comboBoxEdit_IDQueryStuGrade.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.comboBoxEdit_IDQueryStuGrade.Size = new System.Drawing.Size(225, 20);
            this.comboBoxEdit_IDQueryStuGrade.TabIndex = 17;
            // 
            // notePanel_IDQueryStuGrade
            // 
            this.notePanel_IDQueryStuGrade.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel_IDQueryStuGrade.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel_IDQueryStuGrade.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel_IDQueryStuGrade.ForeColor = System.Drawing.Color.Black;
            this.notePanel_IDQueryStuGrade.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_IDQueryStuGrade.Location = new System.Drawing.Point(16, 32);
            this.notePanel_IDQueryStuGrade.MaxRows = 5;
            this.notePanel_IDQueryStuGrade.Name = "notePanel_IDQueryStuGrade";
            this.notePanel_IDQueryStuGrade.ParentAutoHeight = true;
            this.notePanel_IDQueryStuGrade.Size = new System.Drawing.Size(64, 22);
            this.notePanel_IDQueryStuGrade.TabIndex = 4;
            this.notePanel_IDQueryStuGrade.TabStop = false;
            this.notePanel_IDQueryStuGrade.Text = "年  级:";
            // 
            // notePanel_IDQueryStuClass
            // 
            this.notePanel_IDQueryStuClass.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel_IDQueryStuClass.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel_IDQueryStuClass.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel_IDQueryStuClass.ForeColor = System.Drawing.Color.Black;
            this.notePanel_IDQueryStuClass.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_IDQueryStuClass.Location = new System.Drawing.Point(16, 72);
            this.notePanel_IDQueryStuClass.MaxRows = 5;
            this.notePanel_IDQueryStuClass.Name = "notePanel_IDQueryStuClass";
            this.notePanel_IDQueryStuClass.ParentAutoHeight = true;
            this.notePanel_IDQueryStuClass.Size = new System.Drawing.Size(64, 22);
            this.notePanel_IDQueryStuClass.TabIndex = 16;
            this.notePanel_IDQueryStuClass.TabStop = false;
            this.notePanel_IDQueryStuClass.Text = "班  级:";
            // 
            // notePanel1_IDQueryFastSer
            // 
            this.notePanel1_IDQueryFastSer.BackColor = System.Drawing.Color.LightGoldenrodYellow;
            this.notePanel1_IDQueryFastSer.Dock = System.Windows.Forms.DockStyle.Top;
            this.notePanel1_IDQueryFastSer.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.notePanel1_IDQueryFastSer.ForeColor = System.Drawing.Color.Gray;
            this.notePanel1_IDQueryFastSer.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel1_IDQueryFastSer.Location = new System.Drawing.Point(2, 22);
            this.notePanel1_IDQueryFastSer.MaxRows = 5;
            this.notePanel1_IDQueryFastSer.Name = "notePanel1_IDQueryFastSer";
            this.notePanel1_IDQueryFastSer.ParentAutoHeight = true;
            this.notePanel1_IDQueryFastSer.Size = new System.Drawing.Size(219, 23);
            this.notePanel1_IDQueryFastSer.TabIndex = 5;
            this.notePanel1_IDQueryFastSer.TabStop = false;
            this.notePanel1_IDQueryFastSer.Text = "您要搜索的条件?";
            // 
            // gridControl_IDQueryView
            // 
            this.gridControl_IDQueryView.Dock = System.Windows.Forms.DockStyle.Fill;
            this.gridControl_IDQueryView.Location = new System.Drawing.Point(0, 40);
            this.gridControl_IDQueryView.MainView = this.gridView4;
            this.gridControl_IDQueryView.Name = "gridControl_IDQueryView";
            this.gridControl_IDQueryView.Size = new System.Drawing.Size(538, 471);
            this.gridControl_IDQueryView.TabIndex = 1;
            this.gridControl_IDQueryView.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
            this.gridView4});
            // 
            // gridView4
            // 
            this.gridView4.GridControl = this.gridControl_IDQueryView;
            this.gridView4.Name = "gridView4";
            // 
            // panelControl2
            // 
            this.panelControl2.Appearance.BackColor = System.Drawing.Color.Transparent;
            this.panelControl2.Appearance.BackColor2 = System.Drawing.Color.Transparent;
            this.panelControl2.Appearance.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.ForwardDiagonal;
            this.panelControl2.Appearance.Options.UseBackColor = true;
            this.panelControl2.Controls.Add(this.simpleButton_IDQueryPrint);
            this.panelControl2.Controls.Add(this.simpleButton_IDQueryStuCard);
            this.panelControl2.Controls.Add(this.simpleButton_IDQueryTeaCard);
            this.panelControl2.Controls.Add(this.simpleButton_IDQuerySearch);
            this.panelControl2.Dock = System.Windows.Forms.DockStyle.Top;
            this.panelControl2.Location = new System.Drawing.Point(0, 0);
            this.panelControl2.Name = "panelControl2";
            this.panelControl2.Size = new System.Drawing.Size(538, 40);
            this.panelControl2.TabIndex = 0;
            // 
            // simpleButton_IDQueryPrint
            // 
            this.simpleButton_IDQueryPrint.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.simpleButton_IDQueryPrint.Appearance.ForeColor = System.Drawing.Color.DarkMagenta;
            this.simpleButton_IDQueryPrint.Appearance.Options.UseFont = true;
            this.simpleButton_IDQueryPrint.Appearance.Options.UseForeColor = true;
            this.simpleButton_IDQueryPrint.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton_IDQueryPrint.Image")));
            this.simpleButton_IDQueryPrint.Location = new System.Drawing.Point(320, 7);
            this.simpleButton_IDQueryPrint.Name = "simpleButton_IDQueryPrint";
            this.simpleButton_IDQueryPrint.Size = new System.Drawing.Size(91, 26);
            this.simpleButton_IDQueryPrint.TabIndex = 10;
            this.simpleButton_IDQueryPrint.Tag = 4;
            this.simpleButton_IDQueryPrint.Text = "打   印";
            // 
            // simpleButton_IDQueryStuCard
            // 
            this.simpleButton_IDQueryStuCard.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.simpleButton_IDQueryStuCard.Appearance.ForeColor = System.Drawing.Color.DarkMagenta;
            this.simpleButton_IDQueryStuCard.Appearance.Options.UseFont = true;
            this.simpleButton_IDQueryStuCard.Appearance.Options.UseForeColor = true;
            this.simpleButton_IDQueryStuCard.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton_IDQueryStuCard.Image")));
            this.simpleButton_IDQueryStuCard.Location = new System.Drawing.Point(8, 8);
            this.simpleButton_IDQueryStuCard.Name = "simpleButton_IDQueryStuCard";
            this.simpleButton_IDQueryStuCard.Size = new System.Drawing.Size(91, 26);
            this.simpleButton_IDQueryStuCard.TabIndex = 8;
            this.simpleButton_IDQueryStuCard.Tag = 4;
            this.simpleButton_IDQueryStuCard.Text = "学生卡";
            this.simpleButton_IDQueryStuCard.Click += new System.EventHandler(this.simpleButton_IDQueryStuCard_Click);
            // 
            // simpleButton_IDQueryTeaCard
            // 
            this.simpleButton_IDQueryTeaCard.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.simpleButton_IDQueryTeaCard.Appearance.ForeColor = System.Drawing.Color.DarkMagenta;
            this.simpleButton_IDQueryTeaCard.Appearance.Options.UseFont = true;
            this.simpleButton_IDQueryTeaCard.Appearance.Options.UseForeColor = true;
            this.simpleButton_IDQueryTeaCard.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton_IDQueryTeaCard.Image")));
            this.simpleButton_IDQueryTeaCard.Location = new System.Drawing.Point(112, 8);
            this.simpleButton_IDQueryTeaCard.Name = "simpleButton_IDQueryTeaCard";
            this.simpleButton_IDQueryTeaCard.Size = new System.Drawing.Size(91, 26);
            this.simpleButton_IDQueryTeaCard.TabIndex = 9;
            this.simpleButton_IDQueryTeaCard.Tag = 4;
            this.simpleButton_IDQueryTeaCard.Text = "教师卡";
            this.simpleButton_IDQueryTeaCard.Click += new System.EventHandler(this.simpleButton_IDQueryTeaCard_Click);
            // 
            // simpleButton_IDQuerySearch
            // 
            this.simpleButton_IDQuerySearch.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.simpleButton_IDQuerySearch.Appearance.ForeColor = System.Drawing.Color.DarkMagenta;
            this.simpleButton_IDQuerySearch.Appearance.Options.UseFont = true;
            this.simpleButton_IDQuerySearch.Appearance.Options.UseForeColor = true;
            this.simpleButton_IDQuerySearch.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton_IDQuerySearch.Image")));
            this.simpleButton_IDQuerySearch.Location = new System.Drawing.Point(216, 8);
            this.simpleButton_IDQuerySearch.Name = "simpleButton_IDQuerySearch";
            this.simpleButton_IDQuerySearch.Size = new System.Drawing.Size(91, 26);
            this.simpleButton_IDQuerySearch.TabIndex = 9;
            this.simpleButton_IDQuerySearch.Tag = 4;
            this.simpleButton_IDQuerySearch.Text = "查   询";
            // 
            // xtraTabPage_DataSynchAndReceive
            // 
            this.xtraTabPage_DataSynchAndReceive.Appearance.PageClient.BackColor = System.Drawing.Color.WhiteSmoke;
            this.xtraTabPage_DataSynchAndReceive.Appearance.PageClient.Options.UseBackColor = true;
            this.xtraTabPage_DataSynchAndReceive.Controls.Add(this.groupControl_DeviceView);
            this.xtraTabPage_DataSynchAndReceive.Controls.Add(this.groupControl_DataSynchReceiDesk);
            this.helpProvider_Help.SetHelpKeyword(this.xtraTabPage_DataSynchAndReceive, "时间同步与数据接收");
            this.helpProvider_Help.SetHelpNavigator(this.xtraTabPage_DataSynchAndReceive, System.Windows.Forms.HelpNavigator.KeywordIndex);
            this.xtraTabPage_DataSynchAndReceive.Name = "xtraTabPage_DataSynchAndReceive";
            this.helpProvider_Help.SetShowHelp(this.xtraTabPage_DataSynchAndReceive, true);
            this.xtraTabPage_DataSynchAndReceive.Size = new System.Drawing.Size(766, 511);
            this.xtraTabPage_DataSynchAndReceive.Text = "时间同步与数据接收";
            // 
            // groupControl_DeviceView
            // 
            this.groupControl_DeviceView.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.groupControl_DeviceView.AppearanceCaption.Options.UseFont = true;
            this.groupControl_DeviceView.Controls.Add(this.gridControl_DeviceView);
            this.groupControl_DeviceView.Dock = System.Windows.Forms.DockStyle.Fill;
            this.groupControl_DeviceView.Location = new System.Drawing.Point(168, 0);
            this.groupControl_DeviceView.Name = "groupControl_DeviceView";
            this.groupControl_DeviceView.Size = new System.Drawing.Size(598, 511);
            this.groupControl_DeviceView.TabIndex = 4;
            this.groupControl_DeviceView.Text = "设备浏览";
            // 
            // gridControl_DeviceView
            // 
            this.gridControl_DeviceView.Dock = System.Windows.Forms.DockStyle.Fill;
            this.gridControl_DeviceView.Location = new System.Drawing.Point(2, 22);
            this.gridControl_DeviceView.MainView = this.gridView5;
            this.gridControl_DeviceView.Name = "gridControl_DeviceView";
            this.gridControl_DeviceView.Size = new System.Drawing.Size(594, 487);
            this.gridControl_DeviceView.TabIndex = 0;
            this.gridControl_DeviceView.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
            this.gridView5});
            // 
            // gridView5
            // 
            this.gridView5.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
            this.gridColumn21,
            this.gridColumn22});
            this.gridView5.GridControl = this.gridControl_DeviceView;
            this.gridView5.Name = "gridView5";
            this.gridView5.OptionsBehavior.Editable = false;
            this.gridView5.OptionsCustomization.AllowFilter = false;
            this.gridView5.OptionsCustomization.AllowGroup = false;
            this.gridView5.OptionsView.ShowFilterPanelMode = DevExpress.XtraGrid.Views.Base.ShowFilterPanelMode.Never;
            this.gridView5.OptionsView.ShowFooter = true;
            this.gridView5.OptionsView.ShowGroupPanel = false;
            // 
            // gridColumn21
            // 
            this.gridColumn21.Caption = "门口机地址";
            this.gridColumn21.FieldName = "machine_address";
            this.gridColumn21.Name = "gridColumn21";
            this.gridColumn21.Visible = true;
            this.gridColumn21.VisibleIndex = 0;
            this.gridColumn21.Width = 102;
            // 
            // gridColumn22
            // 
            this.gridColumn22.Caption = "门口机容量";
            this.gridColumn22.FieldName = "machine_volumn";
            this.gridColumn22.Name = "gridColumn22";
            this.gridColumn22.Visible = true;
            this.gridColumn22.VisibleIndex = 1;
            this.gridColumn22.Width = 475;
            // 
            // groupControl_DataSynchReceiDesk
            // 
            this.groupControl_DataSynchReceiDesk.Appearance.BackColor = System.Drawing.Color.LightGray;
            this.groupControl_DataSynchReceiDesk.Appearance.BackColor2 = System.Drawing.Color.Gray;
            this.groupControl_DataSynchReceiDesk.Appearance.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.ForwardDiagonal;
            this.groupControl_DataSynchReceiDesk.Appearance.Options.UseBackColor = true;
            this.groupControl_DataSynchReceiDesk.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.groupControl_DataSynchReceiDesk.AppearanceCaption.Options.UseFont = true;
            this.groupControl_DataSynchReceiDesk.Controls.Add(this.notePanel_DataSynchReceiDesk);
            this.groupControl_DataSynchReceiDesk.Controls.Add(this.simpleButton_Date);
            this.groupControl_DataSynchReceiDesk.Controls.Add(this.simpleButton_GetMobile);
            this.groupControl_DataSynchReceiDesk.Controls.Add(this.simpleButton_FastDataReceive);
            this.groupControl_DataSynchReceiDesk.Controls.Add(this.simpleButton_StopDataReceive);
            this.groupControl_DataSynchReceiDesk.Dock = System.Windows.Forms.DockStyle.Left;
            this.groupControl_DataSynchReceiDesk.Location = new System.Drawing.Point(0, 0);
            this.groupControl_DataSynchReceiDesk.Name = "groupControl_DataSynchReceiDesk";
            this.groupControl_DataSynchReceiDesk.Size = new System.Drawing.Size(168, 511);
            this.groupControl_DataSynchReceiDesk.TabIndex = 3;
            this.groupControl_DataSynchReceiDesk.Text = "数据控制台";
            this.groupControl_DataSynchReceiDesk.Paint += new System.Windows.Forms.PaintEventHandler(this.groupControl_DataSynchReceiDesk_Paint);
            // 
            // notePanel_DataSynchReceiDesk
            // 
            this.notePanel_DataSynchReceiDesk.BackColor = System.Drawing.Color.LightGoldenrodYellow;
            this.notePanel_DataSynchReceiDesk.Dock = System.Windows.Forms.DockStyle.Top;
            this.notePanel_DataSynchReceiDesk.ForeColor = System.Drawing.Color.Gray;
            this.notePanel_DataSynchReceiDesk.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_DataSynchReceiDesk.Location = new System.Drawing.Point(2, 22);
            this.notePanel_DataSynchReceiDesk.MaxRows = 5;
            this.notePanel_DataSynchReceiDesk.Name = "notePanel_DataSynchReceiDesk";
            this.notePanel_DataSynchReceiDesk.ParentAutoHeight = true;
            this.notePanel_DataSynchReceiDesk.Size = new System.Drawing.Size(164, 23);
            this.notePanel_DataSynchReceiDesk.TabIndex = 24;
            this.notePanel_DataSynchReceiDesk.TabStop = false;
            this.notePanel_DataSynchReceiDesk.Text = "您要完成什么?";
            // 
            // simpleButton_Date
            // 
            this.simpleButton_Date.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.simpleButton_Date.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.simpleButton_Date.Appearance.ForeColor = System.Drawing.Color.DarkMagenta;
            this.simpleButton_Date.Appearance.Options.UseFont = true;
            this.simpleButton_Date.Appearance.Options.UseForeColor = true;
            this.simpleButton_Date.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton_Date.Image")));
            this.simpleButton_Date.Location = new System.Drawing.Point(10, 182);
            this.simpleButton_Date.Name = "simpleButton_Date";
            this.simpleButton_Date.Size = new System.Drawing.Size(148, 26);
            this.simpleButton_Date.TabIndex = 8;
            this.simpleButton_Date.Tag = 4;
            this.simpleButton_Date.Text = "时间同步";
            this.simpleButton_Date.Click += new System.EventHandler(this.simpleButton_Date_Click);
            // 
            // simpleButton_GetMobile
            // 
            this.simpleButton_GetMobile.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.simpleButton_GetMobile.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.simpleButton_GetMobile.Appearance.ForeColor = System.Drawing.Color.DarkMagenta;
            this.simpleButton_GetMobile.Appearance.Options.UseFont = true;
            this.simpleButton_GetMobile.Appearance.Options.UseForeColor = true;
            this.simpleButton_GetMobile.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton_GetMobile.Image")));
            this.simpleButton_GetMobile.Location = new System.Drawing.Point(10, 56);
            this.simpleButton_GetMobile.Name = "simpleButton_GetMobile";
            this.simpleButton_GetMobile.Size = new System.Drawing.Size(148, 26);
            this.simpleButton_GetMobile.TabIndex = 12;
            this.simpleButton_GetMobile.Tag = 4;
            this.simpleButton_GetMobile.Text = "查询/选择车载机";
            this.simpleButton_GetMobile.Click += new System.EventHandler(this.simpleButton_GetMobile_Click);
            // 
            // simpleButton_FastDataReceive
            // 
            this.simpleButton_FastDataReceive.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.simpleButton_FastDataReceive.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.simpleButton_FastDataReceive.Appearance.ForeColor = System.Drawing.Color.DarkMagenta;
            this.simpleButton_FastDataReceive.Appearance.Options.UseFont = true;
            this.simpleButton_FastDataReceive.Appearance.Options.UseForeColor = true;
            this.simpleButton_FastDataReceive.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton_FastDataReceive.Image")));
            this.simpleButton_FastDataReceive.Location = new System.Drawing.Point(10, 98);
            this.simpleButton_FastDataReceive.Name = "simpleButton_FastDataReceive";
            this.simpleButton_FastDataReceive.Size = new System.Drawing.Size(148, 26);
            this.simpleButton_FastDataReceive.TabIndex = 10;
            this.simpleButton_FastDataReceive.Tag = 4;
            this.simpleButton_FastDataReceive.Text = "快速数据接收";
            this.simpleButton_FastDataReceive.Click += new System.EventHandler(this.simpleButton_FastDataReceive_Click);
            // 
            // simpleButton_StopDataReceive
            // 
            this.simpleButton_StopDataReceive.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.simpleButton_StopDataReceive.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.simpleButton_StopDataReceive.Appearance.ForeColor = System.Drawing.Color.DarkMagenta;
            this.simpleButton_StopDataReceive.Appearance.Options.UseFont = true;
            this.simpleButton_StopDataReceive.Appearance.Options.UseForeColor = true;
            this.simpleButton_StopDataReceive.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton_StopDataReceive.Image")));
            this.simpleButton_StopDataReceive.Location = new System.Drawing.Point(10, 140);
            this.simpleButton_StopDataReceive.Name = "simpleButton_StopDataReceive";
            this.simpleButton_StopDataReceive.Size = new System.Drawing.Size(148, 26);
            this.simpleButton_StopDataReceive.TabIndex = 11;
            this.simpleButton_StopDataReceive.Tag = 4;
            this.simpleButton_StopDataReceive.Text = "停止数据接收";
            this.simpleButton_StopDataReceive.Click += new System.EventHandler(this.simpleButton_StopDataReceive_Click);
            // 
            // Timer_SendCardOverTime
            // 
            this.Timer_SendCardOverTime.SynchronizingObject = this;
            this.Timer_SendCardOverTime.Elapsed += new System.Timers.ElapsedEventHandler(this.Timer_SendCardOverTime_Elapsed);
            // 
            // Timer_ValidateCardOverTime
            // 
            this.Timer_ValidateCardOverTime.SynchronizingObject = this;
            this.Timer_ValidateCardOverTime.Elapsed += new System.Timers.ElapsedEventHandler(this.Timer_ValidateCardOverTime_Elapsed);
            // 
            // Timer_LeaveTime
            // 
            this.Timer_LeaveTime.SynchronizingObject = this;
            this.Timer_LeaveTime.Elapsed += new System.Timers.ElapsedEventHandler(this.Timer_LeaveTime_Elapsed);
            // 
            // timer_SychnDate
            // 
            this.timer_SychnDate.SynchronizingObject = this;
            this.timer_SychnDate.Elapsed += new System.Timers.ElapsedEventHandler(this.timer_SychnDate_Elapsed);
            // 
            // CardManagement
            // 
            this.Controls.Add(this.xtraTabControl_CardMgmt);
            this.helpProvider_Help.SetHelpKeyword(this, "");
            this.Name = "CardManagement";
            this.helpProvider_Help.SetShowHelp(this, false);
            this.Size = new System.Drawing.Size(772, 540);
            this.Load += new System.EventHandler(this.CardManagement_Load);
            ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl_CardMgmt)).EndInit();
            this.xtraTabControl_CardMgmt.ResumeLayout(false);
            this.xtraTabPage_CardSent.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl1)).EndInit();
            this.splitContainerControl1.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.groupControl_Send_CardInfo)).EndInit();
            this.groupControl_Send_CardInfo.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.gridControl_Send_CardInfo)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.groupControl_Send_TeaCardMgmt)).EndInit();
            this.groupControl_Send_TeaCardMgmt.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_Send_TeaGrade.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_Send_TeaName.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_Send_TeaNumber.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_Send_TeaClass.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.groupControl_Send_StuCardMgmt)).EndInit();
            this.groupControl_Send_StuCardMgmt.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_Send_StuName.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_Send_StuClass.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_Send_StuGrade.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_Send_StuNumber.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.panelControl4)).EndInit();
            this.panelControl4.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.groupControl_Send_MyCardRec)).EndInit();
            this.groupControl_Send_MyCardRec.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
            this.groupControl1.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.SendCard1Date.Properties.VistaTimeProperties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.SendCard1Date.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.SendCard4Holder.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.SendCard1Holder.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.SendCard1Number.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.SendCard4Number.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.SendCard4Date.Properties.VistaTimeProperties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.SendCard4Date.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.removeCard5.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.SendCard5Date.Properties.VistaTimeProperties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.SendCard5Date.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.SendCard5Number.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.SendCard5Holder.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.SendCard2Date.Properties.VistaTimeProperties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.SendCard2Date.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.SendCard2Number.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.removeCard1.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.removeCard3.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.SendCard2Holder.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.removeCard2.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.removeCard4.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.SendCard3Date.Properties.VistaTimeProperties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.SendCard3Date.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.SendCard3Number.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.SendCard3Holder.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.combo_SendCardGrade.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_SendCardStuNumber.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_SendCardStuName.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.combo_SendCardClass.Properties)).EndInit();
            this.xtraTabPage_BatchSend.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.groupControl_BatchSendView)).EndInit();
            this.groupControl_BatchSendView.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.gridControl_BatchSendView)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridView3)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
            this.panelControl1.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).EndInit();
            this.groupControl2.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.textEdit3.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.groupControl_BatchSendSerCond)).EndInit();
            this.groupControl_BatchSendSerCond.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.groupControl_BatchSendButtonGroup)).EndInit();
            this.groupControl_BatchSendButtonGroup.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_BatchSendGrade.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_BatchSendClass.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit3.Properties)).EndInit();
            this.xtraTabPage_CardLogout.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl2)).EndInit();
            this.splitContainerControl2.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.groupControl_Logout_TeaCardMgmt)).EndInit();
            this.groupControl_Logout_TeaCardMgmt.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.textEdit1.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit1.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit2.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit2.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.groupControl_Logout_StuCardMgmt)).EndInit();
            this.groupControl_Logout_StuCardMgmt.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_Logout_StuName.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_Logout_StuClass.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_Logout_StuGrade.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_Logout_StuNumber.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.panelControl3)).EndInit();
            this.panelControl3.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.groupControl_Logout_MyCardRec)).EndInit();
            this.groupControl_Logout_MyCardRec.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.gridControl_Logout_CardInfo)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridView2)).EndInit();
            this.xtraTabPage_IDQuery.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl3)).EndInit();
            this.splitContainerControl3.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.groupControl_IDQueryFastSer)).EndInit();
            this.groupControl_IDQueryFastSer.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.groupControl_IDQueryTeaNumberAndName)).EndInit();
            this.groupControl_IDQueryTeaNumberAndName.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_IDQueryTeaName.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_IDQueryTeaNumber.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.panelControl_TeaField)).EndInit();
            this.panelControl_TeaField.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.panelControl_StuField)).EndInit();
            this.panelControl_StuField.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.groupControl_IDQueryTimeAndCardNumber)).EndInit();
            this.groupControl_IDQueryTimeAndCardNumber.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_IDQueryCardNumber.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.dateEdit_IDQueryEndTime.Properties.VistaTimeProperties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.dateEdit_IDQueryEndTime.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.dateEdit_IDQueryBegTime.Properties.VistaTimeProperties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.dateEdit_IDQueryBegTime.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.groupControl_IDQueryNumberAndName)).EndInit();
            this.groupControl_IDQueryNumberAndName.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_IDQueryStuName.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_IDQueryStuNumber.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.groupControl_IDQueryGradeAndClass)).EndInit();
            this.groupControl_IDQueryGradeAndClass.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_IDQueryStuClass.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_IDQueryStuGrade.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridControl_IDQueryView)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridView4)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).EndInit();
            this.panelControl2.ResumeLayout(false);
            this.xtraTabPage_DataSynchAndReceive.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.groupControl_DeviceView)).EndInit();
            this.groupControl_DeviceView.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.gridControl_DeviceView)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridView5)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.groupControl_DataSynchReceiDesk)).EndInit();
            this.groupControl_DataSynchReceiDesk.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.Timer_SendCardOverTime)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.Timer_ValidateCardOverTime)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.Timer_LeaveTime)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.timer_SychnDate)).EndInit();
            this.ResumeLayout(false);

		}
示例#21
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     this.monthEdit1 = new DevExpress.XtraScheduler.UI.MonthEdit();
     this.schedulerStorage1 = new DevExpress.XtraScheduler.SchedulerStorage(this.components);
     this.gridCalendar = new DevExpress.XtraGrid.GridControl();
     this.gridViewCalendar = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn3 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.chk_Select = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.gridColumn4 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.lblMonth = new System.Windows.Forms.Label();
     this.btn_Save = new DevExpress.XtraEditors.SimpleButton();
     this.lblDay = new System.Windows.Forms.Label();
     this.cmbDay = new DevExpress.XtraEditors.ComboBoxEdit();
     ((System.ComponentModel.ISupportInitialize)(this.monthEdit1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.schedulerStorage1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridCalendar)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewCalendar)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_Select)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbDay.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // monthEdit1
     //
     this.monthEdit1.Location = new System.Drawing.Point(80, 48);
     this.monthEdit1.Name = "monthEdit1";
     //
     // monthEdit1.Properties
     //
     this.monthEdit1.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                                        new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.monthEdit1.TabIndex = 0;
     //
     // gridCalendar
     //
     this.gridCalendar.Anchor = System.Windows.Forms.AnchorStyles.Left;
     //
     // gridCalendar.EmbeddedNavigator
     //
     this.gridCalendar.EmbeddedNavigator.Name = "";
     this.gridCalendar.Location = new System.Drawing.Point(0, 88);
     this.gridCalendar.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.gridCalendar.LookAndFeel.UseDefaultLookAndFeel = false;
     this.gridCalendar.MainView = this.gridViewCalendar;
     this.gridCalendar.Name = "gridCalendar";
     this.gridCalendar.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
                                                                                                           this.chk_Select});
     this.gridCalendar.Size = new System.Drawing.Size(496, 176);
     this.gridCalendar.TabIndex = 180;
     this.gridCalendar.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
                                                                                                 this.gridViewCalendar});
     //
     // gridViewCalendar
     //
     this.gridViewCalendar.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
                                                                                             this.gridColumn2,
                                                                                             this.gridColumn3,
                                                                                             this.gridColumn4});
     this.gridViewCalendar.GridControl = this.gridCalendar;
     this.gridViewCalendar.Name = "gridViewCalendar";
     this.gridViewCalendar.OptionsBehavior.Editable = false;
     this.gridViewCalendar.OptionsCustomization.AllowFilter = false;
     this.gridViewCalendar.OptionsCustomization.AllowSort = false;
     this.gridViewCalendar.OptionsView.ShowGroupPanel = false;
     //
     // gridColumn2
     //
     this.gridColumn2.Caption = "Date";
     this.gridColumn2.DisplayFormat.FormatString = "dd/MM/yyyy";
     this.gridColumn2.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.gridColumn2.FieldName = "dtDate";
     this.gridColumn2.Name = "gridColumn2";
     this.gridColumn2.Visible = true;
     this.gridColumn2.VisibleIndex = 0;
     this.gridColumn2.Width = 147;
     //
     // gridColumn3
     //
     this.gridColumn3.Caption = "Select";
     this.gridColumn3.ColumnEdit = this.chk_Select;
     this.gridColumn3.DisplayFormat.FormatString = "hh:mm tt";
     this.gridColumn3.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Custom;
     this.gridColumn3.FieldName = "chkSelect";
     this.gridColumn3.Name = "gridColumn3";
     this.gridColumn3.Visible = true;
     this.gridColumn3.VisibleIndex = 1;
     this.gridColumn3.Width = 59;
     //
     // chk_Select
     //
     this.chk_Select.AutoHeight = false;
     this.chk_Select.Name = "chk_Select";
     //
     // gridColumn4
     //
     this.gridColumn4.Caption = "Remarks";
     this.gridColumn4.FieldName = "strRemarks";
     this.gridColumn4.Name = "gridColumn4";
     this.gridColumn4.Visible = true;
     this.gridColumn4.VisibleIndex = 2;
     this.gridColumn4.Width = 276;
     //
     // lblMonth
     //
     this.lblMonth.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.lblMonth.Location = new System.Drawing.Point(0, 48);
     this.lblMonth.Name = "lblMonth";
     this.lblMonth.Size = new System.Drawing.Size(80, 23);
     this.lblMonth.TabIndex = 181;
     this.lblMonth.Text = "Month";
     //
     // btn_Save
     //
     this.btn_Save.Location = new System.Drawing.Point(392, 280);
     this.btn_Save.Name = "btn_Save";
     this.btn_Save.TabIndex = 182;
     this.btn_Save.Text = "Save";
     //
     // lblDay
     //
     this.lblDay.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.lblDay.Location = new System.Drawing.Point(0, 16);
     this.lblDay.Name = "lblDay";
     this.lblDay.Size = new System.Drawing.Size(56, 23);
     this.lblDay.TabIndex = 184;
     this.lblDay.Text = "Day";
     //
     // cmbDay
     //
     this.cmbDay.EditValue = "";
     this.cmbDay.Location = new System.Drawing.Point(80, 16);
     this.cmbDay.Name = "cmbDay";
     //
     // cmbDay.Properties
     //
     this.cmbDay.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                                    new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cmbDay.Properties.Items.AddRange(new object[] {
                                                            "Monday",
                                                            "Tuesday",
                                                            "Wednesday",
                                                            "Thursday",
                                                            "Friday",
                                                            "Saturday",
                                                            "Sunday"});
     this.cmbDay.TabIndex = 185;
     //
     // Attendance
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 14);
     this.ClientSize = new System.Drawing.Size(576, 350);
     this.Controls.Add(this.cmbDay);
     this.Controls.Add(this.lblDay);
     this.Controls.Add(this.btn_Save);
     this.Controls.Add(this.lblMonth);
     this.Controls.Add(this.gridCalendar);
     this.Controls.Add(this.monthEdit1);
     this.Name = "Attendance";
     this.Text = "Attendance Calendar";
     this.Load += new System.EventHandler(this.Attendance_Load);
     ((System.ComponentModel.ISupportInitialize)(this.monthEdit1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.schedulerStorage1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridCalendar)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewCalendar)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_Select)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbDay.Properties)).EndInit();
     this.ResumeLayout(false);
 }
示例#22
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.label6 = new System.Windows.Forms.Label();
     this.btnClose = new DevExpress.XtraEditors.SimpleButton();
     this.label1 = new System.Windows.Forms.Label();
     this.btnSave = new DevExpress.XtraEditors.SimpleButton();
     this.label4 = new System.Windows.Forms.Label();
     this.CreditCard = new System.Windows.Forms.Label();
     this.dRewardsPoints = new DevExpress.XtraEditors.TextEdit();
     this.label2 = new System.Windows.Forms.Label();
     this.dtValidStart = new DevExpress.XtraEditors.DateEdit();
     this.dtValidEnd = new DevExpress.XtraEditors.DateEdit();
     this.cmb_Type = new DevExpress.XtraEditors.ComboBoxEdit();
     this.luedtItem = new DevExpress.XtraEditors.LookUpEdit();
     this.rewardDesc = new DevExpress.XtraEditors.TextEdit();
     this.label3 = new System.Windows.Forms.Label();
     ((System.ComponentModel.ISupportInitialize)(this.dRewardsPoints.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtValidStart.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtValidEnd.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmb_Type.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.luedtItem.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.rewardDesc.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // label6
     //
     this.label6.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label6.Location = new System.Drawing.Point(24, 96);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(112, 23);
     this.label6.TabIndex = 189;
     this.label6.Text = "Points";
     //
     // btnClose
     //
     this.btnClose.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnClose.Location = new System.Drawing.Point(216, 184);
     this.btnClose.Name = "btnClose";
     this.btnClose.Size = new System.Drawing.Size(72, 20);
     this.btnClose.TabIndex = 188;
     this.btnClose.Text = "Close";
     this.btnClose.Click += new System.EventHandler(this.btnClose_Click);
     //
     // label1
     //
     this.label1.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label1.Location = new System.Drawing.Point(24, 48);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(120, 23);
     this.label1.TabIndex = 187;
     this.label1.Text = "Item Code";
     //
     // btnSave
     //
     this.btnSave.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnSave.Location = new System.Drawing.Point(96, 184);
     this.btnSave.Name = "btnSave";
     this.btnSave.Size = new System.Drawing.Size(72, 20);
     this.btnSave.TabIndex = 186;
     this.btnSave.Text = "Save";
     this.btnSave.Click += new System.EventHandler(this.btnSave_Click);
     //
     // label4
     //
     this.label4.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label4.Location = new System.Drawing.Point(24, 120);
     this.label4.Name = "label4";
     this.label4.TabIndex = 185;
     this.label4.Text = "Start Date";
     //
     // CreditCard
     //
     this.CreditCard.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.CreditCard.Location = new System.Drawing.Point(24, 144);
     this.CreditCard.Name = "CreditCard";
     this.CreditCard.Size = new System.Drawing.Size(112, 23);
     this.CreditCard.TabIndex = 184;
     this.CreditCard.Text = "Till";
     //
     // dRewardsPoints
     //
     this.dRewardsPoints.EditValue = "0";
     this.dRewardsPoints.Location = new System.Drawing.Point(168, 96);
     this.dRewardsPoints.Name = "dRewardsPoints";
     this.dRewardsPoints.Size = new System.Drawing.Size(240, 20);
     this.dRewardsPoints.TabIndex = 193;
     //
     // label2
     //
     this.label2.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label2.Location = new System.Drawing.Point(24, 24);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(120, 23);
     this.label2.TabIndex = 194;
     this.label2.Text = "Item Type";
     //
     // dtValidStart
     //
     this.dtValidStart.EditValue = null;
     this.dtValidStart.Location = new System.Drawing.Point(168, 120);
     this.dtValidStart.Name = "dtValidStart";
     //
     // dtValidStart.Properties
     //
     this.dtValidStart.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                                          new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.dtValidStart.Size = new System.Drawing.Size(240, 20);
     this.dtValidStart.TabIndex = 196;
     //
     // dtValidEnd
     //
     this.dtValidEnd.EditValue = null;
     this.dtValidEnd.Location = new System.Drawing.Point(168, 144);
     this.dtValidEnd.Name = "dtValidEnd";
     //
     // dtValidEnd.Properties
     //
     this.dtValidEnd.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                                        new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.dtValidEnd.Size = new System.Drawing.Size(240, 20);
     this.dtValidEnd.TabIndex = 197;
     //
     // cmb_Type
     //
     this.cmb_Type.EditValue = "";
     this.cmb_Type.Location = new System.Drawing.Point(168, 24);
     this.cmb_Type.Name = "cmb_Type";
     //
     // cmb_Type.Properties
     //
     this.cmb_Type.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                                      new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cmb_Type.Size = new System.Drawing.Size(240, 20);
     this.cmb_Type.TabIndex = 198;
     this.cmb_Type.SelectedIndexChanged += new System.EventHandler(this.load_cmbType);
     //
     // luedtItem
     //
     this.luedtItem.Location = new System.Drawing.Point(168, 48);
     this.luedtItem.Name = "luedtItem";
     //
     // luedtItem.Properties
     //
     this.luedtItem.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                                       new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.luedtItem.Properties.NullText = "";
     this.luedtItem.Size = new System.Drawing.Size(240, 20);
     this.luedtItem.TabIndex = 199;
     //
     // rewardDesc
     //
     this.rewardDesc.EditValue = "";
     this.rewardDesc.Location = new System.Drawing.Point(168, 72);
     this.rewardDesc.Name = "rewardDesc";
     this.rewardDesc.Size = new System.Drawing.Size(240, 20);
     this.rewardDesc.TabIndex = 200;
     //
     // label3
     //
     this.label3.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label3.Location = new System.Drawing.Point(24, 72);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(120, 23);
     this.label3.TabIndex = 201;
     this.label3.Text = "Description";
     //
     // frmReward_Add
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 14);
     this.ClientSize = new System.Drawing.Size(432, 222);
     this.Controls.Add(this.label3);
     this.Controls.Add(this.rewardDesc);
     this.Controls.Add(this.luedtItem);
     this.Controls.Add(this.cmb_Type);
     this.Controls.Add(this.dtValidEnd);
     this.Controls.Add(this.dtValidStart);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.dRewardsPoints);
     this.Controls.Add(this.label6);
     this.Controls.Add(this.btnClose);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.btnSave);
     this.Controls.Add(this.label4);
     this.Controls.Add(this.CreditCard);
     this.Name = "frmReward_Add";
     this.Text = "Reward Catalogue New";
     this.Load += new System.EventHandler(this.frmReward_Add_Load);
     ((System.ComponentModel.ISupportInitialize)(this.dRewardsPoints.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtValidStart.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtValidEnd.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmb_Type.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.luedtItem.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.rewardDesc.Properties)).EndInit();
     this.ResumeLayout(false);
 }
示例#23
0
		/// <summary>
		/// Required method for Designer support - do not modify
		/// the contents of this method with the code editor.
		/// </summary>
		private void InitializeComponent()
		{
			this.groupControl1 = new DevExpress.XtraEditors.GroupControl();
			this.textEdit_Send_StuName = new DevExpress.XtraEditors.TextEdit();
			this.comboBoxEdit_Send_StuClass = new DevExpress.XtraEditors.ComboBoxEdit();
			this.comboBoxEdit_Send_StuGrade = new DevExpress.XtraEditors.ComboBoxEdit();
			this.textEdit_Send_StuNumber = new DevExpress.XtraEditors.TextEdit();
			this.notePanel_Send_StuNumber = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_Send_StuClass = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_Send_StuGrade = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_Send_StuName = new DevExpress.Utils.Frames.NotePanel();
			this.groupControl2 = new DevExpress.XtraEditors.GroupControl();
			this.simpleButton_EditPhoneNum = new DevExpress.XtraEditors.SimpleButton();
			this.gridControl2 = new DevExpress.XtraGrid.GridControl();
			this.gridView2 = new DevExpress.XtraGrid.Views.Grid.GridView();
			this.gridColumn1 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn2 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn3 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn4 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn5 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn6 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.simpleButton1 = new DevExpress.XtraEditors.SimpleButton();
			((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
			this.groupControl1.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_Send_StuName.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_Send_StuClass.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_Send_StuGrade.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_Send_StuNumber.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl2)).BeginInit();
			this.groupControl2.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.gridControl2)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.gridView2)).BeginInit();
			this.SuspendLayout();
			// 
			// groupControl1
			// 
			this.groupControl1.Appearance.BackColor = System.Drawing.Color.WhiteSmoke;
			this.groupControl1.Appearance.Options.UseBackColor = true;
			this.groupControl1.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
			this.groupControl1.AppearanceCaption.ForeColor = System.Drawing.Color.DarkOrange;
			this.groupControl1.AppearanceCaption.Options.UseFont = true;
			this.groupControl1.AppearanceCaption.Options.UseForeColor = true;
			this.groupControl1.Controls.Add(this.textEdit_Send_StuName);
			this.groupControl1.Controls.Add(this.comboBoxEdit_Send_StuClass);
			this.groupControl1.Controls.Add(this.comboBoxEdit_Send_StuGrade);
			this.groupControl1.Controls.Add(this.textEdit_Send_StuNumber);
			this.groupControl1.Controls.Add(this.notePanel_Send_StuNumber);
			this.groupControl1.Controls.Add(this.notePanel_Send_StuClass);
			this.groupControl1.Controls.Add(this.notePanel_Send_StuGrade);
			this.groupControl1.Controls.Add(this.notePanel_Send_StuName);
			this.groupControl1.Dock = System.Windows.Forms.DockStyle.Top;
			this.groupControl1.Location = new System.Drawing.Point(0, 0);
			this.groupControl1.Name = "groupControl1";
			this.groupControl1.Size = new System.Drawing.Size(432, 100);
			this.groupControl1.TabIndex = 0;
			this.groupControl1.Text = "请输入检索号码条件";
			// 
			// textEdit_Send_StuName
			// 
			this.textEdit_Send_StuName.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
			this.textEdit_Send_StuName.EditValue = "";
			this.textEdit_Send_StuName.Location = new System.Drawing.Point(140, 23);
			this.textEdit_Send_StuName.Name = "textEdit_Send_StuName";
			this.textEdit_Send_StuName.Size = new System.Drawing.Size(64, 23);
			this.textEdit_Send_StuName.TabIndex = 48;
			this.textEdit_Send_StuName.EditValueChanged += new System.EventHandler(this.textEdit_Send_StuName_EditValueChanged);
			// 
			// comboBoxEdit_Send_StuClass
			// 
			this.comboBoxEdit_Send_StuClass.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
			this.comboBoxEdit_Send_StuClass.EditValue = "全部";
			this.comboBoxEdit_Send_StuClass.Location = new System.Drawing.Point(300, 55);
			this.comboBoxEdit_Send_StuClass.Name = "comboBoxEdit_Send_StuClass";
			// 
			// comboBoxEdit_Send_StuClass.Properties
			// 
			this.comboBoxEdit_Send_StuClass.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																															   new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.comboBoxEdit_Send_StuClass.Properties.Items.AddRange(new object[] {
																					   "全部"});
			this.comboBoxEdit_Send_StuClass.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
			this.comboBoxEdit_Send_StuClass.Size = new System.Drawing.Size(64, 23);
			this.comboBoxEdit_Send_StuClass.TabIndex = 47;
			this.comboBoxEdit_Send_StuClass.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit_Send_StuClass_SelectedIndexChanged);
			// 
			// comboBoxEdit_Send_StuGrade
			// 
			this.comboBoxEdit_Send_StuGrade.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
			this.comboBoxEdit_Send_StuGrade.EditValue = "全部";
			this.comboBoxEdit_Send_StuGrade.Location = new System.Drawing.Point(140, 55);
			this.comboBoxEdit_Send_StuGrade.Name = "comboBoxEdit_Send_StuGrade";
			// 
			// comboBoxEdit_Send_StuGrade.Properties
			// 
			this.comboBoxEdit_Send_StuGrade.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																															   new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.comboBoxEdit_Send_StuGrade.Properties.Items.AddRange(new object[] {
																					   "全部"});
			this.comboBoxEdit_Send_StuGrade.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
			this.comboBoxEdit_Send_StuGrade.Size = new System.Drawing.Size(64, 23);
			this.comboBoxEdit_Send_StuGrade.TabIndex = 46;
			this.comboBoxEdit_Send_StuGrade.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit_Send_StuGrade_SelectedIndexChanged);
			// 
			// textEdit_Send_StuNumber
			// 
			this.textEdit_Send_StuNumber.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
			this.textEdit_Send_StuNumber.EditValue = "";
			this.textEdit_Send_StuNumber.Location = new System.Drawing.Point(300, 23);
			this.textEdit_Send_StuNumber.Name = "textEdit_Send_StuNumber";
			// 
			// textEdit_Send_StuNumber.Properties
			// 
			this.textEdit_Send_StuNumber.Properties.Mask.EditMask = "d4";
			this.textEdit_Send_StuNumber.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
			this.textEdit_Send_StuNumber.Size = new System.Drawing.Size(64, 23);
			this.textEdit_Send_StuNumber.TabIndex = 45;
			this.textEdit_Send_StuNumber.EditValueChanged += new System.EventHandler(this.textEdit_Send_StuNumber_EditValueChanged);
			// 
			// notePanel_Send_StuNumber
			// 
			this.notePanel_Send_StuNumber.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
			this.notePanel_Send_StuNumber.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_Send_StuNumber.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_Send_StuNumber.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_Send_StuNumber.ForeColor = System.Drawing.Color.Black;
			this.notePanel_Send_StuNumber.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_Send_StuNumber.Location = new System.Drawing.Point(228, 23);
			this.notePanel_Send_StuNumber.MaxRows = 5;
			this.notePanel_Send_StuNumber.Name = "notePanel_Send_StuNumber";
			this.notePanel_Send_StuNumber.ParentAutoHeight = true;
			this.notePanel_Send_StuNumber.Size = new System.Drawing.Size(64, 22);
			this.notePanel_Send_StuNumber.TabIndex = 44;
			this.notePanel_Send_StuNumber.TabStop = false;
			this.notePanel_Send_StuNumber.Text = "学  号:";
			// 
			// notePanel_Send_StuClass
			// 
			this.notePanel_Send_StuClass.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
			this.notePanel_Send_StuClass.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_Send_StuClass.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_Send_StuClass.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_Send_StuClass.ForeColor = System.Drawing.Color.Black;
			this.notePanel_Send_StuClass.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_Send_StuClass.Location = new System.Drawing.Point(228, 55);
			this.notePanel_Send_StuClass.MaxRows = 5;
			this.notePanel_Send_StuClass.Name = "notePanel_Send_StuClass";
			this.notePanel_Send_StuClass.ParentAutoHeight = true;
			this.notePanel_Send_StuClass.Size = new System.Drawing.Size(64, 22);
			this.notePanel_Send_StuClass.TabIndex = 43;
			this.notePanel_Send_StuClass.TabStop = false;
			this.notePanel_Send_StuClass.Text = "班  级:";
			// 
			// notePanel_Send_StuGrade
			// 
			this.notePanel_Send_StuGrade.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
			this.notePanel_Send_StuGrade.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_Send_StuGrade.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_Send_StuGrade.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_Send_StuGrade.ForeColor = System.Drawing.Color.Black;
			this.notePanel_Send_StuGrade.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_Send_StuGrade.Location = new System.Drawing.Point(68, 55);
			this.notePanel_Send_StuGrade.MaxRows = 5;
			this.notePanel_Send_StuGrade.Name = "notePanel_Send_StuGrade";
			this.notePanel_Send_StuGrade.ParentAutoHeight = true;
			this.notePanel_Send_StuGrade.Size = new System.Drawing.Size(64, 22);
			this.notePanel_Send_StuGrade.TabIndex = 42;
			this.notePanel_Send_StuGrade.TabStop = false;
			this.notePanel_Send_StuGrade.Text = "年  级:";
			// 
			// notePanel_Send_StuName
			// 
			this.notePanel_Send_StuName.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
			this.notePanel_Send_StuName.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_Send_StuName.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_Send_StuName.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_Send_StuName.ForeColor = System.Drawing.Color.Black;
			this.notePanel_Send_StuName.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_Send_StuName.Location = new System.Drawing.Point(68, 23);
			this.notePanel_Send_StuName.MaxRows = 5;
			this.notePanel_Send_StuName.Name = "notePanel_Send_StuName";
			this.notePanel_Send_StuName.ParentAutoHeight = true;
			this.notePanel_Send_StuName.Size = new System.Drawing.Size(64, 22);
			this.notePanel_Send_StuName.TabIndex = 41;
			this.notePanel_Send_StuName.TabStop = false;
			this.notePanel_Send_StuName.Text = "姓  名:";
			// 
			// groupControl2
			// 
			this.groupControl2.Appearance.BackColor = System.Drawing.Color.WhiteSmoke;
			this.groupControl2.Appearance.Options.UseBackColor = true;
			this.groupControl2.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
			this.groupControl2.AppearanceCaption.ForeColor = System.Drawing.Color.DarkOrange;
			this.groupControl2.AppearanceCaption.Options.UseFont = true;
			this.groupControl2.AppearanceCaption.Options.UseForeColor = true;
			this.groupControl2.Controls.Add(this.simpleButton_EditPhoneNum);
			this.groupControl2.Controls.Add(this.gridControl2);
			this.groupControl2.Controls.Add(this.simpleButton1);
			this.groupControl2.Dock = System.Windows.Forms.DockStyle.Fill;
			this.groupControl2.Location = new System.Drawing.Point(0, 100);
			this.groupControl2.Name = "groupControl2";
			this.groupControl2.Size = new System.Drawing.Size(432, 193);
			this.groupControl2.TabIndex = 1;
			this.groupControl2.Text = "选择要发送的号码";
			// 
			// simpleButton_EditPhoneNum
			// 
			this.simpleButton_EditPhoneNum.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
			this.simpleButton_EditPhoneNum.Location = new System.Drawing.Point(128, 24);
			this.simpleButton_EditPhoneNum.Name = "simpleButton_EditPhoneNum";
			this.simpleButton_EditPhoneNum.Size = new System.Drawing.Size(72, 24);
			this.simpleButton_EditPhoneNum.TabIndex = 24;
			this.simpleButton_EditPhoneNum.Text = "全选";
			this.simpleButton_EditPhoneNum.Click += new System.EventHandler(this.simpleButton_EditPhoneNum_Click);
			// 
			// gridControl2
			// 
			this.gridControl2.Dock = System.Windows.Forms.DockStyle.Bottom;
			// 
			// gridControl2.EmbeddedNavigator
			// 
			this.gridControl2.EmbeddedNavigator.Name = "";
			this.gridControl2.Location = new System.Drawing.Point(3, 54);
			this.gridControl2.MainView = this.gridView2;
			this.gridControl2.Name = "gridControl2";
			this.gridControl2.Size = new System.Drawing.Size(426, 136);
			this.gridControl2.TabIndex = 23;
			this.gridControl2.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
																										this.gridView2});
			// 
			// gridView2
			// 
			this.gridView2.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
																							 this.gridColumn1,
																							 this.gridColumn2,
																							 this.gridColumn3,
																							 this.gridColumn4,
																							 this.gridColumn5,
																							 this.gridColumn6});
			this.gridView2.GridControl = this.gridControl2;
			this.gridView2.Name = "gridView2";
			this.gridView2.OptionsBehavior.Editable = false;
			this.gridView2.OptionsCustomization.AllowFilter = false;
			this.gridView2.OptionsCustomization.AllowGroup = false;
			this.gridView2.OptionsView.ShowFilterPanel = false;
			this.gridView2.OptionsView.ShowFooter = true;
			this.gridView2.OptionsView.ShowGroupPanel = false;
			// 
			// gridColumn1
			// 
			this.gridColumn1.Caption = "学号";
			this.gridColumn1.FieldName = "info_stuNumber";
			this.gridColumn1.Name = "gridColumn1";
			this.gridColumn1.Visible = true;
			this.gridColumn1.VisibleIndex = 0;
			this.gridColumn1.Width = 43;
			// 
			// gridColumn2
			// 
			this.gridColumn2.Caption = "姓名";
			this.gridColumn2.FieldName = "info_stuName";
			this.gridColumn2.Name = "gridColumn2";
			this.gridColumn2.Visible = true;
			this.gridColumn2.VisibleIndex = 1;
			this.gridColumn2.Width = 44;
			// 
			// gridColumn3
			// 
			this.gridColumn3.Caption = "年级";
			this.gridColumn3.FieldName = "stu_grade";
			this.gridColumn3.Name = "gridColumn3";
			this.gridColumn3.Visible = true;
			this.gridColumn3.VisibleIndex = 2;
			this.gridColumn3.Width = 42;
			// 
			// gridColumn4
			// 
			this.gridColumn4.Caption = "班级";
			this.gridColumn4.FieldName = "stu_class";
			this.gridColumn4.Name = "gridColumn4";
			this.gridColumn4.Visible = true;
			this.gridColumn4.VisibleIndex = 3;
			this.gridColumn4.Width = 41;
			// 
			// gridColumn5
			// 
			this.gridColumn5.Caption = "持有手机家长姓名";
			this.gridColumn5.FieldName = "familial_name";
			this.gridColumn5.Name = "gridColumn5";
			this.gridColumn5.Visible = true;
			this.gridColumn5.VisibleIndex = 4;
			this.gridColumn5.Width = 111;
			// 
			// gridColumn6
			// 
			this.gridColumn6.Caption = "手机号码";
			this.gridColumn6.FieldName = "mobilePhone_number";
			this.gridColumn6.Name = "gridColumn6";
			this.gridColumn6.Visible = true;
			this.gridColumn6.VisibleIndex = 5;
			this.gridColumn6.Width = 128;
			// 
			// simpleButton1
			// 
			this.simpleButton1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
			this.simpleButton1.Location = new System.Drawing.Point(232, 24);
			this.simpleButton1.Name = "simpleButton1";
			this.simpleButton1.Size = new System.Drawing.Size(72, 24);
			this.simpleButton1.TabIndex = 24;
			this.simpleButton1.Text = "单选";
			this.simpleButton1.Click += new System.EventHandler(this.simpleButton1_Click);
			// 
			// SMSPhoneNumChoose
			// 
			this.Appearance.BackColor = System.Drawing.Color.WhiteSmoke;
			this.Appearance.Options.UseBackColor = true;
			this.AutoScaleBaseSize = new System.Drawing.Size(6, 15);
			this.ClientSize = new System.Drawing.Size(432, 293);
			this.Controls.Add(this.groupControl2);
			this.Controls.Add(this.groupControl1);
			this.Name = "SMSPhoneNumChoose";
			this.ShowInTaskbar = false;
			this.Text = "选择要发送短信的手机号码";
			this.Load += new System.EventHandler(this.SMSPhoneNumChoose_Load);
			((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
			this.groupControl1.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.textEdit_Send_StuName.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_Send_StuClass.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_Send_StuGrade.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_Send_StuNumber.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl2)).EndInit();
			this.groupControl2.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.gridControl2)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.gridView2)).EndInit();
			this.ResumeLayout(false);

		}
示例#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.components = new System.ComponentModel.Container();
			System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(NutritionManagement));
			this.xtraTabControl1 = new DevExpress.XtraTab.XtraTabControl();
			this.xtraTabPage1 = new DevExpress.XtraTab.XtraTabPage();
			this.splitContainerControl1 = new DevExpress.XtraEditors.SplitContainerControl();
			this.groupControl_FoodCategory = new DevExpress.XtraEditors.GroupControl();
			this.treeList_FoodStock = new DevExpress.XtraTreeList.TreeList();
			this.treeListColumn1 = new DevExpress.XtraTreeList.Columns.TreeListColumn();
			this.imageList1 = new System.Windows.Forms.ImageList(this.components);
			this.groupControl_FoodNutModify = new DevExpress.XtraEditors.GroupControl();
			this.textEdit_FoodName = new DevExpress.XtraEditors.TextEdit();
			this.notePanel7 = new DevExpress.Utils.Frames.NotePanel();
			this.memoEdit_FoodRemark = new DevExpress.XtraEditors.MemoEdit();
			this.notePanel_FoodRemark = new DevExpress.Utils.Frames.NotePanel();
			this.textEdit_Energy = new DevExpress.XtraEditors.TextEdit();
			this.textEdit_Carbohydrate = new DevExpress.XtraEditors.TextEdit();
			this.textEdit_Fat = new DevExpress.XtraEditors.TextEdit();
			this.textEdit_Protein = new DevExpress.XtraEditors.TextEdit();
			this.notePanel_Energy = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_Carbohydrate = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_Fat = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_Protein = new DevExpress.Utils.Frames.NotePanel();
			this.comboBoxEdit_FoodCategory = new DevExpress.XtraEditors.ComboBoxEdit();
			this.notePanel_FoodCategory = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_FoodName = new DevExpress.Utils.Frames.NotePanel();
			this.groupControl_FoodNutrition = new DevExpress.XtraEditors.GroupControl();
			this.gridControl_FoodNutrition = new DevExpress.XtraGrid.GridControl();
			this.gridView1 = new DevExpress.XtraGrid.Views.Grid.GridView();
			this.gridColumn1 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn2 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn3 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn4 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn5 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn6 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.panelControl1 = new DevExpress.XtraEditors.PanelControl();
			this.simpleButton_FoodModify = new DevExpress.XtraEditors.SimpleButton();
			this.simpleButton_FoodBack = new DevExpress.XtraEditors.SimpleButton();
			this.simpleButton_FoodDelete = new DevExpress.XtraEditors.SimpleButton();
			this.simpleButton_FoodSave = new DevExpress.XtraEditors.SimpleButton();
			this.simpleButton_FoodAdd = new DevExpress.XtraEditors.SimpleButton();
			this.textEdit_FoodSearch = new DevExpress.XtraEditors.TextEdit();
			this.textEdit_BindingID = new DevExpress.XtraEditors.TextEdit();
			this.xtraTabPage2 = new DevExpress.XtraTab.XtraTabPage();
			this.splitContainerControl2 = new DevExpress.XtraEditors.SplitContainerControl();
			this.panelControl10 = new DevExpress.XtraEditors.PanelControl();
			this.gridControl_Recipe_FoodNutrition = new DevExpress.XtraGrid.GridControl();
			this.gridView4 = new DevExpress.XtraGrid.Views.Grid.GridView();
			this.gridColumn7 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn8 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn9 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn10 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn11 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn16 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.toolTipController1 = new DevExpress.Utils.ToolTipController(this.components);
			this.gridView2 = new DevExpress.XtraGrid.Views.Grid.GridView();
			this.notePanel4 = new DevExpress.Utils.Frames.NotePanel();
			this.groupControl_RecipeLogin = new DevExpress.XtraEditors.GroupControl();
			this.textEdit_RecipeLogin_FoodName = new DevExpress.XtraEditors.TextEdit();
			this.textEdit_RecipeLogin_Name = new DevExpress.XtraEditors.TextEdit();
			this.notePanel_RecipeLogin_Name = new DevExpress.Utils.Frames.NotePanel();
			this.dateEdit_RecipeLogin_Date = new DevExpress.XtraEditors.DateEdit();
			this.notePanel_RecipeLogin_Date = new DevExpress.Utils.Frames.NotePanel();
			this.textEdit_RecipeLogin_FoodTake = new DevExpress.XtraEditors.TextEdit();
			this.notePanel_RecipeLogin_FoodTake = new DevExpress.Utils.Frames.NotePanel();
			this.textEdit_RecipeLogin_BindingID = new DevExpress.XtraEditors.TextEdit();
			this.notePanel_RecipeLogin_FoodName = new DevExpress.Utils.Frames.NotePanel();
			this.groupControl_RecipeSer = new DevExpress.XtraEditors.GroupControl();
			this.comboBoxEdit_RecipeSer_FoodCategory = new DevExpress.XtraEditors.ComboBoxEdit();
			this.notePanel_RecipeSer_FoodCategory = new DevExpress.Utils.Frames.NotePanel();
			this.textEdit_RecipeSer_FoodName = new DevExpress.XtraEditors.TextEdit();
			this.notePanel_RecipeSer_FoodName = new DevExpress.Utils.Frames.NotePanel();
			this.groupControl_RecipeOpr = new DevExpress.XtraEditors.GroupControl();
			this.simpleButton_RecipeModify = new DevExpress.XtraEditors.SimpleButton();
			this.simpleButton_RecipeSave = new DevExpress.XtraEditors.SimpleButton();
			this.panelControl11 = new DevExpress.XtraEditors.PanelControl();
			this.gridControl_RecipeLogin = new DevExpress.XtraGrid.GridControl();
			this.gridView13 = new DevExpress.XtraGrid.Views.Grid.GridView();
			this.gridColumn50 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn51 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn52 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn53 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.notePanel5 = new DevExpress.Utils.Frames.NotePanel();
			this.panelControl2 = new DevExpress.XtraEditors.PanelControl();
			this.textEdit_Recipe_FoodName = new DevExpress.XtraEditors.TextEdit();
			this.notePanel_Recipe_FoodName = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_Recipe = new DevExpress.Utils.Frames.NotePanel();
			this.comboBoxEdit_Recipe_RecipeCategory = new DevExpress.XtraEditors.ComboBoxEdit();
			this.notePanel_Recipe_RecipeCategory = new DevExpress.Utils.Frames.NotePanel();
			this.dateEdit_Recipe_EndDate = new DevExpress.XtraEditors.DateEdit();
			this.notePanel_Recipe_EndDate = new DevExpress.Utils.Frames.NotePanel();
			this.dateEdit_Recipe_BegDate = new DevExpress.XtraEditors.DateEdit();
			this.notePanel_Recipe_BegDate = new DevExpress.Utils.Frames.NotePanel();
			this.xtraTabPage3 = new DevExpress.XtraTab.XtraTabPage();
			this.splitContainerControl3 = new DevExpress.XtraEditors.SplitContainerControl();
			this.groupControl_MealLogin = new DevExpress.XtraEditors.GroupControl();
			this.notePanel_MealArr = new DevExpress.Utils.Frames.NotePanel();
			this.checkEdit_Snack = new DevExpress.XtraEditors.CheckEdit();
			this.checkEdit_Dinner = new DevExpress.XtraEditors.CheckEdit();
			this.checkEdit_Lunch = new DevExpress.XtraEditors.CheckEdit();
			this.checkEdit_Breakfast = new DevExpress.XtraEditors.CheckEdit();
			this.groupControl_MealAdd = new DevExpress.XtraEditors.GroupControl();
			this.textEdit_MealName = new DevExpress.XtraEditors.TextEdit();
			this.textEdit_MealRemark = new DevExpress.XtraEditors.TextEdit();
			this.notePanel_MealRemark = new DevExpress.Utils.Frames.NotePanel();
			this.textEdit_MealID = new DevExpress.XtraEditors.TextEdit();
			this.notePanel_MealName = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_MealNameAdd = new DevExpress.Utils.Frames.NotePanel();
			this.groupControl_MealArr = new DevExpress.XtraEditors.GroupControl();
			this.splitContainerControl4 = new DevExpress.XtraEditors.SplitContainerControl();
			this.notePanel_GradeArr = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_MealArr_Grade = new DevExpress.Utils.Frames.NotePanel();
			this.checkEdit_MealArr_gThree = new DevExpress.XtraEditors.CheckEdit();
			this.notePanel_MealArr_Name = new DevExpress.Utils.Frames.NotePanel();
			this.checkEdit_MealArr_gTwo = new DevExpress.XtraEditors.CheckEdit();
			this.checkEdit_MealArr_gOne = new DevExpress.XtraEditors.CheckEdit();
			this.comboBoxEdit_MealArr_Name = new DevExpress.XtraEditors.ComboBoxEdit();
			this.checkEdit_MealArr_gFour = new DevExpress.XtraEditors.CheckEdit();
			this.checkEdit_MealArr_gFive = new DevExpress.XtraEditors.CheckEdit();
			this.checkEdit_MealArr_IsUsed = new DevExpress.XtraEditors.CheckEdit();
			this.label_Lunch = new System.Windows.Forms.Label();
			this.label_Snack = new System.Windows.Forms.Label();
			this.label_Super = new System.Windows.Forms.Label();
			this.label_Breakfast = new System.Windows.Forms.Label();
			this.notePanel_MealArr_ePreview = new DevExpress.Utils.Frames.NotePanel();
			this.groupControl_MealPreview = new DevExpress.XtraEditors.GroupControl();
			this.gridControl_MealPreview = new DevExpress.XtraGrid.GridControl();
			this.gridView5 = new DevExpress.XtraGrid.Views.Grid.GridView();
			this.gridColumn17 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn18 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn19 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn20 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.notePanel3 = new DevExpress.Utils.Frames.NotePanel();
			this.panelControl3 = new DevExpress.XtraEditors.PanelControl();
			this.simpleButton_MealBack = new DevExpress.XtraEditors.SimpleButton();
			this.simpleButton_MealAppend = new DevExpress.XtraEditors.SimpleButton();
			this.simpleButton_MealDelete = new DevExpress.XtraEditors.SimpleButton();
			this.simpleButton_MealSave = new DevExpress.XtraEditors.SimpleButton();
			this.simpleButton_MealAdd = new DevExpress.XtraEditors.SimpleButton();
			this.xtraTabPage4 = new DevExpress.XtraTab.XtraTabPage();
			this.splitContainerControl5 = new DevExpress.XtraEditors.SplitContainerControl();
			this.groupControl_Meal_Search = new DevExpress.XtraEditors.GroupControl();
			this.dateEdit_Meal_EndDate = new DevExpress.XtraEditors.DateEdit();
			this.notePanel_Meal_EndDate = new DevExpress.Utils.Frames.NotePanel();
			this.dateEdit_Meal_BegDate = new DevExpress.XtraEditors.DateEdit();
			this.notePanel_Meal_BegDate = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_Meal_Search = new DevExpress.Utils.Frames.NotePanel();
			this.groupControl_Meal_ReportPreview = new DevExpress.XtraEditors.GroupControl();
			this.panelControl4 = new DevExpress.XtraEditors.PanelControl();
			this.simpleButton_Meal_PrintReport = new DevExpress.XtraEditors.SimpleButton();
			this.simpleButton_Meal_PreviewReport = new DevExpress.XtraEditors.SimpleButton();
			this.xtraTabPage5 = new DevExpress.XtraTab.XtraTabPage();
			this.splitContainerControl6 = new DevExpress.XtraEditors.SplitContainerControl();
			this.gridControl_HInputStu = new DevExpress.XtraGrid.GridControl();
			this.gridView6 = new DevExpress.XtraGrid.Views.Grid.GridView();
			this.gridColumn21 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn22 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn23 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.groupControl_HInputSer = new DevExpress.XtraEditors.GroupControl();
			this.comboBoxEdit_HInputGender = new DevExpress.XtraEditors.ComboBoxEdit();
			this.notePanel_HInputGender = new DevExpress.Utils.Frames.NotePanel();
			this.dataNavigator_HInputNav = new DevExpress.XtraEditors.DataNavigator();
			this.textEdit_HInputNumber = new DevExpress.XtraEditors.TextEdit();
			this.textEdit_HInputName = new DevExpress.XtraEditors.TextEdit();
			this.comboBoxEdit_HInputClass = new DevExpress.XtraEditors.ComboBoxEdit();
			this.notePanel_HInputClass = new DevExpress.Utils.Frames.NotePanel();
			this.comboBoxEdit_HInputGrade = new DevExpress.XtraEditors.ComboBoxEdit();
			this.notePanel_HInputGrade = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_HInputSer = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_HInputNumber = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_HInputName = new DevExpress.Utils.Frames.NotePanel();
			this.groupControl_HInputDiagInfo = new DevExpress.XtraEditors.GroupControl();
			this.comboBoxEdit_HInputRegion = new DevExpress.XtraEditors.ComboBoxEdit();
			this.notePanel6 = new DevExpress.Utils.Frames.NotePanel();
			this.comboBoxEdit_HInputStd = new DevExpress.XtraEditors.ComboBoxEdit();
			this.notePanel_HInputStd = new DevExpress.Utils.Frames.NotePanel();
			this.textEdit_DiagCheckName = new DevExpress.XtraEditors.TextEdit();
			this.textEdit_DiagCheckBindingID = new DevExpress.XtraEditors.TextEdit();
			this.notePanel_DiagCheckName = new DevExpress.Utils.Frames.NotePanel();
			this.groupControl_HInputDiagResult = new DevExpress.XtraEditors.GroupControl();
			this.textEdit_DiagResultX = new DevExpress.XtraEditors.TextEdit();
			this.textEdit_DiagResultWHOPer = new DevExpress.XtraEditors.TextEdit();
			this.textEdit_DiagResultHeightWeight = new DevExpress.XtraEditors.TextEdit();
			this.textEdit_DiagResultUnderWeight = new DevExpress.XtraEditors.TextEdit();
			this.notePanel8 = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel9 = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel10 = new DevExpress.Utils.Frames.NotePanel();
			this.textEdit_DiagResultStunting = new DevExpress.XtraEditors.TextEdit();
			this.textEdit_DiagResultWasting = new DevExpress.XtraEditors.TextEdit();
			this.notePanel1 = new DevExpress.Utils.Frames.NotePanel();
			this.textEdit_DiagResultHeight = new DevExpress.XtraEditors.TextEdit();
			this.textEdit_DiagResultWeight = new DevExpress.XtraEditors.TextEdit();
			this.notePanel_DiagResultWeight = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_DiagResultNut = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_DiagResultWHO = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_DiagResultHeight = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_DiagResultAge = new DevExpress.Utils.Frames.NotePanel();
			this.textEdit_DiagResultWHO = new DevExpress.XtraEditors.TextEdit();
			this.textEdit_DiagResultNut = new DevExpress.XtraEditors.TextEdit();
			this.textEdit_DiagResultAge = new DevExpress.XtraEditors.TextEdit();
			this.memoEdit_DiagRemark = new DevExpress.XtraEditors.MemoEdit();
			this.notePanel_DiagRemark = new DevExpress.Utils.Frames.NotePanel();
			this.textEdit_DiagWeight = new DevExpress.XtraEditors.TextEdit();
			this.textEdit_DiagHeight = new DevExpress.XtraEditors.TextEdit();
			this.notePanel_HInputDaigInfo = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_DiagWeight = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_DiagHeight = new DevExpress.Utils.Frames.NotePanel();
			this.dateEdit_DiagCheckDate = new DevExpress.XtraEditors.DateEdit();
			this.notePanel_DiagCheckDate = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_HInputBirthday = new DevExpress.Utils.Frames.NotePanel();
			this.textEdit_HInputBirthday = new DevExpress.XtraEditors.TextEdit();
			this.notePanel_DiagCheckGender = new DevExpress.Utils.Frames.NotePanel();
			this.textEdit_DiagCheckGender = new DevExpress.XtraEditors.TextEdit();
			this.panelControl5 = new DevExpress.XtraEditors.PanelControl();
			this.simpleButton_HInputModify = new DevExpress.XtraEditors.SimpleButton();
			this.simpleButton_HInputDelete = new DevExpress.XtraEditors.SimpleButton();
			this.simpleButton_HInputSave = new DevExpress.XtraEditors.SimpleButton();
			this.simpleButton_HInputDiag = new DevExpress.XtraEditors.SimpleButton();
			this.xtraTabPage6 = new DevExpress.XtraTab.XtraTabPage();
			this.splitContainerControl7 = new DevExpress.XtraEditors.SplitContainerControl();
			this.groupControl_HOutputPrintType = new DevExpress.XtraEditors.GroupControl();
			this.checkEdit_HOutputPrintType4th = new DevExpress.XtraEditors.CheckEdit();
			this.checkEdit_HOutputPrintType3rd = new DevExpress.XtraEditors.CheckEdit();
			this.checkEdit_HOutputPrintType2nd = new DevExpress.XtraEditors.CheckEdit();
			this.checkEdit_HOutputPrintType1st = new DevExpress.XtraEditors.CheckEdit();
			this.groupControl_HOutputSer = new DevExpress.XtraEditors.GroupControl();
			this.comboBoxEdit_HOutputRegion = new DevExpress.XtraEditors.ComboBoxEdit();
			this.notePanel11 = new DevExpress.Utils.Frames.NotePanel();
			this.dateEdit_HOutputEndDate = new DevExpress.XtraEditors.DateEdit();
			this.dateEdit_HOutputBegDate = new DevExpress.XtraEditors.DateEdit();
			this.notePanel_HOutputEndDate = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_HOutputBegDate = new DevExpress.Utils.Frames.NotePanel();
			this.comboBoxEdit_HOutputGender = new DevExpress.XtraEditors.ComboBoxEdit();
			this.comboBoxEdit_HOutputResult = new DevExpress.XtraEditors.ComboBoxEdit();
			this.notePanel_HOutputResult = new DevExpress.Utils.Frames.NotePanel();
			this.comboBoxEdit_HOutputType = new DevExpress.XtraEditors.ComboBoxEdit();
			this.comboBoxEdit_HOutputAge = new DevExpress.XtraEditors.ComboBoxEdit();
			this.notePanel_HOutputType = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_HOutputAge = new DevExpress.Utils.Frames.NotePanel();
			this.textEdit_HOutputNumber = new DevExpress.XtraEditors.TextEdit();
			this.textEdit_HOutputName = new DevExpress.XtraEditors.TextEdit();
			this.comboBoxEdit_HOutputClass = new DevExpress.XtraEditors.ComboBoxEdit();
			this.notePanel_HOutputClass = new DevExpress.Utils.Frames.NotePanel();
			this.comboBoxEdit_HOutputGrade = new DevExpress.XtraEditors.ComboBoxEdit();
			this.notePanel_HOutputGrade = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_HOutputNumber = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_HOutputName = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_HOutputGender = new DevExpress.Utils.Frames.NotePanel();
			this.gridControl_HOutputNchsGrid = new DevExpress.XtraGrid.GridControl();
			this.advBandedGridView2 = new DevExpress.XtraGrid.Views.BandedGrid.AdvBandedGridView();
			this.gridBand5 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
			this.bandedGridColumn1 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.bandedGridColumn16 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.gridBand6 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
			this.bandedGridColumn19 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.bandedGridColumn17 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.bandedGridColumn23 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.bandedGridColumn18 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.gridBand7 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
			this.bandedGridColumn20 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.bandedGridColumn21 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.bandedGridColumn22 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.bandedGridColumn26 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.bandedGridColumn29 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.bandedGridColumn30 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.bandedGridColumn24 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.bandedGridColumn25 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.bandedGridColumn27 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.bandedGridColumn28 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.gridControl_HOutputGridShow = new DevExpress.XtraGrid.GridControl();
			this.advBandedGridView1 = new DevExpress.XtraGrid.Views.BandedGrid.AdvBandedGridView();
			this.gridBand1 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
			this.bandedGridColumn4 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.gridBand2 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
			this.bandedGridColumn2 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.bandedGridColumn5 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.bandedGridColumn6 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.bandedGridColumn3 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.gridBand3 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
			this.bandedGridColumn7 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.bandedGridColumn8 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.bandedGridColumn10 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.bandedGridColumn12 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.bandedGridColumn15 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.bandedGridColumn9 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.bandedGridColumn11 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.bandedGridColumn13 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.gridBand4 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
			this.bandedGridColumn14 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.panelControl6 = new DevExpress.XtraEditors.PanelControl();
			this.simpleButton_HOutputSearch = new DevExpress.XtraEditors.SimpleButton();
			this.simpleButton_HOutputPrint = new DevExpress.XtraEditors.SimpleButton();
			this.xtraTabPage7 = new DevExpress.XtraTab.XtraTabPage();
			this.splitContainerControl8 = new DevExpress.XtraEditors.SplitContainerControl();
			this.groupControl_WatchMorningRec = new DevExpress.XtraEditors.GroupControl();
			this.textEdit_WatchMorningTreat = new DevExpress.XtraEditors.TextEdit();
			this.notePanel_WatchMorningTreat = new DevExpress.Utils.Frames.NotePanel();
			this.textEdit_WatchMorningOState = new DevExpress.XtraEditors.TextEdit();
			this.notePanel_WatchMorningOState = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_WatchMorningMouth = new DevExpress.Utils.Frames.NotePanel();
			this.comboBoxEdit_WatchMorningHeat = new DevExpress.XtraEditors.ComboBoxEdit();
			this.comboBoxEdit_WatchMorningMouth = new DevExpress.XtraEditors.ComboBoxEdit();
			this.comboBoxEdit_WatchMorningSpirit = new DevExpress.XtraEditors.ComboBoxEdit();
			this.notePanel_WatchMorningHeat = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_WatchMorningSkin = new DevExpress.Utils.Frames.NotePanel();
			this.comboBoxEdit_WatchMorningSkin = new DevExpress.XtraEditors.ComboBoxEdit();
			this.notePanel_WatchMorningSpirit = new DevExpress.Utils.Frames.NotePanel();
			this.textEdit_WatchMorningNumber = new DevExpress.XtraEditors.TextEdit();
			this.textEdit_WatchMorningName = new DevExpress.XtraEditors.TextEdit();
			this.notePanel_WatchMorningNumber = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_WatchMorningName = new DevExpress.Utils.Frames.NotePanel();
			this.groupControl_WatchStuList = new DevExpress.XtraEditors.GroupControl();
			this.gridControl_WatchStuList = new DevExpress.XtraGrid.GridControl();
			this.gridView7 = new DevExpress.XtraGrid.Views.Grid.GridView();
			this.gridColumn24 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn25 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn26 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn27 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn28 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.notePanel_WatchStuList = new DevExpress.Utils.Frames.NotePanel();
			this.groupControl_WatchSer = new DevExpress.XtraEditors.GroupControl();
			this.textEdit_WatchName = new DevExpress.XtraEditors.TextEdit();
			this.dateEdit_WatchEndDate = new DevExpress.XtraEditors.DateEdit();
			this.dateEdit_WatchBegDate = new DevExpress.XtraEditors.DateEdit();
			this.notePanel_WatchEndDate = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_WatchBegDate = new DevExpress.Utils.Frames.NotePanel();
			this.comboBoxEdit_WatchState = new DevExpress.XtraEditors.ComboBoxEdit();
			this.notePanel_WatchState = new DevExpress.Utils.Frames.NotePanel();
			this.textEdit_WatchNumber = new DevExpress.XtraEditors.TextEdit();
			this.comboBoxEdit_WatchClass = new DevExpress.XtraEditors.ComboBoxEdit();
			this.notePanel_WatchClass = new DevExpress.Utils.Frames.NotePanel();
			this.comboBoxEdit_WatchGrade = new DevExpress.XtraEditors.ComboBoxEdit();
			this.notePanel_WatchGrade = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_WatchNumber = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_WatchName = new DevExpress.Utils.Frames.NotePanel();
			this.groupControl_WatchWholeDay = new DevExpress.XtraEditors.GroupControl();
			this.groupControl_WatchWholDayHandle = new DevExpress.XtraEditors.GroupControl();
			this.checkEdit_WatchWholeDayHeat = new DevExpress.XtraEditors.CheckEdit();
			this.checkEdit_WatchWholeDayCtrSeafood = new DevExpress.XtraEditors.CheckEdit();
			this.checkEdit_WatchWholeDayLifeAttention = new DevExpress.XtraEditors.CheckEdit();
			this.checkEdit_WatchWholeDayCtrAct = new DevExpress.XtraEditors.CheckEdit();
			this.groupControl_WatchWholeDayReg = new DevExpress.XtraEditors.GroupControl();
			this.textEdit_WatchWholeDayElse = new DevExpress.XtraEditors.TextEdit();
			this.notePanel_WatchWholeDayElse = new DevExpress.Utils.Frames.NotePanel();
			this.comboBoxEdit_WatchWholeDayCough = new DevExpress.XtraEditors.ComboBoxEdit();
			this.notePanel_WatchWholeDayCough = new DevExpress.Utils.Frames.NotePanel();
			this.comboBoxEdit_WatchWholeDaySleep = new DevExpress.XtraEditors.ComboBoxEdit();
			this.notePanel_WatchWholeDaySleep = new DevExpress.Utils.Frames.NotePanel();
			this.comboBoxEdit_WatchWholeDayStool = new DevExpress.XtraEditors.ComboBoxEdit();
			this.notePanel_WatchWholeDayStool = new DevExpress.Utils.Frames.NotePanel();
			this.comboBoxEdit_WatchWholeDayAppetite = new DevExpress.XtraEditors.ComboBoxEdit();
			this.notePanel_WatchWholeDayAppetite = new DevExpress.Utils.Frames.NotePanel();
			this.comboBoxEdit_WatchWholeDaySpirit = new DevExpress.XtraEditors.ComboBoxEdit();
			this.notePanel_WatchWholeDaySpirit = new DevExpress.Utils.Frames.NotePanel();
			this.comboBoxEdit_WatchWholeDayMovement = new DevExpress.XtraEditors.ComboBoxEdit();
			this.notePanel_WatchWholeDayMovement = new DevExpress.Utils.Frames.NotePanel();
			this.groupControl_WatchRecList = new DevExpress.XtraEditors.GroupControl();
			this.gridControl_WatchRecList = new DevExpress.XtraGrid.GridControl();
			this.gridView8 = new DevExpress.XtraGrid.Views.Grid.GridView();
			this.gridColumn29 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn30 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn31 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn32 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn33 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn34 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.notePanel_WatchRecList = new DevExpress.Utils.Frames.NotePanel();
			this.panelControl7 = new DevExpress.XtraEditors.PanelControl();
			this.simpleButton_WatchSearch = new DevExpress.XtraEditors.SimpleButton();
			this.simpleButton_WatchBack = new DevExpress.XtraEditors.SimpleButton();
			this.simpleButton_WatchDelete = new DevExpress.XtraEditors.SimpleButton();
			this.simpleButton_WatchReport = new DevExpress.XtraEditors.SimpleButton();
			this.simpleButton_WatchHandle = new DevExpress.XtraEditors.SimpleButton();
			this.xtraTabPage8 = new DevExpress.XtraTab.XtraTabPage();
			this.splitContainerControl9 = new DevExpress.XtraEditors.SplitContainerControl();
			this.groupControl_MedReg_StuList = new DevExpress.XtraEditors.GroupControl();
			this.gridControl_MedReg_StuList = new DevExpress.XtraGrid.GridControl();
			this.gridView9 = new DevExpress.XtraGrid.Views.Grid.GridView();
			this.gridColumn35 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn36 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn37 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn38 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.notePanel2 = new DevExpress.Utils.Frames.NotePanel();
			this.groupControl_MedReg_Ser = new DevExpress.XtraEditors.GroupControl();
			this.notePanel_MedReg_Ser = new DevExpress.Utils.Frames.NotePanel();
			this.textEdit_MedReg_Number = new DevExpress.XtraEditors.TextEdit();
			this.textEdit_MedReg_Name = new DevExpress.XtraEditors.TextEdit();
			this.comboBoxEdit_MedReg_Class = new DevExpress.XtraEditors.ComboBoxEdit();
			this.notePanel_MedReg_Class = new DevExpress.Utils.Frames.NotePanel();
			this.comboBoxEdit_MedReg_Grade = new DevExpress.XtraEditors.ComboBoxEdit();
			this.notePanel_MedReg_Grade = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_MedReg_Number = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_MedReg_Name = new DevExpress.Utils.Frames.NotePanel();
			this.groupControl_MedReg_MedInfo = new DevExpress.XtraEditors.GroupControl();
			this.textEdit_MedReg_MedName = new DevExpress.XtraEditors.TextEdit();
			this.textEdit_MedReg_Taketimes = new DevExpress.XtraEditors.TextEdit();
			this.textEdit_MedReg_MedTake = new DevExpress.XtraEditors.TextEdit();
			this.textEdit_MedReg_MedType = new DevExpress.XtraEditors.TextEdit();
			this.notePanel_MedReg_Taketimes = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_MedReg_MedTake = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_MedReg_MedType = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_MedReg_MedName = new DevExpress.Utils.Frames.NotePanel();
			this.groupControl_MedReg_MedCarrInfo = new DevExpress.XtraEditors.GroupControl();
			this.listBoxControl_MedReg_MedCarrInfo = new DevExpress.XtraEditors.ListBoxControl();
			this.simpleButton_MedReg_MedCarrDel = new DevExpress.XtraEditors.SimpleButton();
			this.simpleButton_MedReg_MedCarrAdd = new DevExpress.XtraEditors.SimpleButton();
			this.listBoxControl_MedReg_MedInfo = new DevExpress.XtraEditors.ListBoxControl();
			this.groupControl_MedReg_DiagInfo = new DevExpress.XtraEditors.GroupControl();
			this.textEdit_MedReg_Else = new DevExpress.XtraEditors.TextEdit();
			this.textEdit_MedReg_FacialSym = new DevExpress.XtraEditors.TextEdit();
			this.notePanel_MedReg_Else = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_MedReg_FacialSym = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_MedReg_SkinSym = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_MedReg_AbdomenSym = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_MedReg_EnteronSym = new DevExpress.Utils.Frames.NotePanel();
			this.textEdit_MedReg_SkinSym = new DevExpress.XtraEditors.TextEdit();
			this.textEdit_MedReg_AbdomenSym = new DevExpress.XtraEditors.TextEdit();
			this.textEdit_MedReg_EnteronSym = new DevExpress.XtraEditors.TextEdit();
			this.textEdit_MedReg_ThroatSym = new DevExpress.XtraEditors.TextEdit();
			this.notePanel__MedReg_ThroatSym = new DevExpress.Utils.Frames.NotePanel();
			this.textEdit_MedReg_LungSym = new DevExpress.XtraEditors.TextEdit();
			this.notePanel_MedReg_LungSym = new DevExpress.Utils.Frames.NotePanel();
			this.textEdit_MedReg_UpperSym = new DevExpress.XtraEditors.TextEdit();
			this.notePanel_MedReg_UpperSym = new DevExpress.Utils.Frames.NotePanel();
			this.comboBoxEdit_MedReg_Diag = new DevExpress.XtraEditors.ComboBoxEdit();
			this.notePanel_MedReg_Diag = new DevExpress.Utils.Frames.NotePanel();
			this.panelControl8 = new DevExpress.XtraEditors.PanelControl();
			this.simpleButton_MedReg_Ser = new DevExpress.XtraEditors.SimpleButton();
			this.simpleButton_MedReg_Modify = new DevExpress.XtraEditors.SimpleButton();
			this.simpleButton_MedReg_Reg = new DevExpress.XtraEditors.SimpleButton();
			this.simpleButton_MedReg_Save = new DevExpress.XtraEditors.SimpleButton();
			this.simpleButton_MedReg_Back = new DevExpress.XtraEditors.SimpleButton();
			this.xtraTabPage9 = new DevExpress.XtraTab.XtraTabPage();
			this.splitContainerControl10 = new DevExpress.XtraEditors.SplitContainerControl();
			this.groupControl_MedRec_AbnStuList = new DevExpress.XtraEditors.GroupControl();
			this.gridControl_MedRec_AbnStuList = new DevExpress.XtraGrid.GridControl();
			this.gridView10 = new DevExpress.XtraGrid.Views.Grid.GridView();
			this.gridColumn39 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn40 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn41 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn42 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn43 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.notePanel_MedRec_AbnStuList = new DevExpress.Utils.Frames.NotePanel();
			this.groupControl_MedRec_Ser = new DevExpress.XtraEditors.GroupControl();
			this.textEdit_MedRec_Number = new DevExpress.XtraEditors.TextEdit();
			this.textEdit_MedRec_Name = new DevExpress.XtraEditors.TextEdit();
			this.dateEdit_MedRec_EndDate = new DevExpress.XtraEditors.DateEdit();
			this.notePanel_MedRec_EndDate = new DevExpress.Utils.Frames.NotePanel();
			this.dateEdit_MedRec_BegDate = new DevExpress.XtraEditors.DateEdit();
			this.notePanel_MedRec_BegDate = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_MedRec_Ser = new DevExpress.Utils.Frames.NotePanel();
			this.textEdit_MedRec_DoseRecDiaID = new DevExpress.XtraEditors.TextEdit();
			this.textEdit_MedRec_AbnDiaID = new DevExpress.XtraEditors.TextEdit();
			this.comboBoxEdit_MedRec_Class = new DevExpress.XtraEditors.ComboBoxEdit();
			this.notePanel_MedRec_Class = new DevExpress.Utils.Frames.NotePanel();
			this.comboBoxEdit_MedRec_Grade = new DevExpress.XtraEditors.ComboBoxEdit();
			this.notePanel_MedRec_Grade = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_MedRec_Number = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_MedRec_Name = new DevExpress.Utils.Frames.NotePanel();
			this.groupControl_MedRec_DiagAndDoseAdd = new DevExpress.XtraEditors.GroupControl();
			this.groupControl_MedRec_DoseAdd = new DevExpress.XtraEditors.GroupControl();
			this.notePanel_MedRec_TakeRule = new DevExpress.Utils.Frames.NotePanel();
			this.listBoxControl_MedRec_MedCarrInfo = new DevExpress.XtraEditors.ListBoxControl();
			this.comboBoxEdit_MedRec_TakeRule = new DevExpress.XtraEditors.ComboBoxEdit();
			this.timeEdit_MedRec_TakeTime = new DevExpress.XtraEditors.TimeEdit();
			this.notePanel_MedRec_TakeDate = new DevExpress.Utils.Frames.NotePanel();
			this.textEdit_MedRec_MedTake = new DevExpress.XtraEditors.TextEdit();
			this.notePanel_MedRec_MedTake = new DevExpress.Utils.Frames.NotePanel();
			this.textEdit_MedRec_MedName = new DevExpress.XtraEditors.TextEdit();
			this.notePanel_MedRec_MedName = new DevExpress.Utils.Frames.NotePanel();
			this.groupControl_MedRec_DiagInfo = new DevExpress.XtraEditors.GroupControl();
			this.textEdit_MedRec_Diag = new DevExpress.XtraEditors.TextEdit();
			this.textEdit_MedRec_Else = new DevExpress.XtraEditors.TextEdit();
			this.textEdit_MedRec_FacialSym = new DevExpress.XtraEditors.TextEdit();
			this.notePanel_MedRec_Else = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_MedRec_FacialSym = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_MedRec_SkinSym = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_MedRec_AbdomenSym = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_MedRec_EnteronSym = new DevExpress.Utils.Frames.NotePanel();
			this.textEdit_MedRec_SkinSym = new DevExpress.XtraEditors.TextEdit();
			this.textEdit_MedRec_AbdomenSym = new DevExpress.XtraEditors.TextEdit();
			this.textEdit_MedRec_EnteronSym = new DevExpress.XtraEditors.TextEdit();
			this.textEdit_MedRec_ThroatSym = new DevExpress.XtraEditors.TextEdit();
			this.notePanel_MedRec_ThroatSym = new DevExpress.Utils.Frames.NotePanel();
			this.textEdit_MedRec_LungSym = new DevExpress.XtraEditors.TextEdit();
			this.notePanel_MedRec_LungSym = new DevExpress.Utils.Frames.NotePanel();
			this.textEdit_MedRec_UpperSym = new DevExpress.XtraEditors.TextEdit();
			this.notePanel_MedRec_UpperSym = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_MedRec_Diag = new DevExpress.Utils.Frames.NotePanel();
			this.groupControl_MedRec_DoseRec = new DevExpress.XtraEditors.GroupControl();
			this.gridControl_MedRec_DoseRec = new DevExpress.XtraGrid.GridControl();
			this.gridView11 = new DevExpress.XtraGrid.Views.Grid.GridView();
			this.gridColumn49 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn48 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn44 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn45 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn46 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn47 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridView12 = new DevExpress.XtraGrid.Views.Grid.GridView();
			this.notePanel_MedRec_DoseRec = new DevExpress.Utils.Frames.NotePanel();
			this.panelControl9 = new DevExpress.XtraEditors.PanelControl();
			this.simpleButton_AbnormalSer = new DevExpress.XtraEditors.SimpleButton();
			this.simpleButton_MedRec_Report = new DevExpress.XtraEditors.SimpleButton();
			this.simpleButton_MedRec_Add = new DevExpress.XtraEditors.SimpleButton();
			this.simpleButton_MedRec_Back = new DevExpress.XtraEditors.SimpleButton();
			this.barManager1 = new DevExpress.XtraBars.BarManager();
			this.popupMenu4 = new DevExpress.XtraBars.PopupMenu();
			this.barButtonItem_RecipeRefresh = new DevExpress.XtraBars.BarButtonItem();
			this.barButtonItem_RecipeDelete = new DevExpress.XtraBars.BarButtonItem();
			this.popupMenu1 = new DevExpress.XtraBars.PopupMenu();
			this.barButtonItem_MealRefresh = new DevExpress.XtraBars.BarButtonItem();
			this.popupMenu2 = new DevExpress.XtraBars.PopupMenu();
			this.barButtonItem_MedReg_MedAdd = new DevExpress.XtraBars.BarButtonItem();
			this.barButtonItem_MedReg_MedModify = new DevExpress.XtraBars.BarButtonItem();
			this.barButtonItem_MedReg_MedDel = new DevExpress.XtraBars.BarButtonItem();
			this.popupMenu3 = new DevExpress.XtraBars.PopupMenu();
			this.barButtonItem_MedRec_MultiSer = new DevExpress.XtraBars.BarButtonItem();
			this.barButtonItem_MedRec_MedDel = new DevExpress.XtraBars.BarButtonItem();
			this.barDockControlTop = new DevExpress.XtraBars.BarDockControl();
			this.barDockControlBottom = new DevExpress.XtraBars.BarDockControl();
			this.barDockControlLeft = new DevExpress.XtraBars.BarDockControl();
			this.barDockControlRight = new DevExpress.XtraBars.BarDockControl();
			this.gridView14 = new DevExpress.XtraGrid.Views.Grid.GridView();
			this.saveFileDialog_Report = new System.Windows.Forms.SaveFileDialog();
			this.gridColumn15 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn14 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn13 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn12 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridView3 = new DevExpress.XtraGrid.Views.Grid.GridView();
			this.helpProvider_NutritionInfo = new System.Windows.Forms.HelpProvider();
			((System.ComponentModel.ISupportInitialize)(this.xtraTabControl1)).BeginInit();
			this.xtraTabControl1.SuspendLayout();
			this.xtraTabPage1.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.splitContainerControl1)).BeginInit();
			this.splitContainerControl1.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_FoodCategory)).BeginInit();
			this.groupControl_FoodCategory.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.treeList_FoodStock)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_FoodNutModify)).BeginInit();
			this.groupControl_FoodNutModify.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_FoodName.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.memoEdit_FoodRemark.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_Energy.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_Carbohydrate.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_Fat.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_Protein.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_FoodCategory.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_FoodNutrition)).BeginInit();
			this.groupControl_FoodNutrition.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.gridControl_FoodNutrition)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
			this.panelControl1.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_FoodSearch.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_BindingID.Properties)).BeginInit();
			this.xtraTabPage2.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.splitContainerControl2)).BeginInit();
			this.splitContainerControl2.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.panelControl10)).BeginInit();
			this.panelControl10.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.gridControl_Recipe_FoodNutrition)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.gridView4)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.gridView2)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_RecipeLogin)).BeginInit();
			this.groupControl_RecipeLogin.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_RecipeLogin_FoodName.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_RecipeLogin_Name.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.dateEdit_RecipeLogin_Date.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_RecipeLogin_FoodTake.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_RecipeLogin_BindingID.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_RecipeSer)).BeginInit();
			this.groupControl_RecipeSer.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_RecipeSer_FoodCategory.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_RecipeSer_FoodName.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_RecipeOpr)).BeginInit();
			this.groupControl_RecipeOpr.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.panelControl11)).BeginInit();
			this.panelControl11.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.gridControl_RecipeLogin)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.gridView13)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.panelControl2)).BeginInit();
			this.panelControl2.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_Recipe_FoodName.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_Recipe_RecipeCategory.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.dateEdit_Recipe_EndDate.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.dateEdit_Recipe_BegDate.Properties)).BeginInit();
			this.xtraTabPage3.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.splitContainerControl3)).BeginInit();
			this.splitContainerControl3.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_MealLogin)).BeginInit();
			this.groupControl_MealLogin.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.checkEdit_Snack.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.checkEdit_Dinner.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.checkEdit_Lunch.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.checkEdit_Breakfast.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_MealAdd)).BeginInit();
			this.groupControl_MealAdd.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MealName.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MealRemark.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MealID.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_MealArr)).BeginInit();
			this.groupControl_MealArr.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.splitContainerControl4)).BeginInit();
			this.splitContainerControl4.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.checkEdit_MealArr_gThree.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.checkEdit_MealArr_gTwo.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.checkEdit_MealArr_gOne.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_MealArr_Name.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.checkEdit_MealArr_gFour.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.checkEdit_MealArr_gFive.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.checkEdit_MealArr_IsUsed.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_MealPreview)).BeginInit();
			this.groupControl_MealPreview.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.gridControl_MealPreview)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.gridView5)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.panelControl3)).BeginInit();
			this.panelControl3.SuspendLayout();
			this.xtraTabPage4.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.splitContainerControl5)).BeginInit();
			this.splitContainerControl5.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_Meal_Search)).BeginInit();
			this.groupControl_Meal_Search.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.dateEdit_Meal_EndDate.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.dateEdit_Meal_BegDate.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_Meal_ReportPreview)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.panelControl4)).BeginInit();
			this.panelControl4.SuspendLayout();
			this.xtraTabPage5.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.splitContainerControl6)).BeginInit();
			this.splitContainerControl6.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.gridControl_HInputStu)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.gridView6)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_HInputSer)).BeginInit();
			this.groupControl_HInputSer.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_HInputGender.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_HInputNumber.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_HInputName.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_HInputClass.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_HInputGrade.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_HInputDiagInfo)).BeginInit();
			this.groupControl_HInputDiagInfo.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_HInputRegion.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_HInputStd.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_DiagCheckName.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_DiagCheckBindingID.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_HInputDiagResult)).BeginInit();
			this.groupControl_HInputDiagResult.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_DiagResultX.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_DiagResultWHOPer.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_DiagResultHeightWeight.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_DiagResultUnderWeight.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_DiagResultStunting.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_DiagResultWasting.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_DiagResultHeight.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_DiagResultWeight.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_DiagResultWHO.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_DiagResultNut.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_DiagResultAge.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.memoEdit_DiagRemark.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_DiagWeight.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_DiagHeight.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.dateEdit_DiagCheckDate.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_HInputBirthday.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_DiagCheckGender.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.panelControl5)).BeginInit();
			this.panelControl5.SuspendLayout();
			this.xtraTabPage6.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.splitContainerControl7)).BeginInit();
			this.splitContainerControl7.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_HOutputPrintType)).BeginInit();
			this.groupControl_HOutputPrintType.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.checkEdit_HOutputPrintType4th.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.checkEdit_HOutputPrintType3rd.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.checkEdit_HOutputPrintType2nd.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.checkEdit_HOutputPrintType1st.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_HOutputSer)).BeginInit();
			this.groupControl_HOutputSer.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_HOutputRegion.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.dateEdit_HOutputEndDate.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.dateEdit_HOutputBegDate.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_HOutputGender.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_HOutputResult.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_HOutputType.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_HOutputAge.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_HOutputNumber.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_HOutputName.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_HOutputClass.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_HOutputGrade.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.gridControl_HOutputNchsGrid)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.advBandedGridView2)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.gridControl_HOutputGridShow)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.advBandedGridView1)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.panelControl6)).BeginInit();
			this.panelControl6.SuspendLayout();
			this.xtraTabPage7.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.splitContainerControl8)).BeginInit();
			this.splitContainerControl8.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_WatchMorningRec)).BeginInit();
			this.groupControl_WatchMorningRec.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_WatchMorningTreat.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_WatchMorningOState.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_WatchMorningHeat.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_WatchMorningMouth.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_WatchMorningSpirit.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_WatchMorningSkin.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_WatchMorningNumber.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_WatchMorningName.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_WatchStuList)).BeginInit();
			this.groupControl_WatchStuList.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.gridControl_WatchStuList)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.gridView7)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_WatchSer)).BeginInit();
			this.groupControl_WatchSer.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_WatchName.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.dateEdit_WatchEndDate.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.dateEdit_WatchBegDate.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_WatchState.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_WatchNumber.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_WatchClass.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_WatchGrade.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_WatchWholeDay)).BeginInit();
			this.groupControl_WatchWholeDay.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_WatchWholDayHandle)).BeginInit();
			this.groupControl_WatchWholDayHandle.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.checkEdit_WatchWholeDayHeat.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.checkEdit_WatchWholeDayCtrSeafood.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.checkEdit_WatchWholeDayLifeAttention.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.checkEdit_WatchWholeDayCtrAct.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_WatchWholeDayReg)).BeginInit();
			this.groupControl_WatchWholeDayReg.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_WatchWholeDayElse.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_WatchWholeDayCough.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_WatchWholeDaySleep.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_WatchWholeDayStool.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_WatchWholeDayAppetite.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_WatchWholeDaySpirit.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_WatchWholeDayMovement.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_WatchRecList)).BeginInit();
			this.groupControl_WatchRecList.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.gridControl_WatchRecList)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.gridView8)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.panelControl7)).BeginInit();
			this.panelControl7.SuspendLayout();
			this.xtraTabPage8.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.splitContainerControl9)).BeginInit();
			this.splitContainerControl9.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_MedReg_StuList)).BeginInit();
			this.groupControl_MedReg_StuList.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.gridControl_MedReg_StuList)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.gridView9)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_MedReg_Ser)).BeginInit();
			this.groupControl_MedReg_Ser.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MedReg_Number.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MedReg_Name.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_MedReg_Class.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_MedReg_Grade.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_MedReg_MedInfo)).BeginInit();
			this.groupControl_MedReg_MedInfo.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MedReg_MedName.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MedReg_Taketimes.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MedReg_MedTake.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MedReg_MedType.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_MedReg_MedCarrInfo)).BeginInit();
			this.groupControl_MedReg_MedCarrInfo.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.listBoxControl_MedReg_MedCarrInfo)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.listBoxControl_MedReg_MedInfo)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_MedReg_DiagInfo)).BeginInit();
			this.groupControl_MedReg_DiagInfo.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MedReg_Else.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MedReg_FacialSym.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MedReg_SkinSym.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MedReg_AbdomenSym.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MedReg_EnteronSym.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MedReg_ThroatSym.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MedReg_LungSym.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MedReg_UpperSym.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_MedReg_Diag.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.panelControl8)).BeginInit();
			this.panelControl8.SuspendLayout();
			this.xtraTabPage9.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.splitContainerControl10)).BeginInit();
			this.splitContainerControl10.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_MedRec_AbnStuList)).BeginInit();
			this.groupControl_MedRec_AbnStuList.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.gridControl_MedRec_AbnStuList)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.gridView10)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_MedRec_Ser)).BeginInit();
			this.groupControl_MedRec_Ser.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MedRec_Number.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MedRec_Name.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.dateEdit_MedRec_EndDate.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.dateEdit_MedRec_BegDate.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MedRec_DoseRecDiaID.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MedRec_AbnDiaID.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_MedRec_Class.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_MedRec_Grade.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_MedRec_DiagAndDoseAdd)).BeginInit();
			this.groupControl_MedRec_DiagAndDoseAdd.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_MedRec_DoseAdd)).BeginInit();
			this.groupControl_MedRec_DoseAdd.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.listBoxControl_MedRec_MedCarrInfo)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_MedRec_TakeRule.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.timeEdit_MedRec_TakeTime.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MedRec_MedTake.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MedRec_MedName.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_MedRec_DiagInfo)).BeginInit();
			this.groupControl_MedRec_DiagInfo.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MedRec_Diag.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MedRec_Else.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MedRec_FacialSym.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MedRec_SkinSym.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MedRec_AbdomenSym.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MedRec_EnteronSym.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MedRec_ThroatSym.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MedRec_LungSym.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MedRec_UpperSym.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_MedRec_DoseRec)).BeginInit();
			this.groupControl_MedRec_DoseRec.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.gridControl_MedRec_DoseRec)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.gridView11)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.gridView12)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.panelControl9)).BeginInit();
			this.panelControl9.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.barManager1)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.popupMenu4)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.popupMenu1)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.popupMenu2)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.popupMenu3)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.gridView14)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.gridView3)).BeginInit();
			this.SuspendLayout();
			// 
			// xtraTabControl1
			// 
			this.xtraTabControl1.AppearancePage.HeaderActive.ForeColor = System.Drawing.Color.DarkOrange;
			this.xtraTabControl1.AppearancePage.HeaderActive.Options.UseForeColor = true;
			this.xtraTabControl1.Controls.Add(this.xtraTabPage1);
			this.xtraTabControl1.Controls.Add(this.xtraTabPage2);
			this.xtraTabControl1.Controls.Add(this.xtraTabPage3);
			this.xtraTabControl1.Controls.Add(this.xtraTabPage4);
			this.xtraTabControl1.Controls.Add(this.xtraTabPage5);
			this.xtraTabControl1.Controls.Add(this.xtraTabPage6);
			this.xtraTabControl1.Controls.Add(this.xtraTabPage7);
			this.xtraTabControl1.Controls.Add(this.xtraTabPage8);
			this.xtraTabControl1.Controls.Add(this.xtraTabPage9);
			this.xtraTabControl1.Dock = System.Windows.Forms.DockStyle.Fill;
			this.xtraTabControl1.Location = new System.Drawing.Point(0, 0);
			this.xtraTabControl1.Name = "xtraTabControl1";
			this.xtraTabControl1.SelectedTabPage = this.xtraTabPage9;
			this.xtraTabControl1.Size = new System.Drawing.Size(772, 540);
			this.xtraTabControl1.TabIndex = 0;
			this.xtraTabControl1.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
																							this.xtraTabPage1,
																							this.xtraTabPage2,
																							this.xtraTabPage3,
																							this.xtraTabPage4,
																							this.xtraTabPage5,
																							this.xtraTabPage6,
																							this.xtraTabPage7,
																							this.xtraTabPage8,
																							this.xtraTabPage9});
			this.xtraTabControl1.Text = "xtraTabControl1";
			// 
			// xtraTabPage1
			// 
			this.xtraTabPage1.Appearance.PageClient.BackColor = System.Drawing.Color.WhiteSmoke;
			this.xtraTabPage1.Appearance.PageClient.Options.UseBackColor = true;
			this.xtraTabPage1.Controls.Add(this.splitContainerControl1);
			this.xtraTabPage1.Name = "xtraTabPage1";
			this.xtraTabPage1.PageVisible = false;
			this.xtraTabPage1.Size = new System.Drawing.Size(768, 515);
			this.xtraTabPage1.Text = "食物库存管理";
			// 
			// splitContainerControl1
			// 
			this.splitContainerControl1.Dock = System.Windows.Forms.DockStyle.Fill;
			this.splitContainerControl1.Location = new System.Drawing.Point(0, 0);
			this.splitContainerControl1.Name = "splitContainerControl1";
			this.splitContainerControl1.Panel1.Controls.Add(this.groupControl_FoodCategory);
			this.splitContainerControl1.Panel1.Text = "splitContainerControl1_Panel1";
			this.splitContainerControl1.Panel2.Controls.Add(this.groupControl_FoodNutModify);
			this.splitContainerControl1.Panel2.Controls.Add(this.groupControl_FoodNutrition);
			this.splitContainerControl1.Panel2.Controls.Add(this.panelControl1);
			this.splitContainerControl1.Panel2.Text = "splitContainerControl1_Panel2";
			this.splitContainerControl1.Size = new System.Drawing.Size(768, 515);
			this.splitContainerControl1.SplitterPosition = 175;
			this.splitContainerControl1.TabIndex = 0;
			this.splitContainerControl1.Text = "splitContainerControl1";
			// 
			// groupControl_FoodCategory
			// 
			this.groupControl_FoodCategory.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.groupControl_FoodCategory.AppearanceCaption.Options.UseFont = true;
			this.groupControl_FoodCategory.Controls.Add(this.treeList_FoodStock);
			this.groupControl_FoodCategory.Dock = System.Windows.Forms.DockStyle.Top;
			this.groupControl_FoodCategory.Location = new System.Drawing.Point(0, 0);
			this.groupControl_FoodCategory.Name = "groupControl_FoodCategory";
			this.groupControl_FoodCategory.Size = new System.Drawing.Size(169, 272);
			this.groupControl_FoodCategory.TabIndex = 0;
			this.groupControl_FoodCategory.Text = "食物库存分类";
			// 
			// treeList_FoodStock
			// 
			this.treeList_FoodStock.Columns.AddRange(new DevExpress.XtraTreeList.Columns.TreeListColumn[] {
																											  this.treeListColumn1});
			this.treeList_FoodStock.Dock = System.Windows.Forms.DockStyle.Fill;
			this.treeList_FoodStock.Location = new System.Drawing.Point(3, 18);
			this.treeList_FoodStock.Name = "treeList_FoodStock";
			this.treeList_FoodStock.Size = new System.Drawing.Size(163, 251);
			this.treeList_FoodStock.StateImageList = this.imageList1;
			this.treeList_FoodStock.TabIndex = 0;
			this.treeList_FoodStock.FocusedNodeChanged += new DevExpress.XtraTreeList.FocusedNodeChangedEventHandler(this.treeList_FoodStock_FocusedNodeChanged);
			// 
			// treeListColumn1
			// 
			this.treeListColumn1.Caption = "食物库存";
			this.treeListColumn1.FieldName = "食物库存";
			this.treeListColumn1.Name = "treeListColumn1";
			this.treeListColumn1.OptionsColumn.AllowEdit = false;
			this.treeListColumn1.OptionsColumn.AllowMove = false;
			this.treeListColumn1.OptionsColumn.AllowMoveToCustomizationForm = false;
			this.treeListColumn1.OptionsColumn.AllowSize = false;
			this.treeListColumn1.VisibleIndex = 0;
			// 
			// imageList1
			// 
			this.imageList1.ImageSize = new System.Drawing.Size(16, 16);
			this.imageList1.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
			this.imageList1.TransparentColor = System.Drawing.Color.Transparent;
			// 
			// groupControl_FoodNutModify
			// 
			this.groupControl_FoodNutModify.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.groupControl_FoodNutModify.AppearanceCaption.Options.UseFont = true;
			this.groupControl_FoodNutModify.Controls.Add(this.textEdit_FoodName);
			this.groupControl_FoodNutModify.Controls.Add(this.notePanel7);
			this.groupControl_FoodNutModify.Controls.Add(this.memoEdit_FoodRemark);
			this.groupControl_FoodNutModify.Controls.Add(this.notePanel_FoodRemark);
			this.groupControl_FoodNutModify.Controls.Add(this.textEdit_Energy);
			this.groupControl_FoodNutModify.Controls.Add(this.textEdit_Carbohydrate);
			this.groupControl_FoodNutModify.Controls.Add(this.textEdit_Fat);
			this.groupControl_FoodNutModify.Controls.Add(this.textEdit_Protein);
			this.groupControl_FoodNutModify.Controls.Add(this.notePanel_Energy);
			this.groupControl_FoodNutModify.Controls.Add(this.notePanel_Carbohydrate);
			this.groupControl_FoodNutModify.Controls.Add(this.notePanel_Fat);
			this.groupControl_FoodNutModify.Controls.Add(this.notePanel_Protein);
			this.groupControl_FoodNutModify.Controls.Add(this.comboBoxEdit_FoodCategory);
			this.groupControl_FoodNutModify.Controls.Add(this.notePanel_FoodCategory);
			this.groupControl_FoodNutModify.Controls.Add(this.notePanel_FoodName);
			this.groupControl_FoodNutModify.Dock = System.Windows.Forms.DockStyle.Top;
			this.groupControl_FoodNutModify.Location = new System.Drawing.Point(0, 64);
			this.groupControl_FoodNutModify.Name = "groupControl_FoodNutModify";
			this.groupControl_FoodNutModify.Size = new System.Drawing.Size(583, 272);
			this.groupControl_FoodNutModify.TabIndex = 2;
			this.groupControl_FoodNutModify.Text = "成份修改与保存";
			// 
			// textEdit_FoodName
			// 
			this.textEdit_FoodName.EditValue = "";
			this.textEdit_FoodName.Location = new System.Drawing.Point(152, 64);
			this.textEdit_FoodName.Name = "textEdit_FoodName";
			this.textEdit_FoodName.Size = new System.Drawing.Size(96, 23);
			this.textEdit_FoodName.TabIndex = 45;
			// 
			// notePanel7
			// 
			this.notePanel7.BackColor = System.Drawing.Color.LightGoldenrodYellow;
			this.notePanel7.Dock = System.Windows.Forms.DockStyle.Top;
			this.notePanel7.ForeColor = System.Drawing.Color.Gray;
			this.notePanel7.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel7.Location = new System.Drawing.Point(3, 18);
			this.notePanel7.MaxRows = 5;
			this.notePanel7.Name = "notePanel7";
			this.notePanel7.ParentAutoHeight = true;
			this.notePanel7.Size = new System.Drawing.Size(577, 23);
			this.notePanel7.TabIndex = 44;
			this.notePanel7.TabStop = false;
			this.notePanel7.Text = "注: 食物营成份以(克/斤)计算";
			// 
			// memoEdit_FoodRemark
			// 
			this.memoEdit_FoodRemark.EditValue = "";
			this.memoEdit_FoodRemark.Location = new System.Drawing.Point(272, 96);
			this.memoEdit_FoodRemark.Name = "memoEdit_FoodRemark";
			this.memoEdit_FoodRemark.Size = new System.Drawing.Size(208, 152);
			this.memoEdit_FoodRemark.TabIndex = 43;
			// 
			// notePanel_FoodRemark
			// 
			this.notePanel_FoodRemark.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_FoodRemark.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_FoodRemark.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_FoodRemark.ForeColor = System.Drawing.Color.Black;
			this.notePanel_FoodRemark.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_FoodRemark.Location = new System.Drawing.Point(272, 64);
			this.notePanel_FoodRemark.MaxRows = 5;
			this.notePanel_FoodRemark.Name = "notePanel_FoodRemark";
			this.notePanel_FoodRemark.ParentAutoHeight = true;
			this.notePanel_FoodRemark.Size = new System.Drawing.Size(208, 22);
			this.notePanel_FoodRemark.TabIndex = 42;
			this.notePanel_FoodRemark.TabStop = false;
			this.notePanel_FoodRemark.Text = "                     备  注:";
			// 
			// textEdit_Energy
			// 
			this.textEdit_Energy.EditValue = "";
			this.textEdit_Energy.Location = new System.Drawing.Point(152, 224);
			this.textEdit_Energy.Name = "textEdit_Energy";
			this.textEdit_Energy.Size = new System.Drawing.Size(96, 23);
			this.textEdit_Energy.TabIndex = 40;
			// 
			// textEdit_Carbohydrate
			// 
			this.textEdit_Carbohydrate.EditValue = "";
			this.textEdit_Carbohydrate.Location = new System.Drawing.Point(152, 192);
			this.textEdit_Carbohydrate.Name = "textEdit_Carbohydrate";
			this.textEdit_Carbohydrate.Size = new System.Drawing.Size(96, 23);
			this.textEdit_Carbohydrate.TabIndex = 39;
			// 
			// textEdit_Fat
			// 
			this.textEdit_Fat.EditValue = "";
			this.textEdit_Fat.Location = new System.Drawing.Point(152, 160);
			this.textEdit_Fat.Name = "textEdit_Fat";
			this.textEdit_Fat.Size = new System.Drawing.Size(96, 23);
			this.textEdit_Fat.TabIndex = 38;
			// 
			// textEdit_Protein
			// 
			this.textEdit_Protein.EditValue = "";
			this.textEdit_Protein.Location = new System.Drawing.Point(152, 128);
			this.textEdit_Protein.Name = "textEdit_Protein";
			this.textEdit_Protein.Size = new System.Drawing.Size(96, 23);
			this.textEdit_Protein.TabIndex = 37;
			// 
			// notePanel_Energy
			// 
			this.notePanel_Energy.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_Energy.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_Energy.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_Energy.ForeColor = System.Drawing.Color.Black;
			this.notePanel_Energy.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_Energy.Location = new System.Drawing.Point(40, 224);
			this.notePanel_Energy.MaxRows = 5;
			this.notePanel_Energy.Name = "notePanel_Energy";
			this.notePanel_Energy.ParentAutoHeight = true;
			this.notePanel_Energy.Size = new System.Drawing.Size(96, 22);
			this.notePanel_Energy.TabIndex = 36;
			this.notePanel_Energy.TabStop = false;
			this.notePanel_Energy.Text = "     热  量:";
			// 
			// notePanel_Carbohydrate
			// 
			this.notePanel_Carbohydrate.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_Carbohydrate.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_Carbohydrate.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_Carbohydrate.ForeColor = System.Drawing.Color.Black;
			this.notePanel_Carbohydrate.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_Carbohydrate.Location = new System.Drawing.Point(40, 192);
			this.notePanel_Carbohydrate.MaxRows = 5;
			this.notePanel_Carbohydrate.Name = "notePanel_Carbohydrate";
			this.notePanel_Carbohydrate.ParentAutoHeight = true;
			this.notePanel_Carbohydrate.Size = new System.Drawing.Size(96, 22);
			this.notePanel_Carbohydrate.TabIndex = 35;
			this.notePanel_Carbohydrate.TabStop = false;
			this.notePanel_Carbohydrate.Text = "碳水化合物:";
			// 
			// notePanel_Fat
			// 
			this.notePanel_Fat.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_Fat.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_Fat.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_Fat.ForeColor = System.Drawing.Color.Black;
			this.notePanel_Fat.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_Fat.Location = new System.Drawing.Point(40, 160);
			this.notePanel_Fat.MaxRows = 5;
			this.notePanel_Fat.Name = "notePanel_Fat";
			this.notePanel_Fat.ParentAutoHeight = true;
			this.notePanel_Fat.Size = new System.Drawing.Size(96, 22);
			this.notePanel_Fat.TabIndex = 34;
			this.notePanel_Fat.TabStop = false;
			this.notePanel_Fat.Text = "  脂肪含量:";
			// 
			// notePanel_Protein
			// 
			this.notePanel_Protein.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_Protein.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_Protein.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_Protein.ForeColor = System.Drawing.Color.Black;
			this.notePanel_Protein.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_Protein.Location = new System.Drawing.Point(40, 128);
			this.notePanel_Protein.MaxRows = 5;
			this.notePanel_Protein.Name = "notePanel_Protein";
			this.notePanel_Protein.ParentAutoHeight = true;
			this.notePanel_Protein.Size = new System.Drawing.Size(96, 22);
			this.notePanel_Protein.TabIndex = 33;
			this.notePanel_Protein.TabStop = false;
			this.notePanel_Protein.Text = "蛋白质含量:";
			// 
			// comboBoxEdit_FoodCategory
			// 
			this.comboBoxEdit_FoodCategory.EditValue = "其他";
			this.comboBoxEdit_FoodCategory.Location = new System.Drawing.Point(152, 96);
			this.comboBoxEdit_FoodCategory.Name = "comboBoxEdit_FoodCategory";
			// 
			// comboBoxEdit_FoodCategory.Properties
			// 
			this.comboBoxEdit_FoodCategory.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																															  new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.comboBoxEdit_FoodCategory.Properties.Items.AddRange(new object[] {
																					  "肉禽水产类",
																					  "水果类",
																					  "蔬菜类",
																					  "粮食类",
																					  "调味品",
																					  "糕点",
																					  "豆制品",
																					  "乳类",
																					  "菌藻类",
																					  "其他"});
			this.comboBoxEdit_FoodCategory.Size = new System.Drawing.Size(96, 23);
			this.comboBoxEdit_FoodCategory.TabIndex = 32;
			// 
			// notePanel_FoodCategory
			// 
			this.notePanel_FoodCategory.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_FoodCategory.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_FoodCategory.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_FoodCategory.ForeColor = System.Drawing.Color.Black;
			this.notePanel_FoodCategory.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_FoodCategory.Location = new System.Drawing.Point(40, 96);
			this.notePanel_FoodCategory.MaxRows = 5;
			this.notePanel_FoodCategory.Name = "notePanel_FoodCategory";
			this.notePanel_FoodCategory.ParentAutoHeight = true;
			this.notePanel_FoodCategory.Size = new System.Drawing.Size(96, 22);
			this.notePanel_FoodCategory.TabIndex = 31;
			this.notePanel_FoodCategory.TabStop = false;
			this.notePanel_FoodCategory.Text = "  食物类别:";
			// 
			// notePanel_FoodName
			// 
			this.notePanel_FoodName.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_FoodName.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_FoodName.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_FoodName.ForeColor = System.Drawing.Color.Black;
			this.notePanel_FoodName.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_FoodName.Location = new System.Drawing.Point(40, 64);
			this.notePanel_FoodName.MaxRows = 5;
			this.notePanel_FoodName.Name = "notePanel_FoodName";
			this.notePanel_FoodName.ParentAutoHeight = true;
			this.notePanel_FoodName.Size = new System.Drawing.Size(96, 22);
			this.notePanel_FoodName.TabIndex = 13;
			this.notePanel_FoodName.TabStop = false;
			this.notePanel_FoodName.Text = "   食物名:";
			// 
			// groupControl_FoodNutrition
			// 
			this.groupControl_FoodNutrition.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.groupControl_FoodNutrition.AppearanceCaption.Options.UseFont = true;
			this.groupControl_FoodNutrition.Controls.Add(this.gridControl_FoodNutrition);
			this.groupControl_FoodNutrition.Dock = System.Windows.Forms.DockStyle.Fill;
			this.groupControl_FoodNutrition.Location = new System.Drawing.Point(0, 64);
			this.groupControl_FoodNutrition.Name = "groupControl_FoodNutrition";
			this.groupControl_FoodNutrition.Size = new System.Drawing.Size(583, 445);
			this.groupControl_FoodNutrition.TabIndex = 1;
			this.groupControl_FoodNutrition.Text = "食物营养成份";
			// 
			// gridControl_FoodNutrition
			// 
			this.gridControl_FoodNutrition.Dock = System.Windows.Forms.DockStyle.Fill;
			// 
			// gridControl_FoodNutrition.EmbeddedNavigator
			// 
			this.gridControl_FoodNutrition.EmbeddedNavigator.Name = "";
			this.gridControl_FoodNutrition.Location = new System.Drawing.Point(3, 18);
			this.gridControl_FoodNutrition.MainView = this.gridView1;
			this.gridControl_FoodNutrition.Name = "gridControl_FoodNutrition";
			this.gridControl_FoodNutrition.Size = new System.Drawing.Size(577, 424);
			this.gridControl_FoodNutrition.TabIndex = 1;
			this.gridControl_FoodNutrition.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
																													 this.gridView1});
			this.gridControl_FoodNutrition.DoubleClick += new System.EventHandler(this.gridControl_FoodNutrition_DoubleClick);
			// 
			// gridView1
			// 
			this.gridView1.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
																							 this.gridColumn1,
																							 this.gridColumn2,
																							 this.gridColumn3,
																							 this.gridColumn4,
																							 this.gridColumn5,
																							 this.gridColumn6});
			this.gridView1.GridControl = this.gridControl_FoodNutrition;
			this.gridView1.Name = "gridView1";
			this.gridView1.OptionsCustomization.AllowFilter = false;
			this.gridView1.OptionsView.ShowFilterPanel = false;
			this.gridView1.OptionsView.ShowGroupPanel = false;
			// 
			// gridColumn1
			// 
			this.gridColumn1.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn1.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn1.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn1.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn1.Caption = "食物名称";
			this.gridColumn1.FieldName = "FoodNut_FoodName";
			this.gridColumn1.Name = "gridColumn1";
			this.gridColumn1.OptionsColumn.AllowEdit = false;
			this.gridColumn1.OptionsColumn.AllowFocus = false;
			this.gridColumn1.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn1.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn1.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn1.OptionsColumn.AllowMove = false;
			this.gridColumn1.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn1.OptionsColumn.FixedWidth = true;
			this.gridColumn1.OptionsColumn.ReadOnly = true;
			this.gridColumn1.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn1.Visible = true;
			this.gridColumn1.VisibleIndex = 0;
			// 
			// gridColumn2
			// 
			this.gridColumn2.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn2.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn2.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn2.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn2.Caption = "蛋白质";
			this.gridColumn2.FieldName = "FoodNut_Protein";
			this.gridColumn2.Name = "gridColumn2";
			this.gridColumn2.OptionsColumn.AllowEdit = false;
			this.gridColumn2.OptionsColumn.AllowFocus = false;
			this.gridColumn2.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn2.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn2.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn2.OptionsColumn.AllowMove = false;
			this.gridColumn2.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn2.OptionsColumn.FixedWidth = true;
			this.gridColumn2.OptionsColumn.ReadOnly = true;
			this.gridColumn2.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn2.Visible = true;
			this.gridColumn2.VisibleIndex = 1;
			// 
			// gridColumn3
			// 
			this.gridColumn3.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn3.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn3.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn3.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn3.Caption = "脂肪";
			this.gridColumn3.FieldName = "FoodNut_Fat";
			this.gridColumn3.Name = "gridColumn3";
			this.gridColumn3.OptionsColumn.AllowEdit = false;
			this.gridColumn3.OptionsColumn.AllowFocus = false;
			this.gridColumn3.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn3.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn3.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn3.OptionsColumn.AllowMove = false;
			this.gridColumn3.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn3.OptionsColumn.FixedWidth = true;
			this.gridColumn3.OptionsColumn.ReadOnly = true;
			this.gridColumn3.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn3.Visible = true;
			this.gridColumn3.VisibleIndex = 2;
			// 
			// gridColumn4
			// 
			this.gridColumn4.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn4.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn4.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn4.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn4.Caption = "碳水化合物";
			this.gridColumn4.FieldName = "FoodNut_Carbohydrate";
			this.gridColumn4.Name = "gridColumn4";
			this.gridColumn4.OptionsColumn.AllowEdit = false;
			this.gridColumn4.OptionsColumn.AllowFocus = false;
			this.gridColumn4.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn4.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn4.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn4.OptionsColumn.AllowMove = false;
			this.gridColumn4.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn4.OptionsColumn.FixedWidth = true;
			this.gridColumn4.OptionsColumn.ReadOnly = true;
			this.gridColumn4.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn4.Visible = true;
			this.gridColumn4.VisibleIndex = 3;
			// 
			// gridColumn5
			// 
			this.gridColumn5.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn5.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn5.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn5.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn5.Caption = "热量";
			this.gridColumn5.FieldName = "FoodNut_Energy";
			this.gridColumn5.Name = "gridColumn5";
			this.gridColumn5.OptionsColumn.AllowEdit = false;
			this.gridColumn5.OptionsColumn.AllowFocus = false;
			this.gridColumn5.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn5.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn5.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn5.OptionsColumn.AllowMove = false;
			this.gridColumn5.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn5.OptionsColumn.FixedWidth = true;
			this.gridColumn5.OptionsColumn.ReadOnly = true;
			this.gridColumn5.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn5.Visible = true;
			this.gridColumn5.VisibleIndex = 4;
			// 
			// gridColumn6
			// 
			this.gridColumn6.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn6.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn6.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn6.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn6.Caption = "备注";
			this.gridColumn6.FieldName = "FoodNut_Remark";
			this.gridColumn6.Name = "gridColumn6";
			this.gridColumn6.OptionsColumn.AllowEdit = false;
			this.gridColumn6.OptionsColumn.AllowFocus = false;
			this.gridColumn6.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn6.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn6.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn6.OptionsColumn.AllowMove = false;
			this.gridColumn6.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn6.OptionsColumn.FixedWidth = true;
			this.gridColumn6.OptionsColumn.ReadOnly = true;
			this.gridColumn6.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn6.Visible = true;
			this.gridColumn6.VisibleIndex = 5;
			// 
			// panelControl1
			// 
			this.panelControl1.Controls.Add(this.simpleButton_FoodModify);
			this.panelControl1.Controls.Add(this.simpleButton_FoodBack);
			this.panelControl1.Controls.Add(this.simpleButton_FoodDelete);
			this.panelControl1.Controls.Add(this.simpleButton_FoodSave);
			this.panelControl1.Controls.Add(this.simpleButton_FoodAdd);
			this.panelControl1.Controls.Add(this.textEdit_FoodSearch);
			this.panelControl1.Controls.Add(this.textEdit_BindingID);
			this.panelControl1.Dock = System.Windows.Forms.DockStyle.Top;
			this.panelControl1.Location = new System.Drawing.Point(0, 0);
			this.panelControl1.Name = "panelControl1";
			this.panelControl1.Size = new System.Drawing.Size(583, 64);
			this.panelControl1.TabIndex = 0;
			this.panelControl1.Text = "panelControl1";
			// 
			// simpleButton_FoodModify
			// 
			this.simpleButton_FoodModify.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.simpleButton_FoodModify.Appearance.ForeColor = System.Drawing.Color.DarkMagenta;
			this.simpleButton_FoodModify.Appearance.Options.UseFont = true;
			this.simpleButton_FoodModify.Appearance.Options.UseForeColor = true;
			this.simpleButton_FoodModify.Enabled = false;
			this.simpleButton_FoodModify.Location = new System.Drawing.Point(304, 8);
			this.simpleButton_FoodModify.Name = "simpleButton_FoodModify";
			this.simpleButton_FoodModify.Size = new System.Drawing.Size(88, 26);
			this.simpleButton_FoodModify.TabIndex = 31;
			this.simpleButton_FoodModify.Tag = 4;
			this.simpleButton_FoodModify.Text = "修  改";
			this.simpleButton_FoodModify.Click += new System.EventHandler(this.simpleButton_FoodModify_Click);
			// 
			// simpleButton_FoodBack
			// 
			this.simpleButton_FoodBack.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.simpleButton_FoodBack.Appearance.ForeColor = System.Drawing.Color.DarkMagenta;
			this.simpleButton_FoodBack.Appearance.Options.UseFont = true;
			this.simpleButton_FoodBack.Appearance.Options.UseForeColor = true;
			this.simpleButton_FoodBack.Location = new System.Drawing.Point(16, 8);
			this.simpleButton_FoodBack.Name = "simpleButton_FoodBack";
			this.simpleButton_FoodBack.Size = new System.Drawing.Size(88, 26);
			this.simpleButton_FoodBack.TabIndex = 6;
			this.simpleButton_FoodBack.Tag = 4;
			this.simpleButton_FoodBack.Text = "返  回";
			this.simpleButton_FoodBack.Click += new System.EventHandler(this.simpleButton_FoodBack_Click);
			// 
			// simpleButton_FoodDelete
			// 
			this.simpleButton_FoodDelete.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.simpleButton_FoodDelete.Appearance.ForeColor = System.Drawing.Color.DarkMagenta;
			this.simpleButton_FoodDelete.Appearance.Options.UseFont = true;
			this.simpleButton_FoodDelete.Appearance.Options.UseForeColor = true;
			this.simpleButton_FoodDelete.Location = new System.Drawing.Point(400, 8);
			this.simpleButton_FoodDelete.Name = "simpleButton_FoodDelete";
			this.simpleButton_FoodDelete.Size = new System.Drawing.Size(88, 26);
			this.simpleButton_FoodDelete.TabIndex = 4;
			this.simpleButton_FoodDelete.Tag = 4;
			this.simpleButton_FoodDelete.Text = "删  除";
			this.simpleButton_FoodDelete.Click += new System.EventHandler(this.simpleButton_FoodDelete_Click);
			// 
			// simpleButton_FoodSave
			// 
			this.simpleButton_FoodSave.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.simpleButton_FoodSave.Appearance.ForeColor = System.Drawing.Color.DarkMagenta;
			this.simpleButton_FoodSave.Appearance.Options.UseFont = true;
			this.simpleButton_FoodSave.Appearance.Options.UseForeColor = true;
			this.simpleButton_FoodSave.Enabled = false;
			this.simpleButton_FoodSave.Location = new System.Drawing.Point(208, 8);
			this.simpleButton_FoodSave.Name = "simpleButton_FoodSave";
			this.simpleButton_FoodSave.Size = new System.Drawing.Size(88, 26);
			this.simpleButton_FoodSave.TabIndex = 3;
			this.simpleButton_FoodSave.Tag = 4;
			this.simpleButton_FoodSave.Text = "保  存";
			this.simpleButton_FoodSave.Click += new System.EventHandler(this.simpleButton_FoodSave_Click);
			// 
			// simpleButton_FoodAdd
			// 
			this.simpleButton_FoodAdd.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.simpleButton_FoodAdd.Appearance.ForeColor = System.Drawing.Color.DarkMagenta;
			this.simpleButton_FoodAdd.Appearance.Options.UseFont = true;
			this.simpleButton_FoodAdd.Appearance.Options.UseForeColor = true;
			this.simpleButton_FoodAdd.Location = new System.Drawing.Point(112, 8);
			this.simpleButton_FoodAdd.Name = "simpleButton_FoodAdd";
			this.simpleButton_FoodAdd.Size = new System.Drawing.Size(88, 26);
			this.simpleButton_FoodAdd.TabIndex = 2;
			this.simpleButton_FoodAdd.Tag = 4;
			this.simpleButton_FoodAdd.Text = "新  增";
			this.simpleButton_FoodAdd.Click += new System.EventHandler(this.simpleButton_FoodAdd_Click);
			// 
			// textEdit_FoodSearch
			// 
			this.textEdit_FoodSearch.Dock = System.Windows.Forms.DockStyle.Bottom;
			this.textEdit_FoodSearch.EditValue = "";
			this.textEdit_FoodSearch.Location = new System.Drawing.Point(3, 38);
			this.textEdit_FoodSearch.Name = "textEdit_FoodSearch";
			this.textEdit_FoodSearch.Size = new System.Drawing.Size(577, 23);
			this.textEdit_FoodSearch.TabIndex = 0;
			this.textEdit_FoodSearch.EditValueChanged += new System.EventHandler(this.textEdit_FoodSearch_EditValueChanged);
			// 
			// textEdit_BindingID
			// 
			this.textEdit_BindingID.EditValue = "";
			this.textEdit_BindingID.Location = new System.Drawing.Point(536, 48);
			this.textEdit_BindingID.Name = "textEdit_BindingID";
			// 
			// textEdit_BindingID.Properties
			// 
			this.textEdit_BindingID.Properties.AutoHeight = false;
			this.textEdit_BindingID.Size = new System.Drawing.Size(8, 8);
			this.textEdit_BindingID.TabIndex = 30;
			// 
			// xtraTabPage2
			// 
			this.xtraTabPage2.Appearance.PageClient.BackColor = System.Drawing.Color.WhiteSmoke;
			this.xtraTabPage2.Appearance.PageClient.Options.UseBackColor = true;
			this.xtraTabPage2.Controls.Add(this.splitContainerControl2);
			this.xtraTabPage2.Name = "xtraTabPage2";
			this.xtraTabPage2.PageVisible = false;
			this.xtraTabPage2.Size = new System.Drawing.Size(768, 515);
			this.xtraTabPage2.Text = "每日食谱安排";
			// 
			// splitContainerControl2
			// 
			this.splitContainerControl2.Dock = System.Windows.Forms.DockStyle.Fill;
			this.splitContainerControl2.Location = new System.Drawing.Point(0, 0);
			this.splitContainerControl2.Name = "splitContainerControl2";
			this.splitContainerControl2.Panel1.Controls.Add(this.panelControl10);
			this.splitContainerControl2.Panel1.Controls.Add(this.groupControl_RecipeLogin);
			this.splitContainerControl2.Panel1.Controls.Add(this.groupControl_RecipeSer);
			this.splitContainerControl2.Panel1.Controls.Add(this.groupControl_RecipeOpr);
			this.splitContainerControl2.Panel1.Text = "splitContainerControl2_Panel1";
			this.splitContainerControl2.Panel2.Controls.Add(this.panelControl11);
			this.splitContainerControl2.Panel2.Controls.Add(this.panelControl2);
			this.splitContainerControl2.Panel2.Text = "splitContainerControl2_Panel2";
			this.splitContainerControl2.Size = new System.Drawing.Size(768, 515);
			this.splitContainerControl2.SplitterPosition = 270;
			this.splitContainerControl2.TabIndex = 0;
			this.splitContainerControl2.Text = "splitContainerControl2";
			// 
			// panelControl10
			// 
			this.panelControl10.Controls.Add(this.gridControl_Recipe_FoodNutrition);
			this.panelControl10.Controls.Add(this.notePanel4);
			this.panelControl10.Dock = System.Windows.Forms.DockStyle.Fill;
			this.panelControl10.Location = new System.Drawing.Point(0, 312);
			this.panelControl10.Name = "panelControl10";
			this.panelControl10.Size = new System.Drawing.Size(264, 197);
			this.panelControl10.TabIndex = 41;
			this.panelControl10.Text = "panelControl10";
			// 
			// gridControl_Recipe_FoodNutrition
			// 
			this.gridControl_Recipe_FoodNutrition.Dock = System.Windows.Forms.DockStyle.Fill;
			// 
			// gridControl_Recipe_FoodNutrition.EmbeddedNavigator
			// 
			this.gridControl_Recipe_FoodNutrition.EmbeddedNavigator.Name = "";
			this.gridControl_Recipe_FoodNutrition.Location = new System.Drawing.Point(3, 26);
			this.gridControl_Recipe_FoodNutrition.MainView = this.gridView4;
			this.gridControl_Recipe_FoodNutrition.Name = "gridControl_Recipe_FoodNutrition";
			this.gridControl_Recipe_FoodNutrition.Size = new System.Drawing.Size(258, 168);
			this.gridControl_Recipe_FoodNutrition.TabIndex = 47;
			this.gridControl_Recipe_FoodNutrition.ToolTipController = this.toolTipController1;
			this.gridControl_Recipe_FoodNutrition.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
																															this.gridView4,
																															this.gridView2});
			this.gridControl_Recipe_FoodNutrition.DoubleClick += new System.EventHandler(this.gridControl_Recipe_FoodNutrition_DoubleClick);
			// 
			// gridView4
			// 
			this.gridView4.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
																							 this.gridColumn7,
																							 this.gridColumn8,
																							 this.gridColumn9,
																							 this.gridColumn10,
																							 this.gridColumn11,
																							 this.gridColumn16});
			this.gridView4.GridControl = this.gridControl_Recipe_FoodNutrition;
			this.gridView4.Name = "gridView4";
			this.gridView4.OptionsCustomization.AllowFilter = false;
			this.gridView4.OptionsView.ShowFilterPanel = false;
			this.gridView4.OptionsView.ShowGroupPanel = false;
			// 
			// gridColumn7
			// 
			this.gridColumn7.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn7.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn7.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn7.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn7.Caption = "食物名";
			this.gridColumn7.FieldName = "FoodNut_FoodName";
			this.gridColumn7.Name = "gridColumn7";
			this.gridColumn7.OptionsColumn.AllowEdit = false;
			this.gridColumn7.OptionsColumn.AllowFocus = false;
			this.gridColumn7.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn7.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn7.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn7.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn7.OptionsColumn.ReadOnly = true;
			this.gridColumn7.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn7.Visible = true;
			this.gridColumn7.VisibleIndex = 0;
			// 
			// gridColumn8
			// 
			this.gridColumn8.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn8.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn8.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn8.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn8.Caption = "蛋白质";
			this.gridColumn8.FieldName = "FoodNut_Protein";
			this.gridColumn8.Name = "gridColumn8";
			this.gridColumn8.OptionsColumn.AllowEdit = false;
			this.gridColumn8.OptionsColumn.AllowFocus = false;
			this.gridColumn8.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn8.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn8.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn8.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn8.OptionsColumn.ReadOnly = true;
			this.gridColumn8.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn8.Visible = true;
			this.gridColumn8.VisibleIndex = 1;
			// 
			// gridColumn9
			// 
			this.gridColumn9.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn9.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn9.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn9.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn9.Caption = "脂肪";
			this.gridColumn9.FieldName = "FoodNut_Fat";
			this.gridColumn9.Name = "gridColumn9";
			this.gridColumn9.OptionsColumn.AllowEdit = false;
			this.gridColumn9.OptionsColumn.AllowFocus = false;
			this.gridColumn9.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn9.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn9.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn9.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn9.OptionsColumn.ReadOnly = true;
			this.gridColumn9.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn9.Visible = true;
			this.gridColumn9.VisibleIndex = 2;
			// 
			// gridColumn10
			// 
			this.gridColumn10.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn10.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn10.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn10.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn10.Caption = "碳水化合物";
			this.gridColumn10.FieldName = "FoodNut_Carbohydrate";
			this.gridColumn10.Name = "gridColumn10";
			this.gridColumn10.OptionsColumn.AllowEdit = false;
			this.gridColumn10.OptionsColumn.AllowFocus = false;
			this.gridColumn10.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn10.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn10.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn10.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn10.OptionsColumn.ReadOnly = true;
			this.gridColumn10.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn10.Visible = true;
			this.gridColumn10.VisibleIndex = 3;
			// 
			// gridColumn11
			// 
			this.gridColumn11.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn11.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn11.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn11.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn11.Caption = "能量";
			this.gridColumn11.FieldName = "FoodNut_Energy";
			this.gridColumn11.Name = "gridColumn11";
			this.gridColumn11.OptionsColumn.AllowEdit = false;
			this.gridColumn11.OptionsColumn.AllowFocus = false;
			this.gridColumn11.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn11.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn11.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn11.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn11.OptionsColumn.ReadOnly = true;
			this.gridColumn11.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn11.Visible = true;
			this.gridColumn11.VisibleIndex = 4;
			// 
			// gridColumn16
			// 
			this.gridColumn16.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn16.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn16.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn16.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn16.Caption = "备注";
			this.gridColumn16.FieldName = "FoodNut_Remark";
			this.gridColumn16.Name = "gridColumn16";
			this.gridColumn16.OptionsColumn.AllowEdit = false;
			this.gridColumn16.OptionsColumn.AllowFocus = false;
			this.gridColumn16.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn16.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn16.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn16.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn16.OptionsColumn.ReadOnly = true;
			this.gridColumn16.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn16.Visible = true;
			this.gridColumn16.VisibleIndex = 5;
			// 
			// toolTipController1
			// 
			this.toolTipController1.GetActiveObjectInfo += new DevExpress.Utils.ToolTipControllerGetActiveObjectInfoEventHandler(this.toolTipController1_GetActiveObjectInfo);
			// 
			// gridView2
			// 
			this.gridView2.GridControl = this.gridControl_Recipe_FoodNutrition;
			this.gridView2.Name = "gridView2";
			// 
			// notePanel4
			// 
			this.notePanel4.BackColor = System.Drawing.Color.LightGoldenrodYellow;
			this.notePanel4.Dock = System.Windows.Forms.DockStyle.Top;
			this.notePanel4.ForeColor = System.Drawing.Color.OrangeRed;
			this.notePanel4.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel4.Location = new System.Drawing.Point(3, 3);
			this.notePanel4.MaxRows = 5;
			this.notePanel4.Name = "notePanel4";
			this.notePanel4.ParentAutoHeight = true;
			this.notePanel4.Size = new System.Drawing.Size(258, 23);
			this.notePanel4.TabIndex = 46;
			this.notePanel4.TabStop = false;
			this.notePanel4.Text = "双击在食物用料登记处获取食物名称";
			// 
			// groupControl_RecipeLogin
			// 
			this.groupControl_RecipeLogin.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.groupControl_RecipeLogin.AppearanceCaption.Options.UseFont = true;
			this.groupControl_RecipeLogin.Controls.Add(this.textEdit_RecipeLogin_FoodName);
			this.groupControl_RecipeLogin.Controls.Add(this.textEdit_RecipeLogin_Name);
			this.groupControl_RecipeLogin.Controls.Add(this.notePanel_RecipeLogin_Name);
			this.groupControl_RecipeLogin.Controls.Add(this.dateEdit_RecipeLogin_Date);
			this.groupControl_RecipeLogin.Controls.Add(this.notePanel_RecipeLogin_Date);
			this.groupControl_RecipeLogin.Controls.Add(this.textEdit_RecipeLogin_FoodTake);
			this.groupControl_RecipeLogin.Controls.Add(this.notePanel_RecipeLogin_FoodTake);
			this.groupControl_RecipeLogin.Controls.Add(this.textEdit_RecipeLogin_BindingID);
			this.groupControl_RecipeLogin.Controls.Add(this.notePanel_RecipeLogin_FoodName);
			this.groupControl_RecipeLogin.Dock = System.Windows.Forms.DockStyle.Top;
			this.groupControl_RecipeLogin.Location = new System.Drawing.Point(0, 152);
			this.groupControl_RecipeLogin.Name = "groupControl_RecipeLogin";
			this.groupControl_RecipeLogin.Size = new System.Drawing.Size(264, 160);
			this.groupControl_RecipeLogin.TabIndex = 40;
			this.groupControl_RecipeLogin.Text = "食物用料登记";
			// 
			// textEdit_RecipeLogin_FoodName
			// 
			this.textEdit_RecipeLogin_FoodName.EditValue = "";
			this.textEdit_RecipeLogin_FoodName.Location = new System.Drawing.Point(128, 24);
			this.textEdit_RecipeLogin_FoodName.Name = "textEdit_RecipeLogin_FoodName";
			// 
			// textEdit_RecipeLogin_FoodName.Properties
			// 
			this.textEdit_RecipeLogin_FoodName.Properties.Enabled = false;
			this.textEdit_RecipeLogin_FoodName.Size = new System.Drawing.Size(88, 23);
			this.textEdit_RecipeLogin_FoodName.TabIndex = 34;
			// 
			// textEdit_RecipeLogin_Name
			// 
			this.textEdit_RecipeLogin_Name.EditValue = "";
			this.textEdit_RecipeLogin_Name.Location = new System.Drawing.Point(128, 120);
			this.textEdit_RecipeLogin_Name.Name = "textEdit_RecipeLogin_Name";
			this.textEdit_RecipeLogin_Name.Size = new System.Drawing.Size(88, 23);
			this.textEdit_RecipeLogin_Name.TabIndex = 33;
			// 
			// notePanel_RecipeLogin_Name
			// 
			this.notePanel_RecipeLogin_Name.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_RecipeLogin_Name.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_RecipeLogin_Name.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_RecipeLogin_Name.ForeColor = System.Drawing.Color.Black;
			this.notePanel_RecipeLogin_Name.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_RecipeLogin_Name.Location = new System.Drawing.Point(40, 120);
			this.notePanel_RecipeLogin_Name.MaxRows = 5;
			this.notePanel_RecipeLogin_Name.Name = "notePanel_RecipeLogin_Name";
			this.notePanel_RecipeLogin_Name.ParentAutoHeight = true;
			this.notePanel_RecipeLogin_Name.Size = new System.Drawing.Size(80, 22);
			this.notePanel_RecipeLogin_Name.TabIndex = 32;
			this.notePanel_RecipeLogin_Name.TabStop = false;
			this.notePanel_RecipeLogin_Name.Text = "菜谱名称:";
			// 
			// dateEdit_RecipeLogin_Date
			// 
			this.dateEdit_RecipeLogin_Date.EditValue = new System.DateTime(2005, 11, 17, 0, 0, 0, 0);
			this.dateEdit_RecipeLogin_Date.Location = new System.Drawing.Point(128, 88);
			this.dateEdit_RecipeLogin_Date.Name = "dateEdit_RecipeLogin_Date";
			// 
			// dateEdit_RecipeLogin_Date.Properties
			// 
			this.dateEdit_RecipeLogin_Date.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																															  new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.dateEdit_RecipeLogin_Date.Properties.Enabled = false;
			this.dateEdit_RecipeLogin_Date.Properties.Mask.EditMask = "d";
			this.dateEdit_RecipeLogin_Date.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.DateTime;
			this.dateEdit_RecipeLogin_Date.Size = new System.Drawing.Size(88, 23);
			this.dateEdit_RecipeLogin_Date.TabIndex = 31;
			// 
			// notePanel_RecipeLogin_Date
			// 
			this.notePanel_RecipeLogin_Date.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_RecipeLogin_Date.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_RecipeLogin_Date.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_RecipeLogin_Date.ForeColor = System.Drawing.Color.Black;
			this.notePanel_RecipeLogin_Date.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_RecipeLogin_Date.Location = new System.Drawing.Point(40, 88);
			this.notePanel_RecipeLogin_Date.MaxRows = 5;
			this.notePanel_RecipeLogin_Date.Name = "notePanel_RecipeLogin_Date";
			this.notePanel_RecipeLogin_Date.ParentAutoHeight = true;
			this.notePanel_RecipeLogin_Date.Size = new System.Drawing.Size(80, 22);
			this.notePanel_RecipeLogin_Date.TabIndex = 30;
			this.notePanel_RecipeLogin_Date.TabStop = false;
			this.notePanel_RecipeLogin_Date.Text = "登记日期:";
			// 
			// textEdit_RecipeLogin_FoodTake
			// 
			this.textEdit_RecipeLogin_FoodTake.EditValue = "";
			this.textEdit_RecipeLogin_FoodTake.Location = new System.Drawing.Point(128, 56);
			this.textEdit_RecipeLogin_FoodTake.Name = "textEdit_RecipeLogin_FoodTake";
			this.textEdit_RecipeLogin_FoodTake.Size = new System.Drawing.Size(88, 23);
			this.textEdit_RecipeLogin_FoodTake.TabIndex = 29;
			// 
			// notePanel_RecipeLogin_FoodTake
			// 
			this.notePanel_RecipeLogin_FoodTake.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_RecipeLogin_FoodTake.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_RecipeLogin_FoodTake.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_RecipeLogin_FoodTake.ForeColor = System.Drawing.Color.Black;
			this.notePanel_RecipeLogin_FoodTake.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_RecipeLogin_FoodTake.Location = new System.Drawing.Point(40, 56);
			this.notePanel_RecipeLogin_FoodTake.MaxRows = 5;
			this.notePanel_RecipeLogin_FoodTake.Name = "notePanel_RecipeLogin_FoodTake";
			this.notePanel_RecipeLogin_FoodTake.ParentAutoHeight = true;
			this.notePanel_RecipeLogin_FoodTake.Size = new System.Drawing.Size(80, 22);
			this.notePanel_RecipeLogin_FoodTake.TabIndex = 28;
			this.notePanel_RecipeLogin_FoodTake.TabStop = false;
			this.notePanel_RecipeLogin_FoodTake.Text = "  摄入量:";
			// 
			// textEdit_RecipeLogin_BindingID
			// 
			this.textEdit_RecipeLogin_BindingID.EditValue = "";
			this.textEdit_RecipeLogin_BindingID.Location = new System.Drawing.Point(200, 24);
			this.textEdit_RecipeLogin_BindingID.Name = "textEdit_RecipeLogin_BindingID";
			// 
			// textEdit_RecipeLogin_BindingID.Properties
			// 
			this.textEdit_RecipeLogin_BindingID.Properties.AutoHeight = false;
			this.textEdit_RecipeLogin_BindingID.Properties.Enabled = false;
			this.textEdit_RecipeLogin_BindingID.Size = new System.Drawing.Size(8, 16);
			this.textEdit_RecipeLogin_BindingID.TabIndex = 27;
			// 
			// notePanel_RecipeLogin_FoodName
			// 
			this.notePanel_RecipeLogin_FoodName.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_RecipeLogin_FoodName.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_RecipeLogin_FoodName.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_RecipeLogin_FoodName.ForeColor = System.Drawing.Color.Black;
			this.notePanel_RecipeLogin_FoodName.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_RecipeLogin_FoodName.Location = new System.Drawing.Point(40, 24);
			this.notePanel_RecipeLogin_FoodName.MaxRows = 5;
			this.notePanel_RecipeLogin_FoodName.Name = "notePanel_RecipeLogin_FoodName";
			this.notePanel_RecipeLogin_FoodName.ParentAutoHeight = true;
			this.notePanel_RecipeLogin_FoodName.Size = new System.Drawing.Size(80, 22);
			this.notePanel_RecipeLogin_FoodName.TabIndex = 26;
			this.notePanel_RecipeLogin_FoodName.TabStop = false;
			this.notePanel_RecipeLogin_FoodName.Text = "食物名称:";
			// 
			// groupControl_RecipeSer
			// 
			this.groupControl_RecipeSer.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.groupControl_RecipeSer.Appearance.Options.UseFont = true;
			this.groupControl_RecipeSer.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.groupControl_RecipeSer.AppearanceCaption.Options.UseFont = true;
			this.groupControl_RecipeSer.Controls.Add(this.comboBoxEdit_RecipeSer_FoodCategory);
			this.groupControl_RecipeSer.Controls.Add(this.notePanel_RecipeSer_FoodCategory);
			this.groupControl_RecipeSer.Controls.Add(this.textEdit_RecipeSer_FoodName);
			this.groupControl_RecipeSer.Controls.Add(this.notePanel_RecipeSer_FoodName);
			this.groupControl_RecipeSer.Dock = System.Windows.Forms.DockStyle.Top;
			this.groupControl_RecipeSer.Location = new System.Drawing.Point(0, 56);
			this.groupControl_RecipeSer.Name = "groupControl_RecipeSer";
			this.groupControl_RecipeSer.Size = new System.Drawing.Size(264, 96);
			this.groupControl_RecipeSer.TabIndex = 39;
			this.groupControl_RecipeSer.Text = "食物查询";
			// 
			// comboBoxEdit_RecipeSer_FoodCategory
			// 
			this.comboBoxEdit_RecipeSer_FoodCategory.EditValue = "全部";
			this.comboBoxEdit_RecipeSer_FoodCategory.Location = new System.Drawing.Point(128, 56);
			this.comboBoxEdit_RecipeSer_FoodCategory.Name = "comboBoxEdit_RecipeSer_FoodCategory";
			// 
			// comboBoxEdit_RecipeSer_FoodCategory.Properties
			// 
			this.comboBoxEdit_RecipeSer_FoodCategory.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																																		new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.comboBoxEdit_RecipeSer_FoodCategory.Properties.Items.AddRange(new object[] {
																								"肉禽水产类",
																								"水果类",
																								"蔬菜类",
																								"粮食类",
																								"调味品",
																								"糕点",
																								"豆制品",
																								"乳类",
																								"菌藻类",
																								"其他"});
			this.comboBoxEdit_RecipeSer_FoodCategory.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
			this.comboBoxEdit_RecipeSer_FoodCategory.Size = new System.Drawing.Size(88, 23);
			this.comboBoxEdit_RecipeSer_FoodCategory.TabIndex = 27;
			this.comboBoxEdit_RecipeSer_FoodCategory.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit_RecipeSer_FoodCategory_SelectedIndexChanged);
			// 
			// notePanel_RecipeSer_FoodCategory
			// 
			this.notePanel_RecipeSer_FoodCategory.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_RecipeSer_FoodCategory.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_RecipeSer_FoodCategory.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_RecipeSer_FoodCategory.ForeColor = System.Drawing.Color.Black;
			this.notePanel_RecipeSer_FoodCategory.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_RecipeSer_FoodCategory.Location = new System.Drawing.Point(40, 56);
			this.notePanel_RecipeSer_FoodCategory.MaxRows = 5;
			this.notePanel_RecipeSer_FoodCategory.Name = "notePanel_RecipeSer_FoodCategory";
			this.notePanel_RecipeSer_FoodCategory.ParentAutoHeight = true;
			this.notePanel_RecipeSer_FoodCategory.Size = new System.Drawing.Size(80, 22);
			this.notePanel_RecipeSer_FoodCategory.TabIndex = 26;
			this.notePanel_RecipeSer_FoodCategory.TabStop = false;
			this.notePanel_RecipeSer_FoodCategory.Text = "食物分类:";
			// 
			// textEdit_RecipeSer_FoodName
			// 
			this.textEdit_RecipeSer_FoodName.EditValue = "";
			this.textEdit_RecipeSer_FoodName.Location = new System.Drawing.Point(128, 24);
			this.textEdit_RecipeSer_FoodName.Name = "textEdit_RecipeSer_FoodName";
			this.textEdit_RecipeSer_FoodName.Size = new System.Drawing.Size(88, 23);
			this.textEdit_RecipeSer_FoodName.TabIndex = 25;
			this.textEdit_RecipeSer_FoodName.EditValueChanged += new System.EventHandler(this.textEdit_RecipeSer_FoodName_EditValueChanged);
			// 
			// notePanel_RecipeSer_FoodName
			// 
			this.notePanel_RecipeSer_FoodName.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_RecipeSer_FoodName.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_RecipeSer_FoodName.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_RecipeSer_FoodName.ForeColor = System.Drawing.Color.Black;
			this.notePanel_RecipeSer_FoodName.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_RecipeSer_FoodName.Location = new System.Drawing.Point(40, 24);
			this.notePanel_RecipeSer_FoodName.MaxRows = 5;
			this.notePanel_RecipeSer_FoodName.Name = "notePanel_RecipeSer_FoodName";
			this.notePanel_RecipeSer_FoodName.ParentAutoHeight = true;
			this.notePanel_RecipeSer_FoodName.Size = new System.Drawing.Size(80, 22);
			this.notePanel_RecipeSer_FoodName.TabIndex = 24;
			this.notePanel_RecipeSer_FoodName.TabStop = false;
			this.notePanel_RecipeSer_FoodName.Text = "食物名称:";
			// 
			// groupControl_RecipeOpr
			// 
			this.groupControl_RecipeOpr.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.groupControl_RecipeOpr.AppearanceCaption.Options.UseFont = true;
			this.groupControl_RecipeOpr.Controls.Add(this.simpleButton_RecipeModify);
			this.groupControl_RecipeOpr.Controls.Add(this.simpleButton_RecipeSave);
			this.groupControl_RecipeOpr.Dock = System.Windows.Forms.DockStyle.Top;
			this.groupControl_RecipeOpr.Location = new System.Drawing.Point(0, 0);
			this.groupControl_RecipeOpr.Name = "groupControl_RecipeOpr";
			this.groupControl_RecipeOpr.Size = new System.Drawing.Size(264, 56);
			this.groupControl_RecipeOpr.TabIndex = 38;
			this.groupControl_RecipeOpr.Text = "食谱操作";
			// 
			// simpleButton_RecipeModify
			// 
			this.simpleButton_RecipeModify.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.simpleButton_RecipeModify.Appearance.ForeColor = System.Drawing.Color.DarkMagenta;
			this.simpleButton_RecipeModify.Appearance.Options.UseFont = true;
			this.simpleButton_RecipeModify.Appearance.Options.UseForeColor = true;
			this.simpleButton_RecipeModify.Enabled = false;
			this.simpleButton_RecipeModify.Location = new System.Drawing.Point(144, 24);
			this.simpleButton_RecipeModify.Name = "simpleButton_RecipeModify";
			this.simpleButton_RecipeModify.Size = new System.Drawing.Size(72, 26);
			this.simpleButton_RecipeModify.TabIndex = 40;
			this.simpleButton_RecipeModify.Tag = 4;
			this.simpleButton_RecipeModify.Text = "修改";
			this.simpleButton_RecipeModify.Click += new System.EventHandler(this.simpleButton_RecipeModify_Click);
			// 
			// simpleButton_RecipeSave
			// 
			this.simpleButton_RecipeSave.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.simpleButton_RecipeSave.Appearance.ForeColor = System.Drawing.Color.DarkMagenta;
			this.simpleButton_RecipeSave.Appearance.Options.UseFont = true;
			this.simpleButton_RecipeSave.Appearance.Options.UseForeColor = true;
			this.simpleButton_RecipeSave.Enabled = false;
			this.simpleButton_RecipeSave.Location = new System.Drawing.Point(48, 24);
			this.simpleButton_RecipeSave.Name = "simpleButton_RecipeSave";
			this.simpleButton_RecipeSave.Size = new System.Drawing.Size(72, 26);
			this.simpleButton_RecipeSave.TabIndex = 38;
			this.simpleButton_RecipeSave.Tag = 4;
			this.simpleButton_RecipeSave.Text = "保存";
			this.simpleButton_RecipeSave.Click += new System.EventHandler(this.simpleButton_RecipeSave_Click);
			// 
			// panelControl11
			// 
			this.panelControl11.Controls.Add(this.gridControl_RecipeLogin);
			this.panelControl11.Controls.Add(this.notePanel5);
			this.panelControl11.Dock = System.Windows.Forms.DockStyle.Fill;
			this.panelControl11.Location = new System.Drawing.Point(0, 112);
			this.panelControl11.Name = "panelControl11";
			this.panelControl11.Size = new System.Drawing.Size(488, 397);
			this.panelControl11.TabIndex = 26;
			this.panelControl11.Text = "panelControl11";
			// 
			// gridControl_RecipeLogin
			// 
			this.gridControl_RecipeLogin.Dock = System.Windows.Forms.DockStyle.Fill;
			// 
			// gridControl_RecipeLogin.EmbeddedNavigator
			// 
			this.gridControl_RecipeLogin.EmbeddedNavigator.Name = "";
			this.gridControl_RecipeLogin.Location = new System.Drawing.Point(3, 26);
			this.gridControl_RecipeLogin.MainView = this.gridView13;
			this.gridControl_RecipeLogin.Name = "gridControl_RecipeLogin";
			this.barManager1.SetPopupContextMenu(this.gridControl_RecipeLogin, this.popupMenu4);
			this.gridControl_RecipeLogin.Size = new System.Drawing.Size(482, 368);
			this.gridControl_RecipeLogin.TabIndex = 34;
			this.gridControl_RecipeLogin.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
																												   this.gridView13});
			this.gridControl_RecipeLogin.Click += new System.EventHandler(this.gridControl_RecipeLogin_Click);
			// 
			// gridView13
			// 
			this.gridView13.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
																							  this.gridColumn50,
																							  this.gridColumn51,
																							  this.gridColumn52,
																							  this.gridColumn53});
			this.gridView13.GridControl = this.gridControl_RecipeLogin;
			this.gridView13.Name = "gridView13";
			this.gridView13.OptionsCustomization.AllowFilter = false;
			this.gridView13.OptionsView.ShowFilterPanel = false;
			this.gridView13.OptionsView.ShowGroupPanel = false;
			// 
			// gridColumn50
			// 
			this.gridColumn50.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn50.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn50.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn50.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn50.Caption = "食物名称";
			this.gridColumn50.FieldName = "FoodNut_FoodName";
			this.gridColumn50.Name = "gridColumn50";
			this.gridColumn50.OptionsColumn.AllowEdit = false;
			this.gridColumn50.OptionsColumn.AllowFocus = false;
			this.gridColumn50.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn50.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn50.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn50.OptionsColumn.AllowMove = false;
			this.gridColumn50.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn50.OptionsColumn.FixedWidth = true;
			this.gridColumn50.OptionsColumn.ReadOnly = true;
			this.gridColumn50.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn50.Visible = true;
			this.gridColumn50.VisibleIndex = 0;
			// 
			// gridColumn51
			// 
			this.gridColumn51.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn51.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn51.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn51.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn51.Caption = "登记日期";
			this.gridColumn51.FieldName = "ACCFood_AddTime";
			this.gridColumn51.Name = "gridColumn51";
			this.gridColumn51.OptionsColumn.AllowEdit = false;
			this.gridColumn51.OptionsColumn.AllowFocus = false;
			this.gridColumn51.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn51.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn51.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn51.OptionsColumn.AllowMove = false;
			this.gridColumn51.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn51.OptionsColumn.FixedWidth = true;
			this.gridColumn51.OptionsColumn.ReadOnly = true;
			this.gridColumn51.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn51.Visible = true;
			this.gridColumn51.VisibleIndex = 1;
			// 
			// gridColumn52
			// 
			this.gridColumn52.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn52.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn52.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn52.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn52.Caption = "摄入量";
			this.gridColumn52.FieldName = "ACCFood_TakeAmount";
			this.gridColumn52.Name = "gridColumn52";
			this.gridColumn52.OptionsColumn.AllowEdit = false;
			this.gridColumn52.OptionsColumn.AllowFocus = false;
			this.gridColumn52.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn52.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn52.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn52.OptionsColumn.AllowMove = false;
			this.gridColumn52.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn52.OptionsColumn.FixedWidth = true;
			this.gridColumn52.OptionsColumn.ReadOnly = true;
			this.gridColumn52.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn52.Visible = true;
			this.gridColumn52.VisibleIndex = 2;
			// 
			// gridColumn53
			// 
			this.gridColumn53.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn53.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn53.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn53.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn53.Caption = "菜谱名称";
			this.gridColumn53.FieldName = "ACCFood_Remark";
			this.gridColumn53.Name = "gridColumn53";
			this.gridColumn53.OptionsColumn.AllowEdit = false;
			this.gridColumn53.OptionsColumn.AllowFocus = false;
			this.gridColumn53.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn53.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn53.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn53.OptionsColumn.AllowMove = false;
			this.gridColumn53.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn53.OptionsColumn.FixedWidth = true;
			this.gridColumn53.OptionsColumn.ReadOnly = true;
			this.gridColumn53.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn53.Visible = true;
			this.gridColumn53.VisibleIndex = 3;
			// 
			// notePanel5
			// 
			this.notePanel5.BackColor = System.Drawing.Color.LightGoldenrodYellow;
			this.notePanel5.Dock = System.Windows.Forms.DockStyle.Top;
			this.notePanel5.ForeColor = System.Drawing.Color.OrangeRed;
			this.notePanel5.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel5.Location = new System.Drawing.Point(3, 3);
			this.notePanel5.MaxRows = 5;
			this.notePanel5.Name = "notePanel5";
			this.notePanel5.ParentAutoHeight = true;
			this.notePanel5.Size = new System.Drawing.Size(482, 23);
			this.notePanel5.TabIndex = 33;
			this.notePanel5.TabStop = false;
			this.notePanel5.Text = "选中一行可以在食物用料登记处对当日的食谱用料进行修改";
			// 
			// panelControl2
			// 
			this.panelControl2.Controls.Add(this.textEdit_Recipe_FoodName);
			this.panelControl2.Controls.Add(this.notePanel_Recipe_FoodName);
			this.panelControl2.Controls.Add(this.notePanel_Recipe);
			this.panelControl2.Controls.Add(this.comboBoxEdit_Recipe_RecipeCategory);
			this.panelControl2.Controls.Add(this.notePanel_Recipe_RecipeCategory);
			this.panelControl2.Controls.Add(this.dateEdit_Recipe_EndDate);
			this.panelControl2.Controls.Add(this.notePanel_Recipe_EndDate);
			this.panelControl2.Controls.Add(this.dateEdit_Recipe_BegDate);
			this.panelControl2.Controls.Add(this.notePanel_Recipe_BegDate);
			this.panelControl2.Dock = System.Windows.Forms.DockStyle.Top;
			this.panelControl2.Location = new System.Drawing.Point(0, 0);
			this.panelControl2.Name = "panelControl2";
			this.panelControl2.Size = new System.Drawing.Size(488, 112);
			this.panelControl2.TabIndex = 25;
			this.panelControl2.Text = "panelControl2";
			// 
			// textEdit_Recipe_FoodName
			// 
			this.textEdit_Recipe_FoodName.EditValue = "";
			this.textEdit_Recipe_FoodName.Location = new System.Drawing.Point(352, 40);
			this.textEdit_Recipe_FoodName.Name = "textEdit_Recipe_FoodName";
			this.textEdit_Recipe_FoodName.Size = new System.Drawing.Size(88, 23);
			this.textEdit_Recipe_FoodName.TabIndex = 34;
			this.textEdit_Recipe_FoodName.EditValueChanged += new System.EventHandler(this.textEdit_Recipe_FoodName_EditValueChanged);
			// 
			// notePanel_Recipe_FoodName
			// 
			this.notePanel_Recipe_FoodName.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_Recipe_FoodName.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_Recipe_FoodName.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_Recipe_FoodName.ForeColor = System.Drawing.Color.Black;
			this.notePanel_Recipe_FoodName.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_Recipe_FoodName.Location = new System.Drawing.Point(256, 40);
			this.notePanel_Recipe_FoodName.MaxRows = 5;
			this.notePanel_Recipe_FoodName.Name = "notePanel_Recipe_FoodName";
			this.notePanel_Recipe_FoodName.ParentAutoHeight = true;
			this.notePanel_Recipe_FoodName.Size = new System.Drawing.Size(80, 22);
			this.notePanel_Recipe_FoodName.TabIndex = 33;
			this.notePanel_Recipe_FoodName.TabStop = false;
			this.notePanel_Recipe_FoodName.Text = "食物名称:";
			// 
			// notePanel_Recipe
			// 
			this.notePanel_Recipe.BackColor = System.Drawing.Color.LightGoldenrodYellow;
			this.notePanel_Recipe.Dock = System.Windows.Forms.DockStyle.Top;
			this.notePanel_Recipe.ForeColor = System.Drawing.Color.OrangeRed;
			this.notePanel_Recipe.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_Recipe.Location = new System.Drawing.Point(3, 3);
			this.notePanel_Recipe.MaxRows = 5;
			this.notePanel_Recipe.Name = "notePanel_Recipe";
			this.notePanel_Recipe.ParentAutoHeight = true;
			this.notePanel_Recipe.Size = new System.Drawing.Size(482, 23);
			this.notePanel_Recipe.TabIndex = 32;
			this.notePanel_Recipe.TabStop = false;
			this.notePanel_Recipe.Text = "查询您已设置的食谱,摄入量以\"斤\"计算";
			// 
			// comboBoxEdit_Recipe_RecipeCategory
			// 
			this.comboBoxEdit_Recipe_RecipeCategory.EditValue = "全部";
			this.comboBoxEdit_Recipe_RecipeCategory.Location = new System.Drawing.Point(152, 40);
			this.comboBoxEdit_Recipe_RecipeCategory.Name = "comboBoxEdit_Recipe_RecipeCategory";
			// 
			// comboBoxEdit_Recipe_RecipeCategory.Properties
			// 
			this.comboBoxEdit_Recipe_RecipeCategory.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																																	   new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.comboBoxEdit_Recipe_RecipeCategory.Properties.Items.AddRange(new object[] {
																							   "全部",
																							   "肉禽水产类",
																							   "水果类",
																							   "蔬菜类",
																							   "粮食类",
																							   "调味品",
																							   "糕点",
																							   "豆制品",
																							   "乳类",
																							   "菌藻类",
																							   "其他"});
			this.comboBoxEdit_Recipe_RecipeCategory.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
			this.comboBoxEdit_Recipe_RecipeCategory.Size = new System.Drawing.Size(88, 23);
			this.comboBoxEdit_Recipe_RecipeCategory.TabIndex = 30;
			this.comboBoxEdit_Recipe_RecipeCategory.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit_Recipe_RecipeCategory_SelectedIndexChanged);
			// 
			// notePanel_Recipe_RecipeCategory
			// 
			this.notePanel_Recipe_RecipeCategory.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_Recipe_RecipeCategory.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_Recipe_RecipeCategory.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_Recipe_RecipeCategory.ForeColor = System.Drawing.Color.Black;
			this.notePanel_Recipe_RecipeCategory.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_Recipe_RecipeCategory.Location = new System.Drawing.Point(56, 40);
			this.notePanel_Recipe_RecipeCategory.MaxRows = 5;
			this.notePanel_Recipe_RecipeCategory.Name = "notePanel_Recipe_RecipeCategory";
			this.notePanel_Recipe_RecipeCategory.ParentAutoHeight = true;
			this.notePanel_Recipe_RecipeCategory.Size = new System.Drawing.Size(80, 22);
			this.notePanel_Recipe_RecipeCategory.TabIndex = 29;
			this.notePanel_Recipe_RecipeCategory.TabStop = false;
			this.notePanel_Recipe_RecipeCategory.Text = "食谱分类:";
			// 
			// dateEdit_Recipe_EndDate
			// 
			this.dateEdit_Recipe_EndDate.EditValue = new System.DateTime(2005, 11, 17, 0, 0, 0, 0);
			this.dateEdit_Recipe_EndDate.Location = new System.Drawing.Point(352, 72);
			this.dateEdit_Recipe_EndDate.Name = "dateEdit_Recipe_EndDate";
			// 
			// dateEdit_Recipe_EndDate.Properties
			// 
			this.dateEdit_Recipe_EndDate.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																															new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.dateEdit_Recipe_EndDate.Properties.Mask.EditMask = "d";
			this.dateEdit_Recipe_EndDate.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.DateTime;
			this.dateEdit_Recipe_EndDate.Size = new System.Drawing.Size(88, 23);
			this.dateEdit_Recipe_EndDate.TabIndex = 28;
			// 
			// notePanel_Recipe_EndDate
			// 
			this.notePanel_Recipe_EndDate.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_Recipe_EndDate.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_Recipe_EndDate.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_Recipe_EndDate.ForeColor = System.Drawing.Color.Black;
			this.notePanel_Recipe_EndDate.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_Recipe_EndDate.Location = new System.Drawing.Point(256, 72);
			this.notePanel_Recipe_EndDate.MaxRows = 5;
			this.notePanel_Recipe_EndDate.Name = "notePanel_Recipe_EndDate";
			this.notePanel_Recipe_EndDate.ParentAutoHeight = true;
			this.notePanel_Recipe_EndDate.Size = new System.Drawing.Size(80, 22);
			this.notePanel_Recipe_EndDate.TabIndex = 27;
			this.notePanel_Recipe_EndDate.TabStop = false;
			this.notePanel_Recipe_EndDate.Text = "结束时间:";
			// 
			// dateEdit_Recipe_BegDate
			// 
			this.dateEdit_Recipe_BegDate.EditValue = new System.DateTime(2005, 11, 17, 0, 0, 0, 0);
			this.dateEdit_Recipe_BegDate.Location = new System.Drawing.Point(152, 72);
			this.dateEdit_Recipe_BegDate.Name = "dateEdit_Recipe_BegDate";
			// 
			// dateEdit_Recipe_BegDate.Properties
			// 
			this.dateEdit_Recipe_BegDate.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																															new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.dateEdit_Recipe_BegDate.Properties.Mask.EditMask = "d";
			this.dateEdit_Recipe_BegDate.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.DateTime;
			this.dateEdit_Recipe_BegDate.Size = new System.Drawing.Size(88, 23);
			this.dateEdit_Recipe_BegDate.TabIndex = 26;
			// 
			// notePanel_Recipe_BegDate
			// 
			this.notePanel_Recipe_BegDate.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_Recipe_BegDate.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_Recipe_BegDate.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_Recipe_BegDate.ForeColor = System.Drawing.Color.Black;
			this.notePanel_Recipe_BegDate.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_Recipe_BegDate.Location = new System.Drawing.Point(56, 72);
			this.notePanel_Recipe_BegDate.MaxRows = 5;
			this.notePanel_Recipe_BegDate.Name = "notePanel_Recipe_BegDate";
			this.notePanel_Recipe_BegDate.ParentAutoHeight = true;
			this.notePanel_Recipe_BegDate.Size = new System.Drawing.Size(80, 22);
			this.notePanel_Recipe_BegDate.TabIndex = 25;
			this.notePanel_Recipe_BegDate.TabStop = false;
			this.notePanel_Recipe_BegDate.Text = "起始时间:";
			// 
			// xtraTabPage3
			// 
			this.xtraTabPage3.Appearance.PageClient.BackColor = System.Drawing.Color.WhiteSmoke;
			this.xtraTabPage3.Appearance.PageClient.Options.UseBackColor = true;
			this.xtraTabPage3.Controls.Add(this.splitContainerControl3);
			this.xtraTabPage3.Name = "xtraTabPage3";
			this.xtraTabPage3.PageVisible = false;
			this.xtraTabPage3.Size = new System.Drawing.Size(768, 515);
			this.xtraTabPage3.Text = "集体膳食安排";
			// 
			// splitContainerControl3
			// 
			this.splitContainerControl3.Dock = System.Windows.Forms.DockStyle.Fill;
			this.splitContainerControl3.Location = new System.Drawing.Point(0, 0);
			this.splitContainerControl3.Name = "splitContainerControl3";
			this.splitContainerControl3.Panel1.Controls.Add(this.groupControl_MealLogin);
			this.splitContainerControl3.Panel1.Controls.Add(this.groupControl_MealAdd);
			this.splitContainerControl3.Panel1.Text = "splitContainerControl3_Panel1";
			this.splitContainerControl3.Panel2.Controls.Add(this.groupControl_MealArr);
			this.splitContainerControl3.Panel2.Controls.Add(this.groupControl_MealPreview);
			this.splitContainerControl3.Panel2.Controls.Add(this.panelControl3);
			this.splitContainerControl3.Panel2.Text = "splitContainerControl3_Panel2";
			this.splitContainerControl3.Size = new System.Drawing.Size(768, 515);
			this.splitContainerControl3.SplitterPosition = 239;
			this.splitContainerControl3.TabIndex = 0;
			this.splitContainerControl3.Text = "splitContainerControl3";
			// 
			// groupControl_MealLogin
			// 
			this.groupControl_MealLogin.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.groupControl_MealLogin.AppearanceCaption.Options.UseFont = true;
			this.groupControl_MealLogin.Controls.Add(this.notePanel_MealArr);
			this.groupControl_MealLogin.Controls.Add(this.checkEdit_Snack);
			this.groupControl_MealLogin.Controls.Add(this.checkEdit_Dinner);
			this.groupControl_MealLogin.Controls.Add(this.checkEdit_Lunch);
			this.groupControl_MealLogin.Controls.Add(this.checkEdit_Breakfast);
			this.groupControl_MealLogin.Dock = System.Windows.Forms.DockStyle.Top;
			this.groupControl_MealLogin.Location = new System.Drawing.Point(0, 152);
			this.groupControl_MealLogin.Name = "groupControl_MealLogin";
			this.groupControl_MealLogin.Size = new System.Drawing.Size(233, 144);
			this.groupControl_MealLogin.TabIndex = 1;
			this.groupControl_MealLogin.Text = "用餐登记";
			// 
			// notePanel_MealArr
			// 
			this.notePanel_MealArr.BackColor = System.Drawing.Color.LightGoldenrodYellow;
			this.notePanel_MealArr.Dock = System.Windows.Forms.DockStyle.Top;
			this.notePanel_MealArr.ForeColor = System.Drawing.Color.OrangeRed;
			this.notePanel_MealArr.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_MealArr.Location = new System.Drawing.Point(3, 18);
			this.notePanel_MealArr.MaxRows = 5;
			this.notePanel_MealArr.Name = "notePanel_MealArr";
			this.notePanel_MealArr.ParentAutoHeight = true;
			this.notePanel_MealArr.Size = new System.Drawing.Size(227, 23);
			this.notePanel_MealArr.TabIndex = 34;
			this.notePanel_MealArr.TabStop = false;
			this.notePanel_MealArr.Text = "添加您的膳食安排";
			// 
			// checkEdit_Snack
			// 
			this.checkEdit_Snack.Location = new System.Drawing.Point(128, 96);
			this.checkEdit_Snack.Name = "checkEdit_Snack";
			// 
			// checkEdit_Snack.Properties
			// 
			this.checkEdit_Snack.Properties.Caption = "点心";
			this.checkEdit_Snack.Size = new System.Drawing.Size(56, 19);
			this.checkEdit_Snack.TabIndex = 3;
			// 
			// checkEdit_Dinner
			// 
			this.checkEdit_Dinner.Location = new System.Drawing.Point(48, 96);
			this.checkEdit_Dinner.Name = "checkEdit_Dinner";
			// 
			// checkEdit_Dinner.Properties
			// 
			this.checkEdit_Dinner.Properties.Caption = "晚餐";
			this.checkEdit_Dinner.Size = new System.Drawing.Size(56, 19);
			this.checkEdit_Dinner.TabIndex = 2;
			// 
			// checkEdit_Lunch
			// 
			this.checkEdit_Lunch.Location = new System.Drawing.Point(128, 64);
			this.checkEdit_Lunch.Name = "checkEdit_Lunch";
			// 
			// checkEdit_Lunch.Properties
			// 
			this.checkEdit_Lunch.Properties.Caption = "午餐";
			this.checkEdit_Lunch.Size = new System.Drawing.Size(56, 19);
			this.checkEdit_Lunch.TabIndex = 1;
			// 
			// checkEdit_Breakfast
			// 
			this.checkEdit_Breakfast.Location = new System.Drawing.Point(48, 64);
			this.checkEdit_Breakfast.Name = "checkEdit_Breakfast";
			// 
			// checkEdit_Breakfast.Properties
			// 
			this.checkEdit_Breakfast.Properties.Caption = "早餐";
			this.checkEdit_Breakfast.Size = new System.Drawing.Size(56, 19);
			this.checkEdit_Breakfast.TabIndex = 0;
			// 
			// groupControl_MealAdd
			// 
			this.groupControl_MealAdd.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.groupControl_MealAdd.AppearanceCaption.Options.UseFont = true;
			this.groupControl_MealAdd.Controls.Add(this.textEdit_MealName);
			this.groupControl_MealAdd.Controls.Add(this.textEdit_MealRemark);
			this.groupControl_MealAdd.Controls.Add(this.notePanel_MealRemark);
			this.groupControl_MealAdd.Controls.Add(this.textEdit_MealID);
			this.groupControl_MealAdd.Controls.Add(this.notePanel_MealName);
			this.groupControl_MealAdd.Controls.Add(this.notePanel_MealNameAdd);
			this.groupControl_MealAdd.Dock = System.Windows.Forms.DockStyle.Top;
			this.groupControl_MealAdd.Location = new System.Drawing.Point(0, 0);
			this.groupControl_MealAdd.Name = "groupControl_MealAdd";
			this.groupControl_MealAdd.Size = new System.Drawing.Size(233, 152);
			this.groupControl_MealAdd.TabIndex = 0;
			this.groupControl_MealAdd.Text = "膳食添加";
			// 
			// textEdit_MealName
			// 
			this.textEdit_MealName.EditValue = "";
			this.textEdit_MealName.Location = new System.Drawing.Point(112, 64);
			this.textEdit_MealName.Name = "textEdit_MealName";
			this.textEdit_MealName.Size = new System.Drawing.Size(96, 23);
			this.textEdit_MealName.TabIndex = 38;
			// 
			// textEdit_MealRemark
			// 
			this.textEdit_MealRemark.EditValue = "";
			this.textEdit_MealRemark.Location = new System.Drawing.Point(112, 96);
			this.textEdit_MealRemark.Name = "textEdit_MealRemark";
			this.textEdit_MealRemark.Size = new System.Drawing.Size(96, 23);
			this.textEdit_MealRemark.TabIndex = 37;
			// 
			// notePanel_MealRemark
			// 
			this.notePanel_MealRemark.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_MealRemark.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_MealRemark.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_MealRemark.ForeColor = System.Drawing.Color.Black;
			this.notePanel_MealRemark.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_MealRemark.Location = new System.Drawing.Point(24, 96);
			this.notePanel_MealRemark.MaxRows = 5;
			this.notePanel_MealRemark.Name = "notePanel_MealRemark";
			this.notePanel_MealRemark.ParentAutoHeight = true;
			this.notePanel_MealRemark.Size = new System.Drawing.Size(80, 22);
			this.notePanel_MealRemark.TabIndex = 36;
			this.notePanel_MealRemark.TabStop = false;
			this.notePanel_MealRemark.Text = "膳食说明:";
			// 
			// textEdit_MealID
			// 
			this.textEdit_MealID.EditValue = "";
			this.textEdit_MealID.Location = new System.Drawing.Point(184, 64);
			this.textEdit_MealID.Name = "textEdit_MealID";
			// 
			// textEdit_MealID.Properties
			// 
			this.textEdit_MealID.Properties.AutoHeight = false;
			this.textEdit_MealID.Size = new System.Drawing.Size(8, 16);
			this.textEdit_MealID.TabIndex = 35;
			// 
			// notePanel_MealName
			// 
			this.notePanel_MealName.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_MealName.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_MealName.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_MealName.ForeColor = System.Drawing.Color.Black;
			this.notePanel_MealName.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_MealName.Location = new System.Drawing.Point(24, 61);
			this.notePanel_MealName.MaxRows = 5;
			this.notePanel_MealName.Name = "notePanel_MealName";
			this.notePanel_MealName.ParentAutoHeight = true;
			this.notePanel_MealName.Size = new System.Drawing.Size(80, 22);
			this.notePanel_MealName.TabIndex = 34;
			this.notePanel_MealName.TabStop = false;
			this.notePanel_MealName.Text = "膳食名称:";
			// 
			// notePanel_MealNameAdd
			// 
			this.notePanel_MealNameAdd.BackColor = System.Drawing.Color.LightGoldenrodYellow;
			this.notePanel_MealNameAdd.Dock = System.Windows.Forms.DockStyle.Top;
			this.notePanel_MealNameAdd.ForeColor = System.Drawing.Color.OrangeRed;
			this.notePanel_MealNameAdd.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_MealNameAdd.Location = new System.Drawing.Point(3, 18);
			this.notePanel_MealNameAdd.MaxRows = 5;
			this.notePanel_MealNameAdd.Name = "notePanel_MealNameAdd";
			this.notePanel_MealNameAdd.ParentAutoHeight = true;
			this.notePanel_MealNameAdd.Size = new System.Drawing.Size(227, 23);
			this.notePanel_MealNameAdd.TabIndex = 33;
			this.notePanel_MealNameAdd.TabStop = false;
			this.notePanel_MealNameAdd.Text = "添加您的膳食名称";
			// 
			// groupControl_MealArr
			// 
			this.groupControl_MealArr.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.groupControl_MealArr.AppearanceCaption.Options.UseFont = true;
			this.groupControl_MealArr.Controls.Add(this.splitContainerControl4);
			this.groupControl_MealArr.Dock = System.Windows.Forms.DockStyle.Top;
			this.groupControl_MealArr.Location = new System.Drawing.Point(0, 312);
			this.groupControl_MealArr.Name = "groupControl_MealArr";
			this.groupControl_MealArr.Size = new System.Drawing.Size(519, 224);
			this.groupControl_MealArr.TabIndex = 2;
			this.groupControl_MealArr.Text = "膳食设置";
			this.groupControl_MealArr.Visible = false;
			// 
			// splitContainerControl4
			// 
			this.splitContainerControl4.Dock = System.Windows.Forms.DockStyle.Fill;
			this.splitContainerControl4.Location = new System.Drawing.Point(3, 18);
			this.splitContainerControl4.Name = "splitContainerControl4";
			this.splitContainerControl4.Panel1.Controls.Add(this.notePanel_GradeArr);
			this.splitContainerControl4.Panel1.Controls.Add(this.notePanel_MealArr_Grade);
			this.splitContainerControl4.Panel1.Controls.Add(this.checkEdit_MealArr_gThree);
			this.splitContainerControl4.Panel1.Controls.Add(this.notePanel_MealArr_Name);
			this.splitContainerControl4.Panel1.Controls.Add(this.checkEdit_MealArr_gTwo);
			this.splitContainerControl4.Panel1.Controls.Add(this.checkEdit_MealArr_gOne);
			this.splitContainerControl4.Panel1.Controls.Add(this.comboBoxEdit_MealArr_Name);
			this.splitContainerControl4.Panel1.Controls.Add(this.checkEdit_MealArr_gFour);
			this.splitContainerControl4.Panel1.Controls.Add(this.checkEdit_MealArr_gFive);
			this.splitContainerControl4.Panel1.Controls.Add(this.checkEdit_MealArr_IsUsed);
			this.splitContainerControl4.Panel1.Text = "splitContainerControl4_Panel1";
			this.splitContainerControl4.Panel2.Controls.Add(this.label_Lunch);
			this.splitContainerControl4.Panel2.Controls.Add(this.label_Snack);
			this.splitContainerControl4.Panel2.Controls.Add(this.label_Super);
			this.splitContainerControl4.Panel2.Controls.Add(this.label_Breakfast);
			this.splitContainerControl4.Panel2.Controls.Add(this.notePanel_MealArr_ePreview);
			this.splitContainerControl4.Panel2.Text = "splitContainerControl4_Panel2";
			this.splitContainerControl4.Size = new System.Drawing.Size(513, 203);
			this.splitContainerControl4.SplitterPosition = 242;
			this.splitContainerControl4.TabIndex = 0;
			this.splitContainerControl4.Text = "splitContainerControl4";
			// 
			// notePanel_GradeArr
			// 
			this.notePanel_GradeArr.BackColor = System.Drawing.Color.LightGoldenrodYellow;
			this.notePanel_GradeArr.Dock = System.Windows.Forms.DockStyle.Top;
			this.notePanel_GradeArr.ForeColor = System.Drawing.Color.OrangeRed;
			this.notePanel_GradeArr.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_GradeArr.Location = new System.Drawing.Point(0, 0);
			this.notePanel_GradeArr.MaxRows = 5;
			this.notePanel_GradeArr.Name = "notePanel_GradeArr";
			this.notePanel_GradeArr.ParentAutoHeight = true;
			this.notePanel_GradeArr.Size = new System.Drawing.Size(236, 23);
			this.notePanel_GradeArr.TabIndex = 44;
			this.notePanel_GradeArr.TabStop = false;
			this.notePanel_GradeArr.Text = "膳食适用年级安排";
			// 
			// notePanel_MealArr_Grade
			// 
			this.notePanel_MealArr_Grade.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_MealArr_Grade.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_MealArr_Grade.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_MealArr_Grade.ForeColor = System.Drawing.Color.Black;
			this.notePanel_MealArr_Grade.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_MealArr_Grade.Location = new System.Drawing.Point(16, 72);
			this.notePanel_MealArr_Grade.MaxRows = 5;
			this.notePanel_MealArr_Grade.Name = "notePanel_MealArr_Grade";
			this.notePanel_MealArr_Grade.ParentAutoHeight = true;
			this.notePanel_MealArr_Grade.Size = new System.Drawing.Size(80, 22);
			this.notePanel_MealArr_Grade.TabIndex = 37;
			this.notePanel_MealArr_Grade.TabStop = false;
			this.notePanel_MealArr_Grade.Text = "适用年级:";
			// 
			// checkEdit_MealArr_gThree
			// 
			this.checkEdit_MealArr_gThree.Location = new System.Drawing.Point(112, 96);
			this.checkEdit_MealArr_gThree.Name = "checkEdit_MealArr_gThree";
			// 
			// checkEdit_MealArr_gThree.Properties
			// 
			this.checkEdit_MealArr_gThree.Properties.Caption = "中班";
			this.checkEdit_MealArr_gThree.Size = new System.Drawing.Size(56, 19);
			this.checkEdit_MealArr_gThree.TabIndex = 40;
			// 
			// notePanel_MealArr_Name
			// 
			this.notePanel_MealArr_Name.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_MealArr_Name.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_MealArr_Name.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_MealArr_Name.ForeColor = System.Drawing.Color.Black;
			this.notePanel_MealArr_Name.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_MealArr_Name.Location = new System.Drawing.Point(16, 40);
			this.notePanel_MealArr_Name.MaxRows = 5;
			this.notePanel_MealArr_Name.Name = "notePanel_MealArr_Name";
			this.notePanel_MealArr_Name.ParentAutoHeight = true;
			this.notePanel_MealArr_Name.Size = new System.Drawing.Size(80, 22);
			this.notePanel_MealArr_Name.TabIndex = 35;
			this.notePanel_MealArr_Name.TabStop = false;
			this.notePanel_MealArr_Name.Text = "餐次名称:";
			// 
			// checkEdit_MealArr_gTwo
			// 
			this.checkEdit_MealArr_gTwo.Location = new System.Drawing.Point(168, 72);
			this.checkEdit_MealArr_gTwo.Name = "checkEdit_MealArr_gTwo";
			// 
			// checkEdit_MealArr_gTwo.Properties
			// 
			this.checkEdit_MealArr_gTwo.Properties.Caption = "小班";
			this.checkEdit_MealArr_gTwo.Size = new System.Drawing.Size(48, 19);
			this.checkEdit_MealArr_gTwo.TabIndex = 39;
			// 
			// checkEdit_MealArr_gOne
			// 
			this.checkEdit_MealArr_gOne.Location = new System.Drawing.Point(112, 72);
			this.checkEdit_MealArr_gOne.Name = "checkEdit_MealArr_gOne";
			// 
			// checkEdit_MealArr_gOne.Properties
			// 
			this.checkEdit_MealArr_gOne.Properties.Caption = "托班";
			this.checkEdit_MealArr_gOne.Size = new System.Drawing.Size(56, 19);
			this.checkEdit_MealArr_gOne.TabIndex = 38;
			// 
			// comboBoxEdit_MealArr_Name
			// 
			this.comboBoxEdit_MealArr_Name.EditValue = "";
			this.comboBoxEdit_MealArr_Name.Location = new System.Drawing.Point(112, 40);
			this.comboBoxEdit_MealArr_Name.Name = "comboBoxEdit_MealArr_Name";
			// 
			// comboBoxEdit_MealArr_Name.Properties
			// 
			this.comboBoxEdit_MealArr_Name.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																															  new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.comboBoxEdit_MealArr_Name.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
			this.comboBoxEdit_MealArr_Name.Size = new System.Drawing.Size(104, 23);
			this.comboBoxEdit_MealArr_Name.TabIndex = 36;
			this.comboBoxEdit_MealArr_Name.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit_MealArr_Name_SelectedIndexChanged);
			// 
			// checkEdit_MealArr_gFour
			// 
			this.checkEdit_MealArr_gFour.Location = new System.Drawing.Point(168, 96);
			this.checkEdit_MealArr_gFour.Name = "checkEdit_MealArr_gFour";
			// 
			// checkEdit_MealArr_gFour.Properties
			// 
			this.checkEdit_MealArr_gFour.Properties.Caption = "大班";
			this.checkEdit_MealArr_gFour.Size = new System.Drawing.Size(48, 19);
			this.checkEdit_MealArr_gFour.TabIndex = 41;
			// 
			// checkEdit_MealArr_gFive
			// 
			this.checkEdit_MealArr_gFive.Location = new System.Drawing.Point(112, 120);
			this.checkEdit_MealArr_gFive.Name = "checkEdit_MealArr_gFive";
			// 
			// checkEdit_MealArr_gFive.Properties
			// 
			this.checkEdit_MealArr_gFive.Properties.Caption = "特色班";
			this.checkEdit_MealArr_gFive.Size = new System.Drawing.Size(72, 19);
			this.checkEdit_MealArr_gFive.TabIndex = 42;
			// 
			// checkEdit_MealArr_IsUsed
			// 
			this.checkEdit_MealArr_IsUsed.Location = new System.Drawing.Point(112, 144);
			this.checkEdit_MealArr_IsUsed.Name = "checkEdit_MealArr_IsUsed";
			// 
			// checkEdit_MealArr_IsUsed.Properties
			// 
			this.checkEdit_MealArr_IsUsed.Properties.Caption = "是否启用";
			this.checkEdit_MealArr_IsUsed.Size = new System.Drawing.Size(72, 19);
			this.checkEdit_MealArr_IsUsed.TabIndex = 43;
			// 
			// label_Lunch
			// 
			this.label_Lunch.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
			this.label_Lunch.ForeColor = System.Drawing.Color.Tomato;
			this.label_Lunch.Location = new System.Drawing.Point(136, 56);
			this.label_Lunch.Name = "label_Lunch";
			this.label_Lunch.Size = new System.Drawing.Size(88, 24);
			this.label_Lunch.TabIndex = 53;
			this.label_Lunch.Text = "午餐:  35%";
			// 
			// label_Snack
			// 
			this.label_Snack.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
			this.label_Snack.ForeColor = System.Drawing.Color.Tomato;
			this.label_Snack.Location = new System.Drawing.Point(136, 104);
			this.label_Snack.Name = "label_Snack";
			this.label_Snack.Size = new System.Drawing.Size(88, 24);
			this.label_Snack.TabIndex = 52;
			this.label_Snack.Text = "点心:  15%";
			// 
			// label_Super
			// 
			this.label_Super.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
			this.label_Super.ForeColor = System.Drawing.Color.Tomato;
			this.label_Super.Location = new System.Drawing.Point(24, 104);
			this.label_Super.Name = "label_Super";
			this.label_Super.Size = new System.Drawing.Size(88, 24);
			this.label_Super.TabIndex = 51;
			this.label_Super.Text = "晚餐:  30%";
			// 
			// label_Breakfast
			// 
			this.label_Breakfast.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
			this.label_Breakfast.ForeColor = System.Drawing.Color.Tomato;
			this.label_Breakfast.Location = new System.Drawing.Point(24, 56);
			this.label_Breakfast.Name = "label_Breakfast";
			this.label_Breakfast.Size = new System.Drawing.Size(88, 24);
			this.label_Breakfast.TabIndex = 50;
			this.label_Breakfast.Text = "早餐:  20%";
			// 
			// notePanel_MealArr_ePreview
			// 
			this.notePanel_MealArr_ePreview.BackColor = System.Drawing.Color.LightGoldenrodYellow;
			this.notePanel_MealArr_ePreview.Dock = System.Windows.Forms.DockStyle.Top;
			this.notePanel_MealArr_ePreview.ForeColor = System.Drawing.Color.OrangeRed;
			this.notePanel_MealArr_ePreview.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_MealArr_ePreview.Location = new System.Drawing.Point(0, 0);
			this.notePanel_MealArr_ePreview.MaxRows = 5;
			this.notePanel_MealArr_ePreview.Name = "notePanel_MealArr_ePreview";
			this.notePanel_MealArr_ePreview.ParentAutoHeight = true;
			this.notePanel_MealArr_ePreview.Size = new System.Drawing.Size(261, 23);
			this.notePanel_MealArr_ePreview.TabIndex = 45;
			this.notePanel_MealArr_ePreview.TabStop = false;
			this.notePanel_MealArr_ePreview.Text = "热量分配一览";
			// 
			// groupControl_MealPreview
			// 
			this.groupControl_MealPreview.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.groupControl_MealPreview.AppearanceCaption.Options.UseFont = true;
			this.groupControl_MealPreview.Controls.Add(this.gridControl_MealPreview);
			this.groupControl_MealPreview.Controls.Add(this.notePanel3);
			this.groupControl_MealPreview.Dock = System.Windows.Forms.DockStyle.Top;
			this.groupControl_MealPreview.Location = new System.Drawing.Point(0, 48);
			this.groupControl_MealPreview.Name = "groupControl_MealPreview";
			this.groupControl_MealPreview.Size = new System.Drawing.Size(519, 264);
			this.groupControl_MealPreview.TabIndex = 1;
			this.groupControl_MealPreview.Text = "餐次设置一览";
			// 
			// gridControl_MealPreview
			// 
			this.gridControl_MealPreview.Dock = System.Windows.Forms.DockStyle.Fill;
			// 
			// gridControl_MealPreview.EmbeddedNavigator
			// 
			this.gridControl_MealPreview.EmbeddedNavigator.Name = "";
			this.gridControl_MealPreview.Location = new System.Drawing.Point(3, 41);
			this.gridControl_MealPreview.MainView = this.gridView5;
			this.gridControl_MealPreview.Name = "gridControl_MealPreview";
			this.barManager1.SetPopupContextMenu(this.gridControl_MealPreview, this.popupMenu1);
			this.gridControl_MealPreview.Size = new System.Drawing.Size(513, 220);
			this.gridControl_MealPreview.TabIndex = 36;
			this.gridControl_MealPreview.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
																												   this.gridView5});
			this.gridControl_MealPreview.DoubleClick += new System.EventHandler(this.gridControl_MealPreview_DoubleClick);
			// 
			// gridView5
			// 
			this.gridView5.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
																							 this.gridColumn17,
																							 this.gridColumn18,
																							 this.gridColumn19,
																							 this.gridColumn20});
			this.gridView5.GridControl = this.gridControl_MealPreview;
			this.gridView5.Name = "gridView5";
			this.gridView5.OptionsCustomization.AllowFilter = false;
			this.gridView5.OptionsView.ShowFilterPanel = false;
			this.gridView5.OptionsView.ShowGroupPanel = false;
			// 
			// gridColumn17
			// 
			this.gridColumn17.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn17.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn17.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn17.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn17.Caption = "膳食名称";
			this.gridColumn17.FieldName = "FoodArr_Name";
			this.gridColumn17.Name = "gridColumn17";
			this.gridColumn17.OptionsColumn.AllowEdit = false;
			this.gridColumn17.OptionsColumn.AllowFocus = false;
			this.gridColumn17.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn17.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn17.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn17.OptionsColumn.AllowMove = false;
			this.gridColumn17.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn17.OptionsColumn.ReadOnly = true;
			this.gridColumn17.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn17.Visible = true;
			this.gridColumn17.VisibleIndex = 0;
			this.gridColumn17.Width = 92;
			// 
			// gridColumn18
			// 
			this.gridColumn18.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn18.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn18.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn18.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn18.Caption = "膳食说明";
			this.gridColumn18.FieldName = "FoodArr_Remark";
			this.gridColumn18.Name = "gridColumn18";
			this.gridColumn18.OptionsColumn.AllowEdit = false;
			this.gridColumn18.OptionsColumn.AllowFocus = false;
			this.gridColumn18.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn18.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn18.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn18.OptionsColumn.AllowMove = false;
			this.gridColumn18.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn18.OptionsColumn.ReadOnly = true;
			this.gridColumn18.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn18.Visible = true;
			this.gridColumn18.VisibleIndex = 1;
			this.gridColumn18.Width = 188;
			// 
			// gridColumn19
			// 
			this.gridColumn19.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn19.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn19.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn19.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn19.Caption = "适用年级";
			this.gridColumn19.FieldName = "FoodArr_SuitAge";
			this.gridColumn19.Name = "gridColumn19";
			this.gridColumn19.OptionsColumn.AllowEdit = false;
			this.gridColumn19.OptionsColumn.AllowFocus = false;
			this.gridColumn19.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn19.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn19.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn19.OptionsColumn.AllowMove = false;
			this.gridColumn19.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn19.OptionsColumn.ReadOnly = true;
			this.gridColumn19.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn19.Visible = true;
			this.gridColumn19.VisibleIndex = 2;
			this.gridColumn19.Width = 163;
			// 
			// gridColumn20
			// 
			this.gridColumn20.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn20.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn20.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn20.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn20.Caption = "是否起用";
			this.gridColumn20.FieldName = "FoodArr_ISUsed";
			this.gridColumn20.Name = "gridColumn20";
			this.gridColumn20.OptionsColumn.AllowEdit = false;
			this.gridColumn20.OptionsColumn.AllowFocus = false;
			this.gridColumn20.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn20.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn20.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn20.OptionsColumn.AllowMove = false;
			this.gridColumn20.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn20.OptionsColumn.ReadOnly = true;
			this.gridColumn20.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn20.Visible = true;
			this.gridColumn20.VisibleIndex = 3;
			this.gridColumn20.Width = 55;
			// 
			// notePanel3
			// 
			this.notePanel3.BackColor = System.Drawing.Color.LightGoldenrodYellow;
			this.notePanel3.Dock = System.Windows.Forms.DockStyle.Top;
			this.notePanel3.ForeColor = System.Drawing.Color.OrangeRed;
			this.notePanel3.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel3.Location = new System.Drawing.Point(3, 18);
			this.notePanel3.MaxRows = 5;
			this.notePanel3.Name = "notePanel3";
			this.notePanel3.ParentAutoHeight = true;
			this.notePanel3.Size = new System.Drawing.Size(513, 23);
			this.notePanel3.TabIndex = 35;
			this.notePanel3.TabStop = false;
			this.notePanel3.Text = "双击进行幼儿餐适用年级登记";
			// 
			// panelControl3
			// 
			this.panelControl3.Controls.Add(this.simpleButton_MealBack);
			this.panelControl3.Controls.Add(this.simpleButton_MealAppend);
			this.panelControl3.Controls.Add(this.simpleButton_MealDelete);
			this.panelControl3.Controls.Add(this.simpleButton_MealSave);
			this.panelControl3.Controls.Add(this.simpleButton_MealAdd);
			this.panelControl3.Dock = System.Windows.Forms.DockStyle.Top;
			this.panelControl3.Location = new System.Drawing.Point(0, 0);
			this.panelControl3.Name = "panelControl3";
			this.panelControl3.Size = new System.Drawing.Size(519, 48);
			this.panelControl3.TabIndex = 0;
			this.panelControl3.Text = "panelControl3";
			// 
			// simpleButton_MealBack
			// 
			this.simpleButton_MealBack.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.simpleButton_MealBack.Appearance.ForeColor = System.Drawing.Color.DarkMagenta;
			this.simpleButton_MealBack.Appearance.Options.UseFont = true;
			this.simpleButton_MealBack.Appearance.Options.UseForeColor = true;
			this.simpleButton_MealBack.Location = new System.Drawing.Point(8, 8);
			this.simpleButton_MealBack.Name = "simpleButton_MealBack";
			this.simpleButton_MealBack.Size = new System.Drawing.Size(72, 26);
			this.simpleButton_MealBack.TabIndex = 47;
			this.simpleButton_MealBack.Tag = 4;
			this.simpleButton_MealBack.Text = "返回";
			this.simpleButton_MealBack.Click += new System.EventHandler(this.simpleButton_MealBack_Click);
			// 
			// simpleButton_MealAppend
			// 
			this.simpleButton_MealAppend.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.simpleButton_MealAppend.Appearance.ForeColor = System.Drawing.Color.DarkMagenta;
			this.simpleButton_MealAppend.Appearance.Options.UseFont = true;
			this.simpleButton_MealAppend.Appearance.Options.UseForeColor = true;
			this.simpleButton_MealAppend.Location = new System.Drawing.Point(88, 8);
			this.simpleButton_MealAppend.Name = "simpleButton_MealAppend";
			this.simpleButton_MealAppend.Size = new System.Drawing.Size(72, 26);
			this.simpleButton_MealAppend.TabIndex = 46;
			this.simpleButton_MealAppend.Tag = 4;
			this.simpleButton_MealAppend.Text = "新建膳食";
			this.simpleButton_MealAppend.Click += new System.EventHandler(this.simpleButton_MealAppend_Click);
			// 
			// simpleButton_MealDelete
			// 
			this.simpleButton_MealDelete.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.simpleButton_MealDelete.Appearance.ForeColor = System.Drawing.Color.DarkMagenta;
			this.simpleButton_MealDelete.Appearance.Options.UseFont = true;
			this.simpleButton_MealDelete.Appearance.Options.UseForeColor = true;
			this.simpleButton_MealDelete.Location = new System.Drawing.Point(248, 8);
			this.simpleButton_MealDelete.Name = "simpleButton_MealDelete";
			this.simpleButton_MealDelete.Size = new System.Drawing.Size(72, 26);
			this.simpleButton_MealDelete.TabIndex = 45;
			this.simpleButton_MealDelete.Tag = 4;
			this.simpleButton_MealDelete.Text = "膳食删除";
			this.simpleButton_MealDelete.Click += new System.EventHandler(this.simpleButton_MealDelete_Click);
			// 
			// simpleButton_MealSave
			// 
			this.simpleButton_MealSave.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.simpleButton_MealSave.Appearance.ForeColor = System.Drawing.Color.DarkMagenta;
			this.simpleButton_MealSave.Appearance.Options.UseFont = true;
			this.simpleButton_MealSave.Appearance.Options.UseForeColor = true;
			this.simpleButton_MealSave.Enabled = false;
			this.simpleButton_MealSave.Location = new System.Drawing.Point(328, 8);
			this.simpleButton_MealSave.Name = "simpleButton_MealSave";
			this.simpleButton_MealSave.Size = new System.Drawing.Size(80, 26);
			this.simpleButton_MealSave.TabIndex = 43;
			this.simpleButton_MealSave.Tag = 4;
			this.simpleButton_MealSave.Text = "幼儿餐保存";
			this.simpleButton_MealSave.Click += new System.EventHandler(this.simpleButton_MealSave_Click);
			// 
			// simpleButton_MealAdd
			// 
			this.simpleButton_MealAdd.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.simpleButton_MealAdd.Appearance.ForeColor = System.Drawing.Color.DarkMagenta;
			this.simpleButton_MealAdd.Appearance.Options.UseFont = true;
			this.simpleButton_MealAdd.Appearance.Options.UseForeColor = true;
			this.simpleButton_MealAdd.Location = new System.Drawing.Point(168, 8);
			this.simpleButton_MealAdd.Name = "simpleButton_MealAdd";
			this.simpleButton_MealAdd.Size = new System.Drawing.Size(72, 26);
			this.simpleButton_MealAdd.TabIndex = 41;
			this.simpleButton_MealAdd.Tag = 4;
			this.simpleButton_MealAdd.Text = "膳食保存";
			this.simpleButton_MealAdd.Click += new System.EventHandler(this.simpleButton_MealAdd_Click);
			// 
			// xtraTabPage4
			// 
			this.xtraTabPage4.Appearance.PageClient.BackColor = System.Drawing.Color.WhiteSmoke;
			this.xtraTabPage4.Appearance.PageClient.Options.UseBackColor = true;
			this.xtraTabPage4.Controls.Add(this.splitContainerControl5);
			this.xtraTabPage4.Name = "xtraTabPage4";
			this.xtraTabPage4.PageVisible = false;
			this.xtraTabPage4.Size = new System.Drawing.Size(768, 515);
			this.xtraTabPage4.Text = "膳食营养综合统计表";
			// 
			// splitContainerControl5
			// 
			this.splitContainerControl5.Dock = System.Windows.Forms.DockStyle.Fill;
			this.splitContainerControl5.Location = new System.Drawing.Point(0, 0);
			this.splitContainerControl5.Name = "splitContainerControl5";
			this.splitContainerControl5.Panel1.Controls.Add(this.groupControl_Meal_Search);
			this.splitContainerControl5.Panel1.Text = "splitContainerControl5_Panel1";
			this.splitContainerControl5.Panel2.Controls.Add(this.groupControl_Meal_ReportPreview);
			this.splitContainerControl5.Panel2.Controls.Add(this.panelControl4);
			this.splitContainerControl5.Panel2.Text = "splitContainerControl5_Panel2";
			this.splitContainerControl5.Size = new System.Drawing.Size(768, 515);
			this.splitContainerControl5.SplitterPosition = 241;
			this.splitContainerControl5.TabIndex = 0;
			this.splitContainerControl5.Text = "splitContainerControl5";
			// 
			// groupControl_Meal_Search
			// 
			this.groupControl_Meal_Search.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.groupControl_Meal_Search.AppearanceCaption.Options.UseFont = true;
			this.groupControl_Meal_Search.Controls.Add(this.dateEdit_Meal_EndDate);
			this.groupControl_Meal_Search.Controls.Add(this.notePanel_Meal_EndDate);
			this.groupControl_Meal_Search.Controls.Add(this.dateEdit_Meal_BegDate);
			this.groupControl_Meal_Search.Controls.Add(this.notePanel_Meal_BegDate);
			this.groupControl_Meal_Search.Controls.Add(this.notePanel_Meal_Search);
			this.groupControl_Meal_Search.Dock = System.Windows.Forms.DockStyle.Top;
			this.groupControl_Meal_Search.Location = new System.Drawing.Point(0, 0);
			this.groupControl_Meal_Search.Name = "groupControl_Meal_Search";
			this.groupControl_Meal_Search.Size = new System.Drawing.Size(235, 176);
			this.groupControl_Meal_Search.TabIndex = 0;
			this.groupControl_Meal_Search.Text = "统计条件";
			// 
			// dateEdit_Meal_EndDate
			// 
			this.dateEdit_Meal_EndDate.EditValue = new System.DateTime(2005, 11, 24, 0, 0, 0, 0);
			this.dateEdit_Meal_EndDate.Location = new System.Drawing.Point(112, 104);
			this.dateEdit_Meal_EndDate.Name = "dateEdit_Meal_EndDate";
			// 
			// dateEdit_Meal_EndDate.Properties
			// 
			this.dateEdit_Meal_EndDate.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																														  new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.dateEdit_Meal_EndDate.Properties.Mask.EditMask = "d";
			this.dateEdit_Meal_EndDate.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.DateTime;
			this.dateEdit_Meal_EndDate.Size = new System.Drawing.Size(88, 23);
			this.dateEdit_Meal_EndDate.TabIndex = 38;
			// 
			// notePanel_Meal_EndDate
			// 
			this.notePanel_Meal_EndDate.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_Meal_EndDate.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_Meal_EndDate.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_Meal_EndDate.ForeColor = System.Drawing.Color.Black;
			this.notePanel_Meal_EndDate.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_Meal_EndDate.Location = new System.Drawing.Point(24, 104);
			this.notePanel_Meal_EndDate.MaxRows = 5;
			this.notePanel_Meal_EndDate.Name = "notePanel_Meal_EndDate";
			this.notePanel_Meal_EndDate.ParentAutoHeight = true;
			this.notePanel_Meal_EndDate.Size = new System.Drawing.Size(80, 22);
			this.notePanel_Meal_EndDate.TabIndex = 37;
			this.notePanel_Meal_EndDate.TabStop = false;
			this.notePanel_Meal_EndDate.Text = "截止日期:";
			// 
			// dateEdit_Meal_BegDate
			// 
			this.dateEdit_Meal_BegDate.EditValue = new System.DateTime(2005, 11, 24, 0, 0, 0, 0);
			this.dateEdit_Meal_BegDate.Location = new System.Drawing.Point(112, 64);
			this.dateEdit_Meal_BegDate.Name = "dateEdit_Meal_BegDate";
			// 
			// dateEdit_Meal_BegDate.Properties
			// 
			this.dateEdit_Meal_BegDate.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																														  new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.dateEdit_Meal_BegDate.Properties.Mask.EditMask = "d";
			this.dateEdit_Meal_BegDate.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.DateTime;
			this.dateEdit_Meal_BegDate.Size = new System.Drawing.Size(88, 23);
			this.dateEdit_Meal_BegDate.TabIndex = 36;
			// 
			// notePanel_Meal_BegDate
			// 
			this.notePanel_Meal_BegDate.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_Meal_BegDate.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_Meal_BegDate.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_Meal_BegDate.ForeColor = System.Drawing.Color.Black;
			this.notePanel_Meal_BegDate.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_Meal_BegDate.Location = new System.Drawing.Point(24, 64);
			this.notePanel_Meal_BegDate.MaxRows = 5;
			this.notePanel_Meal_BegDate.Name = "notePanel_Meal_BegDate";
			this.notePanel_Meal_BegDate.ParentAutoHeight = true;
			this.notePanel_Meal_BegDate.Size = new System.Drawing.Size(80, 22);
			this.notePanel_Meal_BegDate.TabIndex = 35;
			this.notePanel_Meal_BegDate.TabStop = false;
			this.notePanel_Meal_BegDate.Text = "起始日期:";
			// 
			// notePanel_Meal_Search
			// 
			this.notePanel_Meal_Search.BackColor = System.Drawing.Color.LightGoldenrodYellow;
			this.notePanel_Meal_Search.Dock = System.Windows.Forms.DockStyle.Top;
			this.notePanel_Meal_Search.ForeColor = System.Drawing.Color.OrangeRed;
			this.notePanel_Meal_Search.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_Meal_Search.Location = new System.Drawing.Point(3, 18);
			this.notePanel_Meal_Search.MaxRows = 5;
			this.notePanel_Meal_Search.Name = "notePanel_Meal_Search";
			this.notePanel_Meal_Search.ParentAutoHeight = true;
			this.notePanel_Meal_Search.Size = new System.Drawing.Size(229, 23);
			this.notePanel_Meal_Search.TabIndex = 34;
			this.notePanel_Meal_Search.TabStop = false;
			this.notePanel_Meal_Search.Text = "指定统计的时间范围";
			// 
			// groupControl_Meal_ReportPreview
			// 
			this.groupControl_Meal_ReportPreview.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.groupControl_Meal_ReportPreview.AppearanceCaption.Options.UseFont = true;
			this.groupControl_Meal_ReportPreview.Dock = System.Windows.Forms.DockStyle.Fill;
			this.groupControl_Meal_ReportPreview.Location = new System.Drawing.Point(0, 48);
			this.groupControl_Meal_ReportPreview.Name = "groupControl_Meal_ReportPreview";
			this.groupControl_Meal_ReportPreview.Size = new System.Drawing.Size(517, 461);
			this.groupControl_Meal_ReportPreview.TabIndex = 1;
			this.groupControl_Meal_ReportPreview.Text = "图形报表预览";
			// 
			// panelControl4
			// 
			this.panelControl4.Controls.Add(this.simpleButton_Meal_PrintReport);
			this.panelControl4.Controls.Add(this.simpleButton_Meal_PreviewReport);
			this.panelControl4.Dock = System.Windows.Forms.DockStyle.Top;
			this.panelControl4.Location = new System.Drawing.Point(0, 0);
			this.panelControl4.Name = "panelControl4";
			this.panelControl4.Size = new System.Drawing.Size(517, 48);
			this.panelControl4.TabIndex = 0;
			this.panelControl4.Text = "panelControl4";
			// 
			// simpleButton_Meal_PrintReport
			// 
			this.simpleButton_Meal_PrintReport.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.simpleButton_Meal_PrintReport.Appearance.ForeColor = System.Drawing.Color.DarkMagenta;
			this.simpleButton_Meal_PrintReport.Appearance.Options.UseFont = true;
			this.simpleButton_Meal_PrintReport.Appearance.Options.UseForeColor = true;
			this.simpleButton_Meal_PrintReport.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton_Meal_PrintReport.Image")));
			this.simpleButton_Meal_PrintReport.Location = new System.Drawing.Point(128, 11);
			this.simpleButton_Meal_PrintReport.Name = "simpleButton_Meal_PrintReport";
			this.simpleButton_Meal_PrintReport.Size = new System.Drawing.Size(96, 26);
			this.simpleButton_Meal_PrintReport.TabIndex = 7;
			this.simpleButton_Meal_PrintReport.Tag = 4;
			this.simpleButton_Meal_PrintReport.Text = "图形打印";
			// 
			// simpleButton_Meal_PreviewReport
			// 
			this.simpleButton_Meal_PreviewReport.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.simpleButton_Meal_PreviewReport.Appearance.ForeColor = System.Drawing.Color.DarkMagenta;
			this.simpleButton_Meal_PreviewReport.Appearance.Options.UseFont = true;
			this.simpleButton_Meal_PreviewReport.Appearance.Options.UseForeColor = true;
			this.simpleButton_Meal_PreviewReport.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton_Meal_PreviewReport.Image")));
			this.simpleButton_Meal_PreviewReport.Location = new System.Drawing.Point(16, 11);
			this.simpleButton_Meal_PreviewReport.Name = "simpleButton_Meal_PreviewReport";
			this.simpleButton_Meal_PreviewReport.Size = new System.Drawing.Size(92, 26);
			this.simpleButton_Meal_PreviewReport.TabIndex = 6;
			this.simpleButton_Meal_PreviewReport.Tag = 4;
			this.simpleButton_Meal_PreviewReport.Text = "报  表";
			this.simpleButton_Meal_PreviewReport.Click += new System.EventHandler(this.simpleButton_Meal_PreviewReport_Click);
			// 
			// xtraTabPage5
			// 
			this.xtraTabPage5.Appearance.PageClient.BackColor = System.Drawing.Color.WhiteSmoke;
			this.xtraTabPage5.Appearance.PageClient.Options.UseBackColor = true;
			this.xtraTabPage5.Controls.Add(this.splitContainerControl6);
			this.xtraTabPage5.Name = "xtraTabPage5";
			this.xtraTabPage5.Size = new System.Drawing.Size(768, 515);
			this.xtraTabPage5.Text = "幼儿身体评测登记";
			// 
			// splitContainerControl6
			// 
			this.splitContainerControl6.Dock = System.Windows.Forms.DockStyle.Fill;
			this.splitContainerControl6.Location = new System.Drawing.Point(0, 0);
			this.splitContainerControl6.Name = "splitContainerControl6";
			this.splitContainerControl6.Panel1.Controls.Add(this.gridControl_HInputStu);
			this.splitContainerControl6.Panel1.Controls.Add(this.groupControl_HInputSer);
			this.splitContainerControl6.Panel1.Text = "splitContainerControl6_Panel1";
			this.splitContainerControl6.Panel2.Controls.Add(this.groupControl_HInputDiagInfo);
			this.splitContainerControl6.Panel2.Controls.Add(this.panelControl5);
			this.splitContainerControl6.Panel2.Text = "splitContainerControl6_Panel2";
			this.splitContainerControl6.Size = new System.Drawing.Size(768, 515);
			this.splitContainerControl6.SplitterPosition = 204;
			this.splitContainerControl6.TabIndex = 0;
			this.splitContainerControl6.Text = "splitContainerControl6";
			// 
			// gridControl_HInputStu
			// 
			this.gridControl_HInputStu.Dock = System.Windows.Forms.DockStyle.Fill;
			// 
			// gridControl_HInputStu.EmbeddedNavigator
			// 
			this.gridControl_HInputStu.EmbeddedNavigator.Name = "";
			this.gridControl_HInputStu.Location = new System.Drawing.Point(0, 256);
			this.gridControl_HInputStu.MainView = this.gridView6;
			this.gridControl_HInputStu.Name = "gridControl_HInputStu";
			this.gridControl_HInputStu.Size = new System.Drawing.Size(198, 253);
			this.gridControl_HInputStu.TabIndex = 1;
			this.gridControl_HInputStu.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
																												 this.gridView6});
			this.gridControl_HInputStu.DoubleClick += new System.EventHandler(this.gridControl_HInputStu_DoubleClick);
			// 
			// gridView6
			// 
			this.gridView6.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
																							 this.gridColumn21,
																							 this.gridColumn22,
																							 this.gridColumn23});
			this.gridView6.GridControl = this.gridControl_HInputStu;
			this.gridView6.Name = "gridView6";
			this.gridView6.OptionsCustomization.AllowFilter = false;
			this.gridView6.OptionsView.ShowFilterPanel = false;
			this.gridView6.OptionsView.ShowGroupPanel = false;
			this.gridView6.FocusedRowChanged += new DevExpress.XtraGrid.Views.Base.FocusedRowChangedEventHandler(this.gridView6_FocusedRowChanged);
			// 
			// gridColumn21
			// 
			this.gridColumn21.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn21.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn21.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn21.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn21.Caption = "学号";
			this.gridColumn21.FieldName = "info_stuNumber";
			this.gridColumn21.Name = "gridColumn21";
			this.gridColumn21.OptionsColumn.AllowEdit = false;
			this.gridColumn21.OptionsColumn.AllowFocus = false;
			this.gridColumn21.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn21.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn21.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn21.OptionsColumn.AllowMove = false;
			this.gridColumn21.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn21.OptionsColumn.ReadOnly = true;
			this.gridColumn21.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn21.Visible = true;
			this.gridColumn21.VisibleIndex = 0;
			this.gridColumn21.Width = 62;
			// 
			// gridColumn22
			// 
			this.gridColumn22.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn22.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn22.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn22.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn22.Caption = "姓名";
			this.gridColumn22.FieldName = "info_stuName";
			this.gridColumn22.Name = "gridColumn22";
			this.gridColumn22.OptionsColumn.AllowEdit = false;
			this.gridColumn22.OptionsColumn.AllowFocus = false;
			this.gridColumn22.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn22.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn22.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn22.OptionsColumn.AllowMove = false;
			this.gridColumn22.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn22.OptionsColumn.ReadOnly = true;
			this.gridColumn22.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn22.Visible = true;
			this.gridColumn22.VisibleIndex = 1;
			this.gridColumn22.Width = 58;
			// 
			// gridColumn23
			// 
			this.gridColumn23.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn23.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn23.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn23.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn23.Caption = "班级";
			this.gridColumn23.FieldName = "info_className";
			this.gridColumn23.Name = "gridColumn23";
			this.gridColumn23.OptionsColumn.AllowEdit = false;
			this.gridColumn23.OptionsColumn.AllowFocus = false;
			this.gridColumn23.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn23.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn23.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn23.OptionsColumn.AllowMove = false;
			this.gridColumn23.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn23.OptionsColumn.ReadOnly = true;
			this.gridColumn23.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn23.Visible = true;
			this.gridColumn23.VisibleIndex = 2;
			this.gridColumn23.Width = 61;
			// 
			// groupControl_HInputSer
			// 
			this.groupControl_HInputSer.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.groupControl_HInputSer.AppearanceCaption.Options.UseFont = true;
			this.groupControl_HInputSer.Controls.Add(this.comboBoxEdit_HInputGender);
			this.groupControl_HInputSer.Controls.Add(this.notePanel_HInputGender);
			this.groupControl_HInputSer.Controls.Add(this.dataNavigator_HInputNav);
			this.groupControl_HInputSer.Controls.Add(this.textEdit_HInputNumber);
			this.groupControl_HInputSer.Controls.Add(this.textEdit_HInputName);
			this.groupControl_HInputSer.Controls.Add(this.comboBoxEdit_HInputClass);
			this.groupControl_HInputSer.Controls.Add(this.notePanel_HInputClass);
			this.groupControl_HInputSer.Controls.Add(this.comboBoxEdit_HInputGrade);
			this.groupControl_HInputSer.Controls.Add(this.notePanel_HInputGrade);
			this.groupControl_HInputSer.Controls.Add(this.notePanel_HInputSer);
			this.groupControl_HInputSer.Controls.Add(this.notePanel_HInputNumber);
			this.groupControl_HInputSer.Controls.Add(this.notePanel_HInputName);
			this.groupControl_HInputSer.Dock = System.Windows.Forms.DockStyle.Top;
			this.groupControl_HInputSer.Location = new System.Drawing.Point(0, 0);
			this.groupControl_HInputSer.Name = "groupControl_HInputSer";
			this.groupControl_HInputSer.Size = new System.Drawing.Size(198, 256);
			this.groupControl_HInputSer.TabIndex = 0;
			this.groupControl_HInputSer.Text = "信息查询";
			// 
			// comboBoxEdit_HInputGender
			// 
			this.comboBoxEdit_HInputGender.EditValue = "全部";
			this.comboBoxEdit_HInputGender.Location = new System.Drawing.Point(88, 184);
			this.comboBoxEdit_HInputGender.Name = "comboBoxEdit_HInputGender";
			// 
			// comboBoxEdit_HInputGender.Properties
			// 
			this.comboBoxEdit_HInputGender.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																															  new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.comboBoxEdit_HInputGender.Properties.Items.AddRange(new object[] {
																					  "全部",
																					  "男",
																					  "女"});
			this.comboBoxEdit_HInputGender.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
			this.comboBoxEdit_HInputGender.Size = new System.Drawing.Size(88, 23);
			this.comboBoxEdit_HInputGender.TabIndex = 45;
			this.comboBoxEdit_HInputGender.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit_HInputGender_SelectedIndexChanged);
			// 
			// notePanel_HInputGender
			// 
			this.notePanel_HInputGender.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_HInputGender.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_HInputGender.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_HInputGender.ForeColor = System.Drawing.Color.Black;
			this.notePanel_HInputGender.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_HInputGender.Location = new System.Drawing.Point(16, 184);
			this.notePanel_HInputGender.MaxRows = 5;
			this.notePanel_HInputGender.Name = "notePanel_HInputGender";
			this.notePanel_HInputGender.ParentAutoHeight = true;
			this.notePanel_HInputGender.Size = new System.Drawing.Size(64, 22);
			this.notePanel_HInputGender.TabIndex = 43;
			this.notePanel_HInputGender.TabStop = false;
			this.notePanel_HInputGender.Text = "性  别:";
			// 
			// dataNavigator_HInputNav
			// 
			this.dataNavigator_HInputNav.Buttons.Append.Hint = "新建卡";
			this.dataNavigator_HInputNav.Buttons.Append.Visible = false;
			this.dataNavigator_HInputNav.Buttons.CancelEdit.Visible = false;
			this.dataNavigator_HInputNav.Buttons.EndEdit.Visible = false;
			this.dataNavigator_HInputNav.Buttons.First.Hint = "第一条记录";
			this.dataNavigator_HInputNav.Buttons.Last.Hint = "最后一条记录";
			this.dataNavigator_HInputNav.Buttons.Next.Hint = "下一条记录";
			this.dataNavigator_HInputNav.Buttons.NextPage.Visible = false;
			this.dataNavigator_HInputNav.Buttons.Prev.Hint = "上一条记录";
			this.dataNavigator_HInputNav.Buttons.PrevPage.Visible = false;
			this.dataNavigator_HInputNav.Buttons.Remove.Visible = false;
			this.dataNavigator_HInputNav.Dock = System.Windows.Forms.DockStyle.Bottom;
			this.dataNavigator_HInputNav.Location = new System.Drawing.Point(3, 225);
			this.dataNavigator_HInputNav.Name = "dataNavigator_HInputNav";
			this.dataNavigator_HInputNav.ShowToolTips = true;
			this.dataNavigator_HInputNav.Size = new System.Drawing.Size(192, 28);
			this.dataNavigator_HInputNav.TabIndex = 41;
			this.dataNavigator_HInputNav.Text = "dataNavigator1";
			this.dataNavigator_HInputNav.TextLocation = DevExpress.XtraEditors.NavigatorButtonsTextLocation.End;
			// 
			// textEdit_HInputNumber
			// 
			this.textEdit_HInputNumber.EditValue = "";
			this.textEdit_HInputNumber.Location = new System.Drawing.Point(88, 152);
			this.textEdit_HInputNumber.Name = "textEdit_HInputNumber";
			this.textEdit_HInputNumber.Size = new System.Drawing.Size(88, 23);
			this.textEdit_HInputNumber.TabIndex = 40;
			this.textEdit_HInputNumber.EditValueChanged += new System.EventHandler(this.textEdit_HInputNumber_EditValueChanged);
			// 
			// textEdit_HInputName
			// 
			this.textEdit_HInputName.EditValue = "";
			this.textEdit_HInputName.Location = new System.Drawing.Point(88, 120);
			this.textEdit_HInputName.Name = "textEdit_HInputName";
			this.textEdit_HInputName.Size = new System.Drawing.Size(88, 23);
			this.textEdit_HInputName.TabIndex = 39;
			this.textEdit_HInputName.EditValueChanged += new System.EventHandler(this.textEdit_HInputName_EditValueChanged);
			// 
			// comboBoxEdit_HInputClass
			// 
			this.comboBoxEdit_HInputClass.EditValue = "全部";
			this.comboBoxEdit_HInputClass.Location = new System.Drawing.Point(88, 88);
			this.comboBoxEdit_HInputClass.Name = "comboBoxEdit_HInputClass";
			// 
			// comboBoxEdit_HInputClass.Properties
			// 
			this.comboBoxEdit_HInputClass.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																															 new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.comboBoxEdit_HInputClass.Properties.Items.AddRange(new object[] {
																					 "全部"});
			this.comboBoxEdit_HInputClass.Size = new System.Drawing.Size(88, 23);
			this.comboBoxEdit_HInputClass.TabIndex = 38;
			this.comboBoxEdit_HInputClass.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit_HInputClass_SelectedIndexChanged);
			// 
			// notePanel_HInputClass
			// 
			this.notePanel_HInputClass.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_HInputClass.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_HInputClass.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_HInputClass.ForeColor = System.Drawing.Color.Black;
			this.notePanel_HInputClass.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_HInputClass.Location = new System.Drawing.Point(16, 88);
			this.notePanel_HInputClass.MaxRows = 5;
			this.notePanel_HInputClass.Name = "notePanel_HInputClass";
			this.notePanel_HInputClass.ParentAutoHeight = true;
			this.notePanel_HInputClass.Size = new System.Drawing.Size(64, 22);
			this.notePanel_HInputClass.TabIndex = 37;
			this.notePanel_HInputClass.TabStop = false;
			this.notePanel_HInputClass.Text = "班  级:";
			// 
			// comboBoxEdit_HInputGrade
			// 
			this.comboBoxEdit_HInputGrade.EditValue = "全部";
			this.comboBoxEdit_HInputGrade.Location = new System.Drawing.Point(88, 56);
			this.comboBoxEdit_HInputGrade.Name = "comboBoxEdit_HInputGrade";
			// 
			// comboBoxEdit_HInputGrade.Properties
			// 
			this.comboBoxEdit_HInputGrade.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																															 new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.comboBoxEdit_HInputGrade.Properties.Items.AddRange(new object[] {
																					 "全部"});
			this.comboBoxEdit_HInputGrade.Size = new System.Drawing.Size(88, 23);
			this.comboBoxEdit_HInputGrade.TabIndex = 36;
			this.comboBoxEdit_HInputGrade.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit_HInputGrade_SelectedIndexChanged);
			// 
			// notePanel_HInputGrade
			// 
			this.notePanel_HInputGrade.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_HInputGrade.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_HInputGrade.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_HInputGrade.ForeColor = System.Drawing.Color.Black;
			this.notePanel_HInputGrade.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_HInputGrade.Location = new System.Drawing.Point(16, 56);
			this.notePanel_HInputGrade.MaxRows = 5;
			this.notePanel_HInputGrade.Name = "notePanel_HInputGrade";
			this.notePanel_HInputGrade.ParentAutoHeight = true;
			this.notePanel_HInputGrade.Size = new System.Drawing.Size(64, 22);
			this.notePanel_HInputGrade.TabIndex = 35;
			this.notePanel_HInputGrade.TabStop = false;
			this.notePanel_HInputGrade.Text = "年  级:";
			// 
			// notePanel_HInputSer
			// 
			this.notePanel_HInputSer.BackColor = System.Drawing.Color.LightGoldenrodYellow;
			this.notePanel_HInputSer.Dock = System.Windows.Forms.DockStyle.Top;
			this.notePanel_HInputSer.ForeColor = System.Drawing.Color.OrangeRed;
			this.notePanel_HInputSer.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_HInputSer.Location = new System.Drawing.Point(3, 18);
			this.notePanel_HInputSer.MaxRows = 5;
			this.notePanel_HInputSer.Name = "notePanel_HInputSer";
			this.notePanel_HInputSer.ParentAutoHeight = true;
			this.notePanel_HInputSer.Size = new System.Drawing.Size(192, 23);
			this.notePanel_HInputSer.TabIndex = 23;
			this.notePanel_HInputSer.TabStop = false;
			this.notePanel_HInputSer.Text = "检索您的幼儿";
			// 
			// notePanel_HInputNumber
			// 
			this.notePanel_HInputNumber.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_HInputNumber.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_HInputNumber.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_HInputNumber.ForeColor = System.Drawing.Color.Black;
			this.notePanel_HInputNumber.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_HInputNumber.Location = new System.Drawing.Point(16, 152);
			this.notePanel_HInputNumber.MaxRows = 5;
			this.notePanel_HInputNumber.Name = "notePanel_HInputNumber";
			this.notePanel_HInputNumber.ParentAutoHeight = true;
			this.notePanel_HInputNumber.Size = new System.Drawing.Size(64, 22);
			this.notePanel_HInputNumber.TabIndex = 32;
			this.notePanel_HInputNumber.TabStop = false;
			this.notePanel_HInputNumber.Text = "学  号:";
			// 
			// notePanel_HInputName
			// 
			this.notePanel_HInputName.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_HInputName.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_HInputName.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_HInputName.ForeColor = System.Drawing.Color.Black;
			this.notePanel_HInputName.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_HInputName.Location = new System.Drawing.Point(16, 120);
			this.notePanel_HInputName.MaxRows = 5;
			this.notePanel_HInputName.Name = "notePanel_HInputName";
			this.notePanel_HInputName.ParentAutoHeight = true;
			this.notePanel_HInputName.Size = new System.Drawing.Size(64, 22);
			this.notePanel_HInputName.TabIndex = 31;
			this.notePanel_HInputName.TabStop = false;
			this.notePanel_HInputName.Text = "姓  名:";
			// 
			// groupControl_HInputDiagInfo
			// 
			this.groupControl_HInputDiagInfo.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.groupControl_HInputDiagInfo.AppearanceCaption.Options.UseFont = true;
			this.groupControl_HInputDiagInfo.Controls.Add(this.comboBoxEdit_HInputRegion);
			this.groupControl_HInputDiagInfo.Controls.Add(this.notePanel6);
			this.groupControl_HInputDiagInfo.Controls.Add(this.comboBoxEdit_HInputStd);
			this.groupControl_HInputDiagInfo.Controls.Add(this.notePanel_HInputStd);
			this.groupControl_HInputDiagInfo.Controls.Add(this.textEdit_DiagCheckName);
			this.groupControl_HInputDiagInfo.Controls.Add(this.textEdit_DiagCheckBindingID);
			this.groupControl_HInputDiagInfo.Controls.Add(this.notePanel_DiagCheckName);
			this.groupControl_HInputDiagInfo.Controls.Add(this.groupControl_HInputDiagResult);
			this.groupControl_HInputDiagInfo.Controls.Add(this.memoEdit_DiagRemark);
			this.groupControl_HInputDiagInfo.Controls.Add(this.notePanel_DiagRemark);
			this.groupControl_HInputDiagInfo.Controls.Add(this.textEdit_DiagWeight);
			this.groupControl_HInputDiagInfo.Controls.Add(this.textEdit_DiagHeight);
			this.groupControl_HInputDiagInfo.Controls.Add(this.notePanel_HInputDaigInfo);
			this.groupControl_HInputDiagInfo.Controls.Add(this.notePanel_DiagWeight);
			this.groupControl_HInputDiagInfo.Controls.Add(this.notePanel_DiagHeight);
			this.groupControl_HInputDiagInfo.Controls.Add(this.dateEdit_DiagCheckDate);
			this.groupControl_HInputDiagInfo.Controls.Add(this.notePanel_DiagCheckDate);
			this.groupControl_HInputDiagInfo.Controls.Add(this.notePanel_HInputBirthday);
			this.groupControl_HInputDiagInfo.Controls.Add(this.textEdit_HInputBirthday);
			this.groupControl_HInputDiagInfo.Controls.Add(this.notePanel_DiagCheckGender);
			this.groupControl_HInputDiagInfo.Controls.Add(this.textEdit_DiagCheckGender);
			this.groupControl_HInputDiagInfo.Dock = System.Windows.Forms.DockStyle.Top;
			this.groupControl_HInputDiagInfo.Location = new System.Drawing.Point(0, 48);
			this.groupControl_HInputDiagInfo.Name = "groupControl_HInputDiagInfo";
			this.groupControl_HInputDiagInfo.Size = new System.Drawing.Size(554, 432);
			this.groupControl_HInputDiagInfo.TabIndex = 1;
			this.groupControl_HInputDiagInfo.Text = "诊断信息";
			this.groupControl_HInputDiagInfo.Paint += new System.Windows.Forms.PaintEventHandler(this.groupControl_HInputDiagInfo_Paint);
			// 
			// comboBoxEdit_HInputRegion
			// 
			this.comboBoxEdit_HInputRegion.EditValue = "上海标准";
			this.comboBoxEdit_HInputRegion.Location = new System.Drawing.Point(136, 152);
			this.comboBoxEdit_HInputRegion.Name = "comboBoxEdit_HInputRegion";
			// 
			// comboBoxEdit_HInputRegion.Properties
			// 
			this.comboBoxEdit_HInputRegion.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																															  new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.comboBoxEdit_HInputRegion.Properties.Items.AddRange(new object[] {
																					  "上海标准",
																					  "全国标准"});
			this.comboBoxEdit_HInputRegion.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
			this.comboBoxEdit_HInputRegion.Size = new System.Drawing.Size(88, 23);
			this.comboBoxEdit_HInputRegion.TabIndex = 55;
			this.comboBoxEdit_HInputRegion.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit_HInputRegion_SelectedIndexChanged);
			// 
			// notePanel6
			// 
			this.notePanel6.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel6.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel6.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel6.ForeColor = System.Drawing.Color.Black;
			this.notePanel6.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel6.Location = new System.Drawing.Point(40, 152);
			this.notePanel6.MaxRows = 5;
			this.notePanel6.Name = "notePanel6";
			this.notePanel6.ParentAutoHeight = true;
			this.notePanel6.Size = new System.Drawing.Size(80, 22);
			this.notePanel6.TabIndex = 54;
			this.notePanel6.TabStop = false;
			this.notePanel6.Text = "地区标准:";
			// 
			// comboBoxEdit_HInputStd
			// 
			this.comboBoxEdit_HInputStd.EditValue = "市区标准";
			this.comboBoxEdit_HInputStd.Location = new System.Drawing.Point(136, 184);
			this.comboBoxEdit_HInputStd.Name = "comboBoxEdit_HInputStd";
			// 
			// comboBoxEdit_HInputStd.Properties
			// 
			this.comboBoxEdit_HInputStd.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																														   new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.comboBoxEdit_HInputStd.Properties.Items.AddRange(new object[] {
																				   "市区标准",
																				   "郊区标准"});
			this.comboBoxEdit_HInputStd.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
			this.comboBoxEdit_HInputStd.Size = new System.Drawing.Size(88, 23);
			this.comboBoxEdit_HInputStd.TabIndex = 53;
			this.comboBoxEdit_HInputStd.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit_HInputStd_SelectedIndexChanged);
			// 
			// notePanel_HInputStd
			// 
			this.notePanel_HInputStd.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_HInputStd.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_HInputStd.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_HInputStd.ForeColor = System.Drawing.Color.Black;
			this.notePanel_HInputStd.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_HInputStd.Location = new System.Drawing.Point(40, 184);
			this.notePanel_HInputStd.MaxRows = 5;
			this.notePanel_HInputStd.Name = "notePanel_HInputStd";
			this.notePanel_HInputStd.ParentAutoHeight = true;
			this.notePanel_HInputStd.Size = new System.Drawing.Size(80, 22);
			this.notePanel_HInputStd.TabIndex = 52;
			this.notePanel_HInputStd.TabStop = false;
			this.notePanel_HInputStd.Text = "市郊标准:";
			// 
			// textEdit_DiagCheckName
			// 
			this.textEdit_DiagCheckName.EditValue = "";
			this.textEdit_DiagCheckName.Location = new System.Drawing.Point(136, 56);
			this.textEdit_DiagCheckName.Name = "textEdit_DiagCheckName";
			// 
			// textEdit_DiagCheckName.Properties
			// 
			this.textEdit_DiagCheckName.Properties.Enabled = false;
			this.textEdit_DiagCheckName.Size = new System.Drawing.Size(88, 23);
			this.textEdit_DiagCheckName.TabIndex = 49;
			// 
			// textEdit_DiagCheckBindingID
			// 
			this.textEdit_DiagCheckBindingID.EditValue = "";
			this.textEdit_DiagCheckBindingID.Location = new System.Drawing.Point(200, 64);
			this.textEdit_DiagCheckBindingID.Name = "textEdit_DiagCheckBindingID";
			// 
			// textEdit_DiagCheckBindingID.Properties
			// 
			this.textEdit_DiagCheckBindingID.Properties.AutoHeight = false;
			this.textEdit_DiagCheckBindingID.Properties.Enabled = false;
			this.textEdit_DiagCheckBindingID.Size = new System.Drawing.Size(16, 8);
			this.textEdit_DiagCheckBindingID.TabIndex = 48;
			// 
			// notePanel_DiagCheckName
			// 
			this.notePanel_DiagCheckName.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_DiagCheckName.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_DiagCheckName.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_DiagCheckName.ForeColor = System.Drawing.Color.Black;
			this.notePanel_DiagCheckName.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_DiagCheckName.Location = new System.Drawing.Point(40, 56);
			this.notePanel_DiagCheckName.MaxRows = 5;
			this.notePanel_DiagCheckName.Name = "notePanel_DiagCheckName";
			this.notePanel_DiagCheckName.ParentAutoHeight = true;
			this.notePanel_DiagCheckName.Size = new System.Drawing.Size(80, 22);
			this.notePanel_DiagCheckName.TabIndex = 47;
			this.notePanel_DiagCheckName.TabStop = false;
			this.notePanel_DiagCheckName.Text = "幼儿姓名:";
			// 
			// groupControl_HInputDiagResult
			// 
			this.groupControl_HInputDiagResult.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.groupControl_HInputDiagResult.AppearanceCaption.Options.UseFont = true;
			this.groupControl_HInputDiagResult.Controls.Add(this.textEdit_DiagResultX);
			this.groupControl_HInputDiagResult.Controls.Add(this.textEdit_DiagResultWHOPer);
			this.groupControl_HInputDiagResult.Controls.Add(this.textEdit_DiagResultHeightWeight);
			this.groupControl_HInputDiagResult.Controls.Add(this.textEdit_DiagResultUnderWeight);
			this.groupControl_HInputDiagResult.Controls.Add(this.notePanel8);
			this.groupControl_HInputDiagResult.Controls.Add(this.notePanel9);
			this.groupControl_HInputDiagResult.Controls.Add(this.notePanel10);
			this.groupControl_HInputDiagResult.Controls.Add(this.textEdit_DiagResultStunting);
			this.groupControl_HInputDiagResult.Controls.Add(this.textEdit_DiagResultWasting);
			this.groupControl_HInputDiagResult.Controls.Add(this.notePanel1);
			this.groupControl_HInputDiagResult.Controls.Add(this.textEdit_DiagResultHeight);
			this.groupControl_HInputDiagResult.Controls.Add(this.textEdit_DiagResultWeight);
			this.groupControl_HInputDiagResult.Controls.Add(this.notePanel_DiagResultWeight);
			this.groupControl_HInputDiagResult.Controls.Add(this.notePanel_DiagResultNut);
			this.groupControl_HInputDiagResult.Controls.Add(this.notePanel_DiagResultWHO);
			this.groupControl_HInputDiagResult.Controls.Add(this.notePanel_DiagResultHeight);
			this.groupControl_HInputDiagResult.Controls.Add(this.notePanel_DiagResultAge);
			this.groupControl_HInputDiagResult.Controls.Add(this.textEdit_DiagResultWHO);
			this.groupControl_HInputDiagResult.Controls.Add(this.textEdit_DiagResultNut);
			this.groupControl_HInputDiagResult.Controls.Add(this.textEdit_DiagResultAge);
			this.groupControl_HInputDiagResult.Dock = System.Windows.Forms.DockStyle.Right;
			this.groupControl_HInputDiagResult.Location = new System.Drawing.Point(231, 41);
			this.groupControl_HInputDiagResult.Name = "groupControl_HInputDiagResult";
			this.groupControl_HInputDiagResult.Size = new System.Drawing.Size(320, 388);
			this.groupControl_HInputDiagResult.TabIndex = 46;
			this.groupControl_HInputDiagResult.Text = "诊断结果";
			// 
			// textEdit_DiagResultX
			// 
			this.textEdit_DiagResultX.EditValue = "";
			this.textEdit_DiagResultX.Location = new System.Drawing.Point(248, 224);
			this.textEdit_DiagResultX.Name = "textEdit_DiagResultX";
			// 
			// textEdit_DiagResultX.Properties
			// 
			this.textEdit_DiagResultX.Properties.Enabled = false;
			this.textEdit_DiagResultX.Size = new System.Drawing.Size(88, 23);
			this.textEdit_DiagResultX.TabIndex = 76;
			this.textEdit_DiagResultX.Visible = false;
			// 
			// textEdit_DiagResultWHOPer
			// 
			this.textEdit_DiagResultWHOPer.EditValue = "";
			this.textEdit_DiagResultWHOPer.Location = new System.Drawing.Point(248, 184);
			this.textEdit_DiagResultWHOPer.Name = "textEdit_DiagResultWHOPer";
			// 
			// textEdit_DiagResultWHOPer.Properties
			// 
			this.textEdit_DiagResultWHOPer.Properties.Enabled = false;
			this.textEdit_DiagResultWHOPer.Size = new System.Drawing.Size(88, 23);
			this.textEdit_DiagResultWHOPer.TabIndex = 75;
			this.textEdit_DiagResultWHOPer.Visible = false;
			// 
			// textEdit_DiagResultHeightWeight
			// 
			this.textEdit_DiagResultHeightWeight.EditValue = "";
			this.textEdit_DiagResultHeightWeight.Location = new System.Drawing.Point(248, 144);
			this.textEdit_DiagResultHeightWeight.Name = "textEdit_DiagResultHeightWeight";
			// 
			// textEdit_DiagResultHeightWeight.Properties
			// 
			this.textEdit_DiagResultHeightWeight.Properties.Enabled = false;
			this.textEdit_DiagResultHeightWeight.Size = new System.Drawing.Size(88, 23);
			this.textEdit_DiagResultHeightWeight.TabIndex = 74;
			this.textEdit_DiagResultHeightWeight.Visible = false;
			// 
			// textEdit_DiagResultUnderWeight
			// 
			this.textEdit_DiagResultUnderWeight.EditValue = "";
			this.textEdit_DiagResultUnderWeight.Location = new System.Drawing.Point(152, 264);
			this.textEdit_DiagResultUnderWeight.Name = "textEdit_DiagResultUnderWeight";
			// 
			// textEdit_DiagResultUnderWeight.Properties
			// 
			this.textEdit_DiagResultUnderWeight.Properties.Enabled = false;
			this.textEdit_DiagResultUnderWeight.Size = new System.Drawing.Size(88, 23);
			this.textEdit_DiagResultUnderWeight.TabIndex = 70;
			// 
			// notePanel8
			// 
			this.notePanel8.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel8.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel8.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel8.ForeColor = System.Drawing.Color.Black;
			this.notePanel8.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel8.Location = new System.Drawing.Point(40, 264);
			this.notePanel8.MaxRows = 5;
			this.notePanel8.Name = "notePanel8";
			this.notePanel8.ParentAutoHeight = true;
			this.notePanel8.Size = new System.Drawing.Size(96, 22);
			this.notePanel8.TabIndex = 68;
			this.notePanel8.TabStop = false;
			this.notePanel8.Text = "  体重低下:";
			// 
			// notePanel9
			// 
			this.notePanel9.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel9.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel9.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel9.ForeColor = System.Drawing.Color.Black;
			this.notePanel9.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel9.Location = new System.Drawing.Point(40, 344);
			this.notePanel9.MaxRows = 5;
			this.notePanel9.Name = "notePanel9";
			this.notePanel9.ParentAutoHeight = true;
			this.notePanel9.Size = new System.Drawing.Size(96, 22);
			this.notePanel9.TabIndex = 71;
			this.notePanel9.TabStop = false;
			this.notePanel9.Text = "  消瘦情况:";
			// 
			// notePanel10
			// 
			this.notePanel10.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel10.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel10.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel10.ForeColor = System.Drawing.Color.Black;
			this.notePanel10.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel10.Location = new System.Drawing.Point(40, 304);
			this.notePanel10.MaxRows = 5;
			this.notePanel10.Name = "notePanel10";
			this.notePanel10.ParentAutoHeight = true;
			this.notePanel10.Size = new System.Drawing.Size(96, 22);
			this.notePanel10.TabIndex = 69;
			this.notePanel10.TabStop = false;
			this.notePanel10.Text = "   生长迟缓:";
			// 
			// textEdit_DiagResultStunting
			// 
			this.textEdit_DiagResultStunting.EditValue = "";
			this.textEdit_DiagResultStunting.Location = new System.Drawing.Point(152, 304);
			this.textEdit_DiagResultStunting.Name = "textEdit_DiagResultStunting";
			// 
			// textEdit_DiagResultStunting.Properties
			// 
			this.textEdit_DiagResultStunting.Properties.Enabled = false;
			this.textEdit_DiagResultStunting.Size = new System.Drawing.Size(88, 23);
			this.textEdit_DiagResultStunting.TabIndex = 72;
			// 
			// textEdit_DiagResultWasting
			// 
			this.textEdit_DiagResultWasting.EditValue = "";
			this.textEdit_DiagResultWasting.Location = new System.Drawing.Point(152, 344);
			this.textEdit_DiagResultWasting.Name = "textEdit_DiagResultWasting";
			// 
			// textEdit_DiagResultWasting.Properties
			// 
			this.textEdit_DiagResultWasting.Properties.Enabled = false;
			this.textEdit_DiagResultWasting.Size = new System.Drawing.Size(88, 23);
			this.textEdit_DiagResultWasting.TabIndex = 73;
			// 
			// notePanel1
			// 
			this.notePanel1.BackColor = System.Drawing.Color.LightGoldenrodYellow;
			this.notePanel1.Dock = System.Windows.Forms.DockStyle.Top;
			this.notePanel1.ForeColor = System.Drawing.Color.OrangeRed;
			this.notePanel1.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel1.Location = new System.Drawing.Point(3, 18);
			this.notePanel1.MaxRows = 5;
			this.notePanel1.Name = "notePanel1";
			this.notePanel1.ParentAutoHeight = true;
			this.notePanel1.Size = new System.Drawing.Size(314, 23);
			this.notePanel1.TabIndex = 67;
			this.notePanel1.TabStop = false;
			this.notePanel1.Text = "儿童体格发育评价标准";
			// 
			// textEdit_DiagResultHeight
			// 
			this.textEdit_DiagResultHeight.EditValue = "";
			this.textEdit_DiagResultHeight.Location = new System.Drawing.Point(152, 104);
			this.textEdit_DiagResultHeight.Name = "textEdit_DiagResultHeight";
			// 
			// textEdit_DiagResultHeight.Properties
			// 
			this.textEdit_DiagResultHeight.Properties.Enabled = false;
			this.textEdit_DiagResultHeight.Size = new System.Drawing.Size(88, 23);
			this.textEdit_DiagResultHeight.TabIndex = 62;
			// 
			// textEdit_DiagResultWeight
			// 
			this.textEdit_DiagResultWeight.EditValue = "";
			this.textEdit_DiagResultWeight.Location = new System.Drawing.Point(152, 144);
			this.textEdit_DiagResultWeight.Name = "textEdit_DiagResultWeight";
			// 
			// textEdit_DiagResultWeight.Properties
			// 
			this.textEdit_DiagResultWeight.Properties.Enabled = false;
			this.textEdit_DiagResultWeight.Size = new System.Drawing.Size(88, 23);
			this.textEdit_DiagResultWeight.TabIndex = 63;
			// 
			// notePanel_DiagResultWeight
			// 
			this.notePanel_DiagResultWeight.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_DiagResultWeight.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_DiagResultWeight.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_DiagResultWeight.ForeColor = System.Drawing.Color.Black;
			this.notePanel_DiagResultWeight.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_DiagResultWeight.Location = new System.Drawing.Point(40, 144);
			this.notePanel_DiagResultWeight.MaxRows = 5;
			this.notePanel_DiagResultWeight.Name = "notePanel_DiagResultWeight";
			this.notePanel_DiagResultWeight.ParentAutoHeight = true;
			this.notePanel_DiagResultWeight.Size = new System.Drawing.Size(96, 22);
			this.notePanel_DiagResultWeight.TabIndex = 60;
			this.notePanel_DiagResultWeight.TabStop = false;
			this.notePanel_DiagResultWeight.Text = "  体重评价:";
			// 
			// notePanel_DiagResultNut
			// 
			this.notePanel_DiagResultNut.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_DiagResultNut.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_DiagResultNut.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_DiagResultNut.ForeColor = System.Drawing.Color.Black;
			this.notePanel_DiagResultNut.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_DiagResultNut.Location = new System.Drawing.Point(40, 224);
			this.notePanel_DiagResultNut.MaxRows = 5;
			this.notePanel_DiagResultNut.Name = "notePanel_DiagResultNut";
			this.notePanel_DiagResultNut.ParentAutoHeight = true;
			this.notePanel_DiagResultNut.Size = new System.Drawing.Size(96, 22);
			this.notePanel_DiagResultNut.TabIndex = 64;
			this.notePanel_DiagResultNut.TabStop = false;
			this.notePanel_DiagResultNut.Text = "  营养诊断:";
			// 
			// notePanel_DiagResultWHO
			// 
			this.notePanel_DiagResultWHO.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_DiagResultWHO.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_DiagResultWHO.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_DiagResultWHO.ForeColor = System.Drawing.Color.Black;
			this.notePanel_DiagResultWHO.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_DiagResultWHO.Location = new System.Drawing.Point(40, 184);
			this.notePanel_DiagResultWHO.MaxRows = 5;
			this.notePanel_DiagResultWHO.Name = "notePanel_DiagResultWHO";
			this.notePanel_DiagResultWHO.ParentAutoHeight = true;
			this.notePanel_DiagResultWHO.Size = new System.Drawing.Size(96, 22);
			this.notePanel_DiagResultWHO.TabIndex = 61;
			this.notePanel_DiagResultWHO.TabStop = false;
			this.notePanel_DiagResultWHO.Text = "肥胖儿诊断:";
			// 
			// notePanel_DiagResultHeight
			// 
			this.notePanel_DiagResultHeight.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_DiagResultHeight.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_DiagResultHeight.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_DiagResultHeight.ForeColor = System.Drawing.Color.Black;
			this.notePanel_DiagResultHeight.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_DiagResultHeight.Location = new System.Drawing.Point(40, 104);
			this.notePanel_DiagResultHeight.MaxRows = 5;
			this.notePanel_DiagResultHeight.Name = "notePanel_DiagResultHeight";
			this.notePanel_DiagResultHeight.ParentAutoHeight = true;
			this.notePanel_DiagResultHeight.Size = new System.Drawing.Size(96, 22);
			this.notePanel_DiagResultHeight.TabIndex = 59;
			this.notePanel_DiagResultHeight.TabStop = false;
			this.notePanel_DiagResultHeight.Text = "  身高评价:";
			// 
			// notePanel_DiagResultAge
			// 
			this.notePanel_DiagResultAge.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_DiagResultAge.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_DiagResultAge.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_DiagResultAge.ForeColor = System.Drawing.Color.Black;
			this.notePanel_DiagResultAge.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_DiagResultAge.Location = new System.Drawing.Point(40, 64);
			this.notePanel_DiagResultAge.MaxRows = 5;
			this.notePanel_DiagResultAge.Name = "notePanel_DiagResultAge";
			this.notePanel_DiagResultAge.ParentAutoHeight = true;
			this.notePanel_DiagResultAge.Size = new System.Drawing.Size(96, 22);
			this.notePanel_DiagResultAge.TabIndex = 57;
			this.notePanel_DiagResultAge.TabStop = false;
			this.notePanel_DiagResultAge.Text = "  幼儿年龄:";
			// 
			// textEdit_DiagResultWHO
			// 
			this.textEdit_DiagResultWHO.EditValue = "";
			this.textEdit_DiagResultWHO.Location = new System.Drawing.Point(152, 184);
			this.textEdit_DiagResultWHO.Name = "textEdit_DiagResultWHO";
			// 
			// textEdit_DiagResultWHO.Properties
			// 
			this.textEdit_DiagResultWHO.Properties.Enabled = false;
			this.textEdit_DiagResultWHO.Size = new System.Drawing.Size(88, 23);
			this.textEdit_DiagResultWHO.TabIndex = 65;
			// 
			// textEdit_DiagResultNut
			// 
			this.textEdit_DiagResultNut.EditValue = "";
			this.textEdit_DiagResultNut.Location = new System.Drawing.Point(152, 224);
			this.textEdit_DiagResultNut.Name = "textEdit_DiagResultNut";
			// 
			// textEdit_DiagResultNut.Properties
			// 
			this.textEdit_DiagResultNut.Properties.Enabled = false;
			this.textEdit_DiagResultNut.Size = new System.Drawing.Size(88, 23);
			this.textEdit_DiagResultNut.TabIndex = 66;
			// 
			// textEdit_DiagResultAge
			// 
			this.textEdit_DiagResultAge.EditValue = "";
			this.textEdit_DiagResultAge.Location = new System.Drawing.Point(152, 64);
			this.textEdit_DiagResultAge.Name = "textEdit_DiagResultAge";
			// 
			// textEdit_DiagResultAge.Properties
			// 
			this.textEdit_DiagResultAge.Properties.Enabled = false;
			this.textEdit_DiagResultAge.Size = new System.Drawing.Size(88, 23);
			this.textEdit_DiagResultAge.TabIndex = 58;
			// 
			// memoEdit_DiagRemark
			// 
			this.memoEdit_DiagRemark.EditValue = "";
			this.memoEdit_DiagRemark.Location = new System.Drawing.Point(40, 344);
			this.memoEdit_DiagRemark.Name = "memoEdit_DiagRemark";
			this.memoEdit_DiagRemark.Size = new System.Drawing.Size(184, 80);
			this.memoEdit_DiagRemark.TabIndex = 45;
			// 
			// notePanel_DiagRemark
			// 
			this.notePanel_DiagRemark.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_DiagRemark.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_DiagRemark.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_DiagRemark.ForeColor = System.Drawing.Color.Black;
			this.notePanel_DiagRemark.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_DiagRemark.Location = new System.Drawing.Point(40, 312);
			this.notePanel_DiagRemark.MaxRows = 5;
			this.notePanel_DiagRemark.Name = "notePanel_DiagRemark";
			this.notePanel_DiagRemark.ParentAutoHeight = true;
			this.notePanel_DiagRemark.Size = new System.Drawing.Size(184, 22);
			this.notePanel_DiagRemark.TabIndex = 44;
			this.notePanel_DiagRemark.TabStop = false;
			this.notePanel_DiagRemark.Text = "             测评备注:";
			// 
			// textEdit_DiagWeight
			// 
			this.textEdit_DiagWeight.EditValue = "";
			this.textEdit_DiagWeight.Location = new System.Drawing.Point(136, 280);
			this.textEdit_DiagWeight.Name = "textEdit_DiagWeight";
			this.textEdit_DiagWeight.Size = new System.Drawing.Size(88, 23);
			this.textEdit_DiagWeight.TabIndex = 43;
			// 
			// textEdit_DiagHeight
			// 
			this.textEdit_DiagHeight.EditValue = "";
			this.textEdit_DiagHeight.Location = new System.Drawing.Point(136, 248);
			this.textEdit_DiagHeight.Name = "textEdit_DiagHeight";
			this.textEdit_DiagHeight.Size = new System.Drawing.Size(88, 23);
			this.textEdit_DiagHeight.TabIndex = 42;
			// 
			// notePanel_HInputDaigInfo
			// 
			this.notePanel_HInputDaigInfo.BackColor = System.Drawing.Color.LightGoldenrodYellow;
			this.notePanel_HInputDaigInfo.Dock = System.Windows.Forms.DockStyle.Top;
			this.notePanel_HInputDaigInfo.ForeColor = System.Drawing.Color.OrangeRed;
			this.notePanel_HInputDaigInfo.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_HInputDaigInfo.Location = new System.Drawing.Point(3, 18);
			this.notePanel_HInputDaigInfo.MaxRows = 5;
			this.notePanel_HInputDaigInfo.Name = "notePanel_HInputDaigInfo";
			this.notePanel_HInputDaigInfo.ParentAutoHeight = true;
			this.notePanel_HInputDaigInfo.Size = new System.Drawing.Size(548, 23);
			this.notePanel_HInputDaigInfo.TabIndex = 41;
			this.notePanel_HInputDaigInfo.TabStop = false;
			this.notePanel_HInputDaigInfo.Text = "全国标准没有市郊之分(最后3项评测属全国标准,上海地区不会对该几项做评测)";
			// 
			// notePanel_DiagWeight
			// 
			this.notePanel_DiagWeight.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_DiagWeight.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_DiagWeight.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_DiagWeight.ForeColor = System.Drawing.Color.Black;
			this.notePanel_DiagWeight.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_DiagWeight.Location = new System.Drawing.Point(40, 280);
			this.notePanel_DiagWeight.MaxRows = 5;
			this.notePanel_DiagWeight.Name = "notePanel_DiagWeight";
			this.notePanel_DiagWeight.ParentAutoHeight = true;
			this.notePanel_DiagWeight.Size = new System.Drawing.Size(80, 22);
			this.notePanel_DiagWeight.TabIndex = 40;
			this.notePanel_DiagWeight.TabStop = false;
			this.notePanel_DiagWeight.Text = "幼儿体重:";
			// 
			// notePanel_DiagHeight
			// 
			this.notePanel_DiagHeight.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_DiagHeight.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_DiagHeight.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_DiagHeight.ForeColor = System.Drawing.Color.Black;
			this.notePanel_DiagHeight.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_DiagHeight.Location = new System.Drawing.Point(40, 248);
			this.notePanel_DiagHeight.MaxRows = 5;
			this.notePanel_DiagHeight.Name = "notePanel_DiagHeight";
			this.notePanel_DiagHeight.ParentAutoHeight = true;
			this.notePanel_DiagHeight.Size = new System.Drawing.Size(80, 22);
			this.notePanel_DiagHeight.TabIndex = 39;
			this.notePanel_DiagHeight.TabStop = false;
			this.notePanel_DiagHeight.Text = "幼儿身高:";
			// 
			// dateEdit_DiagCheckDate
			// 
			this.dateEdit_DiagCheckDate.EditValue = new System.DateTime(2005, 12, 1, 0, 0, 0, 0);
			this.dateEdit_DiagCheckDate.Location = new System.Drawing.Point(136, 216);
			this.dateEdit_DiagCheckDate.Name = "dateEdit_DiagCheckDate";
			// 
			// dateEdit_DiagCheckDate.Properties
			// 
			this.dateEdit_DiagCheckDate.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																														   new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.dateEdit_DiagCheckDate.Properties.DisplayFormat.FormatString = "yyyy-MM-dd";
			this.dateEdit_DiagCheckDate.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
			this.dateEdit_DiagCheckDate.Properties.Mask.EditMask = "d";
			this.dateEdit_DiagCheckDate.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.DateTime;
			this.dateEdit_DiagCheckDate.Size = new System.Drawing.Size(88, 23);
			this.dateEdit_DiagCheckDate.TabIndex = 38;
			// 
			// notePanel_DiagCheckDate
			// 
			this.notePanel_DiagCheckDate.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_DiagCheckDate.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_DiagCheckDate.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_DiagCheckDate.ForeColor = System.Drawing.Color.Black;
			this.notePanel_DiagCheckDate.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_DiagCheckDate.Location = new System.Drawing.Point(40, 216);
			this.notePanel_DiagCheckDate.MaxRows = 5;
			this.notePanel_DiagCheckDate.Name = "notePanel_DiagCheckDate";
			this.notePanel_DiagCheckDate.ParentAutoHeight = true;
			this.notePanel_DiagCheckDate.Size = new System.Drawing.Size(80, 22);
			this.notePanel_DiagCheckDate.TabIndex = 36;
			this.notePanel_DiagCheckDate.TabStop = false;
			this.notePanel_DiagCheckDate.Text = "体检日期:";
			// 
			// notePanel_HInputBirthday
			// 
			this.notePanel_HInputBirthday.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_HInputBirthday.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_HInputBirthday.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_HInputBirthday.ForeColor = System.Drawing.Color.Black;
			this.notePanel_HInputBirthday.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_HInputBirthday.Location = new System.Drawing.Point(40, 120);
			this.notePanel_HInputBirthday.MaxRows = 5;
			this.notePanel_HInputBirthday.Name = "notePanel_HInputBirthday";
			this.notePanel_HInputBirthday.ParentAutoHeight = true;
			this.notePanel_HInputBirthday.Size = new System.Drawing.Size(80, 22);
			this.notePanel_HInputBirthday.TabIndex = 46;
			this.notePanel_HInputBirthday.TabStop = false;
			this.notePanel_HInputBirthday.Text = "幼儿生日:";
			// 
			// textEdit_HInputBirthday
			// 
			this.textEdit_HInputBirthday.EditValue = "";
			this.textEdit_HInputBirthday.Location = new System.Drawing.Point(136, 120);
			this.textEdit_HInputBirthday.Name = "textEdit_HInputBirthday";
			// 
			// textEdit_HInputBirthday.Properties
			// 
			this.textEdit_HInputBirthday.Properties.DisplayFormat.FormatString = "yyyy-MM-dd";
			this.textEdit_HInputBirthday.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
			this.textEdit_HInputBirthday.Properties.Enabled = false;
			this.textEdit_HInputBirthday.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.DateTime;
			this.textEdit_HInputBirthday.Properties.ReadOnly = true;
			this.textEdit_HInputBirthday.Size = new System.Drawing.Size(88, 23);
			this.textEdit_HInputBirthday.TabIndex = 47;
			// 
			// notePanel_DiagCheckGender
			// 
			this.notePanel_DiagCheckGender.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_DiagCheckGender.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_DiagCheckGender.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_DiagCheckGender.ForeColor = System.Drawing.Color.Black;
			this.notePanel_DiagCheckGender.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_DiagCheckGender.Location = new System.Drawing.Point(40, 88);
			this.notePanel_DiagCheckGender.MaxRows = 5;
			this.notePanel_DiagCheckGender.Name = "notePanel_DiagCheckGender";
			this.notePanel_DiagCheckGender.ParentAutoHeight = true;
			this.notePanel_DiagCheckGender.Size = new System.Drawing.Size(80, 22);
			this.notePanel_DiagCheckGender.TabIndex = 50;
			this.notePanel_DiagCheckGender.TabStop = false;
			this.notePanel_DiagCheckGender.Text = "幼儿性别:";
			// 
			// textEdit_DiagCheckGender
			// 
			this.textEdit_DiagCheckGender.EditValue = "";
			this.textEdit_DiagCheckGender.Location = new System.Drawing.Point(136, 88);
			this.textEdit_DiagCheckGender.Name = "textEdit_DiagCheckGender";
			// 
			// textEdit_DiagCheckGender.Properties
			// 
			this.textEdit_DiagCheckGender.Properties.Enabled = false;
			this.textEdit_DiagCheckGender.Size = new System.Drawing.Size(88, 23);
			this.textEdit_DiagCheckGender.TabIndex = 51;
			// 
			// panelControl5
			// 
			this.panelControl5.Controls.Add(this.simpleButton_HInputModify);
			this.panelControl5.Controls.Add(this.simpleButton_HInputDelete);
			this.panelControl5.Controls.Add(this.simpleButton_HInputSave);
			this.panelControl5.Controls.Add(this.simpleButton_HInputDiag);
			this.panelControl5.Dock = System.Windows.Forms.DockStyle.Top;
			this.panelControl5.Location = new System.Drawing.Point(0, 0);
			this.panelControl5.Name = "panelControl5";
			this.panelControl5.Size = new System.Drawing.Size(554, 48);
			this.panelControl5.TabIndex = 0;
			this.panelControl5.Text = "panelControl5";
			// 
			// simpleButton_HInputModify
			// 
			this.simpleButton_HInputModify.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.simpleButton_HInputModify.Appearance.ForeColor = System.Drawing.Color.DarkMagenta;
			this.simpleButton_HInputModify.Appearance.Options.UseFont = true;
			this.simpleButton_HInputModify.Appearance.Options.UseForeColor = true;
			this.simpleButton_HInputModify.Enabled = false;
			this.simpleButton_HInputModify.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton_HInputModify.Image")));
			this.simpleButton_HInputModify.Location = new System.Drawing.Point(136, 8);
			this.simpleButton_HInputModify.Name = "simpleButton_HInputModify";
			this.simpleButton_HInputModify.Size = new System.Drawing.Size(92, 26);
			this.simpleButton_HInputModify.TabIndex = 12;
			this.simpleButton_HInputModify.Tag = 4;
			this.simpleButton_HInputModify.Text = "修  改";
			this.simpleButton_HInputModify.Click += new System.EventHandler(this.simpleButton_HInputModify_Click);
			// 
			// simpleButton_HInputDelete
			// 
			this.simpleButton_HInputDelete.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.simpleButton_HInputDelete.Appearance.ForeColor = System.Drawing.Color.DarkMagenta;
			this.simpleButton_HInputDelete.Appearance.Options.UseFont = true;
			this.simpleButton_HInputDelete.Appearance.Options.UseForeColor = true;
			this.simpleButton_HInputDelete.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton_HInputDelete.Image")));
			this.simpleButton_HInputDelete.Location = new System.Drawing.Point(240, 8);
			this.simpleButton_HInputDelete.Name = "simpleButton_HInputDelete";
			this.simpleButton_HInputDelete.Size = new System.Drawing.Size(92, 26);
			this.simpleButton_HInputDelete.TabIndex = 11;
			this.simpleButton_HInputDelete.Tag = 4;
			this.simpleButton_HInputDelete.Text = "删  除";
			this.simpleButton_HInputDelete.Click += new System.EventHandler(this.simpleButton_HInputDelete_Click);
			// 
			// simpleButton_HInputSave
			// 
			this.simpleButton_HInputSave.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.simpleButton_HInputSave.Appearance.ForeColor = System.Drawing.Color.DarkMagenta;
			this.simpleButton_HInputSave.Appearance.Options.UseFont = true;
			this.simpleButton_HInputSave.Appearance.Options.UseForeColor = true;
			this.simpleButton_HInputSave.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton_HInputSave.Image")));
			this.simpleButton_HInputSave.Location = new System.Drawing.Point(240, 24);
			this.simpleButton_HInputSave.Name = "simpleButton_HInputSave";
			this.simpleButton_HInputSave.Size = new System.Drawing.Size(8, 8);
			this.simpleButton_HInputSave.TabIndex = 9;
			this.simpleButton_HInputSave.Tag = 4;
			this.simpleButton_HInputSave.Text = "保  存";
			this.simpleButton_HInputSave.Click += new System.EventHandler(this.simpleButton_HInputSave_Click);
			// 
			// simpleButton_HInputDiag
			// 
			this.simpleButton_HInputDiag.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.simpleButton_HInputDiag.Appearance.ForeColor = System.Drawing.Color.DarkMagenta;
			this.simpleButton_HInputDiag.Appearance.Options.UseFont = true;
			this.simpleButton_HInputDiag.Appearance.Options.UseForeColor = true;
			this.simpleButton_HInputDiag.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton_HInputDiag.Image")));
			this.simpleButton_HInputDiag.Location = new System.Drawing.Point(8, 8);
			this.simpleButton_HInputDiag.Name = "simpleButton_HInputDiag";
			this.simpleButton_HInputDiag.Size = new System.Drawing.Size(112, 26);
			this.simpleButton_HInputDiag.TabIndex = 8;
			this.simpleButton_HInputDiag.Tag = 4;
			this.simpleButton_HInputDiag.Text = "诊断并保存";
			this.simpleButton_HInputDiag.Click += new System.EventHandler(this.simpleButton_HInputDiag_Click);
			// 
			// xtraTabPage6
			// 
			this.xtraTabPage6.Appearance.PageClient.BackColor = System.Drawing.Color.WhiteSmoke;
			this.xtraTabPage6.Appearance.PageClient.Options.UseBackColor = true;
			this.xtraTabPage6.Controls.Add(this.splitContainerControl7);
			this.xtraTabPage6.Name = "xtraTabPage6";
			this.xtraTabPage6.Size = new System.Drawing.Size(768, 515);
			this.xtraTabPage6.Text = "幼儿评测结果浏览及打印";
			// 
			// splitContainerControl7
			// 
			this.splitContainerControl7.Dock = System.Windows.Forms.DockStyle.Fill;
			this.splitContainerControl7.Location = new System.Drawing.Point(0, 0);
			this.splitContainerControl7.Name = "splitContainerControl7";
			this.splitContainerControl7.Panel1.Controls.Add(this.groupControl_HOutputPrintType);
			this.splitContainerControl7.Panel1.Controls.Add(this.groupControl_HOutputSer);
			this.splitContainerControl7.Panel1.Text = "splitContainerControl7_Panel1";
			this.splitContainerControl7.Panel2.Controls.Add(this.gridControl_HOutputNchsGrid);
			this.splitContainerControl7.Panel2.Controls.Add(this.gridControl_HOutputGridShow);
			this.splitContainerControl7.Panel2.Controls.Add(this.panelControl6);
			this.splitContainerControl7.Panel2.Text = "splitContainerControl7_Panel2";
			this.splitContainerControl7.Size = new System.Drawing.Size(768, 515);
			this.splitContainerControl7.SplitterPosition = 250;
			this.splitContainerControl7.TabIndex = 0;
			this.splitContainerControl7.Text = "splitContainerControl7";
			// 
			// groupControl_HOutputPrintType
			// 
			this.groupControl_HOutputPrintType.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.groupControl_HOutputPrintType.AppearanceCaption.Options.UseFont = true;
			this.groupControl_HOutputPrintType.Controls.Add(this.checkEdit_HOutputPrintType4th);
			this.groupControl_HOutputPrintType.Controls.Add(this.checkEdit_HOutputPrintType3rd);
			this.groupControl_HOutputPrintType.Controls.Add(this.checkEdit_HOutputPrintType2nd);
			this.groupControl_HOutputPrintType.Controls.Add(this.checkEdit_HOutputPrintType1st);
			this.groupControl_HOutputPrintType.Dock = System.Windows.Forms.DockStyle.Fill;
			this.groupControl_HOutputPrintType.Location = new System.Drawing.Point(0, 376);
			this.groupControl_HOutputPrintType.Name = "groupControl_HOutputPrintType";
			this.groupControl_HOutputPrintType.Size = new System.Drawing.Size(244, 133);
			this.groupControl_HOutputPrintType.TabIndex = 1;
			this.groupControl_HOutputPrintType.Text = "报表格式及选项目";
			// 
			// checkEdit_HOutputPrintType4th
			// 
			this.checkEdit_HOutputPrintType4th.Location = new System.Drawing.Point(8, 96);
			this.checkEdit_HOutputPrintType4th.Name = "checkEdit_HOutputPrintType4th";
			// 
			// checkEdit_HOutputPrintType4th.Properties
			// 
			this.checkEdit_HOutputPrintType4th.Properties.Caption = "是否生成个人体格评价详细表(限全国)";
			this.checkEdit_HOutputPrintType4th.Size = new System.Drawing.Size(224, 19);
			this.checkEdit_HOutputPrintType4th.TabIndex = 59;
			// 
			// checkEdit_HOutputPrintType3rd
			// 
			this.checkEdit_HOutputPrintType3rd.Location = new System.Drawing.Point(8, 72);
			this.checkEdit_HOutputPrintType3rd.Name = "checkEdit_HOutputPrintType3rd";
			// 
			// checkEdit_HOutputPrintType3rd.Properties
			// 
			this.checkEdit_HOutputPrintType3rd.Properties.Caption = "是否生成身高体重超均值统计(限上海)";
			this.checkEdit_HOutputPrintType3rd.Size = new System.Drawing.Size(224, 19);
			this.checkEdit_HOutputPrintType3rd.TabIndex = 57;
			// 
			// checkEdit_HOutputPrintType2nd
			// 
			this.checkEdit_HOutputPrintType2nd.Location = new System.Drawing.Point(8, 48);
			this.checkEdit_HOutputPrintType2nd.Name = "checkEdit_HOutputPrintType2nd";
			// 
			// checkEdit_HOutputPrintType2nd.Properties
			// 
			this.checkEdit_HOutputPrintType2nd.Properties.Caption = "是否生成身高体重均值统计";
			this.checkEdit_HOutputPrintType2nd.Size = new System.Drawing.Size(224, 19);
			this.checkEdit_HOutputPrintType2nd.TabIndex = 56;
			// 
			// checkEdit_HOutputPrintType1st
			// 
			this.checkEdit_HOutputPrintType1st.Location = new System.Drawing.Point(8, 24);
			this.checkEdit_HOutputPrintType1st.Name = "checkEdit_HOutputPrintType1st";
			// 
			// checkEdit_HOutputPrintType1st.Properties
			// 
			this.checkEdit_HOutputPrintType1st.Properties.Caption = "是否按幼儿所在班级划分";
			this.checkEdit_HOutputPrintType1st.Size = new System.Drawing.Size(224, 19);
			this.checkEdit_HOutputPrintType1st.TabIndex = 55;
			// 
			// groupControl_HOutputSer
			// 
			this.groupControl_HOutputSer.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.groupControl_HOutputSer.AppearanceCaption.Options.UseFont = true;
			this.groupControl_HOutputSer.Controls.Add(this.comboBoxEdit_HOutputRegion);
			this.groupControl_HOutputSer.Controls.Add(this.notePanel11);
			this.groupControl_HOutputSer.Controls.Add(this.dateEdit_HOutputEndDate);
			this.groupControl_HOutputSer.Controls.Add(this.dateEdit_HOutputBegDate);
			this.groupControl_HOutputSer.Controls.Add(this.notePanel_HOutputEndDate);
			this.groupControl_HOutputSer.Controls.Add(this.notePanel_HOutputBegDate);
			this.groupControl_HOutputSer.Controls.Add(this.comboBoxEdit_HOutputGender);
			this.groupControl_HOutputSer.Controls.Add(this.comboBoxEdit_HOutputResult);
			this.groupControl_HOutputSer.Controls.Add(this.notePanel_HOutputResult);
			this.groupControl_HOutputSer.Controls.Add(this.comboBoxEdit_HOutputType);
			this.groupControl_HOutputSer.Controls.Add(this.comboBoxEdit_HOutputAge);
			this.groupControl_HOutputSer.Controls.Add(this.notePanel_HOutputType);
			this.groupControl_HOutputSer.Controls.Add(this.notePanel_HOutputAge);
			this.groupControl_HOutputSer.Controls.Add(this.textEdit_HOutputNumber);
			this.groupControl_HOutputSer.Controls.Add(this.textEdit_HOutputName);
			this.groupControl_HOutputSer.Controls.Add(this.comboBoxEdit_HOutputClass);
			this.groupControl_HOutputSer.Controls.Add(this.notePanel_HOutputClass);
			this.groupControl_HOutputSer.Controls.Add(this.comboBoxEdit_HOutputGrade);
			this.groupControl_HOutputSer.Controls.Add(this.notePanel_HOutputGrade);
			this.groupControl_HOutputSer.Controls.Add(this.notePanel_HOutputNumber);
			this.groupControl_HOutputSer.Controls.Add(this.notePanel_HOutputName);
			this.groupControl_HOutputSer.Controls.Add(this.notePanel_HOutputGender);
			this.groupControl_HOutputSer.Dock = System.Windows.Forms.DockStyle.Top;
			this.groupControl_HOutputSer.Location = new System.Drawing.Point(0, 0);
			this.groupControl_HOutputSer.Name = "groupControl_HOutputSer";
			this.groupControl_HOutputSer.Size = new System.Drawing.Size(244, 376);
			this.groupControl_HOutputSer.TabIndex = 0;
			this.groupControl_HOutputSer.Text = "信息查询";
			// 
			// comboBoxEdit_HOutputRegion
			// 
			this.comboBoxEdit_HOutputRegion.EditValue = "上海标准";
			this.comboBoxEdit_HOutputRegion.Location = new System.Drawing.Point(136, 184);
			this.comboBoxEdit_HOutputRegion.Name = "comboBoxEdit_HOutputRegion";
			// 
			// comboBoxEdit_HOutputRegion.Properties
			// 
			this.comboBoxEdit_HOutputRegion.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																															   new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.comboBoxEdit_HOutputRegion.Properties.Items.AddRange(new object[] {
																					   "上海标准",
																					   "全国标准"});
			this.comboBoxEdit_HOutputRegion.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
			this.comboBoxEdit_HOutputRegion.Size = new System.Drawing.Size(88, 23);
			this.comboBoxEdit_HOutputRegion.TabIndex = 61;
			this.comboBoxEdit_HOutputRegion.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit_HOutputRegion_SelectedIndexChanged);
			// 
			// notePanel11
			// 
			this.notePanel11.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel11.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel11.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel11.ForeColor = System.Drawing.Color.Black;
			this.notePanel11.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel11.Location = new System.Drawing.Point(24, 184);
			this.notePanel11.MaxRows = 5;
			this.notePanel11.Name = "notePanel11";
			this.notePanel11.ParentAutoHeight = true;
			this.notePanel11.Size = new System.Drawing.Size(83, 22);
			this.notePanel11.TabIndex = 60;
			this.notePanel11.TabStop = false;
			this.notePanel11.Text = "地区标准:";
			// 
			// dateEdit_HOutputEndDate
			// 
			this.dateEdit_HOutputEndDate.EditValue = new System.DateTime(2005, 12, 1, 0, 0, 0, 0);
			this.dateEdit_HOutputEndDate.Location = new System.Drawing.Point(136, 344);
			this.dateEdit_HOutputEndDate.Name = "dateEdit_HOutputEndDate";
			// 
			// dateEdit_HOutputEndDate.Properties
			// 
			this.dateEdit_HOutputEndDate.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																															new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.dateEdit_HOutputEndDate.Properties.Mask.EditMask = "d";
			this.dateEdit_HOutputEndDate.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.DateTime;
			this.dateEdit_HOutputEndDate.Size = new System.Drawing.Size(88, 23);
			this.dateEdit_HOutputEndDate.TabIndex = 59;
			// 
			// dateEdit_HOutputBegDate
			// 
			this.dateEdit_HOutputBegDate.EditValue = new System.DateTime(2005, 12, 1, 0, 0, 0, 0);
			this.dateEdit_HOutputBegDate.Location = new System.Drawing.Point(136, 312);
			this.dateEdit_HOutputBegDate.Name = "dateEdit_HOutputBegDate";
			// 
			// dateEdit_HOutputBegDate.Properties
			// 
			this.dateEdit_HOutputBegDate.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																															new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.dateEdit_HOutputBegDate.Properties.Mask.EditMask = "d";
			this.dateEdit_HOutputBegDate.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.DateTime;
			this.dateEdit_HOutputBegDate.Size = new System.Drawing.Size(88, 23);
			this.dateEdit_HOutputBegDate.TabIndex = 58;
			// 
			// notePanel_HOutputEndDate
			// 
			this.notePanel_HOutputEndDate.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_HOutputEndDate.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_HOutputEndDate.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_HOutputEndDate.ForeColor = System.Drawing.Color.Black;
			this.notePanel_HOutputEndDate.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_HOutputEndDate.Location = new System.Drawing.Point(24, 344);
			this.notePanel_HOutputEndDate.MaxRows = 5;
			this.notePanel_HOutputEndDate.Name = "notePanel_HOutputEndDate";
			this.notePanel_HOutputEndDate.ParentAutoHeight = true;
			this.notePanel_HOutputEndDate.Size = new System.Drawing.Size(83, 22);
			this.notePanel_HOutputEndDate.TabIndex = 57;
			this.notePanel_HOutputEndDate.TabStop = false;
			this.notePanel_HOutputEndDate.Text = "截止时间:";
			// 
			// notePanel_HOutputBegDate
			// 
			this.notePanel_HOutputBegDate.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_HOutputBegDate.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_HOutputBegDate.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_HOutputBegDate.ForeColor = System.Drawing.Color.Black;
			this.notePanel_HOutputBegDate.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_HOutputBegDate.Location = new System.Drawing.Point(24, 312);
			this.notePanel_HOutputBegDate.MaxRows = 5;
			this.notePanel_HOutputBegDate.Name = "notePanel_HOutputBegDate";
			this.notePanel_HOutputBegDate.ParentAutoHeight = true;
			this.notePanel_HOutputBegDate.Size = new System.Drawing.Size(83, 22);
			this.notePanel_HOutputBegDate.TabIndex = 56;
			this.notePanel_HOutputBegDate.TabStop = false;
			this.notePanel_HOutputBegDate.Text = "起始时间:";
			// 
			// comboBoxEdit_HOutputGender
			// 
			this.comboBoxEdit_HOutputGender.EditValue = "全部";
			this.comboBoxEdit_HOutputGender.Location = new System.Drawing.Point(136, 152);
			this.comboBoxEdit_HOutputGender.Name = "comboBoxEdit_HOutputGender";
			// 
			// comboBoxEdit_HOutputGender.Properties
			// 
			this.comboBoxEdit_HOutputGender.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																															   new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.comboBoxEdit_HOutputGender.Properties.Items.AddRange(new object[] {
																					   "全部",
																					   "男",
																					   "女"});
			this.comboBoxEdit_HOutputGender.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
			this.comboBoxEdit_HOutputGender.Size = new System.Drawing.Size(88, 23);
			this.comboBoxEdit_HOutputGender.TabIndex = 55;
			this.comboBoxEdit_HOutputGender.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit_HOutputGender_SelectedIndexChanged);
			// 
			// comboBoxEdit_HOutputResult
			// 
			this.comboBoxEdit_HOutputResult.EditValue = "全部";
			this.comboBoxEdit_HOutputResult.Location = new System.Drawing.Point(136, 280);
			this.comboBoxEdit_HOutputResult.Name = "comboBoxEdit_HOutputResult";
			// 
			// comboBoxEdit_HOutputResult.Properties
			// 
			this.comboBoxEdit_HOutputResult.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																															   new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.comboBoxEdit_HOutputResult.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
			this.comboBoxEdit_HOutputResult.Size = new System.Drawing.Size(88, 23);
			this.comboBoxEdit_HOutputResult.TabIndex = 54;
			this.comboBoxEdit_HOutputResult.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit_HOutputResult_SelectedIndexChanged);
			// 
			// notePanel_HOutputResult
			// 
			this.notePanel_HOutputResult.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_HOutputResult.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_HOutputResult.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_HOutputResult.ForeColor = System.Drawing.Color.Black;
			this.notePanel_HOutputResult.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_HOutputResult.Location = new System.Drawing.Point(24, 280);
			this.notePanel_HOutputResult.MaxRows = 5;
			this.notePanel_HOutputResult.Name = "notePanel_HOutputResult";
			this.notePanel_HOutputResult.ParentAutoHeight = true;
			this.notePanel_HOutputResult.Size = new System.Drawing.Size(83, 22);
			this.notePanel_HOutputResult.TabIndex = 53;
			this.notePanel_HOutputResult.TabStop = false;
			this.notePanel_HOutputResult.Text = "诊断结果:";
			// 
			// comboBoxEdit_HOutputType
			// 
			this.comboBoxEdit_HOutputType.EditValue = "全部";
			this.comboBoxEdit_HOutputType.Location = new System.Drawing.Point(136, 248);
			this.comboBoxEdit_HOutputType.Name = "comboBoxEdit_HOutputType";
			// 
			// comboBoxEdit_HOutputType.Properties
			// 
			this.comboBoxEdit_HOutputType.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																															 new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.comboBoxEdit_HOutputType.Properties.Items.AddRange(new object[] {
																					 "全部",
																					 "身高评价",
																					 "体重评价",
																					 "肥胖评价",
																					 "营养评价"});
			this.comboBoxEdit_HOutputType.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
			this.comboBoxEdit_HOutputType.Size = new System.Drawing.Size(88, 23);
			this.comboBoxEdit_HOutputType.TabIndex = 52;
			this.comboBoxEdit_HOutputType.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit_HOutputType_SelectedIndexChanged);
			// 
			// comboBoxEdit_HOutputAge
			// 
			this.comboBoxEdit_HOutputAge.EditValue = "全部";
			this.comboBoxEdit_HOutputAge.Location = new System.Drawing.Point(136, 216);
			this.comboBoxEdit_HOutputAge.Name = "comboBoxEdit_HOutputAge";
			// 
			// comboBoxEdit_HOutputAge.Properties
			// 
			this.comboBoxEdit_HOutputAge.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																															new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.comboBoxEdit_HOutputAge.Properties.Items.AddRange(new object[] {
																					"全部",
																					"0-1岁组",
																					"1岁组",
																					"2岁组",
																					"3岁组",
																					"4岁组",
																					"5岁组",
																					"6-7岁组"});
			this.comboBoxEdit_HOutputAge.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
			this.comboBoxEdit_HOutputAge.Size = new System.Drawing.Size(88, 23);
			this.comboBoxEdit_HOutputAge.TabIndex = 51;
			this.comboBoxEdit_HOutputAge.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit_HOutputAge_SelectedIndexChanged);
			// 
			// notePanel_HOutputType
			// 
			this.notePanel_HOutputType.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_HOutputType.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_HOutputType.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_HOutputType.ForeColor = System.Drawing.Color.Black;
			this.notePanel_HOutputType.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_HOutputType.Location = new System.Drawing.Point(24, 248);
			this.notePanel_HOutputType.MaxRows = 5;
			this.notePanel_HOutputType.Name = "notePanel_HOutputType";
			this.notePanel_HOutputType.ParentAutoHeight = true;
			this.notePanel_HOutputType.Size = new System.Drawing.Size(83, 22);
			this.notePanel_HOutputType.TabIndex = 50;
			this.notePanel_HOutputType.TabStop = false;
			this.notePanel_HOutputType.Text = "诊断项目:";
			// 
			// notePanel_HOutputAge
			// 
			this.notePanel_HOutputAge.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_HOutputAge.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_HOutputAge.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_HOutputAge.ForeColor = System.Drawing.Color.Black;
			this.notePanel_HOutputAge.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_HOutputAge.Location = new System.Drawing.Point(24, 216);
			this.notePanel_HOutputAge.MaxRows = 5;
			this.notePanel_HOutputAge.Name = "notePanel_HOutputAge";
			this.notePanel_HOutputAge.ParentAutoHeight = true;
			this.notePanel_HOutputAge.Size = new System.Drawing.Size(83, 22);
			this.notePanel_HOutputAge.TabIndex = 49;
			this.notePanel_HOutputAge.TabStop = false;
			this.notePanel_HOutputAge.Text = "幼儿年龄:";
			// 
			// textEdit_HOutputNumber
			// 
			this.textEdit_HOutputNumber.EditValue = "";
			this.textEdit_HOutputNumber.Location = new System.Drawing.Point(136, 120);
			this.textEdit_HOutputNumber.Name = "textEdit_HOutputNumber";
			this.textEdit_HOutputNumber.Size = new System.Drawing.Size(88, 23);
			this.textEdit_HOutputNumber.TabIndex = 48;
			this.textEdit_HOutputNumber.EditValueChanged += new System.EventHandler(this.textEdit_HOutputNumber_EditValueChanged);
			// 
			// textEdit_HOutputName
			// 
			this.textEdit_HOutputName.EditValue = "";
			this.textEdit_HOutputName.Location = new System.Drawing.Point(136, 88);
			this.textEdit_HOutputName.Name = "textEdit_HOutputName";
			this.textEdit_HOutputName.Size = new System.Drawing.Size(88, 23);
			this.textEdit_HOutputName.TabIndex = 47;
			this.textEdit_HOutputName.EditValueChanged += new System.EventHandler(this.textEdit_HOutputName_EditValueChanged);
			// 
			// comboBoxEdit_HOutputClass
			// 
			this.comboBoxEdit_HOutputClass.EditValue = "全部";
			this.comboBoxEdit_HOutputClass.Location = new System.Drawing.Point(136, 56);
			this.comboBoxEdit_HOutputClass.Name = "comboBoxEdit_HOutputClass";
			// 
			// comboBoxEdit_HOutputClass.Properties
			// 
			this.comboBoxEdit_HOutputClass.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																															  new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.comboBoxEdit_HOutputClass.Properties.Items.AddRange(new object[] {
																					  "全部"});
			this.comboBoxEdit_HOutputClass.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
			this.comboBoxEdit_HOutputClass.Size = new System.Drawing.Size(88, 23);
			this.comboBoxEdit_HOutputClass.TabIndex = 46;
			this.comboBoxEdit_HOutputClass.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit_HOutputClass_SelectedIndexChanged);
			// 
			// notePanel_HOutputClass
			// 
			this.notePanel_HOutputClass.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_HOutputClass.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_HOutputClass.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_HOutputClass.ForeColor = System.Drawing.Color.Black;
			this.notePanel_HOutputClass.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_HOutputClass.Location = new System.Drawing.Point(24, 56);
			this.notePanel_HOutputClass.MaxRows = 5;
			this.notePanel_HOutputClass.Name = "notePanel_HOutputClass";
			this.notePanel_HOutputClass.ParentAutoHeight = true;
			this.notePanel_HOutputClass.Size = new System.Drawing.Size(83, 22);
			this.notePanel_HOutputClass.TabIndex = 45;
			this.notePanel_HOutputClass.TabStop = false;
			this.notePanel_HOutputClass.Text = "  班  级:";
			// 
			// comboBoxEdit_HOutputGrade
			// 
			this.comboBoxEdit_HOutputGrade.EditValue = "全部";
			this.comboBoxEdit_HOutputGrade.Location = new System.Drawing.Point(136, 24);
			this.comboBoxEdit_HOutputGrade.Name = "comboBoxEdit_HOutputGrade";
			// 
			// comboBoxEdit_HOutputGrade.Properties
			// 
			this.comboBoxEdit_HOutputGrade.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																															  new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.comboBoxEdit_HOutputGrade.Properties.Items.AddRange(new object[] {
																					  "全部"});
			this.comboBoxEdit_HOutputGrade.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
			this.comboBoxEdit_HOutputGrade.Size = new System.Drawing.Size(88, 23);
			this.comboBoxEdit_HOutputGrade.TabIndex = 44;
			this.comboBoxEdit_HOutputGrade.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit_HOutputGrade_SelectedIndexChanged);
			// 
			// notePanel_HOutputGrade
			// 
			this.notePanel_HOutputGrade.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_HOutputGrade.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_HOutputGrade.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_HOutputGrade.ForeColor = System.Drawing.Color.Black;
			this.notePanel_HOutputGrade.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_HOutputGrade.Location = new System.Drawing.Point(24, 24);
			this.notePanel_HOutputGrade.MaxRows = 5;
			this.notePanel_HOutputGrade.Name = "notePanel_HOutputGrade";
			this.notePanel_HOutputGrade.ParentAutoHeight = true;
			this.notePanel_HOutputGrade.Size = new System.Drawing.Size(83, 22);
			this.notePanel_HOutputGrade.TabIndex = 43;
			this.notePanel_HOutputGrade.TabStop = false;
			this.notePanel_HOutputGrade.Text = "  年  级:";
			// 
			// notePanel_HOutputNumber
			// 
			this.notePanel_HOutputNumber.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_HOutputNumber.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_HOutputNumber.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_HOutputNumber.ForeColor = System.Drawing.Color.Black;
			this.notePanel_HOutputNumber.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_HOutputNumber.Location = new System.Drawing.Point(24, 120);
			this.notePanel_HOutputNumber.MaxRows = 5;
			this.notePanel_HOutputNumber.Name = "notePanel_HOutputNumber";
			this.notePanel_HOutputNumber.ParentAutoHeight = true;
			this.notePanel_HOutputNumber.Size = new System.Drawing.Size(83, 22);
			this.notePanel_HOutputNumber.TabIndex = 42;
			this.notePanel_HOutputNumber.TabStop = false;
			this.notePanel_HOutputNumber.Text = "  学  号:";
			// 
			// notePanel_HOutputName
			// 
			this.notePanel_HOutputName.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_HOutputName.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_HOutputName.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_HOutputName.ForeColor = System.Drawing.Color.Black;
			this.notePanel_HOutputName.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_HOutputName.Location = new System.Drawing.Point(24, 88);
			this.notePanel_HOutputName.MaxRows = 5;
			this.notePanel_HOutputName.Name = "notePanel_HOutputName";
			this.notePanel_HOutputName.ParentAutoHeight = true;
			this.notePanel_HOutputName.Size = new System.Drawing.Size(83, 22);
			this.notePanel_HOutputName.TabIndex = 41;
			this.notePanel_HOutputName.TabStop = false;
			this.notePanel_HOutputName.Text = "  姓  名:";
			// 
			// notePanel_HOutputGender
			// 
			this.notePanel_HOutputGender.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_HOutputGender.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_HOutputGender.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_HOutputGender.ForeColor = System.Drawing.Color.Black;
			this.notePanel_HOutputGender.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_HOutputGender.Location = new System.Drawing.Point(24, 152);
			this.notePanel_HOutputGender.MaxRows = 5;
			this.notePanel_HOutputGender.Name = "notePanel_HOutputGender";
			this.notePanel_HOutputGender.ParentAutoHeight = true;
			this.notePanel_HOutputGender.Size = new System.Drawing.Size(83, 22);
			this.notePanel_HOutputGender.TabIndex = 42;
			this.notePanel_HOutputGender.TabStop = false;
			this.notePanel_HOutputGender.Text = "  性  别:";
			// 
			// gridControl_HOutputNchsGrid
			// 
			this.gridControl_HOutputNchsGrid.Dock = System.Windows.Forms.DockStyle.Fill;
			// 
			// gridControl_HOutputNchsGrid.EmbeddedNavigator
			// 
			this.gridControl_HOutputNchsGrid.EmbeddedNavigator.Name = "";
			this.gridControl_HOutputNchsGrid.Location = new System.Drawing.Point(0, 48);
			this.gridControl_HOutputNchsGrid.MainView = this.advBandedGridView2;
			this.gridControl_HOutputNchsGrid.Name = "gridControl_HOutputNchsGrid";
			this.gridControl_HOutputNchsGrid.Size = new System.Drawing.Size(508, 461);
			this.gridControl_HOutputNchsGrid.TabIndex = 2;
			this.gridControl_HOutputNchsGrid.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
																													   this.advBandedGridView2});
			// 
			// advBandedGridView2
			// 
			this.advBandedGridView2.Bands.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.GridBand[] {
																										   this.gridBand5,
																										   this.gridBand6,
																										   this.gridBand7});
			this.advBandedGridView2.Columns.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn[] {
																													 this.bandedGridColumn1,
																													 this.bandedGridColumn16,
																													 this.bandedGridColumn17,
																													 this.bandedGridColumn18,
																													 this.bandedGridColumn19,
																													 this.bandedGridColumn20,
																													 this.bandedGridColumn21,
																													 this.bandedGridColumn22,
																													 this.bandedGridColumn23,
																													 this.bandedGridColumn24,
																													 this.bandedGridColumn25,
																													 this.bandedGridColumn26,
																													 this.bandedGridColumn27,
																													 this.bandedGridColumn28,
																													 this.bandedGridColumn29,
																													 this.bandedGridColumn30});
			this.advBandedGridView2.GridControl = this.gridControl_HOutputNchsGrid;
			this.advBandedGridView2.Name = "advBandedGridView2";
			this.advBandedGridView2.OptionsCustomization.AllowFilter = false;
			this.advBandedGridView2.OptionsCustomization.AllowGroup = false;
			this.advBandedGridView2.OptionsView.ShowFilterPanel = false;
			this.advBandedGridView2.OptionsView.ShowGroupPanel = false;
			// 
			// gridBand5
			// 
			this.gridBand5.AppearanceHeader.Options.UseTextOptions = true;
			this.gridBand5.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridBand5.Caption = "基本信息";
			this.gridBand5.Columns.Add(this.bandedGridColumn1);
			this.gridBand5.Columns.Add(this.bandedGridColumn16);
			this.gridBand5.MinWidth = 20;
			this.gridBand5.Name = "gridBand5";
			this.gridBand5.Width = 63;
			// 
			// bandedGridColumn1
			// 
			this.bandedGridColumn1.AppearanceCell.Options.UseTextOptions = true;
			this.bandedGridColumn1.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn1.AppearanceHeader.Options.UseTextOptions = true;
			this.bandedGridColumn1.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn1.Caption = "姓名";
			this.bandedGridColumn1.FieldName = "info_stuName";
			this.bandedGridColumn1.Name = "bandedGridColumn1";
			this.bandedGridColumn1.OptionsColumn.AllowEdit = false;
			this.bandedGridColumn1.OptionsColumn.AllowFocus = false;
			this.bandedGridColumn1.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn1.OptionsColumn.AllowIncrementalSearch = false;
			this.bandedGridColumn1.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.True;
			this.bandedGridColumn1.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.bandedGridColumn1.OptionsColumn.ReadOnly = true;
			this.bandedGridColumn1.OptionsColumn.ShowInCustomizationForm = false;
			this.bandedGridColumn1.Visible = true;
			this.bandedGridColumn1.Width = 63;
			// 
			// bandedGridColumn16
			// 
			this.bandedGridColumn16.AppearanceCell.Options.UseTextOptions = true;
			this.bandedGridColumn16.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn16.AppearanceHeader.Options.UseTextOptions = true;
			this.bandedGridColumn16.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn16.Caption = "学号";
			this.bandedGridColumn16.FieldName = "nchsanaly_stunumber";
			this.bandedGridColumn16.Name = "bandedGridColumn16";
			this.bandedGridColumn16.OptionsColumn.AllowEdit = false;
			this.bandedGridColumn16.OptionsColumn.AllowFocus = false;
			this.bandedGridColumn16.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn16.OptionsColumn.AllowIncrementalSearch = false;
			this.bandedGridColumn16.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.True;
			this.bandedGridColumn16.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.bandedGridColumn16.OptionsColumn.ReadOnly = true;
			this.bandedGridColumn16.OptionsColumn.ShowInCustomizationForm = false;
			this.bandedGridColumn16.RowIndex = 1;
			this.bandedGridColumn16.Visible = true;
			this.bandedGridColumn16.Width = 63;
			// 
			// gridBand6
			// 
			this.gridBand6.AppearanceHeader.Options.UseTextOptions = true;
			this.gridBand6.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridBand6.Caption = "扩展信息";
			this.gridBand6.Columns.Add(this.bandedGridColumn19);
			this.gridBand6.Columns.Add(this.bandedGridColumn17);
			this.gridBand6.Columns.Add(this.bandedGridColumn23);
			this.gridBand6.Columns.Add(this.bandedGridColumn18);
			this.gridBand6.Name = "gridBand6";
			this.gridBand6.Width = 135;
			// 
			// bandedGridColumn19
			// 
			this.bandedGridColumn19.AppearanceCell.Options.UseTextOptions = true;
			this.bandedGridColumn19.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn19.AppearanceHeader.Options.UseTextOptions = true;
			this.bandedGridColumn19.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn19.Caption = "出生年月";
			this.bandedGridColumn19.FieldName = "info_stuBirthday";
			this.bandedGridColumn19.Name = "bandedGridColumn19";
			this.bandedGridColumn19.OptionsColumn.AllowEdit = false;
			this.bandedGridColumn19.OptionsColumn.AllowFocus = false;
			this.bandedGridColumn19.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn19.OptionsColumn.AllowIncrementalSearch = false;
			this.bandedGridColumn19.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.True;
			this.bandedGridColumn19.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.bandedGridColumn19.OptionsColumn.ReadOnly = true;
			this.bandedGridColumn19.OptionsColumn.ShowInCustomizationForm = false;
			this.bandedGridColumn19.Visible = true;
			this.bandedGridColumn19.Width = 60;
			// 
			// bandedGridColumn17
			// 
			this.bandedGridColumn17.AppearanceCell.Options.UseTextOptions = true;
			this.bandedGridColumn17.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn17.AppearanceHeader.Options.UseTextOptions = true;
			this.bandedGridColumn17.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn17.Caption = "班级";
			this.bandedGridColumn17.FieldName = "info_className";
			this.bandedGridColumn17.Name = "bandedGridColumn17";
			this.bandedGridColumn17.OptionsColumn.AllowEdit = false;
			this.bandedGridColumn17.OptionsColumn.AllowFocus = false;
			this.bandedGridColumn17.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn17.OptionsColumn.AllowIncrementalSearch = false;
			this.bandedGridColumn17.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.True;
			this.bandedGridColumn17.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.bandedGridColumn17.OptionsColumn.ReadOnly = true;
			this.bandedGridColumn17.OptionsColumn.ShowInCustomizationForm = false;
			this.bandedGridColumn17.Visible = true;
			this.bandedGridColumn17.Width = 65;
			// 
			// bandedGridColumn23
			// 
			this.bandedGridColumn23.AppearanceCell.Options.UseTextOptions = true;
			this.bandedGridColumn23.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn23.AppearanceHeader.Options.UseTextOptions = true;
			this.bandedGridColumn23.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn23.Caption = "幼儿年龄";
			this.bandedGridColumn23.FieldName = "nchsanaly_realage";
			this.bandedGridColumn23.Name = "bandedGridColumn23";
			this.bandedGridColumn23.OptionsColumn.AllowEdit = false;
			this.bandedGridColumn23.OptionsColumn.AllowFocus = false;
			this.bandedGridColumn23.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn23.OptionsColumn.AllowIncrementalSearch = false;
			this.bandedGridColumn23.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.True;
			this.bandedGridColumn23.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.bandedGridColumn23.OptionsColumn.ReadOnly = true;
			this.bandedGridColumn23.OptionsColumn.ShowInCustomizationForm = false;
			this.bandedGridColumn23.RowIndex = 1;
			this.bandedGridColumn23.Visible = true;
			this.bandedGridColumn23.Width = 64;
			// 
			// bandedGridColumn18
			// 
			this.bandedGridColumn18.AppearanceCell.Options.UseTextOptions = true;
			this.bandedGridColumn18.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn18.AppearanceHeader.Options.UseTextOptions = true;
			this.bandedGridColumn18.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn18.Caption = "性别";
			this.bandedGridColumn18.FieldName = "info_stuGender";
			this.bandedGridColumn18.Name = "bandedGridColumn18";
			this.bandedGridColumn18.OptionsColumn.AllowEdit = false;
			this.bandedGridColumn18.OptionsColumn.AllowFocus = false;
			this.bandedGridColumn18.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn18.OptionsColumn.AllowIncrementalSearch = false;
			this.bandedGridColumn18.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.True;
			this.bandedGridColumn18.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.bandedGridColumn18.OptionsColumn.ReadOnly = true;
			this.bandedGridColumn18.OptionsColumn.ShowInCustomizationForm = false;
			this.bandedGridColumn18.RowIndex = 1;
			this.bandedGridColumn18.Visible = true;
			this.bandedGridColumn18.Width = 71;
			// 
			// gridBand7
			// 
			this.gridBand7.AppearanceHeader.Options.UseTextOptions = true;
			this.gridBand7.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridBand7.Caption = "评测信息";
			this.gridBand7.Columns.Add(this.bandedGridColumn20);
			this.gridBand7.Columns.Add(this.bandedGridColumn21);
			this.gridBand7.Columns.Add(this.bandedGridColumn22);
			this.gridBand7.Columns.Add(this.bandedGridColumn26);
			this.gridBand7.Columns.Add(this.bandedGridColumn29);
			this.gridBand7.Columns.Add(this.bandedGridColumn30);
			this.gridBand7.Columns.Add(this.bandedGridColumn24);
			this.gridBand7.Columns.Add(this.bandedGridColumn25);
			this.gridBand7.Columns.Add(this.bandedGridColumn27);
			this.gridBand7.Columns.Add(this.bandedGridColumn28);
			this.gridBand7.Name = "gridBand7";
			this.gridBand7.Width = 340;
			// 
			// bandedGridColumn20
			// 
			this.bandedGridColumn20.AppearanceCell.Options.UseTextOptions = true;
			this.bandedGridColumn20.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn20.AppearanceHeader.Options.UseTextOptions = true;
			this.bandedGridColumn20.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn20.Caption = "体检日期";
			this.bandedGridColumn20.FieldName = "nchsanaly_checktime";
			this.bandedGridColumn20.Name = "bandedGridColumn20";
			this.bandedGridColumn20.OptionsColumn.AllowEdit = false;
			this.bandedGridColumn20.OptionsColumn.AllowFocus = false;
			this.bandedGridColumn20.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn20.OptionsColumn.AllowIncrementalSearch = false;
			this.bandedGridColumn20.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.True;
			this.bandedGridColumn20.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.bandedGridColumn20.OptionsColumn.ReadOnly = true;
			this.bandedGridColumn20.OptionsColumn.ShowInCustomizationForm = false;
			this.bandedGridColumn20.Visible = true;
			this.bandedGridColumn20.Width = 80;
			// 
			// bandedGridColumn21
			// 
			this.bandedGridColumn21.AppearanceCell.Options.UseTextOptions = true;
			this.bandedGridColumn21.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn21.AppearanceHeader.Options.UseTextOptions = true;
			this.bandedGridColumn21.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn21.Caption = "身高(cm)";
			this.bandedGridColumn21.FieldName = "nchsanaly_height";
			this.bandedGridColumn21.Name = "bandedGridColumn21";
			this.bandedGridColumn21.OptionsColumn.AllowEdit = false;
			this.bandedGridColumn21.OptionsColumn.AllowFocus = false;
			this.bandedGridColumn21.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn21.OptionsColumn.AllowIncrementalSearch = false;
			this.bandedGridColumn21.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.True;
			this.bandedGridColumn21.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.bandedGridColumn21.OptionsColumn.ReadOnly = true;
			this.bandedGridColumn21.OptionsColumn.ShowInCustomizationForm = false;
			this.bandedGridColumn21.Visible = true;
			this.bandedGridColumn21.Width = 59;
			// 
			// bandedGridColumn22
			// 
			this.bandedGridColumn22.AppearanceCell.Options.UseTextOptions = true;
			this.bandedGridColumn22.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn22.AppearanceHeader.Options.UseTextOptions = true;
			this.bandedGridColumn22.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn22.Caption = "体重(kg)";
			this.bandedGridColumn22.FieldName = "nchsanaly_weight";
			this.bandedGridColumn22.Name = "bandedGridColumn22";
			this.bandedGridColumn22.OptionsColumn.AllowEdit = false;
			this.bandedGridColumn22.OptionsColumn.AllowFocus = false;
			this.bandedGridColumn22.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn22.OptionsColumn.AllowIncrementalSearch = false;
			this.bandedGridColumn22.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.True;
			this.bandedGridColumn22.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.bandedGridColumn22.OptionsColumn.ReadOnly = true;
			this.bandedGridColumn22.OptionsColumn.ShowInCustomizationForm = false;
			this.bandedGridColumn22.Visible = true;
			this.bandedGridColumn22.Width = 59;
			// 
			// bandedGridColumn26
			// 
			this.bandedGridColumn26.AppearanceCell.Options.UseTextOptions = true;
			this.bandedGridColumn26.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn26.AppearanceHeader.Options.UseTextOptions = true;
			this.bandedGridColumn26.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn26.Caption = "肥胖";
			this.bandedGridColumn26.FieldName = "nchsanaly_obesity";
			this.bandedGridColumn26.Name = "bandedGridColumn26";
			this.bandedGridColumn26.OptionsColumn.AllowEdit = false;
			this.bandedGridColumn26.OptionsColumn.AllowFocus = false;
			this.bandedGridColumn26.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn26.OptionsColumn.AllowIncrementalSearch = false;
			this.bandedGridColumn26.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.True;
			this.bandedGridColumn26.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.bandedGridColumn26.OptionsColumn.ReadOnly = true;
			this.bandedGridColumn26.OptionsColumn.ShowInCustomizationForm = false;
			this.bandedGridColumn26.Visible = true;
			this.bandedGridColumn26.Width = 62;
			// 
			// bandedGridColumn29
			// 
			this.bandedGridColumn29.AppearanceCell.Options.UseTextOptions = true;
			this.bandedGridColumn29.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn29.AppearanceHeader.Options.UseTextOptions = true;
			this.bandedGridColumn29.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn29.Caption = "消瘦";
			this.bandedGridColumn29.FieldName = "nchsanaly_wasting";
			this.bandedGridColumn29.Name = "bandedGridColumn29";
			this.bandedGridColumn29.OptionsColumn.AllowEdit = false;
			this.bandedGridColumn29.OptionsColumn.AllowFocus = false;
			this.bandedGridColumn29.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn29.OptionsColumn.AllowIncrementalSearch = false;
			this.bandedGridColumn29.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.True;
			this.bandedGridColumn29.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.bandedGridColumn29.OptionsColumn.ReadOnly = true;
			this.bandedGridColumn29.OptionsColumn.ShowInCustomizationForm = false;
			this.bandedGridColumn29.Visible = true;
			this.bandedGridColumn29.Width = 80;
			// 
			// bandedGridColumn30
			// 
			this.bandedGridColumn30.AppearanceCell.Options.UseTextOptions = true;
			this.bandedGridColumn30.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn30.AppearanceHeader.Options.UseTextOptions = true;
			this.bandedGridColumn30.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn30.Caption = "体重低下";
			this.bandedGridColumn30.FieldName = "nchsanaly_underweight";
			this.bandedGridColumn30.MinWidth = 10;
			this.bandedGridColumn30.Name = "bandedGridColumn30";
			this.bandedGridColumn30.OptionsColumn.AllowEdit = false;
			this.bandedGridColumn30.OptionsColumn.AllowFocus = false;
			this.bandedGridColumn30.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn30.OptionsColumn.AllowIncrementalSearch = false;
			this.bandedGridColumn30.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.True;
			this.bandedGridColumn30.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.bandedGridColumn30.OptionsColumn.ReadOnly = true;
			this.bandedGridColumn30.OptionsColumn.ShowInCustomizationForm = false;
			this.bandedGridColumn30.RowIndex = 1;
			this.bandedGridColumn30.Visible = true;
			this.bandedGridColumn30.Width = 80;
			// 
			// bandedGridColumn24
			// 
			this.bandedGridColumn24.AppearanceCell.Options.UseTextOptions = true;
			this.bandedGridColumn24.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn24.AppearanceHeader.Options.UseTextOptions = true;
			this.bandedGridColumn24.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn24.Caption = "身高评价";
			this.bandedGridColumn24.FieldName = "nchsanaly_heightresult";
			this.bandedGridColumn24.Name = "bandedGridColumn24";
			this.bandedGridColumn24.OptionsColumn.AllowEdit = false;
			this.bandedGridColumn24.OptionsColumn.AllowFocus = false;
			this.bandedGridColumn24.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn24.OptionsColumn.AllowIncrementalSearch = false;
			this.bandedGridColumn24.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.True;
			this.bandedGridColumn24.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.bandedGridColumn24.OptionsColumn.ReadOnly = true;
			this.bandedGridColumn24.OptionsColumn.ShowInCustomizationForm = false;
			this.bandedGridColumn24.RowIndex = 1;
			this.bandedGridColumn24.Visible = true;
			this.bandedGridColumn24.Width = 59;
			// 
			// bandedGridColumn25
			// 
			this.bandedGridColumn25.AppearanceCell.Options.UseTextOptions = true;
			this.bandedGridColumn25.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn25.AppearanceHeader.Options.UseTextOptions = true;
			this.bandedGridColumn25.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn25.Caption = "体重评价";
			this.bandedGridColumn25.FieldName = "nchsanaly_weightresult";
			this.bandedGridColumn25.Name = "bandedGridColumn25";
			this.bandedGridColumn25.OptionsColumn.AllowEdit = false;
			this.bandedGridColumn25.OptionsColumn.AllowFocus = false;
			this.bandedGridColumn25.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn25.OptionsColumn.AllowIncrementalSearch = false;
			this.bandedGridColumn25.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.True;
			this.bandedGridColumn25.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.bandedGridColumn25.OptionsColumn.ReadOnly = true;
			this.bandedGridColumn25.OptionsColumn.ShowInCustomizationForm = false;
			this.bandedGridColumn25.RowIndex = 1;
			this.bandedGridColumn25.Visible = true;
			this.bandedGridColumn25.Width = 59;
			// 
			// bandedGridColumn27
			// 
			this.bandedGridColumn27.AppearanceCell.Options.UseTextOptions = true;
			this.bandedGridColumn27.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn27.AppearanceHeader.Options.UseTextOptions = true;
			this.bandedGridColumn27.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn27.Caption = "营养";
			this.bandedGridColumn27.FieldName = "nchsanaly_nut";
			this.bandedGridColumn27.Name = "bandedGridColumn27";
			this.bandedGridColumn27.OptionsColumn.AllowEdit = false;
			this.bandedGridColumn27.OptionsColumn.AllowFocus = false;
			this.bandedGridColumn27.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn27.OptionsColumn.AllowIncrementalSearch = false;
			this.bandedGridColumn27.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.True;
			this.bandedGridColumn27.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.bandedGridColumn27.OptionsColumn.ReadOnly = true;
			this.bandedGridColumn27.OptionsColumn.ShowInCustomizationForm = false;
			this.bandedGridColumn27.RowIndex = 1;
			this.bandedGridColumn27.Visible = true;
			this.bandedGridColumn27.Width = 62;
			// 
			// bandedGridColumn28
			// 
			this.bandedGridColumn28.AppearanceCell.Options.UseTextOptions = true;
			this.bandedGridColumn28.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn28.AppearanceHeader.Options.UseTextOptions = true;
			this.bandedGridColumn28.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn28.Caption = "发育";
			this.bandedGridColumn28.FieldName = "nchsanaly_stunting";
			this.bandedGridColumn28.Name = "bandedGridColumn28";
			this.bandedGridColumn28.OptionsColumn.AllowEdit = false;
			this.bandedGridColumn28.OptionsColumn.AllowFocus = false;
			this.bandedGridColumn28.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn28.OptionsColumn.AllowIncrementalSearch = false;
			this.bandedGridColumn28.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.True;
			this.bandedGridColumn28.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.bandedGridColumn28.OptionsColumn.ReadOnly = true;
			this.bandedGridColumn28.OptionsColumn.ShowInCustomizationForm = false;
			this.bandedGridColumn28.RowIndex = 1;
			this.bandedGridColumn28.Visible = true;
			this.bandedGridColumn28.Width = 80;
			// 
			// gridControl_HOutputGridShow
			// 
			this.gridControl_HOutputGridShow.Dock = System.Windows.Forms.DockStyle.Fill;
			// 
			// gridControl_HOutputGridShow.EmbeddedNavigator
			// 
			this.gridControl_HOutputGridShow.EmbeddedNavigator.Name = "";
			this.gridControl_HOutputGridShow.Location = new System.Drawing.Point(0, 48);
			this.gridControl_HOutputGridShow.MainView = this.advBandedGridView1;
			this.gridControl_HOutputGridShow.Name = "gridControl_HOutputGridShow";
			this.gridControl_HOutputGridShow.Size = new System.Drawing.Size(508, 461);
			this.gridControl_HOutputGridShow.TabIndex = 1;
			this.gridControl_HOutputGridShow.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
																													   this.advBandedGridView1});
			// 
			// advBandedGridView1
			// 
			this.advBandedGridView1.Bands.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.GridBand[] {
																										   this.gridBand1,
																										   this.gridBand2,
																										   this.gridBand3,
																										   this.gridBand4});
			this.advBandedGridView1.Columns.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn[] {
																													 this.bandedGridColumn2,
																													 this.bandedGridColumn3,
																													 this.bandedGridColumn4,
																													 this.bandedGridColumn5,
																													 this.bandedGridColumn6,
																													 this.bandedGridColumn7,
																													 this.bandedGridColumn8,
																													 this.bandedGridColumn9,
																													 this.bandedGridColumn10,
																													 this.bandedGridColumn11,
																													 this.bandedGridColumn12,
																													 this.bandedGridColumn13,
																													 this.bandedGridColumn14,
																													 this.bandedGridColumn15});
			this.advBandedGridView1.GridControl = this.gridControl_HOutputGridShow;
			this.advBandedGridView1.Name = "advBandedGridView1";
			this.advBandedGridView1.OptionsCustomization.AllowFilter = false;
			this.advBandedGridView1.OptionsView.ShowFilterPanel = false;
			this.advBandedGridView1.OptionsView.ShowGroupPanel = false;
			// 
			// gridBand1
			// 
			this.gridBand1.AppearanceHeader.Options.UseTextOptions = true;
			this.gridBand1.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridBand1.Caption = "基本信息";
			this.gridBand1.Columns.Add(this.bandedGridColumn4);
			this.gridBand1.Name = "gridBand1";
			this.gridBand1.Width = 59;
			// 
			// bandedGridColumn4
			// 
			this.bandedGridColumn4.AppearanceCell.Options.UseTextOptions = true;
			this.bandedGridColumn4.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn4.AppearanceHeader.Options.UseTextOptions = true;
			this.bandedGridColumn4.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn4.AutoFillDown = true;
			this.bandedGridColumn4.Caption = "姓名";
			this.bandedGridColumn4.FieldName = "info_stuName";
			this.bandedGridColumn4.Name = "bandedGridColumn4";
			this.bandedGridColumn4.OptionsColumn.AllowEdit = false;
			this.bandedGridColumn4.OptionsColumn.AllowFocus = false;
			this.bandedGridColumn4.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn4.OptionsColumn.AllowIncrementalSearch = false;
			this.bandedGridColumn4.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn4.OptionsColumn.AllowMove = false;
			this.bandedGridColumn4.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn4.OptionsColumn.ReadOnly = true;
			this.bandedGridColumn4.OptionsColumn.ShowInCustomizationForm = false;
			this.bandedGridColumn4.Visible = true;
			this.bandedGridColumn4.Width = 59;
			// 
			// gridBand2
			// 
			this.gridBand2.AppearanceHeader.Options.UseTextOptions = true;
			this.gridBand2.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridBand2.Caption = "扩展信息";
			this.gridBand2.Columns.Add(this.bandedGridColumn2);
			this.gridBand2.Columns.Add(this.bandedGridColumn5);
			this.gridBand2.Columns.Add(this.bandedGridColumn6);
			this.gridBand2.Columns.Add(this.bandedGridColumn3);
			this.gridBand2.Name = "gridBand2";
			this.gridBand2.Width = 123;
			// 
			// bandedGridColumn2
			// 
			this.bandedGridColumn2.AppearanceCell.Options.UseTextOptions = true;
			this.bandedGridColumn2.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn2.AppearanceHeader.Options.UseTextOptions = true;
			this.bandedGridColumn2.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn2.Caption = "学号";
			this.bandedGridColumn2.FieldName = "HealthAnaly_StuID";
			this.bandedGridColumn2.MinWidth = 10;
			this.bandedGridColumn2.Name = "bandedGridColumn2";
			this.bandedGridColumn2.OptionsColumn.AllowEdit = false;
			this.bandedGridColumn2.OptionsColumn.AllowFocus = false;
			this.bandedGridColumn2.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn2.OptionsColumn.AllowIncrementalSearch = false;
			this.bandedGridColumn2.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn2.OptionsColumn.AllowMove = false;
			this.bandedGridColumn2.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.bandedGridColumn2.OptionsColumn.ReadOnly = true;
			this.bandedGridColumn2.OptionsColumn.ShowInCustomizationForm = false;
			this.bandedGridColumn2.Visible = true;
			this.bandedGridColumn2.Width = 58;
			// 
			// bandedGridColumn5
			// 
			this.bandedGridColumn5.AppearanceCell.Options.UseTextOptions = true;
			this.bandedGridColumn5.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn5.AppearanceHeader.Options.UseTextOptions = true;
			this.bandedGridColumn5.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn5.Caption = "性别";
			this.bandedGridColumn5.FieldName = "info_stuGender";
			this.bandedGridColumn5.MinWidth = 10;
			this.bandedGridColumn5.Name = "bandedGridColumn5";
			this.bandedGridColumn5.OptionsColumn.AllowEdit = false;
			this.bandedGridColumn5.OptionsColumn.AllowFocus = false;
			this.bandedGridColumn5.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn5.OptionsColumn.AllowIncrementalSearch = false;
			this.bandedGridColumn5.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn5.OptionsColumn.AllowMove = false;
			this.bandedGridColumn5.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn5.OptionsColumn.ReadOnly = true;
			this.bandedGridColumn5.OptionsColumn.ShowInCustomizationForm = false;
			this.bandedGridColumn5.RowIndex = 1;
			this.bandedGridColumn5.Visible = true;
			this.bandedGridColumn5.Width = 58;
			// 
			// bandedGridColumn6
			// 
			this.bandedGridColumn6.AppearanceCell.Options.UseTextOptions = true;
			this.bandedGridColumn6.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn6.AppearanceHeader.Options.UseTextOptions = true;
			this.bandedGridColumn6.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn6.Caption = "出生年月";
			this.bandedGridColumn6.FieldName = "info_stuBirthday";
			this.bandedGridColumn6.Name = "bandedGridColumn6";
			this.bandedGridColumn6.OptionsColumn.AllowEdit = false;
			this.bandedGridColumn6.OptionsColumn.AllowFocus = false;
			this.bandedGridColumn6.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn6.OptionsColumn.AllowIncrementalSearch = false;
			this.bandedGridColumn6.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn6.OptionsColumn.AllowMove = false;
			this.bandedGridColumn6.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn6.OptionsColumn.ReadOnly = true;
			this.bandedGridColumn6.OptionsColumn.ShowInCustomizationForm = false;
			this.bandedGridColumn6.RowIndex = 1;
			this.bandedGridColumn6.Visible = true;
			this.bandedGridColumn6.Width = 65;
			// 
			// bandedGridColumn3
			// 
			this.bandedGridColumn3.AppearanceCell.Options.UseTextOptions = true;
			this.bandedGridColumn3.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn3.AppearanceHeader.Options.UseTextOptions = true;
			this.bandedGridColumn3.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn3.Caption = "班级";
			this.bandedGridColumn3.FieldName = "info_className";
			this.bandedGridColumn3.MinWidth = 10;
			this.bandedGridColumn3.Name = "bandedGridColumn3";
			this.bandedGridColumn3.OptionsColumn.AllowEdit = false;
			this.bandedGridColumn3.OptionsColumn.AllowFocus = false;
			this.bandedGridColumn3.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn3.OptionsColumn.AllowIncrementalSearch = false;
			this.bandedGridColumn3.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn3.OptionsColumn.AllowMove = false;
			this.bandedGridColumn3.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn3.OptionsColumn.ReadOnly = true;
			this.bandedGridColumn3.OptionsColumn.ShowInCustomizationForm = false;
			this.bandedGridColumn3.Visible = true;
			this.bandedGridColumn3.Width = 65;
			// 
			// gridBand3
			// 
			this.gridBand3.AppearanceHeader.Options.UseTextOptions = true;
			this.gridBand3.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridBand3.Caption = "评测信息";
			this.gridBand3.Columns.Add(this.bandedGridColumn7);
			this.gridBand3.Columns.Add(this.bandedGridColumn8);
			this.gridBand3.Columns.Add(this.bandedGridColumn10);
			this.gridBand3.Columns.Add(this.bandedGridColumn12);
			this.gridBand3.Columns.Add(this.bandedGridColumn15);
			this.gridBand3.Columns.Add(this.bandedGridColumn9);
			this.gridBand3.Columns.Add(this.bandedGridColumn11);
			this.gridBand3.Columns.Add(this.bandedGridColumn13);
			this.gridBand3.Name = "gridBand3";
			this.gridBand3.Width = 283;
			// 
			// bandedGridColumn7
			// 
			this.bandedGridColumn7.AppearanceCell.Options.UseTextOptions = true;
			this.bandedGridColumn7.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn7.AppearanceHeader.Options.UseTextOptions = true;
			this.bandedGridColumn7.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn7.Caption = "体检日期";
			this.bandedGridColumn7.FieldName = "HealthAnaly_CheckTime";
			this.bandedGridColumn7.Name = "bandedGridColumn7";
			this.bandedGridColumn7.OptionsColumn.AllowEdit = false;
			this.bandedGridColumn7.OptionsColumn.AllowFocus = false;
			this.bandedGridColumn7.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn7.OptionsColumn.AllowIncrementalSearch = false;
			this.bandedGridColumn7.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn7.OptionsColumn.AllowMove = false;
			this.bandedGridColumn7.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn7.OptionsColumn.ReadOnly = true;
			this.bandedGridColumn7.OptionsColumn.ShowInCustomizationForm = false;
			this.bandedGridColumn7.Visible = true;
			this.bandedGridColumn7.Width = 70;
			// 
			// bandedGridColumn8
			// 
			this.bandedGridColumn8.AppearanceCell.Options.UseTextOptions = true;
			this.bandedGridColumn8.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn8.AppearanceHeader.Options.UseTextOptions = true;
			this.bandedGridColumn8.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn8.Caption = "身高(cm)";
			this.bandedGridColumn8.FieldName = "HealthAnaly_Height";
			this.bandedGridColumn8.Name = "bandedGridColumn8";
			this.bandedGridColumn8.OptionsColumn.AllowEdit = false;
			this.bandedGridColumn8.OptionsColumn.AllowFocus = false;
			this.bandedGridColumn8.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn8.OptionsColumn.AllowIncrementalSearch = false;
			this.bandedGridColumn8.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn8.OptionsColumn.AllowMove = false;
			this.bandedGridColumn8.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn8.OptionsColumn.ReadOnly = true;
			this.bandedGridColumn8.OptionsColumn.ShowInCustomizationForm = false;
			this.bandedGridColumn8.Visible = true;
			this.bandedGridColumn8.Width = 65;
			// 
			// bandedGridColumn10
			// 
			this.bandedGridColumn10.AppearanceCell.Options.UseTextOptions = true;
			this.bandedGridColumn10.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn10.AppearanceHeader.Options.UseTextOptions = true;
			this.bandedGridColumn10.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn10.Caption = "体重(kg)";
			this.bandedGridColumn10.FieldName = "HealthAnaly_Weight";
			this.bandedGridColumn10.MinWidth = 10;
			this.bandedGridColumn10.Name = "bandedGridColumn10";
			this.bandedGridColumn10.OptionsColumn.AllowEdit = false;
			this.bandedGridColumn10.OptionsColumn.AllowFocus = false;
			this.bandedGridColumn10.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn10.OptionsColumn.AllowIncrementalSearch = false;
			this.bandedGridColumn10.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn10.OptionsColumn.AllowMove = false;
			this.bandedGridColumn10.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn10.OptionsColumn.ReadOnly = true;
			this.bandedGridColumn10.OptionsColumn.ShowInCustomizationForm = false;
			this.bandedGridColumn10.Visible = true;
			this.bandedGridColumn10.Width = 62;
			// 
			// bandedGridColumn12
			// 
			this.bandedGridColumn12.AppearanceCell.Options.UseTextOptions = true;
			this.bandedGridColumn12.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn12.AppearanceHeader.Options.UseTextOptions = true;
			this.bandedGridColumn12.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn12.Caption = "肥胖";
			this.bandedGridColumn12.FieldName = "HealthAnaly_FatCircs";
			this.bandedGridColumn12.Name = "bandedGridColumn12";
			this.bandedGridColumn12.OptionsColumn.AllowEdit = false;
			this.bandedGridColumn12.OptionsColumn.AllowFocus = false;
			this.bandedGridColumn12.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn12.OptionsColumn.AllowIncrementalSearch = false;
			this.bandedGridColumn12.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn12.OptionsColumn.AllowMove = false;
			this.bandedGridColumn12.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn12.OptionsColumn.ReadOnly = true;
			this.bandedGridColumn12.OptionsColumn.ShowInCustomizationForm = false;
			this.bandedGridColumn12.Visible = true;
			this.bandedGridColumn12.Width = 86;
			// 
			// bandedGridColumn15
			// 
			this.bandedGridColumn15.AppearanceCell.Options.UseTextOptions = true;
			this.bandedGridColumn15.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn15.AppearanceHeader.Options.UseTextOptions = true;
			this.bandedGridColumn15.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn15.Caption = "幼儿年龄";
			this.bandedGridColumn15.FieldName = "HealthAnaly_RealAge";
			this.bandedGridColumn15.MinWidth = 10;
			this.bandedGridColumn15.Name = "bandedGridColumn15";
			this.bandedGridColumn15.OptionsColumn.AllowEdit = false;
			this.bandedGridColumn15.OptionsColumn.AllowFocus = false;
			this.bandedGridColumn15.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn15.OptionsColumn.AllowIncrementalSearch = false;
			this.bandedGridColumn15.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn15.OptionsColumn.AllowMove = false;
			this.bandedGridColumn15.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn15.OptionsColumn.ReadOnly = true;
			this.bandedGridColumn15.OptionsColumn.ShowInCustomizationForm = false;
			this.bandedGridColumn15.RowIndex = 1;
			this.bandedGridColumn15.Visible = true;
			this.bandedGridColumn15.Width = 70;
			// 
			// bandedGridColumn9
			// 
			this.bandedGridColumn9.AppearanceCell.Options.UseTextOptions = true;
			this.bandedGridColumn9.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn9.AppearanceHeader.Options.UseTextOptions = true;
			this.bandedGridColumn9.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn9.Caption = "身高评价";
			this.bandedGridColumn9.FieldName = "HealthAnaly_HeightAnaly";
			this.bandedGridColumn9.MinWidth = 10;
			this.bandedGridColumn9.Name = "bandedGridColumn9";
			this.bandedGridColumn9.OptionsColumn.AllowEdit = false;
			this.bandedGridColumn9.OptionsColumn.AllowFocus = false;
			this.bandedGridColumn9.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn9.OptionsColumn.AllowIncrementalSearch = false;
			this.bandedGridColumn9.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn9.OptionsColumn.AllowMove = false;
			this.bandedGridColumn9.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn9.OptionsColumn.ReadOnly = true;
			this.bandedGridColumn9.OptionsColumn.ShowInCustomizationForm = false;
			this.bandedGridColumn9.RowIndex = 1;
			this.bandedGridColumn9.Visible = true;
			this.bandedGridColumn9.Width = 65;
			// 
			// bandedGridColumn11
			// 
			this.bandedGridColumn11.AppearanceCell.Options.UseTextOptions = true;
			this.bandedGridColumn11.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn11.AppearanceHeader.Options.UseTextOptions = true;
			this.bandedGridColumn11.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn11.Caption = "体重评价";
			this.bandedGridColumn11.FieldName = "HealthAnaly_WeightAnaly";
			this.bandedGridColumn11.Name = "bandedGridColumn11";
			this.bandedGridColumn11.OptionsColumn.AllowEdit = false;
			this.bandedGridColumn11.OptionsColumn.AllowFocus = false;
			this.bandedGridColumn11.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn11.OptionsColumn.AllowIncrementalSearch = false;
			this.bandedGridColumn11.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn11.OptionsColumn.AllowMove = false;
			this.bandedGridColumn11.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn11.OptionsColumn.ReadOnly = true;
			this.bandedGridColumn11.OptionsColumn.ShowInCustomizationForm = false;
			this.bandedGridColumn11.RowIndex = 1;
			this.bandedGridColumn11.Visible = true;
			this.bandedGridColumn11.Width = 62;
			// 
			// bandedGridColumn13
			// 
			this.bandedGridColumn13.AppearanceCell.Options.UseTextOptions = true;
			this.bandedGridColumn13.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn13.AppearanceHeader.Options.UseTextOptions = true;
			this.bandedGridColumn13.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn13.Caption = "营养";
			this.bandedGridColumn13.FieldName = "HealthAnaly_NutCircs";
			this.bandedGridColumn13.MinWidth = 10;
			this.bandedGridColumn13.Name = "bandedGridColumn13";
			this.bandedGridColumn13.OptionsColumn.AllowEdit = false;
			this.bandedGridColumn13.OptionsColumn.AllowFocus = false;
			this.bandedGridColumn13.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn13.OptionsColumn.AllowIncrementalSearch = false;
			this.bandedGridColumn13.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn13.OptionsColumn.AllowMove = false;
			this.bandedGridColumn13.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn13.OptionsColumn.ReadOnly = true;
			this.bandedGridColumn13.OptionsColumn.ShowInCustomizationForm = false;
			this.bandedGridColumn13.RowIndex = 1;
			this.bandedGridColumn13.Visible = true;
			this.bandedGridColumn13.Width = 86;
			// 
			// gridBand4
			// 
			this.gridBand4.AppearanceHeader.Options.UseTextOptions = true;
			this.gridBand4.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridBand4.Caption = "备注信息";
			this.gridBand4.Columns.Add(this.bandedGridColumn14);
			this.gridBand4.Name = "gridBand4";
			this.gridBand4.Width = 75;
			// 
			// bandedGridColumn14
			// 
			this.bandedGridColumn14.AppearanceCell.Options.UseTextOptions = true;
			this.bandedGridColumn14.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn14.AppearanceHeader.Options.UseTextOptions = true;
			this.bandedGridColumn14.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn14.AutoFillDown = true;
			this.bandedGridColumn14.Caption = "备注";
			this.bandedGridColumn14.FieldName = "HealthAnaly_Remark";
			this.bandedGridColumn14.Name = "bandedGridColumn14";
			this.bandedGridColumn14.OptionsColumn.AllowEdit = false;
			this.bandedGridColumn14.OptionsColumn.AllowFocus = false;
			this.bandedGridColumn14.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn14.OptionsColumn.AllowIncrementalSearch = false;
			this.bandedGridColumn14.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn14.OptionsColumn.AllowMove = false;
			this.bandedGridColumn14.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn14.OptionsColumn.ReadOnly = true;
			this.bandedGridColumn14.OptionsColumn.ShowInCustomizationForm = false;
			this.bandedGridColumn14.Visible = true;
			// 
			// panelControl6
			// 
			this.panelControl6.Controls.Add(this.simpleButton_HOutputSearch);
			this.panelControl6.Controls.Add(this.simpleButton_HOutputPrint);
			this.panelControl6.Dock = System.Windows.Forms.DockStyle.Top;
			this.panelControl6.Location = new System.Drawing.Point(0, 0);
			this.panelControl6.Name = "panelControl6";
			this.panelControl6.Size = new System.Drawing.Size(508, 48);
			this.panelControl6.TabIndex = 0;
			this.panelControl6.Text = "panelControl6";
			// 
			// simpleButton_HOutputSearch
			// 
			this.simpleButton_HOutputSearch.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.simpleButton_HOutputSearch.Appearance.ForeColor = System.Drawing.Color.DarkMagenta;
			this.simpleButton_HOutputSearch.Appearance.Options.UseFont = true;
			this.simpleButton_HOutputSearch.Appearance.Options.UseForeColor = true;
			this.simpleButton_HOutputSearch.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton_HOutputSearch.Image")));
			this.simpleButton_HOutputSearch.Location = new System.Drawing.Point(16, 8);
			this.simpleButton_HOutputSearch.Name = "simpleButton_HOutputSearch";
			this.simpleButton_HOutputSearch.Size = new System.Drawing.Size(96, 26);
			this.simpleButton_HOutputSearch.TabIndex = 14;
			this.simpleButton_HOutputSearch.Tag = 4;
			this.simpleButton_HOutputSearch.Text = "检  索";
			this.simpleButton_HOutputSearch.Click += new System.EventHandler(this.simpleButton_HOutputSearch_Click);
			// 
			// simpleButton_HOutputPrint
			// 
			this.simpleButton_HOutputPrint.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.simpleButton_HOutputPrint.Appearance.ForeColor = System.Drawing.Color.DarkMagenta;
			this.simpleButton_HOutputPrint.Appearance.Options.UseFont = true;
			this.simpleButton_HOutputPrint.Appearance.Options.UseForeColor = true;
			this.simpleButton_HOutputPrint.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton_HOutputPrint.Image")));
			this.simpleButton_HOutputPrint.Location = new System.Drawing.Point(128, 8);
			this.simpleButton_HOutputPrint.Name = "simpleButton_HOutputPrint";
			this.simpleButton_HOutputPrint.Size = new System.Drawing.Size(96, 26);
			this.simpleButton_HOutputPrint.TabIndex = 12;
			this.simpleButton_HOutputPrint.Tag = 4;
			this.simpleButton_HOutputPrint.Text = "报  表";
			this.simpleButton_HOutputPrint.Click += new System.EventHandler(this.simpleButton_HOutputPrint_Click);
			// 
			// xtraTabPage7
			// 
			this.xtraTabPage7.Controls.Add(this.splitContainerControl8);
			this.xtraTabPage7.Name = "xtraTabPage7";
			this.xtraTabPage7.Size = new System.Drawing.Size(768, 515);
			this.xtraTabPage7.Text = "晨检及全日观察";
			// 
			// splitContainerControl8
			// 
			this.splitContainerControl8.Dock = System.Windows.Forms.DockStyle.Fill;
			this.splitContainerControl8.Location = new System.Drawing.Point(0, 0);
			this.splitContainerControl8.Name = "splitContainerControl8";
			this.splitContainerControl8.Panel1.Controls.Add(this.groupControl_WatchMorningRec);
			this.splitContainerControl8.Panel1.Controls.Add(this.groupControl_WatchStuList);
			this.splitContainerControl8.Panel1.Controls.Add(this.groupControl_WatchSer);
			this.splitContainerControl8.Panel1.Text = "splitContainerControl8_Panel1";
			this.splitContainerControl8.Panel2.Controls.Add(this.groupControl_WatchWholeDay);
			this.splitContainerControl8.Panel2.Controls.Add(this.groupControl_WatchRecList);
			this.splitContainerControl8.Panel2.Controls.Add(this.panelControl7);
			this.splitContainerControl8.Panel2.Text = "splitContainerControl8_Panel2";
			this.splitContainerControl8.Size = new System.Drawing.Size(768, 515);
			this.splitContainerControl8.SplitterPosition = 294;
			this.splitContainerControl8.TabIndex = 0;
			this.splitContainerControl8.Text = "splitContainerControl8";
			// 
			// groupControl_WatchMorningRec
			// 
			this.groupControl_WatchMorningRec.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.groupControl_WatchMorningRec.AppearanceCaption.Options.UseFont = true;
			this.groupControl_WatchMorningRec.Controls.Add(this.textEdit_WatchMorningTreat);
			this.groupControl_WatchMorningRec.Controls.Add(this.notePanel_WatchMorningTreat);
			this.groupControl_WatchMorningRec.Controls.Add(this.textEdit_WatchMorningOState);
			this.groupControl_WatchMorningRec.Controls.Add(this.notePanel_WatchMorningOState);
			this.groupControl_WatchMorningRec.Controls.Add(this.notePanel_WatchMorningMouth);
			this.groupControl_WatchMorningRec.Controls.Add(this.comboBoxEdit_WatchMorningHeat);
			this.groupControl_WatchMorningRec.Controls.Add(this.comboBoxEdit_WatchMorningMouth);
			this.groupControl_WatchMorningRec.Controls.Add(this.comboBoxEdit_WatchMorningSpirit);
			this.groupControl_WatchMorningRec.Controls.Add(this.notePanel_WatchMorningHeat);
			this.groupControl_WatchMorningRec.Controls.Add(this.notePanel_WatchMorningSkin);
			this.groupControl_WatchMorningRec.Controls.Add(this.comboBoxEdit_WatchMorningSkin);
			this.groupControl_WatchMorningRec.Controls.Add(this.notePanel_WatchMorningSpirit);
			this.groupControl_WatchMorningRec.Controls.Add(this.textEdit_WatchMorningNumber);
			this.groupControl_WatchMorningRec.Controls.Add(this.textEdit_WatchMorningName);
			this.groupControl_WatchMorningRec.Controls.Add(this.notePanel_WatchMorningNumber);
			this.groupControl_WatchMorningRec.Controls.Add(this.notePanel_WatchMorningName);
			this.groupControl_WatchMorningRec.Dock = System.Windows.Forms.DockStyle.Top;
			this.groupControl_WatchMorningRec.Location = new System.Drawing.Point(0, 280);
			this.groupControl_WatchMorningRec.Name = "groupControl_WatchMorningRec";
			this.groupControl_WatchMorningRec.Size = new System.Drawing.Size(288, 248);
			this.groupControl_WatchMorningRec.TabIndex = 30;
			this.groupControl_WatchMorningRec.Text = "晨检检查情况";
			this.groupControl_WatchMorningRec.Visible = false;
			// 
			// textEdit_WatchMorningTreat
			// 
			this.textEdit_WatchMorningTreat.EditValue = "";
			this.textEdit_WatchMorningTreat.Location = new System.Drawing.Point(80, 200);
			this.textEdit_WatchMorningTreat.Name = "textEdit_WatchMorningTreat";
			this.textEdit_WatchMorningTreat.Size = new System.Drawing.Size(184, 23);
			this.textEdit_WatchMorningTreat.TabIndex = 85;
			// 
			// notePanel_WatchMorningTreat
			// 
			this.notePanel_WatchMorningTreat.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_WatchMorningTreat.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_WatchMorningTreat.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_WatchMorningTreat.ForeColor = System.Drawing.Color.Black;
			this.notePanel_WatchMorningTreat.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_WatchMorningTreat.Location = new System.Drawing.Point(16, 200);
			this.notePanel_WatchMorningTreat.MaxRows = 5;
			this.notePanel_WatchMorningTreat.Name = "notePanel_WatchMorningTreat";
			this.notePanel_WatchMorningTreat.ParentAutoHeight = true;
			this.notePanel_WatchMorningTreat.Size = new System.Drawing.Size(56, 22);
			this.notePanel_WatchMorningTreat.TabIndex = 84;
			this.notePanel_WatchMorningTreat.TabStop = false;
			this.notePanel_WatchMorningTreat.Text = "处理:";
			// 
			// textEdit_WatchMorningOState
			// 
			this.textEdit_WatchMorningOState.EditValue = "";
			this.textEdit_WatchMorningOState.Location = new System.Drawing.Point(80, 160);
			this.textEdit_WatchMorningOState.Name = "textEdit_WatchMorningOState";
			this.textEdit_WatchMorningOState.Size = new System.Drawing.Size(184, 23);
			this.textEdit_WatchMorningOState.TabIndex = 83;
			// 
			// notePanel_WatchMorningOState
			// 
			this.notePanel_WatchMorningOState.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_WatchMorningOState.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_WatchMorningOState.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_WatchMorningOState.ForeColor = System.Drawing.Color.Black;
			this.notePanel_WatchMorningOState.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_WatchMorningOState.Location = new System.Drawing.Point(16, 160);
			this.notePanel_WatchMorningOState.MaxRows = 5;
			this.notePanel_WatchMorningOState.Name = "notePanel_WatchMorningOState";
			this.notePanel_WatchMorningOState.ParentAutoHeight = true;
			this.notePanel_WatchMorningOState.Size = new System.Drawing.Size(56, 22);
			this.notePanel_WatchMorningOState.TabIndex = 82;
			this.notePanel_WatchMorningOState.TabStop = false;
			this.notePanel_WatchMorningOState.Text = "代诉:";
			// 
			// notePanel_WatchMorningMouth
			// 
			this.notePanel_WatchMorningMouth.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_WatchMorningMouth.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_WatchMorningMouth.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_WatchMorningMouth.ForeColor = System.Drawing.Color.Black;
			this.notePanel_WatchMorningMouth.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_WatchMorningMouth.Location = new System.Drawing.Point(16, 120);
			this.notePanel_WatchMorningMouth.MaxRows = 5;
			this.notePanel_WatchMorningMouth.Name = "notePanel_WatchMorningMouth";
			this.notePanel_WatchMorningMouth.ParentAutoHeight = true;
			this.notePanel_WatchMorningMouth.Size = new System.Drawing.Size(56, 22);
			this.notePanel_WatchMorningMouth.TabIndex = 78;
			this.notePanel_WatchMorningMouth.TabStop = false;
			this.notePanel_WatchMorningMouth.Text = "口腔:";
			// 
			// comboBoxEdit_WatchMorningHeat
			// 
			this.comboBoxEdit_WatchMorningHeat.EditValue = "正常";
			this.comboBoxEdit_WatchMorningHeat.Location = new System.Drawing.Point(80, 80);
			this.comboBoxEdit_WatchMorningHeat.Name = "comboBoxEdit_WatchMorningHeat";
			// 
			// comboBoxEdit_WatchMorningHeat.Properties
			// 
			this.comboBoxEdit_WatchMorningHeat.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																																  new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.comboBoxEdit_WatchMorningHeat.Properties.Items.AddRange(new object[] {
																						  "正常",
																						  "偏高",
																						  "偏低"});
			this.comboBoxEdit_WatchMorningHeat.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
			this.comboBoxEdit_WatchMorningHeat.Size = new System.Drawing.Size(56, 23);
			this.comboBoxEdit_WatchMorningHeat.TabIndex = 76;
			// 
			// comboBoxEdit_WatchMorningMouth
			// 
			this.comboBoxEdit_WatchMorningMouth.EditValue = "好";
			this.comboBoxEdit_WatchMorningMouth.Location = new System.Drawing.Point(80, 120);
			this.comboBoxEdit_WatchMorningMouth.Name = "comboBoxEdit_WatchMorningMouth";
			// 
			// comboBoxEdit_WatchMorningMouth.Properties
			// 
			this.comboBoxEdit_WatchMorningMouth.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																																   new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.comboBoxEdit_WatchMorningMouth.Properties.Items.AddRange(new object[] {
																						   "好",
																						   "中",
																						   "差"});
			this.comboBoxEdit_WatchMorningMouth.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
			this.comboBoxEdit_WatchMorningMouth.Size = new System.Drawing.Size(56, 23);
			this.comboBoxEdit_WatchMorningMouth.TabIndex = 81;
			// 
			// comboBoxEdit_WatchMorningSpirit
			// 
			this.comboBoxEdit_WatchMorningSpirit.EditValue = "好";
			this.comboBoxEdit_WatchMorningSpirit.Location = new System.Drawing.Point(208, 80);
			this.comboBoxEdit_WatchMorningSpirit.Name = "comboBoxEdit_WatchMorningSpirit";
			// 
			// comboBoxEdit_WatchMorningSpirit.Properties
			// 
			this.comboBoxEdit_WatchMorningSpirit.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																																	new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.comboBoxEdit_WatchMorningSpirit.Properties.Items.AddRange(new object[] {
																							"好",
																							"中",
																							"差"});
			this.comboBoxEdit_WatchMorningSpirit.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
			this.comboBoxEdit_WatchMorningSpirit.Size = new System.Drawing.Size(56, 23);
			this.comboBoxEdit_WatchMorningSpirit.TabIndex = 77;
			// 
			// notePanel_WatchMorningHeat
			// 
			this.notePanel_WatchMorningHeat.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_WatchMorningHeat.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_WatchMorningHeat.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_WatchMorningHeat.ForeColor = System.Drawing.Color.Black;
			this.notePanel_WatchMorningHeat.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_WatchMorningHeat.Location = new System.Drawing.Point(16, 80);
			this.notePanel_WatchMorningHeat.MaxRows = 5;
			this.notePanel_WatchMorningHeat.Name = "notePanel_WatchMorningHeat";
			this.notePanel_WatchMorningHeat.ParentAutoHeight = true;
			this.notePanel_WatchMorningHeat.Size = new System.Drawing.Size(56, 22);
			this.notePanel_WatchMorningHeat.TabIndex = 74;
			this.notePanel_WatchMorningHeat.TabStop = false;
			this.notePanel_WatchMorningHeat.Text = "体温:";
			// 
			// notePanel_WatchMorningSkin
			// 
			this.notePanel_WatchMorningSkin.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_WatchMorningSkin.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_WatchMorningSkin.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_WatchMorningSkin.ForeColor = System.Drawing.Color.Black;
			this.notePanel_WatchMorningSkin.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_WatchMorningSkin.Location = new System.Drawing.Point(144, 120);
			this.notePanel_WatchMorningSkin.MaxRows = 5;
			this.notePanel_WatchMorningSkin.Name = "notePanel_WatchMorningSkin";
			this.notePanel_WatchMorningSkin.ParentAutoHeight = true;
			this.notePanel_WatchMorningSkin.Size = new System.Drawing.Size(56, 22);
			this.notePanel_WatchMorningSkin.TabIndex = 79;
			this.notePanel_WatchMorningSkin.TabStop = false;
			this.notePanel_WatchMorningSkin.Text = "皮肤:";
			// 
			// comboBoxEdit_WatchMorningSkin
			// 
			this.comboBoxEdit_WatchMorningSkin.EditValue = "好";
			this.comboBoxEdit_WatchMorningSkin.Location = new System.Drawing.Point(208, 120);
			this.comboBoxEdit_WatchMorningSkin.Name = "comboBoxEdit_WatchMorningSkin";
			// 
			// comboBoxEdit_WatchMorningSkin.Properties
			// 
			this.comboBoxEdit_WatchMorningSkin.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																																  new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.comboBoxEdit_WatchMorningSkin.Properties.Items.AddRange(new object[] {
																						  "好",
																						  "中",
																						  "差"});
			this.comboBoxEdit_WatchMorningSkin.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
			this.comboBoxEdit_WatchMorningSkin.Size = new System.Drawing.Size(56, 23);
			this.comboBoxEdit_WatchMorningSkin.TabIndex = 80;
			// 
			// notePanel_WatchMorningSpirit
			// 
			this.notePanel_WatchMorningSpirit.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_WatchMorningSpirit.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_WatchMorningSpirit.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_WatchMorningSpirit.ForeColor = System.Drawing.Color.Black;
			this.notePanel_WatchMorningSpirit.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_WatchMorningSpirit.Location = new System.Drawing.Point(144, 80);
			this.notePanel_WatchMorningSpirit.MaxRows = 5;
			this.notePanel_WatchMorningSpirit.Name = "notePanel_WatchMorningSpirit";
			this.notePanel_WatchMorningSpirit.ParentAutoHeight = true;
			this.notePanel_WatchMorningSpirit.Size = new System.Drawing.Size(56, 22);
			this.notePanel_WatchMorningSpirit.TabIndex = 75;
			this.notePanel_WatchMorningSpirit.TabStop = false;
			this.notePanel_WatchMorningSpirit.Text = "精神:";
			// 
			// textEdit_WatchMorningNumber
			// 
			this.textEdit_WatchMorningNumber.EditValue = "";
			this.textEdit_WatchMorningNumber.Location = new System.Drawing.Point(208, 40);
			this.textEdit_WatchMorningNumber.Name = "textEdit_WatchMorningNumber";
			// 
			// textEdit_WatchMorningNumber.Properties
			// 
			this.textEdit_WatchMorningNumber.Properties.Enabled = false;
			this.textEdit_WatchMorningNumber.Size = new System.Drawing.Size(56, 23);
			this.textEdit_WatchMorningNumber.TabIndex = 60;
			// 
			// textEdit_WatchMorningName
			// 
			this.textEdit_WatchMorningName.EditValue = "";
			this.textEdit_WatchMorningName.Location = new System.Drawing.Point(80, 40);
			this.textEdit_WatchMorningName.Name = "textEdit_WatchMorningName";
			// 
			// textEdit_WatchMorningName.Properties
			// 
			this.textEdit_WatchMorningName.Properties.Enabled = false;
			this.textEdit_WatchMorningName.Size = new System.Drawing.Size(56, 23);
			this.textEdit_WatchMorningName.TabIndex = 59;
			// 
			// notePanel_WatchMorningNumber
			// 
			this.notePanel_WatchMorningNumber.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_WatchMorningNumber.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_WatchMorningNumber.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_WatchMorningNumber.ForeColor = System.Drawing.Color.Black;
			this.notePanel_WatchMorningNumber.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_WatchMorningNumber.Location = new System.Drawing.Point(144, 40);
			this.notePanel_WatchMorningNumber.MaxRows = 5;
			this.notePanel_WatchMorningNumber.Name = "notePanel_WatchMorningNumber";
			this.notePanel_WatchMorningNumber.ParentAutoHeight = true;
			this.notePanel_WatchMorningNumber.Size = new System.Drawing.Size(56, 22);
			this.notePanel_WatchMorningNumber.TabIndex = 58;
			this.notePanel_WatchMorningNumber.TabStop = false;
			this.notePanel_WatchMorningNumber.Text = "学号:";
			// 
			// notePanel_WatchMorningName
			// 
			this.notePanel_WatchMorningName.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_WatchMorningName.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_WatchMorningName.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_WatchMorningName.ForeColor = System.Drawing.Color.Black;
			this.notePanel_WatchMorningName.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_WatchMorningName.Location = new System.Drawing.Point(16, 40);
			this.notePanel_WatchMorningName.MaxRows = 5;
			this.notePanel_WatchMorningName.Name = "notePanel_WatchMorningName";
			this.notePanel_WatchMorningName.ParentAutoHeight = true;
			this.notePanel_WatchMorningName.Size = new System.Drawing.Size(56, 22);
			this.notePanel_WatchMorningName.TabIndex = 57;
			this.notePanel_WatchMorningName.TabStop = false;
			this.notePanel_WatchMorningName.Text = "姓名:";
			// 
			// groupControl_WatchStuList
			// 
			this.groupControl_WatchStuList.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.groupControl_WatchStuList.AppearanceCaption.Options.UseFont = true;
			this.groupControl_WatchStuList.Controls.Add(this.gridControl_WatchStuList);
			this.groupControl_WatchStuList.Controls.Add(this.notePanel_WatchStuList);
			this.groupControl_WatchStuList.Dock = System.Windows.Forms.DockStyle.Fill;
			this.groupControl_WatchStuList.Location = new System.Drawing.Point(0, 280);
			this.groupControl_WatchStuList.Name = "groupControl_WatchStuList";
			this.groupControl_WatchStuList.Size = new System.Drawing.Size(288, 229);
			this.groupControl_WatchStuList.TabIndex = 1;
			this.groupControl_WatchStuList.Text = "今天入园幼儿记录";
			// 
			// gridControl_WatchStuList
			// 
			this.gridControl_WatchStuList.Dock = System.Windows.Forms.DockStyle.Fill;
			// 
			// gridControl_WatchStuList.EmbeddedNavigator
			// 
			this.gridControl_WatchStuList.EmbeddedNavigator.Name = "";
			this.gridControl_WatchStuList.Location = new System.Drawing.Point(3, 41);
			this.gridControl_WatchStuList.MainView = this.gridView7;
			this.gridControl_WatchStuList.Name = "gridControl_WatchStuList";
			this.gridControl_WatchStuList.Size = new System.Drawing.Size(282, 185);
			this.gridControl_WatchStuList.TabIndex = 25;
			this.gridControl_WatchStuList.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
																													this.gridView7});
			this.gridControl_WatchStuList.DoubleClick += new System.EventHandler(this.gridControl_WatchStuList_DoubleClick);
			// 
			// gridView7
			// 
			this.gridView7.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
																							 this.gridColumn24,
																							 this.gridColumn25,
																							 this.gridColumn26,
																							 this.gridColumn27,
																							 this.gridColumn28});
			this.gridView7.GridControl = this.gridControl_WatchStuList;
			this.gridView7.Name = "gridView7";
			this.gridView7.OptionsCustomization.AllowFilter = false;
			this.gridView7.OptionsView.ShowFilterPanel = false;
			this.gridView7.OptionsView.ShowGroupPanel = false;
			// 
			// gridColumn24
			// 
			this.gridColumn24.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn24.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn24.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn24.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn24.Caption = "学号";
			this.gridColumn24.FieldName = "info_stuNumber";
			this.gridColumn24.Name = "gridColumn24";
			this.gridColumn24.OptionsColumn.AllowEdit = false;
			this.gridColumn24.OptionsColumn.AllowFocus = false;
			this.gridColumn24.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn24.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn24.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn24.OptionsColumn.AllowMove = false;
			this.gridColumn24.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn24.OptionsColumn.ReadOnly = true;
			this.gridColumn24.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn24.Visible = true;
			this.gridColumn24.VisibleIndex = 0;
			// 
			// gridColumn25
			// 
			this.gridColumn25.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn25.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn25.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn25.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn25.Caption = "姓名";
			this.gridColumn25.FieldName = "info_stuName";
			this.gridColumn25.Name = "gridColumn25";
			this.gridColumn25.OptionsColumn.AllowEdit = false;
			this.gridColumn25.OptionsColumn.AllowFocus = false;
			this.gridColumn25.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn25.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn25.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn25.OptionsColumn.AllowMove = false;
			this.gridColumn25.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn25.OptionsColumn.ReadOnly = true;
			this.gridColumn25.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn25.Visible = true;
			this.gridColumn25.VisibleIndex = 1;
			// 
			// gridColumn26
			// 
			this.gridColumn26.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn26.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn26.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn26.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn26.Caption = "班级";
			this.gridColumn26.FieldName = "info_className";
			this.gridColumn26.Name = "gridColumn26";
			this.gridColumn26.OptionsColumn.AllowEdit = false;
			this.gridColumn26.OptionsColumn.AllowFocus = false;
			this.gridColumn26.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn26.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn26.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn26.OptionsColumn.AllowMove = false;
			this.gridColumn26.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn26.OptionsColumn.ReadOnly = true;
			this.gridColumn26.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn26.Visible = true;
			this.gridColumn26.VisibleIndex = 2;
			// 
			// gridColumn27
			// 
			this.gridColumn27.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn27.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn27.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn27.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn27.Caption = "晨检";
			this.gridColumn27.FieldName = "state_flowStateName";
			this.gridColumn27.Name = "gridColumn27";
			this.gridColumn27.OptionsColumn.AllowEdit = false;
			this.gridColumn27.OptionsColumn.AllowFocus = false;
			this.gridColumn27.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn27.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn27.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn27.OptionsColumn.AllowMove = false;
			this.gridColumn27.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn27.OptionsColumn.ReadOnly = true;
			this.gridColumn27.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn27.Visible = true;
			this.gridColumn27.VisibleIndex = 3;
			// 
			// gridColumn28
			// 
			this.gridColumn28.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn28.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn28.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn28.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn28.Caption = "时间";
			this.gridColumn28.FieldName = "flow_stuFlowEnterDate";
			this.gridColumn28.Name = "gridColumn28";
			this.gridColumn28.OptionsColumn.AllowEdit = false;
			this.gridColumn28.OptionsColumn.AllowFocus = false;
			this.gridColumn28.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn28.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn28.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn28.OptionsColumn.AllowMove = false;
			this.gridColumn28.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn28.OptionsColumn.ReadOnly = true;
			this.gridColumn28.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn28.Visible = true;
			this.gridColumn28.VisibleIndex = 4;
			// 
			// notePanel_WatchStuList
			// 
			this.notePanel_WatchStuList.BackColor = System.Drawing.Color.LightGoldenrodYellow;
			this.notePanel_WatchStuList.Dock = System.Windows.Forms.DockStyle.Top;
			this.notePanel_WatchStuList.ForeColor = System.Drawing.Color.OrangeRed;
			this.notePanel_WatchStuList.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_WatchStuList.Location = new System.Drawing.Point(3, 18);
			this.notePanel_WatchStuList.MaxRows = 5;
			this.notePanel_WatchStuList.Name = "notePanel_WatchStuList";
			this.notePanel_WatchStuList.ParentAutoHeight = true;
			this.notePanel_WatchStuList.Size = new System.Drawing.Size(282, 23);
			this.notePanel_WatchStuList.TabIndex = 24;
			this.notePanel_WatchStuList.TabStop = false;
			this.notePanel_WatchStuList.Text = "双击进入晨检观察登记";
			// 
			// groupControl_WatchSer
			// 
			this.groupControl_WatchSer.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.groupControl_WatchSer.AppearanceCaption.Options.UseFont = true;
			this.groupControl_WatchSer.Controls.Add(this.textEdit_WatchName);
			this.groupControl_WatchSer.Controls.Add(this.dateEdit_WatchEndDate);
			this.groupControl_WatchSer.Controls.Add(this.dateEdit_WatchBegDate);
			this.groupControl_WatchSer.Controls.Add(this.notePanel_WatchEndDate);
			this.groupControl_WatchSer.Controls.Add(this.notePanel_WatchBegDate);
			this.groupControl_WatchSer.Controls.Add(this.comboBoxEdit_WatchState);
			this.groupControl_WatchSer.Controls.Add(this.notePanel_WatchState);
			this.groupControl_WatchSer.Controls.Add(this.textEdit_WatchNumber);
			this.groupControl_WatchSer.Controls.Add(this.comboBoxEdit_WatchClass);
			this.groupControl_WatchSer.Controls.Add(this.notePanel_WatchClass);
			this.groupControl_WatchSer.Controls.Add(this.comboBoxEdit_WatchGrade);
			this.groupControl_WatchSer.Controls.Add(this.notePanel_WatchGrade);
			this.groupControl_WatchSer.Controls.Add(this.notePanel_WatchNumber);
			this.groupControl_WatchSer.Controls.Add(this.notePanel_WatchName);
			this.groupControl_WatchSer.Dock = System.Windows.Forms.DockStyle.Top;
			this.groupControl_WatchSer.Location = new System.Drawing.Point(0, 0);
			this.groupControl_WatchSer.Name = "groupControl_WatchSer";
			this.groupControl_WatchSer.Size = new System.Drawing.Size(288, 280);
			this.groupControl_WatchSer.TabIndex = 0;
			this.groupControl_WatchSer.Text = "信息查询";
			// 
			// textEdit_WatchName
			// 
			this.textEdit_WatchName.EditValue = "";
			this.textEdit_WatchName.Location = new System.Drawing.Point(144, 96);
			this.textEdit_WatchName.Name = "textEdit_WatchName";
			this.textEdit_WatchName.Size = new System.Drawing.Size(88, 23);
			this.textEdit_WatchName.TabIndex = 63;
			// 
			// dateEdit_WatchEndDate
			// 
			this.dateEdit_WatchEndDate.EditValue = new System.DateTime(2005, 3, 17, 0, 0, 0, 0);
			this.dateEdit_WatchEndDate.Location = new System.Drawing.Point(144, 238);
			this.dateEdit_WatchEndDate.Name = "dateEdit_WatchEndDate";
			// 
			// dateEdit_WatchEndDate.Properties
			// 
			this.dateEdit_WatchEndDate.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																														  new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.dateEdit_WatchEndDate.Properties.Mask.EditMask = "d";
			this.dateEdit_WatchEndDate.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.DateTime;
			this.dateEdit_WatchEndDate.Size = new System.Drawing.Size(88, 23);
			this.dateEdit_WatchEndDate.TabIndex = 62;
			// 
			// dateEdit_WatchBegDate
			// 
			this.dateEdit_WatchBegDate.EditValue = new System.DateTime(2005, 3, 17, 0, 0, 0, 0);
			this.dateEdit_WatchBegDate.Location = new System.Drawing.Point(144, 196);
			this.dateEdit_WatchBegDate.Name = "dateEdit_WatchBegDate";
			// 
			// dateEdit_WatchBegDate.Properties
			// 
			this.dateEdit_WatchBegDate.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																														  new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.dateEdit_WatchBegDate.Properties.Mask.EditMask = "d";
			this.dateEdit_WatchBegDate.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.DateTime;
			this.dateEdit_WatchBegDate.Size = new System.Drawing.Size(88, 23);
			this.dateEdit_WatchBegDate.TabIndex = 61;
			// 
			// notePanel_WatchEndDate
			// 
			this.notePanel_WatchEndDate.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_WatchEndDate.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_WatchEndDate.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_WatchEndDate.ForeColor = System.Drawing.Color.Black;
			this.notePanel_WatchEndDate.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_WatchEndDate.Location = new System.Drawing.Point(48, 232);
			this.notePanel_WatchEndDate.MaxRows = 5;
			this.notePanel_WatchEndDate.Name = "notePanel_WatchEndDate";
			this.notePanel_WatchEndDate.ParentAutoHeight = true;
			this.notePanel_WatchEndDate.Size = new System.Drawing.Size(80, 35);
			this.notePanel_WatchEndDate.TabIndex = 60;
			this.notePanel_WatchEndDate.TabStop = false;
			this.notePanel_WatchEndDate.Text = "全日观察  截止时间:";
			// 
			// notePanel_WatchBegDate
			// 
			this.notePanel_WatchBegDate.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_WatchBegDate.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_WatchBegDate.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_WatchBegDate.ForeColor = System.Drawing.Color.Black;
			this.notePanel_WatchBegDate.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_WatchBegDate.Location = new System.Drawing.Point(48, 190);
			this.notePanel_WatchBegDate.MaxRows = 5;
			this.notePanel_WatchBegDate.Name = "notePanel_WatchBegDate";
			this.notePanel_WatchBegDate.ParentAutoHeight = true;
			this.notePanel_WatchBegDate.Size = new System.Drawing.Size(80, 35);
			this.notePanel_WatchBegDate.TabIndex = 59;
			this.notePanel_WatchBegDate.TabStop = false;
			this.notePanel_WatchBegDate.Text = "全日观察  起始时间:";
			// 
			// comboBoxEdit_WatchState
			// 
			this.comboBoxEdit_WatchState.EditValue = "全部";
			this.comboBoxEdit_WatchState.Location = new System.Drawing.Point(144, 160);
			this.comboBoxEdit_WatchState.Name = "comboBoxEdit_WatchState";
			// 
			// comboBoxEdit_WatchState.Properties
			// 
			this.comboBoxEdit_WatchState.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																															new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.comboBoxEdit_WatchState.Properties.Items.AddRange(new object[] {
																					"全部",
																					"健康",
																					"观察",
																					"服药"});
			this.comboBoxEdit_WatchState.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
			this.comboBoxEdit_WatchState.Size = new System.Drawing.Size(88, 23);
			this.comboBoxEdit_WatchState.TabIndex = 58;
			this.comboBoxEdit_WatchState.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit_WatchState_SelectedIndexChanged);
			// 
			// notePanel_WatchState
			// 
			this.notePanel_WatchState.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_WatchState.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_WatchState.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_WatchState.ForeColor = System.Drawing.Color.Black;
			this.notePanel_WatchState.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_WatchState.Location = new System.Drawing.Point(48, 160);
			this.notePanel_WatchState.MaxRows = 5;
			this.notePanel_WatchState.Name = "notePanel_WatchState";
			this.notePanel_WatchState.ParentAutoHeight = true;
			this.notePanel_WatchState.Size = new System.Drawing.Size(80, 22);
			this.notePanel_WatchState.TabIndex = 57;
			this.notePanel_WatchState.TabStop = false;
			this.notePanel_WatchState.Text = "  状  态:";
			// 
			// textEdit_WatchNumber
			// 
			this.textEdit_WatchNumber.EditValue = "";
			this.textEdit_WatchNumber.Location = new System.Drawing.Point(144, 128);
			this.textEdit_WatchNumber.Name = "textEdit_WatchNumber";
			this.textEdit_WatchNumber.Size = new System.Drawing.Size(88, 23);
			this.textEdit_WatchNumber.TabIndex = 56;
			this.textEdit_WatchNumber.EditValueChanged += new System.EventHandler(this.textEdit_WatchNumber_EditValueChanged);
			// 
			// comboBoxEdit_WatchClass
			// 
			this.comboBoxEdit_WatchClass.EditValue = "全部";
			this.comboBoxEdit_WatchClass.Location = new System.Drawing.Point(144, 64);
			this.comboBoxEdit_WatchClass.Name = "comboBoxEdit_WatchClass";
			// 
			// comboBoxEdit_WatchClass.Properties
			// 
			this.comboBoxEdit_WatchClass.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																															new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.comboBoxEdit_WatchClass.Properties.Items.AddRange(new object[] {
																					"全部"});
			this.comboBoxEdit_WatchClass.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
			this.comboBoxEdit_WatchClass.Size = new System.Drawing.Size(88, 23);
			this.comboBoxEdit_WatchClass.TabIndex = 54;
			this.comboBoxEdit_WatchClass.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit_WatchClass_SelectedIndexChanged);
			// 
			// notePanel_WatchClass
			// 
			this.notePanel_WatchClass.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_WatchClass.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_WatchClass.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_WatchClass.ForeColor = System.Drawing.Color.Black;
			this.notePanel_WatchClass.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_WatchClass.Location = new System.Drawing.Point(48, 64);
			this.notePanel_WatchClass.MaxRows = 5;
			this.notePanel_WatchClass.Name = "notePanel_WatchClass";
			this.notePanel_WatchClass.ParentAutoHeight = true;
			this.notePanel_WatchClass.Size = new System.Drawing.Size(80, 22);
			this.notePanel_WatchClass.TabIndex = 53;
			this.notePanel_WatchClass.TabStop = false;
			this.notePanel_WatchClass.Text = "  班  级:";
			// 
			// comboBoxEdit_WatchGrade
			// 
			this.comboBoxEdit_WatchGrade.EditValue = "全部";
			this.comboBoxEdit_WatchGrade.Location = new System.Drawing.Point(144, 32);
			this.comboBoxEdit_WatchGrade.Name = "comboBoxEdit_WatchGrade";
			// 
			// comboBoxEdit_WatchGrade.Properties
			// 
			this.comboBoxEdit_WatchGrade.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																															new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.comboBoxEdit_WatchGrade.Properties.Items.AddRange(new object[] {
																					"全部"});
			this.comboBoxEdit_WatchGrade.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
			this.comboBoxEdit_WatchGrade.Size = new System.Drawing.Size(88, 23);
			this.comboBoxEdit_WatchGrade.TabIndex = 52;
			this.comboBoxEdit_WatchGrade.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit_WatchGrade_SelectedIndexChanged);
			// 
			// notePanel_WatchGrade
			// 
			this.notePanel_WatchGrade.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_WatchGrade.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_WatchGrade.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_WatchGrade.ForeColor = System.Drawing.Color.Black;
			this.notePanel_WatchGrade.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_WatchGrade.Location = new System.Drawing.Point(48, 32);
			this.notePanel_WatchGrade.MaxRows = 5;
			this.notePanel_WatchGrade.Name = "notePanel_WatchGrade";
			this.notePanel_WatchGrade.ParentAutoHeight = true;
			this.notePanel_WatchGrade.Size = new System.Drawing.Size(80, 22);
			this.notePanel_WatchGrade.TabIndex = 51;
			this.notePanel_WatchGrade.TabStop = false;
			this.notePanel_WatchGrade.Text = "  年  级:";
			// 
			// notePanel_WatchNumber
			// 
			this.notePanel_WatchNumber.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_WatchNumber.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_WatchNumber.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_WatchNumber.ForeColor = System.Drawing.Color.Black;
			this.notePanel_WatchNumber.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_WatchNumber.Location = new System.Drawing.Point(48, 128);
			this.notePanel_WatchNumber.MaxRows = 5;
			this.notePanel_WatchNumber.Name = "notePanel_WatchNumber";
			this.notePanel_WatchNumber.ParentAutoHeight = true;
			this.notePanel_WatchNumber.Size = new System.Drawing.Size(80, 22);
			this.notePanel_WatchNumber.TabIndex = 50;
			this.notePanel_WatchNumber.TabStop = false;
			this.notePanel_WatchNumber.Text = "  学  号:";
			// 
			// notePanel_WatchName
			// 
			this.notePanel_WatchName.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_WatchName.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_WatchName.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_WatchName.ForeColor = System.Drawing.Color.Black;
			this.notePanel_WatchName.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_WatchName.Location = new System.Drawing.Point(48, 96);
			this.notePanel_WatchName.MaxRows = 5;
			this.notePanel_WatchName.Name = "notePanel_WatchName";
			this.notePanel_WatchName.ParentAutoHeight = true;
			this.notePanel_WatchName.Size = new System.Drawing.Size(80, 22);
			this.notePanel_WatchName.TabIndex = 49;
			this.notePanel_WatchName.TabStop = false;
			this.notePanel_WatchName.Text = "  姓  名:";
			// 
			// groupControl_WatchWholeDay
			// 
			this.groupControl_WatchWholeDay.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.groupControl_WatchWholeDay.AppearanceCaption.Options.UseFont = true;
			this.groupControl_WatchWholeDay.Controls.Add(this.groupControl_WatchWholDayHandle);
			this.groupControl_WatchWholeDay.Controls.Add(this.groupControl_WatchWholeDayReg);
			this.groupControl_WatchWholeDay.Dock = System.Windows.Forms.DockStyle.Top;
			this.groupControl_WatchWholeDay.Location = new System.Drawing.Point(0, 509);
			this.groupControl_WatchWholeDay.Name = "groupControl_WatchWholeDay";
			this.groupControl_WatchWholeDay.Size = new System.Drawing.Size(464, 336);
			this.groupControl_WatchWholeDay.TabIndex = 2;
			this.groupControl_WatchWholeDay.Text = "全日观察登记";
			this.groupControl_WatchWholeDay.Visible = false;
			// 
			// groupControl_WatchWholDayHandle
			// 
			this.groupControl_WatchWholDayHandle.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.groupControl_WatchWholDayHandle.AppearanceCaption.Options.UseFont = true;
			this.groupControl_WatchWholDayHandle.Controls.Add(this.checkEdit_WatchWholeDayHeat);
			this.groupControl_WatchWholDayHandle.Controls.Add(this.checkEdit_WatchWholeDayCtrSeafood);
			this.groupControl_WatchWholDayHandle.Controls.Add(this.checkEdit_WatchWholeDayLifeAttention);
			this.groupControl_WatchWholDayHandle.Controls.Add(this.checkEdit_WatchWholeDayCtrAct);
			this.groupControl_WatchWholDayHandle.Dock = System.Windows.Forms.DockStyle.Fill;
			this.groupControl_WatchWholDayHandle.Location = new System.Drawing.Point(3, 192);
			this.groupControl_WatchWholDayHandle.Name = "groupControl_WatchWholDayHandle";
			this.groupControl_WatchWholDayHandle.Size = new System.Drawing.Size(458, 141);
			this.groupControl_WatchWholDayHandle.TabIndex = 1;
			this.groupControl_WatchWholDayHandle.Text = "处理情况";
			// 
			// checkEdit_WatchWholeDayHeat
			// 
			this.checkEdit_WatchWholeDayHeat.Location = new System.Drawing.Point(272, 80);
			this.checkEdit_WatchWholeDayHeat.Name = "checkEdit_WatchWholeDayHeat";
			// 
			// checkEdit_WatchWholeDayHeat.Properties
			// 
			this.checkEdit_WatchWholeDayHeat.Properties.Caption = "按时测体温";
			this.checkEdit_WatchWholeDayHeat.Size = new System.Drawing.Size(104, 19);
			this.checkEdit_WatchWholeDayHeat.TabIndex = 3;
			// 
			// checkEdit_WatchWholeDayCtrSeafood
			// 
			this.checkEdit_WatchWholeDayCtrSeafood.Location = new System.Drawing.Point(128, 80);
			this.checkEdit_WatchWholeDayCtrSeafood.Name = "checkEdit_WatchWholeDayCtrSeafood";
			// 
			// checkEdit_WatchWholeDayCtrSeafood.Properties
			// 
			this.checkEdit_WatchWholeDayCtrSeafood.Properties.Caption = "忌海鲜";
			this.checkEdit_WatchWholeDayCtrSeafood.Size = new System.Drawing.Size(104, 19);
			this.checkEdit_WatchWholeDayCtrSeafood.TabIndex = 2;
			// 
			// checkEdit_WatchWholeDayLifeAttention
			// 
			this.checkEdit_WatchWholeDayLifeAttention.Location = new System.Drawing.Point(272, 40);
			this.checkEdit_WatchWholeDayLifeAttention.Name = "checkEdit_WatchWholeDayLifeAttention";
			// 
			// checkEdit_WatchWholeDayLifeAttention.Properties
			// 
			this.checkEdit_WatchWholeDayLifeAttention.Properties.Caption = "注意生活护理";
			this.checkEdit_WatchWholeDayLifeAttention.Size = new System.Drawing.Size(104, 19);
			this.checkEdit_WatchWholeDayLifeAttention.TabIndex = 1;
			// 
			// checkEdit_WatchWholeDayCtrAct
			// 
			this.checkEdit_WatchWholeDayCtrAct.Location = new System.Drawing.Point(128, 40);
			this.checkEdit_WatchWholeDayCtrAct.Name = "checkEdit_WatchWholeDayCtrAct";
			// 
			// checkEdit_WatchWholeDayCtrAct.Properties
			// 
			this.checkEdit_WatchWholeDayCtrAct.Properties.Caption = "控制运动量";
			this.checkEdit_WatchWholeDayCtrAct.Size = new System.Drawing.Size(104, 19);
			this.checkEdit_WatchWholeDayCtrAct.TabIndex = 0;
			// 
			// groupControl_WatchWholeDayReg
			// 
			this.groupControl_WatchWholeDayReg.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.groupControl_WatchWholeDayReg.AppearanceCaption.Options.UseFont = true;
			this.groupControl_WatchWholeDayReg.Controls.Add(this.textEdit_WatchWholeDayElse);
			this.groupControl_WatchWholeDayReg.Controls.Add(this.notePanel_WatchWholeDayElse);
			this.groupControl_WatchWholeDayReg.Controls.Add(this.comboBoxEdit_WatchWholeDayCough);
			this.groupControl_WatchWholeDayReg.Controls.Add(this.notePanel_WatchWholeDayCough);
			this.groupControl_WatchWholeDayReg.Controls.Add(this.comboBoxEdit_WatchWholeDaySleep);
			this.groupControl_WatchWholeDayReg.Controls.Add(this.notePanel_WatchWholeDaySleep);
			this.groupControl_WatchWholeDayReg.Controls.Add(this.comboBoxEdit_WatchWholeDayStool);
			this.groupControl_WatchWholeDayReg.Controls.Add(this.notePanel_WatchWholeDayStool);
			this.groupControl_WatchWholeDayReg.Controls.Add(this.comboBoxEdit_WatchWholeDayAppetite);
			this.groupControl_WatchWholeDayReg.Controls.Add(this.notePanel_WatchWholeDayAppetite);
			this.groupControl_WatchWholeDayReg.Controls.Add(this.comboBoxEdit_WatchWholeDaySpirit);
			this.groupControl_WatchWholeDayReg.Controls.Add(this.notePanel_WatchWholeDaySpirit);
			this.groupControl_WatchWholeDayReg.Controls.Add(this.comboBoxEdit_WatchWholeDayMovement);
			this.groupControl_WatchWholeDayReg.Controls.Add(this.notePanel_WatchWholeDayMovement);
			this.groupControl_WatchWholeDayReg.Dock = System.Windows.Forms.DockStyle.Top;
			this.groupControl_WatchWholeDayReg.Location = new System.Drawing.Point(3, 18);
			this.groupControl_WatchWholeDayReg.Name = "groupControl_WatchWholeDayReg";
			this.groupControl_WatchWholeDayReg.Size = new System.Drawing.Size(458, 174);
			this.groupControl_WatchWholeDayReg.TabIndex = 0;
			this.groupControl_WatchWholeDayReg.Text = "体温,精神,食欲等情况";
			// 
			// textEdit_WatchWholeDayElse
			// 
			this.textEdit_WatchWholeDayElse.EditValue = "";
			this.textEdit_WatchWholeDayElse.Location = new System.Drawing.Point(120, 120);
			this.textEdit_WatchWholeDayElse.Name = "textEdit_WatchWholeDayElse";
			this.textEdit_WatchWholeDayElse.Size = new System.Drawing.Size(336, 23);
			this.textEdit_WatchWholeDayElse.TabIndex = 89;
			// 
			// notePanel_WatchWholeDayElse
			// 
			this.notePanel_WatchWholeDayElse.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_WatchWholeDayElse.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_WatchWholeDayElse.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_WatchWholeDayElse.ForeColor = System.Drawing.Color.Black;
			this.notePanel_WatchWholeDayElse.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_WatchWholeDayElse.Location = new System.Drawing.Point(24, 120);
			this.notePanel_WatchWholeDayElse.MaxRows = 5;
			this.notePanel_WatchWholeDayElse.Name = "notePanel_WatchWholeDayElse";
			this.notePanel_WatchWholeDayElse.ParentAutoHeight = true;
			this.notePanel_WatchWholeDayElse.Size = new System.Drawing.Size(88, 22);
			this.notePanel_WatchWholeDayElse.TabIndex = 88;
			this.notePanel_WatchWholeDayElse.TabStop = false;
			this.notePanel_WatchWholeDayElse.Text = " 其他情况:";
			// 
			// comboBoxEdit_WatchWholeDayCough
			// 
			this.comboBoxEdit_WatchWholeDayCough.EditValue = "有";
			this.comboBoxEdit_WatchWholeDayCough.Location = new System.Drawing.Point(408, 80);
			this.comboBoxEdit_WatchWholeDayCough.Name = "comboBoxEdit_WatchWholeDayCough";
			// 
			// comboBoxEdit_WatchWholeDayCough.Properties
			// 
			this.comboBoxEdit_WatchWholeDayCough.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																																	new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.comboBoxEdit_WatchWholeDayCough.Properties.Items.AddRange(new object[] {
																							"有",
																							"无"});
			this.comboBoxEdit_WatchWholeDayCough.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
			this.comboBoxEdit_WatchWholeDayCough.Size = new System.Drawing.Size(48, 23);
			this.comboBoxEdit_WatchWholeDayCough.TabIndex = 87;
			// 
			// notePanel_WatchWholeDayCough
			// 
			this.notePanel_WatchWholeDayCough.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_WatchWholeDayCough.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_WatchWholeDayCough.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_WatchWholeDayCough.ForeColor = System.Drawing.Color.Black;
			this.notePanel_WatchWholeDayCough.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_WatchWholeDayCough.Location = new System.Drawing.Point(328, 80);
			this.notePanel_WatchWholeDayCough.MaxRows = 5;
			this.notePanel_WatchWholeDayCough.Name = "notePanel_WatchWholeDayCough";
			this.notePanel_WatchWholeDayCough.ParentAutoHeight = true;
			this.notePanel_WatchWholeDayCough.Size = new System.Drawing.Size(72, 22);
			this.notePanel_WatchWholeDayCough.TabIndex = 86;
			this.notePanel_WatchWholeDayCough.TabStop = false;
			this.notePanel_WatchWholeDayCough.Text = " 咳  嗽:";
			// 
			// comboBoxEdit_WatchWholeDaySleep
			// 
			this.comboBoxEdit_WatchWholeDaySleep.EditValue = "好";
			this.comboBoxEdit_WatchWholeDaySleep.Location = new System.Drawing.Point(272, 80);
			this.comboBoxEdit_WatchWholeDaySleep.Name = "comboBoxEdit_WatchWholeDaySleep";
			// 
			// comboBoxEdit_WatchWholeDaySleep.Properties
			// 
			this.comboBoxEdit_WatchWholeDaySleep.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																																	new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.comboBoxEdit_WatchWholeDaySleep.Properties.Items.AddRange(new object[] {
																							"好",
																							"中",
																							"差"});
			this.comboBoxEdit_WatchWholeDaySleep.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
			this.comboBoxEdit_WatchWholeDaySleep.Size = new System.Drawing.Size(48, 23);
			this.comboBoxEdit_WatchWholeDaySleep.TabIndex = 85;
			// 
			// notePanel_WatchWholeDaySleep
			// 
			this.notePanel_WatchWholeDaySleep.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_WatchWholeDaySleep.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_WatchWholeDaySleep.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_WatchWholeDaySleep.ForeColor = System.Drawing.Color.Black;
			this.notePanel_WatchWholeDaySleep.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_WatchWholeDaySleep.Location = new System.Drawing.Point(192, 80);
			this.notePanel_WatchWholeDaySleep.MaxRows = 5;
			this.notePanel_WatchWholeDaySleep.Name = "notePanel_WatchWholeDaySleep";
			this.notePanel_WatchWholeDaySleep.ParentAutoHeight = true;
			this.notePanel_WatchWholeDaySleep.Size = new System.Drawing.Size(72, 22);
			this.notePanel_WatchWholeDaySleep.TabIndex = 84;
			this.notePanel_WatchWholeDaySleep.TabStop = false;
			this.notePanel_WatchWholeDaySleep.Text = " 睡  眠:";
			// 
			// comboBoxEdit_WatchWholeDayStool
			// 
			this.comboBoxEdit_WatchWholeDayStool.EditValue = "好";
			this.comboBoxEdit_WatchWholeDayStool.Location = new System.Drawing.Point(120, 80);
			this.comboBoxEdit_WatchWholeDayStool.Name = "comboBoxEdit_WatchWholeDayStool";
			// 
			// comboBoxEdit_WatchWholeDayStool.Properties
			// 
			this.comboBoxEdit_WatchWholeDayStool.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																																	new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.comboBoxEdit_WatchWholeDayStool.Properties.Items.AddRange(new object[] {
																							"好",
																							"中",
																							"差"});
			this.comboBoxEdit_WatchWholeDayStool.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
			this.comboBoxEdit_WatchWholeDayStool.Size = new System.Drawing.Size(64, 23);
			this.comboBoxEdit_WatchWholeDayStool.TabIndex = 83;
			// 
			// notePanel_WatchWholeDayStool
			// 
			this.notePanel_WatchWholeDayStool.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_WatchWholeDayStool.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_WatchWholeDayStool.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_WatchWholeDayStool.ForeColor = System.Drawing.Color.Black;
			this.notePanel_WatchWholeDayStool.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_WatchWholeDayStool.Location = new System.Drawing.Point(24, 80);
			this.notePanel_WatchWholeDayStool.MaxRows = 5;
			this.notePanel_WatchWholeDayStool.Name = "notePanel_WatchWholeDayStool";
			this.notePanel_WatchWholeDayStool.ParentAutoHeight = true;
			this.notePanel_WatchWholeDayStool.Size = new System.Drawing.Size(88, 22);
			this.notePanel_WatchWholeDayStool.TabIndex = 82;
			this.notePanel_WatchWholeDayStool.TabStop = false;
			this.notePanel_WatchWholeDayStool.Text = "   大小便:";
			// 
			// comboBoxEdit_WatchWholeDayAppetite
			// 
			this.comboBoxEdit_WatchWholeDayAppetite.EditValue = "好";
			this.comboBoxEdit_WatchWholeDayAppetite.Location = new System.Drawing.Point(408, 40);
			this.comboBoxEdit_WatchWholeDayAppetite.Name = "comboBoxEdit_WatchWholeDayAppetite";
			// 
			// comboBoxEdit_WatchWholeDayAppetite.Properties
			// 
			this.comboBoxEdit_WatchWholeDayAppetite.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																																	   new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.comboBoxEdit_WatchWholeDayAppetite.Properties.Items.AddRange(new object[] {
																							   "好",
																							   "中",
																							   "差"});
			this.comboBoxEdit_WatchWholeDayAppetite.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
			this.comboBoxEdit_WatchWholeDayAppetite.Size = new System.Drawing.Size(48, 23);
			this.comboBoxEdit_WatchWholeDayAppetite.TabIndex = 81;
			// 
			// notePanel_WatchWholeDayAppetite
			// 
			this.notePanel_WatchWholeDayAppetite.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_WatchWholeDayAppetite.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_WatchWholeDayAppetite.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_WatchWholeDayAppetite.ForeColor = System.Drawing.Color.Black;
			this.notePanel_WatchWholeDayAppetite.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_WatchWholeDayAppetite.Location = new System.Drawing.Point(328, 40);
			this.notePanel_WatchWholeDayAppetite.MaxRows = 5;
			this.notePanel_WatchWholeDayAppetite.Name = "notePanel_WatchWholeDayAppetite";
			this.notePanel_WatchWholeDayAppetite.ParentAutoHeight = true;
			this.notePanel_WatchWholeDayAppetite.Size = new System.Drawing.Size(72, 22);
			this.notePanel_WatchWholeDayAppetite.TabIndex = 80;
			this.notePanel_WatchWholeDayAppetite.TabStop = false;
			this.notePanel_WatchWholeDayAppetite.Text = " 食  欲:";
			// 
			// comboBoxEdit_WatchWholeDaySpirit
			// 
			this.comboBoxEdit_WatchWholeDaySpirit.EditValue = "好";
			this.comboBoxEdit_WatchWholeDaySpirit.Location = new System.Drawing.Point(272, 40);
			this.comboBoxEdit_WatchWholeDaySpirit.Name = "comboBoxEdit_WatchWholeDaySpirit";
			// 
			// comboBoxEdit_WatchWholeDaySpirit.Properties
			// 
			this.comboBoxEdit_WatchWholeDaySpirit.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																																	 new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.comboBoxEdit_WatchWholeDaySpirit.Properties.Items.AddRange(new object[] {
																							 "好",
																							 "中",
																							 "差"});
			this.comboBoxEdit_WatchWholeDaySpirit.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
			this.comboBoxEdit_WatchWholeDaySpirit.Size = new System.Drawing.Size(48, 23);
			this.comboBoxEdit_WatchWholeDaySpirit.TabIndex = 79;
			// 
			// notePanel_WatchWholeDaySpirit
			// 
			this.notePanel_WatchWholeDaySpirit.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_WatchWholeDaySpirit.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_WatchWholeDaySpirit.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_WatchWholeDaySpirit.ForeColor = System.Drawing.Color.Black;
			this.notePanel_WatchWholeDaySpirit.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_WatchWholeDaySpirit.Location = new System.Drawing.Point(192, 40);
			this.notePanel_WatchWholeDaySpirit.MaxRows = 5;
			this.notePanel_WatchWholeDaySpirit.Name = "notePanel_WatchWholeDaySpirit";
			this.notePanel_WatchWholeDaySpirit.ParentAutoHeight = true;
			this.notePanel_WatchWholeDaySpirit.Size = new System.Drawing.Size(72, 22);
			this.notePanel_WatchWholeDaySpirit.TabIndex = 78;
			this.notePanel_WatchWholeDaySpirit.TabStop = false;
			this.notePanel_WatchWholeDaySpirit.Text = " 精  神:";
			// 
			// comboBoxEdit_WatchWholeDayMovement
			// 
			this.comboBoxEdit_WatchWholeDayMovement.EditValue = "强";
			this.comboBoxEdit_WatchWholeDayMovement.Location = new System.Drawing.Point(120, 40);
			this.comboBoxEdit_WatchWholeDayMovement.Name = "comboBoxEdit_WatchWholeDayMovement";
			// 
			// comboBoxEdit_WatchWholeDayMovement.Properties
			// 
			this.comboBoxEdit_WatchWholeDayMovement.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																																	   new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.comboBoxEdit_WatchWholeDayMovement.Properties.Items.AddRange(new object[] {
																							   "强",
																							   "中",
																							   "弱"});
			this.comboBoxEdit_WatchWholeDayMovement.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
			this.comboBoxEdit_WatchWholeDayMovement.Size = new System.Drawing.Size(64, 23);
			this.comboBoxEdit_WatchWholeDayMovement.TabIndex = 77;
			// 
			// notePanel_WatchWholeDayMovement
			// 
			this.notePanel_WatchWholeDayMovement.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_WatchWholeDayMovement.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_WatchWholeDayMovement.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_WatchWholeDayMovement.ForeColor = System.Drawing.Color.Black;
			this.notePanel_WatchWholeDayMovement.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_WatchWholeDayMovement.Location = new System.Drawing.Point(24, 40);
			this.notePanel_WatchWholeDayMovement.MaxRows = 5;
			this.notePanel_WatchWholeDayMovement.Name = "notePanel_WatchWholeDayMovement";
			this.notePanel_WatchWholeDayMovement.ParentAutoHeight = true;
			this.notePanel_WatchWholeDayMovement.Size = new System.Drawing.Size(88, 22);
			this.notePanel_WatchWholeDayMovement.TabIndex = 50;
			this.notePanel_WatchWholeDayMovement.TabStop = false;
			this.notePanel_WatchWholeDayMovement.Text = "一日活动:";
			// 
			// groupControl_WatchRecList
			// 
			this.groupControl_WatchRecList.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.groupControl_WatchRecList.AppearanceCaption.Options.UseFont = true;
			this.groupControl_WatchRecList.Controls.Add(this.gridControl_WatchRecList);
			this.groupControl_WatchRecList.Controls.Add(this.notePanel_WatchRecList);
			this.groupControl_WatchRecList.Dock = System.Windows.Forms.DockStyle.Top;
			this.groupControl_WatchRecList.Location = new System.Drawing.Point(0, 40);
			this.groupControl_WatchRecList.Name = "groupControl_WatchRecList";
			this.groupControl_WatchRecList.Size = new System.Drawing.Size(464, 469);
			this.groupControl_WatchRecList.TabIndex = 1;
			this.groupControl_WatchRecList.Text = "幼儿观察列表";
			// 
			// gridControl_WatchRecList
			// 
			this.gridControl_WatchRecList.Dock = System.Windows.Forms.DockStyle.Fill;
			// 
			// gridControl_WatchRecList.EmbeddedNavigator
			// 
			this.gridControl_WatchRecList.EmbeddedNavigator.Name = "";
			this.gridControl_WatchRecList.Location = new System.Drawing.Point(3, 41);
			this.gridControl_WatchRecList.MainView = this.gridView8;
			this.gridControl_WatchRecList.Name = "gridControl_WatchRecList";
			this.gridControl_WatchRecList.Size = new System.Drawing.Size(458, 425);
			this.gridControl_WatchRecList.TabIndex = 26;
			this.gridControl_WatchRecList.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
																													this.gridView8});
			this.gridControl_WatchRecList.DoubleClick += new System.EventHandler(this.gridControl_WatchRecList_DoubleClick);
			// 
			// gridView8
			// 
			this.gridView8.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
																							 this.gridColumn29,
																							 this.gridColumn30,
																							 this.gridColumn31,
																							 this.gridColumn32,
																							 this.gridColumn33,
																							 this.gridColumn34});
			this.gridView8.GridControl = this.gridControl_WatchRecList;
			this.gridView8.Name = "gridView8";
			this.gridView8.OptionsCustomization.AllowFilter = false;
			this.gridView8.OptionsView.ShowFilterPanel = false;
			this.gridView8.OptionsView.ShowGroupPanel = false;
			// 
			// gridColumn29
			// 
			this.gridColumn29.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn29.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn29.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn29.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn29.Caption = "幼儿序号";
			this.gridColumn29.FieldName = "info_stuOrderNumber";
			this.gridColumn29.Name = "gridColumn29";
			this.gridColumn29.OptionsColumn.AllowEdit = false;
			this.gridColumn29.OptionsColumn.AllowFocus = false;
			this.gridColumn29.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn29.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn29.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn29.OptionsColumn.AllowMove = false;
			this.gridColumn29.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn29.OptionsColumn.ReadOnly = true;
			this.gridColumn29.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn29.Visible = true;
			this.gridColumn29.VisibleIndex = 0;
			this.gridColumn29.Width = 60;
			// 
			// gridColumn30
			// 
			this.gridColumn30.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn30.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn30.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn30.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn30.Caption = "幼儿学号";
			this.gridColumn30.FieldName = "stu_id";
			this.gridColumn30.Name = "gridColumn30";
			this.gridColumn30.OptionsColumn.AllowEdit = false;
			this.gridColumn30.OptionsColumn.AllowFocus = false;
			this.gridColumn30.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn30.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn30.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn30.OptionsColumn.AllowMove = false;
			this.gridColumn30.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn30.OptionsColumn.ReadOnly = true;
			this.gridColumn30.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn30.Visible = true;
			this.gridColumn30.VisibleIndex = 1;
			this.gridColumn30.Width = 65;
			// 
			// gridColumn31
			// 
			this.gridColumn31.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn31.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn31.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn31.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn31.Caption = "幼儿姓名";
			this.gridColumn31.FieldName = "stu_name";
			this.gridColumn31.Name = "gridColumn31";
			this.gridColumn31.OptionsColumn.AllowEdit = false;
			this.gridColumn31.OptionsColumn.AllowFocus = false;
			this.gridColumn31.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn31.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn31.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn31.OptionsColumn.AllowMove = false;
			this.gridColumn31.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn31.OptionsColumn.ReadOnly = true;
			this.gridColumn31.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn31.Visible = true;
			this.gridColumn31.VisibleIndex = 2;
			this.gridColumn31.Width = 77;
			// 
			// gridColumn32
			// 
			this.gridColumn32.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn32.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn32.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn32.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn32.Caption = "幼儿班级";
			this.gridColumn32.FieldName = "info_className";
			this.gridColumn32.Name = "gridColumn32";
			this.gridColumn32.OptionsColumn.AllowEdit = false;
			this.gridColumn32.OptionsColumn.AllowFocus = false;
			this.gridColumn32.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn32.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn32.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn32.OptionsColumn.AllowMove = false;
			this.gridColumn32.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn32.OptionsColumn.ReadOnly = true;
			this.gridColumn32.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn32.Visible = true;
			this.gridColumn32.VisibleIndex = 3;
			this.gridColumn32.Width = 77;
			// 
			// gridColumn33
			// 
			this.gridColumn33.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn33.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn33.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn33.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn33.Caption = "观察时间";
			this.gridColumn33.FieldName = "observeTime";
			this.gridColumn33.Name = "gridColumn33";
			this.gridColumn33.OptionsColumn.AllowEdit = false;
			this.gridColumn33.OptionsColumn.AllowFocus = false;
			this.gridColumn33.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn33.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn33.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn33.OptionsColumn.AllowMove = false;
			this.gridColumn33.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn33.OptionsColumn.ReadOnly = true;
			this.gridColumn33.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn33.Visible = true;
			this.gridColumn33.VisibleIndex = 4;
			this.gridColumn33.Width = 81;
			// 
			// gridColumn34
			// 
			this.gridColumn34.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn34.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn34.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn34.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn34.Caption = "教师签名";
			this.gridColumn34.FieldName = "dailyReg_teacherSign";
			this.gridColumn34.Name = "gridColumn34";
			this.gridColumn34.OptionsColumn.AllowEdit = false;
			this.gridColumn34.OptionsColumn.AllowFocus = false;
			this.gridColumn34.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn34.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn34.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn34.OptionsColumn.AllowMove = false;
			this.gridColumn34.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn34.OptionsColumn.ReadOnly = true;
			this.gridColumn34.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn34.Visible = true;
			this.gridColumn34.VisibleIndex = 5;
			this.gridColumn34.Width = 95;
			// 
			// notePanel_WatchRecList
			// 
			this.notePanel_WatchRecList.BackColor = System.Drawing.Color.LightGoldenrodYellow;
			this.notePanel_WatchRecList.Dock = System.Windows.Forms.DockStyle.Top;
			this.notePanel_WatchRecList.ForeColor = System.Drawing.Color.OrangeRed;
			this.notePanel_WatchRecList.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_WatchRecList.Location = new System.Drawing.Point(3, 18);
			this.notePanel_WatchRecList.MaxRows = 5;
			this.notePanel_WatchRecList.Name = "notePanel_WatchRecList";
			this.notePanel_WatchRecList.ParentAutoHeight = true;
			this.notePanel_WatchRecList.Size = new System.Drawing.Size(458, 23);
			this.notePanel_WatchRecList.TabIndex = 25;
			this.notePanel_WatchRecList.TabStop = false;
			this.notePanel_WatchRecList.Text = "双击进入幼儿全日观察";
			// 
			// panelControl7
			// 
			this.panelControl7.Controls.Add(this.simpleButton_WatchSearch);
			this.panelControl7.Controls.Add(this.simpleButton_WatchBack);
			this.panelControl7.Controls.Add(this.simpleButton_WatchDelete);
			this.panelControl7.Controls.Add(this.simpleButton_WatchReport);
			this.panelControl7.Controls.Add(this.simpleButton_WatchHandle);
			this.panelControl7.Dock = System.Windows.Forms.DockStyle.Top;
			this.panelControl7.Location = new System.Drawing.Point(0, 0);
			this.panelControl7.Name = "panelControl7";
			this.panelControl7.Size = new System.Drawing.Size(464, 40);
			this.panelControl7.TabIndex = 0;
			this.panelControl7.Text = "panelControl7";
			// 
			// simpleButton_WatchSearch
			// 
			this.simpleButton_WatchSearch.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.simpleButton_WatchSearch.Appearance.ForeColor = System.Drawing.Color.DarkMagenta;
			this.simpleButton_WatchSearch.Appearance.Options.UseFont = true;
			this.simpleButton_WatchSearch.Appearance.Options.UseForeColor = true;
			this.simpleButton_WatchSearch.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton_WatchSearch.Image")));
			this.simpleButton_WatchSearch.Location = new System.Drawing.Point(8, 9);
			this.simpleButton_WatchSearch.Name = "simpleButton_WatchSearch";
			this.simpleButton_WatchSearch.Size = new System.Drawing.Size(72, 26);
			this.simpleButton_WatchSearch.TabIndex = 21;
			this.simpleButton_WatchSearch.Tag = 4;
			this.simpleButton_WatchSearch.Text = "检索";
			this.simpleButton_WatchSearch.Click += new System.EventHandler(this.simpleButton_WatchSearch_Click);
			// 
			// simpleButton_WatchBack
			// 
			this.simpleButton_WatchBack.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.simpleButton_WatchBack.Appearance.ForeColor = System.Drawing.Color.DarkMagenta;
			this.simpleButton_WatchBack.Appearance.Options.UseFont = true;
			this.simpleButton_WatchBack.Appearance.Options.UseForeColor = true;
			this.simpleButton_WatchBack.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton_WatchBack.Image")));
			this.simpleButton_WatchBack.Location = new System.Drawing.Point(88, 8);
			this.simpleButton_WatchBack.Name = "simpleButton_WatchBack";
			this.simpleButton_WatchBack.Size = new System.Drawing.Size(72, 26);
			this.simpleButton_WatchBack.TabIndex = 19;
			this.simpleButton_WatchBack.Tag = 4;
			this.simpleButton_WatchBack.Text = "返回";
			this.simpleButton_WatchBack.Click += new System.EventHandler(this.simpleButton_WatchBack_Click);
			// 
			// simpleButton_WatchDelete
			// 
			this.simpleButton_WatchDelete.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.simpleButton_WatchDelete.Appearance.ForeColor = System.Drawing.Color.DarkMagenta;
			this.simpleButton_WatchDelete.Appearance.Options.UseFont = true;
			this.simpleButton_WatchDelete.Appearance.Options.UseForeColor = true;
			this.simpleButton_WatchDelete.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton_WatchDelete.Image")));
			this.simpleButton_WatchDelete.Location = new System.Drawing.Point(248, 8);
			this.simpleButton_WatchDelete.Name = "simpleButton_WatchDelete";
			this.simpleButton_WatchDelete.Size = new System.Drawing.Size(72, 26);
			this.simpleButton_WatchDelete.TabIndex = 18;
			this.simpleButton_WatchDelete.Tag = 4;
			this.simpleButton_WatchDelete.Text = "删除";
			this.simpleButton_WatchDelete.Click += new System.EventHandler(this.simpleButton_WatchDelete_Click);
			// 
			// simpleButton_WatchReport
			// 
			this.simpleButton_WatchReport.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.simpleButton_WatchReport.Appearance.ForeColor = System.Drawing.Color.DarkMagenta;
			this.simpleButton_WatchReport.Appearance.Options.UseFont = true;
			this.simpleButton_WatchReport.Appearance.Options.UseForeColor = true;
			this.simpleButton_WatchReport.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton_WatchReport.Image")));
			this.simpleButton_WatchReport.Location = new System.Drawing.Point(328, 8);
			this.simpleButton_WatchReport.Name = "simpleButton_WatchReport";
			this.simpleButton_WatchReport.Size = new System.Drawing.Size(72, 26);
			this.simpleButton_WatchReport.TabIndex = 16;
			this.simpleButton_WatchReport.Tag = 4;
			this.simpleButton_WatchReport.Text = "报表";
			this.simpleButton_WatchReport.Click += new System.EventHandler(this.simpleButton_WatchReport_Click);
			// 
			// simpleButton_WatchHandle
			// 
			this.simpleButton_WatchHandle.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.simpleButton_WatchHandle.Appearance.ForeColor = System.Drawing.Color.DarkMagenta;
			this.simpleButton_WatchHandle.Appearance.Options.UseFont = true;
			this.simpleButton_WatchHandle.Appearance.Options.UseForeColor = true;
			this.simpleButton_WatchHandle.Enabled = false;
			this.simpleButton_WatchHandle.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton_WatchHandle.Image")));
			this.simpleButton_WatchHandle.Location = new System.Drawing.Point(168, 8);
			this.simpleButton_WatchHandle.Name = "simpleButton_WatchHandle";
			this.simpleButton_WatchHandle.Size = new System.Drawing.Size(72, 26);
			this.simpleButton_WatchHandle.TabIndex = 14;
			this.simpleButton_WatchHandle.Tag = 4;
			this.simpleButton_WatchHandle.Text = "保存";
			this.simpleButton_WatchHandle.Click += new System.EventHandler(this.simpleButton_WatchHandle_Click);
			// 
			// xtraTabPage8
			// 
			this.xtraTabPage8.Appearance.PageClient.BackColor = System.Drawing.Color.WhiteSmoke;
			this.xtraTabPage8.Appearance.PageClient.Options.UseBackColor = true;
			this.xtraTabPage8.Controls.Add(this.splitContainerControl9);
			this.xtraTabPage8.Name = "xtraTabPage8";
			this.xtraTabPage8.PageVisible = false;
			this.xtraTabPage8.Size = new System.Drawing.Size(768, 515);
			this.xtraTabPage8.Text = "服药登记";
			// 
			// splitContainerControl9
			// 
			this.splitContainerControl9.Dock = System.Windows.Forms.DockStyle.Fill;
			this.splitContainerControl9.Location = new System.Drawing.Point(0, 0);
			this.splitContainerControl9.Name = "splitContainerControl9";
			this.splitContainerControl9.Panel1.Controls.Add(this.groupControl_MedReg_StuList);
			this.splitContainerControl9.Panel1.Controls.Add(this.groupControl_MedReg_Ser);
			this.splitContainerControl9.Panel1.Text = "splitContainerControl9_Panel1";
			this.splitContainerControl9.Panel2.Controls.Add(this.groupControl_MedReg_MedInfo);
			this.splitContainerControl9.Panel2.Controls.Add(this.groupControl_MedReg_MedCarrInfo);
			this.splitContainerControl9.Panel2.Controls.Add(this.groupControl_MedReg_DiagInfo);
			this.splitContainerControl9.Panel2.Controls.Add(this.panelControl8);
			this.splitContainerControl9.Panel2.Text = "splitContainerControl9_Panel2";
			this.splitContainerControl9.Size = new System.Drawing.Size(768, 515);
			this.splitContainerControl9.SplitterPosition = 289;
			this.splitContainerControl9.TabIndex = 0;
			this.splitContainerControl9.Text = "splitContainerControl9";
			// 
			// groupControl_MedReg_StuList
			// 
			this.groupControl_MedReg_StuList.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.groupControl_MedReg_StuList.AppearanceCaption.Options.UseFont = true;
			this.groupControl_MedReg_StuList.Controls.Add(this.gridControl_MedReg_StuList);
			this.groupControl_MedReg_StuList.Controls.Add(this.notePanel2);
			this.groupControl_MedReg_StuList.Dock = System.Windows.Forms.DockStyle.Fill;
			this.groupControl_MedReg_StuList.Location = new System.Drawing.Point(0, 208);
			this.groupControl_MedReg_StuList.Name = "groupControl_MedReg_StuList";
			this.groupControl_MedReg_StuList.Size = new System.Drawing.Size(283, 301);
			this.groupControl_MedReg_StuList.TabIndex = 2;
			this.groupControl_MedReg_StuList.Text = "今天需要服药的幼儿";
			// 
			// gridControl_MedReg_StuList
			// 
			this.gridControl_MedReg_StuList.Dock = System.Windows.Forms.DockStyle.Fill;
			// 
			// gridControl_MedReg_StuList.EmbeddedNavigator
			// 
			this.gridControl_MedReg_StuList.EmbeddedNavigator.Name = "";
			this.gridControl_MedReg_StuList.Location = new System.Drawing.Point(3, 41);
			this.gridControl_MedReg_StuList.MainView = this.gridView9;
			this.gridControl_MedReg_StuList.Name = "gridControl_MedReg_StuList";
			this.gridControl_MedReg_StuList.Size = new System.Drawing.Size(277, 257);
			this.gridControl_MedReg_StuList.TabIndex = 59;
			this.gridControl_MedReg_StuList.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
																													  this.gridView9});
			this.gridControl_MedReg_StuList.DoubleClick += new System.EventHandler(this.gridControl_MedReg_StuList_DoubleClick);
			// 
			// gridView9
			// 
			this.gridView9.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
																							 this.gridColumn35,
																							 this.gridColumn36,
																							 this.gridColumn37,
																							 this.gridColumn38});
			this.gridView9.GridControl = this.gridControl_MedReg_StuList;
			this.gridView9.Name = "gridView9";
			this.gridView9.OptionsCustomization.AllowFilter = false;
			this.gridView9.OptionsView.ShowFilterPanel = false;
			this.gridView9.OptionsView.ShowGroupPanel = false;
			// 
			// gridColumn35
			// 
			this.gridColumn35.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn35.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn35.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn35.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn35.Caption = "学号";
			this.gridColumn35.FieldName = "info_stuNumber";
			this.gridColumn35.Name = "gridColumn35";
			this.gridColumn35.OptionsColumn.AllowEdit = false;
			this.gridColumn35.OptionsColumn.AllowFocus = false;
			this.gridColumn35.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn35.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn35.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn35.OptionsColumn.AllowMove = false;
			this.gridColumn35.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn35.OptionsColumn.ReadOnly = true;
			this.gridColumn35.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn35.Visible = true;
			this.gridColumn35.VisibleIndex = 0;
			this.gridColumn35.Width = 48;
			// 
			// gridColumn36
			// 
			this.gridColumn36.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn36.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn36.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn36.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn36.Caption = "姓名";
			this.gridColumn36.FieldName = "info_stuName";
			this.gridColumn36.Name = "gridColumn36";
			this.gridColumn36.OptionsColumn.AllowEdit = false;
			this.gridColumn36.OptionsColumn.AllowFocus = false;
			this.gridColumn36.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn36.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn36.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn36.OptionsColumn.AllowMove = false;
			this.gridColumn36.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn36.OptionsColumn.ReadOnly = true;
			this.gridColumn36.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn36.Visible = true;
			this.gridColumn36.VisibleIndex = 1;
			this.gridColumn36.Width = 56;
			// 
			// gridColumn37
			// 
			this.gridColumn37.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn37.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn37.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn37.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn37.Caption = "班级";
			this.gridColumn37.FieldName = "info_className";
			this.gridColumn37.Name = "gridColumn37";
			this.gridColumn37.OptionsColumn.AllowEdit = false;
			this.gridColumn37.OptionsColumn.AllowFocus = false;
			this.gridColumn37.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn37.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn37.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn37.OptionsColumn.AllowMove = false;
			this.gridColumn37.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn37.OptionsColumn.ReadOnly = true;
			this.gridColumn37.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn37.Visible = true;
			this.gridColumn37.VisibleIndex = 2;
			this.gridColumn37.Width = 55;
			// 
			// gridColumn38
			// 
			this.gridColumn38.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn38.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn38.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn38.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn38.Caption = "晨检时间";
			this.gridColumn38.DisplayFormat.FormatString = "yyyy-MM-dd hh:mm:ss";
			this.gridColumn38.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
			this.gridColumn38.FieldName = "flow_stuFlowEnterDate";
			this.gridColumn38.Name = "gridColumn38";
			this.gridColumn38.OptionsColumn.AllowEdit = false;
			this.gridColumn38.OptionsColumn.AllowFocus = false;
			this.gridColumn38.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn38.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn38.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn38.OptionsColumn.AllowMove = false;
			this.gridColumn38.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn38.OptionsColumn.ReadOnly = true;
			this.gridColumn38.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn38.Visible = true;
			this.gridColumn38.VisibleIndex = 3;
			this.gridColumn38.Width = 101;
			// 
			// notePanel2
			// 
			this.notePanel2.BackColor = System.Drawing.Color.LightGoldenrodYellow;
			this.notePanel2.Dock = System.Windows.Forms.DockStyle.Top;
			this.notePanel2.ForeColor = System.Drawing.Color.OrangeRed;
			this.notePanel2.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel2.Location = new System.Drawing.Point(3, 18);
			this.notePanel2.MaxRows = 5;
			this.notePanel2.Name = "notePanel2";
			this.notePanel2.ParentAutoHeight = true;
			this.notePanel2.Size = new System.Drawing.Size(277, 23);
			this.notePanel2.TabIndex = 58;
			this.notePanel2.TabStop = false;
			this.notePanel2.Text = "双击进行晨检诊断及药品携带信息管理";
			// 
			// groupControl_MedReg_Ser
			// 
			this.groupControl_MedReg_Ser.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.groupControl_MedReg_Ser.AppearanceCaption.Options.UseFont = true;
			this.groupControl_MedReg_Ser.Controls.Add(this.notePanel_MedReg_Ser);
			this.groupControl_MedReg_Ser.Controls.Add(this.textEdit_MedReg_Number);
			this.groupControl_MedReg_Ser.Controls.Add(this.textEdit_MedReg_Name);
			this.groupControl_MedReg_Ser.Controls.Add(this.comboBoxEdit_MedReg_Class);
			this.groupControl_MedReg_Ser.Controls.Add(this.notePanel_MedReg_Class);
			this.groupControl_MedReg_Ser.Controls.Add(this.comboBoxEdit_MedReg_Grade);
			this.groupControl_MedReg_Ser.Controls.Add(this.notePanel_MedReg_Grade);
			this.groupControl_MedReg_Ser.Controls.Add(this.notePanel_MedReg_Number);
			this.groupControl_MedReg_Ser.Controls.Add(this.notePanel_MedReg_Name);
			this.groupControl_MedReg_Ser.Dock = System.Windows.Forms.DockStyle.Top;
			this.groupControl_MedReg_Ser.Location = new System.Drawing.Point(0, 0);
			this.groupControl_MedReg_Ser.Name = "groupControl_MedReg_Ser";
			this.groupControl_MedReg_Ser.Size = new System.Drawing.Size(283, 208);
			this.groupControl_MedReg_Ser.TabIndex = 1;
			this.groupControl_MedReg_Ser.Text = "信息查询";
			// 
			// notePanel_MedReg_Ser
			// 
			this.notePanel_MedReg_Ser.BackColor = System.Drawing.Color.LightGoldenrodYellow;
			this.notePanel_MedReg_Ser.Dock = System.Windows.Forms.DockStyle.Top;
			this.notePanel_MedReg_Ser.ForeColor = System.Drawing.Color.OrangeRed;
			this.notePanel_MedReg_Ser.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_MedReg_Ser.Location = new System.Drawing.Point(3, 18);
			this.notePanel_MedReg_Ser.MaxRows = 5;
			this.notePanel_MedReg_Ser.Name = "notePanel_MedReg_Ser";
			this.notePanel_MedReg_Ser.ParentAutoHeight = true;
			this.notePanel_MedReg_Ser.Size = new System.Drawing.Size(277, 23);
			this.notePanel_MedReg_Ser.TabIndex = 57;
			this.notePanel_MedReg_Ser.TabStop = false;
			this.notePanel_MedReg_Ser.Text = "检索您的幼儿";
			// 
			// textEdit_MedReg_Number
			// 
			this.textEdit_MedReg_Number.EditValue = "";
			this.textEdit_MedReg_Number.Location = new System.Drawing.Point(144, 160);
			this.textEdit_MedReg_Number.Name = "textEdit_MedReg_Number";
			this.textEdit_MedReg_Number.Size = new System.Drawing.Size(88, 23);
			this.textEdit_MedReg_Number.TabIndex = 56;
			this.textEdit_MedReg_Number.EditValueChanged += new System.EventHandler(this.textEdit_MedReg_Number_EditValueChanged);
			// 
			// textEdit_MedReg_Name
			// 
			this.textEdit_MedReg_Name.EditValue = "";
			this.textEdit_MedReg_Name.Location = new System.Drawing.Point(144, 128);
			this.textEdit_MedReg_Name.Name = "textEdit_MedReg_Name";
			this.textEdit_MedReg_Name.Size = new System.Drawing.Size(88, 23);
			this.textEdit_MedReg_Name.TabIndex = 55;
			this.textEdit_MedReg_Name.EditValueChanged += new System.EventHandler(this.textEdit_MedReg_Name_EditValueChanged);
			// 
			// comboBoxEdit_MedReg_Class
			// 
			this.comboBoxEdit_MedReg_Class.EditValue = "全部";
			this.comboBoxEdit_MedReg_Class.Location = new System.Drawing.Point(144, 96);
			this.comboBoxEdit_MedReg_Class.Name = "comboBoxEdit_MedReg_Class";
			// 
			// comboBoxEdit_MedReg_Class.Properties
			// 
			this.comboBoxEdit_MedReg_Class.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																															  new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.comboBoxEdit_MedReg_Class.Properties.Items.AddRange(new object[] {
																					  "全部"});
			this.comboBoxEdit_MedReg_Class.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
			this.comboBoxEdit_MedReg_Class.Size = new System.Drawing.Size(88, 23);
			this.comboBoxEdit_MedReg_Class.TabIndex = 54;
			this.comboBoxEdit_MedReg_Class.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit_MedReg_Class_SelectedIndexChanged);
			// 
			// notePanel_MedReg_Class
			// 
			this.notePanel_MedReg_Class.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_MedReg_Class.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_MedReg_Class.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_MedReg_Class.ForeColor = System.Drawing.Color.Black;
			this.notePanel_MedReg_Class.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_MedReg_Class.Location = new System.Drawing.Point(48, 96);
			this.notePanel_MedReg_Class.MaxRows = 5;
			this.notePanel_MedReg_Class.Name = "notePanel_MedReg_Class";
			this.notePanel_MedReg_Class.ParentAutoHeight = true;
			this.notePanel_MedReg_Class.Size = new System.Drawing.Size(80, 22);
			this.notePanel_MedReg_Class.TabIndex = 53;
			this.notePanel_MedReg_Class.TabStop = false;
			this.notePanel_MedReg_Class.Text = "  班  级:";
			// 
			// comboBoxEdit_MedReg_Grade
			// 
			this.comboBoxEdit_MedReg_Grade.EditValue = "全部";
			this.comboBoxEdit_MedReg_Grade.Location = new System.Drawing.Point(144, 64);
			this.comboBoxEdit_MedReg_Grade.Name = "comboBoxEdit_MedReg_Grade";
			// 
			// comboBoxEdit_MedReg_Grade.Properties
			// 
			this.comboBoxEdit_MedReg_Grade.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																															  new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.comboBoxEdit_MedReg_Grade.Properties.Items.AddRange(new object[] {
																					  "全部"});
			this.comboBoxEdit_MedReg_Grade.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
			this.comboBoxEdit_MedReg_Grade.Size = new System.Drawing.Size(88, 23);
			this.comboBoxEdit_MedReg_Grade.TabIndex = 52;
			this.comboBoxEdit_MedReg_Grade.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit_MedReg_Grade_SelectedIndexChanged);
			// 
			// notePanel_MedReg_Grade
			// 
			this.notePanel_MedReg_Grade.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_MedReg_Grade.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_MedReg_Grade.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_MedReg_Grade.ForeColor = System.Drawing.Color.Black;
			this.notePanel_MedReg_Grade.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_MedReg_Grade.Location = new System.Drawing.Point(48, 64);
			this.notePanel_MedReg_Grade.MaxRows = 5;
			this.notePanel_MedReg_Grade.Name = "notePanel_MedReg_Grade";
			this.notePanel_MedReg_Grade.ParentAutoHeight = true;
			this.notePanel_MedReg_Grade.Size = new System.Drawing.Size(80, 22);
			this.notePanel_MedReg_Grade.TabIndex = 51;
			this.notePanel_MedReg_Grade.TabStop = false;
			this.notePanel_MedReg_Grade.Text = "  年  级:";
			// 
			// notePanel_MedReg_Number
			// 
			this.notePanel_MedReg_Number.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_MedReg_Number.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_MedReg_Number.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_MedReg_Number.ForeColor = System.Drawing.Color.Black;
			this.notePanel_MedReg_Number.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_MedReg_Number.Location = new System.Drawing.Point(48, 160);
			this.notePanel_MedReg_Number.MaxRows = 5;
			this.notePanel_MedReg_Number.Name = "notePanel_MedReg_Number";
			this.notePanel_MedReg_Number.ParentAutoHeight = true;
			this.notePanel_MedReg_Number.Size = new System.Drawing.Size(80, 22);
			this.notePanel_MedReg_Number.TabIndex = 50;
			this.notePanel_MedReg_Number.TabStop = false;
			this.notePanel_MedReg_Number.Text = "  学  号:";
			// 
			// notePanel_MedReg_Name
			// 
			this.notePanel_MedReg_Name.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_MedReg_Name.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_MedReg_Name.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_MedReg_Name.ForeColor = System.Drawing.Color.Black;
			this.notePanel_MedReg_Name.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_MedReg_Name.Location = new System.Drawing.Point(48, 128);
			this.notePanel_MedReg_Name.MaxRows = 5;
			this.notePanel_MedReg_Name.Name = "notePanel_MedReg_Name";
			this.notePanel_MedReg_Name.ParentAutoHeight = true;
			this.notePanel_MedReg_Name.Size = new System.Drawing.Size(80, 22);
			this.notePanel_MedReg_Name.TabIndex = 49;
			this.notePanel_MedReg_Name.TabStop = false;
			this.notePanel_MedReg_Name.Text = "  姓  名:";
			// 
			// groupControl_MedReg_MedInfo
			// 
			this.groupControl_MedReg_MedInfo.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.groupControl_MedReg_MedInfo.AppearanceCaption.Options.UseFont = true;
			this.groupControl_MedReg_MedInfo.Controls.Add(this.textEdit_MedReg_MedName);
			this.groupControl_MedReg_MedInfo.Controls.Add(this.textEdit_MedReg_Taketimes);
			this.groupControl_MedReg_MedInfo.Controls.Add(this.textEdit_MedReg_MedTake);
			this.groupControl_MedReg_MedInfo.Controls.Add(this.textEdit_MedReg_MedType);
			this.groupControl_MedReg_MedInfo.Controls.Add(this.notePanel_MedReg_Taketimes);
			this.groupControl_MedReg_MedInfo.Controls.Add(this.notePanel_MedReg_MedTake);
			this.groupControl_MedReg_MedInfo.Controls.Add(this.notePanel_MedReg_MedType);
			this.groupControl_MedReg_MedInfo.Controls.Add(this.notePanel_MedReg_MedName);
			this.groupControl_MedReg_MedInfo.Dock = System.Windows.Forms.DockStyle.Fill;
			this.groupControl_MedReg_MedInfo.Location = new System.Drawing.Point(0, 520);
			this.groupControl_MedReg_MedInfo.Name = "groupControl_MedReg_MedInfo";
			this.groupControl_MedReg_MedInfo.Size = new System.Drawing.Size(469, -11);
			this.groupControl_MedReg_MedInfo.TabIndex = 3;
			this.groupControl_MedReg_MedInfo.Text = "添加药品信息";
			this.groupControl_MedReg_MedInfo.Visible = false;
			// 
			// textEdit_MedReg_MedName
			// 
			this.textEdit_MedReg_MedName.EditValue = "";
			this.textEdit_MedReg_MedName.Location = new System.Drawing.Point(232, 32);
			this.textEdit_MedReg_MedName.Name = "textEdit_MedReg_MedName";
			this.textEdit_MedReg_MedName.Size = new System.Drawing.Size(96, 23);
			this.textEdit_MedReg_MedName.TabIndex = 60;
			// 
			// textEdit_MedReg_Taketimes
			// 
			this.textEdit_MedReg_Taketimes.EditValue = "";
			this.textEdit_MedReg_Taketimes.Location = new System.Drawing.Point(232, 152);
			this.textEdit_MedReg_Taketimes.Name = "textEdit_MedReg_Taketimes";
			this.textEdit_MedReg_Taketimes.Size = new System.Drawing.Size(96, 23);
			this.textEdit_MedReg_Taketimes.TabIndex = 59;
			// 
			// textEdit_MedReg_MedTake
			// 
			this.textEdit_MedReg_MedTake.EditValue = "";
			this.textEdit_MedReg_MedTake.Location = new System.Drawing.Point(232, 112);
			this.textEdit_MedReg_MedTake.Name = "textEdit_MedReg_MedTake";
			this.textEdit_MedReg_MedTake.Size = new System.Drawing.Size(96, 23);
			this.textEdit_MedReg_MedTake.TabIndex = 58;
			// 
			// textEdit_MedReg_MedType
			// 
			this.textEdit_MedReg_MedType.EditValue = "";
			this.textEdit_MedReg_MedType.Location = new System.Drawing.Point(232, 72);
			this.textEdit_MedReg_MedType.Name = "textEdit_MedReg_MedType";
			this.textEdit_MedReg_MedType.Size = new System.Drawing.Size(96, 23);
			this.textEdit_MedReg_MedType.TabIndex = 57;
			// 
			// notePanel_MedReg_Taketimes
			// 
			this.notePanel_MedReg_Taketimes.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_MedReg_Taketimes.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_MedReg_Taketimes.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_MedReg_Taketimes.ForeColor = System.Drawing.Color.Black;
			this.notePanel_MedReg_Taketimes.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_MedReg_Taketimes.Location = new System.Drawing.Point(128, 152);
			this.notePanel_MedReg_Taketimes.MaxRows = 5;
			this.notePanel_MedReg_Taketimes.Name = "notePanel_MedReg_Taketimes";
			this.notePanel_MedReg_Taketimes.ParentAutoHeight = true;
			this.notePanel_MedReg_Taketimes.Size = new System.Drawing.Size(80, 22);
			this.notePanel_MedReg_Taketimes.TabIndex = 55;
			this.notePanel_MedReg_Taketimes.TabStop = false;
			this.notePanel_MedReg_Taketimes.Text = "服用次数:";
			// 
			// notePanel_MedReg_MedTake
			// 
			this.notePanel_MedReg_MedTake.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_MedReg_MedTake.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_MedReg_MedTake.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_MedReg_MedTake.ForeColor = System.Drawing.Color.Black;
			this.notePanel_MedReg_MedTake.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_MedReg_MedTake.Location = new System.Drawing.Point(128, 112);
			this.notePanel_MedReg_MedTake.MaxRows = 5;
			this.notePanel_MedReg_MedTake.Name = "notePanel_MedReg_MedTake";
			this.notePanel_MedReg_MedTake.ParentAutoHeight = true;
			this.notePanel_MedReg_MedTake.Size = new System.Drawing.Size(80, 22);
			this.notePanel_MedReg_MedTake.TabIndex = 54;
			this.notePanel_MedReg_MedTake.TabStop = false;
			this.notePanel_MedReg_MedTake.Text = "服用剂量:";
			// 
			// notePanel_MedReg_MedType
			// 
			this.notePanel_MedReg_MedType.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_MedReg_MedType.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_MedReg_MedType.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_MedReg_MedType.ForeColor = System.Drawing.Color.Black;
			this.notePanel_MedReg_MedType.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_MedReg_MedType.Location = new System.Drawing.Point(128, 72);
			this.notePanel_MedReg_MedType.MaxRows = 5;
			this.notePanel_MedReg_MedType.Name = "notePanel_MedReg_MedType";
			this.notePanel_MedReg_MedType.ParentAutoHeight = true;
			this.notePanel_MedReg_MedType.Size = new System.Drawing.Size(80, 22);
			this.notePanel_MedReg_MedType.TabIndex = 53;
			this.notePanel_MedReg_MedType.TabStop = false;
			this.notePanel_MedReg_MedType.Text = "  种  类:";
			// 
			// notePanel_MedReg_MedName
			// 
			this.notePanel_MedReg_MedName.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_MedReg_MedName.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_MedReg_MedName.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_MedReg_MedName.ForeColor = System.Drawing.Color.Black;
			this.notePanel_MedReg_MedName.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_MedReg_MedName.Location = new System.Drawing.Point(128, 32);
			this.notePanel_MedReg_MedName.MaxRows = 5;
			this.notePanel_MedReg_MedName.Name = "notePanel_MedReg_MedName";
			this.notePanel_MedReg_MedName.ParentAutoHeight = true;
			this.notePanel_MedReg_MedName.Size = new System.Drawing.Size(80, 22);
			this.notePanel_MedReg_MedName.TabIndex = 52;
			this.notePanel_MedReg_MedName.TabStop = false;
			this.notePanel_MedReg_MedName.Text = "  名  称:";
			// 
			// groupControl_MedReg_MedCarrInfo
			// 
			this.groupControl_MedReg_MedCarrInfo.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.groupControl_MedReg_MedCarrInfo.AppearanceCaption.Options.UseFont = true;
			this.groupControl_MedReg_MedCarrInfo.Controls.Add(this.listBoxControl_MedReg_MedCarrInfo);
			this.groupControl_MedReg_MedCarrInfo.Controls.Add(this.simpleButton_MedReg_MedCarrDel);
			this.groupControl_MedReg_MedCarrInfo.Controls.Add(this.simpleButton_MedReg_MedCarrAdd);
			this.groupControl_MedReg_MedCarrInfo.Controls.Add(this.listBoxControl_MedReg_MedInfo);
			this.groupControl_MedReg_MedCarrInfo.Dock = System.Windows.Forms.DockStyle.Top;
			this.groupControl_MedReg_MedCarrInfo.Location = new System.Drawing.Point(0, 368);
			this.groupControl_MedReg_MedCarrInfo.Name = "groupControl_MedReg_MedCarrInfo";
			this.groupControl_MedReg_MedCarrInfo.Size = new System.Drawing.Size(469, 152);
			this.groupControl_MedReg_MedCarrInfo.TabIndex = 2;
			this.groupControl_MedReg_MedCarrInfo.Text = "幼儿药品携带信息";
			// 
			// listBoxControl_MedReg_MedCarrInfo
			// 
			this.listBoxControl_MedReg_MedCarrInfo.ItemHeight = 16;
			this.listBoxControl_MedReg_MedCarrInfo.Location = new System.Drawing.Point(280, 24);
			this.listBoxControl_MedReg_MedCarrInfo.Name = "listBoxControl_MedReg_MedCarrInfo";
			this.listBoxControl_MedReg_MedCarrInfo.Size = new System.Drawing.Size(200, 112);
			this.listBoxControl_MedReg_MedCarrInfo.TabIndex = 3;
			this.listBoxControl_MedReg_MedCarrInfo.Click += new System.EventHandler(this.listBoxControl_MedReg_MedCarrInfo_Click);
			this.listBoxControl_MedReg_MedCarrInfo.DoubleClick += new System.EventHandler(this.listBoxControl_MedReg_MedCarrInfo_DoubleClick);
			this.listBoxControl_MedReg_MedCarrInfo.SelectedValueChanged += new System.EventHandler(this.listBoxControl_MedReg_MedCarrInfo_SelectedValueChanged);
			// 
			// simpleButton_MedReg_MedCarrDel
			// 
			this.simpleButton_MedReg_MedCarrDel.Enabled = false;
			this.simpleButton_MedReg_MedCarrDel.Location = new System.Drawing.Point(192, 88);
			this.simpleButton_MedReg_MedCarrDel.Name = "simpleButton_MedReg_MedCarrDel";
			this.simpleButton_MedReg_MedCarrDel.Size = new System.Drawing.Size(64, 24);
			this.simpleButton_MedReg_MedCarrDel.TabIndex = 2;
			this.simpleButton_MedReg_MedCarrDel.Text = "< 删除";
			this.simpleButton_MedReg_MedCarrDel.Click += new System.EventHandler(this.simpleButton_MedReg_MedCarrDel_Click);
			// 
			// simpleButton_MedReg_MedCarrAdd
			// 
			this.simpleButton_MedReg_MedCarrAdd.Enabled = false;
			this.simpleButton_MedReg_MedCarrAdd.Location = new System.Drawing.Point(192, 48);
			this.simpleButton_MedReg_MedCarrAdd.Name = "simpleButton_MedReg_MedCarrAdd";
			this.simpleButton_MedReg_MedCarrAdd.Size = new System.Drawing.Size(64, 24);
			this.simpleButton_MedReg_MedCarrAdd.TabIndex = 1;
			this.simpleButton_MedReg_MedCarrAdd.Text = "添加 >";
			this.simpleButton_MedReg_MedCarrAdd.Click += new System.EventHandler(this.simpleButton_MedReg_MedCarrAdd_Click);
			// 
			// listBoxControl_MedReg_MedInfo
			// 
			this.listBoxControl_MedReg_MedInfo.ItemHeight = 16;
			this.listBoxControl_MedReg_MedInfo.Location = new System.Drawing.Point(24, 24);
			this.listBoxControl_MedReg_MedInfo.Name = "listBoxControl_MedReg_MedInfo";
			this.barManager1.SetPopupContextMenu(this.listBoxControl_MedReg_MedInfo, this.popupMenu2);
			this.listBoxControl_MedReg_MedInfo.Size = new System.Drawing.Size(152, 112);
			this.listBoxControl_MedReg_MedInfo.TabIndex = 0;
			this.listBoxControl_MedReg_MedInfo.Click += new System.EventHandler(this.listBoxControl_MedReg_MedInfo_Click);
			this.listBoxControl_MedReg_MedInfo.DoubleClick += new System.EventHandler(this.listBoxControl_MedReg_MedInfo_DoubleClick);
			this.listBoxControl_MedReg_MedInfo.SelectedValueChanged += new System.EventHandler(this.listBoxControl_MedReg_MedInfo_SelectedValueChanged);
			// 
			// groupControl_MedReg_DiagInfo
			// 
			this.groupControl_MedReg_DiagInfo.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.groupControl_MedReg_DiagInfo.AppearanceCaption.Options.UseFont = true;
			this.groupControl_MedReg_DiagInfo.Controls.Add(this.textEdit_MedReg_Else);
			this.groupControl_MedReg_DiagInfo.Controls.Add(this.textEdit_MedReg_FacialSym);
			this.groupControl_MedReg_DiagInfo.Controls.Add(this.notePanel_MedReg_Else);
			this.groupControl_MedReg_DiagInfo.Controls.Add(this.notePanel_MedReg_FacialSym);
			this.groupControl_MedReg_DiagInfo.Controls.Add(this.notePanel_MedReg_SkinSym);
			this.groupControl_MedReg_DiagInfo.Controls.Add(this.notePanel_MedReg_AbdomenSym);
			this.groupControl_MedReg_DiagInfo.Controls.Add(this.notePanel_MedReg_EnteronSym);
			this.groupControl_MedReg_DiagInfo.Controls.Add(this.textEdit_MedReg_SkinSym);
			this.groupControl_MedReg_DiagInfo.Controls.Add(this.textEdit_MedReg_AbdomenSym);
			this.groupControl_MedReg_DiagInfo.Controls.Add(this.textEdit_MedReg_EnteronSym);
			this.groupControl_MedReg_DiagInfo.Controls.Add(this.textEdit_MedReg_ThroatSym);
			this.groupControl_MedReg_DiagInfo.Controls.Add(this.notePanel__MedReg_ThroatSym);
			this.groupControl_MedReg_DiagInfo.Controls.Add(this.textEdit_MedReg_LungSym);
			this.groupControl_MedReg_DiagInfo.Controls.Add(this.notePanel_MedReg_LungSym);
			this.groupControl_MedReg_DiagInfo.Controls.Add(this.textEdit_MedReg_UpperSym);
			this.groupControl_MedReg_DiagInfo.Controls.Add(this.notePanel_MedReg_UpperSym);
			this.groupControl_MedReg_DiagInfo.Controls.Add(this.comboBoxEdit_MedReg_Diag);
			this.groupControl_MedReg_DiagInfo.Controls.Add(this.notePanel_MedReg_Diag);
			this.groupControl_MedReg_DiagInfo.Dock = System.Windows.Forms.DockStyle.Top;
			this.groupControl_MedReg_DiagInfo.Location = new System.Drawing.Point(0, 48);
			this.groupControl_MedReg_DiagInfo.Name = "groupControl_MedReg_DiagInfo";
			this.groupControl_MedReg_DiagInfo.Size = new System.Drawing.Size(469, 320);
			this.groupControl_MedReg_DiagInfo.TabIndex = 1;
			this.groupControl_MedReg_DiagInfo.Text = "诊断信息";
			// 
			// textEdit_MedReg_Else
			// 
			this.textEdit_MedReg_Else.EditValue = "";
			this.textEdit_MedReg_Else.Location = new System.Drawing.Point(144, 280);
			this.textEdit_MedReg_Else.Name = "textEdit_MedReg_Else";
			this.textEdit_MedReg_Else.Size = new System.Drawing.Size(256, 23);
			this.textEdit_MedReg_Else.TabIndex = 70;
			// 
			// textEdit_MedReg_FacialSym
			// 
			this.textEdit_MedReg_FacialSym.EditValue = "";
			this.textEdit_MedReg_FacialSym.Location = new System.Drawing.Point(144, 248);
			this.textEdit_MedReg_FacialSym.Name = "textEdit_MedReg_FacialSym";
			this.textEdit_MedReg_FacialSym.Size = new System.Drawing.Size(256, 23);
			this.textEdit_MedReg_FacialSym.TabIndex = 69;
			// 
			// notePanel_MedReg_Else
			// 
			this.notePanel_MedReg_Else.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_MedReg_Else.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_MedReg_Else.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_MedReg_Else.ForeColor = System.Drawing.Color.Black;
			this.notePanel_MedReg_Else.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_MedReg_Else.Location = new System.Drawing.Point(24, 280);
			this.notePanel_MedReg_Else.MaxRows = 5;
			this.notePanel_MedReg_Else.Name = "notePanel_MedReg_Else";
			this.notePanel_MedReg_Else.ParentAutoHeight = true;
			this.notePanel_MedReg_Else.Size = new System.Drawing.Size(96, 22);
			this.notePanel_MedReg_Else.TabIndex = 68;
			this.notePanel_MedReg_Else.TabStop = false;
			this.notePanel_MedReg_Else.Text = "  其他症状:";
			// 
			// notePanel_MedReg_FacialSym
			// 
			this.notePanel_MedReg_FacialSym.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_MedReg_FacialSym.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_MedReg_FacialSym.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_MedReg_FacialSym.ForeColor = System.Drawing.Color.Black;
			this.notePanel_MedReg_FacialSym.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_MedReg_FacialSym.Location = new System.Drawing.Point(24, 248);
			this.notePanel_MedReg_FacialSym.MaxRows = 5;
			this.notePanel_MedReg_FacialSym.Name = "notePanel_MedReg_FacialSym";
			this.notePanel_MedReg_FacialSym.ParentAutoHeight = true;
			this.notePanel_MedReg_FacialSym.Size = new System.Drawing.Size(96, 22);
			this.notePanel_MedReg_FacialSym.TabIndex = 67;
			this.notePanel_MedReg_FacialSym.TabStop = false;
			this.notePanel_MedReg_FacialSym.Text = "  五官症状:";
			// 
			// notePanel_MedReg_SkinSym
			// 
			this.notePanel_MedReg_SkinSym.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_MedReg_SkinSym.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_MedReg_SkinSym.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_MedReg_SkinSym.ForeColor = System.Drawing.Color.Black;
			this.notePanel_MedReg_SkinSym.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_MedReg_SkinSym.Location = new System.Drawing.Point(24, 216);
			this.notePanel_MedReg_SkinSym.MaxRows = 5;
			this.notePanel_MedReg_SkinSym.Name = "notePanel_MedReg_SkinSym";
			this.notePanel_MedReg_SkinSym.ParentAutoHeight = true;
			this.notePanel_MedReg_SkinSym.Size = new System.Drawing.Size(96, 22);
			this.notePanel_MedReg_SkinSym.TabIndex = 66;
			this.notePanel_MedReg_SkinSym.TabStop = false;
			this.notePanel_MedReg_SkinSym.Text = "  皮肤症状:";
			// 
			// notePanel_MedReg_AbdomenSym
			// 
			this.notePanel_MedReg_AbdomenSym.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_MedReg_AbdomenSym.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_MedReg_AbdomenSym.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_MedReg_AbdomenSym.ForeColor = System.Drawing.Color.Black;
			this.notePanel_MedReg_AbdomenSym.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_MedReg_AbdomenSym.Location = new System.Drawing.Point(24, 184);
			this.notePanel_MedReg_AbdomenSym.MaxRows = 5;
			this.notePanel_MedReg_AbdomenSym.Name = "notePanel_MedReg_AbdomenSym";
			this.notePanel_MedReg_AbdomenSym.ParentAutoHeight = true;
			this.notePanel_MedReg_AbdomenSym.Size = new System.Drawing.Size(96, 22);
			this.notePanel_MedReg_AbdomenSym.TabIndex = 65;
			this.notePanel_MedReg_AbdomenSym.TabStop = false;
			this.notePanel_MedReg_AbdomenSym.Text = "  腹部症状:";
			// 
			// notePanel_MedReg_EnteronSym
			// 
			this.notePanel_MedReg_EnteronSym.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_MedReg_EnteronSym.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_MedReg_EnteronSym.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_MedReg_EnteronSym.ForeColor = System.Drawing.Color.Black;
			this.notePanel_MedReg_EnteronSym.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_MedReg_EnteronSym.Location = new System.Drawing.Point(24, 152);
			this.notePanel_MedReg_EnteronSym.MaxRows = 5;
			this.notePanel_MedReg_EnteronSym.Name = "notePanel_MedReg_EnteronSym";
			this.notePanel_MedReg_EnteronSym.ParentAutoHeight = true;
			this.notePanel_MedReg_EnteronSym.Size = new System.Drawing.Size(96, 22);
			this.notePanel_MedReg_EnteronSym.TabIndex = 64;
			this.notePanel_MedReg_EnteronSym.TabStop = false;
			this.notePanel_MedReg_EnteronSym.Text = "消化道症状:";
			// 
			// textEdit_MedReg_SkinSym
			// 
			this.textEdit_MedReg_SkinSym.EditValue = "";
			this.textEdit_MedReg_SkinSym.Location = new System.Drawing.Point(144, 216);
			this.textEdit_MedReg_SkinSym.Name = "textEdit_MedReg_SkinSym";
			this.textEdit_MedReg_SkinSym.Size = new System.Drawing.Size(256, 23);
			this.textEdit_MedReg_SkinSym.TabIndex = 63;
			// 
			// textEdit_MedReg_AbdomenSym
			// 
			this.textEdit_MedReg_AbdomenSym.EditValue = "";
			this.textEdit_MedReg_AbdomenSym.Location = new System.Drawing.Point(144, 184);
			this.textEdit_MedReg_AbdomenSym.Name = "textEdit_MedReg_AbdomenSym";
			this.textEdit_MedReg_AbdomenSym.Size = new System.Drawing.Size(256, 23);
			this.textEdit_MedReg_AbdomenSym.TabIndex = 62;
			// 
			// textEdit_MedReg_EnteronSym
			// 
			this.textEdit_MedReg_EnteronSym.EditValue = "";
			this.textEdit_MedReg_EnteronSym.Location = new System.Drawing.Point(144, 152);
			this.textEdit_MedReg_EnteronSym.Name = "textEdit_MedReg_EnteronSym";
			this.textEdit_MedReg_EnteronSym.Size = new System.Drawing.Size(256, 23);
			this.textEdit_MedReg_EnteronSym.TabIndex = 61;
			// 
			// textEdit_MedReg_ThroatSym
			// 
			this.textEdit_MedReg_ThroatSym.EditValue = "";
			this.textEdit_MedReg_ThroatSym.Location = new System.Drawing.Point(144, 120);
			this.textEdit_MedReg_ThroatSym.Name = "textEdit_MedReg_ThroatSym";
			this.textEdit_MedReg_ThroatSym.Size = new System.Drawing.Size(256, 23);
			this.textEdit_MedReg_ThroatSym.TabIndex = 60;
			// 
			// notePanel__MedReg_ThroatSym
			// 
			this.notePanel__MedReg_ThroatSym.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel__MedReg_ThroatSym.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel__MedReg_ThroatSym.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel__MedReg_ThroatSym.ForeColor = System.Drawing.Color.Black;
			this.notePanel__MedReg_ThroatSym.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel__MedReg_ThroatSym.Location = new System.Drawing.Point(24, 120);
			this.notePanel__MedReg_ThroatSym.MaxRows = 5;
			this.notePanel__MedReg_ThroatSym.Name = "notePanel__MedReg_ThroatSym";
			this.notePanel__MedReg_ThroatSym.ParentAutoHeight = true;
			this.notePanel__MedReg_ThroatSym.Size = new System.Drawing.Size(96, 22);
			this.notePanel__MedReg_ThroatSym.TabIndex = 59;
			this.notePanel__MedReg_ThroatSym.TabStop = false;
			this.notePanel__MedReg_ThroatSym.Text = "咽喉部症状:";
			// 
			// textEdit_MedReg_LungSym
			// 
			this.textEdit_MedReg_LungSym.EditValue = "";
			this.textEdit_MedReg_LungSym.Location = new System.Drawing.Point(144, 88);
			this.textEdit_MedReg_LungSym.Name = "textEdit_MedReg_LungSym";
			this.textEdit_MedReg_LungSym.Size = new System.Drawing.Size(256, 23);
			this.textEdit_MedReg_LungSym.TabIndex = 58;
			// 
			// notePanel_MedReg_LungSym
			// 
			this.notePanel_MedReg_LungSym.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_MedReg_LungSym.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_MedReg_LungSym.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_MedReg_LungSym.ForeColor = System.Drawing.Color.Black;
			this.notePanel_MedReg_LungSym.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_MedReg_LungSym.Location = new System.Drawing.Point(24, 88);
			this.notePanel_MedReg_LungSym.MaxRows = 5;
			this.notePanel_MedReg_LungSym.Name = "notePanel_MedReg_LungSym";
			this.notePanel_MedReg_LungSym.ParentAutoHeight = true;
			this.notePanel_MedReg_LungSym.Size = new System.Drawing.Size(96, 22);
			this.notePanel_MedReg_LungSym.TabIndex = 57;
			this.notePanel_MedReg_LungSym.TabStop = false;
			this.notePanel_MedReg_LungSym.Text = "  肺部症状:";
			// 
			// textEdit_MedReg_UpperSym
			// 
			this.textEdit_MedReg_UpperSym.EditValue = "";
			this.textEdit_MedReg_UpperSym.Location = new System.Drawing.Point(144, 56);
			this.textEdit_MedReg_UpperSym.Name = "textEdit_MedReg_UpperSym";
			this.textEdit_MedReg_UpperSym.Size = new System.Drawing.Size(256, 23);
			this.textEdit_MedReg_UpperSym.TabIndex = 56;
			// 
			// notePanel_MedReg_UpperSym
			// 
			this.notePanel_MedReg_UpperSym.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_MedReg_UpperSym.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_MedReg_UpperSym.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_MedReg_UpperSym.ForeColor = System.Drawing.Color.Black;
			this.notePanel_MedReg_UpperSym.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_MedReg_UpperSym.Location = new System.Drawing.Point(24, 56);
			this.notePanel_MedReg_UpperSym.MaxRows = 5;
			this.notePanel_MedReg_UpperSym.Name = "notePanel_MedReg_UpperSym";
			this.notePanel_MedReg_UpperSym.ParentAutoHeight = true;
			this.notePanel_MedReg_UpperSym.Size = new System.Drawing.Size(96, 22);
			this.notePanel_MedReg_UpperSym.TabIndex = 54;
			this.notePanel_MedReg_UpperSym.TabStop = false;
			this.notePanel_MedReg_UpperSym.Text = "  上感症状:";
			// 
			// comboBoxEdit_MedReg_Diag
			// 
			this.comboBoxEdit_MedReg_Diag.EditValue = "";
			this.comboBoxEdit_MedReg_Diag.Location = new System.Drawing.Point(144, 24);
			this.comboBoxEdit_MedReg_Diag.Name = "comboBoxEdit_MedReg_Diag";
			// 
			// comboBoxEdit_MedReg_Diag.Properties
			// 
			this.comboBoxEdit_MedReg_Diag.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																															 new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.comboBoxEdit_MedReg_Diag.Properties.Items.AddRange(new object[] {
																					 "上感",
																					 "预防",
																					 "保健",
																					 "肺炎",
																					 "气管炎",
																					 "胃炎",
																					 "消化不良",
																					 "皮疹",
																					 "荨麻疹",
																					 "口腔溃疡",
																					 "口角炎",
																					 "浓疱疹",
																					 "腹痛",
																					 "腹泻",
																					 "中耳炎",
																					 "牙龈炎",
																					 "牙痛",
																					 "鼻出血",
																					 "外伤"});
			this.comboBoxEdit_MedReg_Diag.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
			this.comboBoxEdit_MedReg_Diag.Size = new System.Drawing.Size(104, 23);
			this.comboBoxEdit_MedReg_Diag.TabIndex = 53;
			// 
			// notePanel_MedReg_Diag
			// 
			this.notePanel_MedReg_Diag.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_MedReg_Diag.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_MedReg_Diag.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_MedReg_Diag.ForeColor = System.Drawing.Color.Black;
			this.notePanel_MedReg_Diag.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_MedReg_Diag.Location = new System.Drawing.Point(24, 24);
			this.notePanel_MedReg_Diag.MaxRows = 5;
			this.notePanel_MedReg_Diag.Name = "notePanel_MedReg_Diag";
			this.notePanel_MedReg_Diag.ParentAutoHeight = true;
			this.notePanel_MedReg_Diag.Size = new System.Drawing.Size(96, 22);
			this.notePanel_MedReg_Diag.TabIndex = 52;
			this.notePanel_MedReg_Diag.TabStop = false;
			this.notePanel_MedReg_Diag.Text = "  症状诊断:";
			// 
			// panelControl8
			// 
			this.panelControl8.Controls.Add(this.simpleButton_MedReg_Ser);
			this.panelControl8.Controls.Add(this.simpleButton_MedReg_Modify);
			this.panelControl8.Controls.Add(this.simpleButton_MedReg_Reg);
			this.panelControl8.Controls.Add(this.simpleButton_MedReg_Save);
			this.panelControl8.Controls.Add(this.simpleButton_MedReg_Back);
			this.panelControl8.Dock = System.Windows.Forms.DockStyle.Top;
			this.panelControl8.Location = new System.Drawing.Point(0, 0);
			this.panelControl8.Name = "panelControl8";
			this.panelControl8.Size = new System.Drawing.Size(469, 48);
			this.panelControl8.TabIndex = 0;
			this.panelControl8.Text = "panelControl8";
			// 
			// simpleButton_MedReg_Ser
			// 
			this.simpleButton_MedReg_Ser.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.simpleButton_MedReg_Ser.Appearance.ForeColor = System.Drawing.Color.DarkMagenta;
			this.simpleButton_MedReg_Ser.Appearance.Options.UseFont = true;
			this.simpleButton_MedReg_Ser.Appearance.Options.UseForeColor = true;
			this.simpleButton_MedReg_Ser.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton_MedReg_Ser.Image")));
			this.simpleButton_MedReg_Ser.Location = new System.Drawing.Point(8, 8);
			this.simpleButton_MedReg_Ser.Name = "simpleButton_MedReg_Ser";
			this.simpleButton_MedReg_Ser.Size = new System.Drawing.Size(80, 26);
			this.simpleButton_MedReg_Ser.TabIndex = 23;
			this.simpleButton_MedReg_Ser.Tag = 4;
			this.simpleButton_MedReg_Ser.Text = "检  索";
			this.simpleButton_MedReg_Ser.Click += new System.EventHandler(this.simpleButton_MedReg_Ser_Click);
			// 
			// simpleButton_MedReg_Modify
			// 
			this.simpleButton_MedReg_Modify.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.simpleButton_MedReg_Modify.Appearance.ForeColor = System.Drawing.Color.DarkMagenta;
			this.simpleButton_MedReg_Modify.Appearance.Options.UseFont = true;
			this.simpleButton_MedReg_Modify.Appearance.Options.UseForeColor = true;
			this.simpleButton_MedReg_Modify.Enabled = false;
			this.simpleButton_MedReg_Modify.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton_MedReg_Modify.Image")));
			this.simpleButton_MedReg_Modify.Location = new System.Drawing.Point(392, 8);
			this.simpleButton_MedReg_Modify.Name = "simpleButton_MedReg_Modify";
			this.simpleButton_MedReg_Modify.Size = new System.Drawing.Size(96, 26);
			this.simpleButton_MedReg_Modify.TabIndex = 22;
			this.simpleButton_MedReg_Modify.Tag = 4;
			this.simpleButton_MedReg_Modify.Text = "药品修改";
			this.simpleButton_MedReg_Modify.Click += new System.EventHandler(this.simpleButton_MedReg_Modify_Click);
			// 
			// simpleButton_MedReg_Reg
			// 
			this.simpleButton_MedReg_Reg.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.simpleButton_MedReg_Reg.Appearance.ForeColor = System.Drawing.Color.DarkMagenta;
			this.simpleButton_MedReg_Reg.Appearance.Options.UseFont = true;
			this.simpleButton_MedReg_Reg.Appearance.Options.UseForeColor = true;
			this.simpleButton_MedReg_Reg.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton_MedReg_Reg.Image")));
			this.simpleButton_MedReg_Reg.Location = new System.Drawing.Point(184, 8);
			this.simpleButton_MedReg_Reg.Name = "simpleButton_MedReg_Reg";
			this.simpleButton_MedReg_Reg.Size = new System.Drawing.Size(96, 26);
			this.simpleButton_MedReg_Reg.TabIndex = 20;
			this.simpleButton_MedReg_Reg.Tag = 4;
			this.simpleButton_MedReg_Reg.Text = "诊断登记";
			this.simpleButton_MedReg_Reg.Click += new System.EventHandler(this.simpleButton_MedReg_Reg_Click);
			// 
			// simpleButton_MedReg_Save
			// 
			this.simpleButton_MedReg_Save.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.simpleButton_MedReg_Save.Appearance.ForeColor = System.Drawing.Color.DarkMagenta;
			this.simpleButton_MedReg_Save.Appearance.Options.UseFont = true;
			this.simpleButton_MedReg_Save.Appearance.Options.UseForeColor = true;
			this.simpleButton_MedReg_Save.Enabled = false;
			this.simpleButton_MedReg_Save.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton_MedReg_Save.Image")));
			this.simpleButton_MedReg_Save.Location = new System.Drawing.Point(288, 8);
			this.simpleButton_MedReg_Save.Name = "simpleButton_MedReg_Save";
			this.simpleButton_MedReg_Save.Size = new System.Drawing.Size(96, 26);
			this.simpleButton_MedReg_Save.TabIndex = 20;
			this.simpleButton_MedReg_Save.Tag = 4;
			this.simpleButton_MedReg_Save.Text = "药品保存";
			this.simpleButton_MedReg_Save.Click += new System.EventHandler(this.simpleButton_MedReg_Save_Click);
			// 
			// simpleButton_MedReg_Back
			// 
			this.simpleButton_MedReg_Back.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.simpleButton_MedReg_Back.Appearance.ForeColor = System.Drawing.Color.DarkMagenta;
			this.simpleButton_MedReg_Back.Appearance.Options.UseFont = true;
			this.simpleButton_MedReg_Back.Appearance.Options.UseForeColor = true;
			this.simpleButton_MedReg_Back.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton_MedReg_Back.Image")));
			this.simpleButton_MedReg_Back.Location = new System.Drawing.Point(96, 8);
			this.simpleButton_MedReg_Back.Name = "simpleButton_MedReg_Back";
			this.simpleButton_MedReg_Back.Size = new System.Drawing.Size(80, 26);
			this.simpleButton_MedReg_Back.TabIndex = 21;
			this.simpleButton_MedReg_Back.Tag = 4;
			this.simpleButton_MedReg_Back.Text = "返  回";
			this.simpleButton_MedReg_Back.Click += new System.EventHandler(this.simpleButton_MedReg_Back_Click);
			// 
			// xtraTabPage9
			// 
			this.xtraTabPage9.Appearance.PageClient.BackColor = System.Drawing.Color.WhiteSmoke;
			this.xtraTabPage9.Appearance.PageClient.Options.UseBackColor = true;
			this.xtraTabPage9.Controls.Add(this.splitContainerControl10);
			this.xtraTabPage9.Name = "xtraTabPage9";
			this.xtraTabPage9.PageVisible = false;
			this.xtraTabPage9.Size = new System.Drawing.Size(768, 515);
			this.xtraTabPage9.Text = "服药记录";
			// 
			// splitContainerControl10
			// 
			this.splitContainerControl10.Dock = System.Windows.Forms.DockStyle.Fill;
			this.splitContainerControl10.Location = new System.Drawing.Point(0, 0);
			this.splitContainerControl10.Name = "splitContainerControl10";
			this.splitContainerControl10.Panel1.Controls.Add(this.groupControl_MedRec_AbnStuList);
			this.splitContainerControl10.Panel1.Controls.Add(this.groupControl_MedRec_Ser);
			this.splitContainerControl10.Panel1.Text = "splitContainerControl10_Panel1";
			this.splitContainerControl10.Panel2.Controls.Add(this.groupControl_MedRec_DiagAndDoseAdd);
			this.splitContainerControl10.Panel2.Controls.Add(this.groupControl_MedRec_DoseRec);
			this.splitContainerControl10.Panel2.Controls.Add(this.panelControl9);
			this.splitContainerControl10.Panel2.Text = "splitContainerControl10_Panel2";
			this.splitContainerControl10.Size = new System.Drawing.Size(768, 515);
			this.splitContainerControl10.SplitterPosition = 281;
			this.splitContainerControl10.TabIndex = 0;
			this.splitContainerControl10.Text = "splitContainerControl10";
			// 
			// groupControl_MedRec_AbnStuList
			// 
			this.groupControl_MedRec_AbnStuList.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.groupControl_MedRec_AbnStuList.AppearanceCaption.Options.UseFont = true;
			this.groupControl_MedRec_AbnStuList.Controls.Add(this.gridControl_MedRec_AbnStuList);
			this.groupControl_MedRec_AbnStuList.Controls.Add(this.notePanel_MedRec_AbnStuList);
			this.groupControl_MedRec_AbnStuList.Dock = System.Windows.Forms.DockStyle.Fill;
			this.groupControl_MedRec_AbnStuList.Location = new System.Drawing.Point(0, 256);
			this.groupControl_MedRec_AbnStuList.Name = "groupControl_MedRec_AbnStuList";
			this.groupControl_MedRec_AbnStuList.Size = new System.Drawing.Size(275, 253);
			this.groupControl_MedRec_AbnStuList.TabIndex = 3;
			this.groupControl_MedRec_AbnStuList.Text = "晨检异常幼儿列表";
			// 
			// gridControl_MedRec_AbnStuList
			// 
			this.gridControl_MedRec_AbnStuList.Dock = System.Windows.Forms.DockStyle.Fill;
			// 
			// gridControl_MedRec_AbnStuList.EmbeddedNavigator
			// 
			this.gridControl_MedRec_AbnStuList.EmbeddedNavigator.Name = "";
			this.gridControl_MedRec_AbnStuList.Location = new System.Drawing.Point(3, 41);
			this.gridControl_MedRec_AbnStuList.MainView = this.gridView10;
			this.gridControl_MedRec_AbnStuList.Name = "gridControl_MedRec_AbnStuList";
			this.gridControl_MedRec_AbnStuList.Size = new System.Drawing.Size(269, 209);
			this.gridControl_MedRec_AbnStuList.TabIndex = 59;
			this.gridControl_MedRec_AbnStuList.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
																														 this.gridView10});
			this.gridControl_MedRec_AbnStuList.DoubleClick += new System.EventHandler(this.gridControl_MedRec_AbnStuList_DoubleClick);
			// 
			// gridView10
			// 
			this.gridView10.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
																							  this.gridColumn39,
																							  this.gridColumn40,
																							  this.gridColumn41,
																							  this.gridColumn42,
																							  this.gridColumn43});
			this.gridView10.GridControl = this.gridControl_MedRec_AbnStuList;
			this.gridView10.Name = "gridView10";
			this.gridView10.OptionsCustomization.AllowFilter = false;
			this.gridView10.OptionsView.ShowFilterPanel = false;
			this.gridView10.OptionsView.ShowGroupPanel = false;
			// 
			// gridColumn39
			// 
			this.gridColumn39.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn39.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn39.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn39.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn39.Caption = "学号";
			this.gridColumn39.FieldName = "info_stuNumber";
			this.gridColumn39.Name = "gridColumn39";
			this.gridColumn39.OptionsColumn.AllowEdit = false;
			this.gridColumn39.OptionsColumn.AllowFocus = false;
			this.gridColumn39.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn39.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn39.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn39.OptionsColumn.AllowMove = false;
			this.gridColumn39.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn39.OptionsColumn.ReadOnly = true;
			this.gridColumn39.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn39.Visible = true;
			this.gridColumn39.VisibleIndex = 0;
			this.gridColumn39.Width = 48;
			// 
			// gridColumn40
			// 
			this.gridColumn40.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn40.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn40.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn40.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn40.Caption = "姓名";
			this.gridColumn40.FieldName = "info_stuName";
			this.gridColumn40.Name = "gridColumn40";
			this.gridColumn40.OptionsColumn.AllowEdit = false;
			this.gridColumn40.OptionsColumn.AllowFocus = false;
			this.gridColumn40.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn40.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn40.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn40.OptionsColumn.AllowMove = false;
			this.gridColumn40.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn40.OptionsColumn.ReadOnly = true;
			this.gridColumn40.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn40.Visible = true;
			this.gridColumn40.VisibleIndex = 1;
			this.gridColumn40.Width = 47;
			// 
			// gridColumn41
			// 
			this.gridColumn41.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn41.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn41.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn41.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn41.Caption = "班级";
			this.gridColumn41.FieldName = "info_className";
			this.gridColumn41.Name = "gridColumn41";
			this.gridColumn41.OptionsColumn.AllowEdit = false;
			this.gridColumn41.OptionsColumn.AllowFocus = false;
			this.gridColumn41.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn41.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn41.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn41.OptionsColumn.AllowMove = false;
			this.gridColumn41.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn41.OptionsColumn.ReadOnly = true;
			this.gridColumn41.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn41.Visible = true;
			this.gridColumn41.VisibleIndex = 2;
			this.gridColumn41.Width = 49;
			// 
			// gridColumn42
			// 
			this.gridColumn42.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn42.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn42.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn42.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn42.Caption = "登记日期";
			this.gridColumn42.DisplayFormat.FormatString = "yyyy-MM-dd HH:mm:ss";
			this.gridColumn42.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
			this.gridColumn42.FieldName = "register_Time";
			this.gridColumn42.Name = "gridColumn42";
			this.gridColumn42.OptionsColumn.AllowEdit = false;
			this.gridColumn42.OptionsColumn.AllowFocus = false;
			this.gridColumn42.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn42.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn42.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn42.OptionsColumn.AllowMove = false;
			this.gridColumn42.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn42.OptionsColumn.ReadOnly = true;
			this.gridColumn42.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn42.Visible = true;
			this.gridColumn42.VisibleIndex = 3;
			this.gridColumn42.Width = 57;
			// 
			// gridColumn43
			// 
			this.gridColumn43.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn43.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn43.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn43.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn43.Caption = "登记教师";
			this.gridColumn43.FieldName = "teacher_Sign";
			this.gridColumn43.Name = "gridColumn43";
			this.gridColumn43.OptionsColumn.AllowEdit = false;
			this.gridColumn43.OptionsColumn.AllowFocus = false;
			this.gridColumn43.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn43.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn43.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn43.OptionsColumn.AllowMove = false;
			this.gridColumn43.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn43.OptionsColumn.ReadOnly = true;
			this.gridColumn43.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn43.Visible = true;
			this.gridColumn43.VisibleIndex = 4;
			this.gridColumn43.Width = 63;
			// 
			// notePanel_MedRec_AbnStuList
			// 
			this.notePanel_MedRec_AbnStuList.BackColor = System.Drawing.Color.LightGoldenrodYellow;
			this.notePanel_MedRec_AbnStuList.Dock = System.Windows.Forms.DockStyle.Top;
			this.notePanel_MedRec_AbnStuList.ForeColor = System.Drawing.Color.OrangeRed;
			this.notePanel_MedRec_AbnStuList.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_MedRec_AbnStuList.Location = new System.Drawing.Point(3, 18);
			this.notePanel_MedRec_AbnStuList.MaxRows = 5;
			this.notePanel_MedRec_AbnStuList.Name = "notePanel_MedRec_AbnStuList";
			this.notePanel_MedRec_AbnStuList.ParentAutoHeight = true;
			this.notePanel_MedRec_AbnStuList.Size = new System.Drawing.Size(269, 23);
			this.notePanel_MedRec_AbnStuList.TabIndex = 58;
			this.notePanel_MedRec_AbnStuList.TabStop = false;
			this.notePanel_MedRec_AbnStuList.Text = "双击显示特定幼儿";
			// 
			// groupControl_MedRec_Ser
			// 
			this.groupControl_MedRec_Ser.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.groupControl_MedRec_Ser.AppearanceCaption.Options.UseFont = true;
			this.groupControl_MedRec_Ser.Controls.Add(this.textEdit_MedRec_Number);
			this.groupControl_MedRec_Ser.Controls.Add(this.textEdit_MedRec_Name);
			this.groupControl_MedRec_Ser.Controls.Add(this.dateEdit_MedRec_EndDate);
			this.groupControl_MedRec_Ser.Controls.Add(this.notePanel_MedRec_EndDate);
			this.groupControl_MedRec_Ser.Controls.Add(this.dateEdit_MedRec_BegDate);
			this.groupControl_MedRec_Ser.Controls.Add(this.notePanel_MedRec_BegDate);
			this.groupControl_MedRec_Ser.Controls.Add(this.notePanel_MedRec_Ser);
			this.groupControl_MedRec_Ser.Controls.Add(this.textEdit_MedRec_DoseRecDiaID);
			this.groupControl_MedRec_Ser.Controls.Add(this.textEdit_MedRec_AbnDiaID);
			this.groupControl_MedRec_Ser.Controls.Add(this.comboBoxEdit_MedRec_Class);
			this.groupControl_MedRec_Ser.Controls.Add(this.notePanel_MedRec_Class);
			this.groupControl_MedRec_Ser.Controls.Add(this.comboBoxEdit_MedRec_Grade);
			this.groupControl_MedRec_Ser.Controls.Add(this.notePanel_MedRec_Grade);
			this.groupControl_MedRec_Ser.Controls.Add(this.notePanel_MedRec_Number);
			this.groupControl_MedRec_Ser.Controls.Add(this.notePanel_MedRec_Name);
			this.groupControl_MedRec_Ser.Dock = System.Windows.Forms.DockStyle.Top;
			this.groupControl_MedRec_Ser.Location = new System.Drawing.Point(0, 0);
			this.groupControl_MedRec_Ser.Name = "groupControl_MedRec_Ser";
			this.groupControl_MedRec_Ser.Size = new System.Drawing.Size(275, 256);
			this.groupControl_MedRec_Ser.TabIndex = 2;
			this.groupControl_MedRec_Ser.Text = "晨检异常幼儿查询";
			// 
			// textEdit_MedRec_Number
			// 
			this.textEdit_MedRec_Number.EditValue = "";
			this.textEdit_MedRec_Number.Location = new System.Drawing.Point(144, 152);
			this.textEdit_MedRec_Number.Name = "textEdit_MedRec_Number";
			this.textEdit_MedRec_Number.Size = new System.Drawing.Size(88, 23);
			this.textEdit_MedRec_Number.TabIndex = 63;
			this.textEdit_MedRec_Number.EditValueChanged += new System.EventHandler(this.textEdit_MedRec_Number_EditValueChanged);
			// 
			// textEdit_MedRec_Name
			// 
			this.textEdit_MedRec_Name.EditValue = "";
			this.textEdit_MedRec_Name.Location = new System.Drawing.Point(144, 120);
			this.textEdit_MedRec_Name.Name = "textEdit_MedRec_Name";
			this.textEdit_MedRec_Name.Size = new System.Drawing.Size(88, 23);
			this.textEdit_MedRec_Name.TabIndex = 62;
			this.textEdit_MedRec_Name.EditValueChanged += new System.EventHandler(this.textEdit_MedRec_Name_EditValueChanged);
			// 
			// dateEdit_MedRec_EndDate
			// 
			this.dateEdit_MedRec_EndDate.EditValue = new System.DateTime(2005, 1, 24, 0, 0, 0, 0);
			this.dateEdit_MedRec_EndDate.Location = new System.Drawing.Point(144, 216);
			this.dateEdit_MedRec_EndDate.Name = "dateEdit_MedRec_EndDate";
			// 
			// dateEdit_MedRec_EndDate.Properties
			// 
			this.dateEdit_MedRec_EndDate.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																															new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.dateEdit_MedRec_EndDate.Properties.Mask.EditMask = "d";
			this.dateEdit_MedRec_EndDate.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.DateTime;
			this.dateEdit_MedRec_EndDate.Size = new System.Drawing.Size(88, 23);
			this.dateEdit_MedRec_EndDate.TabIndex = 61;
			// 
			// notePanel_MedRec_EndDate
			// 
			this.notePanel_MedRec_EndDate.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_MedRec_EndDate.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_MedRec_EndDate.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_MedRec_EndDate.ForeColor = System.Drawing.Color.Black;
			this.notePanel_MedRec_EndDate.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_MedRec_EndDate.Location = new System.Drawing.Point(40, 216);
			this.notePanel_MedRec_EndDate.MaxRows = 5;
			this.notePanel_MedRec_EndDate.Name = "notePanel_MedRec_EndDate";
			this.notePanel_MedRec_EndDate.ParentAutoHeight = true;
			this.notePanel_MedRec_EndDate.Size = new System.Drawing.Size(80, 22);
			this.notePanel_MedRec_EndDate.TabIndex = 60;
			this.notePanel_MedRec_EndDate.TabStop = false;
			this.notePanel_MedRec_EndDate.Text = "结束日期:";
			// 
			// dateEdit_MedRec_BegDate
			// 
			this.dateEdit_MedRec_BegDate.EditValue = new System.DateTime(2005, 1, 24, 0, 0, 0, 0);
			this.dateEdit_MedRec_BegDate.Location = new System.Drawing.Point(144, 184);
			this.dateEdit_MedRec_BegDate.Name = "dateEdit_MedRec_BegDate";
			// 
			// dateEdit_MedRec_BegDate.Properties
			// 
			this.dateEdit_MedRec_BegDate.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																															new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.dateEdit_MedRec_BegDate.Properties.Mask.EditMask = "d";
			this.dateEdit_MedRec_BegDate.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.DateTime;
			this.dateEdit_MedRec_BegDate.Size = new System.Drawing.Size(88, 23);
			this.dateEdit_MedRec_BegDate.TabIndex = 59;
			// 
			// notePanel_MedRec_BegDate
			// 
			this.notePanel_MedRec_BegDate.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_MedRec_BegDate.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_MedRec_BegDate.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_MedRec_BegDate.ForeColor = System.Drawing.Color.Black;
			this.notePanel_MedRec_BegDate.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_MedRec_BegDate.Location = new System.Drawing.Point(40, 184);
			this.notePanel_MedRec_BegDate.MaxRows = 5;
			this.notePanel_MedRec_BegDate.Name = "notePanel_MedRec_BegDate";
			this.notePanel_MedRec_BegDate.ParentAutoHeight = true;
			this.notePanel_MedRec_BegDate.Size = new System.Drawing.Size(80, 22);
			this.notePanel_MedRec_BegDate.TabIndex = 58;
			this.notePanel_MedRec_BegDate.TabStop = false;
			this.notePanel_MedRec_BegDate.Text = "起始日期:";
			// 
			// notePanel_MedRec_Ser
			// 
			this.notePanel_MedRec_Ser.BackColor = System.Drawing.Color.LightGoldenrodYellow;
			this.notePanel_MedRec_Ser.Dock = System.Windows.Forms.DockStyle.Top;
			this.notePanel_MedRec_Ser.ForeColor = System.Drawing.Color.OrangeRed;
			this.notePanel_MedRec_Ser.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_MedRec_Ser.Location = new System.Drawing.Point(3, 18);
			this.notePanel_MedRec_Ser.MaxRows = 5;
			this.notePanel_MedRec_Ser.Name = "notePanel_MedRec_Ser";
			this.notePanel_MedRec_Ser.ParentAutoHeight = true;
			this.notePanel_MedRec_Ser.Size = new System.Drawing.Size(269, 23);
			this.notePanel_MedRec_Ser.TabIndex = 57;
			this.notePanel_MedRec_Ser.TabStop = false;
			this.notePanel_MedRec_Ser.Text = "检索您的幼儿";
			// 
			// textEdit_MedRec_DoseRecDiaID
			// 
			this.textEdit_MedRec_DoseRecDiaID.EditValue = "";
			this.textEdit_MedRec_DoseRecDiaID.Location = new System.Drawing.Point(192, 160);
			this.textEdit_MedRec_DoseRecDiaID.Name = "textEdit_MedRec_DoseRecDiaID";
			// 
			// textEdit_MedRec_DoseRecDiaID.Properties
			// 
			this.textEdit_MedRec_DoseRecDiaID.Properties.AutoHeight = false;
			this.textEdit_MedRec_DoseRecDiaID.Size = new System.Drawing.Size(8, 8);
			this.textEdit_MedRec_DoseRecDiaID.TabIndex = 56;
			// 
			// textEdit_MedRec_AbnDiaID
			// 
			this.textEdit_MedRec_AbnDiaID.EditValue = "";
			this.textEdit_MedRec_AbnDiaID.Location = new System.Drawing.Point(184, 128);
			this.textEdit_MedRec_AbnDiaID.Name = "textEdit_MedRec_AbnDiaID";
			// 
			// textEdit_MedRec_AbnDiaID.Properties
			// 
			this.textEdit_MedRec_AbnDiaID.Properties.AutoHeight = false;
			this.textEdit_MedRec_AbnDiaID.Size = new System.Drawing.Size(8, 8);
			this.textEdit_MedRec_AbnDiaID.TabIndex = 55;
			// 
			// comboBoxEdit_MedRec_Class
			// 
			this.comboBoxEdit_MedRec_Class.EditValue = "全部";
			this.comboBoxEdit_MedRec_Class.Location = new System.Drawing.Point(144, 88);
			this.comboBoxEdit_MedRec_Class.Name = "comboBoxEdit_MedRec_Class";
			// 
			// comboBoxEdit_MedRec_Class.Properties
			// 
			this.comboBoxEdit_MedRec_Class.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																															  new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.comboBoxEdit_MedRec_Class.Properties.Items.AddRange(new object[] {
																					  "全部"});
			this.comboBoxEdit_MedRec_Class.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
			this.comboBoxEdit_MedRec_Class.Size = new System.Drawing.Size(88, 23);
			this.comboBoxEdit_MedRec_Class.TabIndex = 54;
			this.comboBoxEdit_MedRec_Class.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit_MedRec_Class_SelectedIndexChanged);
			// 
			// notePanel_MedRec_Class
			// 
			this.notePanel_MedRec_Class.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_MedRec_Class.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_MedRec_Class.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_MedRec_Class.ForeColor = System.Drawing.Color.Black;
			this.notePanel_MedRec_Class.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_MedRec_Class.Location = new System.Drawing.Point(40, 88);
			this.notePanel_MedRec_Class.MaxRows = 5;
			this.notePanel_MedRec_Class.Name = "notePanel_MedRec_Class";
			this.notePanel_MedRec_Class.ParentAutoHeight = true;
			this.notePanel_MedRec_Class.Size = new System.Drawing.Size(80, 22);
			this.notePanel_MedRec_Class.TabIndex = 53;
			this.notePanel_MedRec_Class.TabStop = false;
			this.notePanel_MedRec_Class.Text = "  班  级:";
			// 
			// comboBoxEdit_MedRec_Grade
			// 
			this.comboBoxEdit_MedRec_Grade.EditValue = "全部";
			this.comboBoxEdit_MedRec_Grade.Location = new System.Drawing.Point(144, 56);
			this.comboBoxEdit_MedRec_Grade.Name = "comboBoxEdit_MedRec_Grade";
			// 
			// comboBoxEdit_MedRec_Grade.Properties
			// 
			this.comboBoxEdit_MedRec_Grade.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																															  new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.comboBoxEdit_MedRec_Grade.Properties.Items.AddRange(new object[] {
																					  "全部"});
			this.comboBoxEdit_MedRec_Grade.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
			this.comboBoxEdit_MedRec_Grade.Size = new System.Drawing.Size(88, 23);
			this.comboBoxEdit_MedRec_Grade.TabIndex = 52;
			this.comboBoxEdit_MedRec_Grade.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit_MedRec_Grade_SelectedIndexChanged);
			// 
			// notePanel_MedRec_Grade
			// 
			this.notePanel_MedRec_Grade.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_MedRec_Grade.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_MedRec_Grade.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_MedRec_Grade.ForeColor = System.Drawing.Color.Black;
			this.notePanel_MedRec_Grade.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_MedRec_Grade.Location = new System.Drawing.Point(40, 56);
			this.notePanel_MedRec_Grade.MaxRows = 5;
			this.notePanel_MedRec_Grade.Name = "notePanel_MedRec_Grade";
			this.notePanel_MedRec_Grade.ParentAutoHeight = true;
			this.notePanel_MedRec_Grade.Size = new System.Drawing.Size(80, 22);
			this.notePanel_MedRec_Grade.TabIndex = 51;
			this.notePanel_MedRec_Grade.TabStop = false;
			this.notePanel_MedRec_Grade.Text = "  年  级:";
			// 
			// notePanel_MedRec_Number
			// 
			this.notePanel_MedRec_Number.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_MedRec_Number.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_MedRec_Number.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_MedRec_Number.ForeColor = System.Drawing.Color.Black;
			this.notePanel_MedRec_Number.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_MedRec_Number.Location = new System.Drawing.Point(40, 152);
			this.notePanel_MedRec_Number.MaxRows = 5;
			this.notePanel_MedRec_Number.Name = "notePanel_MedRec_Number";
			this.notePanel_MedRec_Number.ParentAutoHeight = true;
			this.notePanel_MedRec_Number.Size = new System.Drawing.Size(80, 22);
			this.notePanel_MedRec_Number.TabIndex = 50;
			this.notePanel_MedRec_Number.TabStop = false;
			this.notePanel_MedRec_Number.Text = "  学  号:";
			// 
			// notePanel_MedRec_Name
			// 
			this.notePanel_MedRec_Name.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_MedRec_Name.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_MedRec_Name.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_MedRec_Name.ForeColor = System.Drawing.Color.Black;
			this.notePanel_MedRec_Name.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_MedRec_Name.Location = new System.Drawing.Point(40, 120);
			this.notePanel_MedRec_Name.MaxRows = 5;
			this.notePanel_MedRec_Name.Name = "notePanel_MedRec_Name";
			this.notePanel_MedRec_Name.ParentAutoHeight = true;
			this.notePanel_MedRec_Name.Size = new System.Drawing.Size(80, 22);
			this.notePanel_MedRec_Name.TabIndex = 49;
			this.notePanel_MedRec_Name.TabStop = false;
			this.notePanel_MedRec_Name.Text = "  姓  名:";
			// 
			// groupControl_MedRec_DiagAndDoseAdd
			// 
			this.groupControl_MedRec_DiagAndDoseAdd.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.groupControl_MedRec_DiagAndDoseAdd.AppearanceCaption.Options.UseFont = true;
			this.groupControl_MedRec_DiagAndDoseAdd.Controls.Add(this.groupControl_MedRec_DoseAdd);
			this.groupControl_MedRec_DiagAndDoseAdd.Controls.Add(this.groupControl_MedRec_DiagInfo);
			this.groupControl_MedRec_DiagAndDoseAdd.Dock = System.Windows.Forms.DockStyle.Fill;
			this.groupControl_MedRec_DiagAndDoseAdd.Location = new System.Drawing.Point(0, 48);
			this.groupControl_MedRec_DiagAndDoseAdd.Name = "groupControl_MedRec_DiagAndDoseAdd";
			this.groupControl_MedRec_DiagAndDoseAdd.Size = new System.Drawing.Size(477, 461);
			this.groupControl_MedRec_DiagAndDoseAdd.TabIndex = 2;
			this.groupControl_MedRec_DiagAndDoseAdd.Text = "晨检诊断及服药添加";
			this.groupControl_MedRec_DiagAndDoseAdd.Visible = false;
			// 
			// groupControl_MedRec_DoseAdd
			// 
			this.groupControl_MedRec_DoseAdd.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.groupControl_MedRec_DoseAdd.AppearanceCaption.Options.UseFont = true;
			this.groupControl_MedRec_DoseAdd.Controls.Add(this.notePanel_MedRec_TakeRule);
			this.groupControl_MedRec_DoseAdd.Controls.Add(this.listBoxControl_MedRec_MedCarrInfo);
			this.groupControl_MedRec_DoseAdd.Controls.Add(this.comboBoxEdit_MedRec_TakeRule);
			this.groupControl_MedRec_DoseAdd.Controls.Add(this.timeEdit_MedRec_TakeTime);
			this.groupControl_MedRec_DoseAdd.Controls.Add(this.notePanel_MedRec_TakeDate);
			this.groupControl_MedRec_DoseAdd.Controls.Add(this.textEdit_MedRec_MedTake);
			this.groupControl_MedRec_DoseAdd.Controls.Add(this.notePanel_MedRec_MedTake);
			this.groupControl_MedRec_DoseAdd.Controls.Add(this.textEdit_MedRec_MedName);
			this.groupControl_MedRec_DoseAdd.Controls.Add(this.notePanel_MedRec_MedName);
			this.groupControl_MedRec_DoseAdd.Dock = System.Windows.Forms.DockStyle.Fill;
			this.groupControl_MedRec_DoseAdd.Location = new System.Drawing.Point(3, 272);
			this.groupControl_MedRec_DoseAdd.Name = "groupControl_MedRec_DoseAdd";
			this.groupControl_MedRec_DoseAdd.Size = new System.Drawing.Size(471, 186);
			this.groupControl_MedRec_DoseAdd.TabIndex = 3;
			this.groupControl_MedRec_DoseAdd.Text = "添加服药记录";
			// 
			// notePanel_MedRec_TakeRule
			// 
			this.notePanel_MedRec_TakeRule.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_MedRec_TakeRule.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_MedRec_TakeRule.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_MedRec_TakeRule.ForeColor = System.Drawing.Color.Black;
			this.notePanel_MedRec_TakeRule.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_MedRec_TakeRule.Location = new System.Drawing.Point(224, 128);
			this.notePanel_MedRec_TakeRule.MaxRows = 5;
			this.notePanel_MedRec_TakeRule.Name = "notePanel_MedRec_TakeRule";
			this.notePanel_MedRec_TakeRule.ParentAutoHeight = true;
			this.notePanel_MedRec_TakeRule.Size = new System.Drawing.Size(80, 22);
			this.notePanel_MedRec_TakeRule.TabIndex = 65;
			this.notePanel_MedRec_TakeRule.TabStop = false;
			this.notePanel_MedRec_TakeRule.Text = "服药规定:";
			// 
			// listBoxControl_MedRec_MedCarrInfo
			// 
			this.listBoxControl_MedRec_MedCarrInfo.ItemHeight = 16;
			this.listBoxControl_MedRec_MedCarrInfo.Location = new System.Drawing.Point(56, 32);
			this.listBoxControl_MedRec_MedCarrInfo.Name = "listBoxControl_MedRec_MedCarrInfo";
			this.listBoxControl_MedRec_MedCarrInfo.Size = new System.Drawing.Size(152, 120);
			this.listBoxControl_MedRec_MedCarrInfo.TabIndex = 64;
			this.listBoxControl_MedRec_MedCarrInfo.DoubleClick += new System.EventHandler(this.listBoxControl_MedRec_MedCarrInfo_DoubleClick);
			// 
			// comboBoxEdit_MedRec_TakeRule
			// 
			this.comboBoxEdit_MedRec_TakeRule.EditValue = "";
			this.comboBoxEdit_MedRec_TakeRule.Location = new System.Drawing.Point(312, 128);
			this.comboBoxEdit_MedRec_TakeRule.Name = "comboBoxEdit_MedRec_TakeRule";
			// 
			// comboBoxEdit_MedRec_TakeRule.Properties
			// 
			this.comboBoxEdit_MedRec_TakeRule.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																																 new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.comboBoxEdit_MedRec_TakeRule.Properties.Items.AddRange(new object[] {
																						 "饭前服用",
																						 "饭后服用"});
			this.comboBoxEdit_MedRec_TakeRule.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
			this.comboBoxEdit_MedRec_TakeRule.Size = new System.Drawing.Size(80, 23);
			this.comboBoxEdit_MedRec_TakeRule.TabIndex = 63;
			// 
			// timeEdit_MedRec_TakeTime
			// 
			this.timeEdit_MedRec_TakeTime.EditValue = new System.DateTime(2005, 1, 24, 0, 0, 0, 0);
			this.timeEdit_MedRec_TakeTime.Location = new System.Drawing.Point(312, 96);
			this.timeEdit_MedRec_TakeTime.Name = "timeEdit_MedRec_TakeTime";
			// 
			// timeEdit_MedRec_TakeTime.Properties
			// 
			this.timeEdit_MedRec_TakeTime.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																															 new DevExpress.XtraEditors.Controls.EditorButton()});
			this.timeEdit_MedRec_TakeTime.Properties.DisplayFormat.FormatString = "HH:mm:ss";
			this.timeEdit_MedRec_TakeTime.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
			this.timeEdit_MedRec_TakeTime.Properties.Mask.EditMask = "T";
			this.timeEdit_MedRec_TakeTime.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.DateTime;
			this.timeEdit_MedRec_TakeTime.Properties.UseCtrlIncrement = true;
			this.timeEdit_MedRec_TakeTime.Size = new System.Drawing.Size(80, 23);
			this.timeEdit_MedRec_TakeTime.TabIndex = 61;
			// 
			// notePanel_MedRec_TakeDate
			// 
			this.notePanel_MedRec_TakeDate.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_MedRec_TakeDate.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_MedRec_TakeDate.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_MedRec_TakeDate.ForeColor = System.Drawing.Color.Black;
			this.notePanel_MedRec_TakeDate.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_MedRec_TakeDate.Location = new System.Drawing.Point(224, 96);
			this.notePanel_MedRec_TakeDate.MaxRows = 5;
			this.notePanel_MedRec_TakeDate.Name = "notePanel_MedRec_TakeDate";
			this.notePanel_MedRec_TakeDate.ParentAutoHeight = true;
			this.notePanel_MedRec_TakeDate.Size = new System.Drawing.Size(80, 22);
			this.notePanel_MedRec_TakeDate.TabIndex = 60;
			this.notePanel_MedRec_TakeDate.TabStop = false;
			this.notePanel_MedRec_TakeDate.Text = "服药时间:";
			// 
			// textEdit_MedRec_MedTake
			// 
			this.textEdit_MedRec_MedTake.EditValue = "";
			this.textEdit_MedRec_MedTake.Location = new System.Drawing.Point(312, 64);
			this.textEdit_MedRec_MedTake.Name = "textEdit_MedRec_MedTake";
			this.textEdit_MedRec_MedTake.Size = new System.Drawing.Size(80, 23);
			this.textEdit_MedRec_MedTake.TabIndex = 59;
			// 
			// notePanel_MedRec_MedTake
			// 
			this.notePanel_MedRec_MedTake.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_MedRec_MedTake.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_MedRec_MedTake.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_MedRec_MedTake.ForeColor = System.Drawing.Color.Black;
			this.notePanel_MedRec_MedTake.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_MedRec_MedTake.Location = new System.Drawing.Point(224, 64);
			this.notePanel_MedRec_MedTake.MaxRows = 5;
			this.notePanel_MedRec_MedTake.Name = "notePanel_MedRec_MedTake";
			this.notePanel_MedRec_MedTake.ParentAutoHeight = true;
			this.notePanel_MedRec_MedTake.Size = new System.Drawing.Size(80, 22);
			this.notePanel_MedRec_MedTake.TabIndex = 58;
			this.notePanel_MedRec_MedTake.TabStop = false;
			this.notePanel_MedRec_MedTake.Text = "服药剂量:";
			// 
			// textEdit_MedRec_MedName
			// 
			this.textEdit_MedRec_MedName.EditValue = "";
			this.textEdit_MedRec_MedName.Location = new System.Drawing.Point(312, 32);
			this.textEdit_MedRec_MedName.Name = "textEdit_MedRec_MedName";
			this.textEdit_MedRec_MedName.Size = new System.Drawing.Size(80, 23);
			this.textEdit_MedRec_MedName.TabIndex = 57;
			// 
			// notePanel_MedRec_MedName
			// 
			this.notePanel_MedRec_MedName.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_MedRec_MedName.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_MedRec_MedName.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_MedRec_MedName.ForeColor = System.Drawing.Color.Black;
			this.notePanel_MedRec_MedName.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_MedRec_MedName.Location = new System.Drawing.Point(224, 32);
			this.notePanel_MedRec_MedName.MaxRows = 5;
			this.notePanel_MedRec_MedName.Name = "notePanel_MedRec_MedName";
			this.notePanel_MedRec_MedName.ParentAutoHeight = true;
			this.notePanel_MedRec_MedName.Size = new System.Drawing.Size(80, 22);
			this.notePanel_MedRec_MedName.TabIndex = 53;
			this.notePanel_MedRec_MedName.TabStop = false;
			this.notePanel_MedRec_MedName.Text = "服药名称:";
			// 
			// groupControl_MedRec_DiagInfo
			// 
			this.groupControl_MedRec_DiagInfo.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.groupControl_MedRec_DiagInfo.AppearanceCaption.Options.UseFont = true;
			this.groupControl_MedRec_DiagInfo.Controls.Add(this.textEdit_MedRec_Diag);
			this.groupControl_MedRec_DiagInfo.Controls.Add(this.textEdit_MedRec_Else);
			this.groupControl_MedRec_DiagInfo.Controls.Add(this.textEdit_MedRec_FacialSym);
			this.groupControl_MedRec_DiagInfo.Controls.Add(this.notePanel_MedRec_Else);
			this.groupControl_MedRec_DiagInfo.Controls.Add(this.notePanel_MedRec_FacialSym);
			this.groupControl_MedRec_DiagInfo.Controls.Add(this.notePanel_MedRec_SkinSym);
			this.groupControl_MedRec_DiagInfo.Controls.Add(this.notePanel_MedRec_AbdomenSym);
			this.groupControl_MedRec_DiagInfo.Controls.Add(this.notePanel_MedRec_EnteronSym);
			this.groupControl_MedRec_DiagInfo.Controls.Add(this.textEdit_MedRec_SkinSym);
			this.groupControl_MedRec_DiagInfo.Controls.Add(this.textEdit_MedRec_AbdomenSym);
			this.groupControl_MedRec_DiagInfo.Controls.Add(this.textEdit_MedRec_EnteronSym);
			this.groupControl_MedRec_DiagInfo.Controls.Add(this.textEdit_MedRec_ThroatSym);
			this.groupControl_MedRec_DiagInfo.Controls.Add(this.notePanel_MedRec_ThroatSym);
			this.groupControl_MedRec_DiagInfo.Controls.Add(this.textEdit_MedRec_LungSym);
			this.groupControl_MedRec_DiagInfo.Controls.Add(this.notePanel_MedRec_LungSym);
			this.groupControl_MedRec_DiagInfo.Controls.Add(this.textEdit_MedRec_UpperSym);
			this.groupControl_MedRec_DiagInfo.Controls.Add(this.notePanel_MedRec_UpperSym);
			this.groupControl_MedRec_DiagInfo.Controls.Add(this.notePanel_MedRec_Diag);
			this.groupControl_MedRec_DiagInfo.Dock = System.Windows.Forms.DockStyle.Top;
			this.groupControl_MedRec_DiagInfo.Location = new System.Drawing.Point(3, 18);
			this.groupControl_MedRec_DiagInfo.Name = "groupControl_MedRec_DiagInfo";
			this.groupControl_MedRec_DiagInfo.Size = new System.Drawing.Size(471, 254);
			this.groupControl_MedRec_DiagInfo.TabIndex = 2;
			this.groupControl_MedRec_DiagInfo.Text = "诊断信息";
			// 
			// textEdit_MedRec_Diag
			// 
			this.textEdit_MedRec_Diag.EditValue = "";
			this.textEdit_MedRec_Diag.Location = new System.Drawing.Point(176, 24);
			this.textEdit_MedRec_Diag.Name = "textEdit_MedRec_Diag";
			// 
			// textEdit_MedRec_Diag.Properties
			// 
			this.textEdit_MedRec_Diag.Properties.Enabled = false;
			this.textEdit_MedRec_Diag.Size = new System.Drawing.Size(256, 23);
			this.textEdit_MedRec_Diag.TabIndex = 71;
			// 
			// textEdit_MedRec_Else
			// 
			this.textEdit_MedRec_Else.EditValue = "";
			this.textEdit_MedRec_Else.Location = new System.Drawing.Point(176, 216);
			this.textEdit_MedRec_Else.Name = "textEdit_MedRec_Else";
			// 
			// textEdit_MedRec_Else.Properties
			// 
			this.textEdit_MedRec_Else.Properties.Enabled = false;
			this.textEdit_MedRec_Else.Size = new System.Drawing.Size(256, 23);
			this.textEdit_MedRec_Else.TabIndex = 70;
			// 
			// textEdit_MedRec_FacialSym
			// 
			this.textEdit_MedRec_FacialSym.EditValue = "";
			this.textEdit_MedRec_FacialSym.Location = new System.Drawing.Point(176, 192);
			this.textEdit_MedRec_FacialSym.Name = "textEdit_MedRec_FacialSym";
			// 
			// textEdit_MedRec_FacialSym.Properties
			// 
			this.textEdit_MedRec_FacialSym.Properties.Enabled = false;
			this.textEdit_MedRec_FacialSym.Size = new System.Drawing.Size(256, 23);
			this.textEdit_MedRec_FacialSym.TabIndex = 69;
			// 
			// notePanel_MedRec_Else
			// 
			this.notePanel_MedRec_Else.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_MedRec_Else.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_MedRec_Else.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_MedRec_Else.ForeColor = System.Drawing.Color.Black;
			this.notePanel_MedRec_Else.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_MedRec_Else.Location = new System.Drawing.Point(64, 216);
			this.notePanel_MedRec_Else.MaxRows = 5;
			this.notePanel_MedRec_Else.Name = "notePanel_MedRec_Else";
			this.notePanel_MedRec_Else.ParentAutoHeight = true;
			this.notePanel_MedRec_Else.Size = new System.Drawing.Size(96, 22);
			this.notePanel_MedRec_Else.TabIndex = 68;
			this.notePanel_MedRec_Else.TabStop = false;
			this.notePanel_MedRec_Else.Text = "  其他症状:";
			// 
			// notePanel_MedRec_FacialSym
			// 
			this.notePanel_MedRec_FacialSym.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_MedRec_FacialSym.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_MedRec_FacialSym.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_MedRec_FacialSym.ForeColor = System.Drawing.Color.Black;
			this.notePanel_MedRec_FacialSym.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_MedRec_FacialSym.Location = new System.Drawing.Point(64, 192);
			this.notePanel_MedRec_FacialSym.MaxRows = 5;
			this.notePanel_MedRec_FacialSym.Name = "notePanel_MedRec_FacialSym";
			this.notePanel_MedRec_FacialSym.ParentAutoHeight = true;
			this.notePanel_MedRec_FacialSym.Size = new System.Drawing.Size(96, 22);
			this.notePanel_MedRec_FacialSym.TabIndex = 67;
			this.notePanel_MedRec_FacialSym.TabStop = false;
			this.notePanel_MedRec_FacialSym.Text = "  五官症状:";
			// 
			// notePanel_MedRec_SkinSym
			// 
			this.notePanel_MedRec_SkinSym.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_MedRec_SkinSym.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_MedRec_SkinSym.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_MedRec_SkinSym.ForeColor = System.Drawing.Color.Black;
			this.notePanel_MedRec_SkinSym.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_MedRec_SkinSym.Location = new System.Drawing.Point(64, 168);
			this.notePanel_MedRec_SkinSym.MaxRows = 5;
			this.notePanel_MedRec_SkinSym.Name = "notePanel_MedRec_SkinSym";
			this.notePanel_MedRec_SkinSym.ParentAutoHeight = true;
			this.notePanel_MedRec_SkinSym.Size = new System.Drawing.Size(96, 22);
			this.notePanel_MedRec_SkinSym.TabIndex = 66;
			this.notePanel_MedRec_SkinSym.TabStop = false;
			this.notePanel_MedRec_SkinSym.Text = "  皮肤症状:";
			// 
			// notePanel_MedRec_AbdomenSym
			// 
			this.notePanel_MedRec_AbdomenSym.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_MedRec_AbdomenSym.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_MedRec_AbdomenSym.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_MedRec_AbdomenSym.ForeColor = System.Drawing.Color.Black;
			this.notePanel_MedRec_AbdomenSym.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_MedRec_AbdomenSym.Location = new System.Drawing.Point(64, 144);
			this.notePanel_MedRec_AbdomenSym.MaxRows = 5;
			this.notePanel_MedRec_AbdomenSym.Name = "notePanel_MedRec_AbdomenSym";
			this.notePanel_MedRec_AbdomenSym.ParentAutoHeight = true;
			this.notePanel_MedRec_AbdomenSym.Size = new System.Drawing.Size(96, 22);
			this.notePanel_MedRec_AbdomenSym.TabIndex = 65;
			this.notePanel_MedRec_AbdomenSym.TabStop = false;
			this.notePanel_MedRec_AbdomenSym.Text = "  腹部症状:";
			// 
			// notePanel_MedRec_EnteronSym
			// 
			this.notePanel_MedRec_EnteronSym.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_MedRec_EnteronSym.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_MedRec_EnteronSym.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_MedRec_EnteronSym.ForeColor = System.Drawing.Color.Black;
			this.notePanel_MedRec_EnteronSym.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_MedRec_EnteronSym.Location = new System.Drawing.Point(64, 120);
			this.notePanel_MedRec_EnteronSym.MaxRows = 5;
			this.notePanel_MedRec_EnteronSym.Name = "notePanel_MedRec_EnteronSym";
			this.notePanel_MedRec_EnteronSym.ParentAutoHeight = true;
			this.notePanel_MedRec_EnteronSym.Size = new System.Drawing.Size(96, 22);
			this.notePanel_MedRec_EnteronSym.TabIndex = 64;
			this.notePanel_MedRec_EnteronSym.TabStop = false;
			this.notePanel_MedRec_EnteronSym.Text = "消化道症状:";
			// 
			// textEdit_MedRec_SkinSym
			// 
			this.textEdit_MedRec_SkinSym.EditValue = "";
			this.textEdit_MedRec_SkinSym.Location = new System.Drawing.Point(176, 168);
			this.textEdit_MedRec_SkinSym.Name = "textEdit_MedRec_SkinSym";
			// 
			// textEdit_MedRec_SkinSym.Properties
			// 
			this.textEdit_MedRec_SkinSym.Properties.Enabled = false;
			this.textEdit_MedRec_SkinSym.Size = new System.Drawing.Size(256, 23);
			this.textEdit_MedRec_SkinSym.TabIndex = 63;
			// 
			// textEdit_MedRec_AbdomenSym
			// 
			this.textEdit_MedRec_AbdomenSym.EditValue = "";
			this.textEdit_MedRec_AbdomenSym.Location = new System.Drawing.Point(176, 144);
			this.textEdit_MedRec_AbdomenSym.Name = "textEdit_MedRec_AbdomenSym";
			// 
			// textEdit_MedRec_AbdomenSym.Properties
			// 
			this.textEdit_MedRec_AbdomenSym.Properties.Enabled = false;
			this.textEdit_MedRec_AbdomenSym.Size = new System.Drawing.Size(256, 23);
			this.textEdit_MedRec_AbdomenSym.TabIndex = 62;
			// 
			// textEdit_MedRec_EnteronSym
			// 
			this.textEdit_MedRec_EnteronSym.EditValue = "";
			this.textEdit_MedRec_EnteronSym.Location = new System.Drawing.Point(176, 120);
			this.textEdit_MedRec_EnteronSym.Name = "textEdit_MedRec_EnteronSym";
			// 
			// textEdit_MedRec_EnteronSym.Properties
			// 
			this.textEdit_MedRec_EnteronSym.Properties.Enabled = false;
			this.textEdit_MedRec_EnteronSym.Size = new System.Drawing.Size(256, 23);
			this.textEdit_MedRec_EnteronSym.TabIndex = 61;
			// 
			// textEdit_MedRec_ThroatSym
			// 
			this.textEdit_MedRec_ThroatSym.EditValue = "";
			this.textEdit_MedRec_ThroatSym.Location = new System.Drawing.Point(176, 96);
			this.textEdit_MedRec_ThroatSym.Name = "textEdit_MedRec_ThroatSym";
			// 
			// textEdit_MedRec_ThroatSym.Properties
			// 
			this.textEdit_MedRec_ThroatSym.Properties.Enabled = false;
			this.textEdit_MedRec_ThroatSym.Size = new System.Drawing.Size(256, 23);
			this.textEdit_MedRec_ThroatSym.TabIndex = 60;
			// 
			// notePanel_MedRec_ThroatSym
			// 
			this.notePanel_MedRec_ThroatSym.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_MedRec_ThroatSym.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_MedRec_ThroatSym.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_MedRec_ThroatSym.ForeColor = System.Drawing.Color.Black;
			this.notePanel_MedRec_ThroatSym.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_MedRec_ThroatSym.Location = new System.Drawing.Point(64, 96);
			this.notePanel_MedRec_ThroatSym.MaxRows = 5;
			this.notePanel_MedRec_ThroatSym.Name = "notePanel_MedRec_ThroatSym";
			this.notePanel_MedRec_ThroatSym.ParentAutoHeight = true;
			this.notePanel_MedRec_ThroatSym.Size = new System.Drawing.Size(96, 22);
			this.notePanel_MedRec_ThroatSym.TabIndex = 59;
			this.notePanel_MedRec_ThroatSym.TabStop = false;
			this.notePanel_MedRec_ThroatSym.Text = "咽喉部症状:";
			// 
			// textEdit_MedRec_LungSym
			// 
			this.textEdit_MedRec_LungSym.EditValue = "";
			this.textEdit_MedRec_LungSym.Location = new System.Drawing.Point(176, 72);
			this.textEdit_MedRec_LungSym.Name = "textEdit_MedRec_LungSym";
			// 
			// textEdit_MedRec_LungSym.Properties
			// 
			this.textEdit_MedRec_LungSym.Properties.Enabled = false;
			this.textEdit_MedRec_LungSym.Size = new System.Drawing.Size(256, 23);
			this.textEdit_MedRec_LungSym.TabIndex = 58;
			// 
			// notePanel_MedRec_LungSym
			// 
			this.notePanel_MedRec_LungSym.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_MedRec_LungSym.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_MedRec_LungSym.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_MedRec_LungSym.ForeColor = System.Drawing.Color.Black;
			this.notePanel_MedRec_LungSym.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_MedRec_LungSym.Location = new System.Drawing.Point(64, 72);
			this.notePanel_MedRec_LungSym.MaxRows = 5;
			this.notePanel_MedRec_LungSym.Name = "notePanel_MedRec_LungSym";
			this.notePanel_MedRec_LungSym.ParentAutoHeight = true;
			this.notePanel_MedRec_LungSym.Size = new System.Drawing.Size(96, 22);
			this.notePanel_MedRec_LungSym.TabIndex = 57;
			this.notePanel_MedRec_LungSym.TabStop = false;
			this.notePanel_MedRec_LungSym.Text = "  肺部症状:";
			// 
			// textEdit_MedRec_UpperSym
			// 
			this.textEdit_MedRec_UpperSym.EditValue = "";
			this.textEdit_MedRec_UpperSym.Location = new System.Drawing.Point(176, 48);
			this.textEdit_MedRec_UpperSym.Name = "textEdit_MedRec_UpperSym";
			// 
			// textEdit_MedRec_UpperSym.Properties
			// 
			this.textEdit_MedRec_UpperSym.Properties.Enabled = false;
			this.textEdit_MedRec_UpperSym.Size = new System.Drawing.Size(256, 23);
			this.textEdit_MedRec_UpperSym.TabIndex = 56;
			// 
			// notePanel_MedRec_UpperSym
			// 
			this.notePanel_MedRec_UpperSym.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_MedRec_UpperSym.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_MedRec_UpperSym.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_MedRec_UpperSym.ForeColor = System.Drawing.Color.Black;
			this.notePanel_MedRec_UpperSym.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_MedRec_UpperSym.Location = new System.Drawing.Point(64, 48);
			this.notePanel_MedRec_UpperSym.MaxRows = 5;
			this.notePanel_MedRec_UpperSym.Name = "notePanel_MedRec_UpperSym";
			this.notePanel_MedRec_UpperSym.ParentAutoHeight = true;
			this.notePanel_MedRec_UpperSym.Size = new System.Drawing.Size(96, 22);
			this.notePanel_MedRec_UpperSym.TabIndex = 54;
			this.notePanel_MedRec_UpperSym.TabStop = false;
			this.notePanel_MedRec_UpperSym.Text = "  上感症状:";
			// 
			// notePanel_MedRec_Diag
			// 
			this.notePanel_MedRec_Diag.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_MedRec_Diag.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_MedRec_Diag.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_MedRec_Diag.ForeColor = System.Drawing.Color.Black;
			this.notePanel_MedRec_Diag.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_MedRec_Diag.Location = new System.Drawing.Point(64, 24);
			this.notePanel_MedRec_Diag.MaxRows = 5;
			this.notePanel_MedRec_Diag.Name = "notePanel_MedRec_Diag";
			this.notePanel_MedRec_Diag.ParentAutoHeight = true;
			this.notePanel_MedRec_Diag.Size = new System.Drawing.Size(96, 22);
			this.notePanel_MedRec_Diag.TabIndex = 52;
			this.notePanel_MedRec_Diag.TabStop = false;
			this.notePanel_MedRec_Diag.Text = "  症状诊断:";
			// 
			// groupControl_MedRec_DoseRec
			// 
			this.groupControl_MedRec_DoseRec.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.groupControl_MedRec_DoseRec.AppearanceCaption.Options.UseFont = true;
			this.groupControl_MedRec_DoseRec.Controls.Add(this.gridControl_MedRec_DoseRec);
			this.groupControl_MedRec_DoseRec.Controls.Add(this.notePanel_MedRec_DoseRec);
			this.groupControl_MedRec_DoseRec.Dock = System.Windows.Forms.DockStyle.Fill;
			this.groupControl_MedRec_DoseRec.Location = new System.Drawing.Point(0, 48);
			this.groupControl_MedRec_DoseRec.Name = "groupControl_MedRec_DoseRec";
			this.groupControl_MedRec_DoseRec.Size = new System.Drawing.Size(477, 461);
			this.groupControl_MedRec_DoseRec.TabIndex = 1;
			this.groupControl_MedRec_DoseRec.Text = "幼儿服药记录追踪";
			// 
			// gridControl_MedRec_DoseRec
			// 
			this.gridControl_MedRec_DoseRec.Dock = System.Windows.Forms.DockStyle.Fill;
			// 
			// gridControl_MedRec_DoseRec.EmbeddedNavigator
			// 
			this.gridControl_MedRec_DoseRec.EmbeddedNavigator.Name = "";
			this.gridControl_MedRec_DoseRec.Location = new System.Drawing.Point(3, 41);
			this.gridControl_MedRec_DoseRec.MainView = this.gridView11;
			this.gridControl_MedRec_DoseRec.Name = "gridControl_MedRec_DoseRec";
			this.barManager1.SetPopupContextMenu(this.gridControl_MedRec_DoseRec, this.popupMenu3);
			this.gridControl_MedRec_DoseRec.Size = new System.Drawing.Size(471, 417);
			this.gridControl_MedRec_DoseRec.TabIndex = 59;
			this.gridControl_MedRec_DoseRec.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
																													  this.gridView11,
																													  this.gridView12});
			this.gridControl_MedRec_DoseRec.DoubleClick += new System.EventHandler(this.gridControl_MedRec_DoseRec_DoubleClick);
			// 
			// gridView11
			// 
			this.gridView11.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
																							  this.gridColumn49,
																							  this.gridColumn48,
																							  this.gridColumn44,
																							  this.gridColumn45,
																							  this.gridColumn46,
																							  this.gridColumn47});
			this.gridView11.GridControl = this.gridControl_MedRec_DoseRec;
			this.gridView11.Name = "gridView11";
			this.gridView11.OptionsCustomization.AllowFilter = false;
			this.gridView11.OptionsView.ShowFilterPanel = false;
			this.gridView11.OptionsView.ShowGroupPanel = false;
			// 
			// gridColumn49
			// 
			this.gridColumn49.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn49.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn49.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn49.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn49.Caption = "幼儿学号";
			this.gridColumn49.FieldName = "info_stuNumber";
			this.gridColumn49.Name = "gridColumn49";
			this.gridColumn49.OptionsColumn.AllowEdit = false;
			this.gridColumn49.OptionsColumn.AllowFocus = false;
			this.gridColumn49.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn49.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn49.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn49.OptionsColumn.AllowMove = false;
			this.gridColumn49.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn49.OptionsColumn.ReadOnly = true;
			this.gridColumn49.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn49.Visible = true;
			this.gridColumn49.VisibleIndex = 0;
			this.gridColumn49.Width = 66;
			// 
			// gridColumn48
			// 
			this.gridColumn48.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn48.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn48.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn48.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn48.Caption = "幼儿姓名";
			this.gridColumn48.FieldName = "info_stuName";
			this.gridColumn48.Name = "gridColumn48";
			this.gridColumn48.OptionsColumn.AllowEdit = false;
			this.gridColumn48.OptionsColumn.AllowFocus = false;
			this.gridColumn48.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn48.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn48.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn48.OptionsColumn.AllowMove = false;
			this.gridColumn48.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn48.OptionsColumn.ReadOnly = true;
			this.gridColumn48.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn48.Visible = true;
			this.gridColumn48.VisibleIndex = 1;
			this.gridColumn48.Width = 68;
			// 
			// gridColumn44
			// 
			this.gridColumn44.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn44.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn44.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn44.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn44.Caption = "药品名称";
			this.gridColumn44.FieldName = "medicine_Name";
			this.gridColumn44.Name = "gridColumn44";
			this.gridColumn44.OptionsColumn.AllowEdit = false;
			this.gridColumn44.OptionsColumn.AllowFocus = false;
			this.gridColumn44.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn44.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn44.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn44.OptionsColumn.AllowMove = false;
			this.gridColumn44.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn44.OptionsColumn.ReadOnly = true;
			this.gridColumn44.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn44.Visible = true;
			this.gridColumn44.VisibleIndex = 2;
			this.gridColumn44.Width = 69;
			// 
			// gridColumn45
			// 
			this.gridColumn45.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn45.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn45.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn45.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn45.Caption = "服用剂量";
			this.gridColumn45.FieldName = "medicine_dose";
			this.gridColumn45.Name = "gridColumn45";
			this.gridColumn45.OptionsColumn.AllowEdit = false;
			this.gridColumn45.OptionsColumn.AllowFocus = false;
			this.gridColumn45.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn45.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn45.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn45.OptionsColumn.AllowMove = false;
			this.gridColumn45.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn45.OptionsColumn.ReadOnly = true;
			this.gridColumn45.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn45.Visible = true;
			this.gridColumn45.VisibleIndex = 3;
			this.gridColumn45.Width = 57;
			// 
			// gridColumn46
			// 
			this.gridColumn46.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn46.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn46.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn46.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn46.Caption = "服用时间";
			this.gridColumn46.DisplayFormat.FormatString = "yyyy-MM-dd HH:mm:ss";
			this.gridColumn46.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
			this.gridColumn46.FieldName = "medicine_time";
			this.gridColumn46.Name = "gridColumn46";
			this.gridColumn46.OptionsColumn.AllowEdit = false;
			this.gridColumn46.OptionsColumn.AllowFocus = false;
			this.gridColumn46.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn46.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn46.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn46.OptionsColumn.AllowMove = false;
			this.gridColumn46.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn46.OptionsColumn.ReadOnly = true;
			this.gridColumn46.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn46.Visible = true;
			this.gridColumn46.VisibleIndex = 4;
			this.gridColumn46.Width = 124;
			// 
			// gridColumn47
			// 
			this.gridColumn47.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn47.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn47.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn47.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn47.Caption = "负责教师";
			this.gridColumn47.FieldName = "teacher_signature";
			this.gridColumn47.Name = "gridColumn47";
			this.gridColumn47.OptionsColumn.AllowEdit = false;
			this.gridColumn47.OptionsColumn.AllowFocus = false;
			this.gridColumn47.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn47.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn47.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn47.OptionsColumn.AllowMove = false;
			this.gridColumn47.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn47.OptionsColumn.ReadOnly = true;
			this.gridColumn47.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn47.Visible = true;
			this.gridColumn47.VisibleIndex = 5;
			this.gridColumn47.Width = 70;
			// 
			// gridView12
			// 
			this.gridView12.GridControl = this.gridControl_MedRec_DoseRec;
			this.gridView12.Name = "gridView12";
			// 
			// notePanel_MedRec_DoseRec
			// 
			this.notePanel_MedRec_DoseRec.BackColor = System.Drawing.Color.LightGoldenrodYellow;
			this.notePanel_MedRec_DoseRec.Dock = System.Windows.Forms.DockStyle.Top;
			this.notePanel_MedRec_DoseRec.ForeColor = System.Drawing.Color.OrangeRed;
			this.notePanel_MedRec_DoseRec.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_MedRec_DoseRec.Location = new System.Drawing.Point(3, 18);
			this.notePanel_MedRec_DoseRec.MaxRows = 5;
			this.notePanel_MedRec_DoseRec.Name = "notePanel_MedRec_DoseRec";
			this.notePanel_MedRec_DoseRec.ParentAutoHeight = true;
			this.notePanel_MedRec_DoseRec.Size = new System.Drawing.Size(471, 23);
			this.notePanel_MedRec_DoseRec.TabIndex = 58;
			this.notePanel_MedRec_DoseRec.TabStop = false;
			this.notePanel_MedRec_DoseRec.Text = "双击进行服药记录添加";
			// 
			// panelControl9
			// 
			this.panelControl9.Controls.Add(this.simpleButton_AbnormalSer);
			this.panelControl9.Controls.Add(this.simpleButton_MedRec_Report);
			this.panelControl9.Controls.Add(this.simpleButton_MedRec_Add);
			this.panelControl9.Controls.Add(this.simpleButton_MedRec_Back);
			this.panelControl9.Dock = System.Windows.Forms.DockStyle.Top;
			this.panelControl9.Location = new System.Drawing.Point(0, 0);
			this.panelControl9.Name = "panelControl9";
			this.panelControl9.Size = new System.Drawing.Size(477, 48);
			this.panelControl9.TabIndex = 0;
			this.panelControl9.Text = "panelControl9";
			// 
			// simpleButton_AbnormalSer
			// 
			this.simpleButton_AbnormalSer.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.simpleButton_AbnormalSer.Appearance.ForeColor = System.Drawing.Color.DarkMagenta;
			this.simpleButton_AbnormalSer.Appearance.Options.UseFont = true;
			this.simpleButton_AbnormalSer.Appearance.Options.UseForeColor = true;
			this.simpleButton_AbnormalSer.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton_AbnormalSer.Image")));
			this.simpleButton_AbnormalSer.Location = new System.Drawing.Point(16, 8);
			this.simpleButton_AbnormalSer.Name = "simpleButton_AbnormalSer";
			this.simpleButton_AbnormalSer.Size = new System.Drawing.Size(80, 26);
			this.simpleButton_AbnormalSer.TabIndex = 26;
			this.simpleButton_AbnormalSer.Tag = 4;
			this.simpleButton_AbnormalSer.Text = "检  索";
			this.simpleButton_AbnormalSer.Click += new System.EventHandler(this.simpleButton_AbnormalSer_Click);
			// 
			// simpleButton_MedRec_Report
			// 
			this.simpleButton_MedRec_Report.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.simpleButton_MedRec_Report.Appearance.ForeColor = System.Drawing.Color.DarkMagenta;
			this.simpleButton_MedRec_Report.Appearance.Options.UseFont = true;
			this.simpleButton_MedRec_Report.Appearance.Options.UseForeColor = true;
			this.simpleButton_MedRec_Report.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton_MedRec_Report.Image")));
			this.simpleButton_MedRec_Report.Location = new System.Drawing.Point(296, 8);
			this.simpleButton_MedRec_Report.Name = "simpleButton_MedRec_Report";
			this.simpleButton_MedRec_Report.Size = new System.Drawing.Size(80, 26);
			this.simpleButton_MedRec_Report.TabIndex = 25;
			this.simpleButton_MedRec_Report.Tag = 4;
			this.simpleButton_MedRec_Report.Text = "报  表";
			this.simpleButton_MedRec_Report.Click += new System.EventHandler(this.simpleButton_MedRec_Report_Click);
			// 
			// simpleButton_MedRec_Add
			// 
			this.simpleButton_MedRec_Add.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.simpleButton_MedRec_Add.Appearance.ForeColor = System.Drawing.Color.DarkMagenta;
			this.simpleButton_MedRec_Add.Appearance.Options.UseFont = true;
			this.simpleButton_MedRec_Add.Appearance.Options.UseForeColor = true;
			this.simpleButton_MedRec_Add.Enabled = false;
			this.simpleButton_MedRec_Add.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton_MedRec_Add.Image")));
			this.simpleButton_MedRec_Add.Location = new System.Drawing.Point(192, 8);
			this.simpleButton_MedRec_Add.Name = "simpleButton_MedRec_Add";
			this.simpleButton_MedRec_Add.Size = new System.Drawing.Size(96, 26);
			this.simpleButton_MedRec_Add.TabIndex = 23;
			this.simpleButton_MedRec_Add.Tag = 4;
			this.simpleButton_MedRec_Add.Text = "服药添加";
			this.simpleButton_MedRec_Add.Click += new System.EventHandler(this.simpleButton_MedRec_Add_Click);
			// 
			// simpleButton_MedRec_Back
			// 
			this.simpleButton_MedRec_Back.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.simpleButton_MedRec_Back.Appearance.ForeColor = System.Drawing.Color.DarkMagenta;
			this.simpleButton_MedRec_Back.Appearance.Options.UseFont = true;
			this.simpleButton_MedRec_Back.Appearance.Options.UseForeColor = true;
			this.simpleButton_MedRec_Back.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton_MedRec_Back.Image")));
			this.simpleButton_MedRec_Back.Location = new System.Drawing.Point(104, 8);
			this.simpleButton_MedRec_Back.Name = "simpleButton_MedRec_Back";
			this.simpleButton_MedRec_Back.Size = new System.Drawing.Size(80, 26);
			this.simpleButton_MedRec_Back.TabIndex = 22;
			this.simpleButton_MedRec_Back.Tag = 4;
			this.simpleButton_MedRec_Back.Text = "返  回";
			this.simpleButton_MedRec_Back.Click += new System.EventHandler(this.simpleButton_MedRec_Back_Click);
			// 
			// barManager1
			// 
			this.barManager1.DockControls.Add(this.barDockControlTop);
			this.barManager1.DockControls.Add(this.barDockControlBottom);
			this.barManager1.DockControls.Add(this.barDockControlLeft);
			this.barManager1.DockControls.Add(this.barDockControlRight);
			this.barManager1.Form = this;
			this.barManager1.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
																				  this.barButtonItem_MealRefresh,
																				  this.barButtonItem_MedReg_MedAdd,
																				  this.barButtonItem_MedReg_MedModify,
																				  this.barButtonItem_MedReg_MedDel,
																				  this.barButtonItem_MedRec_MultiSer,
																				  this.barButtonItem_MedRec_MedDel,
																				  this.barButtonItem_RecipeRefresh,
																				  this.barButtonItem_RecipeDelete});
			this.barManager1.MaxItemId = 8;
			// 
			// popupMenu4
			// 
			this.popupMenu4.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
																									new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem_RecipeRefresh),
																									new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem_RecipeDelete)});
			this.popupMenu4.Manager = this.barManager1;
			this.popupMenu4.Name = "popupMenu4";
			// 
			// barButtonItem_RecipeRefresh
			// 
			this.barButtonItem_RecipeRefresh.Caption = "刷新";
			this.barButtonItem_RecipeRefresh.Id = 6;
			this.barButtonItem_RecipeRefresh.Name = "barButtonItem_RecipeRefresh";
			this.barButtonItem_RecipeRefresh.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem_RecipeRefresh_ItemClick);
			// 
			// barButtonItem_RecipeDelete
			// 
			this.barButtonItem_RecipeDelete.Caption = "删除";
			this.barButtonItem_RecipeDelete.Id = 7;
			this.barButtonItem_RecipeDelete.Name = "barButtonItem_RecipeDelete";
			this.barButtonItem_RecipeDelete.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem_RecipeDelete_ItemClick);
			// 
			// popupMenu1
			// 
			this.popupMenu1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
																									new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem_MealRefresh)});
			this.popupMenu1.Manager = this.barManager1;
			this.popupMenu1.Name = "popupMenu1";
			// 
			// barButtonItem_MealRefresh
			// 
			this.barButtonItem_MealRefresh.Caption = "刷新";
			this.barButtonItem_MealRefresh.Id = 0;
			this.barButtonItem_MealRefresh.Name = "barButtonItem_MealRefresh";
			this.barButtonItem_MealRefresh.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem_MealRefresh_ItemClick);
			// 
			// popupMenu2
			// 
			this.popupMenu2.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
																									new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem_MedReg_MedAdd),
																									new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem_MedReg_MedModify),
																									new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem_MedReg_MedDel)});
			this.popupMenu2.Manager = this.barManager1;
			this.popupMenu2.Name = "popupMenu2";
			// 
			// barButtonItem_MedReg_MedAdd
			// 
			this.barButtonItem_MedReg_MedAdd.Caption = "添加药品信息";
			this.barButtonItem_MedReg_MedAdd.Id = 1;
			this.barButtonItem_MedReg_MedAdd.Name = "barButtonItem_MedReg_MedAdd";
			this.barButtonItem_MedReg_MedAdd.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem_MedReg_MedAdd_ItemClick);
			// 
			// barButtonItem_MedReg_MedModify
			// 
			this.barButtonItem_MedReg_MedModify.Caption = "修改药品信息";
			this.barButtonItem_MedReg_MedModify.Id = 2;
			this.barButtonItem_MedReg_MedModify.Name = "barButtonItem_MedReg_MedModify";
			this.barButtonItem_MedReg_MedModify.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem_MedReg_MedModify_ItemClick);
			// 
			// barButtonItem_MedReg_MedDel
			// 
			this.barButtonItem_MedReg_MedDel.Caption = "删除药品信息";
			this.barButtonItem_MedReg_MedDel.Id = 3;
			this.barButtonItem_MedReg_MedDel.Name = "barButtonItem_MedReg_MedDel";
			this.barButtonItem_MedReg_MedDel.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem_MedReg_MedDel_ItemClick);
			// 
			// popupMenu3
			// 
			this.popupMenu3.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
																									new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem_MedRec_MultiSer),
																									new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem_MedRec_MedDel)});
			this.popupMenu3.Manager = this.barManager1;
			this.popupMenu3.Name = "popupMenu3";
			// 
			// barButtonItem_MedRec_MultiSer
			// 
			this.barButtonItem_MedRec_MultiSer.Caption = "返回多人查询模式";
			this.barButtonItem_MedRec_MultiSer.Id = 4;
			this.barButtonItem_MedRec_MultiSer.Name = "barButtonItem_MedRec_MultiSer";
			this.barButtonItem_MedRec_MultiSer.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem_MedRec_MultiSer_ItemClick);
			// 
			// barButtonItem_MedRec_MedDel
			// 
			this.barButtonItem_MedRec_MedDel.Caption = "删除幼儿服药记录";
			this.barButtonItem_MedRec_MedDel.Id = 5;
			this.barButtonItem_MedRec_MedDel.Name = "barButtonItem_MedRec_MedDel";
			this.barButtonItem_MedRec_MedDel.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem_MedRec_MedDel_ItemClick);
			// 
			// gridView14
			// 
			this.gridView14.GridControl = null;
			this.gridView14.Name = "gridView14";
			// 
			// gridColumn15
			// 
			this.gridColumn15.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn15.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn15.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn15.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn15.Caption = "菜谱名称";
			this.gridColumn15.FieldName = "ACCFood_Remark";
			this.gridColumn15.Name = "gridColumn15";
			this.gridColumn15.OptionsColumn.AllowEdit = false;
			this.gridColumn15.OptionsColumn.AllowFocus = false;
			this.gridColumn15.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn15.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn15.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn15.OptionsColumn.AllowMove = false;
			this.gridColumn15.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn15.OptionsColumn.FixedWidth = true;
			this.gridColumn15.OptionsColumn.ReadOnly = true;
			this.gridColumn15.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn15.Visible = true;
			this.gridColumn15.VisibleIndex = 3;
			// 
			// gridColumn14
			// 
			this.gridColumn14.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn14.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn14.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn14.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn14.Caption = "摄入量";
			this.gridColumn14.FieldName = "ACCFood_TakeAmount";
			this.gridColumn14.Name = "gridColumn14";
			this.gridColumn14.OptionsColumn.AllowEdit = false;
			this.gridColumn14.OptionsColumn.AllowFocus = false;
			this.gridColumn14.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn14.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn14.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn14.OptionsColumn.AllowMove = false;
			this.gridColumn14.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn14.OptionsColumn.FixedWidth = true;
			this.gridColumn14.OptionsColumn.ReadOnly = true;
			this.gridColumn14.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn14.Visible = true;
			this.gridColumn14.VisibleIndex = 2;
			// 
			// gridColumn13
			// 
			this.gridColumn13.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn13.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn13.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn13.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn13.Caption = "登记日期";
			this.gridColumn13.FieldName = "ACCFood_AddTime";
			this.gridColumn13.Name = "gridColumn13";
			this.gridColumn13.OptionsColumn.AllowEdit = false;
			this.gridColumn13.OptionsColumn.AllowFocus = false;
			this.gridColumn13.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn13.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn13.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn13.OptionsColumn.AllowMove = false;
			this.gridColumn13.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn13.OptionsColumn.FixedWidth = true;
			this.gridColumn13.OptionsColumn.ReadOnly = true;
			this.gridColumn13.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn13.Visible = true;
			this.gridColumn13.VisibleIndex = 1;
			// 
			// gridColumn12
			// 
			this.gridColumn12.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn12.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn12.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn12.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn12.Caption = "食物名称";
			this.gridColumn12.FieldName = "FoodNut_FoodName";
			this.gridColumn12.Name = "gridColumn12";
			this.gridColumn12.OptionsColumn.AllowEdit = false;
			this.gridColumn12.OptionsColumn.AllowFocus = false;
			this.gridColumn12.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn12.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn12.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn12.OptionsColumn.AllowMove = false;
			this.gridColumn12.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn12.OptionsColumn.FixedWidth = true;
			this.gridColumn12.OptionsColumn.ReadOnly = true;
			this.gridColumn12.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn12.Visible = true;
			this.gridColumn12.VisibleIndex = 0;
			// 
			// gridView3
			// 
			this.gridView3.GridControl = null;
			this.gridView3.Name = "gridView3";
			this.gridView3.OptionsCustomization.AllowFilter = false;
			this.gridView3.OptionsView.ShowFilterPanel = false;
			this.gridView3.OptionsView.ShowGroupPanel = false;
			// 
			// NutritionManagement
			// 
			this.Controls.Add(this.xtraTabControl1);
			this.Controls.Add(this.barDockControlLeft);
			this.Controls.Add(this.barDockControlRight);
			this.Controls.Add(this.barDockControlBottom);
			this.Controls.Add(this.barDockControlTop);
			this.Name = "NutritionManagement";
			this.Size = new System.Drawing.Size(772, 540);
			this.Load += new System.EventHandler(this.NutritionManagement_Load);
			((System.ComponentModel.ISupportInitialize)(this.xtraTabControl1)).EndInit();
			this.xtraTabControl1.ResumeLayout(false);
			this.xtraTabPage1.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.splitContainerControl1)).EndInit();
			this.splitContainerControl1.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.groupControl_FoodCategory)).EndInit();
			this.groupControl_FoodCategory.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.treeList_FoodStock)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_FoodNutModify)).EndInit();
			this.groupControl_FoodNutModify.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.textEdit_FoodName.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.memoEdit_FoodRemark.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_Energy.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_Carbohydrate.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_Fat.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_Protein.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_FoodCategory.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_FoodNutrition)).EndInit();
			this.groupControl_FoodNutrition.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.gridControl_FoodNutrition)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
			this.panelControl1.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.textEdit_FoodSearch.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_BindingID.Properties)).EndInit();
			this.xtraTabPage2.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.splitContainerControl2)).EndInit();
			this.splitContainerControl2.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.panelControl10)).EndInit();
			this.panelControl10.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.gridControl_Recipe_FoodNutrition)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.gridView4)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.gridView2)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_RecipeLogin)).EndInit();
			this.groupControl_RecipeLogin.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.textEdit_RecipeLogin_FoodName.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_RecipeLogin_Name.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.dateEdit_RecipeLogin_Date.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_RecipeLogin_FoodTake.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_RecipeLogin_BindingID.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_RecipeSer)).EndInit();
			this.groupControl_RecipeSer.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_RecipeSer_FoodCategory.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_RecipeSer_FoodName.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_RecipeOpr)).EndInit();
			this.groupControl_RecipeOpr.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.panelControl11)).EndInit();
			this.panelControl11.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.gridControl_RecipeLogin)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.gridView13)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.panelControl2)).EndInit();
			this.panelControl2.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.textEdit_Recipe_FoodName.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_Recipe_RecipeCategory.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.dateEdit_Recipe_EndDate.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.dateEdit_Recipe_BegDate.Properties)).EndInit();
			this.xtraTabPage3.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.splitContainerControl3)).EndInit();
			this.splitContainerControl3.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.groupControl_MealLogin)).EndInit();
			this.groupControl_MealLogin.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.checkEdit_Snack.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.checkEdit_Dinner.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.checkEdit_Lunch.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.checkEdit_Breakfast.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_MealAdd)).EndInit();
			this.groupControl_MealAdd.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MealName.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MealRemark.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MealID.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_MealArr)).EndInit();
			this.groupControl_MealArr.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.splitContainerControl4)).EndInit();
			this.splitContainerControl4.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.checkEdit_MealArr_gThree.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.checkEdit_MealArr_gTwo.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.checkEdit_MealArr_gOne.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_MealArr_Name.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.checkEdit_MealArr_gFour.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.checkEdit_MealArr_gFive.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.checkEdit_MealArr_IsUsed.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_MealPreview)).EndInit();
			this.groupControl_MealPreview.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.gridControl_MealPreview)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.gridView5)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.panelControl3)).EndInit();
			this.panelControl3.ResumeLayout(false);
			this.xtraTabPage4.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.splitContainerControl5)).EndInit();
			this.splitContainerControl5.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.groupControl_Meal_Search)).EndInit();
			this.groupControl_Meal_Search.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.dateEdit_Meal_EndDate.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.dateEdit_Meal_BegDate.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_Meal_ReportPreview)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.panelControl4)).EndInit();
			this.panelControl4.ResumeLayout(false);
			this.xtraTabPage5.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.splitContainerControl6)).EndInit();
			this.splitContainerControl6.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.gridControl_HInputStu)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.gridView6)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_HInputSer)).EndInit();
			this.groupControl_HInputSer.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_HInputGender.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_HInputNumber.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_HInputName.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_HInputClass.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_HInputGrade.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_HInputDiagInfo)).EndInit();
			this.groupControl_HInputDiagInfo.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_HInputRegion.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_HInputStd.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_DiagCheckName.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_DiagCheckBindingID.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_HInputDiagResult)).EndInit();
			this.groupControl_HInputDiagResult.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.textEdit_DiagResultX.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_DiagResultWHOPer.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_DiagResultHeightWeight.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_DiagResultUnderWeight.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_DiagResultStunting.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_DiagResultWasting.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_DiagResultHeight.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_DiagResultWeight.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_DiagResultWHO.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_DiagResultNut.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_DiagResultAge.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.memoEdit_DiagRemark.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_DiagWeight.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_DiagHeight.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.dateEdit_DiagCheckDate.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_HInputBirthday.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_DiagCheckGender.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.panelControl5)).EndInit();
			this.panelControl5.ResumeLayout(false);
			this.xtraTabPage6.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.splitContainerControl7)).EndInit();
			this.splitContainerControl7.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.groupControl_HOutputPrintType)).EndInit();
			this.groupControl_HOutputPrintType.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.checkEdit_HOutputPrintType4th.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.checkEdit_HOutputPrintType3rd.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.checkEdit_HOutputPrintType2nd.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.checkEdit_HOutputPrintType1st.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_HOutputSer)).EndInit();
			this.groupControl_HOutputSer.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_HOutputRegion.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.dateEdit_HOutputEndDate.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.dateEdit_HOutputBegDate.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_HOutputGender.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_HOutputResult.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_HOutputType.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_HOutputAge.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_HOutputNumber.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_HOutputName.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_HOutputClass.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_HOutputGrade.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.gridControl_HOutputNchsGrid)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.advBandedGridView2)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.gridControl_HOutputGridShow)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.advBandedGridView1)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.panelControl6)).EndInit();
			this.panelControl6.ResumeLayout(false);
			this.xtraTabPage7.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.splitContainerControl8)).EndInit();
			this.splitContainerControl8.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.groupControl_WatchMorningRec)).EndInit();
			this.groupControl_WatchMorningRec.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.textEdit_WatchMorningTreat.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_WatchMorningOState.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_WatchMorningHeat.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_WatchMorningMouth.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_WatchMorningSpirit.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_WatchMorningSkin.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_WatchMorningNumber.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_WatchMorningName.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_WatchStuList)).EndInit();
			this.groupControl_WatchStuList.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.gridControl_WatchStuList)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.gridView7)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_WatchSer)).EndInit();
			this.groupControl_WatchSer.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.textEdit_WatchName.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.dateEdit_WatchEndDate.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.dateEdit_WatchBegDate.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_WatchState.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_WatchNumber.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_WatchClass.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_WatchGrade.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_WatchWholeDay)).EndInit();
			this.groupControl_WatchWholeDay.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.groupControl_WatchWholDayHandle)).EndInit();
			this.groupControl_WatchWholDayHandle.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.checkEdit_WatchWholeDayHeat.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.checkEdit_WatchWholeDayCtrSeafood.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.checkEdit_WatchWholeDayLifeAttention.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.checkEdit_WatchWholeDayCtrAct.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_WatchWholeDayReg)).EndInit();
			this.groupControl_WatchWholeDayReg.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.textEdit_WatchWholeDayElse.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_WatchWholeDayCough.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_WatchWholeDaySleep.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_WatchWholeDayStool.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_WatchWholeDayAppetite.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_WatchWholeDaySpirit.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_WatchWholeDayMovement.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_WatchRecList)).EndInit();
			this.groupControl_WatchRecList.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.gridControl_WatchRecList)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.gridView8)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.panelControl7)).EndInit();
			this.panelControl7.ResumeLayout(false);
			this.xtraTabPage8.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.splitContainerControl9)).EndInit();
			this.splitContainerControl9.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.groupControl_MedReg_StuList)).EndInit();
			this.groupControl_MedReg_StuList.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.gridControl_MedReg_StuList)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.gridView9)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_MedReg_Ser)).EndInit();
			this.groupControl_MedReg_Ser.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MedReg_Number.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MedReg_Name.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_MedReg_Class.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_MedReg_Grade.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_MedReg_MedInfo)).EndInit();
			this.groupControl_MedReg_MedInfo.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MedReg_MedName.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MedReg_Taketimes.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MedReg_MedTake.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MedReg_MedType.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_MedReg_MedCarrInfo)).EndInit();
			this.groupControl_MedReg_MedCarrInfo.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.listBoxControl_MedReg_MedCarrInfo)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.listBoxControl_MedReg_MedInfo)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_MedReg_DiagInfo)).EndInit();
			this.groupControl_MedReg_DiagInfo.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MedReg_Else.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MedReg_FacialSym.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MedReg_SkinSym.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MedReg_AbdomenSym.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MedReg_EnteronSym.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MedReg_ThroatSym.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MedReg_LungSym.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MedReg_UpperSym.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_MedReg_Diag.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.panelControl8)).EndInit();
			this.panelControl8.ResumeLayout(false);
			this.xtraTabPage9.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.splitContainerControl10)).EndInit();
			this.splitContainerControl10.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.groupControl_MedRec_AbnStuList)).EndInit();
			this.groupControl_MedRec_AbnStuList.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.gridControl_MedRec_AbnStuList)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.gridView10)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_MedRec_Ser)).EndInit();
			this.groupControl_MedRec_Ser.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MedRec_Number.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MedRec_Name.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.dateEdit_MedRec_EndDate.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.dateEdit_MedRec_BegDate.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MedRec_DoseRecDiaID.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MedRec_AbnDiaID.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_MedRec_Class.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_MedRec_Grade.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_MedRec_DiagAndDoseAdd)).EndInit();
			this.groupControl_MedRec_DiagAndDoseAdd.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.groupControl_MedRec_DoseAdd)).EndInit();
			this.groupControl_MedRec_DoseAdd.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.listBoxControl_MedRec_MedCarrInfo)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_MedRec_TakeRule.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.timeEdit_MedRec_TakeTime.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MedRec_MedTake.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MedRec_MedName.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_MedRec_DiagInfo)).EndInit();
			this.groupControl_MedRec_DiagInfo.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MedRec_Diag.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MedRec_Else.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MedRec_FacialSym.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MedRec_SkinSym.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MedRec_AbdomenSym.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MedRec_EnteronSym.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MedRec_ThroatSym.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MedRec_LungSym.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MedRec_UpperSym.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_MedRec_DoseRec)).EndInit();
			this.groupControl_MedRec_DoseRec.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.gridControl_MedRec_DoseRec)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.gridView11)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.gridView12)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.panelControl9)).EndInit();
			this.panelControl9.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.barManager1)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.popupMenu4)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.popupMenu1)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.popupMenu2)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.popupMenu3)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.gridView14)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.gridView3)).EndInit();
			this.ResumeLayout(false);

		}
示例#25
0
		/// <summary> 
		/// Required method for Designer support - do not modify 
		/// the contents of this method with the code editor.
		/// </summary>
		private void InitializeComponent()
		{
			System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(StudentBaseInfo));
			this.xtraTabControl_StuBaseInfo = new DevExpress.XtraTab.XtraTabControl();
			this.xtraTabPage_StuBaseInfoMgmt = new DevExpress.XtraTab.XtraTabPage();
			this.notePanel1 = new DevExpress.Utils.Frames.NotePanel();
			this.splitContainerControl_StuBaseInfo = new DevExpress.XtraEditors.SplitContainerControl();
			this.gridControl_ShowStu = new DevExpress.XtraGrid.GridControl();
			this.gridView1 = new DevExpress.XtraGrid.Views.Grid.GridView();
			this.gridColumn_stuNumber = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn_stuName = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn_stuClass = new DevExpress.XtraGrid.Columns.GridColumn();
			this.groupControl4 = new DevExpress.XtraEditors.GroupControl();
			this.dataNavigator_SerStu = new DevExpress.XtraEditors.DataNavigator();
			this.textEdit_Number = new DevExpress.XtraEditors.TextEdit();
			this.textEdit_Name = new DevExpress.XtraEditors.TextEdit();
			this.notePanel_Number = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_Name = new DevExpress.Utils.Frames.NotePanel();
			this.comboBoxEdit_Class = new DevExpress.XtraEditors.ComboBoxEdit();
			this.notePanel_Class = new DevExpress.Utils.Frames.NotePanel();
			this.comboBoxEdit_Grade = new DevExpress.XtraEditors.ComboBoxEdit();
			this.notePanel_Grade = new DevExpress.Utils.Frames.NotePanel();
			this.simpleButton1 = new DevExpress.XtraEditors.SimpleButton();
			this.simpleButton_printButton = new DevExpress.XtraEditors.SimpleButton();
			this.groupControl3 = new DevExpress.XtraEditors.GroupControl();
			this.textEdit_MOWorkingAddr = new DevExpress.XtraEditors.TextEdit();
			this.notePanel19 = new DevExpress.Utils.Frames.NotePanel();
			this.textEdit_MOPhone = new DevExpress.XtraEditors.TextEdit();
			this.textEdit_MOName = new DevExpress.XtraEditors.TextEdit();
			this.notePanel_MOPhone = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_MOName = new DevExpress.Utils.Frames.NotePanel();
			this.textEdit_FAWorkingAddr = new DevExpress.XtraEditors.TextEdit();
			this.notePanel_FAWorkingAddr = new DevExpress.Utils.Frames.NotePanel();
			this.textEdit_FAPhone = new DevExpress.XtraEditors.TextEdit();
			this.notePanel_FAPhone = new DevExpress.Utils.Frames.NotePanel();
			this.textEdit_FAName = new DevExpress.XtraEditors.TextEdit();
			this.notePanel_FAName = new DevExpress.Utils.Frames.NotePanel();
			this.groupControl2 = new DevExpress.XtraEditors.GroupControl();
			this.notePanel_HuKouAddr = new DevExpress.Utils.Frames.NotePanel();
			this.textEdit_HuKouAddr = new DevExpress.XtraEditors.TextEdit();
			this.notePanel_FamilyAddr = new DevExpress.Utils.Frames.NotePanel();
			this.textEdit_ILLHistory = new DevExpress.XtraEditors.TextEdit();
			this.textEdit_EMail = new DevExpress.XtraEditors.TextEdit();
			this.textEdit_BankID = new DevExpress.XtraEditors.TextEdit();
			this.notePanel_ILLHistory = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_EMail = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_BankID = new DevExpress.Utils.Frames.NotePanel();
			this.textEdit_Street = new DevExpress.XtraEditors.TextEdit();
			this.textEdit_JUWei = new DevExpress.XtraEditors.TextEdit();
			this.notePanel_ZIPCode = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_Phone = new DevExpress.Utils.Frames.NotePanel();
			this.textEdit_ZIPCode = new DevExpress.XtraEditors.TextEdit();
			this.textEdit_RegNote = new DevExpress.XtraEditors.TextEdit();
			this.textEdit_Native = new DevExpress.XtraEditors.TextEdit();
			this.textEdit_Nationality = new DevExpress.XtraEditors.TextEdit();
			this.notePanel_JUWei = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_Street = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_Native = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_Nationality = new DevExpress.Utils.Frames.NotePanel();
			this.textEdit_FamilyAddr = new DevExpress.XtraEditors.TextEdit();
			this.groupControl1 = new DevExpress.XtraEditors.GroupControl();
			this.dateEdit_Birthday = new DevExpress.XtraEditors.DateEdit();
			this.textEdit_KidOrigin = new DevExpress.XtraEditors.TextEdit();
			this.textEdit_GUID = new DevExpress.XtraEditors.TextEdit();
			this.dateEdit_EntryDate = new DevExpress.XtraEditors.DateEdit();
			this.label_RegOfEnrollKind = new System.Windows.Forms.Label();
			this.label_RegOfEnrollTime = new System.Windows.Forms.Label();
			this.label_RegOfBirthday = new System.Windows.Forms.Label();
			this.label_RegOfKidGender = new System.Windows.Forms.Label();
			this.label_ReqOfKidName = new System.Windows.Forms.Label();
			this.notePanel_KidBaseInfoTitle = new DevExpress.Utils.Frames.NotePanel();
			this.pictureEdit_LoadImageData = new DevExpress.XtraEditors.PictureEdit();
			this.barManager1 = new DevExpress.XtraBars.BarManager();
			this.popupMenu1 = new DevExpress.XtraBars.PopupMenu();
			this.barButtonItem1 = new DevExpress.XtraBars.BarButtonItem();
			this.barButtonItem2 = new DevExpress.XtraBars.BarButtonItem();
			this.barDockControlTop = new DevExpress.XtraBars.BarDockControl();
			this.barDockControlBottom = new DevExpress.XtraBars.BarDockControl();
			this.barDockControlLeft = new DevExpress.XtraBars.BarDockControl();
			this.barDockControlRight = new DevExpress.XtraBars.BarDockControl();
			this.barButtonItem_Refresh = new DevExpress.XtraBars.BarButtonItem();
			this.comboBoxEdit_EntryStatus = new DevExpress.XtraEditors.ComboBoxEdit();
			this.notePanel_KidNumber = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_EnrollKind = new DevExpress.Utils.Frames.NotePanel();
			this.comboBoxEdit_KidGender = new DevExpress.XtraEditors.ComboBoxEdit();
			this.textEdit_KidName = new DevExpress.XtraEditors.TextEdit();
			this.notePanel_KidOrigin = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_EnrollTime = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_Birthday = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_KidGender = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_KidName = new DevExpress.Utils.Frames.NotePanel();
			this.simpleButton_BlankButton = new DevExpress.XtraEditors.SimpleButton();
			this.simpleButton_SaveButton = new DevExpress.XtraEditors.SimpleButton();
			this.simpleButton_NewFile = new DevExpress.XtraEditors.SimpleButton();
			this.splitterControl1 = new DevExpress.XtraEditors.SplitterControl();
			this.openFileDialog1 = new System.Windows.Forms.OpenFileDialog();
			this.popupMenu2 = new DevExpress.XtraBars.PopupMenu();
			this.saveFileDialog_Report = new System.Windows.Forms.SaveFileDialog();
			this.helpProvider_StuBaseInfo = new System.Windows.Forms.HelpProvider();
			this.textEdit_StuDefaultNumber = new DevExpress.XtraEditors.TextEdit();
			((System.ComponentModel.ISupportInitialize)(this.xtraTabControl_StuBaseInfo)).BeginInit();
			this.xtraTabControl_StuBaseInfo.SuspendLayout();
			this.xtraTabPage_StuBaseInfoMgmt.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.splitContainerControl_StuBaseInfo)).BeginInit();
			this.splitContainerControl_StuBaseInfo.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.gridControl_ShowStu)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl4)).BeginInit();
			this.groupControl4.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_Number.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_Name.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_Class.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_Grade.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl3)).BeginInit();
			this.groupControl3.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MOWorkingAddr.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MOPhone.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MOName.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_FAWorkingAddr.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_FAPhone.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_FAName.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl2)).BeginInit();
			this.groupControl2.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_HuKouAddr.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_ILLHistory.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_EMail.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_BankID.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_Street.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_JUWei.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_ZIPCode.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_RegNote.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_Native.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_Nationality.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_FamilyAddr.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
			this.groupControl1.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.dateEdit_Birthday.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_KidOrigin.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_GUID.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.dateEdit_EntryDate.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.pictureEdit_LoadImageData.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.barManager1)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.popupMenu1)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_EntryStatus.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_KidGender.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_KidName.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.popupMenu2)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_StuDefaultNumber.Properties)).BeginInit();
			this.SuspendLayout();
			// 
			// xtraTabControl_StuBaseInfo
			// 
			this.xtraTabControl_StuBaseInfo.Appearance.BackColor = System.Drawing.Color.WhiteSmoke;
			this.xtraTabControl_StuBaseInfo.Appearance.Options.UseBackColor = true;
			this.xtraTabControl_StuBaseInfo.AppearancePage.HeaderActive.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
			this.xtraTabControl_StuBaseInfo.AppearancePage.HeaderActive.ForeColor = System.Drawing.Color.DarkOrange;
			this.xtraTabControl_StuBaseInfo.AppearancePage.HeaderActive.Options.UseFont = true;
			this.xtraTabControl_StuBaseInfo.AppearancePage.HeaderActive.Options.UseForeColor = true;
			this.xtraTabControl_StuBaseInfo.Controls.Add(this.xtraTabPage_StuBaseInfoMgmt);
			this.xtraTabControl_StuBaseInfo.Dock = System.Windows.Forms.DockStyle.Fill;
			this.xtraTabControl_StuBaseInfo.Location = new System.Drawing.Point(0, 0);
			this.xtraTabControl_StuBaseInfo.Name = "xtraTabControl_StuBaseInfo";
			this.xtraTabControl_StuBaseInfo.SelectedTabPage = this.xtraTabPage_StuBaseInfoMgmt;
			this.xtraTabControl_StuBaseInfo.Size = new System.Drawing.Size(772, 704);
			this.xtraTabControl_StuBaseInfo.TabIndex = 1;
			this.xtraTabControl_StuBaseInfo.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
																									   this.xtraTabPage_StuBaseInfoMgmt});
			this.xtraTabControl_StuBaseInfo.Text = "基本信息管理";
			// 
			// xtraTabPage_StuBaseInfoMgmt
			// 
			this.xtraTabPage_StuBaseInfoMgmt.Appearance.PageClient.BackColor = System.Drawing.Color.WhiteSmoke;
			this.xtraTabPage_StuBaseInfoMgmt.Appearance.PageClient.Options.UseBackColor = true;
			this.xtraTabPage_StuBaseInfoMgmt.Controls.Add(this.notePanel1);
			this.xtraTabPage_StuBaseInfoMgmt.Controls.Add(this.splitContainerControl_StuBaseInfo);
			this.xtraTabPage_StuBaseInfoMgmt.Name = "xtraTabPage_StuBaseInfoMgmt";
			this.xtraTabPage_StuBaseInfoMgmt.Size = new System.Drawing.Size(768, 679);
			this.xtraTabPage_StuBaseInfoMgmt.Text = "基本信息管理";
			// 
			// notePanel1
			// 
			this.notePanel1.BackColor = System.Drawing.Color.LightGoldenrodYellow;
			this.notePanel1.Dock = System.Windows.Forms.DockStyle.Top;
			this.notePanel1.ForeColor = System.Drawing.Color.OrangeRed;
			this.notePanel1.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel1.Location = new System.Drawing.Point(0, 0);
			this.notePanel1.MaxRows = 5;
			this.notePanel1.Name = "notePanel1";
			this.notePanel1.ParentAutoHeight = true;
			this.notePanel1.Size = new System.Drawing.Size(768, 23);
			this.notePanel1.TabIndex = 5;
			this.notePanel1.TabStop = false;
			this.notePanel1.Text = "某某老师欢迎进入学生基本信息检索";
			// 
			// splitContainerControl_StuBaseInfo
			// 
			this.splitContainerControl_StuBaseInfo.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
				| System.Windows.Forms.AnchorStyles.Right)));
			this.splitContainerControl_StuBaseInfo.Location = new System.Drawing.Point(0, 24);
			this.splitContainerControl_StuBaseInfo.Name = "splitContainerControl_StuBaseInfo";
			this.splitContainerControl_StuBaseInfo.Panel1.Controls.Add(this.gridControl_ShowStu);
			this.splitContainerControl_StuBaseInfo.Panel1.Controls.Add(this.groupControl4);
			this.splitContainerControl_StuBaseInfo.Panel1.Text = "splitContainerControl1_Panel1";
			this.splitContainerControl_StuBaseInfo.Panel2.Controls.Add(this.simpleButton1);
			this.splitContainerControl_StuBaseInfo.Panel2.Controls.Add(this.simpleButton_printButton);
			this.splitContainerControl_StuBaseInfo.Panel2.Controls.Add(this.groupControl3);
			this.splitContainerControl_StuBaseInfo.Panel2.Controls.Add(this.groupControl2);
			this.splitContainerControl_StuBaseInfo.Panel2.Controls.Add(this.groupControl1);
			this.splitContainerControl_StuBaseInfo.Panel2.Controls.Add(this.simpleButton_BlankButton);
			this.splitContainerControl_StuBaseInfo.Panel2.Controls.Add(this.simpleButton_SaveButton);
			this.splitContainerControl_StuBaseInfo.Panel2.Controls.Add(this.simpleButton_NewFile);
			this.splitContainerControl_StuBaseInfo.Panel2.Text = "splitContainerControl1_Panel2";
			this.splitContainerControl_StuBaseInfo.Size = new System.Drawing.Size(770, 544);
			this.splitContainerControl_StuBaseInfo.SplitterPosition = 200;
			this.splitContainerControl_StuBaseInfo.TabIndex = 4;
			this.splitContainerControl_StuBaseInfo.Text = "splitContainerControl1";
			// 
			// gridControl_ShowStu
			// 
			this.gridControl_ShowStu.Dock = System.Windows.Forms.DockStyle.Fill;
			// 
			// gridControl_ShowStu.EmbeddedNavigator
			// 
			this.gridControl_ShowStu.EmbeddedNavigator.Name = "";
			this.gridControl_ShowStu.Location = new System.Drawing.Point(0, 192);
			this.gridControl_ShowStu.MainView = this.gridView1;
			this.gridControl_ShowStu.Name = "gridControl_ShowStu";
			this.gridControl_ShowStu.Size = new System.Drawing.Size(194, 346);
			this.gridControl_ShowStu.TabIndex = 1;
			this.gridControl_ShowStu.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
																											   this.gridView1});
			// 
			// gridView1
			// 
			this.gridView1.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
																							 this.gridColumn_stuNumber,
																							 this.gridColumn_stuName,
																							 this.gridColumn_stuClass});
			this.gridView1.GridControl = this.gridControl_ShowStu;
			this.gridView1.Name = "gridView1";
			this.gridView1.OptionsCustomization.AllowFilter = false;
			this.gridView1.OptionsView.ShowGroupPanel = false;
			// 
			// gridColumn_stuNumber
			// 
			this.gridColumn_stuNumber.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn_stuNumber.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn_stuNumber.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn_stuNumber.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn_stuNumber.Caption = "学号";
			this.gridColumn_stuNumber.FieldName = "info_stuNumber";
			this.gridColumn_stuNumber.Name = "gridColumn_stuNumber";
			this.gridColumn_stuNumber.OptionsColumn.AllowEdit = false;
			this.gridColumn_stuNumber.OptionsColumn.AllowFocus = false;
			this.gridColumn_stuNumber.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn_stuNumber.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn_stuNumber.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn_stuNumber.OptionsColumn.AllowMove = false;
			this.gridColumn_stuNumber.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn_stuNumber.OptionsColumn.FixedWidth = true;
			this.gridColumn_stuNumber.OptionsColumn.ReadOnly = true;
			this.gridColumn_stuNumber.OptionsFilter.AllowFilter = false;
			this.gridColumn_stuNumber.Visible = true;
			this.gridColumn_stuNumber.VisibleIndex = 0;
			this.gridColumn_stuNumber.Width = 53;
			// 
			// gridColumn_stuName
			// 
			this.gridColumn_stuName.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn_stuName.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn_stuName.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn_stuName.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn_stuName.Caption = "姓名";
			this.gridColumn_stuName.FieldName = "info_stuName";
			this.gridColumn_stuName.Name = "gridColumn_stuName";
			this.gridColumn_stuName.OptionsColumn.AllowEdit = false;
			this.gridColumn_stuName.OptionsColumn.AllowFocus = false;
			this.gridColumn_stuName.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn_stuName.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn_stuName.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn_stuName.OptionsColumn.AllowMove = false;
			this.gridColumn_stuName.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn_stuName.OptionsColumn.FixedWidth = true;
			this.gridColumn_stuName.OptionsColumn.ReadOnly = true;
			this.gridColumn_stuName.Visible = true;
			this.gridColumn_stuName.VisibleIndex = 1;
			this.gridColumn_stuName.Width = 62;
			// 
			// gridColumn_stuClass
			// 
			this.gridColumn_stuClass.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn_stuClass.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn_stuClass.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn_stuClass.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn_stuClass.Caption = "班级";
			this.gridColumn_stuClass.FieldName = "info_className";
			this.gridColumn_stuClass.Name = "gridColumn_stuClass";
			this.gridColumn_stuClass.OptionsColumn.AllowEdit = false;
			this.gridColumn_stuClass.OptionsColumn.AllowFocus = false;
			this.gridColumn_stuClass.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn_stuClass.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn_stuClass.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn_stuClass.OptionsColumn.AllowMove = false;
			this.gridColumn_stuClass.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn_stuClass.OptionsColumn.FixedWidth = true;
			this.gridColumn_stuClass.OptionsColumn.ReadOnly = true;
			this.gridColumn_stuClass.Visible = true;
			this.gridColumn_stuClass.VisibleIndex = 2;
			this.gridColumn_stuClass.Width = 65;
			// 
			// groupControl4
			// 
			this.groupControl4.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.groupControl4.Appearance.Options.UseFont = true;
			this.groupControl4.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.groupControl4.AppearanceCaption.Options.UseFont = true;
			this.groupControl4.Controls.Add(this.dataNavigator_SerStu);
			this.groupControl4.Controls.Add(this.textEdit_Number);
			this.groupControl4.Controls.Add(this.textEdit_Name);
			this.groupControl4.Controls.Add(this.notePanel_Number);
			this.groupControl4.Controls.Add(this.notePanel_Name);
			this.groupControl4.Controls.Add(this.comboBoxEdit_Class);
			this.groupControl4.Controls.Add(this.notePanel_Class);
			this.groupControl4.Controls.Add(this.comboBoxEdit_Grade);
			this.groupControl4.Controls.Add(this.notePanel_Grade);
			this.groupControl4.Dock = System.Windows.Forms.DockStyle.Top;
			this.groupControl4.Location = new System.Drawing.Point(0, 0);
			this.groupControl4.Name = "groupControl4";
			this.groupControl4.Size = new System.Drawing.Size(194, 192);
			this.groupControl4.TabIndex = 0;
			this.groupControl4.Text = "我的班级";
			// 
			// dataNavigator_SerStu
			// 
			this.dataNavigator_SerStu.Buttons.Append.Hint = "新建卡";
			this.dataNavigator_SerStu.Buttons.Append.Visible = false;
			this.dataNavigator_SerStu.Buttons.CancelEdit.Visible = false;
			this.dataNavigator_SerStu.Buttons.EndEdit.Visible = false;
			this.dataNavigator_SerStu.Buttons.First.Hint = "第一条记录";
			this.dataNavigator_SerStu.Buttons.Last.Hint = "最后一条记录";
			this.dataNavigator_SerStu.Buttons.Next.Hint = "下一条记录";
			this.dataNavigator_SerStu.Buttons.NextPage.Visible = false;
			this.dataNavigator_SerStu.Buttons.Prev.Hint = "上一条记录";
			this.dataNavigator_SerStu.Buttons.PrevPage.Visible = false;
			this.dataNavigator_SerStu.Buttons.Remove.Visible = false;
			this.dataNavigator_SerStu.Dock = System.Windows.Forms.DockStyle.Bottom;
			this.dataNavigator_SerStu.Location = new System.Drawing.Point(3, 161);
			this.dataNavigator_SerStu.Name = "dataNavigator_SerStu";
			this.dataNavigator_SerStu.ShowToolTips = true;
			this.dataNavigator_SerStu.Size = new System.Drawing.Size(188, 28);
			this.dataNavigator_SerStu.TabIndex = 31;
			this.dataNavigator_SerStu.Text = "dataNavigator1";
			this.dataNavigator_SerStu.TextLocation = DevExpress.XtraEditors.NavigatorButtonsTextLocation.End;
			// 
			// textEdit_Number
			// 
			this.textEdit_Number.EditValue = "";
			this.textEdit_Number.Location = new System.Drawing.Point(88, 128);
			this.textEdit_Number.Name = "textEdit_Number";
			this.textEdit_Number.Size = new System.Drawing.Size(88, 23);
			this.textEdit_Number.TabIndex = 30;
			this.textEdit_Number.EditValueChanged += new System.EventHandler(this.textEdit_Number_EditValueChanged);
			// 
			// textEdit_Name
			// 
			this.textEdit_Name.EditValue = "";
			this.textEdit_Name.Location = new System.Drawing.Point(88, 96);
			this.textEdit_Name.Name = "textEdit_Name";
			this.textEdit_Name.Size = new System.Drawing.Size(88, 23);
			this.textEdit_Name.TabIndex = 29;
			this.textEdit_Name.EditValueChanged += new System.EventHandler(this.textEdit_Name_EditValueChanged);
			// 
			// notePanel_Number
			// 
			this.notePanel_Number.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_Number.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_Number.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_Number.ForeColor = System.Drawing.Color.Black;
			this.notePanel_Number.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_Number.Location = new System.Drawing.Point(16, 128);
			this.notePanel_Number.MaxRows = 5;
			this.notePanel_Number.Name = "notePanel_Number";
			this.notePanel_Number.ParentAutoHeight = true;
			this.notePanel_Number.Size = new System.Drawing.Size(64, 22);
			this.notePanel_Number.TabIndex = 16;
			this.notePanel_Number.TabStop = false;
			this.notePanel_Number.Text = "学  号:";
			// 
			// notePanel_Name
			// 
			this.notePanel_Name.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_Name.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_Name.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_Name.ForeColor = System.Drawing.Color.Black;
			this.notePanel_Name.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_Name.Location = new System.Drawing.Point(16, 96);
			this.notePanel_Name.MaxRows = 5;
			this.notePanel_Name.Name = "notePanel_Name";
			this.notePanel_Name.ParentAutoHeight = true;
			this.notePanel_Name.Size = new System.Drawing.Size(64, 22);
			this.notePanel_Name.TabIndex = 15;
			this.notePanel_Name.TabStop = false;
			this.notePanel_Name.Text = "姓  名:";
			// 
			// comboBoxEdit_Class
			// 
			this.comboBoxEdit_Class.EditValue = "全部";
			this.comboBoxEdit_Class.Location = new System.Drawing.Point(88, 64);
			this.comboBoxEdit_Class.Name = "comboBoxEdit_Class";
			// 
			// comboBoxEdit_Class.Properties
			// 
			this.comboBoxEdit_Class.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																													   new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.comboBoxEdit_Class.Properties.Items.AddRange(new object[] {
																			   "全部"});
			this.comboBoxEdit_Class.Size = new System.Drawing.Size(88, 23);
			this.comboBoxEdit_Class.TabIndex = 13;
			this.comboBoxEdit_Class.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit_Class_SelectedIndexChanged);
			// 
			// notePanel_Class
			// 
			this.notePanel_Class.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_Class.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_Class.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_Class.ForeColor = System.Drawing.Color.Black;
			this.notePanel_Class.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_Class.Location = new System.Drawing.Point(16, 64);
			this.notePanel_Class.MaxRows = 5;
			this.notePanel_Class.Name = "notePanel_Class";
			this.notePanel_Class.ParentAutoHeight = true;
			this.notePanel_Class.Size = new System.Drawing.Size(64, 22);
			this.notePanel_Class.TabIndex = 12;
			this.notePanel_Class.TabStop = false;
			this.notePanel_Class.Text = "班  级:";
			// 
			// comboBoxEdit_Grade
			// 
			this.comboBoxEdit_Grade.EditValue = "全部";
			this.comboBoxEdit_Grade.Location = new System.Drawing.Point(88, 32);
			this.comboBoxEdit_Grade.Name = "comboBoxEdit_Grade";
			// 
			// comboBoxEdit_Grade.Properties
			// 
			this.comboBoxEdit_Grade.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																													   new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.comboBoxEdit_Grade.Properties.Items.AddRange(new object[] {
																			   "全部"});
			this.comboBoxEdit_Grade.Size = new System.Drawing.Size(88, 23);
			this.comboBoxEdit_Grade.TabIndex = 11;
			this.comboBoxEdit_Grade.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit_Grade_SelectedIndexChanged);
			// 
			// notePanel_Grade
			// 
			this.notePanel_Grade.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_Grade.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_Grade.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_Grade.ForeColor = System.Drawing.Color.Black;
			this.notePanel_Grade.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_Grade.Location = new System.Drawing.Point(16, 32);
			this.notePanel_Grade.MaxRows = 5;
			this.notePanel_Grade.Name = "notePanel_Grade";
			this.notePanel_Grade.ParentAutoHeight = true;
			this.notePanel_Grade.Size = new System.Drawing.Size(64, 22);
			this.notePanel_Grade.TabIndex = 5;
			this.notePanel_Grade.TabStop = false;
			this.notePanel_Grade.Text = "年  级:";
			// 
			// simpleButton1
			// 
			this.simpleButton1.Appearance.ForeColor = System.Drawing.Color.DarkMagenta;
			this.simpleButton1.Appearance.Options.UseForeColor = true;
			this.simpleButton1.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton1.Image")));
			this.simpleButton1.Location = new System.Drawing.Point(370, 2);
			this.simpleButton1.Name = "simpleButton1";
			this.simpleButton1.Size = new System.Drawing.Size(96, 26);
			this.simpleButton1.TabIndex = 12;
			this.simpleButton1.Text = "导出信息";
			this.simpleButton1.Click += new System.EventHandler(this.simpleButton1_Click);
			// 
			// simpleButton_printButton
			// 
			this.simpleButton_printButton.Appearance.ForeColor = System.Drawing.Color.DarkMagenta;
			this.simpleButton_printButton.Appearance.Options.UseForeColor = true;
			this.simpleButton_printButton.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton_printButton.Image")));
			this.simpleButton_printButton.Location = new System.Drawing.Point(280, 2);
			this.simpleButton_printButton.Name = "simpleButton_printButton";
			this.simpleButton_printButton.Size = new System.Drawing.Size(80, 26);
			this.simpleButton_printButton.TabIndex = 11;
			this.simpleButton_printButton.Text = "打  印";
			this.simpleButton_printButton.Click += new System.EventHandler(this.simpleButton_printButton_Click);
			// 
			// groupControl3
			// 
			this.groupControl3.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.groupControl3.AppearanceCaption.Options.UseFont = true;
			this.groupControl3.Controls.Add(this.textEdit_MOWorkingAddr);
			this.groupControl3.Controls.Add(this.notePanel19);
			this.groupControl3.Controls.Add(this.textEdit_MOPhone);
			this.groupControl3.Controls.Add(this.textEdit_MOName);
			this.groupControl3.Controls.Add(this.notePanel_MOPhone);
			this.groupControl3.Controls.Add(this.notePanel_MOName);
			this.groupControl3.Controls.Add(this.textEdit_FAWorkingAddr);
			this.groupControl3.Controls.Add(this.notePanel_FAWorkingAddr);
			this.groupControl3.Controls.Add(this.textEdit_FAPhone);
			this.groupControl3.Controls.Add(this.notePanel_FAPhone);
			this.groupControl3.Controls.Add(this.textEdit_FAName);
			this.groupControl3.Controls.Add(this.notePanel_FAName);
			this.groupControl3.Location = new System.Drawing.Point(0, 384);
			this.groupControl3.Name = "groupControl3";
			this.groupControl3.Size = new System.Drawing.Size(600, 152);
			this.groupControl3.TabIndex = 9;
			this.groupControl3.Text = "幼儿父母信息";
			// 
			// textEdit_MOWorkingAddr
			// 
			this.textEdit_MOWorkingAddr.EditValue = "";
			this.textEdit_MOWorkingAddr.Location = new System.Drawing.Point(120, 120);
			this.textEdit_MOWorkingAddr.Name = "textEdit_MOWorkingAddr";
			this.textEdit_MOWorkingAddr.Size = new System.Drawing.Size(432, 23);
			this.textEdit_MOWorkingAddr.TabIndex = 54;
			// 
			// notePanel19
			// 
			this.notePanel19.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel19.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel19.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel19.ForeColor = System.Drawing.Color.Black;
			this.notePanel19.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel19.Location = new System.Drawing.Point(32, 120);
			this.notePanel19.MaxRows = 5;
			this.notePanel19.Name = "notePanel19";
			this.notePanel19.ParentAutoHeight = true;
			this.notePanel19.Size = new System.Drawing.Size(80, 22);
			this.notePanel19.TabIndex = 53;
			this.notePanel19.TabStop = false;
			this.notePanel19.Text = "工作单位:";
			// 
			// textEdit_MOPhone
			// 
			this.textEdit_MOPhone.EditValue = "";
			this.textEdit_MOPhone.Location = new System.Drawing.Point(408, 88);
			this.textEdit_MOPhone.Name = "textEdit_MOPhone";
			this.textEdit_MOPhone.Size = new System.Drawing.Size(144, 23);
			this.textEdit_MOPhone.TabIndex = 52;
			// 
			// textEdit_MOName
			// 
			this.textEdit_MOName.EditValue = "";
			this.textEdit_MOName.Location = new System.Drawing.Point(120, 88);
			this.textEdit_MOName.Name = "textEdit_MOName";
			this.textEdit_MOName.Size = new System.Drawing.Size(184, 23);
			this.textEdit_MOName.TabIndex = 51;
			// 
			// notePanel_MOPhone
			// 
			this.notePanel_MOPhone.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_MOPhone.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_MOPhone.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_MOPhone.ForeColor = System.Drawing.Color.Black;
			this.notePanel_MOPhone.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_MOPhone.Location = new System.Drawing.Point(320, 88);
			this.notePanel_MOPhone.MaxRows = 5;
			this.notePanel_MOPhone.Name = "notePanel_MOPhone";
			this.notePanel_MOPhone.ParentAutoHeight = true;
			this.notePanel_MOPhone.Size = new System.Drawing.Size(80, 22);
			this.notePanel_MOPhone.TabIndex = 50;
			this.notePanel_MOPhone.TabStop = false;
			this.notePanel_MOPhone.Text = "联系电话:";
			// 
			// notePanel_MOName
			// 
			this.notePanel_MOName.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_MOName.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_MOName.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_MOName.ForeColor = System.Drawing.Color.Black;
			this.notePanel_MOName.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_MOName.Location = new System.Drawing.Point(32, 88);
			this.notePanel_MOName.MaxRows = 5;
			this.notePanel_MOName.Name = "notePanel_MOName";
			this.notePanel_MOName.ParentAutoHeight = true;
			this.notePanel_MOName.Size = new System.Drawing.Size(80, 22);
			this.notePanel_MOName.TabIndex = 49;
			this.notePanel_MOName.TabStop = false;
			this.notePanel_MOName.Text = "母亲姓名:";
			// 
			// textEdit_FAWorkingAddr
			// 
			this.textEdit_FAWorkingAddr.EditValue = "";
			this.textEdit_FAWorkingAddr.Location = new System.Drawing.Point(120, 56);
			this.textEdit_FAWorkingAddr.Name = "textEdit_FAWorkingAddr";
			this.textEdit_FAWorkingAddr.Size = new System.Drawing.Size(432, 23);
			this.textEdit_FAWorkingAddr.TabIndex = 48;
			// 
			// notePanel_FAWorkingAddr
			// 
			this.notePanel_FAWorkingAddr.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_FAWorkingAddr.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_FAWorkingAddr.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_FAWorkingAddr.ForeColor = System.Drawing.Color.Black;
			this.notePanel_FAWorkingAddr.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_FAWorkingAddr.Location = new System.Drawing.Point(32, 56);
			this.notePanel_FAWorkingAddr.MaxRows = 5;
			this.notePanel_FAWorkingAddr.Name = "notePanel_FAWorkingAddr";
			this.notePanel_FAWorkingAddr.ParentAutoHeight = true;
			this.notePanel_FAWorkingAddr.Size = new System.Drawing.Size(80, 22);
			this.notePanel_FAWorkingAddr.TabIndex = 32;
			this.notePanel_FAWorkingAddr.TabStop = false;
			this.notePanel_FAWorkingAddr.Text = "工作单位:";
			// 
			// textEdit_FAPhone
			// 
			this.textEdit_FAPhone.EditValue = "";
			this.textEdit_FAPhone.Location = new System.Drawing.Point(408, 24);
			this.textEdit_FAPhone.Name = "textEdit_FAPhone";
			this.textEdit_FAPhone.Size = new System.Drawing.Size(144, 23);
			this.textEdit_FAPhone.TabIndex = 31;
			// 
			// notePanel_FAPhone
			// 
			this.notePanel_FAPhone.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_FAPhone.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_FAPhone.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_FAPhone.ForeColor = System.Drawing.Color.Black;
			this.notePanel_FAPhone.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_FAPhone.Location = new System.Drawing.Point(320, 24);
			this.notePanel_FAPhone.MaxRows = 5;
			this.notePanel_FAPhone.Name = "notePanel_FAPhone";
			this.notePanel_FAPhone.ParentAutoHeight = true;
			this.notePanel_FAPhone.Size = new System.Drawing.Size(80, 22);
			this.notePanel_FAPhone.TabIndex = 30;
			this.notePanel_FAPhone.TabStop = false;
			this.notePanel_FAPhone.Text = "联系电话:";
			// 
			// textEdit_FAName
			// 
			this.textEdit_FAName.EditValue = "";
			this.textEdit_FAName.Location = new System.Drawing.Point(120, 24);
			this.textEdit_FAName.Name = "textEdit_FAName";
			this.textEdit_FAName.Size = new System.Drawing.Size(184, 23);
			this.textEdit_FAName.TabIndex = 29;
			// 
			// notePanel_FAName
			// 
			this.notePanel_FAName.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_FAName.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_FAName.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_FAName.ForeColor = System.Drawing.Color.Black;
			this.notePanel_FAName.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_FAName.Location = new System.Drawing.Point(32, 24);
			this.notePanel_FAName.MaxRows = 5;
			this.notePanel_FAName.Name = "notePanel_FAName";
			this.notePanel_FAName.ParentAutoHeight = true;
			this.notePanel_FAName.Size = new System.Drawing.Size(80, 22);
			this.notePanel_FAName.TabIndex = 25;
			this.notePanel_FAName.TabStop = false;
			this.notePanel_FAName.Text = "父亲姓名:";
			// 
			// groupControl2
			// 
			this.groupControl2.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.groupControl2.AppearanceCaption.Options.UseFont = true;
			this.groupControl2.Controls.Add(this.notePanel_HuKouAddr);
			this.groupControl2.Controls.Add(this.textEdit_HuKouAddr);
			this.groupControl2.Controls.Add(this.notePanel_FamilyAddr);
			this.groupControl2.Controls.Add(this.textEdit_ILLHistory);
			this.groupControl2.Controls.Add(this.textEdit_EMail);
			this.groupControl2.Controls.Add(this.textEdit_BankID);
			this.groupControl2.Controls.Add(this.notePanel_ILLHistory);
			this.groupControl2.Controls.Add(this.notePanel_EMail);
			this.groupControl2.Controls.Add(this.notePanel_BankID);
			this.groupControl2.Controls.Add(this.textEdit_Street);
			this.groupControl2.Controls.Add(this.textEdit_JUWei);
			this.groupControl2.Controls.Add(this.notePanel_ZIPCode);
			this.groupControl2.Controls.Add(this.notePanel_Phone);
			this.groupControl2.Controls.Add(this.textEdit_ZIPCode);
			this.groupControl2.Controls.Add(this.textEdit_RegNote);
			this.groupControl2.Controls.Add(this.textEdit_Native);
			this.groupControl2.Controls.Add(this.textEdit_Nationality);
			this.groupControl2.Controls.Add(this.notePanel_JUWei);
			this.groupControl2.Controls.Add(this.notePanel_Street);
			this.groupControl2.Controls.Add(this.notePanel_Native);
			this.groupControl2.Controls.Add(this.notePanel_Nationality);
			this.groupControl2.Controls.Add(this.textEdit_FamilyAddr);
			this.groupControl2.Location = new System.Drawing.Point(0, 192);
			this.groupControl2.Name = "groupControl2";
			this.groupControl2.Size = new System.Drawing.Size(600, 192);
			this.groupControl2.TabIndex = 8;
			this.groupControl2.Text = "幼儿扩展信息";
			// 
			// notePanel_HuKouAddr
			// 
			this.notePanel_HuKouAddr.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_HuKouAddr.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_HuKouAddr.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_HuKouAddr.ForeColor = System.Drawing.Color.Black;
			this.notePanel_HuKouAddr.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_HuKouAddr.Location = new System.Drawing.Point(33, 152);
			this.notePanel_HuKouAddr.MaxRows = 5;
			this.notePanel_HuKouAddr.Name = "notePanel_HuKouAddr";
			this.notePanel_HuKouAddr.ParentAutoHeight = true;
			this.notePanel_HuKouAddr.Size = new System.Drawing.Size(80, 22);
			this.notePanel_HuKouAddr.TabIndex = 44;
			this.notePanel_HuKouAddr.TabStop = false;
			this.notePanel_HuKouAddr.Text = "户口地址:";
			// 
			// textEdit_HuKouAddr
			// 
			this.textEdit_HuKouAddr.EditValue = "";
			this.textEdit_HuKouAddr.Location = new System.Drawing.Point(120, 152);
			this.textEdit_HuKouAddr.Name = "textEdit_HuKouAddr";
			this.textEdit_HuKouAddr.Size = new System.Drawing.Size(432, 23);
			this.textEdit_HuKouAddr.TabIndex = 43;
			// 
			// notePanel_FamilyAddr
			// 
			this.notePanel_FamilyAddr.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_FamilyAddr.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_FamilyAddr.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_FamilyAddr.ForeColor = System.Drawing.Color.Black;
			this.notePanel_FamilyAddr.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_FamilyAddr.Location = new System.Drawing.Point(33, 120);
			this.notePanel_FamilyAddr.MaxRows = 5;
			this.notePanel_FamilyAddr.Name = "notePanel_FamilyAddr";
			this.notePanel_FamilyAddr.ParentAutoHeight = true;
			this.notePanel_FamilyAddr.Size = new System.Drawing.Size(80, 22);
			this.notePanel_FamilyAddr.TabIndex = 42;
			this.notePanel_FamilyAddr.TabStop = false;
			this.notePanel_FamilyAddr.Text = "家庭地址:";
			// 
			// textEdit_ILLHistory
			// 
			this.textEdit_ILLHistory.EditValue = "";
			this.textEdit_ILLHistory.Location = new System.Drawing.Point(472, 88);
			this.textEdit_ILLHistory.Name = "textEdit_ILLHistory";
			this.textEdit_ILLHistory.Size = new System.Drawing.Size(80, 23);
			this.textEdit_ILLHistory.TabIndex = 41;
			// 
			// textEdit_EMail
			// 
			this.textEdit_EMail.EditValue = "";
			this.textEdit_EMail.Location = new System.Drawing.Point(296, 88);
			this.textEdit_EMail.Name = "textEdit_EMail";
			this.textEdit_EMail.Size = new System.Drawing.Size(80, 23);
			this.textEdit_EMail.TabIndex = 40;
			// 
			// textEdit_BankID
			// 
			this.textEdit_BankID.EditValue = "";
			this.textEdit_BankID.Location = new System.Drawing.Point(120, 88);
			this.textEdit_BankID.Name = "textEdit_BankID";
			this.textEdit_BankID.Size = new System.Drawing.Size(80, 23);
			this.textEdit_BankID.TabIndex = 39;
			// 
			// notePanel_ILLHistory
			// 
			this.notePanel_ILLHistory.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_ILLHistory.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_ILLHistory.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_ILLHistory.ForeColor = System.Drawing.Color.Black;
			this.notePanel_ILLHistory.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_ILLHistory.Location = new System.Drawing.Point(385, 88);
			this.notePanel_ILLHistory.MaxRows = 5;
			this.notePanel_ILLHistory.Name = "notePanel_ILLHistory";
			this.notePanel_ILLHistory.ParentAutoHeight = true;
			this.notePanel_ILLHistory.Size = new System.Drawing.Size(79, 22);
			this.notePanel_ILLHistory.TabIndex = 38;
			this.notePanel_ILLHistory.TabStop = false;
			this.notePanel_ILLHistory.Text = "病史记录:";
			// 
			// notePanel_EMail
			// 
			this.notePanel_EMail.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_EMail.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_EMail.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_EMail.ForeColor = System.Drawing.Color.Black;
			this.notePanel_EMail.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_EMail.Location = new System.Drawing.Point(209, 88);
			this.notePanel_EMail.MaxRows = 5;
			this.notePanel_EMail.Name = "notePanel_EMail";
			this.notePanel_EMail.ParentAutoHeight = true;
			this.notePanel_EMail.Size = new System.Drawing.Size(79, 22);
			this.notePanel_EMail.TabIndex = 37;
			this.notePanel_EMail.TabStop = false;
			this.notePanel_EMail.Text = "电子邮件:";
			// 
			// notePanel_BankID
			// 
			this.notePanel_BankID.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_BankID.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_BankID.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_BankID.ForeColor = System.Drawing.Color.Black;
			this.notePanel_BankID.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_BankID.Location = new System.Drawing.Point(33, 88);
			this.notePanel_BankID.MaxRows = 5;
			this.notePanel_BankID.Name = "notePanel_BankID";
			this.notePanel_BankID.ParentAutoHeight = true;
			this.notePanel_BankID.Size = new System.Drawing.Size(79, 22);
			this.notePanel_BankID.TabIndex = 36;
			this.notePanel_BankID.TabStop = false;
			this.notePanel_BankID.Text = "银行卡号:";
			// 
			// textEdit_Street
			// 
			this.textEdit_Street.EditValue = "";
			this.textEdit_Street.Location = new System.Drawing.Point(472, 24);
			this.textEdit_Street.Name = "textEdit_Street";
			this.textEdit_Street.Size = new System.Drawing.Size(80, 23);
			this.textEdit_Street.TabIndex = 35;
			// 
			// textEdit_JUWei
			// 
			this.textEdit_JUWei.EditValue = "";
			this.textEdit_JUWei.Location = new System.Drawing.Point(472, 56);
			this.textEdit_JUWei.Name = "textEdit_JUWei";
			this.textEdit_JUWei.Size = new System.Drawing.Size(80, 23);
			this.textEdit_JUWei.TabIndex = 34;
			// 
			// notePanel_ZIPCode
			// 
			this.notePanel_ZIPCode.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_ZIPCode.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_ZIPCode.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_ZIPCode.ForeColor = System.Drawing.Color.Black;
			this.notePanel_ZIPCode.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_ZIPCode.Location = new System.Drawing.Point(209, 56);
			this.notePanel_ZIPCode.MaxRows = 5;
			this.notePanel_ZIPCode.Name = "notePanel_ZIPCode";
			this.notePanel_ZIPCode.ParentAutoHeight = true;
			this.notePanel_ZIPCode.Size = new System.Drawing.Size(79, 22);
			this.notePanel_ZIPCode.TabIndex = 33;
			this.notePanel_ZIPCode.TabStop = false;
			this.notePanel_ZIPCode.Text = "邮政编码:";
			// 
			// notePanel_Phone
			// 
			this.notePanel_Phone.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_Phone.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_Phone.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_Phone.ForeColor = System.Drawing.Color.Black;
			this.notePanel_Phone.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_Phone.Location = new System.Drawing.Point(209, 24);
			this.notePanel_Phone.MaxRows = 5;
			this.notePanel_Phone.Name = "notePanel_Phone";
			this.notePanel_Phone.ParentAutoHeight = true;
			this.notePanel_Phone.Size = new System.Drawing.Size(79, 22);
			this.notePanel_Phone.TabIndex = 32;
			this.notePanel_Phone.TabStop = false;
			this.notePanel_Phone.Text = "短信注册:";
			// 
			// textEdit_ZIPCode
			// 
			this.textEdit_ZIPCode.EditValue = "";
			this.textEdit_ZIPCode.Location = new System.Drawing.Point(296, 56);
			this.textEdit_ZIPCode.Name = "textEdit_ZIPCode";
			this.textEdit_ZIPCode.Size = new System.Drawing.Size(80, 23);
			this.textEdit_ZIPCode.TabIndex = 31;
			// 
			// textEdit_RegNote
			// 
			this.textEdit_RegNote.EditValue = "";
			this.textEdit_RegNote.Location = new System.Drawing.Point(296, 24);
			this.textEdit_RegNote.Name = "textEdit_RegNote";
			this.textEdit_RegNote.Size = new System.Drawing.Size(80, 23);
			this.textEdit_RegNote.TabIndex = 30;
			// 
			// textEdit_Native
			// 
			this.textEdit_Native.EditValue = "";
			this.textEdit_Native.Location = new System.Drawing.Point(120, 56);
			this.textEdit_Native.Name = "textEdit_Native";
			this.textEdit_Native.Size = new System.Drawing.Size(80, 23);
			this.textEdit_Native.TabIndex = 29;
			// 
			// textEdit_Nationality
			// 
			this.textEdit_Nationality.EditValue = "";
			this.textEdit_Nationality.Location = new System.Drawing.Point(120, 24);
			this.textEdit_Nationality.Name = "textEdit_Nationality";
			this.textEdit_Nationality.Size = new System.Drawing.Size(80, 23);
			this.textEdit_Nationality.TabIndex = 28;
			// 
			// notePanel_JUWei
			// 
			this.notePanel_JUWei.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_JUWei.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_JUWei.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_JUWei.ForeColor = System.Drawing.Color.Black;
			this.notePanel_JUWei.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_JUWei.Location = new System.Drawing.Point(385, 56);
			this.notePanel_JUWei.MaxRows = 5;
			this.notePanel_JUWei.Name = "notePanel_JUWei";
			this.notePanel_JUWei.ParentAutoHeight = true;
			this.notePanel_JUWei.Size = new System.Drawing.Size(79, 22);
			this.notePanel_JUWei.TabIndex = 27;
			this.notePanel_JUWei.TabStop = false;
			this.notePanel_JUWei.Text = "所在里委:";
			// 
			// notePanel_Street
			// 
			this.notePanel_Street.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_Street.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_Street.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_Street.ForeColor = System.Drawing.Color.Black;
			this.notePanel_Street.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_Street.Location = new System.Drawing.Point(385, 24);
			this.notePanel_Street.MaxRows = 5;
			this.notePanel_Street.Name = "notePanel_Street";
			this.notePanel_Street.ParentAutoHeight = true;
			this.notePanel_Street.Size = new System.Drawing.Size(79, 22);
			this.notePanel_Street.TabIndex = 26;
			this.notePanel_Street.TabStop = false;
			this.notePanel_Street.Text = "所在街道:";
			// 
			// notePanel_Native
			// 
			this.notePanel_Native.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_Native.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_Native.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_Native.ForeColor = System.Drawing.Color.Black;
			this.notePanel_Native.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_Native.Location = new System.Drawing.Point(33, 56);
			this.notePanel_Native.MaxRows = 5;
			this.notePanel_Native.Name = "notePanel_Native";
			this.notePanel_Native.ParentAutoHeight = true;
			this.notePanel_Native.Size = new System.Drawing.Size(78, 22);
			this.notePanel_Native.TabIndex = 25;
			this.notePanel_Native.TabStop = false;
			this.notePanel_Native.Text = "幼儿籍贯:";
			// 
			// notePanel_Nationality
			// 
			this.notePanel_Nationality.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_Nationality.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_Nationality.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_Nationality.ForeColor = System.Drawing.Color.Black;
			this.notePanel_Nationality.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_Nationality.Location = new System.Drawing.Point(33, 24);
			this.notePanel_Nationality.MaxRows = 5;
			this.notePanel_Nationality.Name = "notePanel_Nationality";
			this.notePanel_Nationality.ParentAutoHeight = true;
			this.notePanel_Nationality.Size = new System.Drawing.Size(78, 22);
			this.notePanel_Nationality.TabIndex = 24;
			this.notePanel_Nationality.TabStop = false;
			this.notePanel_Nationality.Text = "幼儿国籍:";
			// 
			// textEdit_FamilyAddr
			// 
			this.textEdit_FamilyAddr.EditValue = "";
			this.textEdit_FamilyAddr.Location = new System.Drawing.Point(120, 120);
			this.textEdit_FamilyAddr.Name = "textEdit_FamilyAddr";
			this.textEdit_FamilyAddr.Size = new System.Drawing.Size(432, 23);
			this.textEdit_FamilyAddr.TabIndex = 45;
			// 
			// groupControl1
			// 
			this.groupControl1.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.groupControl1.AppearanceCaption.Options.UseFont = true;
			this.groupControl1.Controls.Add(this.textEdit_StuDefaultNumber);
			this.groupControl1.Controls.Add(this.dateEdit_Birthday);
			this.groupControl1.Controls.Add(this.textEdit_KidOrigin);
			this.groupControl1.Controls.Add(this.textEdit_GUID);
			this.groupControl1.Controls.Add(this.dateEdit_EntryDate);
			this.groupControl1.Controls.Add(this.label_RegOfEnrollKind);
			this.groupControl1.Controls.Add(this.label_RegOfEnrollTime);
			this.groupControl1.Controls.Add(this.label_RegOfBirthday);
			this.groupControl1.Controls.Add(this.label_RegOfKidGender);
			this.groupControl1.Controls.Add(this.label_ReqOfKidName);
			this.groupControl1.Controls.Add(this.notePanel_KidBaseInfoTitle);
			this.groupControl1.Controls.Add(this.pictureEdit_LoadImageData);
			this.groupControl1.Controls.Add(this.comboBoxEdit_EntryStatus);
			this.groupControl1.Controls.Add(this.notePanel_KidNumber);
			this.groupControl1.Controls.Add(this.notePanel_EnrollKind);
			this.groupControl1.Controls.Add(this.comboBoxEdit_KidGender);
			this.groupControl1.Controls.Add(this.textEdit_KidName);
			this.groupControl1.Controls.Add(this.notePanel_KidOrigin);
			this.groupControl1.Controls.Add(this.notePanel_EnrollTime);
			this.groupControl1.Controls.Add(this.notePanel_Birthday);
			this.groupControl1.Controls.Add(this.notePanel_KidGender);
			this.groupControl1.Controls.Add(this.notePanel_KidName);
			this.groupControl1.Location = new System.Drawing.Point(0, 32);
			this.groupControl1.Name = "groupControl1";
			this.groupControl1.Size = new System.Drawing.Size(600, 160);
			this.groupControl1.TabIndex = 7;
			this.groupControl1.Text = "幼儿基本信息";
			// 
			// dateEdit_Birthday
			// 
			this.dateEdit_Birthday.EditValue = null;
			this.dateEdit_Birthday.Location = new System.Drawing.Point(120, 100);
			this.dateEdit_Birthday.Name = "dateEdit_Birthday";
			// 
			// dateEdit_Birthday.Properties
			// 
			this.dateEdit_Birthday.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																													  new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.dateEdit_Birthday.Properties.Mask.EditMask = "d";
			this.dateEdit_Birthday.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.DateTime;
			this.dateEdit_Birthday.Size = new System.Drawing.Size(104, 23);
			this.dateEdit_Birthday.TabIndex = 35;
			// 
			// textEdit_KidOrigin
			// 
			this.textEdit_KidOrigin.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
				| System.Windows.Forms.AnchorStyles.Right)));
			this.textEdit_KidOrigin.EditValue = "";
			this.textEdit_KidOrigin.Location = new System.Drawing.Point(344, 96);
			this.textEdit_KidOrigin.Name = "textEdit_KidOrigin";
			// 
			// textEdit_KidOrigin.Properties
			// 
			this.textEdit_KidOrigin.Properties.Appearance.BackColor = System.Drawing.Color.White;
			this.textEdit_KidOrigin.Properties.Appearance.ForeColor = System.Drawing.Color.Black;
			this.textEdit_KidOrigin.Properties.Appearance.Options.UseBackColor = true;
			this.textEdit_KidOrigin.Properties.Appearance.Options.UseForeColor = true;
			this.textEdit_KidOrigin.Size = new System.Drawing.Size(86, 23);
			this.textEdit_KidOrigin.TabIndex = 33;
			// 
			// textEdit_GUID
			// 
			this.textEdit_GUID.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
				| System.Windows.Forms.AnchorStyles.Right)));
			this.textEdit_GUID.EditValue = "";
			this.textEdit_GUID.Location = new System.Drawing.Point(416, 88);
			this.textEdit_GUID.Name = "textEdit_GUID";
			// 
			// textEdit_GUID.Properties
			// 
			this.textEdit_GUID.Properties.Appearance.BackColor = System.Drawing.Color.White;
			this.textEdit_GUID.Properties.Appearance.ForeColor = System.Drawing.Color.Black;
			this.textEdit_GUID.Properties.Appearance.Options.UseBackColor = true;
			this.textEdit_GUID.Properties.Appearance.Options.UseForeColor = true;
			this.textEdit_GUID.Properties.AutoHeight = false;
			this.textEdit_GUID.Properties.ReadOnly = true;
			this.textEdit_GUID.Size = new System.Drawing.Size(14, 8);
			this.textEdit_GUID.TabIndex = 32;
			// 
			// dateEdit_EntryDate
			// 
			this.dateEdit_EntryDate.EditValue = null;
			this.dateEdit_EntryDate.Location = new System.Drawing.Point(120, 128);
			this.dateEdit_EntryDate.Name = "dateEdit_EntryDate";
			// 
			// dateEdit_EntryDate.Properties
			// 
			this.dateEdit_EntryDate.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																													   new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.dateEdit_EntryDate.Properties.Mask.EditMask = "d";
			this.dateEdit_EntryDate.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.DateTime;
			this.dateEdit_EntryDate.Size = new System.Drawing.Size(104, 23);
			this.dateEdit_EntryDate.TabIndex = 30;
			// 
			// label_RegOfEnrollKind
			// 
			this.label_RegOfEnrollKind.BackColor = System.Drawing.Color.Transparent;
			this.label_RegOfEnrollKind.ForeColor = System.Drawing.Color.Red;
			this.label_RegOfEnrollKind.Location = new System.Drawing.Point(240, 50);
			this.label_RegOfEnrollKind.Name = "label_RegOfEnrollKind";
			this.label_RegOfEnrollKind.Size = new System.Drawing.Size(16, 16);
			this.label_RegOfEnrollKind.TabIndex = 27;
			this.label_RegOfEnrollKind.Text = "*";
			this.label_RegOfEnrollKind.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			// 
			// label_RegOfEnrollTime
			// 
			this.label_RegOfEnrollTime.BackColor = System.Drawing.Color.Transparent;
			this.label_RegOfEnrollTime.ForeColor = System.Drawing.Color.Red;
			this.label_RegOfEnrollTime.Location = new System.Drawing.Point(8, 132);
			this.label_RegOfEnrollTime.Name = "label_RegOfEnrollTime";
			this.label_RegOfEnrollTime.Size = new System.Drawing.Size(16, 16);
			this.label_RegOfEnrollTime.TabIndex = 26;
			this.label_RegOfEnrollTime.Text = "*";
			this.label_RegOfEnrollTime.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			// 
			// label_RegOfBirthday
			// 
			this.label_RegOfBirthday.BackColor = System.Drawing.Color.Transparent;
			this.label_RegOfBirthday.ForeColor = System.Drawing.Color.Red;
			this.label_RegOfBirthday.Location = new System.Drawing.Point(8, 104);
			this.label_RegOfBirthday.Name = "label_RegOfBirthday";
			this.label_RegOfBirthday.Size = new System.Drawing.Size(16, 16);
			this.label_RegOfBirthday.TabIndex = 25;
			this.label_RegOfBirthday.Text = "*";
			this.label_RegOfBirthday.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			// 
			// label_RegOfKidGender
			// 
			this.label_RegOfKidGender.BackColor = System.Drawing.Color.Transparent;
			this.label_RegOfKidGender.ForeColor = System.Drawing.Color.Red;
			this.label_RegOfKidGender.Location = new System.Drawing.Point(8, 78);
			this.label_RegOfKidGender.Name = "label_RegOfKidGender";
			this.label_RegOfKidGender.Size = new System.Drawing.Size(16, 16);
			this.label_RegOfKidGender.TabIndex = 24;
			this.label_RegOfKidGender.Text = "*";
			this.label_RegOfKidGender.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			// 
			// label_ReqOfKidName
			// 
			this.label_ReqOfKidName.BackColor = System.Drawing.Color.Transparent;
			this.label_ReqOfKidName.ForeColor = System.Drawing.Color.Red;
			this.label_ReqOfKidName.Location = new System.Drawing.Point(8, 52);
			this.label_ReqOfKidName.Name = "label_ReqOfKidName";
			this.label_ReqOfKidName.Size = new System.Drawing.Size(16, 16);
			this.label_ReqOfKidName.TabIndex = 23;
			this.label_ReqOfKidName.Text = "*";
			this.label_ReqOfKidName.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			// 
			// notePanel_KidBaseInfoTitle
			// 
			this.notePanel_KidBaseInfoTitle.BackColor = System.Drawing.Color.LightGoldenrodYellow;
			this.notePanel_KidBaseInfoTitle.Dock = System.Windows.Forms.DockStyle.Top;
			this.notePanel_KidBaseInfoTitle.ForeColor = System.Drawing.Color.OrangeRed;
			this.notePanel_KidBaseInfoTitle.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_KidBaseInfoTitle.Location = new System.Drawing.Point(3, 18);
			this.notePanel_KidBaseInfoTitle.MaxRows = 5;
			this.notePanel_KidBaseInfoTitle.Name = "notePanel_KidBaseInfoTitle";
			this.notePanel_KidBaseInfoTitle.ParentAutoHeight = true;
			this.notePanel_KidBaseInfoTitle.Size = new System.Drawing.Size(594, 23);
			this.notePanel_KidBaseInfoTitle.TabIndex = 22;
			this.notePanel_KidBaseInfoTitle.TabStop = false;
			this.notePanel_KidBaseInfoTitle.Text = "幼儿基本信息管理(*为必须填写)";
			// 
			// pictureEdit_LoadImageData
			// 
			this.pictureEdit_LoadImageData.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("pictureEdit_LoadImageData.BackgroundImage")));
			this.pictureEdit_LoadImageData.Location = new System.Drawing.Point(440, 48);
			this.pictureEdit_LoadImageData.MenuManager = this.barManager1;
			this.pictureEdit_LoadImageData.Name = "pictureEdit_LoadImageData";
			this.barManager1.SetPopupContextMenu(this.pictureEdit_LoadImageData, this.popupMenu1);
			// 
			// pictureEdit_LoadImageData.Properties
			// 
			this.pictureEdit_LoadImageData.Properties.Appearance.BackColor = System.Drawing.Color.Transparent;
			this.pictureEdit_LoadImageData.Properties.Appearance.Options.UseBackColor = true;
			this.pictureEdit_LoadImageData.Properties.EditValueChangedFiringMode = DevExpress.XtraEditors.Controls.EditValueChangedFiringMode.Buffered;
			this.pictureEdit_LoadImageData.Properties.NullText = "图片相素:800*600";
			this.pictureEdit_LoadImageData.Properties.ShowMenu = false;
			this.pictureEdit_LoadImageData.Size = new System.Drawing.Size(112, 104);
			this.pictureEdit_LoadImageData.TabIndex = 20;
			// 
			// barManager1
			// 
			this.barManager1.DockControls.Add(this.barDockControlTop);
			this.barManager1.DockControls.Add(this.barDockControlBottom);
			this.barManager1.DockControls.Add(this.barDockControlLeft);
			this.barManager1.DockControls.Add(this.barDockControlRight);
			this.barManager1.Form = this;
			this.barManager1.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
																				  this.barButtonItem1,
																				  this.barButtonItem2,
																				  this.barButtonItem_Refresh});
			this.barManager1.MaxItemId = 3;
			// 
			// popupMenu1
			// 
			this.popupMenu1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
																									new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem1),
																									new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem2)});
			this.popupMenu1.Manager = this.barManager1;
			this.popupMenu1.Name = "popupMenu1";
			// 
			// barButtonItem1
			// 
			this.barButtonItem1.Caption = "添加图片";
			this.barButtonItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("barButtonItem1.Glyph")));
			this.barButtonItem1.Id = 0;
			this.barButtonItem1.Name = "barButtonItem1";
			this.barButtonItem1.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem1_ItemClick);
			// 
			// barButtonItem2
			// 
			this.barButtonItem2.Caption = "删除图片";
			this.barButtonItem2.Glyph = ((System.Drawing.Image)(resources.GetObject("barButtonItem2.Glyph")));
			this.barButtonItem2.Id = 1;
			this.barButtonItem2.Name = "barButtonItem2";
			this.barButtonItem2.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem2_ItemClick);
			// 
			// barButtonItem_Refresh
			// 
			this.barButtonItem_Refresh.Caption = "刷新";
			this.barButtonItem_Refresh.Id = 2;
			this.barButtonItem_Refresh.Name = "barButtonItem_Refresh";
			this.barButtonItem_Refresh.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem_Refresh_ItemClick);
			// 
			// comboBoxEdit_EntryStatus
			// 
			this.comboBoxEdit_EntryStatus.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
				| System.Windows.Forms.AnchorStyles.Right)));
			this.comboBoxEdit_EntryStatus.EditValue = "日托";
			this.comboBoxEdit_EntryStatus.Location = new System.Drawing.Point(344, 48);
			this.comboBoxEdit_EntryStatus.Name = "comboBoxEdit_EntryStatus";
			// 
			// comboBoxEdit_EntryStatus.Properties
			// 
			this.comboBoxEdit_EntryStatus.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																															 new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.comboBoxEdit_EntryStatus.Properties.Items.AddRange(new object[] {
																					 "日托",
																					 "全托"});
			this.comboBoxEdit_EntryStatus.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
			this.comboBoxEdit_EntryStatus.Size = new System.Drawing.Size(88, 23);
			this.comboBoxEdit_EntryStatus.TabIndex = 17;
			// 
			// notePanel_KidNumber
			// 
			this.notePanel_KidNumber.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_KidNumber.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_KidNumber.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_KidNumber.ForeColor = System.Drawing.Color.Black;
			this.notePanel_KidNumber.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_KidNumber.Location = new System.Drawing.Point(256, 72);
			this.notePanel_KidNumber.MaxRows = 5;
			this.notePanel_KidNumber.Name = "notePanel_KidNumber";
			this.notePanel_KidNumber.ParentAutoHeight = true;
			this.notePanel_KidNumber.Size = new System.Drawing.Size(80, 22);
			this.notePanel_KidNumber.TabIndex = 16;
			this.notePanel_KidNumber.TabStop = false;
			this.notePanel_KidNumber.Text = "幼儿学号:";
			// 
			// notePanel_EnrollKind
			// 
			this.notePanel_EnrollKind.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_EnrollKind.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_EnrollKind.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_EnrollKind.ForeColor = System.Drawing.Color.Black;
			this.notePanel_EnrollKind.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_EnrollKind.Location = new System.Drawing.Point(256, 48);
			this.notePanel_EnrollKind.MaxRows = 5;
			this.notePanel_EnrollKind.Name = "notePanel_EnrollKind";
			this.notePanel_EnrollKind.ParentAutoHeight = true;
			this.notePanel_EnrollKind.Size = new System.Drawing.Size(80, 22);
			this.notePanel_EnrollKind.TabIndex = 14;
			this.notePanel_EnrollKind.TabStop = false;
			this.notePanel_EnrollKind.Text = "入托方式:";
			// 
			// comboBoxEdit_KidGender
			// 
			this.comboBoxEdit_KidGender.EditValue = "男";
			this.comboBoxEdit_KidGender.Location = new System.Drawing.Point(120, 74);
			this.comboBoxEdit_KidGender.Name = "comboBoxEdit_KidGender";
			// 
			// comboBoxEdit_KidGender.Properties
			// 
			this.comboBoxEdit_KidGender.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																														   new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.comboBoxEdit_KidGender.Properties.Items.AddRange(new object[] {
																				   "男",
																				   "女"});
			this.comboBoxEdit_KidGender.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
			this.comboBoxEdit_KidGender.Size = new System.Drawing.Size(104, 23);
			this.comboBoxEdit_KidGender.TabIndex = 10;
			// 
			// textEdit_KidName
			// 
			this.textEdit_KidName.EditValue = "";
			this.textEdit_KidName.Location = new System.Drawing.Point(120, 48);
			this.textEdit_KidName.Name = "textEdit_KidName";
			this.textEdit_KidName.Size = new System.Drawing.Size(104, 23);
			this.textEdit_KidName.TabIndex = 9;
			// 
			// notePanel_KidOrigin
			// 
			this.notePanel_KidOrigin.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_KidOrigin.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_KidOrigin.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_KidOrigin.ForeColor = System.Drawing.Color.Black;
			this.notePanel_KidOrigin.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_KidOrigin.Location = new System.Drawing.Point(256, 96);
			this.notePanel_KidOrigin.MaxRows = 5;
			this.notePanel_KidOrigin.Name = "notePanel_KidOrigin";
			this.notePanel_KidOrigin.ParentAutoHeight = true;
			this.notePanel_KidOrigin.Size = new System.Drawing.Size(80, 22);
			this.notePanel_KidOrigin.TabIndex = 8;
			this.notePanel_KidOrigin.TabStop = false;
			this.notePanel_KidOrigin.Text = "新生来源:";
			// 
			// notePanel_EnrollTime
			// 
			this.notePanel_EnrollTime.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_EnrollTime.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_EnrollTime.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_EnrollTime.ForeColor = System.Drawing.Color.Black;
			this.notePanel_EnrollTime.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_EnrollTime.Location = new System.Drawing.Point(32, 126);
			this.notePanel_EnrollTime.MaxRows = 5;
			this.notePanel_EnrollTime.Name = "notePanel_EnrollTime";
			this.notePanel_EnrollTime.ParentAutoHeight = true;
			this.notePanel_EnrollTime.Size = new System.Drawing.Size(78, 22);
			this.notePanel_EnrollTime.TabIndex = 7;
			this.notePanel_EnrollTime.TabStop = false;
			this.notePanel_EnrollTime.Text = "入园日期:";
			// 
			// notePanel_Birthday
			// 
			this.notePanel_Birthday.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_Birthday.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_Birthday.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_Birthday.ForeColor = System.Drawing.Color.Black;
			this.notePanel_Birthday.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_Birthday.Location = new System.Drawing.Point(32, 100);
			this.notePanel_Birthday.MaxRows = 5;
			this.notePanel_Birthday.Name = "notePanel_Birthday";
			this.notePanel_Birthday.ParentAutoHeight = true;
			this.notePanel_Birthday.Size = new System.Drawing.Size(78, 22);
			this.notePanel_Birthday.TabIndex = 6;
			this.notePanel_Birthday.TabStop = false;
			this.notePanel_Birthday.Text = "出生日期:";
			// 
			// notePanel_KidGender
			// 
			this.notePanel_KidGender.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_KidGender.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_KidGender.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_KidGender.ForeColor = System.Drawing.Color.Black;
			this.notePanel_KidGender.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_KidGender.Location = new System.Drawing.Point(32, 74);
			this.notePanel_KidGender.MaxRows = 5;
			this.notePanel_KidGender.Name = "notePanel_KidGender";
			this.notePanel_KidGender.ParentAutoHeight = true;
			this.notePanel_KidGender.Size = new System.Drawing.Size(78, 22);
			this.notePanel_KidGender.TabIndex = 5;
			this.notePanel_KidGender.TabStop = false;
			this.notePanel_KidGender.Text = "幼儿性别:";
			// 
			// notePanel_KidName
			// 
			this.notePanel_KidName.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_KidName.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_KidName.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_KidName.ForeColor = System.Drawing.Color.Black;
			this.notePanel_KidName.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_KidName.Location = new System.Drawing.Point(32, 48);
			this.notePanel_KidName.MaxRows = 5;
			this.notePanel_KidName.Name = "notePanel_KidName";
			this.notePanel_KidName.ParentAutoHeight = true;
			this.notePanel_KidName.Size = new System.Drawing.Size(80, 22);
			this.notePanel_KidName.TabIndex = 4;
			this.notePanel_KidName.TabStop = false;
			this.notePanel_KidName.Text = "幼儿姓名:";
			// 
			// simpleButton_BlankButton
			// 
			this.simpleButton_BlankButton.Appearance.ForeColor = System.Drawing.Color.DarkMagenta;
			this.simpleButton_BlankButton.Appearance.Options.UseForeColor = true;
			this.simpleButton_BlankButton.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton_BlankButton.Image")));
			this.simpleButton_BlankButton.Location = new System.Drawing.Point(192, 2);
			this.simpleButton_BlankButton.Name = "simpleButton_BlankButton";
			this.simpleButton_BlankButton.Size = new System.Drawing.Size(80, 26);
			this.simpleButton_BlankButton.TabIndex = 5;
			this.simpleButton_BlankButton.Text = "重  置";
			this.simpleButton_BlankButton.Click += new System.EventHandler(this.simpleButton_BlankButton_Click);
			// 
			// simpleButton_SaveButton
			// 
			this.simpleButton_SaveButton.Appearance.ForeColor = System.Drawing.Color.DarkMagenta;
			this.simpleButton_SaveButton.Appearance.Options.UseForeColor = true;
			this.simpleButton_SaveButton.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton_SaveButton.Image")));
			this.simpleButton_SaveButton.Location = new System.Drawing.Point(104, 2);
			this.simpleButton_SaveButton.Name = "simpleButton_SaveButton";
			this.simpleButton_SaveButton.Size = new System.Drawing.Size(84, 26);
			this.simpleButton_SaveButton.TabIndex = 3;
			this.simpleButton_SaveButton.Text = "保  存";
			this.simpleButton_SaveButton.Click += new System.EventHandler(this.simpleButton_SaveButton_Click);
			// 
			// simpleButton_NewFile
			// 
			this.simpleButton_NewFile.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.simpleButton_NewFile.Appearance.ForeColor = System.Drawing.Color.DarkMagenta;
			this.simpleButton_NewFile.Appearance.Options.UseFont = true;
			this.simpleButton_NewFile.Appearance.Options.UseForeColor = true;
			this.simpleButton_NewFile.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton_NewFile.Image")));
			this.simpleButton_NewFile.Location = new System.Drawing.Point(8, 2);
			this.simpleButton_NewFile.Name = "simpleButton_NewFile";
			this.simpleButton_NewFile.Size = new System.Drawing.Size(88, 26);
			this.simpleButton_NewFile.TabIndex = 1;
			this.simpleButton_NewFile.Tag = 4;
			this.simpleButton_NewFile.Text = "新  建";
			this.simpleButton_NewFile.Click += new System.EventHandler(this.simpleButton_NewFile_Click);
			// 
			// splitterControl1
			// 
			this.splitterControl1.Location = new System.Drawing.Point(0, 0);
			this.splitterControl1.Name = "splitterControl1";
			this.splitterControl1.Size = new System.Drawing.Size(4, 482);
			this.splitterControl1.TabIndex = 0;
			this.splitterControl1.TabStop = false;
			// 
			// popupMenu2
			// 
			this.popupMenu2.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
																									new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem_Refresh)});
			this.popupMenu2.Manager = this.barManager1;
			this.popupMenu2.Name = "popupMenu2";
			// 
			// textEdit_StuDefaultNumber
			// 
			this.textEdit_StuDefaultNumber.EditValue = "";
			this.textEdit_StuDefaultNumber.Location = new System.Drawing.Point(344, 72);
			this.textEdit_StuDefaultNumber.Name = "textEdit_StuDefaultNumber";
			this.textEdit_StuDefaultNumber.Size = new System.Drawing.Size(88, 23);
			this.textEdit_StuDefaultNumber.TabIndex = 36;
			// 
			// StudentBaseInfo
			// 
			this.Appearance.BackColor = System.Drawing.Color.WhiteSmoke;
			this.Appearance.Options.UseBackColor = true;
			this.Controls.Add(this.xtraTabControl_StuBaseInfo);
			this.Controls.Add(this.barDockControlLeft);
			this.Controls.Add(this.barDockControlRight);
			this.Controls.Add(this.barDockControlBottom);
			this.Controls.Add(this.barDockControlTop);
			this.Name = "StudentBaseInfo";
			this.Size = new System.Drawing.Size(772, 704);
			this.Load += new System.EventHandler(this.StudentBaseInfo_Load);
			((System.ComponentModel.ISupportInitialize)(this.xtraTabControl_StuBaseInfo)).EndInit();
			this.xtraTabControl_StuBaseInfo.ResumeLayout(false);
			this.xtraTabPage_StuBaseInfoMgmt.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.splitContainerControl_StuBaseInfo)).EndInit();
			this.splitContainerControl_StuBaseInfo.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.gridControl_ShowStu)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl4)).EndInit();
			this.groupControl4.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.textEdit_Number.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_Name.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_Class.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_Grade.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl3)).EndInit();
			this.groupControl3.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MOWorkingAddr.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MOPhone.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MOName.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_FAWorkingAddr.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_FAPhone.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_FAName.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl2)).EndInit();
			this.groupControl2.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.textEdit_HuKouAddr.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_ILLHistory.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_EMail.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_BankID.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_Street.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_JUWei.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_ZIPCode.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_RegNote.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_Native.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_Nationality.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_FamilyAddr.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
			this.groupControl1.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.dateEdit_Birthday.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_KidOrigin.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_GUID.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.dateEdit_EntryDate.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.pictureEdit_LoadImageData.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.barManager1)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.popupMenu1)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_EntryStatus.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_KidGender.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_KidName.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.popupMenu2)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_StuDefaultNumber.Properties)).EndInit();
			this.ResumeLayout(false);

		}
示例#26
0
		/// <summary> 
		/// Required method for Designer support - do not modify 
		/// the contents of this method with the code editor.
		/// </summary>
		private void InitializeComponent()
		{
			this.notePanel_DutyDetailsTitle = new DevExpress.Utils.Frames.NotePanel();
			this.groupControl2 = new DevExpress.XtraEditors.GroupControl();
			this.textEdit_Send_StuName = new DevExpress.XtraEditors.TextEdit();
			this.comboBoxEdit_Send_StuClass = new DevExpress.XtraEditors.ComboBoxEdit();
			this.comboBoxEdit_Send_StuGrade = new DevExpress.XtraEditors.ComboBoxEdit();
			this.textEdit_Send_StuNumber = new DevExpress.XtraEditors.TextEdit();
			this.notePanel_Send_StuNumber = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_Send_StuClass = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_Send_StuGrade = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_Send_StuName = new DevExpress.Utils.Frames.NotePanel();
			this.groupControl1 = new DevExpress.XtraEditors.GroupControl();
			this.groupControl3 = new DevExpress.XtraEditors.GroupControl();
			this.simpleButton_EditPhoneNum = new DevExpress.XtraEditors.SimpleButton();
			this.notePanel1 = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel2 = new DevExpress.Utils.Frames.NotePanel();
			this.textEdit1 = new DevExpress.XtraEditors.TextEdit();
			this.textEdit2 = new DevExpress.XtraEditors.TextEdit();
			this.gridControl1 = new DevExpress.XtraGrid.GridControl();
			this.gridView1 = new DevExpress.XtraGrid.Views.Grid.GridView();
			this.gridColumn1 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn2 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn3 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn4 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn5 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.groupControl4 = new DevExpress.XtraEditors.GroupControl();
			this.gridControl2 = new DevExpress.XtraGrid.GridControl();
			this.gridView2 = new DevExpress.XtraGrid.Views.Grid.GridView();
			this.gridColumn6 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn7 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn8 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.simpleButton2 = new DevExpress.XtraEditors.SimpleButton();
			((System.ComponentModel.ISupportInitialize)(this.groupControl2)).BeginInit();
			this.groupControl2.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_Send_StuName.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_Send_StuClass.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_Send_StuGrade.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_Send_StuNumber.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
			this.groupControl1.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.groupControl3)).BeginInit();
			this.groupControl3.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.textEdit1.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit2.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.gridControl1)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl4)).BeginInit();
			this.groupControl4.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.gridControl2)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.gridView2)).BeginInit();
			this.SuspendLayout();
			// 
			// notePanel_DutyDetailsTitle
			// 
			this.notePanel_DutyDetailsTitle.BackColor = System.Drawing.Color.LightGoldenrodYellow;
			this.notePanel_DutyDetailsTitle.Dock = System.Windows.Forms.DockStyle.Top;
			this.notePanel_DutyDetailsTitle.ForeColor = System.Drawing.Color.Gray;
			this.notePanel_DutyDetailsTitle.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_DutyDetailsTitle.Location = new System.Drawing.Point(0, 0);
			this.notePanel_DutyDetailsTitle.MaxRows = 5;
			this.notePanel_DutyDetailsTitle.Name = "notePanel_DutyDetailsTitle";
			this.notePanel_DutyDetailsTitle.ParentAutoHeight = true;
			this.notePanel_DutyDetailsTitle.Size = new System.Drawing.Size(584, 23);
			this.notePanel_DutyDetailsTitle.TabIndex = 14;
			this.notePanel_DutyDetailsTitle.TabStop = false;
			this.notePanel_DutyDetailsTitle.Text = "查看编辑号码簿";
			// 
			// groupControl2
			// 
			this.groupControl2.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
			this.groupControl2.AppearanceCaption.ForeColor = System.Drawing.Color.DarkOrange;
			this.groupControl2.AppearanceCaption.Options.UseFont = true;
			this.groupControl2.AppearanceCaption.Options.UseForeColor = true;
			this.groupControl2.Controls.Add(this.textEdit_Send_StuName);
			this.groupControl2.Controls.Add(this.comboBoxEdit_Send_StuClass);
			this.groupControl2.Controls.Add(this.comboBoxEdit_Send_StuGrade);
			this.groupControl2.Controls.Add(this.textEdit_Send_StuNumber);
			this.groupControl2.Controls.Add(this.notePanel_Send_StuNumber);
			this.groupControl2.Controls.Add(this.notePanel_Send_StuClass);
			this.groupControl2.Controls.Add(this.notePanel_Send_StuGrade);
			this.groupControl2.Controls.Add(this.notePanel_Send_StuName);
			this.groupControl2.Dock = System.Windows.Forms.DockStyle.Top;
			this.groupControl2.Location = new System.Drawing.Point(0, 23);
			this.groupControl2.Name = "groupControl2";
			this.groupControl2.Size = new System.Drawing.Size(584, 81);
			this.groupControl2.TabIndex = 22;
			this.groupControl2.Text = "查找条件";
			// 
			// textEdit_Send_StuName
			// 
			this.textEdit_Send_StuName.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
			this.textEdit_Send_StuName.EditValue = "";
			this.textEdit_Send_StuName.Location = new System.Drawing.Point(96, 32);
			this.textEdit_Send_StuName.Name = "textEdit_Send_StuName";
			this.textEdit_Send_StuName.Size = new System.Drawing.Size(56, 23);
			this.textEdit_Send_StuName.TabIndex = 40;
			this.textEdit_Send_StuName.EditValueChanged += new System.EventHandler(this.textEdit_Send_StuName_EditValueChanged);
			// 
			// comboBoxEdit_Send_StuClass
			// 
			this.comboBoxEdit_Send_StuClass.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
			this.comboBoxEdit_Send_StuClass.EditValue = "全部";
			this.comboBoxEdit_Send_StuClass.Location = new System.Drawing.Point(494, 32);
			this.comboBoxEdit_Send_StuClass.Name = "comboBoxEdit_Send_StuClass";
			// 
			// comboBoxEdit_Send_StuClass.Properties
			// 
			this.comboBoxEdit_Send_StuClass.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																															   new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.comboBoxEdit_Send_StuClass.Properties.Items.AddRange(new object[] {
																					   "全部"});
			this.comboBoxEdit_Send_StuClass.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
			this.comboBoxEdit_Send_StuClass.Size = new System.Drawing.Size(64, 23);
			this.comboBoxEdit_Send_StuClass.TabIndex = 39;
			this.comboBoxEdit_Send_StuClass.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit_Send_StuClass_SelectedIndexChanged);
			// 
			// comboBoxEdit_Send_StuGrade
			// 
			this.comboBoxEdit_Send_StuGrade.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
			this.comboBoxEdit_Send_StuGrade.EditValue = "全部";
			this.comboBoxEdit_Send_StuGrade.Location = new System.Drawing.Point(356, 32);
			this.comboBoxEdit_Send_StuGrade.Name = "comboBoxEdit_Send_StuGrade";
			// 
			// comboBoxEdit_Send_StuGrade.Properties
			// 
			this.comboBoxEdit_Send_StuGrade.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																															   new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.comboBoxEdit_Send_StuGrade.Properties.Items.AddRange(new object[] {
																					   "全部"});
			this.comboBoxEdit_Send_StuGrade.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
			this.comboBoxEdit_Send_StuGrade.Size = new System.Drawing.Size(64, 23);
			this.comboBoxEdit_Send_StuGrade.TabIndex = 38;
			this.comboBoxEdit_Send_StuGrade.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit_Send_StuGrade_SelectedIndexChanged);
			// 
			// textEdit_Send_StuNumber
			// 
			this.textEdit_Send_StuNumber.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
			this.textEdit_Send_StuNumber.EditValue = "";
			this.textEdit_Send_StuNumber.Location = new System.Drawing.Point(226, 32);
			this.textEdit_Send_StuNumber.Name = "textEdit_Send_StuNumber";
			// 
			// textEdit_Send_StuNumber.Properties
			// 
			this.textEdit_Send_StuNumber.Properties.Mask.EditMask = "d4";
			this.textEdit_Send_StuNumber.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
			this.textEdit_Send_StuNumber.Size = new System.Drawing.Size(56, 23);
			this.textEdit_Send_StuNumber.TabIndex = 37;
			this.textEdit_Send_StuNumber.EditValueChanged += new System.EventHandler(this.textEdit_Send_StuNumber_EditValueChanged);
			// 
			// notePanel_Send_StuNumber
			// 
			this.notePanel_Send_StuNumber.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
			this.notePanel_Send_StuNumber.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_Send_StuNumber.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_Send_StuNumber.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_Send_StuNumber.ForeColor = System.Drawing.Color.Black;
			this.notePanel_Send_StuNumber.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_Send_StuNumber.Location = new System.Drawing.Point(157, 32);
			this.notePanel_Send_StuNumber.MaxRows = 5;
			this.notePanel_Send_StuNumber.Name = "notePanel_Send_StuNumber";
			this.notePanel_Send_StuNumber.ParentAutoHeight = true;
			this.notePanel_Send_StuNumber.Size = new System.Drawing.Size(64, 22);
			this.notePanel_Send_StuNumber.TabIndex = 36;
			this.notePanel_Send_StuNumber.TabStop = false;
			this.notePanel_Send_StuNumber.Text = "学  号:";
			// 
			// notePanel_Send_StuClass
			// 
			this.notePanel_Send_StuClass.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
			this.notePanel_Send_StuClass.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_Send_StuClass.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_Send_StuClass.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_Send_StuClass.ForeColor = System.Drawing.Color.Black;
			this.notePanel_Send_StuClass.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_Send_StuClass.Location = new System.Drawing.Point(425, 32);
			this.notePanel_Send_StuClass.MaxRows = 5;
			this.notePanel_Send_StuClass.Name = "notePanel_Send_StuClass";
			this.notePanel_Send_StuClass.ParentAutoHeight = true;
			this.notePanel_Send_StuClass.Size = new System.Drawing.Size(64, 22);
			this.notePanel_Send_StuClass.TabIndex = 35;
			this.notePanel_Send_StuClass.TabStop = false;
			this.notePanel_Send_StuClass.Text = "班  级:";
			// 
			// notePanel_Send_StuGrade
			// 
			this.notePanel_Send_StuGrade.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
			this.notePanel_Send_StuGrade.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_Send_StuGrade.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_Send_StuGrade.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_Send_StuGrade.ForeColor = System.Drawing.Color.Black;
			this.notePanel_Send_StuGrade.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_Send_StuGrade.Location = new System.Drawing.Point(287, 32);
			this.notePanel_Send_StuGrade.MaxRows = 5;
			this.notePanel_Send_StuGrade.Name = "notePanel_Send_StuGrade";
			this.notePanel_Send_StuGrade.ParentAutoHeight = true;
			this.notePanel_Send_StuGrade.Size = new System.Drawing.Size(64, 22);
			this.notePanel_Send_StuGrade.TabIndex = 34;
			this.notePanel_Send_StuGrade.TabStop = false;
			this.notePanel_Send_StuGrade.Text = "年  级:";
			// 
			// notePanel_Send_StuName
			// 
			this.notePanel_Send_StuName.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
			this.notePanel_Send_StuName.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_Send_StuName.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_Send_StuName.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_Send_StuName.ForeColor = System.Drawing.Color.Black;
			this.notePanel_Send_StuName.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_Send_StuName.Location = new System.Drawing.Point(27, 32);
			this.notePanel_Send_StuName.MaxRows = 5;
			this.notePanel_Send_StuName.Name = "notePanel_Send_StuName";
			this.notePanel_Send_StuName.ParentAutoHeight = true;
			this.notePanel_Send_StuName.Size = new System.Drawing.Size(64, 22);
			this.notePanel_Send_StuName.TabIndex = 33;
			this.notePanel_Send_StuName.TabStop = false;
			this.notePanel_Send_StuName.Text = "姓  名:";
			// 
			// groupControl1
			// 
			this.groupControl1.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
			this.groupControl1.AppearanceCaption.ForeColor = System.Drawing.Color.DarkOrange;
			this.groupControl1.AppearanceCaption.Options.UseFont = true;
			this.groupControl1.AppearanceCaption.Options.UseForeColor = true;
			this.groupControl1.Controls.Add(this.groupControl3);
			this.groupControl1.Controls.Add(this.gridControl1);
			this.groupControl1.Controls.Add(this.groupControl4);
			this.groupControl1.Dock = System.Windows.Forms.DockStyle.Fill;
			this.groupControl1.Location = new System.Drawing.Point(0, 104);
			this.groupControl1.Name = "groupControl1";
			this.groupControl1.Size = new System.Drawing.Size(584, 384);
			this.groupControl1.TabIndex = 23;
			this.groupControl1.Text = "编辑号码簿";
			// 
			// groupControl3
			// 
			this.groupControl3.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
				| System.Windows.Forms.AnchorStyles.Right)));
			this.groupControl3.Controls.Add(this.simpleButton_EditPhoneNum);
			this.groupControl3.Controls.Add(this.notePanel1);
			this.groupControl3.Controls.Add(this.notePanel2);
			this.groupControl3.Controls.Add(this.textEdit1);
			this.groupControl3.Controls.Add(this.textEdit2);
			this.groupControl3.Location = new System.Drawing.Point(232, 24);
			this.groupControl3.Name = "groupControl3";
			this.groupControl3.Size = new System.Drawing.Size(336, 160);
			this.groupControl3.TabIndex = 24;
			this.groupControl3.Text = "对选定学生新增号码";
			// 
			// simpleButton_EditPhoneNum
			// 
			this.simpleButton_EditPhoneNum.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
			this.simpleButton_EditPhoneNum.Location = new System.Drawing.Point(240, 120);
			this.simpleButton_EditPhoneNum.Name = "simpleButton_EditPhoneNum";
			this.simpleButton_EditPhoneNum.Size = new System.Drawing.Size(72, 24);
			this.simpleButton_EditPhoneNum.TabIndex = 22;
			this.simpleButton_EditPhoneNum.Text = "新增";
			this.simpleButton_EditPhoneNum.Click += new System.EventHandler(this.simpleButton_EditPhoneNum_Click);
			// 
			// notePanel1
			// 
			this.notePanel1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
			this.notePanel1.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel1.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel1.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel1.ForeColor = System.Drawing.Color.Black;
			this.notePanel1.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel1.Location = new System.Drawing.Point(32, 40);
			this.notePanel1.MaxRows = 5;
			this.notePanel1.Name = "notePanel1";
			this.notePanel1.ParentAutoHeight = true;
			this.notePanel1.Size = new System.Drawing.Size(128, 22);
			this.notePanel1.TabIndex = 34;
			this.notePanel1.TabStop = false;
			this.notePanel1.Text = "持有手机家长姓名:";
			// 
			// notePanel2
			// 
			this.notePanel2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
			this.notePanel2.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel2.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel2.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel2.ForeColor = System.Drawing.Color.Black;
			this.notePanel2.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel2.Location = new System.Drawing.Point(32, 80);
			this.notePanel2.MaxRows = 5;
			this.notePanel2.Name = "notePanel2";
			this.notePanel2.ParentAutoHeight = true;
			this.notePanel2.Size = new System.Drawing.Size(128, 22);
			this.notePanel2.TabIndex = 34;
			this.notePanel2.TabStop = false;
			this.notePanel2.Text = "注册服务手机号码:";
			// 
			// textEdit1
			// 
			this.textEdit1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
			this.textEdit1.EditValue = "";
			this.textEdit1.Location = new System.Drawing.Point(168, 40);
			this.textEdit1.Name = "textEdit1";
			this.textEdit1.Size = new System.Drawing.Size(136, 23);
			this.textEdit1.TabIndex = 37;
			// 
			// textEdit2
			// 
			this.textEdit2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
			this.textEdit2.EditValue = "";
			this.textEdit2.Location = new System.Drawing.Point(168, 80);
			this.textEdit2.Name = "textEdit2";
			this.textEdit2.Size = new System.Drawing.Size(136, 23);
			this.textEdit2.TabIndex = 37;
			this.textEdit2.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.textEdit2_KeyPress);
			// 
			// gridControl1
			// 
			this.gridControl1.Dock = System.Windows.Forms.DockStyle.Left;
			// 
			// gridControl1.EmbeddedNavigator
			// 
			this.gridControl1.EmbeddedNavigator.Name = "";
			this.gridControl1.Location = new System.Drawing.Point(3, 18);
			this.gridControl1.MainView = this.gridView1;
			this.gridControl1.Name = "gridControl1";
			this.gridControl1.Size = new System.Drawing.Size(221, 363);
			this.gridControl1.TabIndex = 23;
			this.gridControl1.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
																										this.gridView1});
			// 
			// gridView1
			// 
			this.gridView1.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
																							 this.gridColumn1,
																							 this.gridColumn2,
																							 this.gridColumn3,
																							 this.gridColumn4,
																							 this.gridColumn5});
			this.gridView1.GridControl = this.gridControl1;
			this.gridView1.Name = "gridView1";
			this.gridView1.OptionsBehavior.Editable = false;
			this.gridView1.OptionsCustomization.AllowFilter = false;
			this.gridView1.OptionsCustomization.AllowGroup = false;
			this.gridView1.OptionsView.ShowFilterPanel = false;
			this.gridView1.OptionsView.ShowFooter = true;
			this.gridView1.OptionsView.ShowGroupPanel = false;
			this.gridView1.FocusedRowChanged += new DevExpress.XtraGrid.Views.Base.FocusedRowChangedEventHandler(this.gridView1_FocusedRowChanged);
			// 
			// gridColumn1
			// 
			this.gridColumn1.Caption = "学号";
			this.gridColumn1.FieldName = "info_stuNumber";
			this.gridColumn1.Name = "gridColumn1";
			this.gridColumn1.Visible = true;
			this.gridColumn1.VisibleIndex = 0;
			// 
			// gridColumn2
			// 
			this.gridColumn2.Caption = "姓名";
			this.gridColumn2.FieldName = "info_stuName";
			this.gridColumn2.Name = "gridColumn2";
			this.gridColumn2.Visible = true;
			this.gridColumn2.VisibleIndex = 1;
			// 
			// gridColumn3
			// 
			this.gridColumn3.Caption = "年级";
			this.gridColumn3.FieldName = "info_gradeName";
			this.gridColumn3.Name = "gridColumn3";
			this.gridColumn3.Visible = true;
			this.gridColumn3.VisibleIndex = 2;
			// 
			// gridColumn4
			// 
			this.gridColumn4.Caption = "班级";
			this.gridColumn4.FieldName = "info_className";
			this.gridColumn4.Name = "gridColumn4";
			this.gridColumn4.Visible = true;
			this.gridColumn4.VisibleIndex = 3;
			// 
			// gridColumn5
			// 
			this.gridColumn5.Caption = "gridColumn5";
			this.gridColumn5.FieldName = "info_stuID";
			this.gridColumn5.Name = "gridColumn5";
			// 
			// groupControl4
			// 
			this.groupControl4.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.groupControl4.Controls.Add(this.gridControl2);
			this.groupControl4.Controls.Add(this.simpleButton2);
			this.groupControl4.Location = new System.Drawing.Point(232, 192);
			this.groupControl4.Name = "groupControl4";
			this.groupControl4.Size = new System.Drawing.Size(336, 184);
			this.groupControl4.TabIndex = 24;
			this.groupControl4.Text = "显示选定学生已添加号码";
			// 
			// gridControl2
			// 
			this.gridControl2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
				| System.Windows.Forms.AnchorStyles.Left)));
			// 
			// gridControl2.EmbeddedNavigator
			// 
			this.gridControl2.EmbeddedNavigator.Name = "";
			this.gridControl2.Location = new System.Drawing.Point(3, 56);
			this.gridControl2.MainView = this.gridView2;
			this.gridControl2.Name = "gridControl2";
			this.gridControl2.Size = new System.Drawing.Size(346, 128);
			this.gridControl2.TabIndex = 22;
			this.gridControl2.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
																										this.gridView2});
			// 
			// gridView2
			// 
			this.gridView2.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
																							 this.gridColumn6,
																							 this.gridColumn7,
																							 this.gridColumn8});
			this.gridView2.GridControl = this.gridControl2;
			this.gridView2.Name = "gridView2";
			this.gridView2.OptionsBehavior.Editable = false;
			this.gridView2.OptionsCustomization.AllowFilter = false;
			this.gridView2.OptionsCustomization.AllowGroup = false;
			this.gridView2.OptionsView.ShowFilterPanel = false;
			this.gridView2.OptionsView.ShowFooter = true;
			this.gridView2.OptionsView.ShowGroupPanel = false;
			// 
			// gridColumn6
			// 
			this.gridColumn6.Caption = "持有手机家长姓名";
			this.gridColumn6.FieldName = "familial_name";
			this.gridColumn6.Name = "gridColumn6";
			this.gridColumn6.Visible = true;
			this.gridColumn6.VisibleIndex = 0;
			// 
			// gridColumn7
			// 
			this.gridColumn7.Caption = "注册手机号码";
			this.gridColumn7.FieldName = "mobilePhone_number";
			this.gridColumn7.Name = "gridColumn7";
			this.gridColumn7.Visible = true;
			this.gridColumn7.VisibleIndex = 1;
			// 
			// gridColumn8
			// 
			this.gridColumn8.Caption = "gridColumn8";
			this.gridColumn8.FieldName = "smsInfo_id";
			this.gridColumn8.Name = "gridColumn8";
			// 
			// simpleButton2
			// 
			this.simpleButton2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
			this.simpleButton2.Location = new System.Drawing.Point(240, 16);
			this.simpleButton2.Name = "simpleButton2";
			this.simpleButton2.Size = new System.Drawing.Size(72, 24);
			this.simpleButton2.TabIndex = 21;
			this.simpleButton2.Text = "删除";
			this.simpleButton2.Click += new System.EventHandler(this.simpleButton2_Click);
			// 
			// PhoneNum
			// 
			this.Appearance.BackColor = System.Drawing.Color.WhiteSmoke;
			this.Appearance.Options.UseBackColor = true;
			this.Controls.Add(this.groupControl1);
			this.Controls.Add(this.groupControl2);
			this.Controls.Add(this.notePanel_DutyDetailsTitle);
			this.Name = "PhoneNum";
			this.Size = new System.Drawing.Size(584, 488);
			((System.ComponentModel.ISupportInitialize)(this.groupControl2)).EndInit();
			this.groupControl2.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.textEdit_Send_StuName.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_Send_StuClass.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_Send_StuGrade.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_Send_StuNumber.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
			this.groupControl1.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.groupControl3)).EndInit();
			this.groupControl3.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.textEdit1.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit2.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.gridControl1)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl4)).EndInit();
			this.groupControl4.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.gridControl2)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.gridView2)).EndInit();
			this.ResumeLayout(false);

		}
示例#27
0
 Control createControl(string name){
     Control c = null ;
     switch (name) {
         case "日期":
             var cdate = new DateEditEx();
             cdate.Properties.EditMask = "yyyy-MM-dd";
             cdate.Properties.DisplayFormat.FormatString = "yyyy-MM-dd";
             cdate.Properties.AllowNullInput  = DevExpress.Utils.DefaultBoolean.True;
             cdate.Properties.EditFormat.FormatString = "yyyy-MM-dd";
             
             c = cdate;
             break;
         case "下拉列表":
             c = new DevExpress.XtraEditors.ComboBoxEdit();
             break;
         case "整数":
             var c1 = new DevExpress.XtraEditors.SpinEdit();
             c1.Properties.IsFloatValue = false;
             c = c1;
             break;
         case "小数":
             var c2 = new DevExpress.XtraEditors.SpinEdit();
             c2.Properties.IsFloatValue = true;
             c = c2;
             break;
         case "文本":
         default:
             c = new DevExpress.XtraEditors.TextEdit();
             break;
     }
     return c;
 }
示例#28
0
        //查看详细
        private void ViewDetail(bool flag, string vin)
        {
            //ColumnView cv = (ColumnView)gcCLJBXX.FocusedView;
            //DataRowView dr = (DataRowView)cv.GetFocusedRow();
            //if (dr == null)
            //{
            //    return;
            //}
            //string vin = (string)dr.Row.ItemArray[0];
            DataTable dtBasic = OracleHelper.ExecuteDataSet(OracleHelper.conn, String.Format(@"select * from FC_CLJBXX where vin = '{0}'", vin), null).Tables[0];
            DataTable dtParam = OracleHelper.ExecuteDataSet(OracleHelper.conn, String.Format(@"select e.* from RLLX_PARAM_ENTITY e, RLLX_PARAM RPE where e.vin = '{0}' and e.PARAM_CODE=RPE.PARAM_CODE and RPE.STATUS='1'", vin), null).Tables[0];
            // 弹出详细信息窗口,可修改
            JbxxViewForm jvf = new JbxxViewForm(dtBasic, dtParam, true, flag);

            if (flag)
            {
                jvf.status = "1";
            }
            else
            {
                jvf.status = "2";
            }
            if (dtBasic.Rows.Count > 0)
            {
                for (int i = 0; i < dtBasic.Columns.Count; i++)
                {
                    DataColumn dc = dtBasic.Columns[i];
                    Control[]  c  = jvf.Controls.Find("tb" + dc.ColumnName, true);
                    if (c.Length > 0)
                    {
                        if (c[0] is TextEdit)
                        {
                            c[0].Text = dtBasic.Rows[0].ItemArray[i].ToString();
                            continue;
                        }
                        if (c[0] is DevExpress.XtraEditors.ComboBoxEdit)
                        {
                            DevExpress.XtraEditors.ComboBoxEdit cb = c[0] as DevExpress.XtraEditors.ComboBoxEdit;
                            cb.Text = dtBasic.Rows[0].ItemArray[i].ToString();
                            if (cb.Text == "汽油" || cb.Text == "柴油" || cb.Text == "两用燃料" ||
                                cb.Text == "双燃料" || cb.Text == "纯电动" || cb.Text == "非插电式混合动力" || cb.Text == "插电式混合动力" || cb.Text == "燃料电池")
                            {
                                string rlval = cb.Text;
                                if (cb.Text == "汽油" || cb.Text == "柴油" || cb.Text == "两用燃料" ||
                                    cb.Text == "双燃料")
                                {
                                    rlval = "传统能源";
                                }
                                // 构建燃料参数控件
                                jvf.getParamList(rlval, true);
                            }
                        }
                    }
                }
            }
            for (int i = 0; i < dtParam.Rows.Count; i++)
            {
                DataRow   drrlxx = dtParam.Rows[i];
                string    cName  = drrlxx.ItemArray[1].ToString();
                Control[] c      = jvf.Controls.Find(cName, true);
                if (c.Length > 0)
                {
                    if (c[0] is TextEdit)
                    {
                        c[0].Text = drrlxx.ItemArray[3].ToString();
                        continue;
                    }
                    if (c[0] is DevExpress.XtraEditors.ComboBoxEdit)
                    {
                        DevExpress.XtraEditors.ComboBoxEdit cb = c[0] as DevExpress.XtraEditors.ComboBoxEdit;
                        cb.Text = drrlxx.ItemArray[3].ToString();
                    }
                }
            }
            (jvf.Controls.Find("tc", true)[0] as XtraTabControl).SelectedTabPageIndex = 0;
            jvf.MaximizeBox = false;
            jvf.MinimizeBox = false;
            Utils.SetFormMid(jvf);
            jvf.setVisible("btnbaocunshangbao", false);
            jvf.setVisible("btnCancel", true);
            jvf.setVisible("btnPrint", true);
            jvf.ShowDialog();
            if (jvf.DialogResult == DialogResult.Cancel)
            {
                this.refrashCurrentPage();
            }
        }
示例#29
0
        public void getParamList(string strType, bool enable)
        {
            // 先清空,再添加
            this.tlp.Controls.Clear();
            this.tlp.Location = new Point(10, 30);
            string    sql = "SELECT PARAM_CODE, PARAM_NAME, FUEL_TYPE, PARAM_REMARK,CONTROL_TYPE,CONTROL_VALUE FROM RLLX_PARAM WHERE   (FUEL_TYPE = '" + strType + "' AND STATUS = '1')  ORDER BY ORDER_RULE";
            DataSet   ds  = AccessHelper.ExecuteDataSet(AccessHelper.conn, sql, null);
            DataTable dt  = ds.Tables[0];

            foreach (DataRow dr in dt.Rows)
            {
                // textbox类型
                if (dr["CONTROL_TYPE"].ToString() == "TEXT")
                {
                    Label lbl = new Label();
                    lbl.Width     = 160;
                    lbl.Height    = 30;
                    lbl.Name      = "lbl" + dr["PARAM_CODE"].ToString();
                    lbl.Text      = dr["PARAM_NAME"].ToString();
                    lbl.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;

                    TextEdit tb = new TextEdit();
                    tb.Width   = 250;
                    tb.Height  = 28;
                    tb.Name    = dr["PARAM_CODE"].ToString();
                    tb.Enabled = enable;

                    Label lbll = new Label();
                    lbll.Width     = 100;
                    lbll.Height    = 30;
                    lbll.Text      = dr["PARAM_REMARK"].ToString();
                    lbll.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;

                    this.tlp.Controls.Add(lbl);
                    this.tlp.Controls.Add(tb);
                    this.tlp.Controls.Add(lbll);
                }
                // OPTION类型
                if (dr["CONTROL_TYPE"].ToString() == "OPTION")
                {
                    Label lbl = new Label();
                    lbl.Width     = 160;
                    lbl.Height    = 30;
                    lbl.Name      = "lbl" + dr["PARAM_CODE"].ToString();
                    lbl.Text      = dr["PARAM_NAME"].ToString();
                    lbl.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;

                    DevExpress.XtraEditors.ComboBoxEdit cb = new DevExpress.XtraEditors.ComboBoxEdit();
                    cb.Width  = 250;
                    cb.Height = 28;
                    cb.Name   = dr["PARAM_CODE"].ToString();
                    cb.Properties.Items.AddRange(getArray(dr["CONTROL_VALUE"].ToString()));
                    cb.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
                    cb.Enabled = enable;

                    Label lbll = new Label();
                    lbll.Width     = 100;
                    lbll.Height    = 30;
                    lbll.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;

                    this.tlp.Controls.Add(lbl);
                    this.tlp.Controls.Add(cb);
                    this.tlp.Controls.Add(lbll);
                }

                tlp.Location = new Point(0, 15);
            }
        }
示例#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.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(SetupExcel));
     this.Browse                    = new DevExpress.XtraEditors.SimpleButton();
     this.FileName                  = new DevExpress.XtraEditors.TextEdit();
     this.DuplicateKeyValues        = new DevExpress.XtraEditors.CheckEdit();
     this.FixedHeightStructs        = new DevExpress.XtraEditors.CheckEdit();
     this.QualifiedNumberFormatting = new System.Windows.Forms.GroupBox();
     this.QnfSplitOptions           = new Mobius.ClientComponents.QnfSplitControl();
     this.Check1                    = new DevExpress.XtraEditors.CheckEdit();
     this.Label3                    = new DevExpress.XtraEditors.LabelControl();
     this.Cancel                    = new DevExpress.XtraEditors.SimpleButton();
     this.OK = new DevExpress.XtraEditors.SimpleButton();
     this.InsightStructure          = new DevExpress.XtraEditors.CheckEdit();
     this.Label1                    = new DevExpress.XtraEditors.LabelControl();
     this.label4                    = new DevExpress.XtraEditors.LabelControl();
     this.ExportInBackground        = new DevExpress.XtraEditors.CheckEdit();
     this.Bitmaps16x16              = new System.Windows.Forms.ImageList(this.components);
     this.HeaderLines               = new DevExpress.XtraEditors.ComboBoxEdit();
     this.labelControl1             = new DevExpress.XtraEditors.LabelControl();
     this.groupBox1                 = new System.Windows.Forms.GroupBox();
     this.labelControl2             = new DevExpress.XtraEditors.LabelControl();
     this.MetafileStructure         = new DevExpress.XtraEditors.CheckEdit();
     this.SaveAsDefaultFolderOption = new DevExpress.XtraEditors.CheckEdit();
     ((System.ComponentModel.ISupportInitialize)(this.FileName.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DuplicateKeyValues.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.FixedHeightStructs.Properties)).BeginInit();
     this.QualifiedNumberFormatting.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.Check1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.InsightStructure.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ExportInBackground.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.HeaderLines.Properties)).BeginInit();
     this.groupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.MetafileStructure.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.SaveAsDefaultFolderOption.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // Browse
     //
     this.Browse.Anchor                          = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.Browse.Appearance.Font                 = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Browse.Appearance.ForeColor            = System.Drawing.SystemColors.ControlText;
     this.Browse.Appearance.Options.UseFont      = true;
     this.Browse.Appearance.Options.UseForeColor = true;
     this.Browse.Cursor                          = System.Windows.Forms.Cursors.Default;
     this.Browse.Location                        = new System.Drawing.Point(297, 5);
     this.Browse.Name        = "Browse";
     this.Browse.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.Browse.Size        = new System.Drawing.Size(69, 22);
     this.Browse.TabIndex    = 29;
     this.Browse.Text        = "&Browse...";
     this.Browse.Click      += new System.EventHandler(this.Browse_Click);
     //
     // FileName
     //
     this.FileName.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                  | System.Windows.Forms.AnchorStyles.Right)));
     this.FileName.Cursor   = System.Windows.Forms.Cursors.IBeam;
     this.FileName.Location = new System.Drawing.Point(67, 6);
     this.FileName.Name     = "FileName";
     this.FileName.Properties.Appearance.BackColor            = System.Drawing.SystemColors.Window;
     this.FileName.Properties.Appearance.Font                 = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.FileName.Properties.Appearance.ForeColor            = System.Drawing.SystemColors.WindowText;
     this.FileName.Properties.Appearance.Options.UseBackColor = true;
     this.FileName.Properties.Appearance.Options.UseFont      = true;
     this.FileName.Properties.Appearance.Options.UseForeColor = true;
     this.FileName.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.FileName.Size        = new System.Drawing.Size(223, 20);
     this.FileName.TabIndex    = 28;
     this.FileName.Tag         = "Title";
     //
     // DuplicateKeyValues
     //
     this.DuplicateKeyValues.Cursor   = System.Windows.Forms.Cursors.Default;
     this.DuplicateKeyValues.Location = new System.Drawing.Point(24, 157);
     this.DuplicateKeyValues.Name     = "DuplicateKeyValues";
     this.DuplicateKeyValues.Properties.Appearance.BackColor            = System.Drawing.Color.Transparent;
     this.DuplicateKeyValues.Properties.Appearance.Font                 = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.DuplicateKeyValues.Properties.Appearance.ForeColor            = System.Drawing.SystemColors.ControlText;
     this.DuplicateKeyValues.Properties.Appearance.Options.UseBackColor = true;
     this.DuplicateKeyValues.Properties.Appearance.Options.UseFont      = true;
     this.DuplicateKeyValues.Properties.Appearance.Options.UseForeColor = true;
     this.DuplicateKeyValues.Properties.Caption = "Duplicate data that occurs only once per compound";
     this.DuplicateKeyValues.RightToLeft        = System.Windows.Forms.RightToLeft.No;
     this.DuplicateKeyValues.Size     = new System.Drawing.Size(318, 19);
     this.DuplicateKeyValues.TabIndex = 22;
     this.DuplicateKeyValues.Tag      = "FixedHeightStructs";
     //
     // FixedHeightStructs
     //
     this.FixedHeightStructs.Cursor   = System.Windows.Forms.Cursors.Default;
     this.FixedHeightStructs.Location = new System.Drawing.Point(351, 22);
     this.FixedHeightStructs.Name     = "FixedHeightStructs";
     this.FixedHeightStructs.Properties.Appearance.BackColor            = System.Drawing.Color.Transparent;
     this.FixedHeightStructs.Properties.Appearance.Font                 = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.FixedHeightStructs.Properties.Appearance.ForeColor            = System.Drawing.SystemColors.ControlText;
     this.FixedHeightStructs.Properties.Appearance.Options.UseBackColor = true;
     this.FixedHeightStructs.Properties.Appearance.Options.UseFont      = true;
     this.FixedHeightStructs.Properties.Appearance.Options.UseForeColor = true;
     this.FixedHeightStructs.Properties.Caption = "Format structures into fixed size boxes";
     this.FixedHeightStructs.RightToLeft        = System.Windows.Forms.RightToLeft.No;
     this.FixedHeightStructs.Size     = new System.Drawing.Size(217, 19);
     this.FixedHeightStructs.TabIndex = 21;
     this.FixedHeightStructs.Tag      = "FixedHeightStructs";
     this.FixedHeightStructs.Visible  = false;
     //
     // QualifiedNumberFormatting
     //
     this.QualifiedNumberFormatting.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                                   | System.Windows.Forms.AnchorStyles.Right)));
     this.QualifiedNumberFormatting.BackColor = System.Drawing.Color.Transparent;
     this.QualifiedNumberFormatting.Controls.Add(this.QnfSplitOptions);
     this.QualifiedNumberFormatting.Controls.Add(this.Check1);
     this.QualifiedNumberFormatting.Controls.Add(this.Label3);
     this.QualifiedNumberFormatting.Font        = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.QualifiedNumberFormatting.ForeColor   = System.Drawing.SystemColors.ControlText;
     this.QualifiedNumberFormatting.Location    = new System.Drawing.Point(9, 67);
     this.QualifiedNumberFormatting.Name        = "QualifiedNumberFormatting";
     this.QualifiedNumberFormatting.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.QualifiedNumberFormatting.Size        = new System.Drawing.Size(359, 79);
     this.QualifiedNumberFormatting.TabIndex    = 26;
     this.QualifiedNumberFormatting.TabStop     = false;
     this.QualifiedNumberFormatting.Text        = "Formatting of \"Qualified\" Numeric Values (e.g. >50) ";
     //
     // QnfSplitOptions
     //
     this.QnfSplitOptions.Location = new System.Drawing.Point(11, 21);
     this.QnfSplitOptions.Margin   = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.QnfSplitOptions.Name     = "QnfSplitOptions";
     this.QnfSplitOptions.Size     = new System.Drawing.Size(359, 49);
     this.QnfSplitOptions.TabIndex = 17;
     //
     // Check1
     //
     this.Check1.Cursor   = System.Windows.Forms.Cursors.Default;
     this.Check1.Location = new System.Drawing.Point(33, 122);
     this.Check1.Name     = "Check1";
     this.Check1.Properties.Appearance.BackColor            = System.Drawing.SystemColors.Control;
     this.Check1.Properties.Appearance.Font                 = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Check1.Properties.Appearance.ForeColor            = System.Drawing.SystemColors.ControlText;
     this.Check1.Properties.Appearance.Options.UseBackColor = true;
     this.Check1.Properties.Appearance.Options.UseFont      = true;
     this.Check1.Properties.Appearance.Options.UseForeColor = true;
     this.Check1.Properties.Caption = "Open output file with Spotfire (Spotfire must be installed)";
     this.Check1.RightToLeft        = System.Windows.Forms.RightToLeft.No;
     this.Check1.Size     = new System.Drawing.Size(344, 19);
     this.Check1.TabIndex = 15;
     //
     // Label3
     //
     this.Label3.Appearance.BackColor            = System.Drawing.SystemColors.Control;
     this.Label3.Appearance.Font                 = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Label3.Appearance.ForeColor            = System.Drawing.SystemColors.ControlText;
     this.Label3.Appearance.Options.UseBackColor = true;
     this.Label3.Appearance.Options.UseFont      = true;
     this.Label3.Appearance.Options.UseForeColor = true;
     this.Label3.Cursor   = System.Windows.Forms.Cursors.Default;
     this.Label3.Location = new System.Drawing.Point(58, 140);
     this.Label3.Name     = "Label3";
     this.Label3.Size     = new System.Drawing.Size(521, 13);
     this.Label3.TabIndex = 16;
     this.Label3.Text     = "Note: You can open an existing Spotfire file from the main menu with the expert c" +
                            "ommand: SPOTFIRE filename";
     //
     // Cancel
     //
     this.Cancel.Anchor                          = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.Cancel.Appearance.Font                 = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Cancel.Appearance.ForeColor            = System.Drawing.SystemColors.ControlText;
     this.Cancel.Appearance.Options.UseFont      = true;
     this.Cancel.Appearance.Options.UseForeColor = true;
     this.Cancel.Cursor                          = System.Windows.Forms.Cursors.Default;
     this.Cancel.DialogResult                    = System.Windows.Forms.DialogResult.Cancel;
     this.Cancel.Location                        = new System.Drawing.Point(297, 245);
     this.Cancel.Name        = "Cancel";
     this.Cancel.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.Cancel.Size        = new System.Drawing.Size(68, 23);
     this.Cancel.TabIndex    = 24;
     this.Cancel.Tag         = "Cancel";
     this.Cancel.Text        = "Cancel";
     //
     // OK
     //
     this.OK.Anchor                          = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.OK.Appearance.Font                 = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.OK.Appearance.ForeColor            = System.Drawing.SystemColors.ControlText;
     this.OK.Appearance.Options.UseFont      = true;
     this.OK.Appearance.Options.UseForeColor = true;
     this.OK.Cursor                          = System.Windows.Forms.Cursors.Default;
     this.OK.Location                        = new System.Drawing.Point(221, 245);
     this.OK.Name        = "OK";
     this.OK.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.OK.Size        = new System.Drawing.Size(69, 23);
     this.OK.TabIndex    = 23;
     this.OK.Tag         = "OK";
     this.OK.Text        = "OK";
     this.OK.Click      += new System.EventHandler(this.OK_Click);
     //
     // InsightStructure
     //
     this.InsightStructure.Cursor    = System.Windows.Forms.Cursors.Default;
     this.InsightStructure.EditValue = true;
     this.InsightStructure.Location  = new System.Drawing.Point(11, 22);
     this.InsightStructure.Name      = "InsightStructure";
     this.InsightStructure.Properties.Appearance.BackColor            = System.Drawing.Color.Transparent;
     this.InsightStructure.Properties.Appearance.Font                 = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.InsightStructure.Properties.Appearance.ForeColor            = System.Drawing.SystemColors.ControlText;
     this.InsightStructure.Properties.Appearance.Options.UseBackColor = true;
     this.InsightStructure.Properties.Appearance.Options.UseFont      = true;
     this.InsightStructure.Properties.Appearance.Options.UseForeColor = true;
     this.InsightStructure.Properties.Caption         = "Editable structures (Insight for Excel)";
     this.InsightStructure.Properties.CheckStyle      = DevExpress.XtraEditors.Controls.CheckStyles.Radio;
     this.InsightStructure.Properties.RadioGroupIndex = 1;
     this.InsightStructure.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.InsightStructure.Size        = new System.Drawing.Size(304, 19);
     this.InsightStructure.TabIndex    = 2;
     //
     // Label1
     //
     this.Label1.Appearance.BackColor            = System.Drawing.Color.Transparent;
     this.Label1.Appearance.Font                 = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Label1.Appearance.ForeColor            = System.Drawing.SystemColors.ControlText;
     this.Label1.Appearance.Options.UseBackColor = true;
     this.Label1.Appearance.Options.UseFont      = true;
     this.Label1.Appearance.Options.UseForeColor = true;
     this.Label1.Cursor   = System.Windows.Forms.Cursors.Default;
     this.Label1.Location = new System.Drawing.Point(8, 9);
     this.Label1.Name     = "Label1";
     this.Label1.Size     = new System.Drawing.Size(48, 13);
     this.Label1.TabIndex = 30;
     this.Label1.Text     = "File name:";
     //
     // label4
     //
     this.label4.Appearance.BackColor            = System.Drawing.Color.Transparent;
     this.label4.Appearance.Font                 = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label4.Appearance.ForeColor            = System.Drawing.SystemColors.ControlText;
     this.label4.Appearance.Options.UseBackColor = true;
     this.label4.Appearance.Options.UseFont      = true;
     this.label4.Appearance.Options.UseForeColor = true;
     this.label4.Cursor   = System.Windows.Forms.Cursors.Default;
     this.label4.Location = new System.Drawing.Point(20, 36);
     this.label4.Name     = "label4";
     this.label4.Size     = new System.Drawing.Size(62, 13);
     this.label4.TabIndex = 32;
     this.label4.Text     = "Header lines:";
     //
     // ExportInBackground
     //
     this.ExportInBackground.Cursor   = System.Windows.Forms.Cursors.Default;
     this.ExportInBackground.Location = new System.Drawing.Point(24, 205);
     this.ExportInBackground.Name     = "ExportInBackground";
     this.ExportInBackground.Properties.Appearance.BackColor            = System.Drawing.Color.Transparent;
     this.ExportInBackground.Properties.Appearance.Font                 = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.ExportInBackground.Properties.Appearance.ForeColor            = System.Drawing.SystemColors.ControlText;
     this.ExportInBackground.Properties.Appearance.Options.UseBackColor = true;
     this.ExportInBackground.Properties.Appearance.Options.UseFont      = true;
     this.ExportInBackground.Properties.Appearance.Options.UseForeColor = true;
     this.ExportInBackground.Properties.Caption = "Export in the background";
     this.ExportInBackground.RightToLeft        = System.Windows.Forms.RightToLeft.No;
     this.ExportInBackground.Size     = new System.Drawing.Size(206, 19);
     this.ExportInBackground.TabIndex = 33;
     //
     // Bitmaps16x16
     //
     this.Bitmaps16x16.ImageStream      = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("Bitmaps16x16.ImageStream")));
     this.Bitmaps16x16.TransparentColor = System.Drawing.Color.Cyan;
     this.Bitmaps16x16.Images.SetKeyName(0, "SharePoint.bmp");
     //
     // HeaderLines
     //
     this.HeaderLines.Location = new System.Drawing.Point(94, 33);
     this.HeaderLines.Name     = "HeaderLines";
     this.HeaderLines.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.HeaderLines.Properties.DropDownRows = 3;
     this.HeaderLines.Properties.Items.AddRange(new object[] {
         "0",
         "1",
         "2"
     });
     this.HeaderLines.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
     this.HeaderLines.Size     = new System.Drawing.Size(52, 20);
     this.HeaderLines.TabIndex = 31;
     //
     // labelControl1
     //
     this.labelControl1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
                                                                       | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControl1.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl1.LineVisible  = true;
     this.labelControl1.Location     = new System.Drawing.Point(-2, 230);
     this.labelControl1.Name         = "labelControl1";
     this.labelControl1.Size         = new System.Drawing.Size(398, 10);
     this.labelControl1.TabIndex     = 38;
     //
     // groupBox1
     //
     this.groupBox1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                   | System.Windows.Forms.AnchorStyles.Right)));
     this.groupBox1.BackColor = System.Drawing.Color.Transparent;
     this.groupBox1.Controls.Add(this.InsightStructure);
     this.groupBox1.Controls.Add(this.FixedHeightStructs);
     this.groupBox1.Controls.Add(this.labelControl2);
     this.groupBox1.Controls.Add(this.MetafileStructure);
     this.groupBox1.Font        = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.groupBox1.ForeColor   = System.Drawing.SystemColors.ControlText;
     this.groupBox1.Location    = new System.Drawing.Point(353, 152);
     this.groupBox1.Name        = "groupBox1";
     this.groupBox1.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.groupBox1.Size        = new System.Drawing.Size(359, 79);
     this.groupBox1.TabIndex    = 27;
     this.groupBox1.TabStop     = false;
     this.groupBox1.Text        = "Chemical Structure Format";
     this.groupBox1.Visible     = false;
     //
     // labelControl2
     //
     this.labelControl2.Appearance.BackColor            = System.Drawing.SystemColors.Control;
     this.labelControl2.Appearance.Font                 = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelControl2.Appearance.ForeColor            = System.Drawing.SystemColors.ControlText;
     this.labelControl2.Appearance.Options.UseBackColor = true;
     this.labelControl2.Appearance.Options.UseFont      = true;
     this.labelControl2.Appearance.Options.UseForeColor = true;
     this.labelControl2.Cursor   = System.Windows.Forms.Cursors.Default;
     this.labelControl2.Location = new System.Drawing.Point(58, 140);
     this.labelControl2.Name     = "labelControl2";
     this.labelControl2.Size     = new System.Drawing.Size(521, 13);
     this.labelControl2.TabIndex = 16;
     this.labelControl2.Text     = "Note: You can open an existing Spotfire file from the main menu with the expert c" +
                                   "ommand: SPOTFIRE filename";
     //
     // MetafileStructure
     //
     this.MetafileStructure.Cursor   = System.Windows.Forms.Cursors.Default;
     this.MetafileStructure.Location = new System.Drawing.Point(11, 47);
     this.MetafileStructure.Name     = "MetafileStructure";
     this.MetafileStructure.Properties.Appearance.BackColor            = System.Drawing.Color.Transparent;
     this.MetafileStructure.Properties.Appearance.Font                 = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.MetafileStructure.Properties.Appearance.ForeColor            = System.Drawing.SystemColors.ControlText;
     this.MetafileStructure.Properties.Appearance.Options.UseBackColor = true;
     this.MetafileStructure.Properties.Appearance.Options.UseFont      = true;
     this.MetafileStructure.Properties.Appearance.Options.UseForeColor = true;
     this.MetafileStructure.Properties.Caption         = "Uneditable structures (Windows metafile)";
     this.MetafileStructure.Properties.CheckStyle      = DevExpress.XtraEditors.Controls.CheckStyles.Radio;
     this.MetafileStructure.Properties.RadioGroupIndex = 1;
     this.MetafileStructure.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.MetafileStructure.Size        = new System.Drawing.Size(344, 19);
     this.MetafileStructure.TabIndex    = 3;
     this.MetafileStructure.TabStop     = false;
     //
     // SaveAsDefaultFolderOption
     //
     this.SaveAsDefaultFolderOption.Cursor   = System.Windows.Forms.Cursors.Default;
     this.SaveAsDefaultFolderOption.Location = new System.Drawing.Point(24, 181);
     this.SaveAsDefaultFolderOption.Name     = "SaveAsDefaultFolderOption";
     this.SaveAsDefaultFolderOption.Properties.Appearance.BackColor            = System.Drawing.Color.Transparent;
     this.SaveAsDefaultFolderOption.Properties.Appearance.Font                 = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.SaveAsDefaultFolderOption.Properties.Appearance.ForeColor            = System.Drawing.SystemColors.ControlText;
     this.SaveAsDefaultFolderOption.Properties.Appearance.Options.UseBackColor = true;
     this.SaveAsDefaultFolderOption.Properties.Appearance.Options.UseFont      = true;
     this.SaveAsDefaultFolderOption.Properties.Appearance.Options.UseForeColor = true;
     this.SaveAsDefaultFolderOption.Properties.Caption = "Use this as the default export folder in the future";
     this.SaveAsDefaultFolderOption.RightToLeft        = System.Windows.Forms.RightToLeft.No;
     this.SaveAsDefaultFolderOption.Size     = new System.Drawing.Size(288, 19);
     this.SaveAsDefaultFolderOption.TabIndex = 47;
     this.SaveAsDefaultFolderOption.Tag      = "FixedHeightStructs";
     //
     // SetupExcel
     //
     this.AcceptButton      = this.OK;
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 14);
     this.CancelButton      = this.Cancel;
     this.ClientSize        = new System.Drawing.Size(375, 275);
     this.Controls.Add(this.SaveAsDefaultFolderOption);
     this.Controls.Add(this.groupBox1);
     this.Controls.Add(this.FileName);
     this.Controls.Add(this.DuplicateKeyValues);
     this.Controls.Add(this.ExportInBackground);
     this.Controls.Add(this.Cancel);
     this.Controls.Add(this.OK);
     this.Controls.Add(this.label4);
     this.Controls.Add(this.HeaderLines);
     this.Controls.Add(this.Browse);
     this.Controls.Add(this.QualifiedNumberFormatting);
     this.Controls.Add(this.Label1);
     this.Controls.Add(this.labelControl1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.Name            = "SetupExcel";
     this.ShowInTaskbar   = false;
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text            = "Export to Excel";
     this.Activated      += new System.EventHandler(this.SetupExcel_Activated);
     this.VisibleChanged += new System.EventHandler(this.SetupExcel_VisibleChanged);
     ((System.ComponentModel.ISupportInitialize)(this.FileName.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DuplicateKeyValues.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.FixedHeightStructs.Properties)).EndInit();
     this.QualifiedNumberFormatting.ResumeLayout(false);
     this.QualifiedNumberFormatting.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.Check1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.InsightStructure.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ExportInBackground.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.HeaderLines.Properties)).EndInit();
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.MetafileStructure.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.SaveAsDefaultFolderOption.Properties)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
示例#31
0
		/// <summary> 
		/// Required method for Designer support - do not modify 
		/// the contents of this method with the code editor.
		/// </summary>
		private void InitializeComponent()
		{
			System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(RealtimeInfo_Teacher));
			this.xtraTabControl1 = new DevExpress.XtraTab.XtraTabControl();
			this.xtraTabPage1 = new DevExpress.XtraTab.XtraTabPage();
			this.splitContainerControl2 = new DevExpress.XtraEditors.SplitContainerControl();
			this.groupControl_Realtime_Graphic = new DevExpress.XtraEditors.GroupControl();
			this.groupControl_Realtime_GraphicDeptInfo = new DevExpress.XtraEditors.GroupControl();
			this.comboBoxEdit_Realtime_GraphicState = new DevExpress.XtraEditors.ComboBoxEdit();
			this.notePanel_Realtime_GraphicState = new DevExpress.Utils.Frames.NotePanel();
			this.comboBoxEdit_Realtime_GraphicDept = new DevExpress.XtraEditors.ComboBoxEdit();
			this.notePanel_Realtime_GraphicDept = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_Realtime_GraphicSearch = new DevExpress.Utils.Frames.NotePanel();
			this.groupControl_Realtime_GraphicShow = new DevExpress.XtraEditors.GroupControl();
			this.panelControl_Realtime_GraphicShow = new DevExpress.XtraEditors.PanelControl();
			this.panelControl2 = new DevExpress.XtraEditors.PanelControl();
			this.simpleButton_RealTime_GraphicSer = new DevExpress.XtraEditors.SimpleButton();
			this.simpleButton_Realtime_GraphicPrint = new DevExpress.XtraEditors.SimpleButton();
			this.xtraTabPage2 = new DevExpress.XtraTab.XtraTabPage();
			this.splitContainerControl1 = new DevExpress.XtraEditors.SplitContainerControl();
			this.groupControl1_Realtime_Data = new DevExpress.XtraEditors.GroupControl();
			this.groupControl_RealtimeStat_Dept = new DevExpress.XtraEditors.GroupControl();
			this.comboBoxEdit_Realtime_DataState = new DevExpress.XtraEditors.ComboBoxEdit();
			this.notePanel_Realtime_DataState = new DevExpress.Utils.Frames.NotePanel();
			this.comboBoxEdit_Realtime_DataDept = new DevExpress.XtraEditors.ComboBoxEdit();
			this.notePanel_Realtime_DataDept = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_Realtime_DataSearch = new DevExpress.Utils.Frames.NotePanel();
			this.gridControl_DataBack = new DevExpress.XtraGrid.GridControl();
			this.gridView2 = new DevExpress.XtraGrid.Views.Grid.GridView();
			this.gridColumn8 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn9 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn10 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn11 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn12 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn13 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridControl_DataMorning = new DevExpress.XtraGrid.GridControl();
			this.gridView1 = new DevExpress.XtraGrid.Views.Grid.GridView();
			this.gridColumn1 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn2 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn3 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn4 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn5 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn6 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn7 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.panelControl1 = new DevExpress.XtraEditors.PanelControl();
			this.simpleButton_RealTime_DataSer = new DevExpress.XtraEditors.SimpleButton();
			this.simpleButton_RealTime_DataPrint = new DevExpress.XtraEditors.SimpleButton();
			this.saveFileDialog_Report = new System.Windows.Forms.SaveFileDialog();
			this.helpProvider_RealtimeInfo_Teacher = new System.Windows.Forms.HelpProvider();
			((System.ComponentModel.ISupportInitialize)(this.xtraTabControl1)).BeginInit();
			this.xtraTabControl1.SuspendLayout();
			this.xtraTabPage1.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.splitContainerControl2)).BeginInit();
			this.splitContainerControl2.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_Realtime_Graphic)).BeginInit();
			this.groupControl_Realtime_Graphic.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_Realtime_GraphicDeptInfo)).BeginInit();
			this.groupControl_Realtime_GraphicDeptInfo.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_Realtime_GraphicState.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_Realtime_GraphicDept.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_Realtime_GraphicShow)).BeginInit();
			this.groupControl_Realtime_GraphicShow.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.panelControl_Realtime_GraphicShow)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.panelControl2)).BeginInit();
			this.panelControl2.SuspendLayout();
			this.xtraTabPage2.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.splitContainerControl1)).BeginInit();
			this.splitContainerControl1.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.groupControl1_Realtime_Data)).BeginInit();
			this.groupControl1_Realtime_Data.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_RealtimeStat_Dept)).BeginInit();
			this.groupControl_RealtimeStat_Dept.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_Realtime_DataState.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_Realtime_DataDept.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.gridControl_DataBack)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.gridView2)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.gridControl_DataMorning)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
			this.panelControl1.SuspendLayout();
			this.SuspendLayout();
			// 
			// xtraTabControl1
			// 
			this.xtraTabControl1.Appearance.BackColor = System.Drawing.Color.WhiteSmoke;
			this.xtraTabControl1.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.xtraTabControl1.Appearance.Options.UseBackColor = true;
			this.xtraTabControl1.Appearance.Options.UseFont = true;
			this.xtraTabControl1.AppearancePage.HeaderActive.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.xtraTabControl1.AppearancePage.HeaderActive.ForeColor = System.Drawing.Color.DarkOrange;
			this.xtraTabControl1.AppearancePage.HeaderActive.Options.UseFont = true;
			this.xtraTabControl1.AppearancePage.HeaderActive.Options.UseForeColor = true;
			this.xtraTabControl1.AppearancePage.HeaderHotTracked.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.xtraTabControl1.AppearancePage.HeaderHotTracked.Options.UseFont = true;
			this.xtraTabControl1.Controls.Add(this.xtraTabPage1);
			this.xtraTabControl1.Controls.Add(this.xtraTabPage2);
			this.xtraTabControl1.Dock = System.Windows.Forms.DockStyle.Fill;
			this.xtraTabControl1.Location = new System.Drawing.Point(0, 0);
			this.xtraTabControl1.Name = "xtraTabControl1";
			this.xtraTabControl1.SelectedTabPage = this.xtraTabPage2;
			this.xtraTabControl1.Size = new System.Drawing.Size(772, 540);
			this.xtraTabControl1.TabIndex = 0;
			this.xtraTabControl1.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
																							this.xtraTabPage1,
																							this.xtraTabPage2});
			this.xtraTabControl1.Text = "xtraTabControl1";
			// 
			// xtraTabPage1
			// 
			this.xtraTabPage1.Appearance.PageClient.BackColor = System.Drawing.Color.WhiteSmoke;
			this.xtraTabPage1.Appearance.PageClient.Options.UseBackColor = true;
			this.xtraTabPage1.Controls.Add(this.splitContainerControl2);
			this.xtraTabPage1.Name = "xtraTabPage1";
			this.xtraTabPage1.Size = new System.Drawing.Size(768, 515);
			this.xtraTabPage1.Text = "图形统计";
			// 
			// splitContainerControl2
			// 
			this.splitContainerControl2.Dock = System.Windows.Forms.DockStyle.Fill;
			this.splitContainerControl2.Location = new System.Drawing.Point(0, 0);
			this.splitContainerControl2.Name = "splitContainerControl2";
			this.splitContainerControl2.Panel1.Controls.Add(this.groupControl_Realtime_Graphic);
			this.splitContainerControl2.Panel1.Text = "splitContainerControl2_Panel1";
			this.splitContainerControl2.Panel2.Controls.Add(this.groupControl_Realtime_GraphicShow);
			this.splitContainerControl2.Panel2.Controls.Add(this.panelControl2);
			this.splitContainerControl2.Panel2.Text = "splitContainerControl2_Panel2";
			this.splitContainerControl2.Size = new System.Drawing.Size(768, 515);
			this.splitContainerControl2.SplitterPosition = 208;
			this.splitContainerControl2.TabIndex = 0;
			this.splitContainerControl2.Text = "splitContainerControl2";
			this.splitContainerControl2.SizeChanged += new System.EventHandler(this.splitContainerControl2_SizeChanged);
			// 
			// groupControl_Realtime_Graphic
			// 
			this.groupControl_Realtime_Graphic.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.groupControl_Realtime_Graphic.Appearance.Options.UseFont = true;
			this.groupControl_Realtime_Graphic.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.groupControl_Realtime_Graphic.AppearanceCaption.Options.UseFont = true;
			this.groupControl_Realtime_Graphic.Controls.Add(this.groupControl_Realtime_GraphicDeptInfo);
			this.groupControl_Realtime_Graphic.Controls.Add(this.notePanel_Realtime_GraphicSearch);
			this.groupControl_Realtime_Graphic.Dock = System.Windows.Forms.DockStyle.Fill;
			this.groupControl_Realtime_Graphic.Location = new System.Drawing.Point(0, 0);
			this.groupControl_Realtime_Graphic.Name = "groupControl_Realtime_Graphic";
			this.groupControl_Realtime_Graphic.Size = new System.Drawing.Size(202, 509);
			this.groupControl_Realtime_Graphic.TabIndex = 3;
			this.groupControl_Realtime_Graphic.Text = "实时窗口统计";
			this.groupControl_Realtime_Graphic.Paint += new System.Windows.Forms.PaintEventHandler(this.groupControl_Realtime_Graphic_Paint);
			// 
			// groupControl_Realtime_GraphicDeptInfo
			// 
			this.groupControl_Realtime_GraphicDeptInfo.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.groupControl_Realtime_GraphicDeptInfo.AppearanceCaption.Options.UseFont = true;
			this.groupControl_Realtime_GraphicDeptInfo.Controls.Add(this.comboBoxEdit_Realtime_GraphicState);
			this.groupControl_Realtime_GraphicDeptInfo.Controls.Add(this.notePanel_Realtime_GraphicState);
			this.groupControl_Realtime_GraphicDeptInfo.Controls.Add(this.comboBoxEdit_Realtime_GraphicDept);
			this.groupControl_Realtime_GraphicDeptInfo.Controls.Add(this.notePanel_Realtime_GraphicDept);
			this.groupControl_Realtime_GraphicDeptInfo.Dock = System.Windows.Forms.DockStyle.Top;
			this.groupControl_Realtime_GraphicDeptInfo.Location = new System.Drawing.Point(3, 41);
			this.groupControl_Realtime_GraphicDeptInfo.Name = "groupControl_Realtime_GraphicDeptInfo";
			this.groupControl_Realtime_GraphicDeptInfo.Size = new System.Drawing.Size(196, 119);
			this.groupControl_Realtime_GraphicDeptInfo.TabIndex = 7;
			this.groupControl_Realtime_GraphicDeptInfo.Text = "统计状态和部门信息";
			// 
			// comboBoxEdit_Realtime_GraphicState
			// 
			this.comboBoxEdit_Realtime_GraphicState.EditValue = "上班情况";
			this.comboBoxEdit_Realtime_GraphicState.Location = new System.Drawing.Point(88, 72);
			this.comboBoxEdit_Realtime_GraphicState.Name = "comboBoxEdit_Realtime_GraphicState";
			// 
			// comboBoxEdit_Realtime_GraphicState.Properties
			// 
			this.comboBoxEdit_Realtime_GraphicState.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																																	   new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.comboBoxEdit_Realtime_GraphicState.Properties.Items.AddRange(new object[] {
																							   "上班情况",
																							   "下班情况"});
			this.comboBoxEdit_Realtime_GraphicState.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
			this.comboBoxEdit_Realtime_GraphicState.Size = new System.Drawing.Size(88, 23);
			this.comboBoxEdit_Realtime_GraphicState.TabIndex = 24;
			this.comboBoxEdit_Realtime_GraphicState.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit_Realtime_GraphicState_SelectedIndexChanged);
			// 
			// notePanel_Realtime_GraphicState
			// 
			this.notePanel_Realtime_GraphicState.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_Realtime_GraphicState.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_Realtime_GraphicState.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_Realtime_GraphicState.ForeColor = System.Drawing.Color.Black;
			this.notePanel_Realtime_GraphicState.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_Realtime_GraphicState.Location = new System.Drawing.Point(16, 72);
			this.notePanel_Realtime_GraphicState.MaxRows = 5;
			this.notePanel_Realtime_GraphicState.Name = "notePanel_Realtime_GraphicState";
			this.notePanel_Realtime_GraphicState.ParentAutoHeight = true;
			this.notePanel_Realtime_GraphicState.Size = new System.Drawing.Size(64, 22);
			this.notePanel_Realtime_GraphicState.TabIndex = 23;
			this.notePanel_Realtime_GraphicState.TabStop = false;
			this.notePanel_Realtime_GraphicState.Text = "类  型:";
			// 
			// comboBoxEdit_Realtime_GraphicDept
			// 
			this.comboBoxEdit_Realtime_GraphicDept.EditValue = "全部";
			this.comboBoxEdit_Realtime_GraphicDept.Location = new System.Drawing.Point(88, 32);
			this.comboBoxEdit_Realtime_GraphicDept.Name = "comboBoxEdit_Realtime_GraphicDept";
			// 
			// comboBoxEdit_Realtime_GraphicDept.Properties
			// 
			this.comboBoxEdit_Realtime_GraphicDept.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																																	  new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.comboBoxEdit_Realtime_GraphicDept.Properties.Items.AddRange(new object[] {
																							  "全部"});
			this.comboBoxEdit_Realtime_GraphicDept.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
			this.comboBoxEdit_Realtime_GraphicDept.Size = new System.Drawing.Size(88, 23);
			this.comboBoxEdit_Realtime_GraphicDept.TabIndex = 21;
			this.comboBoxEdit_Realtime_GraphicDept.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit_Realtime_GraphicDept_SelectedIndexChanged);
			// 
			// notePanel_Realtime_GraphicDept
			// 
			this.notePanel_Realtime_GraphicDept.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_Realtime_GraphicDept.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_Realtime_GraphicDept.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_Realtime_GraphicDept.ForeColor = System.Drawing.Color.Black;
			this.notePanel_Realtime_GraphicDept.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_Realtime_GraphicDept.Location = new System.Drawing.Point(16, 32);
			this.notePanel_Realtime_GraphicDept.MaxRows = 5;
			this.notePanel_Realtime_GraphicDept.Name = "notePanel_Realtime_GraphicDept";
			this.notePanel_Realtime_GraphicDept.ParentAutoHeight = true;
			this.notePanel_Realtime_GraphicDept.Size = new System.Drawing.Size(64, 22);
			this.notePanel_Realtime_GraphicDept.TabIndex = 19;
			this.notePanel_Realtime_GraphicDept.TabStop = false;
			this.notePanel_Realtime_GraphicDept.Text = "部  门:";
			// 
			// notePanel_Realtime_GraphicSearch
			// 
			this.notePanel_Realtime_GraphicSearch.BackColor = System.Drawing.Color.LightGoldenrodYellow;
			this.notePanel_Realtime_GraphicSearch.Dock = System.Windows.Forms.DockStyle.Top;
			this.notePanel_Realtime_GraphicSearch.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.notePanel_Realtime_GraphicSearch.ForeColor = System.Drawing.Color.OrangeRed;
			this.notePanel_Realtime_GraphicSearch.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_Realtime_GraphicSearch.Location = new System.Drawing.Point(3, 18);
			this.notePanel_Realtime_GraphicSearch.MaxRows = 5;
			this.notePanel_Realtime_GraphicSearch.Name = "notePanel_Realtime_GraphicSearch";
			this.notePanel_Realtime_GraphicSearch.ParentAutoHeight = true;
			this.notePanel_Realtime_GraphicSearch.Size = new System.Drawing.Size(196, 23);
			this.notePanel_Realtime_GraphicSearch.TabIndex = 6;
			this.notePanel_Realtime_GraphicSearch.TabStop = false;
			this.notePanel_Realtime_GraphicSearch.Text = "搜索条件";
			// 
			// groupControl_Realtime_GraphicShow
			// 
			this.groupControl_Realtime_GraphicShow.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.groupControl_Realtime_GraphicShow.AppearanceCaption.Options.UseFont = true;
			this.groupControl_Realtime_GraphicShow.Controls.Add(this.panelControl_Realtime_GraphicShow);
			this.groupControl_Realtime_GraphicShow.Dock = System.Windows.Forms.DockStyle.Fill;
			this.groupControl_Realtime_GraphicShow.Location = new System.Drawing.Point(0, 48);
			this.groupControl_Realtime_GraphicShow.Name = "groupControl_Realtime_GraphicShow";
			this.groupControl_Realtime_GraphicShow.Size = new System.Drawing.Size(550, 461);
			this.groupControl_Realtime_GraphicShow.TabIndex = 1;
			this.groupControl_Realtime_GraphicShow.Text = "图形预览";
			// 
			// panelControl_Realtime_GraphicShow
			// 
			this.panelControl_Realtime_GraphicShow.Appearance.BackColor = System.Drawing.Color.Transparent;
			this.panelControl_Realtime_GraphicShow.Appearance.Options.UseBackColor = true;
			this.panelControl_Realtime_GraphicShow.Dock = System.Windows.Forms.DockStyle.Fill;
			this.panelControl_Realtime_GraphicShow.Location = new System.Drawing.Point(3, 18);
			this.panelControl_Realtime_GraphicShow.Name = "panelControl_Realtime_GraphicShow";
			this.panelControl_Realtime_GraphicShow.Size = new System.Drawing.Size(544, 440);
			this.panelControl_Realtime_GraphicShow.TabIndex = 0;
			this.panelControl_Realtime_GraphicShow.Text = "panelControl3";
			this.panelControl_Realtime_GraphicShow.Resize += new System.EventHandler(this.panelControl_Realtime_GraphicShow_Resize);
			// 
			// panelControl2
			// 
			this.panelControl2.Controls.Add(this.simpleButton_RealTime_GraphicSer);
			this.panelControl2.Controls.Add(this.simpleButton_Realtime_GraphicPrint);
			this.panelControl2.Dock = System.Windows.Forms.DockStyle.Top;
			this.panelControl2.Location = new System.Drawing.Point(0, 0);
			this.panelControl2.Name = "panelControl2";
			this.panelControl2.Size = new System.Drawing.Size(550, 48);
			this.panelControl2.TabIndex = 0;
			this.panelControl2.Text = "panelControl2";
			// 
			// simpleButton_RealTime_GraphicSer
			// 
			this.simpleButton_RealTime_GraphicSer.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.simpleButton_RealTime_GraphicSer.Appearance.ForeColor = System.Drawing.Color.DarkMagenta;
			this.simpleButton_RealTime_GraphicSer.Appearance.Options.UseFont = true;
			this.simpleButton_RealTime_GraphicSer.Appearance.Options.UseForeColor = true;
			this.simpleButton_RealTime_GraphicSer.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton_RealTime_GraphicSer.Image")));
			this.simpleButton_RealTime_GraphicSer.Location = new System.Drawing.Point(16, 12);
			this.simpleButton_RealTime_GraphicSer.Name = "simpleButton_RealTime_GraphicSer";
			this.simpleButton_RealTime_GraphicSer.Size = new System.Drawing.Size(88, 26);
			this.simpleButton_RealTime_GraphicSer.TabIndex = 15;
			this.simpleButton_RealTime_GraphicSer.Tag = 4;
			this.simpleButton_RealTime_GraphicSer.Text = "搜  索";
			this.simpleButton_RealTime_GraphicSer.Click += new System.EventHandler(this.simpleButton_RealTime_GraphicSer_Click);
			// 
			// simpleButton_Realtime_GraphicPrint
			// 
			this.simpleButton_Realtime_GraphicPrint.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.simpleButton_Realtime_GraphicPrint.Appearance.ForeColor = System.Drawing.Color.DarkMagenta;
			this.simpleButton_Realtime_GraphicPrint.Appearance.Options.UseFont = true;
			this.simpleButton_Realtime_GraphicPrint.Appearance.Options.UseForeColor = true;
			this.simpleButton_Realtime_GraphicPrint.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton_Realtime_GraphicPrint.Image")));
			this.simpleButton_Realtime_GraphicPrint.Location = new System.Drawing.Point(112, 11);
			this.simpleButton_Realtime_GraphicPrint.Name = "simpleButton_Realtime_GraphicPrint";
			this.simpleButton_Realtime_GraphicPrint.Size = new System.Drawing.Size(104, 26);
			this.simpleButton_Realtime_GraphicPrint.TabIndex = 13;
			this.simpleButton_Realtime_GraphicPrint.Tag = 4;
			this.simpleButton_Realtime_GraphicPrint.Text = "图形打印";
			this.simpleButton_Realtime_GraphicPrint.Click += new System.EventHandler(this.simpleButton_Realtime_GraphicPrint_Click);
			// 
			// xtraTabPage2
			// 
			this.xtraTabPage2.Appearance.PageClient.BackColor = System.Drawing.Color.WhiteSmoke;
			this.xtraTabPage2.Appearance.PageClient.Options.UseBackColor = true;
			this.xtraTabPage2.Controls.Add(this.splitContainerControl1);
			this.xtraTabPage2.Name = "xtraTabPage2";
			this.xtraTabPage2.Size = new System.Drawing.Size(768, 515);
			this.xtraTabPage2.Text = "数据统计";
			// 
			// splitContainerControl1
			// 
			this.splitContainerControl1.Dock = System.Windows.Forms.DockStyle.Fill;
			this.splitContainerControl1.Location = new System.Drawing.Point(0, 0);
			this.splitContainerControl1.Name = "splitContainerControl1";
			this.splitContainerControl1.Panel1.Controls.Add(this.groupControl1_Realtime_Data);
			this.splitContainerControl1.Panel1.Text = "splitContainerControl1_Panel1";
			this.splitContainerControl1.Panel2.Controls.Add(this.gridControl_DataBack);
			this.splitContainerControl1.Panel2.Controls.Add(this.gridControl_DataMorning);
			this.splitContainerControl1.Panel2.Controls.Add(this.panelControl1);
			this.splitContainerControl1.Panel2.Text = "splitContainerControl1_Panel2";
			this.splitContainerControl1.Size = new System.Drawing.Size(768, 515);
			this.splitContainerControl1.SplitterPosition = 217;
			this.splitContainerControl1.TabIndex = 0;
			this.splitContainerControl1.Text = "splitContainerControl1";
			// 
			// groupControl1_Realtime_Data
			// 
			this.groupControl1_Realtime_Data.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.groupControl1_Realtime_Data.Appearance.Options.UseFont = true;
			this.groupControl1_Realtime_Data.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.groupControl1_Realtime_Data.AppearanceCaption.Options.UseFont = true;
			this.groupControl1_Realtime_Data.Controls.Add(this.groupControl_RealtimeStat_Dept);
			this.groupControl1_Realtime_Data.Controls.Add(this.notePanel_Realtime_DataSearch);
			this.groupControl1_Realtime_Data.Dock = System.Windows.Forms.DockStyle.Fill;
			this.groupControl1_Realtime_Data.Location = new System.Drawing.Point(0, 0);
			this.groupControl1_Realtime_Data.Name = "groupControl1_Realtime_Data";
			this.groupControl1_Realtime_Data.Size = new System.Drawing.Size(211, 509);
			this.groupControl1_Realtime_Data.TabIndex = 2;
			this.groupControl1_Realtime_Data.Text = "实时窗口统计";
			// 
			// groupControl_RealtimeStat_Dept
			// 
			this.groupControl_RealtimeStat_Dept.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.groupControl_RealtimeStat_Dept.AppearanceCaption.Options.UseFont = true;
			this.groupControl_RealtimeStat_Dept.Controls.Add(this.comboBoxEdit_Realtime_DataState);
			this.groupControl_RealtimeStat_Dept.Controls.Add(this.notePanel_Realtime_DataState);
			this.groupControl_RealtimeStat_Dept.Controls.Add(this.comboBoxEdit_Realtime_DataDept);
			this.groupControl_RealtimeStat_Dept.Controls.Add(this.notePanel_Realtime_DataDept);
			this.groupControl_RealtimeStat_Dept.Dock = System.Windows.Forms.DockStyle.Top;
			this.groupControl_RealtimeStat_Dept.Location = new System.Drawing.Point(3, 41);
			this.groupControl_RealtimeStat_Dept.Name = "groupControl_RealtimeStat_Dept";
			this.groupControl_RealtimeStat_Dept.Size = new System.Drawing.Size(205, 119);
			this.groupControl_RealtimeStat_Dept.TabIndex = 7;
			this.groupControl_RealtimeStat_Dept.Text = "统计状态和部门信息";
			// 
			// comboBoxEdit_Realtime_DataState
			// 
			this.comboBoxEdit_Realtime_DataState.EditValue = "上班情况";
			this.comboBoxEdit_Realtime_DataState.Location = new System.Drawing.Point(88, 72);
			this.comboBoxEdit_Realtime_DataState.Name = "comboBoxEdit_Realtime_DataState";
			// 
			// comboBoxEdit_Realtime_DataState.Properties
			// 
			this.comboBoxEdit_Realtime_DataState.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																																	new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.comboBoxEdit_Realtime_DataState.Properties.Items.AddRange(new object[] {
																							"上班情况",
																							"下班情况"});
			this.comboBoxEdit_Realtime_DataState.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
			this.comboBoxEdit_Realtime_DataState.Size = new System.Drawing.Size(88, 23);
			this.comboBoxEdit_Realtime_DataState.TabIndex = 24;
			this.comboBoxEdit_Realtime_DataState.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit_Realtime_DataState_SelectedIndexChanged);
			// 
			// notePanel_Realtime_DataState
			// 
			this.notePanel_Realtime_DataState.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_Realtime_DataState.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_Realtime_DataState.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_Realtime_DataState.ForeColor = System.Drawing.Color.Black;
			this.notePanel_Realtime_DataState.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_Realtime_DataState.Location = new System.Drawing.Point(16, 72);
			this.notePanel_Realtime_DataState.MaxRows = 5;
			this.notePanel_Realtime_DataState.Name = "notePanel_Realtime_DataState";
			this.notePanel_Realtime_DataState.ParentAutoHeight = true;
			this.notePanel_Realtime_DataState.Size = new System.Drawing.Size(64, 22);
			this.notePanel_Realtime_DataState.TabIndex = 23;
			this.notePanel_Realtime_DataState.TabStop = false;
			this.notePanel_Realtime_DataState.Text = "类  型:";
			// 
			// comboBoxEdit_Realtime_DataDept
			// 
			this.comboBoxEdit_Realtime_DataDept.EditValue = "全部";
			this.comboBoxEdit_Realtime_DataDept.Location = new System.Drawing.Point(88, 32);
			this.comboBoxEdit_Realtime_DataDept.Name = "comboBoxEdit_Realtime_DataDept";
			// 
			// comboBoxEdit_Realtime_DataDept.Properties
			// 
			this.comboBoxEdit_Realtime_DataDept.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																																   new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.comboBoxEdit_Realtime_DataDept.Properties.Items.AddRange(new object[] {
																						   "全部"});
			this.comboBoxEdit_Realtime_DataDept.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
			this.comboBoxEdit_Realtime_DataDept.Size = new System.Drawing.Size(88, 23);
			this.comboBoxEdit_Realtime_DataDept.TabIndex = 21;
			this.comboBoxEdit_Realtime_DataDept.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit_Realtime_DataDept_SelectedIndexChanged);
			// 
			// notePanel_Realtime_DataDept
			// 
			this.notePanel_Realtime_DataDept.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_Realtime_DataDept.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_Realtime_DataDept.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_Realtime_DataDept.ForeColor = System.Drawing.Color.Black;
			this.notePanel_Realtime_DataDept.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_Realtime_DataDept.Location = new System.Drawing.Point(16, 32);
			this.notePanel_Realtime_DataDept.MaxRows = 5;
			this.notePanel_Realtime_DataDept.Name = "notePanel_Realtime_DataDept";
			this.notePanel_Realtime_DataDept.ParentAutoHeight = true;
			this.notePanel_Realtime_DataDept.Size = new System.Drawing.Size(64, 22);
			this.notePanel_Realtime_DataDept.TabIndex = 19;
			this.notePanel_Realtime_DataDept.TabStop = false;
			this.notePanel_Realtime_DataDept.Text = "部  门:";
			// 
			// notePanel_Realtime_DataSearch
			// 
			this.notePanel_Realtime_DataSearch.BackColor = System.Drawing.Color.LightGoldenrodYellow;
			this.notePanel_Realtime_DataSearch.Dock = System.Windows.Forms.DockStyle.Top;
			this.notePanel_Realtime_DataSearch.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.notePanel_Realtime_DataSearch.ForeColor = System.Drawing.Color.OrangeRed;
			this.notePanel_Realtime_DataSearch.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_Realtime_DataSearch.Location = new System.Drawing.Point(3, 18);
			this.notePanel_Realtime_DataSearch.MaxRows = 5;
			this.notePanel_Realtime_DataSearch.Name = "notePanel_Realtime_DataSearch";
			this.notePanel_Realtime_DataSearch.ParentAutoHeight = true;
			this.notePanel_Realtime_DataSearch.Size = new System.Drawing.Size(205, 23);
			this.notePanel_Realtime_DataSearch.TabIndex = 6;
			this.notePanel_Realtime_DataSearch.TabStop = false;
			this.notePanel_Realtime_DataSearch.Text = "搜索条件";
			// 
			// gridControl_DataBack
			// 
			this.gridControl_DataBack.Dock = System.Windows.Forms.DockStyle.Fill;
			// 
			// gridControl_DataBack.EmbeddedNavigator
			// 
			this.gridControl_DataBack.EmbeddedNavigator.Name = "";
			this.gridControl_DataBack.Location = new System.Drawing.Point(0, 48);
			this.gridControl_DataBack.MainView = this.gridView2;
			this.gridControl_DataBack.Name = "gridControl_DataBack";
			this.gridControl_DataBack.Size = new System.Drawing.Size(541, 461);
			this.gridControl_DataBack.TabIndex = 2;
			this.gridControl_DataBack.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
																												this.gridView2});
			this.gridControl_DataBack.Visible = false;
			// 
			// gridView2
			// 
			this.gridView2.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
																							 this.gridColumn8,
																							 this.gridColumn9,
																							 this.gridColumn10,
																							 this.gridColumn11,
																							 this.gridColumn12,
																							 this.gridColumn13});
			this.gridView2.GridControl = this.gridControl_DataBack;
			this.gridView2.Name = "gridView2";
			this.gridView2.OptionsCustomization.AllowFilter = false;
			this.gridView2.OptionsView.ShowFilterPanel = false;
			this.gridView2.OptionsView.ShowGroupPanel = false;
			// 
			// gridColumn8
			// 
			this.gridColumn8.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn8.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn8.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn8.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn8.Caption = "部门";
			this.gridColumn8.FieldName = "info_gradeName";
			this.gridColumn8.Name = "gridColumn8";
			this.gridColumn8.OptionsColumn.AllowEdit = false;
			this.gridColumn8.OptionsColumn.AllowFocus = false;
			this.gridColumn8.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn8.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn8.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn8.OptionsColumn.AllowMove = false;
			this.gridColumn8.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn8.OptionsColumn.ReadOnly = true;
			this.gridColumn8.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn8.Visible = true;
			this.gridColumn8.VisibleIndex = 0;
			this.gridColumn8.Width = 66;
			// 
			// gridColumn9
			// 
			this.gridColumn9.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn9.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn9.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn9.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn9.Caption = "离开";
			this.gridColumn9.FieldName = "info_leaveOnTime";
			this.gridColumn9.Name = "gridColumn9";
			this.gridColumn9.OptionsColumn.AllowEdit = false;
			this.gridColumn9.OptionsColumn.AllowFocus = false;
			this.gridColumn9.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn9.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn9.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn9.OptionsColumn.AllowMove = false;
			this.gridColumn9.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn9.OptionsColumn.ReadOnly = true;
			this.gridColumn9.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn9.Visible = true;
			this.gridColumn9.VisibleIndex = 1;
			this.gridColumn9.Width = 102;
			// 
			// gridColumn10
			// 
			this.gridColumn10.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn10.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn10.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn10.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn10.Caption = "早退";
			this.gridColumn10.FieldName = "info_leaveNotOnTime";
			this.gridColumn10.Name = "gridColumn10";
			this.gridColumn10.OptionsColumn.AllowEdit = false;
			this.gridColumn10.OptionsColumn.AllowFocus = false;
			this.gridColumn10.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn10.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn10.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn10.OptionsColumn.AllowMove = false;
			this.gridColumn10.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn10.OptionsColumn.ReadOnly = true;
			this.gridColumn10.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn10.Visible = true;
			this.gridColumn10.VisibleIndex = 2;
			this.gridColumn10.Width = 91;
			// 
			// gridColumn11
			// 
			this.gridColumn11.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn11.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn11.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn11.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn11.Caption = "应离开";
			this.gridColumn11.FieldName = "info_shouldLeave";
			this.gridColumn11.Name = "gridColumn11";
			this.gridColumn11.OptionsColumn.AllowEdit = false;
			this.gridColumn11.OptionsColumn.AllowFocus = false;
			this.gridColumn11.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn11.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn11.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn11.OptionsColumn.AllowMove = false;
			this.gridColumn11.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn11.OptionsColumn.ReadOnly = true;
			this.gridColumn11.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn11.Visible = true;
			this.gridColumn11.VisibleIndex = 3;
			// 
			// gridColumn12
			// 
			this.gridColumn12.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn12.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn12.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn12.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn12.Caption = "剩余";
			this.gridColumn12.FieldName = "info_remain";
			this.gridColumn12.Name = "gridColumn12";
			this.gridColumn12.OptionsColumn.AllowEdit = false;
			this.gridColumn12.OptionsColumn.AllowFocus = false;
			this.gridColumn12.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn12.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn12.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn12.OptionsColumn.AllowMove = false;
			this.gridColumn12.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn12.OptionsColumn.ReadOnly = true;
			this.gridColumn12.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn12.Visible = true;
			this.gridColumn12.VisibleIndex = 4;
			this.gridColumn12.Width = 93;
			// 
			// gridColumn13
			// 
			this.gridColumn13.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn13.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn13.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn13.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn13.Caption = "离开率";
			this.gridColumn13.FieldName = "info_leavePer";
			this.gridColumn13.Name = "gridColumn13";
			this.gridColumn13.OptionsColumn.AllowEdit = false;
			this.gridColumn13.OptionsColumn.AllowFocus = false;
			this.gridColumn13.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn13.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn13.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn13.OptionsColumn.AllowMove = false;
			this.gridColumn13.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn13.OptionsColumn.ReadOnly = true;
			this.gridColumn13.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn13.Visible = true;
			this.gridColumn13.VisibleIndex = 5;
			this.gridColumn13.Width = 97;
			// 
			// gridControl_DataMorning
			// 
			this.gridControl_DataMorning.Dock = System.Windows.Forms.DockStyle.Fill;
			// 
			// gridControl_DataMorning.EmbeddedNavigator
			// 
			this.gridControl_DataMorning.EmbeddedNavigator.Name = "";
			this.gridControl_DataMorning.Location = new System.Drawing.Point(0, 48);
			this.gridControl_DataMorning.MainView = this.gridView1;
			this.gridControl_DataMorning.Name = "gridControl_DataMorning";
			this.gridControl_DataMorning.Size = new System.Drawing.Size(541, 461);
			this.gridControl_DataMorning.TabIndex = 1;
			this.gridControl_DataMorning.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
																												   this.gridView1});
			// 
			// gridView1
			// 
			this.gridView1.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
																							 this.gridColumn1,
																							 this.gridColumn2,
																							 this.gridColumn3,
																							 this.gridColumn4,
																							 this.gridColumn5,
																							 this.gridColumn6,
																							 this.gridColumn7});
			this.gridView1.GridControl = this.gridControl_DataMorning;
			this.gridView1.Name = "gridView1";
			this.gridView1.OptionsCustomization.AllowFilter = false;
			this.gridView1.OptionsView.ShowFilterPanel = false;
			this.gridView1.OptionsView.ShowGroupPanel = false;
			// 
			// gridColumn1
			// 
			this.gridColumn1.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn1.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn1.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn1.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn1.Caption = "部门";
			this.gridColumn1.FieldName = "info_gradeName";
			this.gridColumn1.Name = "gridColumn1";
			this.gridColumn1.OptionsColumn.AllowEdit = false;
			this.gridColumn1.OptionsColumn.AllowFocus = false;
			this.gridColumn1.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn1.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn1.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn1.OptionsColumn.AllowMove = false;
			this.gridColumn1.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn1.OptionsColumn.ReadOnly = true;
			this.gridColumn1.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn1.Visible = true;
			this.gridColumn1.VisibleIndex = 0;
			this.gridColumn1.Width = 66;
			// 
			// gridColumn2
			// 
			this.gridColumn2.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn2.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn2.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn2.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn2.Caption = "准时";
			this.gridColumn2.FieldName = "info_onTime";
			this.gridColumn2.Name = "gridColumn2";
			this.gridColumn2.OptionsColumn.AllowEdit = false;
			this.gridColumn2.OptionsColumn.AllowFocus = false;
			this.gridColumn2.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn2.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn2.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn2.OptionsColumn.AllowMove = false;
			this.gridColumn2.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn2.OptionsColumn.ReadOnly = true;
			this.gridColumn2.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn2.Visible = true;
			this.gridColumn2.VisibleIndex = 1;
			this.gridColumn2.Width = 86;
			// 
			// gridColumn3
			// 
			this.gridColumn3.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn3.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn3.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn3.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn3.Caption = "迟到";
			this.gridColumn3.FieldName = "info_notOnTime";
			this.gridColumn3.Name = "gridColumn3";
			this.gridColumn3.OptionsColumn.AllowEdit = false;
			this.gridColumn3.OptionsColumn.AllowFocus = false;
			this.gridColumn3.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn3.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn3.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn3.OptionsColumn.AllowMove = false;
			this.gridColumn3.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn3.OptionsColumn.ReadOnly = true;
			this.gridColumn3.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn3.Visible = true;
			this.gridColumn3.VisibleIndex = 2;
			this.gridColumn3.Width = 82;
			// 
			// gridColumn4
			// 
			this.gridColumn4.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn4.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn4.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn4.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn4.Caption = "应到";
			this.gridColumn4.FieldName = "info_shouldAtt";
			this.gridColumn4.Name = "gridColumn4";
			this.gridColumn4.OptionsColumn.AllowEdit = false;
			this.gridColumn4.OptionsColumn.AllowFocus = false;
			this.gridColumn4.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn4.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn4.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn4.OptionsColumn.AllowMove = false;
			this.gridColumn4.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn4.OptionsColumn.ReadOnly = true;
			this.gridColumn4.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn4.Visible = true;
			this.gridColumn4.VisibleIndex = 3;
			this.gridColumn4.Width = 54;
			// 
			// gridColumn5
			// 
			this.gridColumn5.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn5.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn5.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn5.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn5.Caption = "实到";
			this.gridColumn5.FieldName = "info_haveAtt";
			this.gridColumn5.Name = "gridColumn5";
			this.gridColumn5.OptionsColumn.AllowEdit = false;
			this.gridColumn5.OptionsColumn.AllowFocus = false;
			this.gridColumn5.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn5.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn5.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn5.OptionsColumn.AllowMove = false;
			this.gridColumn5.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn5.OptionsColumn.ReadOnly = true;
			this.gridColumn5.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn5.Visible = true;
			this.gridColumn5.VisibleIndex = 4;
			this.gridColumn5.Width = 54;
			// 
			// gridColumn6
			// 
			this.gridColumn6.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn6.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn6.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn6.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn6.Caption = "缺席";
			this.gridColumn6.FieldName = "info_absence";
			this.gridColumn6.Name = "gridColumn6";
			this.gridColumn6.OptionsColumn.AllowEdit = false;
			this.gridColumn6.OptionsColumn.AllowFocus = false;
			this.gridColumn6.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn6.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn6.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn6.OptionsColumn.AllowMove = false;
			this.gridColumn6.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn6.OptionsColumn.ReadOnly = true;
			this.gridColumn6.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn6.Visible = true;
			this.gridColumn6.VisibleIndex = 5;
			this.gridColumn6.Width = 90;
			// 
			// gridColumn7
			// 
			this.gridColumn7.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn7.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn7.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn7.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn7.Caption = "出勤率";
			this.gridColumn7.FieldName = "info_attPer";
			this.gridColumn7.Name = "gridColumn7";
			this.gridColumn7.OptionsColumn.AllowEdit = false;
			this.gridColumn7.OptionsColumn.AllowFocus = false;
			this.gridColumn7.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn7.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn7.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn7.OptionsColumn.AllowMove = false;
			this.gridColumn7.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn7.OptionsColumn.ReadOnly = true;
			this.gridColumn7.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn7.Visible = true;
			this.gridColumn7.VisibleIndex = 6;
			this.gridColumn7.Width = 98;
			// 
			// panelControl1
			// 
			this.panelControl1.Controls.Add(this.simpleButton_RealTime_DataSer);
			this.panelControl1.Controls.Add(this.simpleButton_RealTime_DataPrint);
			this.panelControl1.Dock = System.Windows.Forms.DockStyle.Top;
			this.panelControl1.Location = new System.Drawing.Point(0, 0);
			this.panelControl1.Name = "panelControl1";
			this.panelControl1.Size = new System.Drawing.Size(541, 48);
			this.panelControl1.TabIndex = 0;
			this.panelControl1.Text = "panelControl1";
			// 
			// simpleButton_RealTime_DataSer
			// 
			this.simpleButton_RealTime_DataSer.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.simpleButton_RealTime_DataSer.Appearance.ForeColor = System.Drawing.Color.DarkMagenta;
			this.simpleButton_RealTime_DataSer.Appearance.Options.UseFont = true;
			this.simpleButton_RealTime_DataSer.Appearance.Options.UseForeColor = true;
			this.simpleButton_RealTime_DataSer.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton_RealTime_DataSer.Image")));
			this.simpleButton_RealTime_DataSer.Location = new System.Drawing.Point(8, 8);
			this.simpleButton_RealTime_DataSer.Name = "simpleButton_RealTime_DataSer";
			this.simpleButton_RealTime_DataSer.Size = new System.Drawing.Size(88, 26);
			this.simpleButton_RealTime_DataSer.TabIndex = 10;
			this.simpleButton_RealTime_DataSer.Tag = 4;
			this.simpleButton_RealTime_DataSer.Text = "搜  索";
			this.simpleButton_RealTime_DataSer.Click += new System.EventHandler(this.simpleButton_RealTime_DataSer_Click);
			// 
			// simpleButton_RealTime_DataPrint
			// 
			this.simpleButton_RealTime_DataPrint.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.simpleButton_RealTime_DataPrint.Appearance.ForeColor = System.Drawing.Color.DarkMagenta;
			this.simpleButton_RealTime_DataPrint.Appearance.Options.UseFont = true;
			this.simpleButton_RealTime_DataPrint.Appearance.Options.UseForeColor = true;
			this.simpleButton_RealTime_DataPrint.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton_RealTime_DataPrint.Image")));
			this.simpleButton_RealTime_DataPrint.Location = new System.Drawing.Point(112, 8);
			this.simpleButton_RealTime_DataPrint.Name = "simpleButton_RealTime_DataPrint";
			this.simpleButton_RealTime_DataPrint.Size = new System.Drawing.Size(88, 26);
			this.simpleButton_RealTime_DataPrint.TabIndex = 11;
			this.simpleButton_RealTime_DataPrint.Tag = 4;
			this.simpleButton_RealTime_DataPrint.Text = "报  表";
			this.simpleButton_RealTime_DataPrint.Click += new System.EventHandler(this.simpleButton_RealTime_DataPrint_Click);
			// 
			// RealtimeInfo_Teacher
			// 
			this.Controls.Add(this.xtraTabControl1);
			this.Name = "RealtimeInfo_Teacher";
			this.Size = new System.Drawing.Size(772, 540);
			this.Load += new System.EventHandler(this.RealtimeInfo_Teacher_Load);
			((System.ComponentModel.ISupportInitialize)(this.xtraTabControl1)).EndInit();
			this.xtraTabControl1.ResumeLayout(false);
			this.xtraTabPage1.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.splitContainerControl2)).EndInit();
			this.splitContainerControl2.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.groupControl_Realtime_Graphic)).EndInit();
			this.groupControl_Realtime_Graphic.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.groupControl_Realtime_GraphicDeptInfo)).EndInit();
			this.groupControl_Realtime_GraphicDeptInfo.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_Realtime_GraphicState.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_Realtime_GraphicDept.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_Realtime_GraphicShow)).EndInit();
			this.groupControl_Realtime_GraphicShow.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.panelControl_Realtime_GraphicShow)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.panelControl2)).EndInit();
			this.panelControl2.ResumeLayout(false);
			this.xtraTabPage2.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.splitContainerControl1)).EndInit();
			this.splitContainerControl1.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.groupControl1_Realtime_Data)).EndInit();
			this.groupControl1_Realtime_Data.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.groupControl_RealtimeStat_Dept)).EndInit();
			this.groupControl_RealtimeStat_Dept.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_Realtime_DataState.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_Realtime_DataDept.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.gridControl_DataBack)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.gridView2)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.gridControl_DataMorning)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
			this.panelControl1.ResumeLayout(false);
			this.ResumeLayout(false);

		}
示例#32
0
		/// <summary> 
		/// Required method for Designer support - do not modify 
		/// the contents of this method with the code editor.
		/// </summary>
		private void InitializeComponent()
		{
			System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(GardenInfo));
			this.groupControl_GardenInfo = new DevExpress.XtraEditors.GroupControl();
			this.pictureEdit_GardenImage = new DevExpress.XtraEditors.PictureEdit();
			this.barManager1 = new DevExpress.XtraBars.BarManager();
			this.popupMenu1 = new DevExpress.XtraBars.PopupMenu();
			this.barButtonItem1 = new DevExpress.XtraBars.BarButtonItem();
			this.barDockControlTop = new DevExpress.XtraBars.BarDockControl();
			this.barDockControlBottom = new DevExpress.XtraBars.BarDockControl();
			this.barDockControlLeft = new DevExpress.XtraBars.BarDockControl();
			this.barDockControlRight = new DevExpress.XtraBars.BarDockControl();
			this.textEdit_GardenFeature = new DevExpress.XtraEditors.TextEdit();
			this.textEdit_GardenRegCode = new DevExpress.XtraEditors.TextEdit();
			this.notePanel2 = new DevExpress.Utils.Frames.NotePanel();
			this.label_ReqOfGarName = new System.Windows.Forms.Label();
			this.simpleButton_GardenInfoSave = new DevExpress.XtraEditors.SimpleButton();
			this.textEdit_GardenName = new DevExpress.XtraEditors.TextEdit();
			this.pnlHint_GardenName = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_GardenAddress = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_GardenContact = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_GardenRemark = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_GardenInfoTitle = new DevExpress.Utils.Frames.NotePanel();
			this.textEdit_GardenAddress = new DevExpress.XtraEditors.TextEdit();
			this.textEdit_GardenContact = new DevExpress.XtraEditors.TextEdit();
			this.simpleButton_GardenInfoReset = new DevExpress.XtraEditors.SimpleButton();
			this.splitContainerControl_GradeClassInfo = new DevExpress.XtraEditors.SplitContainerControl();
			this.xtraTabControl_GradeInfo = new DevExpress.XtraTab.XtraTabControl();
			this.xtraTabPage_AddGrade = new DevExpress.XtraTab.XtraTabPage();
			this.label3 = new System.Windows.Forms.Label();
			this.comboBoxEdit_gradeNumber = new DevExpress.XtraEditors.ComboBoxEdit();
			this.notePanel_gradeNumber = new DevExpress.Utils.Frames.NotePanel();
			this.comboBoxEdit_GradeRemark = new DevExpress.XtraEditors.ComboBoxEdit();
			this.notePanel5 = new DevExpress.Utils.Frames.NotePanel();
			this.radioGroup_Grade = new DevExpress.XtraEditors.RadioGroup();
			this.label_ReqOfGadeName = new System.Windows.Forms.Label();
			this.simpleButton_GradeInfoSave = new DevExpress.XtraEditors.SimpleButton();
			this.textEdit_GradeName = new DevExpress.XtraEditors.TextEdit();
			this.notePanel_GradeName = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_GradeRemark = new DevExpress.Utils.Frames.NotePanel();
			this.simpleButton_GradeInfoReset = new DevExpress.XtraEditors.SimpleButton();
			this.xtraTabPage_GradeModify = new DevExpress.XtraTab.XtraTabPage();
			this.comboBoxEdit_GradeRemarkModify = new DevExpress.XtraEditors.ComboBoxEdit();
			this.label_ReqOfGadeMdiName = new System.Windows.Forms.Label();
			this.simpleButton_GradeModify = new DevExpress.XtraEditors.SimpleButton();
			this.simpleButton_GradeModiReset = new DevExpress.XtraEditors.SimpleButton();
			this.comboBoxEdit_GradeModify = new DevExpress.XtraEditors.ComboBoxEdit();
			this.notePanel_GradeNameModify = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_GradeModify = new DevExpress.Utils.Frames.NotePanel();
			this.simpleButton_DeleteGrade = new DevExpress.XtraEditors.SimpleButton();
			this.xtraTabPage_Machine = new DevExpress.XtraTab.XtraTabPage();
			this.smbDelete = new DevExpress.XtraEditors.SimpleButton();
			this.smbSave = new DevExpress.XtraEditors.SimpleButton();
			this.groupControl1 = new DevExpress.XtraEditors.GroupControl();
			this.gdMachineInfo = new DevExpress.XtraGrid.GridControl();
			this.gridView1 = new DevExpress.XtraGrid.Views.Grid.GridView();
			this.gridColumn1 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.txtVol = new DevExpress.XtraEditors.TextEdit();
			this.notePanel8 = new DevExpress.Utils.Frames.NotePanel();
			this.txtTerminal = new DevExpress.XtraEditors.TextEdit();
			this.notePanel7 = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel1 = new DevExpress.Utils.Frames.NotePanel();
			this.xtraTabControl_ClassInfo = new DevExpress.XtraTab.XtraTabControl();
			this.xtraTabPage_ClassAdd = new DevExpress.XtraTab.XtraTabPage();
			this.label4 = new System.Windows.Forms.Label();
			this.comboBoxEdit_classNumber = new DevExpress.XtraEditors.ComboBoxEdit();
			this.notePanel_classNumber = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel6 = new DevExpress.Utils.Frames.NotePanel();
			this.label_ReqOfClassName = new System.Windows.Forms.Label();
			this.simpleButton_ClassSave = new DevExpress.XtraEditors.SimpleButton();
			this.textEdit_ClassName = new DevExpress.XtraEditors.TextEdit();
			this.notePanel_ClassRemark = new DevExpress.Utils.Frames.NotePanel();
			this.textEdit_ClassRemark = new DevExpress.XtraEditors.TextEdit();
			this.simpleButton_ClassReSet = new DevExpress.XtraEditors.SimpleButton();
			this.notePanel_ClassName = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_GradeForClass = new DevExpress.Utils.Frames.NotePanel();
			this.label1 = new System.Windows.Forms.Label();
			this.radioGroup_Class = new DevExpress.XtraEditors.RadioGroup();
			this.comboBoxEdit1 = new DevExpress.XtraEditors.ComboBoxEdit();
			this.xtraTabPage_ClassModify = new DevExpress.XtraTab.XtraTabPage();
			this.comboBoxEdit_GradeForClass = new DevExpress.XtraEditors.ComboBoxEdit();
			this.label_ReqOfClassMdiName = new System.Windows.Forms.Label();
			this.simpleButton_ClassModi = new DevExpress.XtraEditors.SimpleButton();
			this.simpleButton_ClassModiReset = new DevExpress.XtraEditors.SimpleButton();
			this.textEdit_ClassModifyRemark = new DevExpress.XtraEditors.TextEdit();
			this.comboBoxEdit_ClassNameModify = new DevExpress.XtraEditors.ComboBoxEdit();
			this.notePanel_ClassModifyName = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_ClassModifyRemark = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel3 = new DevExpress.Utils.Frames.NotePanel();
			this.label2 = new System.Windows.Forms.Label();
			this.simpleButton_DeleteClass = new DevExpress.XtraEditors.SimpleButton();
			this.notePanel4 = new DevExpress.Utils.Frames.NotePanel();
			this.openFileDialog_SaveImage = new System.Windows.Forms.OpenFileDialog();
			this.helpProvider_GardenInfo = new System.Windows.Forms.HelpProvider();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_GardenInfo)).BeginInit();
			this.groupControl_GardenInfo.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.pictureEdit_GardenImage.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.barManager1)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.popupMenu1)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_GardenFeature.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_GardenRegCode.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_GardenName.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_GardenAddress.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_GardenContact.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.splitContainerControl_GradeClassInfo)).BeginInit();
			this.splitContainerControl_GradeClassInfo.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.xtraTabControl_GradeInfo)).BeginInit();
			this.xtraTabControl_GradeInfo.SuspendLayout();
			this.xtraTabPage_AddGrade.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_gradeNumber.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_GradeRemark.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.radioGroup_Grade.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_GradeName.Properties)).BeginInit();
			this.xtraTabPage_GradeModify.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_GradeRemarkModify.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_GradeModify.Properties)).BeginInit();
			this.xtraTabPage_Machine.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
			this.groupControl1.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.gdMachineInfo)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.txtVol.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.txtTerminal.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.xtraTabControl_ClassInfo)).BeginInit();
			this.xtraTabControl_ClassInfo.SuspendLayout();
			this.xtraTabPage_ClassAdd.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_classNumber.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_ClassName.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_ClassRemark.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.radioGroup_Class.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit1.Properties)).BeginInit();
			this.xtraTabPage_ClassModify.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_GradeForClass.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_ClassModifyRemark.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_ClassNameModify.Properties)).BeginInit();
			this.SuspendLayout();
			// 
			// groupControl_GardenInfo
			// 
			this.groupControl_GardenInfo.Controls.Add(this.pictureEdit_GardenImage);
			this.groupControl_GardenInfo.Controls.Add(this.textEdit_GardenFeature);
			this.groupControl_GardenInfo.Controls.Add(this.textEdit_GardenRegCode);
			this.groupControl_GardenInfo.Controls.Add(this.notePanel2);
			this.groupControl_GardenInfo.Controls.Add(this.label_ReqOfGarName);
			this.groupControl_GardenInfo.Controls.Add(this.simpleButton_GardenInfoSave);
			this.groupControl_GardenInfo.Controls.Add(this.textEdit_GardenName);
			this.groupControl_GardenInfo.Controls.Add(this.pnlHint_GardenName);
			this.groupControl_GardenInfo.Controls.Add(this.notePanel_GardenAddress);
			this.groupControl_GardenInfo.Controls.Add(this.notePanel_GardenContact);
			this.groupControl_GardenInfo.Controls.Add(this.notePanel_GardenRemark);
			this.groupControl_GardenInfo.Controls.Add(this.notePanel_GardenInfoTitle);
			this.groupControl_GardenInfo.Controls.Add(this.textEdit_GardenAddress);
			this.groupControl_GardenInfo.Controls.Add(this.textEdit_GardenContact);
			this.groupControl_GardenInfo.Controls.Add(this.simpleButton_GardenInfoReset);
			this.groupControl_GardenInfo.Dock = System.Windows.Forms.DockStyle.Top;
			this.groupControl_GardenInfo.Location = new System.Drawing.Point(0, 0);
			this.groupControl_GardenInfo.Name = "groupControl_GardenInfo";
			this.groupControl_GardenInfo.Size = new System.Drawing.Size(772, 256);
			this.groupControl_GardenInfo.TabIndex = 0;
			this.groupControl_GardenInfo.Text = "请录入园所基本信息";
			// 
			// pictureEdit_GardenImage
			// 
			this.pictureEdit_GardenImage.Anchor = System.Windows.Forms.AnchorStyles.Top;
			this.pictureEdit_GardenImage.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("pictureEdit_GardenImage.BackgroundImage")));
			this.pictureEdit_GardenImage.Location = new System.Drawing.Point(536, 56);
			this.pictureEdit_GardenImage.MenuManager = this.barManager1;
			this.pictureEdit_GardenImage.Name = "pictureEdit_GardenImage";
			this.barManager1.SetPopupContextMenu(this.pictureEdit_GardenImage, this.popupMenu1);
			// 
			// pictureEdit_GardenImage.Properties
			// 
			this.pictureEdit_GardenImage.Properties.Appearance.BackColor = System.Drawing.Color.Transparent;
			this.pictureEdit_GardenImage.Properties.Appearance.Options.UseBackColor = true;
			this.pictureEdit_GardenImage.Properties.NullText = "指定位置没有找到园所图片";
			this.pictureEdit_GardenImage.Size = new System.Drawing.Size(192, 152);
			this.pictureEdit_GardenImage.TabIndex = 9;
			// 
			// barManager1
			// 
			this.barManager1.DockControls.Add(this.barDockControlTop);
			this.barManager1.DockControls.Add(this.barDockControlBottom);
			this.barManager1.DockControls.Add(this.barDockControlLeft);
			this.barManager1.DockControls.Add(this.barDockControlRight);
			this.barManager1.Form = this;
			this.barManager1.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
																				  this.barButtonItem1});
			this.barManager1.MaxItemId = 1;
			// 
			// popupMenu1
			// 
			this.popupMenu1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
																									new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.PaintStyle, this.barButtonItem1, DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph)});
			this.popupMenu1.Manager = this.barManager1;
			this.popupMenu1.Name = "popupMenu1";
			// 
			// barButtonItem1
			// 
			this.barButtonItem1.Caption = " 加载图片";
			this.barButtonItem1.Id = 0;
			this.barButtonItem1.Name = "barButtonItem1";
			this.barButtonItem1.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem1_ItemClick);
			// 
			// textEdit_GardenFeature
			// 
			this.textEdit_GardenFeature.EditValue = "";
			this.textEdit_GardenFeature.Location = new System.Drawing.Point(120, 184);
			this.textEdit_GardenFeature.Name = "textEdit_GardenFeature";
			this.textEdit_GardenFeature.Size = new System.Drawing.Size(392, 23);
			this.textEdit_GardenFeature.TabIndex = 8;
			// 
			// textEdit_GardenRegCode
			// 
			this.textEdit_GardenRegCode.EditValue = "";
			this.textEdit_GardenRegCode.Location = new System.Drawing.Point(120, 88);
			this.textEdit_GardenRegCode.Name = "textEdit_GardenRegCode";
			this.textEdit_GardenRegCode.Size = new System.Drawing.Size(392, 23);
			this.textEdit_GardenRegCode.TabIndex = 7;
			// 
			// notePanel2
			// 
			this.notePanel2.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel2.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel2.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel2.ForeColor = System.Drawing.Color.Black;
			this.notePanel2.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel2.Location = new System.Drawing.Point(24, 88);
			this.notePanel2.MaxRows = 5;
			this.notePanel2.Name = "notePanel2";
			this.notePanel2.ParentAutoHeight = true;
			this.notePanel2.Size = new System.Drawing.Size(80, 22);
			this.notePanel2.TabIndex = 6;
			this.notePanel2.TabStop = false;
			this.notePanel2.Text = "园所代码:";
			// 
			// label_ReqOfGarName
			// 
			this.label_ReqOfGarName.ForeColor = System.Drawing.Color.Red;
			this.label_ReqOfGarName.Location = new System.Drawing.Point(8, 56);
			this.label_ReqOfGarName.Name = "label_ReqOfGarName";
			this.label_ReqOfGarName.Size = new System.Drawing.Size(16, 16);
			this.label_ReqOfGarName.TabIndex = 5;
			this.label_ReqOfGarName.Text = "*";
			this.label_ReqOfGarName.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			// 
			// simpleButton_GardenInfoSave
			// 
			this.simpleButton_GardenInfoSave.Anchor = System.Windows.Forms.AnchorStyles.Top;
			this.simpleButton_GardenInfoSave.Appearance.Font = new System.Drawing.Font("Tahoma", 8F);
			this.simpleButton_GardenInfoSave.Appearance.Options.UseFont = true;
			this.simpleButton_GardenInfoSave.Location = new System.Drawing.Point(552, 216);
			this.simpleButton_GardenInfoSave.Name = "simpleButton_GardenInfoSave";
			this.simpleButton_GardenInfoSave.Size = new System.Drawing.Size(72, 24);
			this.simpleButton_GardenInfoSave.TabIndex = 4;
			this.simpleButton_GardenInfoSave.Text = "保存";
			this.simpleButton_GardenInfoSave.Click += new System.EventHandler(this.simpleButton_GardenInfoSave_Click);
			// 
			// textEdit_GardenName
			// 
			this.textEdit_GardenName.EditValue = "";
			this.textEdit_GardenName.Location = new System.Drawing.Point(120, 56);
			this.textEdit_GardenName.Name = "textEdit_GardenName";
			this.textEdit_GardenName.Size = new System.Drawing.Size(392, 23);
			this.textEdit_GardenName.TabIndex = 2;
			// 
			// pnlHint_GardenName
			// 
			this.pnlHint_GardenName.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.pnlHint_GardenName.BackColor2 = System.Drawing.Color.DarkGray;
			this.pnlHint_GardenName.Font = new System.Drawing.Font("Tahoma", 8F);
			this.pnlHint_GardenName.ForeColor = System.Drawing.Color.Black;
			this.pnlHint_GardenName.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.pnlHint_GardenName.Location = new System.Drawing.Point(24, 56);
			this.pnlHint_GardenName.MaxRows = 5;
			this.pnlHint_GardenName.Name = "pnlHint_GardenName";
			this.pnlHint_GardenName.ParentAutoHeight = true;
			this.pnlHint_GardenName.Size = new System.Drawing.Size(80, 22);
			this.pnlHint_GardenName.TabIndex = 1;
			this.pnlHint_GardenName.TabStop = false;
			this.pnlHint_GardenName.Text = "园所名称:";
			// 
			// notePanel_GardenAddress
			// 
			this.notePanel_GardenAddress.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_GardenAddress.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_GardenAddress.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_GardenAddress.ForeColor = System.Drawing.Color.Black;
			this.notePanel_GardenAddress.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_GardenAddress.Location = new System.Drawing.Point(24, 120);
			this.notePanel_GardenAddress.MaxRows = 5;
			this.notePanel_GardenAddress.Name = "notePanel_GardenAddress";
			this.notePanel_GardenAddress.ParentAutoHeight = true;
			this.notePanel_GardenAddress.Size = new System.Drawing.Size(80, 22);
			this.notePanel_GardenAddress.TabIndex = 1;
			this.notePanel_GardenAddress.TabStop = false;
			this.notePanel_GardenAddress.Text = "园所地址:";
			// 
			// notePanel_GardenContact
			// 
			this.notePanel_GardenContact.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_GardenContact.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_GardenContact.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_GardenContact.ForeColor = System.Drawing.Color.Black;
			this.notePanel_GardenContact.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_GardenContact.Location = new System.Drawing.Point(24, 152);
			this.notePanel_GardenContact.MaxRows = 5;
			this.notePanel_GardenContact.Name = "notePanel_GardenContact";
			this.notePanel_GardenContact.ParentAutoHeight = true;
			this.notePanel_GardenContact.Size = new System.Drawing.Size(80, 22);
			this.notePanel_GardenContact.TabIndex = 1;
			this.notePanel_GardenContact.TabStop = false;
			this.notePanel_GardenContact.Text = "联系方式:";
			// 
			// notePanel_GardenRemark
			// 
			this.notePanel_GardenRemark.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_GardenRemark.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_GardenRemark.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_GardenRemark.ForeColor = System.Drawing.Color.Black;
			this.notePanel_GardenRemark.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_GardenRemark.Location = new System.Drawing.Point(24, 184);
			this.notePanel_GardenRemark.MaxRows = 5;
			this.notePanel_GardenRemark.Name = "notePanel_GardenRemark";
			this.notePanel_GardenRemark.ParentAutoHeight = true;
			this.notePanel_GardenRemark.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.notePanel_GardenRemark.Size = new System.Drawing.Size(80, 22);
			this.notePanel_GardenRemark.TabIndex = 1;
			this.notePanel_GardenRemark.TabStop = false;
			this.notePanel_GardenRemark.Text = "园所特色";
			// 
			// notePanel_GardenInfoTitle
			// 
			this.notePanel_GardenInfoTitle.BackColor = System.Drawing.Color.LightGoldenrodYellow;
			this.notePanel_GardenInfoTitle.Dock = System.Windows.Forms.DockStyle.Top;
			this.notePanel_GardenInfoTitle.ForeColor = System.Drawing.Color.OrangeRed;
			this.notePanel_GardenInfoTitle.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_GardenInfoTitle.Location = new System.Drawing.Point(3, 18);
			this.notePanel_GardenInfoTitle.MaxRows = 5;
			this.notePanel_GardenInfoTitle.Name = "notePanel_GardenInfoTitle";
			this.notePanel_GardenInfoTitle.ParentAutoHeight = true;
			this.notePanel_GardenInfoTitle.Size = new System.Drawing.Size(766, 23);
			this.notePanel_GardenInfoTitle.TabIndex = 1;
			this.notePanel_GardenInfoTitle.TabStop = false;
			this.notePanel_GardenInfoTitle.Text = "请仔细填写资料,以便我们的客服人员能更好的为您服务.谢谢合作!";
			// 
			// textEdit_GardenAddress
			// 
			this.textEdit_GardenAddress.EditValue = "";
			this.textEdit_GardenAddress.Location = new System.Drawing.Point(120, 120);
			this.textEdit_GardenAddress.Name = "textEdit_GardenAddress";
			this.textEdit_GardenAddress.Size = new System.Drawing.Size(392, 23);
			this.textEdit_GardenAddress.TabIndex = 2;
			// 
			// textEdit_GardenContact
			// 
			this.textEdit_GardenContact.EditValue = "";
			this.textEdit_GardenContact.Location = new System.Drawing.Point(120, 152);
			this.textEdit_GardenContact.Name = "textEdit_GardenContact";
			this.textEdit_GardenContact.Size = new System.Drawing.Size(392, 23);
			this.textEdit_GardenContact.TabIndex = 2;
			// 
			// simpleButton_GardenInfoReset
			// 
			this.simpleButton_GardenInfoReset.Anchor = System.Windows.Forms.AnchorStyles.Top;
			this.simpleButton_GardenInfoReset.Appearance.Font = new System.Drawing.Font("Tahoma", 8F);
			this.simpleButton_GardenInfoReset.Appearance.Options.UseFont = true;
			this.simpleButton_GardenInfoReset.Location = new System.Drawing.Point(640, 216);
			this.simpleButton_GardenInfoReset.Name = "simpleButton_GardenInfoReset";
			this.simpleButton_GardenInfoReset.Size = new System.Drawing.Size(72, 24);
			this.simpleButton_GardenInfoReset.TabIndex = 4;
			this.simpleButton_GardenInfoReset.Text = "重置";
			this.simpleButton_GardenInfoReset.Click += new System.EventHandler(this.simpleButton_GardenInfoReset_Click);
			// 
			// splitContainerControl_GradeClassInfo
			// 
			this.splitContainerControl_GradeClassInfo.Dock = System.Windows.Forms.DockStyle.Fill;
			this.splitContainerControl_GradeClassInfo.Location = new System.Drawing.Point(0, 256);
			this.splitContainerControl_GradeClassInfo.Name = "splitContainerControl_GradeClassInfo";
			this.splitContainerControl_GradeClassInfo.Panel1.Controls.Add(this.xtraTabControl_GradeInfo);
			this.splitContainerControl_GradeClassInfo.Panel1.Controls.Add(this.notePanel1);
			this.splitContainerControl_GradeClassInfo.Panel1.Text = "splitContainerControl1_Panel1";
			this.splitContainerControl_GradeClassInfo.Panel2.Controls.Add(this.xtraTabControl_ClassInfo);
			this.splitContainerControl_GradeClassInfo.Panel2.Controls.Add(this.notePanel4);
			this.splitContainerControl_GradeClassInfo.Panel2.Text = "splitContainerControl1_Panel2";
			this.splitContainerControl_GradeClassInfo.Size = new System.Drawing.Size(772, 284);
			this.splitContainerControl_GradeClassInfo.SplitterPosition = 364;
			this.splitContainerControl_GradeClassInfo.TabIndex = 1;
			this.splitContainerControl_GradeClassInfo.Text = "splitContainerControl1";
			// 
			// xtraTabControl_GradeInfo
			// 
			this.xtraTabControl_GradeInfo.Appearance.BackColor = System.Drawing.Color.WhiteSmoke;
			this.xtraTabControl_GradeInfo.Appearance.Options.UseBackColor = true;
			this.xtraTabControl_GradeInfo.AppearancePage.HeaderActive.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
			this.xtraTabControl_GradeInfo.AppearancePage.HeaderActive.ForeColor = System.Drawing.Color.DarkOrange;
			this.xtraTabControl_GradeInfo.AppearancePage.HeaderActive.Options.UseFont = true;
			this.xtraTabControl_GradeInfo.AppearancePage.HeaderActive.Options.UseForeColor = true;
			this.xtraTabControl_GradeInfo.Controls.Add(this.xtraTabPage_AddGrade);
			this.xtraTabControl_GradeInfo.Controls.Add(this.xtraTabPage_GradeModify);
			this.xtraTabControl_GradeInfo.Controls.Add(this.xtraTabPage_Machine);
			this.xtraTabControl_GradeInfo.Dock = System.Windows.Forms.DockStyle.Fill;
			this.xtraTabControl_GradeInfo.Location = new System.Drawing.Point(0, 23);
			this.xtraTabControl_GradeInfo.Name = "xtraTabControl_GradeInfo";
			this.xtraTabControl_GradeInfo.SelectedTabPage = this.xtraTabPage_Machine;
			this.xtraTabControl_GradeInfo.Size = new System.Drawing.Size(358, 255);
			this.xtraTabControl_GradeInfo.TabIndex = 6;
			this.xtraTabControl_GradeInfo.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
																									 this.xtraTabPage_AddGrade,
																									 this.xtraTabPage_GradeModify,
																									 this.xtraTabPage_Machine});
			this.xtraTabControl_GradeInfo.Text = "年级资料";
			// 
			// xtraTabPage_AddGrade
			// 
			this.xtraTabPage_AddGrade.Appearance.PageClient.BackColor = System.Drawing.Color.WhiteSmoke;
			this.xtraTabPage_AddGrade.Appearance.PageClient.Options.UseBackColor = true;
			this.xtraTabPage_AddGrade.Controls.Add(this.label3);
			this.xtraTabPage_AddGrade.Controls.Add(this.comboBoxEdit_gradeNumber);
			this.xtraTabPage_AddGrade.Controls.Add(this.notePanel_gradeNumber);
			this.xtraTabPage_AddGrade.Controls.Add(this.comboBoxEdit_GradeRemark);
			this.xtraTabPage_AddGrade.Controls.Add(this.notePanel5);
			this.xtraTabPage_AddGrade.Controls.Add(this.radioGroup_Grade);
			this.xtraTabPage_AddGrade.Controls.Add(this.label_ReqOfGadeName);
			this.xtraTabPage_AddGrade.Controls.Add(this.simpleButton_GradeInfoSave);
			this.xtraTabPage_AddGrade.Controls.Add(this.textEdit_GradeName);
			this.xtraTabPage_AddGrade.Controls.Add(this.notePanel_GradeName);
			this.xtraTabPage_AddGrade.Controls.Add(this.notePanel_GradeRemark);
			this.xtraTabPage_AddGrade.Controls.Add(this.simpleButton_GradeInfoReset);
			this.xtraTabPage_AddGrade.Name = "xtraTabPage_AddGrade";
			this.xtraTabPage_AddGrade.Size = new System.Drawing.Size(354, 230);
			this.xtraTabPage_AddGrade.Text = "添加年级信息";
			// 
			// label3
			// 
			this.label3.ForeColor = System.Drawing.Color.Red;
			this.label3.Location = new System.Drawing.Point(32, 64);
			this.label3.Name = "label3";
			this.label3.Size = new System.Drawing.Size(16, 16);
			this.label3.TabIndex = 26;
			this.label3.Text = "*";
			this.label3.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			// 
			// comboBoxEdit_gradeNumber
			// 
			this.comboBoxEdit_gradeNumber.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
				| System.Windows.Forms.AnchorStyles.Right)));
			this.comboBoxEdit_gradeNumber.EditValue = "";
			this.comboBoxEdit_gradeNumber.Location = new System.Drawing.Point(144, 64);
			this.comboBoxEdit_gradeNumber.Name = "comboBoxEdit_gradeNumber";
			// 
			// comboBoxEdit_gradeNumber.Properties
			// 
			this.comboBoxEdit_gradeNumber.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																															 new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.comboBoxEdit_gradeNumber.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
			this.comboBoxEdit_gradeNumber.Size = new System.Drawing.Size(171, 23);
			this.comboBoxEdit_gradeNumber.TabIndex = 25;
			// 
			// notePanel_gradeNumber
			// 
			this.notePanel_gradeNumber.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_gradeNumber.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_gradeNumber.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_gradeNumber.ForeColor = System.Drawing.Color.Black;
			this.notePanel_gradeNumber.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_gradeNumber.Location = new System.Drawing.Point(48, 64);
			this.notePanel_gradeNumber.MaxRows = 5;
			this.notePanel_gradeNumber.Name = "notePanel_gradeNumber";
			this.notePanel_gradeNumber.ParentAutoHeight = true;
			this.notePanel_gradeNumber.Size = new System.Drawing.Size(80, 22);
			this.notePanel_gradeNumber.TabIndex = 24;
			this.notePanel_gradeNumber.TabStop = false;
			this.notePanel_gradeNumber.Text = "可用编号";
			// 
			// comboBoxEdit_GradeRemark
			// 
			this.comboBoxEdit_GradeRemark.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
				| System.Windows.Forms.AnchorStyles.Right)));
			this.comboBoxEdit_GradeRemark.EditValue = "托班";
			this.comboBoxEdit_GradeRemark.Location = new System.Drawing.Point(144, 96);
			this.comboBoxEdit_GradeRemark.Name = "comboBoxEdit_GradeRemark";
			// 
			// comboBoxEdit_GradeRemark.Properties
			// 
			this.comboBoxEdit_GradeRemark.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																															 new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.comboBoxEdit_GradeRemark.Properties.Items.AddRange(new object[] {
																					 "托班",
																					 "小班",
																					 "中班",
																					 "大班",
																					 "特色班"});
			this.comboBoxEdit_GradeRemark.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
			this.comboBoxEdit_GradeRemark.Size = new System.Drawing.Size(171, 23);
			this.comboBoxEdit_GradeRemark.TabIndex = 23;
			this.comboBoxEdit_GradeRemark.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit_GradeRemark_SelectedIndexChanged);
			// 
			// notePanel5
			// 
			this.notePanel5.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel5.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel5.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel5.ForeColor = System.Drawing.Color.Black;
			this.notePanel5.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel5.Location = new System.Drawing.Point(48, 128);
			this.notePanel5.MaxRows = 5;
			this.notePanel5.Name = "notePanel5";
			this.notePanel5.ParentAutoHeight = true;
			this.notePanel5.Size = new System.Drawing.Size(80, 22);
			this.notePanel5.TabIndex = 8;
			this.notePanel5.TabStop = false;
			this.notePanel5.Text = "选择类型";
			// 
			// radioGroup_Grade
			// 
			this.radioGroup_Grade.EditValue = "0";
			this.radioGroup_Grade.Location = new System.Drawing.Point(144, 128);
			this.radioGroup_Grade.Name = "radioGroup_Grade";
			// 
			// radioGroup_Grade.Properties
			// 
			this.radioGroup_Grade.Properties.Items.AddRange(new DevExpress.XtraEditors.Controls.RadioGroupItem[] {
																													 new DevExpress.XtraEditors.Controls.RadioGroupItem("0", "学生年级"),
																													 new DevExpress.XtraEditors.Controls.RadioGroupItem("1", "教师部门")});
			this.radioGroup_Grade.Size = new System.Drawing.Size(168, 32);
			this.radioGroup_Grade.TabIndex = 7;
			this.radioGroup_Grade.SelectedIndexChanged += new System.EventHandler(this.radioGroup_Grade_SelectedIndexChanged);
			// 
			// label_ReqOfGadeName
			// 
			this.label_ReqOfGadeName.ForeColor = System.Drawing.Color.Red;
			this.label_ReqOfGadeName.Location = new System.Drawing.Point(32, 32);
			this.label_ReqOfGadeName.Name = "label_ReqOfGadeName";
			this.label_ReqOfGadeName.Size = new System.Drawing.Size(16, 16);
			this.label_ReqOfGadeName.TabIndex = 6;
			this.label_ReqOfGadeName.Text = "*";
			this.label_ReqOfGadeName.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			// 
			// simpleButton_GradeInfoSave
			// 
			this.simpleButton_GradeInfoSave.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
			this.simpleButton_GradeInfoSave.Appearance.Font = new System.Drawing.Font("Tahoma", 8F);
			this.simpleButton_GradeInfoSave.Appearance.Options.UseFont = true;
			this.simpleButton_GradeInfoSave.Location = new System.Drawing.Point(243, 168);
			this.simpleButton_GradeInfoSave.Name = "simpleButton_GradeInfoSave";
			this.simpleButton_GradeInfoSave.Size = new System.Drawing.Size(72, 24);
			this.simpleButton_GradeInfoSave.TabIndex = 5;
			this.simpleButton_GradeInfoSave.Text = "保存";
			this.simpleButton_GradeInfoSave.Click += new System.EventHandler(this.simpleButton_GradeInfoSave_Click);
			// 
			// textEdit_GradeName
			// 
			this.textEdit_GradeName.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
				| System.Windows.Forms.AnchorStyles.Right)));
			this.textEdit_GradeName.EditValue = "";
			this.textEdit_GradeName.Location = new System.Drawing.Point(144, 32);
			this.textEdit_GradeName.Name = "textEdit_GradeName";
			this.textEdit_GradeName.Size = new System.Drawing.Size(171, 23);
			this.textEdit_GradeName.TabIndex = 4;
			// 
			// notePanel_GradeName
			// 
			this.notePanel_GradeName.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_GradeName.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_GradeName.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_GradeName.ForeColor = System.Drawing.Color.Black;
			this.notePanel_GradeName.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_GradeName.Location = new System.Drawing.Point(48, 32);
			this.notePanel_GradeName.MaxRows = 5;
			this.notePanel_GradeName.Name = "notePanel_GradeName";
			this.notePanel_GradeName.ParentAutoHeight = true;
			this.notePanel_GradeName.Size = new System.Drawing.Size(80, 22);
			this.notePanel_GradeName.TabIndex = 3;
			this.notePanel_GradeName.TabStop = false;
			this.notePanel_GradeName.Text = "年级名称";
			// 
			// notePanel_GradeRemark
			// 
			this.notePanel_GradeRemark.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_GradeRemark.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_GradeRemark.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_GradeRemark.ForeColor = System.Drawing.Color.Black;
			this.notePanel_GradeRemark.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_GradeRemark.Location = new System.Drawing.Point(48, 96);
			this.notePanel_GradeRemark.MaxRows = 5;
			this.notePanel_GradeRemark.Name = "notePanel_GradeRemark";
			this.notePanel_GradeRemark.ParentAutoHeight = true;
			this.notePanel_GradeRemark.Size = new System.Drawing.Size(80, 22);
			this.notePanel_GradeRemark.TabIndex = 2;
			this.notePanel_GradeRemark.TabStop = false;
			this.notePanel_GradeRemark.Text = "备        注";
			// 
			// simpleButton_GradeInfoReset
			// 
			this.simpleButton_GradeInfoReset.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
			this.simpleButton_GradeInfoReset.Appearance.Font = new System.Drawing.Font("Tahoma", 8F);
			this.simpleButton_GradeInfoReset.Appearance.Options.UseFont = true;
			this.simpleButton_GradeInfoReset.Location = new System.Drawing.Point(243, 200);
			this.simpleButton_GradeInfoReset.Name = "simpleButton_GradeInfoReset";
			this.simpleButton_GradeInfoReset.Size = new System.Drawing.Size(72, 24);
			this.simpleButton_GradeInfoReset.TabIndex = 5;
			this.simpleButton_GradeInfoReset.Text = "重置";
			this.simpleButton_GradeInfoReset.Visible = false;
			this.simpleButton_GradeInfoReset.Click += new System.EventHandler(this.simpleButton_GradeInfoReset_Click);
			// 
			// xtraTabPage_GradeModify
			// 
			this.xtraTabPage_GradeModify.Appearance.PageClient.BackColor = System.Drawing.Color.WhiteSmoke;
			this.xtraTabPage_GradeModify.Appearance.PageClient.Options.UseBackColor = true;
			this.xtraTabPage_GradeModify.Controls.Add(this.comboBoxEdit_GradeRemarkModify);
			this.xtraTabPage_GradeModify.Controls.Add(this.label_ReqOfGadeMdiName);
			this.xtraTabPage_GradeModify.Controls.Add(this.simpleButton_GradeModify);
			this.xtraTabPage_GradeModify.Controls.Add(this.simpleButton_GradeModiReset);
			this.xtraTabPage_GradeModify.Controls.Add(this.comboBoxEdit_GradeModify);
			this.xtraTabPage_GradeModify.Controls.Add(this.notePanel_GradeNameModify);
			this.xtraTabPage_GradeModify.Controls.Add(this.notePanel_GradeModify);
			this.xtraTabPage_GradeModify.Controls.Add(this.simpleButton_DeleteGrade);
			this.xtraTabPage_GradeModify.Name = "xtraTabPage_GradeModify";
			this.xtraTabPage_GradeModify.Size = new System.Drawing.Size(354, 230);
			this.xtraTabPage_GradeModify.Text = "修改年级信息";
			// 
			// comboBoxEdit_GradeRemarkModify
			// 
			this.comboBoxEdit_GradeRemarkModify.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
				| System.Windows.Forms.AnchorStyles.Right)));
			this.comboBoxEdit_GradeRemarkModify.EditValue = "托班";
			this.comboBoxEdit_GradeRemarkModify.Location = new System.Drawing.Point(144, 72);
			this.comboBoxEdit_GradeRemarkModify.Name = "comboBoxEdit_GradeRemarkModify";
			// 
			// comboBoxEdit_GradeRemarkModify.Properties
			// 
			this.comboBoxEdit_GradeRemarkModify.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																																   new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.comboBoxEdit_GradeRemarkModify.Properties.Items.AddRange(new object[] {
																						   "托班",
																						   "小班",
																						   "中班",
																						   "大班",
																						   "特色班"});
			this.comboBoxEdit_GradeRemarkModify.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
			this.comboBoxEdit_GradeRemarkModify.Size = new System.Drawing.Size(171, 23);
			this.comboBoxEdit_GradeRemarkModify.TabIndex = 23;
			// 
			// label_ReqOfGadeMdiName
			// 
			this.label_ReqOfGadeMdiName.ForeColor = System.Drawing.Color.Red;
			this.label_ReqOfGadeMdiName.Location = new System.Drawing.Point(32, 40);
			this.label_ReqOfGadeMdiName.Name = "label_ReqOfGadeMdiName";
			this.label_ReqOfGadeMdiName.Size = new System.Drawing.Size(16, 16);
			this.label_ReqOfGadeMdiName.TabIndex = 20;
			this.label_ReqOfGadeMdiName.Text = "*";
			this.label_ReqOfGadeMdiName.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			// 
			// simpleButton_GradeModify
			// 
			this.simpleButton_GradeModify.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
			this.simpleButton_GradeModify.Appearance.Font = new System.Drawing.Font("Tahoma", 8F);
			this.simpleButton_GradeModify.Appearance.Options.UseFont = true;
			this.simpleButton_GradeModify.Location = new System.Drawing.Point(251, 104);
			this.simpleButton_GradeModify.Name = "simpleButton_GradeModify";
			this.simpleButton_GradeModify.Size = new System.Drawing.Size(64, 24);
			this.simpleButton_GradeModify.TabIndex = 19;
			this.simpleButton_GradeModify.Text = "修改";
			this.simpleButton_GradeModify.Click += new System.EventHandler(this.simpleButton_GradeModify_Click);
			// 
			// simpleButton_GradeModiReset
			// 
			this.simpleButton_GradeModiReset.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
			this.simpleButton_GradeModiReset.Appearance.Font = new System.Drawing.Font("Tahoma", 8F);
			this.simpleButton_GradeModiReset.Appearance.Options.UseFont = true;
			this.simpleButton_GradeModiReset.Location = new System.Drawing.Point(251, 136);
			this.simpleButton_GradeModiReset.Name = "simpleButton_GradeModiReset";
			this.simpleButton_GradeModiReset.Size = new System.Drawing.Size(64, 24);
			this.simpleButton_GradeModiReset.TabIndex = 18;
			this.simpleButton_GradeModiReset.Text = "重置";
			this.simpleButton_GradeModiReset.Visible = false;
			this.simpleButton_GradeModiReset.Click += new System.EventHandler(this.simpleButton_GradeModiReset_Click);
			// 
			// comboBoxEdit_GradeModify
			// 
			this.comboBoxEdit_GradeModify.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
				| System.Windows.Forms.AnchorStyles.Right)));
			this.comboBoxEdit_GradeModify.EditValue = "";
			this.comboBoxEdit_GradeModify.Location = new System.Drawing.Point(144, 40);
			this.comboBoxEdit_GradeModify.Name = "comboBoxEdit_GradeModify";
			// 
			// comboBoxEdit_GradeModify.Properties
			// 
			this.comboBoxEdit_GradeModify.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																															 new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.comboBoxEdit_GradeModify.Size = new System.Drawing.Size(171, 23);
			this.comboBoxEdit_GradeModify.TabIndex = 15;
			this.comboBoxEdit_GradeModify.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit_GradeModify_SelectedIndexChanged);
			// 
			// notePanel_GradeNameModify
			// 
			this.notePanel_GradeNameModify.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_GradeNameModify.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_GradeNameModify.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_GradeNameModify.ForeColor = System.Drawing.Color.Black;
			this.notePanel_GradeNameModify.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_GradeNameModify.Location = new System.Drawing.Point(48, 40);
			this.notePanel_GradeNameModify.MaxRows = 5;
			this.notePanel_GradeNameModify.Name = "notePanel_GradeNameModify";
			this.notePanel_GradeNameModify.ParentAutoHeight = true;
			this.notePanel_GradeNameModify.Size = new System.Drawing.Size(80, 22);
			this.notePanel_GradeNameModify.TabIndex = 14;
			this.notePanel_GradeNameModify.TabStop = false;
			this.notePanel_GradeNameModify.Text = "年级名称";
			// 
			// notePanel_GradeModify
			// 
			this.notePanel_GradeModify.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_GradeModify.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_GradeModify.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_GradeModify.ForeColor = System.Drawing.Color.Black;
			this.notePanel_GradeModify.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_GradeModify.Location = new System.Drawing.Point(48, 72);
			this.notePanel_GradeModify.MaxRows = 5;
			this.notePanel_GradeModify.Name = "notePanel_GradeModify";
			this.notePanel_GradeModify.ParentAutoHeight = true;
			this.notePanel_GradeModify.Size = new System.Drawing.Size(80, 22);
			this.notePanel_GradeModify.TabIndex = 14;
			this.notePanel_GradeModify.TabStop = false;
			this.notePanel_GradeModify.Text = "备       注";
			// 
			// simpleButton_DeleteGrade
			// 
			this.simpleButton_DeleteGrade.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
			this.simpleButton_DeleteGrade.Appearance.Font = new System.Drawing.Font("Tahoma", 8F);
			this.simpleButton_DeleteGrade.Appearance.Options.UseFont = true;
			this.simpleButton_DeleteGrade.Location = new System.Drawing.Point(179, 136);
			this.simpleButton_DeleteGrade.Name = "simpleButton_DeleteGrade";
			this.simpleButton_DeleteGrade.Size = new System.Drawing.Size(64, 24);
			this.simpleButton_DeleteGrade.TabIndex = 19;
			this.simpleButton_DeleteGrade.Text = "删除";
			this.simpleButton_DeleteGrade.Visible = false;
			this.simpleButton_DeleteGrade.Click += new System.EventHandler(this.simpleButton_DeleteGrade_Click);
			// 
			// xtraTabPage_Machine
			// 
			this.xtraTabPage_Machine.Appearance.PageClient.BackColor = System.Drawing.Color.WhiteSmoke;
			this.xtraTabPage_Machine.Appearance.PageClient.Options.UseBackColor = true;
			this.xtraTabPage_Machine.Controls.Add(this.smbDelete);
			this.xtraTabPage_Machine.Controls.Add(this.smbSave);
			this.xtraTabPage_Machine.Controls.Add(this.groupControl1);
			this.xtraTabPage_Machine.Controls.Add(this.txtVol);
			this.xtraTabPage_Machine.Controls.Add(this.notePanel8);
			this.xtraTabPage_Machine.Controls.Add(this.txtTerminal);
			this.xtraTabPage_Machine.Controls.Add(this.notePanel7);
			this.xtraTabPage_Machine.Name = "xtraTabPage_Machine";
			this.xtraTabPage_Machine.Size = new System.Drawing.Size(354, 230);
			this.xtraTabPage_Machine.Text = "门口机设定";
			// 
			// smbDelete
			// 
			this.smbDelete.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
			this.smbDelete.Appearance.Font = new System.Drawing.Font("Tahoma", 8F);
			this.smbDelete.Appearance.Options.UseFont = true;
			this.smbDelete.Location = new System.Drawing.Point(88, 56);
			this.smbDelete.Name = "smbDelete";
			this.smbDelete.Size = new System.Drawing.Size(56, 24);
			this.smbDelete.TabIndex = 32;
			this.smbDelete.Text = "删除";
			this.smbDelete.Click += new System.EventHandler(this.smbDelete_Click);
			// 
			// smbSave
			// 
			this.smbSave.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
			this.smbSave.Appearance.Font = new System.Drawing.Font("Tahoma", 8F);
			this.smbSave.Appearance.Options.UseFont = true;
			this.smbSave.Location = new System.Drawing.Point(24, 56);
			this.smbSave.Name = "smbSave";
			this.smbSave.Size = new System.Drawing.Size(56, 24);
			this.smbSave.TabIndex = 31;
			this.smbSave.Text = "保存";
			this.smbSave.Click += new System.EventHandler(this.smbSave_Click);
			// 
			// groupControl1
			// 
			this.groupControl1.Controls.Add(this.gdMachineInfo);
			this.groupControl1.Location = new System.Drawing.Point(181, 11);
			this.groupControl1.Name = "groupControl1";
			this.groupControl1.Size = new System.Drawing.Size(160, 208);
			this.groupControl1.TabIndex = 30;
			this.groupControl1.Text = "显示";
			// 
			// gdMachineInfo
			// 
			this.gdMachineInfo.Dock = System.Windows.Forms.DockStyle.Fill;
			// 
			// gdMachineInfo.EmbeddedNavigator
			// 
			this.gdMachineInfo.EmbeddedNavigator.Name = "";
			this.gdMachineInfo.Location = new System.Drawing.Point(3, 18);
			this.gdMachineInfo.MainView = this.gridView1;
			this.gdMachineInfo.Name = "gdMachineInfo";
			this.gdMachineInfo.Size = new System.Drawing.Size(154, 187);
			this.gdMachineInfo.TabIndex = 0;
			this.gdMachineInfo.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
																										 this.gridView1});
			// 
			// gridView1
			// 
			this.gridView1.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
																							 this.gridColumn1});
			this.gridView1.GridControl = this.gdMachineInfo;
			this.gridView1.Name = "gridView1";
			this.gridView1.OptionsCustomization.AllowFilter = false;
			this.gridView1.OptionsView.ShowFilterPanel = false;
			this.gridView1.OptionsView.ShowGroupPanel = false;
			// 
			// gridColumn1
			// 
			this.gridColumn1.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn1.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn1.AppearanceCell.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Center;
			this.gridColumn1.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn1.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn1.AppearanceHeader.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Center;
			this.gridColumn1.Caption = "已分配的门口机地址";
			this.gridColumn1.FieldName = "machine_address";
			this.gridColumn1.Name = "gridColumn1";
			this.gridColumn1.OptionsColumn.AllowEdit = false;
			this.gridColumn1.OptionsColumn.AllowFocus = false;
			this.gridColumn1.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn1.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn1.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn1.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn1.OptionsColumn.FixedWidth = true;
			this.gridColumn1.OptionsColumn.ReadOnly = true;
			this.gridColumn1.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn1.Visible = true;
			this.gridColumn1.VisibleIndex = 0;
			// 
			// txtVol
			// 
			this.txtVol.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
				| System.Windows.Forms.AnchorStyles.Right)));
			this.txtVol.EditValue = "70";
			this.txtVol.Location = new System.Drawing.Point(88, 104);
			this.txtVol.Name = "txtVol";
			this.txtVol.Size = new System.Drawing.Size(75, 23);
			this.txtVol.TabIndex = 29;
			this.txtVol.Visible = false;
			// 
			// notePanel8
			// 
			this.notePanel8.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel8.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel8.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel8.ForeColor = System.Drawing.Color.Black;
			this.notePanel8.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel8.Location = new System.Drawing.Point(8, 104);
			this.notePanel8.MaxRows = 5;
			this.notePanel8.Name = "notePanel8";
			this.notePanel8.ParentAutoHeight = true;
			this.notePanel8.Size = new System.Drawing.Size(72, 22);
			this.notePanel8.TabIndex = 28;
			this.notePanel8.TabStop = false;
			this.notePanel8.Text = "容   量";
			this.notePanel8.Visible = false;
			// 
			// txtTerminal
			// 
			this.txtTerminal.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
				| System.Windows.Forms.AnchorStyles.Right)));
			this.txtTerminal.EditValue = "";
			this.txtTerminal.Location = new System.Drawing.Point(93, 19);
			this.txtTerminal.Name = "txtTerminal";
			this.txtTerminal.Size = new System.Drawing.Size(75, 23);
			this.txtTerminal.TabIndex = 27;
			// 
			// notePanel7
			// 
			this.notePanel7.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel7.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel7.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel7.ForeColor = System.Drawing.Color.Black;
			this.notePanel7.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel7.Location = new System.Drawing.Point(13, 19);
			this.notePanel7.MaxRows = 5;
			this.notePanel7.Name = "notePanel7";
			this.notePanel7.ParentAutoHeight = true;
			this.notePanel7.Size = new System.Drawing.Size(72, 22);
			this.notePanel7.TabIndex = 26;
			this.notePanel7.TabStop = false;
			this.notePanel7.Text = "门口机";
			// 
			// notePanel1
			// 
			this.notePanel1.BackColor = System.Drawing.Color.LightGoldenrodYellow;
			this.notePanel1.Dock = System.Windows.Forms.DockStyle.Top;
			this.notePanel1.ForeColor = System.Drawing.Color.OrangeRed;
			this.notePanel1.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel1.Location = new System.Drawing.Point(0, 0);
			this.notePanel1.MaxRows = 5;
			this.notePanel1.Name = "notePanel1";
			this.notePanel1.ParentAutoHeight = true;
			this.notePanel1.Size = new System.Drawing.Size(358, 23);
			this.notePanel1.TabIndex = 2;
			this.notePanel1.TabStop = false;
			this.notePanel1.Text = "年级资料(*为必须填写)";
			// 
			// xtraTabControl_ClassInfo
			// 
			this.xtraTabControl_ClassInfo.Appearance.BackColor = System.Drawing.Color.WhiteSmoke;
			this.xtraTabControl_ClassInfo.Appearance.Options.UseBackColor = true;
			this.xtraTabControl_ClassInfo.AppearancePage.HeaderActive.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
			this.xtraTabControl_ClassInfo.AppearancePage.HeaderActive.ForeColor = System.Drawing.Color.DarkOrange;
			this.xtraTabControl_ClassInfo.AppearancePage.HeaderActive.Options.UseFont = true;
			this.xtraTabControl_ClassInfo.AppearancePage.HeaderActive.Options.UseForeColor = true;
			this.xtraTabControl_ClassInfo.Controls.Add(this.xtraTabPage_ClassAdd);
			this.xtraTabControl_ClassInfo.Controls.Add(this.xtraTabPage_ClassModify);
			this.xtraTabControl_ClassInfo.Dock = System.Windows.Forms.DockStyle.Fill;
			this.xtraTabControl_ClassInfo.Location = new System.Drawing.Point(0, 23);
			this.xtraTabControl_ClassInfo.Name = "xtraTabControl_ClassInfo";
			this.xtraTabControl_ClassInfo.SelectedTabPage = this.xtraTabPage_ClassAdd;
			this.xtraTabControl_ClassInfo.Size = new System.Drawing.Size(398, 255);
			this.xtraTabControl_ClassInfo.TabIndex = 4;
			this.xtraTabControl_ClassInfo.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
																									 this.xtraTabPage_ClassAdd,
																									 this.xtraTabPage_ClassModify});
			this.xtraTabControl_ClassInfo.Text = "班级资料";
			// 
			// xtraTabPage_ClassAdd
			// 
			this.xtraTabPage_ClassAdd.Appearance.PageClient.BackColor = System.Drawing.Color.WhiteSmoke;
			this.xtraTabPage_ClassAdd.Appearance.PageClient.Options.UseBackColor = true;
			this.xtraTabPage_ClassAdd.Controls.Add(this.label4);
			this.xtraTabPage_ClassAdd.Controls.Add(this.comboBoxEdit_classNumber);
			this.xtraTabPage_ClassAdd.Controls.Add(this.notePanel_classNumber);
			this.xtraTabPage_ClassAdd.Controls.Add(this.notePanel6);
			this.xtraTabPage_ClassAdd.Controls.Add(this.label_ReqOfClassName);
			this.xtraTabPage_ClassAdd.Controls.Add(this.simpleButton_ClassSave);
			this.xtraTabPage_ClassAdd.Controls.Add(this.textEdit_ClassName);
			this.xtraTabPage_ClassAdd.Controls.Add(this.notePanel_ClassRemark);
			this.xtraTabPage_ClassAdd.Controls.Add(this.textEdit_ClassRemark);
			this.xtraTabPage_ClassAdd.Controls.Add(this.simpleButton_ClassReSet);
			this.xtraTabPage_ClassAdd.Controls.Add(this.notePanel_ClassName);
			this.xtraTabPage_ClassAdd.Controls.Add(this.notePanel_GradeForClass);
			this.xtraTabPage_ClassAdd.Controls.Add(this.label1);
			this.xtraTabPage_ClassAdd.Controls.Add(this.radioGroup_Class);
			this.xtraTabPage_ClassAdd.Controls.Add(this.comboBoxEdit1);
			this.xtraTabPage_ClassAdd.Name = "xtraTabPage_ClassAdd";
			this.xtraTabPage_ClassAdd.Size = new System.Drawing.Size(394, 230);
			this.xtraTabPage_ClassAdd.Text = "添加班级信息";
			// 
			// label4
			// 
			this.label4.ForeColor = System.Drawing.Color.Red;
			this.label4.Location = new System.Drawing.Point(48, 96);
			this.label4.Name = "label4";
			this.label4.Size = new System.Drawing.Size(16, 16);
			this.label4.TabIndex = 28;
			this.label4.Text = "*";
			this.label4.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			// 
			// comboBoxEdit_classNumber
			// 
			this.comboBoxEdit_classNumber.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
				| System.Windows.Forms.AnchorStyles.Right)));
			this.comboBoxEdit_classNumber.EditValue = "";
			this.comboBoxEdit_classNumber.Location = new System.Drawing.Point(162, 96);
			this.comboBoxEdit_classNumber.Name = "comboBoxEdit_classNumber";
			// 
			// comboBoxEdit_classNumber.Properties
			// 
			this.comboBoxEdit_classNumber.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																															 new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.comboBoxEdit_classNumber.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
			this.comboBoxEdit_classNumber.Size = new System.Drawing.Size(179, 23);
			this.comboBoxEdit_classNumber.TabIndex = 27;
			// 
			// notePanel_classNumber
			// 
			this.notePanel_classNumber.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_classNumber.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_classNumber.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_classNumber.ForeColor = System.Drawing.Color.Black;
			this.notePanel_classNumber.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_classNumber.Location = new System.Drawing.Point(66, 96);
			this.notePanel_classNumber.MaxRows = 5;
			this.notePanel_classNumber.Name = "notePanel_classNumber";
			this.notePanel_classNumber.ParentAutoHeight = true;
			this.notePanel_classNumber.Size = new System.Drawing.Size(80, 22);
			this.notePanel_classNumber.TabIndex = 26;
			this.notePanel_classNumber.TabStop = false;
			this.notePanel_classNumber.Text = "可用编号";
			// 
			// notePanel6
			// 
			this.notePanel6.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel6.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel6.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel6.ForeColor = System.Drawing.Color.Black;
			this.notePanel6.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel6.Location = new System.Drawing.Point(64, 160);
			this.notePanel6.MaxRows = 5;
			this.notePanel6.Name = "notePanel6";
			this.notePanel6.ParentAutoHeight = true;
			this.notePanel6.Size = new System.Drawing.Size(80, 22);
			this.notePanel6.TabIndex = 20;
			this.notePanel6.TabStop = false;
			this.notePanel6.Text = "选择类型";
			// 
			// label_ReqOfClassName
			// 
			this.label_ReqOfClassName.ForeColor = System.Drawing.Color.Red;
			this.label_ReqOfClassName.Location = new System.Drawing.Point(48, 64);
			this.label_ReqOfClassName.Name = "label_ReqOfClassName";
			this.label_ReqOfClassName.Size = new System.Drawing.Size(16, 16);
			this.label_ReqOfClassName.TabIndex = 18;
			this.label_ReqOfClassName.Text = "*";
			this.label_ReqOfClassName.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			// 
			// simpleButton_ClassSave
			// 
			this.simpleButton_ClassSave.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
			this.simpleButton_ClassSave.Appearance.Font = new System.Drawing.Font("Tahoma", 8F);
			this.simpleButton_ClassSave.Appearance.Options.UseFont = true;
			this.simpleButton_ClassSave.Location = new System.Drawing.Point(277, 200);
			this.simpleButton_ClassSave.Name = "simpleButton_ClassSave";
			this.simpleButton_ClassSave.Size = new System.Drawing.Size(64, 24);
			this.simpleButton_ClassSave.TabIndex = 17;
			this.simpleButton_ClassSave.Text = "保存";
			this.simpleButton_ClassSave.Click += new System.EventHandler(this.simpleButton_ClassSave_Click);
			// 
			// textEdit_ClassName
			// 
			this.textEdit_ClassName.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
				| System.Windows.Forms.AnchorStyles.Right)));
			this.textEdit_ClassName.EditValue = "";
			this.textEdit_ClassName.Location = new System.Drawing.Point(160, 64);
			this.textEdit_ClassName.Name = "textEdit_ClassName";
			this.textEdit_ClassName.Size = new System.Drawing.Size(181, 23);
			this.textEdit_ClassName.TabIndex = 15;
			// 
			// notePanel_ClassRemark
			// 
			this.notePanel_ClassRemark.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_ClassRemark.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_ClassRemark.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_ClassRemark.ForeColor = System.Drawing.Color.Black;
			this.notePanel_ClassRemark.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_ClassRemark.Location = new System.Drawing.Point(64, 128);
			this.notePanel_ClassRemark.MaxRows = 5;
			this.notePanel_ClassRemark.Name = "notePanel_ClassRemark";
			this.notePanel_ClassRemark.ParentAutoHeight = true;
			this.notePanel_ClassRemark.Size = new System.Drawing.Size(80, 22);
			this.notePanel_ClassRemark.TabIndex = 12;
			this.notePanel_ClassRemark.TabStop = false;
			this.notePanel_ClassRemark.Text = "班级备注";
			// 
			// textEdit_ClassRemark
			// 
			this.textEdit_ClassRemark.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
				| System.Windows.Forms.AnchorStyles.Right)));
			this.textEdit_ClassRemark.EditValue = "";
			this.textEdit_ClassRemark.Location = new System.Drawing.Point(160, 128);
			this.textEdit_ClassRemark.Name = "textEdit_ClassRemark";
			this.textEdit_ClassRemark.Size = new System.Drawing.Size(181, 23);
			this.textEdit_ClassRemark.TabIndex = 14;
			// 
			// simpleButton_ClassReSet
			// 
			this.simpleButton_ClassReSet.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
			this.simpleButton_ClassReSet.Appearance.Font = new System.Drawing.Font("Tahoma", 8F);
			this.simpleButton_ClassReSet.Appearance.Options.UseFont = true;
			this.simpleButton_ClassReSet.Location = new System.Drawing.Point(61, 200);
			this.simpleButton_ClassReSet.Name = "simpleButton_ClassReSet";
			this.simpleButton_ClassReSet.Size = new System.Drawing.Size(64, 24);
			this.simpleButton_ClassReSet.TabIndex = 16;
			this.simpleButton_ClassReSet.Text = "重置";
			this.simpleButton_ClassReSet.Visible = false;
			this.simpleButton_ClassReSet.Click += new System.EventHandler(this.simpleButton_ClassReSet_Click);
			// 
			// notePanel_ClassName
			// 
			this.notePanel_ClassName.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_ClassName.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_ClassName.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_ClassName.ForeColor = System.Drawing.Color.Black;
			this.notePanel_ClassName.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_ClassName.Location = new System.Drawing.Point(64, 64);
			this.notePanel_ClassName.MaxRows = 5;
			this.notePanel_ClassName.Name = "notePanel_ClassName";
			this.notePanel_ClassName.ParentAutoHeight = true;
			this.notePanel_ClassName.Size = new System.Drawing.Size(80, 22);
			this.notePanel_ClassName.TabIndex = 13;
			this.notePanel_ClassName.TabStop = false;
			this.notePanel_ClassName.Text = "班级名称";
			// 
			// notePanel_GradeForClass
			// 
			this.notePanel_GradeForClass.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_GradeForClass.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_GradeForClass.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_GradeForClass.ForeColor = System.Drawing.Color.Black;
			this.notePanel_GradeForClass.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_GradeForClass.Location = new System.Drawing.Point(64, 32);
			this.notePanel_GradeForClass.MaxRows = 5;
			this.notePanel_GradeForClass.Name = "notePanel_GradeForClass";
			this.notePanel_GradeForClass.ParentAutoHeight = true;
			this.notePanel_GradeForClass.Size = new System.Drawing.Size(80, 22);
			this.notePanel_GradeForClass.TabIndex = 13;
			this.notePanel_GradeForClass.TabStop = false;
			this.notePanel_GradeForClass.Text = "所在年级";
			// 
			// label1
			// 
			this.label1.ForeColor = System.Drawing.Color.Red;
			this.label1.Location = new System.Drawing.Point(48, 32);
			this.label1.Name = "label1";
			this.label1.Size = new System.Drawing.Size(16, 16);
			this.label1.TabIndex = 18;
			this.label1.Text = "*";
			this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			// 
			// radioGroup_Class
			// 
			this.radioGroup_Class.EditValue = "0";
			this.radioGroup_Class.Location = new System.Drawing.Point(160, 160);
			this.radioGroup_Class.Name = "radioGroup_Class";
			// 
			// radioGroup_Class.Properties
			// 
			this.radioGroup_Class.Properties.Items.AddRange(new DevExpress.XtraEditors.Controls.RadioGroupItem[] {
																													 new DevExpress.XtraEditors.Controls.RadioGroupItem("0", "学生班级"),
																													 new DevExpress.XtraEditors.Controls.RadioGroupItem("1", "教师岗位")});
			this.radioGroup_Class.Size = new System.Drawing.Size(184, 32);
			this.radioGroup_Class.TabIndex = 7;
			this.radioGroup_Class.SelectedIndexChanged += new System.EventHandler(this.radioGroup_Class_SelectedIndexChanged);
			// 
			// comboBoxEdit1
			// 
			this.comboBoxEdit1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
				| System.Windows.Forms.AnchorStyles.Right)));
			this.comboBoxEdit1.EditValue = "";
			this.comboBoxEdit1.Location = new System.Drawing.Point(160, 32);
			this.comboBoxEdit1.Name = "comboBoxEdit1";
			// 
			// comboBoxEdit1.Properties
			// 
			this.comboBoxEdit1.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																												  new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.comboBoxEdit1.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
			this.comboBoxEdit1.Size = new System.Drawing.Size(181, 23);
			this.comboBoxEdit1.TabIndex = 22;
			this.comboBoxEdit1.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit1_SelectedIndexChanged);
			// 
			// xtraTabPage_ClassModify
			// 
			this.xtraTabPage_ClassModify.Appearance.PageClient.BackColor = System.Drawing.Color.WhiteSmoke;
			this.xtraTabPage_ClassModify.Appearance.PageClient.Options.UseBackColor = true;
			this.xtraTabPage_ClassModify.Controls.Add(this.comboBoxEdit_GradeForClass);
			this.xtraTabPage_ClassModify.Controls.Add(this.label_ReqOfClassMdiName);
			this.xtraTabPage_ClassModify.Controls.Add(this.simpleButton_ClassModi);
			this.xtraTabPage_ClassModify.Controls.Add(this.simpleButton_ClassModiReset);
			this.xtraTabPage_ClassModify.Controls.Add(this.textEdit_ClassModifyRemark);
			this.xtraTabPage_ClassModify.Controls.Add(this.comboBoxEdit_ClassNameModify);
			this.xtraTabPage_ClassModify.Controls.Add(this.notePanel_ClassModifyName);
			this.xtraTabPage_ClassModify.Controls.Add(this.notePanel_ClassModifyRemark);
			this.xtraTabPage_ClassModify.Controls.Add(this.notePanel3);
			this.xtraTabPage_ClassModify.Controls.Add(this.label2);
			this.xtraTabPage_ClassModify.Controls.Add(this.simpleButton_DeleteClass);
			this.xtraTabPage_ClassModify.Name = "xtraTabPage_ClassModify";
			this.xtraTabPage_ClassModify.Size = new System.Drawing.Size(394, 230);
			this.xtraTabPage_ClassModify.Text = "修改班级信息";
			// 
			// comboBoxEdit_GradeForClass
			// 
			this.comboBoxEdit_GradeForClass.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
				| System.Windows.Forms.AnchorStyles.Right)));
			this.comboBoxEdit_GradeForClass.EditValue = "";
			this.comboBoxEdit_GradeForClass.Location = new System.Drawing.Point(160, 40);
			this.comboBoxEdit_GradeForClass.Name = "comboBoxEdit_GradeForClass";
			// 
			// comboBoxEdit_GradeForClass.Properties
			// 
			this.comboBoxEdit_GradeForClass.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																															   new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.comboBoxEdit_GradeForClass.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
			this.comboBoxEdit_GradeForClass.Size = new System.Drawing.Size(197, 23);
			this.comboBoxEdit_GradeForClass.TabIndex = 27;
			this.comboBoxEdit_GradeForClass.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit_GradeForClass_SelectedIndexChanged);
			// 
			// label_ReqOfClassMdiName
			// 
			this.label_ReqOfClassMdiName.ForeColor = System.Drawing.Color.Red;
			this.label_ReqOfClassMdiName.Location = new System.Drawing.Point(48, 72);
			this.label_ReqOfClassMdiName.Name = "label_ReqOfClassMdiName";
			this.label_ReqOfClassMdiName.Size = new System.Drawing.Size(16, 16);
			this.label_ReqOfClassMdiName.TabIndex = 26;
			this.label_ReqOfClassMdiName.Text = "*";
			this.label_ReqOfClassMdiName.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			// 
			// simpleButton_ClassModi
			// 
			this.simpleButton_ClassModi.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
			this.simpleButton_ClassModi.Appearance.Font = new System.Drawing.Font("Tahoma", 8F);
			this.simpleButton_ClassModi.Appearance.Options.UseFont = true;
			this.simpleButton_ClassModi.Location = new System.Drawing.Point(293, 136);
			this.simpleButton_ClassModi.Name = "simpleButton_ClassModi";
			this.simpleButton_ClassModi.Size = new System.Drawing.Size(64, 24);
			this.simpleButton_ClassModi.TabIndex = 25;
			this.simpleButton_ClassModi.Text = "修改";
			this.simpleButton_ClassModi.Click += new System.EventHandler(this.simpleButton_ClassModi_Click);
			// 
			// simpleButton_ClassModiReset
			// 
			this.simpleButton_ClassModiReset.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
			this.simpleButton_ClassModiReset.Appearance.Font = new System.Drawing.Font("Tahoma", 8F);
			this.simpleButton_ClassModiReset.Appearance.Options.UseFont = true;
			this.simpleButton_ClassModiReset.Location = new System.Drawing.Point(181, 192);
			this.simpleButton_ClassModiReset.Name = "simpleButton_ClassModiReset";
			this.simpleButton_ClassModiReset.Size = new System.Drawing.Size(64, 24);
			this.simpleButton_ClassModiReset.TabIndex = 24;
			this.simpleButton_ClassModiReset.Text = "重置";
			this.simpleButton_ClassModiReset.Visible = false;
			this.simpleButton_ClassModiReset.Click += new System.EventHandler(this.simpleButton_ClassModiReset_Click);
			// 
			// textEdit_ClassModifyRemark
			// 
			this.textEdit_ClassModifyRemark.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
				| System.Windows.Forms.AnchorStyles.Right)));
			this.textEdit_ClassModifyRemark.EditValue = "";
			this.textEdit_ClassModifyRemark.Location = new System.Drawing.Point(160, 104);
			this.textEdit_ClassModifyRemark.Name = "textEdit_ClassModifyRemark";
			this.textEdit_ClassModifyRemark.Size = new System.Drawing.Size(197, 23);
			this.textEdit_ClassModifyRemark.TabIndex = 23;
			// 
			// comboBoxEdit_ClassNameModify
			// 
			this.comboBoxEdit_ClassNameModify.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
				| System.Windows.Forms.AnchorStyles.Right)));
			this.comboBoxEdit_ClassNameModify.EditValue = "";
			this.comboBoxEdit_ClassNameModify.Location = new System.Drawing.Point(160, 72);
			this.comboBoxEdit_ClassNameModify.Name = "comboBoxEdit_ClassNameModify";
			// 
			// comboBoxEdit_ClassNameModify.Properties
			// 
			this.comboBoxEdit_ClassNameModify.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																																 new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.comboBoxEdit_ClassNameModify.Size = new System.Drawing.Size(197, 23);
			this.comboBoxEdit_ClassNameModify.TabIndex = 22;
			this.comboBoxEdit_ClassNameModify.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit_ClassNameModify_SelectedIndexChanged);
			// 
			// notePanel_ClassModifyName
			// 
			this.notePanel_ClassModifyName.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_ClassModifyName.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_ClassModifyName.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_ClassModifyName.ForeColor = System.Drawing.Color.Black;
			this.notePanel_ClassModifyName.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_ClassModifyName.Location = new System.Drawing.Point(64, 72);
			this.notePanel_ClassModifyName.MaxRows = 5;
			this.notePanel_ClassModifyName.Name = "notePanel_ClassModifyName";
			this.notePanel_ClassModifyName.ParentAutoHeight = true;
			this.notePanel_ClassModifyName.Size = new System.Drawing.Size(80, 22);
			this.notePanel_ClassModifyName.TabIndex = 20;
			this.notePanel_ClassModifyName.TabStop = false;
			this.notePanel_ClassModifyName.Text = "班级名称";
			// 
			// notePanel_ClassModifyRemark
			// 
			this.notePanel_ClassModifyRemark.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_ClassModifyRemark.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_ClassModifyRemark.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_ClassModifyRemark.ForeColor = System.Drawing.Color.Black;
			this.notePanel_ClassModifyRemark.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_ClassModifyRemark.Location = new System.Drawing.Point(64, 104);
			this.notePanel_ClassModifyRemark.MaxRows = 5;
			this.notePanel_ClassModifyRemark.Name = "notePanel_ClassModifyRemark";
			this.notePanel_ClassModifyRemark.ParentAutoHeight = true;
			this.notePanel_ClassModifyRemark.Size = new System.Drawing.Size(80, 22);
			this.notePanel_ClassModifyRemark.TabIndex = 21;
			this.notePanel_ClassModifyRemark.TabStop = false;
			this.notePanel_ClassModifyRemark.Text = "班级备注";
			// 
			// notePanel3
			// 
			this.notePanel3.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel3.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel3.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel3.ForeColor = System.Drawing.Color.Black;
			this.notePanel3.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel3.Location = new System.Drawing.Point(64, 40);
			this.notePanel3.MaxRows = 5;
			this.notePanel3.Name = "notePanel3";
			this.notePanel3.ParentAutoHeight = true;
			this.notePanel3.Size = new System.Drawing.Size(80, 22);
			this.notePanel3.TabIndex = 20;
			this.notePanel3.TabStop = false;
			this.notePanel3.Text = "所在年级";
			// 
			// label2
			// 
			this.label2.ForeColor = System.Drawing.Color.Red;
			this.label2.Location = new System.Drawing.Point(48, 40);
			this.label2.Name = "label2";
			this.label2.Size = new System.Drawing.Size(16, 16);
			this.label2.TabIndex = 26;
			this.label2.Text = "*";
			this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			// 
			// simpleButton_DeleteClass
			// 
			this.simpleButton_DeleteClass.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
			this.simpleButton_DeleteClass.Appearance.Font = new System.Drawing.Font("Tahoma", 8F);
			this.simpleButton_DeleteClass.Appearance.Options.UseFont = true;
			this.simpleButton_DeleteClass.Location = new System.Drawing.Point(69, 136);
			this.simpleButton_DeleteClass.Name = "simpleButton_DeleteClass";
			this.simpleButton_DeleteClass.Size = new System.Drawing.Size(64, 24);
			this.simpleButton_DeleteClass.TabIndex = 25;
			this.simpleButton_DeleteClass.Text = "删除";
			this.simpleButton_DeleteClass.Visible = false;
			this.simpleButton_DeleteClass.Click += new System.EventHandler(this.simpleButton_DeleteClass_Click);
			// 
			// notePanel4
			// 
			this.notePanel4.BackColor = System.Drawing.Color.LightGoldenrodYellow;
			this.notePanel4.Dock = System.Windows.Forms.DockStyle.Top;
			this.notePanel4.ForeColor = System.Drawing.Color.OrangeRed;
			this.notePanel4.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel4.Location = new System.Drawing.Point(0, 0);
			this.notePanel4.MaxRows = 5;
			this.notePanel4.Name = "notePanel4";
			this.notePanel4.ParentAutoHeight = true;
			this.notePanel4.Size = new System.Drawing.Size(398, 23);
			this.notePanel4.TabIndex = 3;
			this.notePanel4.TabStop = false;
			this.notePanel4.Text = "班级资料(*为必须填写)";
			// 
			// GardenInfo
			// 
			this.Appearance.BackColor = System.Drawing.Color.WhiteSmoke;
			this.Appearance.Options.UseBackColor = true;
			this.Controls.Add(this.splitContainerControl_GradeClassInfo);
			this.Controls.Add(this.groupControl_GardenInfo);
			this.Controls.Add(this.barDockControlLeft);
			this.Controls.Add(this.barDockControlRight);
			this.Controls.Add(this.barDockControlBottom);
			this.Controls.Add(this.barDockControlTop);
			this.Name = "GardenInfo";
			this.Size = new System.Drawing.Size(772, 540);
			((System.ComponentModel.ISupportInitialize)(this.groupControl_GardenInfo)).EndInit();
			this.groupControl_GardenInfo.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.pictureEdit_GardenImage.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.barManager1)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.popupMenu1)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_GardenFeature.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_GardenRegCode.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_GardenName.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_GardenAddress.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_GardenContact.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.splitContainerControl_GradeClassInfo)).EndInit();
			this.splitContainerControl_GradeClassInfo.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.xtraTabControl_GradeInfo)).EndInit();
			this.xtraTabControl_GradeInfo.ResumeLayout(false);
			this.xtraTabPage_AddGrade.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_gradeNumber.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_GradeRemark.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.radioGroup_Grade.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_GradeName.Properties)).EndInit();
			this.xtraTabPage_GradeModify.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_GradeRemarkModify.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_GradeModify.Properties)).EndInit();
			this.xtraTabPage_Machine.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
			this.groupControl1.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.gdMachineInfo)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.txtVol.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.txtTerminal.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.xtraTabControl_ClassInfo)).EndInit();
			this.xtraTabControl_ClassInfo.ResumeLayout(false);
			this.xtraTabPage_ClassAdd.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_classNumber.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_ClassName.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_ClassRemark.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.radioGroup_Class.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit1.Properties)).EndInit();
			this.xtraTabPage_ClassModify.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_GradeForClass.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_ClassModifyRemark.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_ClassNameModify.Properties)).EndInit();
			this.ResumeLayout(false);

		}
示例#33
0
        public virtual void SetContrMoveNext(string strContrName, bool blPrev, int iSeed)
        {
            int index = arrContrSeq.IndexOf(strContrName);

            if (index == -1)
            {
                return;
            }
            if (!blPrev && index == arrContrSeq.Count - 1 || blPrev && index == 0)
            {
                return;
            }
            if (FocusedControl.GetType().ToString() == "DevExpress.XtraEditors.CheckedComboBoxEdit")
            {
                DevExpress.XtraEditors.CheckedComboBoxEdit cklis = FocusedControl as DevExpress.XtraEditors.CheckedComboBoxEdit;
                string   strText  = string.Empty;
                string[] arrTexts = cklis.Text.Split(",,".ToCharArray());

                foreach (CheckedListBoxItem item in cklis.Properties.Items)
                {
                    foreach (string strT in arrTexts)
                    {
                        string strTxt = strT.Trim();
                        if (strTxt == string.Empty)
                        {
                            continue;
                        }

                        if (item.Value.ToString().ToLower() == strTxt.ToLower() ||
                            item.Description.ToLower() == strTxt.ToLower())
                        {
                            strText += strText == string.Empty ? item.Value.ToString() : "," + item.Value.ToString();
                        }
                    }
                }
                cklis.EditValue = strText;
                cklis.RefreshEditValue();
            }

            int iFidx = 0;

            if (blPrev)
            {
                iFidx = index - iSeed < 0 ? 0 : index - iSeed;
            }
            else
            {
                iFidx = index + iSeed > arrContrSeq.Count - 1 ? arrContrSeq.Count - 1 : index + iSeed;
            }

            Control[] contrs = FocusedControl.Parent.Controls.Find(arrContrSeq[iFidx], false);
            if (contrs.Length <= 0)
            {
                return;
            }

            Control contr = contrs[0];

            if (contr is BaseEdit)
            {
                BaseEdit bse = contr as BaseEdit;
                if (bse.Properties.ReadOnly || !bse.Visible)
                {
                    SetContrMoveNext(arrContrSeq[iFidx], blPrev, 1);
                    return;
                }
            }
            else if (contr is ProduceManager.UcTxtPopup)
            {
                ProduceManager.UcTxtPopup bc = contr as ProduceManager.UcTxtPopup;
                if (bc.ReadOnly || !bc.Visible)
                {
                    SetContrMoveNext(arrContrSeq[iFidx], blPrev, 1);
                    return;
                }
            }
            else if (contr is ProduceManager.UcTreeList)
            {
                ProduceManager.UcTreeList bc = contr as ProduceManager.UcTreeList;
                if (bc.ReadOnly || !bc.Visible)
                {
                    SetContrMoveNext(arrContrSeq[iFidx], blPrev, 1);
                    return;
                }
            }
            switch (contr.GetType().ToString())
            {
            case "DevExpress.XtraEditors.TextEdit":
                DevExpress.XtraEditors.TextEdit txt = contr as DevExpress.XtraEditors.TextEdit;
                txt.Focus();
                txt.SelectAll();
                break;

            case "DevExpress.XtraEditors.MemoEdit":
                DevExpress.XtraEditors.MemoEdit mTxt = contr as DevExpress.XtraEditors.MemoEdit;
                mTxt.Focus();
                mTxt.SelectAll();
                break;

            case "DevExpress.XtraEditors.SimpleButton":
                DevExpress.XtraEditors.SimpleButton btn = contr as DevExpress.XtraEditors.SimpleButton;
                btn.Select();
                break;

            case "DevExpress.XtraEditors.LookUpEdit":
                DevExpress.XtraEditors.LookUpEdit dpl = contr as DevExpress.XtraEditors.LookUpEdit;
                dpl.Focus();
                dpl.ShowPopup();
                break;

            case "DevExpress.XtraEditors.CheckedComboBoxEdit":
                DevExpress.XtraEditors.CheckedComboBoxEdit ckcob = contr as DevExpress.XtraEditors.CheckedComboBoxEdit;
                ckcob.Focus();
                ckcob.SelectAll();
                break;

            case "DevExpress.XtraEditors.DateEdit":
                DevExpress.XtraEditors.DateEdit dt = contr as DevExpress.XtraEditors.DateEdit;
                dt.Focus();
                dt.Select();
                break;

            case "ExtendControl.ExtPopupTree":
                ExtendControl.ExtPopupTree ext = contr as ExtendControl.ExtPopupTree;
                ext.Focus();
                ext.ShowPopup();
                break;

            case "ProduceManager.UcTxtPopup":
                ProduceManager.UcTxtPopup ucp = contr as ProduceManager.UcTxtPopup;
                ucp.Focus();
                ucp.ShowPopup();
                break;

            case "ProduceManager.UcTreeList":
                ProduceManager.UcTreeList uct = contr as ProduceManager.UcTreeList;
                uct.Focus();
                uct.ShowPopup();
                break;

            case "DevExpress.XtraEditors.ComboBoxEdit":
                DevExpress.XtraEditors.ComboBoxEdit cob = contr as DevExpress.XtraEditors.ComboBoxEdit;
                cob.Focus();
                cob.ShowPopup();
                break;

            default:
                break;
            }
        }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.checkedListBoxControl1   = new DevExpress.XtraEditors.CheckedListBoxControl();
     this.simpleButtonAddPrefabTag = new DevExpress.XtraEditors.SimpleButton();
     this.label1        = new System.Windows.Forms.Label();
     this.checkBox1     = new System.Windows.Forms.CheckBox();
     this.textEdit1     = new DevExpress.XtraEditors.TextEdit();
     this.label3        = new System.Windows.Forms.Label();
     this.comboBoxEdit1 = new DevExpress.XtraEditors.ComboBoxEdit();
     this.simpleButton1 = new DevExpress.XtraEditors.SimpleButton();
     this.label2        = new System.Windows.Forms.Label();
     this.groupControl1 = new DevExpress.XtraEditors.GroupControl();
     this.memoEdit1     = new DevExpress.XtraEditors.MemoEdit();
     this.textEdit2     = new DevExpress.XtraEditors.TextEdit();
     this.label4        = new System.Windows.Forms.Label();
     this.label5        = new System.Windows.Forms.Label();
     ((System.ComponentModel.ISupportInitialize)(this.checkedListBoxControl1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
     this.groupControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.memoEdit1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit2.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // checkedListBoxControl1
     //
     this.checkedListBoxControl1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                                | System.Windows.Forms.AnchorStyles.Right)));
     this.checkedListBoxControl1.ItemHeight = 16;
     this.checkedListBoxControl1.Items.AddRange(new DevExpress.XtraEditors.Controls.CheckedListBoxItem[] {
         new DevExpress.XtraEditors.Controls.CheckedListBoxItem("\\vehicles\\hoverhog\\hoverhog.vehicle", System.Windows.Forms.CheckState.Checked),
         new DevExpress.XtraEditors.Controls.CheckedListBoxItem("\\vehicles\\hoverhog\\bitmaps\\warthog.bitmap"),
         new DevExpress.XtraEditors.Controls.CheckedListBoxItem("\\vehicles\\hoverhog\\warthog.model_collision_geometry", System.Windows.Forms.CheckState.Checked),
         new DevExpress.XtraEditors.Controls.CheckedListBoxItem("\\vehicles\\hoverhog\\hoverhog.gbxmodel", System.Windows.Forms.CheckState.Checked),
         new DevExpress.XtraEditors.Controls.CheckedListBoxItem("\\vehicles\\hoverhog\\hoverhog.physics", System.Windows.Forms.CheckState.Checked),
         new DevExpress.XtraEditors.Controls.CheckedListBoxItem("\\vehicles\\hoverhog\\bitmaps\\multipurpose.bitmap"),
         new DevExpress.XtraEditors.Controls.CheckedListBoxItem("\\vehicles\\hoverhog\\bitmaps\\detail1.bitmap"),
         new DevExpress.XtraEditors.Controls.CheckedListBoxItem("\\vehicles\\hoverhog\\biotmaps\\multipurpose.antenna"),
         new DevExpress.XtraEditors.Controls.CheckedListBoxItem(null),
         new DevExpress.XtraEditors.Controls.CheckedListBoxItem(null)
     });
     this.checkedListBoxControl1.Location = new System.Drawing.Point(8, 56);
     this.checkedListBoxControl1.Name     = "checkedListBoxControl1";
     this.checkedListBoxControl1.Size     = new System.Drawing.Size(512, 128);
     this.checkedListBoxControl1.TabIndex = 0;
     //
     // simpleButtonAddPrefabTag
     //
     this.simpleButtonAddPrefabTag.Location = new System.Drawing.Point(368, 192);
     this.simpleButtonAddPrefabTag.Name     = "simpleButtonAddPrefabTag";
     this.simpleButtonAddPrefabTag.Size     = new System.Drawing.Size(152, 23);
     this.simpleButtonAddPrefabTag.TabIndex = 1;
     this.simpleButtonAddPrefabTag.Text     = "Add Tags to Prefab...";
     this.simpleButtonAddPrefabTag.Click   += new System.EventHandler(this.simpleButtonAddPrefabTag_Click);
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(16, 32);
     this.label1.Name     = "label1";
     this.label1.TabIndex = 2;
     this.label1.Text     = "Prefab Items";
     //
     // checkBox1
     //
     this.checkBox1.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.checkBox1.Location   = new System.Drawing.Point(16, 192);
     this.checkBox1.Name       = "checkBox1";
     this.checkBox1.Size       = new System.Drawing.Size(256, 32);
     this.checkBox1.TabIndex   = 3;
     this.checkBox1.Text       = "Include Modified Dependencies after selection";
     this.checkBox1.TextAlign  = System.Drawing.ContentAlignment.MiddleRight;
     //
     // textEdit1
     //
     this.textEdit1.EditValue = "textEdit1";
     this.textEdit1.Location  = new System.Drawing.Point(88, 376);
     this.textEdit1.Name      = "textEdit1";
     this.textEdit1.Size      = new System.Drawing.Size(128, 20);
     this.textEdit1.TabIndex  = 5;
     //
     // label3
     //
     this.label3.Location  = new System.Drawing.Point(16, 376);
     this.label3.Name      = "label3";
     this.label3.Size      = new System.Drawing.Size(64, 23);
     this.label3.TabIndex  = 7;
     this.label3.Text      = "Password:"******"Halo 1 PC/CE";
     this.comboBoxEdit1.Location  = new System.Drawing.Point(160, 224);
     this.comboBoxEdit1.Name      = "comboBoxEdit1";
     //
     // comboBoxEdit1.Properties
     //
     this.comboBoxEdit1.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.comboBoxEdit1.Properties.Items.AddRange(new object[] {
         "Halo 1 PC/CE",
         "Halo 1 Xbox",
         "Halo 2 Xbox"
     });
     this.comboBoxEdit1.Size     = new System.Drawing.Size(112, 20);
     this.comboBoxEdit1.TabIndex = 8;
     //
     // simpleButton1
     //
     this.simpleButton1.Location = new System.Drawing.Point(368, 368);
     this.simpleButton1.Name     = "simpleButton1";
     this.simpleButton1.Size     = new System.Drawing.Size(168, 32);
     this.simpleButton1.TabIndex = 9;
     this.simpleButton1.Text     = "Generate Prefab";
     //
     // label2
     //
     this.label2.Location  = new System.Drawing.Point(80, 224);
     this.label2.Name      = "label2";
     this.label2.Size      = new System.Drawing.Size(72, 23);
     this.label2.TabIndex  = 10;
     this.label2.Text      = "Prefab Type:";
     this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // groupControl1
     //
     this.groupControl1.Controls.Add(this.label1);
     this.groupControl1.Controls.Add(this.checkedListBoxControl1);
     this.groupControl1.Controls.Add(this.simpleButtonAddPrefabTag);
     this.groupControl1.Controls.Add(this.checkBox1);
     this.groupControl1.Controls.Add(this.comboBoxEdit1);
     this.groupControl1.Controls.Add(this.label2);
     this.groupControl1.Location = new System.Drawing.Point(8, 8);
     this.groupControl1.Name     = "groupControl1";
     this.groupControl1.Size     = new System.Drawing.Size(528, 256);
     this.groupControl1.TabIndex = 11;
     this.groupControl1.Text     = "Prefab Tag List";
     //
     // memoEdit1
     //
     this.memoEdit1.EditValue = "memoEdit1";
     this.memoEdit1.Location  = new System.Drawing.Point(88, 280);
     this.memoEdit1.Name      = "memoEdit1";
     this.memoEdit1.Size      = new System.Drawing.Size(448, 64);
     this.memoEdit1.TabIndex  = 12;
     //
     // textEdit2
     //
     this.textEdit2.EditValue = "textEdit2";
     this.textEdit2.Location  = new System.Drawing.Point(88, 352);
     this.textEdit2.Name      = "textEdit2";
     this.textEdit2.Size      = new System.Drawing.Size(128, 20);
     this.textEdit2.TabIndex  = 13;
     //
     // label4
     //
     this.label4.Location  = new System.Drawing.Point(32, 352);
     this.label4.Name      = "label4";
     this.label4.Size      = new System.Drawing.Size(48, 23);
     this.label4.TabIndex  = 14;
     this.label4.Text      = "Author:";
     this.label4.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // label5
     //
     this.label5.Location  = new System.Drawing.Point(16, 280);
     this.label5.Name      = "label5";
     this.label5.Size      = new System.Drawing.Size(64, 23);
     this.label5.TabIndex  = 15;
     this.label5.Text      = "Description:";
     this.label5.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // PrefabExportDialog
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 14);
     this.ClientSize        = new System.Drawing.Size(544, 406);
     this.Controls.Add(this.label5);
     this.Controls.Add(this.label4);
     this.Controls.Add(this.textEdit2);
     this.Controls.Add(this.memoEdit1);
     this.Controls.Add(this.simpleButton1);
     this.Controls.Add(this.label3);
     this.Controls.Add(this.textEdit1);
     this.Controls.Add(this.groupControl1);
     this.Name = "PrefabExportDialog";
     this.Text = "PrefabExportDialog";
     ((System.ComponentModel.ISupportInitialize)(this.checkedListBoxControl1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
     this.groupControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.memoEdit1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit2.Properties)).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.xtraTabControl1 = new DevExpress.XtraTab.XtraTabControl();
			this.xtraTabPage1 = new DevExpress.XtraTab.XtraTabPage();
			this.splitContainerControl1 = new DevExpress.XtraEditors.SplitContainerControl();
			this.groupControl1 = new DevExpress.XtraEditors.GroupControl();
			this.btnConfirm = new DevExpress.XtraEditors.SimpleButton();
			this.radioGroup_mode = new DevExpress.XtraEditors.RadioGroup();
			this.notePanel1 = new DevExpress.Utils.Frames.NotePanel();
			this.comboBoxEdit_template = new DevExpress.XtraEditors.ComboBoxEdit();
			this.groupControl_FinanQuery = new DevExpress.XtraEditors.GroupControl();
			this.dateEdit_BalanceMonth = new DevExpress.XtraEditors.DateEdit();
			this.notePanel_BalanceMonth = new DevExpress.Utils.Frames.NotePanel();
			this.comboBoxEdit_Class = new DevExpress.XtraEditors.ComboBoxEdit();
			this.notePanel_Class = new DevExpress.Utils.Frames.NotePanel();
			this.comboBoxEdit_Grade = new DevExpress.XtraEditors.ComboBoxEdit();
			this.notePanel_Grade = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_FinanQuery = new DevExpress.Utils.Frames.NotePanel();
			this.gridControl1 = new DevExpress.XtraGrid.GridControl();
			this.gridView2 = new DevExpress.XtraGrid.Views.Grid.GridView();
			this.panelControl2 = new DevExpress.XtraEditors.PanelControl();
			this.btnReport = new DevExpress.XtraEditors.SimpleButton();
			this.btnStat = new DevExpress.XtraEditors.SimpleButton();
			this.xtraTabPage2 = new DevExpress.XtraTab.XtraTabPage();
			this.splitContainerControl2 = new DevExpress.XtraEditors.SplitContainerControl();
			this.groupControl2 = new DevExpress.XtraEditors.GroupControl();
			this.notePanel6 = new DevExpress.Utils.Frames.NotePanel();
			this.comboBoxEdit_template2 = new DevExpress.XtraEditors.ComboBoxEdit();
			this.dateEdit_BalanceMonth2 = new DevExpress.XtraEditors.DateEdit();
			this.notePanel2 = new DevExpress.Utils.Frames.NotePanel();
			this.comboBoxEdit_class2 = new DevExpress.XtraEditors.ComboBoxEdit();
			this.notePanel3 = new DevExpress.Utils.Frames.NotePanel();
			this.comboBoxEdit_grade2 = new DevExpress.XtraEditors.ComboBoxEdit();
			this.notePanel4 = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel5 = new DevExpress.Utils.Frames.NotePanel();
			this.gridControl2 = new DevExpress.XtraGrid.GridControl();
			this.gridView1 = new DevExpress.XtraGrid.Views.Grid.GridView();
			this.panelControl1 = new DevExpress.XtraEditors.PanelControl();
			this.btnReport2 = new DevExpress.XtraEditors.SimpleButton();
			this.btnSearch = new DevExpress.XtraEditors.SimpleButton();
			this.memoEdit_Remark = new DevExpress.XtraEditors.MemoEdit();
			this.textEdit_ExtraCharge = new DevExpress.XtraEditors.TextEdit();
			this.notePanel_ExtraCharge = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_CommCharge = new DevExpress.Utils.Frames.NotePanel();
			this.textEdit_CommCharge = new DevExpress.XtraEditors.TextEdit();
			this.textEdit_MilkCharge = new DevExpress.XtraEditors.TextEdit();
			this.textEdit_NightCharge = new DevExpress.XtraEditors.TextEdit();
			this.notePanel_MilkCharge = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_NightCharge = new DevExpress.Utils.Frames.NotePanel();
			this.textEdit_AdmCharge = new DevExpress.XtraEditors.TextEdit();
			this.notePanel_AdmCharge = new DevExpress.Utils.Frames.NotePanel();
			this.textEdit_MessCharge = new DevExpress.XtraEditors.TextEdit();
			this.notePanel_MessCharge = new DevExpress.Utils.Frames.NotePanel();
			this.textEdit_AdmRestoreDays = new DevExpress.XtraEditors.TextEdit();
			this.notePanel_AdmRestoreDays = new DevExpress.Utils.Frames.NotePanel();
			this.textEdit_MessRestoreDays = new DevExpress.XtraEditors.TextEdit();
			this.notePanel_MessRestoreDays = new DevExpress.Utils.Frames.NotePanel();
			this.groupControl_FinanInfo = new DevExpress.XtraEditors.GroupControl();
			this.barManager1 = new DevExpress.XtraBars.BarManager();
			this.barDockControlTop = new DevExpress.XtraBars.BarDockControl();
			this.barDockControlBottom = new DevExpress.XtraBars.BarDockControl();
			this.barDockControlLeft = new DevExpress.XtraBars.BarDockControl();
			this.barDockControlRight = new DevExpress.XtraBars.BarDockControl();
			this.saveFileDialog_Report = new System.Windows.Forms.SaveFileDialog();
			((System.ComponentModel.ISupportInitialize)(this.xtraTabControl1)).BeginInit();
			this.xtraTabControl1.SuspendLayout();
			this.xtraTabPage1.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.splitContainerControl1)).BeginInit();
			this.splitContainerControl1.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
			this.groupControl1.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.radioGroup_mode.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_template.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_FinanQuery)).BeginInit();
			this.groupControl_FinanQuery.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.dateEdit_BalanceMonth.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_Class.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_Grade.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.gridControl1)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.gridView2)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.panelControl2)).BeginInit();
			this.panelControl2.SuspendLayout();
			this.xtraTabPage2.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.splitContainerControl2)).BeginInit();
			this.splitContainerControl2.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.groupControl2)).BeginInit();
			this.groupControl2.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_template2.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.dateEdit_BalanceMonth2.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_class2.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_grade2.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.gridControl2)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
			this.panelControl1.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.memoEdit_Remark.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_ExtraCharge.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_CommCharge.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MilkCharge.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_NightCharge.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_AdmCharge.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MessCharge.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_AdmRestoreDays.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MessRestoreDays.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_FinanInfo)).BeginInit();
			this.groupControl_FinanInfo.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.barManager1)).BeginInit();
			this.SuspendLayout();
			// 
			// xtraTabControl1
			// 
			this.xtraTabControl1.Appearance.BackColor = System.Drawing.Color.WhiteSmoke;
			this.xtraTabControl1.Appearance.Options.UseBackColor = true;
			this.xtraTabControl1.AppearancePage.HeaderActive.ForeColor = System.Drawing.Color.DarkOrange;
			this.xtraTabControl1.AppearancePage.HeaderActive.Options.UseForeColor = true;
			this.xtraTabControl1.Controls.Add(this.xtraTabPage1);
			this.xtraTabControl1.Controls.Add(this.xtraTabPage2);
			this.xtraTabControl1.Dock = System.Windows.Forms.DockStyle.Fill;
			this.xtraTabControl1.Location = new System.Drawing.Point(0, 0);
			this.xtraTabControl1.Name = "xtraTabControl1";
			this.xtraTabControl1.SelectedTabPage = this.xtraTabPage1;
			this.xtraTabControl1.Size = new System.Drawing.Size(772, 540);
			this.xtraTabControl1.TabIndex = 0;
			this.xtraTabControl1.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
																							this.xtraTabPage1,
																							this.xtraTabPage2});
			this.xtraTabControl1.Text = "xtraTabControl1";
			// 
			// xtraTabPage1
			// 
			this.xtraTabPage1.Appearance.PageClient.BackColor = System.Drawing.Color.WhiteSmoke;
			this.xtraTabPage1.Appearance.PageClient.Options.UseBackColor = true;
			this.xtraTabPage1.Controls.Add(this.splitContainerControl1);
			this.xtraTabPage1.Name = "xtraTabPage1";
			this.xtraTabPage1.Size = new System.Drawing.Size(768, 515);
			this.xtraTabPage1.Text = "财务统计";
			// 
			// splitContainerControl1
			// 
			this.splitContainerControl1.Dock = System.Windows.Forms.DockStyle.Fill;
			this.splitContainerControl1.Location = new System.Drawing.Point(0, 0);
			this.splitContainerControl1.Name = "splitContainerControl1";
			this.splitContainerControl1.Panel1.Controls.Add(this.groupControl1);
			this.splitContainerControl1.Panel1.Controls.Add(this.groupControl_FinanQuery);
			this.splitContainerControl1.Panel1.Text = "splitContainerControl1_Panel1";
			this.splitContainerControl1.Panel2.Controls.Add(this.gridControl1);
			this.splitContainerControl1.Panel2.Controls.Add(this.panelControl2);
			this.splitContainerControl1.Panel2.Text = "splitContainerControl1_Panel2";
			this.splitContainerControl1.Size = new System.Drawing.Size(768, 515);
			this.splitContainerControl1.SplitterPosition = 202;
			this.splitContainerControl1.TabIndex = 0;
			this.splitContainerControl1.Text = "splitContainerControl1";
			// 
			// groupControl1
			// 
			this.groupControl1.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.groupControl1.AppearanceCaption.Options.UseFont = true;
			this.groupControl1.Controls.Add(this.btnConfirm);
			this.groupControl1.Controls.Add(this.radioGroup_mode);
			this.groupControl1.Controls.Add(this.notePanel1);
			this.groupControl1.Controls.Add(this.comboBoxEdit_template);
			this.groupControl1.Dock = System.Windows.Forms.DockStyle.Fill;
			this.groupControl1.Location = new System.Drawing.Point(0, 152);
			this.groupControl1.Name = "groupControl1";
			this.groupControl1.Size = new System.Drawing.Size(196, 357);
			this.groupControl1.TabIndex = 2;
			this.groupControl1.Text = "财务信息";
			// 
			// btnConfirm
			// 
			this.btnConfirm.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.btnConfirm.Appearance.ForeColor = System.Drawing.Color.DarkMagenta;
			this.btnConfirm.Appearance.Options.UseFont = true;
			this.btnConfirm.Appearance.Options.UseForeColor = true;
			this.btnConfirm.Location = new System.Drawing.Point(16, 96);
			this.btnConfirm.Name = "btnConfirm";
			this.btnConfirm.Size = new System.Drawing.Size(72, 26);
			this.btnConfirm.TabIndex = 47;
			this.btnConfirm.Tag = 4;
			this.btnConfirm.Text = "执行操作";
			this.btnConfirm.Click += new System.EventHandler(this.btnConfirm_Click);
			// 
			// radioGroup_mode
			// 
			this.radioGroup_mode.EditValue = 1;
			this.radioGroup_mode.Location = new System.Drawing.Point(16, 56);
			this.radioGroup_mode.Name = "radioGroup_mode";
			// 
			// radioGroup_mode.Properties
			// 
			this.radioGroup_mode.Properties.Columns = 3;
			this.radioGroup_mode.Properties.Items.AddRange(new DevExpress.XtraEditors.Controls.RadioGroupItem[] {
																													new DevExpress.XtraEditors.Controls.RadioGroupItem(1, "修改"),
																													new DevExpress.XtraEditors.Controls.RadioGroupItem(2, "添加"),
																													new DevExpress.XtraEditors.Controls.RadioGroupItem(3, "删除")});
			this.radioGroup_mode.Size = new System.Drawing.Size(152, 32);
			this.radioGroup_mode.TabIndex = 46;
			// 
			// notePanel1
			// 
			this.notePanel1.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel1.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel1.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel1.ForeColor = System.Drawing.Color.Black;
			this.notePanel1.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel1.Location = new System.Drawing.Point(16, 24);
			this.notePanel1.MaxRows = 5;
			this.notePanel1.Name = "notePanel1";
			this.notePanel1.ParentAutoHeight = true;
			this.notePanel1.Size = new System.Drawing.Size(64, 22);
			this.notePanel1.TabIndex = 44;
			this.notePanel1.TabStop = false;
			this.notePanel1.Text = "模  板:";
			// 
			// comboBoxEdit_template
			// 
			this.comboBoxEdit_template.EditValue = "没有模板";
			this.comboBoxEdit_template.Location = new System.Drawing.Point(88, 24);
			this.comboBoxEdit_template.Name = "comboBoxEdit_template";
			// 
			// comboBoxEdit_template.Properties
			// 
			this.comboBoxEdit_template.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																														  new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.comboBoxEdit_template.Properties.Items.AddRange(new object[] {
																				  "没有模板"});
			this.comboBoxEdit_template.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
			this.comboBoxEdit_template.Size = new System.Drawing.Size(80, 23);
			this.comboBoxEdit_template.TabIndex = 0;
			this.comboBoxEdit_template.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit_template_SelectedIndexChanged);
			// 
			// groupControl_FinanQuery
			// 
			this.groupControl_FinanQuery.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.groupControl_FinanQuery.AppearanceCaption.Options.UseFont = true;
			this.groupControl_FinanQuery.Controls.Add(this.dateEdit_BalanceMonth);
			this.groupControl_FinanQuery.Controls.Add(this.notePanel_BalanceMonth);
			this.groupControl_FinanQuery.Controls.Add(this.comboBoxEdit_Class);
			this.groupControl_FinanQuery.Controls.Add(this.notePanel_Class);
			this.groupControl_FinanQuery.Controls.Add(this.comboBoxEdit_Grade);
			this.groupControl_FinanQuery.Controls.Add(this.notePanel_Grade);
			this.groupControl_FinanQuery.Controls.Add(this.notePanel_FinanQuery);
			this.groupControl_FinanQuery.Dock = System.Windows.Forms.DockStyle.Top;
			this.groupControl_FinanQuery.Location = new System.Drawing.Point(0, 0);
			this.groupControl_FinanQuery.Name = "groupControl_FinanQuery";
			this.groupControl_FinanQuery.Size = new System.Drawing.Size(196, 152);
			this.groupControl_FinanQuery.TabIndex = 1;
			this.groupControl_FinanQuery.Text = "信息查询";
			// 
			// dateEdit_BalanceMonth
			// 
			this.dateEdit_BalanceMonth.EditValue = new System.DateTime(2005, 12, 20, 0, 0, 0, 0);
			this.dateEdit_BalanceMonth.Location = new System.Drawing.Point(88, 120);
			this.dateEdit_BalanceMonth.Name = "dateEdit_BalanceMonth";
			// 
			// dateEdit_BalanceMonth.Properties
			// 
			this.dateEdit_BalanceMonth.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																														  new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.dateEdit_BalanceMonth.Properties.DisplayFormat.FormatString = "yyyy年M月";
			this.dateEdit_BalanceMonth.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
			this.dateEdit_BalanceMonth.Properties.Mask.EditMask = "d";
			this.dateEdit_BalanceMonth.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.DateTime;
			this.dateEdit_BalanceMonth.Size = new System.Drawing.Size(88, 23);
			this.dateEdit_BalanceMonth.TabIndex = 45;
			// 
			// notePanel_BalanceMonth
			// 
			this.notePanel_BalanceMonth.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_BalanceMonth.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_BalanceMonth.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_BalanceMonth.ForeColor = System.Drawing.Color.Black;
			this.notePanel_BalanceMonth.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_BalanceMonth.Location = new System.Drawing.Point(16, 120);
			this.notePanel_BalanceMonth.MaxRows = 5;
			this.notePanel_BalanceMonth.Name = "notePanel_BalanceMonth";
			this.notePanel_BalanceMonth.ParentAutoHeight = true;
			this.notePanel_BalanceMonth.Size = new System.Drawing.Size(64, 22);
			this.notePanel_BalanceMonth.TabIndex = 43;
			this.notePanel_BalanceMonth.TabStop = false;
			this.notePanel_BalanceMonth.Text = "结算月:";
			// 
			// comboBoxEdit_Class
			// 
			this.comboBoxEdit_Class.EditValue = "";
			this.comboBoxEdit_Class.Location = new System.Drawing.Point(88, 88);
			this.comboBoxEdit_Class.Name = "comboBoxEdit_Class";
			// 
			// comboBoxEdit_Class.Properties
			// 
			this.comboBoxEdit_Class.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																													   new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.comboBoxEdit_Class.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
			this.comboBoxEdit_Class.Size = new System.Drawing.Size(80, 23);
			this.comboBoxEdit_Class.TabIndex = 38;
			// 
			// notePanel_Class
			// 
			this.notePanel_Class.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_Class.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_Class.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_Class.ForeColor = System.Drawing.Color.Black;
			this.notePanel_Class.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_Class.Location = new System.Drawing.Point(16, 88);
			this.notePanel_Class.MaxRows = 5;
			this.notePanel_Class.Name = "notePanel_Class";
			this.notePanel_Class.ParentAutoHeight = true;
			this.notePanel_Class.Size = new System.Drawing.Size(64, 22);
			this.notePanel_Class.TabIndex = 37;
			this.notePanel_Class.TabStop = false;
			this.notePanel_Class.Text = "班  级:";
			// 
			// comboBoxEdit_Grade
			// 
			this.comboBoxEdit_Grade.EditValue = "";
			this.comboBoxEdit_Grade.Location = new System.Drawing.Point(88, 56);
			this.comboBoxEdit_Grade.Name = "comboBoxEdit_Grade";
			// 
			// comboBoxEdit_Grade.Properties
			// 
			this.comboBoxEdit_Grade.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																													   new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.comboBoxEdit_Grade.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
			this.comboBoxEdit_Grade.Size = new System.Drawing.Size(80, 23);
			this.comboBoxEdit_Grade.TabIndex = 36;
			this.comboBoxEdit_Grade.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit_Grade_SelectedIndexChanged);
			// 
			// notePanel_Grade
			// 
			this.notePanel_Grade.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_Grade.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_Grade.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_Grade.ForeColor = System.Drawing.Color.Black;
			this.notePanel_Grade.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_Grade.Location = new System.Drawing.Point(16, 56);
			this.notePanel_Grade.MaxRows = 5;
			this.notePanel_Grade.Name = "notePanel_Grade";
			this.notePanel_Grade.ParentAutoHeight = true;
			this.notePanel_Grade.Size = new System.Drawing.Size(64, 22);
			this.notePanel_Grade.TabIndex = 35;
			this.notePanel_Grade.TabStop = false;
			this.notePanel_Grade.Text = "年  级:";
			// 
			// notePanel_FinanQuery
			// 
			this.notePanel_FinanQuery.BackColor = System.Drawing.Color.LightGoldenrodYellow;
			this.notePanel_FinanQuery.Dock = System.Windows.Forms.DockStyle.Top;
			this.notePanel_FinanQuery.ForeColor = System.Drawing.Color.OrangeRed;
			this.notePanel_FinanQuery.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_FinanQuery.Location = new System.Drawing.Point(3, 18);
			this.notePanel_FinanQuery.MaxRows = 5;
			this.notePanel_FinanQuery.Name = "notePanel_FinanQuery";
			this.notePanel_FinanQuery.ParentAutoHeight = true;
			this.notePanel_FinanQuery.Size = new System.Drawing.Size(190, 23);
			this.notePanel_FinanQuery.TabIndex = 19;
			this.notePanel_FinanQuery.TabStop = false;
			this.notePanel_FinanQuery.Text = "您要查找哪个班级?";
			// 
			// gridControl1
			// 
			this.gridControl1.Dock = System.Windows.Forms.DockStyle.Fill;
			// 
			// gridControl1.EmbeddedNavigator
			// 
			this.gridControl1.EmbeddedNavigator.Name = "";
			this.gridControl1.Location = new System.Drawing.Point(0, 40);
			this.gridControl1.MainView = this.gridView2;
			this.gridControl1.Name = "gridControl1";
			this.gridControl1.Size = new System.Drawing.Size(556, 469);
			this.gridControl1.TabIndex = 2;
			this.gridControl1.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
																										this.gridView2});
			// 
			// gridView2
			// 
			this.gridView2.GridControl = this.gridControl1;
			this.gridView2.Name = "gridView2";
			this.gridView2.OptionsCustomization.AllowFilter = false;
			this.gridView2.OptionsCustomization.AllowGroup = false;
			this.gridView2.OptionsView.ShowFilterPanel = false;
			this.gridView2.OptionsView.ShowGroupPanel = false;
			// 
			// panelControl2
			// 
			this.panelControl2.Controls.Add(this.btnReport);
			this.panelControl2.Controls.Add(this.btnStat);
			this.panelControl2.Dock = System.Windows.Forms.DockStyle.Top;
			this.panelControl2.Location = new System.Drawing.Point(0, 0);
			this.panelControl2.Name = "panelControl2";
			this.panelControl2.Size = new System.Drawing.Size(556, 40);
			this.panelControl2.TabIndex = 1;
			this.panelControl2.Text = "panelControl2";
			// 
			// btnReport
			// 
			this.btnReport.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.btnReport.Appearance.ForeColor = System.Drawing.Color.DarkMagenta;
			this.btnReport.Appearance.Options.UseFont = true;
			this.btnReport.Appearance.Options.UseForeColor = true;
			this.btnReport.Location = new System.Drawing.Point(104, 8);
			this.btnReport.Name = "btnReport";
			this.btnReport.Size = new System.Drawing.Size(72, 26);
			this.btnReport.TabIndex = 10;
			this.btnReport.Tag = 4;
			this.btnReport.Text = "报表";
			this.btnReport.Click += new System.EventHandler(this.btnReport_Click);
			// 
			// btnStat
			// 
			this.btnStat.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.btnStat.Appearance.ForeColor = System.Drawing.Color.DarkMagenta;
			this.btnStat.Appearance.Options.UseFont = true;
			this.btnStat.Appearance.Options.UseForeColor = true;
			this.btnStat.Location = new System.Drawing.Point(16, 8);
			this.btnStat.Name = "btnStat";
			this.btnStat.Size = new System.Drawing.Size(72, 26);
			this.btnStat.TabIndex = 8;
			this.btnStat.Tag = 4;
			this.btnStat.Text = "统计";
			this.btnStat.Click += new System.EventHandler(this.btnStat_Click);
			// 
			// xtraTabPage2
			// 
			this.xtraTabPage2.Appearance.PageClient.BackColor = System.Drawing.Color.WhiteSmoke;
			this.xtraTabPage2.Appearance.PageClient.Options.UseBackColor = true;
			this.xtraTabPage2.Controls.Add(this.splitContainerControl2);
			this.xtraTabPage2.Name = "xtraTabPage2";
			this.xtraTabPage2.Size = new System.Drawing.Size(768, 515);
			this.xtraTabPage2.Text = "历史查询";
			// 
			// splitContainerControl2
			// 
			this.splitContainerControl2.Dock = System.Windows.Forms.DockStyle.Fill;
			this.splitContainerControl2.Location = new System.Drawing.Point(0, 0);
			this.splitContainerControl2.Name = "splitContainerControl2";
			this.splitContainerControl2.Panel1.Controls.Add(this.groupControl2);
			this.splitContainerControl2.Panel1.Text = "splitContainerControl2_Panel1";
			this.splitContainerControl2.Panel2.Controls.Add(this.gridControl2);
			this.splitContainerControl2.Panel2.Controls.Add(this.panelControl1);
			this.splitContainerControl2.Panel2.Text = "splitContainerControl2_Panel2";
			this.splitContainerControl2.Size = new System.Drawing.Size(768, 515);
			this.splitContainerControl2.SplitterPosition = 201;
			this.splitContainerControl2.TabIndex = 0;
			this.splitContainerControl2.Text = "splitContainerControl2";
			// 
			// groupControl2
			// 
			this.groupControl2.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.groupControl2.AppearanceCaption.Options.UseFont = true;
			this.groupControl2.Controls.Add(this.notePanel6);
			this.groupControl2.Controls.Add(this.comboBoxEdit_template2);
			this.groupControl2.Controls.Add(this.dateEdit_BalanceMonth2);
			this.groupControl2.Controls.Add(this.notePanel2);
			this.groupControl2.Controls.Add(this.comboBoxEdit_class2);
			this.groupControl2.Controls.Add(this.notePanel3);
			this.groupControl2.Controls.Add(this.comboBoxEdit_grade2);
			this.groupControl2.Controls.Add(this.notePanel4);
			this.groupControl2.Controls.Add(this.notePanel5);
			this.groupControl2.Dock = System.Windows.Forms.DockStyle.Top;
			this.groupControl2.Location = new System.Drawing.Point(0, 0);
			this.groupControl2.Name = "groupControl2";
			this.groupControl2.Size = new System.Drawing.Size(195, 192);
			this.groupControl2.TabIndex = 2;
			this.groupControl2.Text = "信息查询";
			// 
			// notePanel6
			// 
			this.notePanel6.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel6.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel6.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel6.ForeColor = System.Drawing.Color.Black;
			this.notePanel6.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel6.Location = new System.Drawing.Point(16, 120);
			this.notePanel6.MaxRows = 5;
			this.notePanel6.Name = "notePanel6";
			this.notePanel6.ParentAutoHeight = true;
			this.notePanel6.Size = new System.Drawing.Size(64, 22);
			this.notePanel6.TabIndex = 47;
			this.notePanel6.TabStop = false;
			this.notePanel6.Text = "模  板:";
			// 
			// comboBoxEdit_template2
			// 
			this.comboBoxEdit_template2.EditValue = "没有模板";
			this.comboBoxEdit_template2.Location = new System.Drawing.Point(88, 120);
			this.comboBoxEdit_template2.Name = "comboBoxEdit_template2";
			// 
			// comboBoxEdit_template2.Properties
			// 
			this.comboBoxEdit_template2.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																														   new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.comboBoxEdit_template2.Properties.Items.AddRange(new object[] {
																				   "没有模板"});
			this.comboBoxEdit_template2.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
			this.comboBoxEdit_template2.Size = new System.Drawing.Size(80, 23);
			this.comboBoxEdit_template2.TabIndex = 46;
			// 
			// dateEdit_BalanceMonth2
			// 
			this.dateEdit_BalanceMonth2.EditValue = new System.DateTime(2005, 12, 20, 0, 0, 0, 0);
			this.dateEdit_BalanceMonth2.Location = new System.Drawing.Point(88, 152);
			this.dateEdit_BalanceMonth2.Name = "dateEdit_BalanceMonth2";
			// 
			// dateEdit_BalanceMonth2.Properties
			// 
			this.dateEdit_BalanceMonth2.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																														   new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.dateEdit_BalanceMonth2.Properties.DisplayFormat.FormatString = "yyyy年M月";
			this.dateEdit_BalanceMonth2.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
			this.dateEdit_BalanceMonth2.Properties.Mask.EditMask = "d";
			this.dateEdit_BalanceMonth2.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.DateTime;
			this.dateEdit_BalanceMonth2.Size = new System.Drawing.Size(88, 23);
			this.dateEdit_BalanceMonth2.TabIndex = 45;
			// 
			// notePanel2
			// 
			this.notePanel2.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel2.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel2.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel2.ForeColor = System.Drawing.Color.Black;
			this.notePanel2.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel2.Location = new System.Drawing.Point(16, 152);
			this.notePanel2.MaxRows = 5;
			this.notePanel2.Name = "notePanel2";
			this.notePanel2.ParentAutoHeight = true;
			this.notePanel2.Size = new System.Drawing.Size(64, 22);
			this.notePanel2.TabIndex = 43;
			this.notePanel2.TabStop = false;
			this.notePanel2.Text = "结算月:";
			// 
			// comboBoxEdit_class2
			// 
			this.comboBoxEdit_class2.EditValue = "";
			this.comboBoxEdit_class2.Location = new System.Drawing.Point(88, 88);
			this.comboBoxEdit_class2.Name = "comboBoxEdit_class2";
			// 
			// comboBoxEdit_class2.Properties
			// 
			this.comboBoxEdit_class2.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																														new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.comboBoxEdit_class2.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
			this.comboBoxEdit_class2.Size = new System.Drawing.Size(80, 23);
			this.comboBoxEdit_class2.TabIndex = 38;
			// 
			// notePanel3
			// 
			this.notePanel3.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel3.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel3.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel3.ForeColor = System.Drawing.Color.Black;
			this.notePanel3.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel3.Location = new System.Drawing.Point(16, 88);
			this.notePanel3.MaxRows = 5;
			this.notePanel3.Name = "notePanel3";
			this.notePanel3.ParentAutoHeight = true;
			this.notePanel3.Size = new System.Drawing.Size(64, 22);
			this.notePanel3.TabIndex = 37;
			this.notePanel3.TabStop = false;
			this.notePanel3.Text = "班  级:";
			// 
			// comboBoxEdit_grade2
			// 
			this.comboBoxEdit_grade2.EditValue = "";
			this.comboBoxEdit_grade2.Location = new System.Drawing.Point(88, 56);
			this.comboBoxEdit_grade2.Name = "comboBoxEdit_grade2";
			// 
			// comboBoxEdit_grade2.Properties
			// 
			this.comboBoxEdit_grade2.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																														new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.comboBoxEdit_grade2.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
			this.comboBoxEdit_grade2.Size = new System.Drawing.Size(80, 23);
			this.comboBoxEdit_grade2.TabIndex = 36;
			this.comboBoxEdit_grade2.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit_grade2_SelectedIndexChanged);
			// 
			// notePanel4
			// 
			this.notePanel4.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel4.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel4.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel4.ForeColor = System.Drawing.Color.Black;
			this.notePanel4.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel4.Location = new System.Drawing.Point(16, 56);
			this.notePanel4.MaxRows = 5;
			this.notePanel4.Name = "notePanel4";
			this.notePanel4.ParentAutoHeight = true;
			this.notePanel4.Size = new System.Drawing.Size(64, 22);
			this.notePanel4.TabIndex = 35;
			this.notePanel4.TabStop = false;
			this.notePanel4.Text = "年  级:";
			// 
			// notePanel5
			// 
			this.notePanel5.BackColor = System.Drawing.Color.LightGoldenrodYellow;
			this.notePanel5.Dock = System.Windows.Forms.DockStyle.Top;
			this.notePanel5.ForeColor = System.Drawing.Color.OrangeRed;
			this.notePanel5.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel5.Location = new System.Drawing.Point(3, 18);
			this.notePanel5.MaxRows = 5;
			this.notePanel5.Name = "notePanel5";
			this.notePanel5.ParentAutoHeight = true;
			this.notePanel5.Size = new System.Drawing.Size(189, 23);
			this.notePanel5.TabIndex = 19;
			this.notePanel5.TabStop = false;
			this.notePanel5.Text = "您要查找哪个班级?";
			// 
			// gridControl2
			// 
			this.gridControl2.Dock = System.Windows.Forms.DockStyle.Fill;
			// 
			// gridControl2.EmbeddedNavigator
			// 
			this.gridControl2.EmbeddedNavigator.Name = "";
			this.gridControl2.Location = new System.Drawing.Point(0, 40);
			this.gridControl2.MainView = this.gridView1;
			this.gridControl2.Name = "gridControl2";
			this.gridControl2.Size = new System.Drawing.Size(557, 469);
			this.gridControl2.TabIndex = 3;
			this.gridControl2.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
																										this.gridView1});
			// 
			// gridView1
			// 
			this.gridView1.GridControl = this.gridControl2;
			this.gridView1.Name = "gridView1";
			this.gridView1.OptionsCustomization.AllowFilter = false;
			this.gridView1.OptionsCustomization.AllowGroup = false;
			this.gridView1.OptionsView.ShowFilterPanel = false;
			this.gridView1.OptionsView.ShowGroupPanel = false;
			// 
			// panelControl1
			// 
			this.panelControl1.Controls.Add(this.btnReport2);
			this.panelControl1.Controls.Add(this.btnSearch);
			this.panelControl1.Dock = System.Windows.Forms.DockStyle.Top;
			this.panelControl1.Location = new System.Drawing.Point(0, 0);
			this.panelControl1.Name = "panelControl1";
			this.panelControl1.Size = new System.Drawing.Size(557, 40);
			this.panelControl1.TabIndex = 2;
			this.panelControl1.Text = "panelControl1";
			// 
			// btnReport2
			// 
			this.btnReport2.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.btnReport2.Appearance.ForeColor = System.Drawing.Color.DarkMagenta;
			this.btnReport2.Appearance.Options.UseFont = true;
			this.btnReport2.Appearance.Options.UseForeColor = true;
			this.btnReport2.Location = new System.Drawing.Point(104, 8);
			this.btnReport2.Name = "btnReport2";
			this.btnReport2.Size = new System.Drawing.Size(72, 26);
			this.btnReport2.TabIndex = 9;
			this.btnReport2.Tag = 4;
			this.btnReport2.Text = "报表";
			this.btnReport2.Click += new System.EventHandler(this.btnReport2_Click);
			// 
			// btnSearch
			// 
			this.btnSearch.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.btnSearch.Appearance.ForeColor = System.Drawing.Color.DarkMagenta;
			this.btnSearch.Appearance.Options.UseFont = true;
			this.btnSearch.Appearance.Options.UseForeColor = true;
			this.btnSearch.Location = new System.Drawing.Point(16, 8);
			this.btnSearch.Name = "btnSearch";
			this.btnSearch.Size = new System.Drawing.Size(72, 26);
			this.btnSearch.TabIndex = 8;
			this.btnSearch.Tag = 4;
			this.btnSearch.Text = "查询";
			this.btnSearch.Click += new System.EventHandler(this.btnSearch_Click);
			// 
			// memoEdit_Remark
			// 
			this.memoEdit_Remark.EditValue = "";
			this.memoEdit_Remark.Location = new System.Drawing.Point(16, 248);
			this.memoEdit_Remark.Name = "memoEdit_Remark";
			this.memoEdit_Remark.Size = new System.Drawing.Size(160, 72);
			this.memoEdit_Remark.TabIndex = 59;
			// 
			// textEdit_ExtraCharge
			// 
			this.textEdit_ExtraCharge.EditValue = "";
			this.textEdit_ExtraCharge.Location = new System.Drawing.Point(104, 200);
			this.textEdit_ExtraCharge.Name = "textEdit_ExtraCharge";
			this.textEdit_ExtraCharge.Size = new System.Drawing.Size(72, 23);
			this.textEdit_ExtraCharge.TabIndex = 57;
			// 
			// notePanel_ExtraCharge
			// 
			this.notePanel_ExtraCharge.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_ExtraCharge.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_ExtraCharge.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_ExtraCharge.ForeColor = System.Drawing.Color.Black;
			this.notePanel_ExtraCharge.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_ExtraCharge.Location = new System.Drawing.Point(16, 200);
			this.notePanel_ExtraCharge.MaxRows = 5;
			this.notePanel_ExtraCharge.Name = "notePanel_ExtraCharge";
			this.notePanel_ExtraCharge.ParentAutoHeight = true;
			this.notePanel_ExtraCharge.Size = new System.Drawing.Size(80, 22);
			this.notePanel_ExtraCharge.TabIndex = 56;
			this.notePanel_ExtraCharge.TabStop = false;
			this.notePanel_ExtraCharge.Text = " 附加费:";
			// 
			// notePanel_CommCharge
			// 
			this.notePanel_CommCharge.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_CommCharge.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_CommCharge.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_CommCharge.ForeColor = System.Drawing.Color.Black;
			this.notePanel_CommCharge.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_CommCharge.Location = new System.Drawing.Point(16, 176);
			this.notePanel_CommCharge.MaxRows = 5;
			this.notePanel_CommCharge.Name = "notePanel_CommCharge";
			this.notePanel_CommCharge.ParentAutoHeight = true;
			this.notePanel_CommCharge.Size = new System.Drawing.Size(80, 22);
			this.notePanel_CommCharge.TabIndex = 55;
			this.notePanel_CommCharge.TabStop = false;
			this.notePanel_CommCharge.Text = " 代办费:";
			// 
			// textEdit_CommCharge
			// 
			this.textEdit_CommCharge.EditValue = "";
			this.textEdit_CommCharge.Location = new System.Drawing.Point(104, 176);
			this.textEdit_CommCharge.Name = "textEdit_CommCharge";
			this.textEdit_CommCharge.Size = new System.Drawing.Size(72, 23);
			this.textEdit_CommCharge.TabIndex = 54;
			// 
			// textEdit_MilkCharge
			// 
			this.textEdit_MilkCharge.EditValue = "";
			this.textEdit_MilkCharge.Location = new System.Drawing.Point(104, 152);
			this.textEdit_MilkCharge.Name = "textEdit_MilkCharge";
			this.textEdit_MilkCharge.Size = new System.Drawing.Size(72, 23);
			this.textEdit_MilkCharge.TabIndex = 53;
			// 
			// textEdit_NightCharge
			// 
			this.textEdit_NightCharge.EditValue = "";
			this.textEdit_NightCharge.Location = new System.Drawing.Point(104, 128);
			this.textEdit_NightCharge.Name = "textEdit_NightCharge";
			this.textEdit_NightCharge.Size = new System.Drawing.Size(72, 23);
			this.textEdit_NightCharge.TabIndex = 52;
			// 
			// notePanel_MilkCharge
			// 
			this.notePanel_MilkCharge.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_MilkCharge.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_MilkCharge.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_MilkCharge.ForeColor = System.Drawing.Color.Black;
			this.notePanel_MilkCharge.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_MilkCharge.Location = new System.Drawing.Point(16, 152);
			this.notePanel_MilkCharge.MaxRows = 5;
			this.notePanel_MilkCharge.Name = "notePanel_MilkCharge";
			this.notePanel_MilkCharge.ParentAutoHeight = true;
			this.notePanel_MilkCharge.Size = new System.Drawing.Size(80, 22);
			this.notePanel_MilkCharge.TabIndex = 51;
			this.notePanel_MilkCharge.TabStop = false;
			this.notePanel_MilkCharge.Text = " 牛奶费:";
			// 
			// notePanel_NightCharge
			// 
			this.notePanel_NightCharge.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_NightCharge.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_NightCharge.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_NightCharge.ForeColor = System.Drawing.Color.Black;
			this.notePanel_NightCharge.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_NightCharge.Location = new System.Drawing.Point(16, 128);
			this.notePanel_NightCharge.MaxRows = 5;
			this.notePanel_NightCharge.Name = "notePanel_NightCharge";
			this.notePanel_NightCharge.ParentAutoHeight = true;
			this.notePanel_NightCharge.Size = new System.Drawing.Size(80, 22);
			this.notePanel_NightCharge.TabIndex = 50;
			this.notePanel_NightCharge.TabStop = false;
			this.notePanel_NightCharge.Text = " 晚托费:";
			// 
			// textEdit_AdmCharge
			// 
			this.textEdit_AdmCharge.EditValue = "";
			this.textEdit_AdmCharge.Location = new System.Drawing.Point(104, 104);
			this.textEdit_AdmCharge.Name = "textEdit_AdmCharge";
			this.textEdit_AdmCharge.Size = new System.Drawing.Size(72, 23);
			this.textEdit_AdmCharge.TabIndex = 49;
			// 
			// notePanel_AdmCharge
			// 
			this.notePanel_AdmCharge.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_AdmCharge.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_AdmCharge.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_AdmCharge.ForeColor = System.Drawing.Color.Black;
			this.notePanel_AdmCharge.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_AdmCharge.Location = new System.Drawing.Point(16, 104);
			this.notePanel_AdmCharge.MaxRows = 5;
			this.notePanel_AdmCharge.Name = "notePanel_AdmCharge";
			this.notePanel_AdmCharge.ParentAutoHeight = true;
			this.notePanel_AdmCharge.Size = new System.Drawing.Size(80, 22);
			this.notePanel_AdmCharge.TabIndex = 48;
			this.notePanel_AdmCharge.TabStop = false;
			this.notePanel_AdmCharge.Text = " 管理费:";
			// 
			// textEdit_MessCharge
			// 
			this.textEdit_MessCharge.EditValue = "";
			this.textEdit_MessCharge.Location = new System.Drawing.Point(104, 80);
			this.textEdit_MessCharge.Name = "textEdit_MessCharge";
			this.textEdit_MessCharge.Size = new System.Drawing.Size(72, 23);
			this.textEdit_MessCharge.TabIndex = 47;
			// 
			// notePanel_MessCharge
			// 
			this.notePanel_MessCharge.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_MessCharge.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_MessCharge.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_MessCharge.ForeColor = System.Drawing.Color.Black;
			this.notePanel_MessCharge.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_MessCharge.Location = new System.Drawing.Point(16, 80);
			this.notePanel_MessCharge.MaxRows = 5;
			this.notePanel_MessCharge.Name = "notePanel_MessCharge";
			this.notePanel_MessCharge.ParentAutoHeight = true;
			this.notePanel_MessCharge.Size = new System.Drawing.Size(80, 22);
			this.notePanel_MessCharge.TabIndex = 46;
			this.notePanel_MessCharge.TabStop = false;
			this.notePanel_MessCharge.Text = " 伙食费:";
			// 
			// textEdit_AdmRestoreDays
			// 
			this.textEdit_AdmRestoreDays.EditValue = "";
			this.textEdit_AdmRestoreDays.Location = new System.Drawing.Point(104, 56);
			this.textEdit_AdmRestoreDays.Name = "textEdit_AdmRestoreDays";
			this.textEdit_AdmRestoreDays.Size = new System.Drawing.Size(72, 23);
			this.textEdit_AdmRestoreDays.TabIndex = 45;
			// 
			// notePanel_AdmRestoreDays
			// 
			this.notePanel_AdmRestoreDays.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_AdmRestoreDays.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_AdmRestoreDays.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_AdmRestoreDays.ForeColor = System.Drawing.Color.Black;
			this.notePanel_AdmRestoreDays.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_AdmRestoreDays.Location = new System.Drawing.Point(16, 56);
			this.notePanel_AdmRestoreDays.MaxRows = 5;
			this.notePanel_AdmRestoreDays.Name = "notePanel_AdmRestoreDays";
			this.notePanel_AdmRestoreDays.ParentAutoHeight = true;
			this.notePanel_AdmRestoreDays.Size = new System.Drawing.Size(80, 22);
			this.notePanel_AdmRestoreDays.TabIndex = 44;
			this.notePanel_AdmRestoreDays.TabStop = false;
			this.notePanel_AdmRestoreDays.Text = "退管天数:";
			// 
			// textEdit_MessRestoreDays
			// 
			this.textEdit_MessRestoreDays.EditValue = "";
			this.textEdit_MessRestoreDays.Location = new System.Drawing.Point(104, 32);
			this.textEdit_MessRestoreDays.Name = "textEdit_MessRestoreDays";
			this.textEdit_MessRestoreDays.Size = new System.Drawing.Size(72, 23);
			this.textEdit_MessRestoreDays.TabIndex = 43;
			// 
			// notePanel_MessRestoreDays
			// 
			this.notePanel_MessRestoreDays.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_MessRestoreDays.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_MessRestoreDays.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_MessRestoreDays.ForeColor = System.Drawing.Color.Black;
			this.notePanel_MessRestoreDays.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_MessRestoreDays.Location = new System.Drawing.Point(16, 32);
			this.notePanel_MessRestoreDays.MaxRows = 5;
			this.notePanel_MessRestoreDays.Name = "notePanel_MessRestoreDays";
			this.notePanel_MessRestoreDays.ParentAutoHeight = true;
			this.notePanel_MessRestoreDays.Size = new System.Drawing.Size(80, 22);
			this.notePanel_MessRestoreDays.TabIndex = 42;
			this.notePanel_MessRestoreDays.TabStop = false;
			this.notePanel_MessRestoreDays.Text = "退伙天数:";
			// 
			// groupControl_FinanInfo
			// 
			this.groupControl_FinanInfo.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.groupControl_FinanInfo.AppearanceCaption.Options.UseFont = true;
			this.groupControl_FinanInfo.Controls.Add(this.memoEdit_Remark);
			this.groupControl_FinanInfo.Controls.Add(this.textEdit_ExtraCharge);
			this.groupControl_FinanInfo.Controls.Add(this.notePanel_ExtraCharge);
			this.groupControl_FinanInfo.Controls.Add(this.notePanel_CommCharge);
			this.groupControl_FinanInfo.Controls.Add(this.textEdit_CommCharge);
			this.groupControl_FinanInfo.Controls.Add(this.textEdit_MilkCharge);
			this.groupControl_FinanInfo.Controls.Add(this.textEdit_NightCharge);
			this.groupControl_FinanInfo.Controls.Add(this.notePanel_MilkCharge);
			this.groupControl_FinanInfo.Controls.Add(this.notePanel_NightCharge);
			this.groupControl_FinanInfo.Controls.Add(this.textEdit_AdmCharge);
			this.groupControl_FinanInfo.Controls.Add(this.notePanel_AdmCharge);
			this.groupControl_FinanInfo.Controls.Add(this.textEdit_MessCharge);
			this.groupControl_FinanInfo.Controls.Add(this.notePanel_MessCharge);
			this.groupControl_FinanInfo.Controls.Add(this.textEdit_AdmRestoreDays);
			this.groupControl_FinanInfo.Controls.Add(this.notePanel_AdmRestoreDays);
			this.groupControl_FinanInfo.Controls.Add(this.textEdit_MessRestoreDays);
			this.groupControl_FinanInfo.Controls.Add(this.notePanel_MessRestoreDays);
			this.groupControl_FinanInfo.Dock = System.Windows.Forms.DockStyle.Fill;
			this.groupControl_FinanInfo.Location = new System.Drawing.Point(0, 232);
			this.groupControl_FinanInfo.Name = "groupControl_FinanInfo";
			this.groupControl_FinanInfo.Size = new System.Drawing.Size(192, 277);
			this.groupControl_FinanInfo.TabIndex = 2;
			this.groupControl_FinanInfo.Text = "财务信息";
			// 
			// barManager1
			// 
			this.barManager1.DockControls.Add(this.barDockControlTop);
			this.barManager1.DockControls.Add(this.barDockControlBottom);
			this.barManager1.DockControls.Add(this.barDockControlLeft);
			this.barManager1.DockControls.Add(this.barDockControlRight);
			this.barManager1.Form = this;
			this.barManager1.MaxItemId = 0;
			// 
			// FinanManagement2
			// 
			this.Appearance.BackColor = System.Drawing.Color.WhiteSmoke;
			this.Appearance.Options.UseBackColor = true;
			this.Controls.Add(this.xtraTabControl1);
			this.Controls.Add(this.barDockControlLeft);
			this.Controls.Add(this.barDockControlRight);
			this.Controls.Add(this.barDockControlBottom);
			this.Controls.Add(this.barDockControlTop);
			this.Name = "FinanManagement2";
			this.Size = new System.Drawing.Size(772, 540);
			((System.ComponentModel.ISupportInitialize)(this.xtraTabControl1)).EndInit();
			this.xtraTabControl1.ResumeLayout(false);
			this.xtraTabPage1.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.splitContainerControl1)).EndInit();
			this.splitContainerControl1.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
			this.groupControl1.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.radioGroup_mode.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_template.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_FinanQuery)).EndInit();
			this.groupControl_FinanQuery.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.dateEdit_BalanceMonth.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_Class.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_Grade.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.gridControl1)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.gridView2)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.panelControl2)).EndInit();
			this.panelControl2.ResumeLayout(false);
			this.xtraTabPage2.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.splitContainerControl2)).EndInit();
			this.splitContainerControl2.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.groupControl2)).EndInit();
			this.groupControl2.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_template2.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.dateEdit_BalanceMonth2.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_class2.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_grade2.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.gridControl2)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
			this.panelControl1.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.memoEdit_Remark.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_ExtraCharge.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_CommCharge.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MilkCharge.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_NightCharge.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_AdmCharge.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MessCharge.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_AdmRestoreDays.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MessRestoreDays.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_FinanInfo)).EndInit();
			this.groupControl_FinanInfo.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.barManager1)).EndInit();
			this.ResumeLayout(false);

		}
示例#36
0
		/// <summary> 
		/// Required method for Designer support - do not modify 
		/// the contents of this method with the code editor.
		/// </summary>
		private void InitializeComponent()
		{
			System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(TeacherBaseInfo));
			this.xtraTabControl_TeaBaseInfo = new DevExpress.XtraTab.XtraTabControl();
			this.xtraTabPage_TeaBaseInfoMgmt = new DevExpress.XtraTab.XtraTabPage();
			this.splitContainerControl1 = new DevExpress.XtraEditors.SplitContainerControl();
			this.gridControl1 = new DevExpress.XtraGrid.GridControl();
			this.gridView1 = new DevExpress.XtraGrid.Views.Grid.GridView();
			this.gridColumn1 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn2 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn3 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.groupControl1 = new DevExpress.XtraEditors.GroupControl();
			this.dataNavigator1 = new DevExpress.XtraEditors.DataNavigator();
			this.textEdit_Number = new DevExpress.XtraEditors.TextEdit();
			this.textEdit_Name = new DevExpress.XtraEditors.TextEdit();
			this.notePanel_Number = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_Name = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel1 = new DevExpress.Utils.Frames.NotePanel();
			this.comboBoxEdit_Class = new DevExpress.XtraEditors.ComboBoxEdit();
			this.notePanel_Class = new DevExpress.Utils.Frames.NotePanel();
			this.comboBoxEdit_Grade = new DevExpress.XtraEditors.ComboBoxEdit();
			this.notePanel_Grade = new DevExpress.Utils.Frames.NotePanel();
			this.groupControl3 = new DevExpress.XtraEditors.GroupControl();
			this.label4 = new System.Windows.Forms.Label();
			this.label3 = new System.Windows.Forms.Label();
			this.tTechnicalPost = new DevExpress.XtraEditors.ComboBoxEdit();
			this.tLevel = new DevExpress.XtraEditors.ComboBoxEdit();
			this.notePanel15 = new DevExpress.Utils.Frames.NotePanel();
			this.tJoinDate = new DevExpress.XtraEditors.DateEdit();
			this.tEnterTime = new DevExpress.XtraEditors.DateEdit();
			this.notePanel14 = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel13 = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel9 = new DevExpress.Utils.Frames.NotePanel();
			this.tDuty = new DevExpress.XtraEditors.ComboBoxEdit();
			this.notePanel8 = new DevExpress.Utils.Frames.NotePanel();
			this.tDept = new DevExpress.XtraEditors.ComboBoxEdit();
			this.notePanel4 = new DevExpress.Utils.Frames.NotePanel();
			this.textEdit_tID = new DevExpress.XtraEditors.TextEdit();
			this.groupControl2 = new DevExpress.XtraEditors.GroupControl();
			this.label2 = new System.Windows.Forms.Label();
			this.label_ReqOfKidName = new System.Windows.Forms.Label();
			this.pictureEdit_LoadImageData = new DevExpress.XtraEditors.PictureEdit();
			this.tAddr = new DevExpress.XtraEditors.TextEdit();
			this.notePanel12 = new DevExpress.Utils.Frames.NotePanel();
			this.tRecord = new DevExpress.XtraEditors.ComboBoxEdit();
			this.notePanel11 = new DevExpress.Utils.Frames.NotePanel();
			this.tSex = new DevExpress.XtraEditors.ComboBoxEdit();
			this.notePanel10 = new DevExpress.Utils.Frames.NotePanel();
			this.tWorkPhone = new DevExpress.XtraEditors.TextEdit();
			this.notePanel7 = new DevExpress.Utils.Frames.NotePanel();
			this.tPhone = new DevExpress.XtraEditors.TextEdit();
			this.notePanel6 = new DevExpress.Utils.Frames.NotePanel();
			this.tHomePhone = new DevExpress.XtraEditors.TextEdit();
			this.notePanel5 = new DevExpress.Utils.Frames.NotePanel();
			this.textEdit_UserPwd = new DevExpress.XtraEditors.TextEdit();
			this.tNumber = new DevExpress.XtraEditors.TextEdit();
			this.tName = new DevExpress.XtraEditors.TextEdit();
			this.notePanel3 = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel2 = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_KidName = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_KidBaseInfoTitle = new DevExpress.Utils.Frames.NotePanel();
			this.comboBoxEdit_Privilege = new DevExpress.XtraEditors.ComboBoxEdit();
			this.notePanel16 = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel17 = new DevExpress.Utils.Frames.NotePanel();
			this.tMarrige = new DevExpress.XtraEditors.ComboBoxEdit();
			this.panelControl1 = new DevExpress.XtraEditors.PanelControl();
			this.simpleButton_WriteButton = new DevExpress.XtraEditors.SimpleButton();
			this.simpleButton_SaveButton = new DevExpress.XtraEditors.SimpleButton();
			this.simpleButton_ModifyButton = new DevExpress.XtraEditors.SimpleButton();
			this.simpleButton_NewFile = new DevExpress.XtraEditors.SimpleButton();
			this.notePanel_TeaBaseInfoTitle = new DevExpress.Utils.Frames.NotePanel();
			this.barManager1 = new DevExpress.XtraBars.BarManager();
			this.popupMenu1 = new DevExpress.XtraBars.PopupMenu();
			this.barButtonItem_TeaInfo_Refresh = new DevExpress.XtraBars.BarButtonItem();
			this.popupMenu2 = new DevExpress.XtraBars.PopupMenu();
			this.barButtonItem_TeaInfo_LoadPic = new DevExpress.XtraBars.BarButtonItem();
			this.barButtonItem_TeaInfo_DeletePic = new DevExpress.XtraBars.BarButtonItem();
			this.barDockControlTop = new DevExpress.XtraBars.BarDockControl();
			this.barDockControlBottom = new DevExpress.XtraBars.BarDockControl();
			this.barDockControlLeft = new DevExpress.XtraBars.BarDockControl();
			this.barDockControlRight = new DevExpress.XtraBars.BarDockControl();
			this.barButtonItem1 = new DevExpress.XtraBars.BarButtonItem();
			this.openFileDialog_ChooseImg = new System.Windows.Forms.OpenFileDialog();
			this.saveFileDialog_Report = new System.Windows.Forms.SaveFileDialog();
			this.helpProvider_Help = new System.Windows.Forms.HelpProvider();
			((System.ComponentModel.ISupportInitialize)(this.xtraTabControl_TeaBaseInfo)).BeginInit();
			this.xtraTabControl_TeaBaseInfo.SuspendLayout();
			this.xtraTabPage_TeaBaseInfoMgmt.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.splitContainerControl1)).BeginInit();
			this.splitContainerControl1.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.gridControl1)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
			this.groupControl1.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_Number.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_Name.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_Class.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_Grade.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl3)).BeginInit();
			this.groupControl3.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.tTechnicalPost.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.tLevel.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.tJoinDate.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.tEnterTime.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.tDuty.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.tDept.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_tID.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl2)).BeginInit();
			this.groupControl2.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.pictureEdit_LoadImageData.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.tAddr.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.tRecord.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.tSex.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.tWorkPhone.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.tPhone.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.tHomePhone.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_UserPwd.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.tNumber.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.tName.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_Privilege.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.tMarrige.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
			this.panelControl1.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.barManager1)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.popupMenu1)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.popupMenu2)).BeginInit();
			this.SuspendLayout();
			// 
			// xtraTabControl_TeaBaseInfo
			// 
			this.xtraTabControl_TeaBaseInfo.Appearance.BackColor = System.Drawing.Color.WhiteSmoke;
			this.xtraTabControl_TeaBaseInfo.Appearance.Options.UseBackColor = true;
			this.xtraTabControl_TeaBaseInfo.AppearancePage.HeaderActive.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
			this.xtraTabControl_TeaBaseInfo.AppearancePage.HeaderActive.ForeColor = System.Drawing.Color.DarkOrange;
			this.xtraTabControl_TeaBaseInfo.AppearancePage.HeaderActive.Options.UseFont = true;
			this.xtraTabControl_TeaBaseInfo.AppearancePage.HeaderActive.Options.UseForeColor = true;
			this.xtraTabControl_TeaBaseInfo.Controls.Add(this.xtraTabPage_TeaBaseInfoMgmt);
			this.xtraTabControl_TeaBaseInfo.Dock = System.Windows.Forms.DockStyle.Fill;
			this.helpProvider_Help.SetHelpKeyword(this.xtraTabControl_TeaBaseInfo, "教师基本信息管理");
			this.helpProvider_Help.SetHelpNavigator(this.xtraTabControl_TeaBaseInfo, System.Windows.Forms.HelpNavigator.KeywordIndex);
			this.helpProvider_Help.SetHelpString(this.xtraTabControl_TeaBaseInfo, "");
			this.xtraTabControl_TeaBaseInfo.Location = new System.Drawing.Point(0, 0);
			this.xtraTabControl_TeaBaseInfo.Name = "xtraTabControl_TeaBaseInfo";
			this.xtraTabControl_TeaBaseInfo.SelectedTabPage = this.xtraTabPage_TeaBaseInfoMgmt;
			this.helpProvider_Help.SetShowHelp(this.xtraTabControl_TeaBaseInfo, true);
			this.xtraTabControl_TeaBaseInfo.Size = new System.Drawing.Size(772, 540);
			this.xtraTabControl_TeaBaseInfo.TabIndex = 0;
			this.xtraTabControl_TeaBaseInfo.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
																									   this.xtraTabPage_TeaBaseInfoMgmt});
			this.xtraTabControl_TeaBaseInfo.Text = "基本信息管理";
			// 
			// xtraTabPage_TeaBaseInfoMgmt
			// 
			this.xtraTabPage_TeaBaseInfoMgmt.Appearance.PageClient.BackColor = System.Drawing.Color.WhiteSmoke;
			this.xtraTabPage_TeaBaseInfoMgmt.Appearance.PageClient.Options.UseBackColor = true;
			this.xtraTabPage_TeaBaseInfoMgmt.Controls.Add(this.splitContainerControl1);
			this.xtraTabPage_TeaBaseInfoMgmt.Controls.Add(this.notePanel_TeaBaseInfoTitle);
			this.xtraTabPage_TeaBaseInfoMgmt.Name = "xtraTabPage_TeaBaseInfoMgmt";
			this.xtraTabPage_TeaBaseInfoMgmt.Size = new System.Drawing.Size(768, 515);
			this.xtraTabPage_TeaBaseInfoMgmt.Text = "基本信息管理";
			// 
			// splitContainerControl1
			// 
			this.splitContainerControl1.Dock = System.Windows.Forms.DockStyle.Fill;
			this.splitContainerControl1.Location = new System.Drawing.Point(0, 23);
			this.splitContainerControl1.Name = "splitContainerControl1";
			this.splitContainerControl1.Panel1.Controls.Add(this.gridControl1);
			this.splitContainerControl1.Panel1.Controls.Add(this.groupControl1);
			this.splitContainerControl1.Panel1.Text = "splitContainerControl1_Panel1";
			this.splitContainerControl1.Panel2.Controls.Add(this.groupControl3);
			this.splitContainerControl1.Panel2.Controls.Add(this.groupControl2);
			this.splitContainerControl1.Panel2.Controls.Add(this.panelControl1);
			this.splitContainerControl1.Panel2.Text = "splitContainerControl1_Panel2";
			this.splitContainerControl1.Size = new System.Drawing.Size(768, 492);
			this.splitContainerControl1.SplitterPosition = 200;
			this.splitContainerControl1.TabIndex = 4;
			this.splitContainerControl1.Text = "splitContainerControl1";
			// 
			// gridControl1
			// 
			this.gridControl1.Dock = System.Windows.Forms.DockStyle.Fill;
			// 
			// gridControl1.EmbeddedNavigator
			// 
			this.gridControl1.EmbeddedNavigator.Name = "";
			this.gridControl1.Location = new System.Drawing.Point(0, 224);
			this.gridControl1.MainView = this.gridView1;
			this.gridControl1.Name = "gridControl1";
			this.barManager1.SetPopupContextMenu(this.gridControl1, this.popupMenu1);
			this.gridControl1.Size = new System.Drawing.Size(194, 262);
			this.gridControl1.TabIndex = 1;
			this.gridControl1.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
																										this.gridView1});
			// 
			// gridView1
			// 
			this.gridView1.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
																							 this.gridColumn1,
																							 this.gridColumn2,
																							 this.gridColumn3});
			this.gridView1.GridControl = this.gridControl1;
			this.gridView1.Name = "gridView1";
			this.gridView1.OptionsCustomization.AllowFilter = false;
			this.gridView1.OptionsView.ShowFilterPanel = false;
			this.gridView1.OptionsView.ShowGroupPanel = false;
			this.gridView1.FocusedRowChanged += new DevExpress.XtraGrid.Views.Base.FocusedRowChangedEventHandler(this.gridView1_FocusedRowChanged);
			// 
			// gridColumn1
			// 
			this.gridColumn1.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn1.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn1.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn1.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn1.Caption = "工号";
			this.gridColumn1.FieldName = "T_Number";
			this.gridColumn1.Name = "gridColumn1";
			this.gridColumn1.OptionsColumn.AllowEdit = false;
			this.gridColumn1.OptionsColumn.AllowFocus = false;
			this.gridColumn1.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn1.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn1.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn1.OptionsColumn.AllowMove = false;
			this.gridColumn1.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn1.OptionsColumn.FixedWidth = true;
			this.gridColumn1.OptionsColumn.ReadOnly = true;
			this.gridColumn1.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn1.Visible = true;
			this.gridColumn1.VisibleIndex = 0;
			// 
			// gridColumn2
			// 
			this.gridColumn2.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn2.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn2.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn2.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn2.Caption = "姓名";
			this.gridColumn2.FieldName = "T_Name";
			this.gridColumn2.Name = "gridColumn2";
			this.gridColumn2.OptionsColumn.AllowEdit = false;
			this.gridColumn2.OptionsColumn.AllowFocus = false;
			this.gridColumn2.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn2.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn2.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn2.OptionsColumn.AllowMove = false;
			this.gridColumn2.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn2.OptionsColumn.FixedWidth = true;
			this.gridColumn2.OptionsColumn.ReadOnly = true;
			this.gridColumn2.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn2.Visible = true;
			this.gridColumn2.VisibleIndex = 1;
			// 
			// gridColumn3
			// 
			this.gridColumn3.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn3.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn3.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn3.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn3.Caption = "岗位";
			this.gridColumn3.FieldName = "T_Duty";
			this.gridColumn3.Name = "gridColumn3";
			this.gridColumn3.OptionsColumn.AllowEdit = false;
			this.gridColumn3.OptionsColumn.AllowFocus = false;
			this.gridColumn3.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn3.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn3.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn3.OptionsColumn.AllowMove = false;
			this.gridColumn3.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn3.OptionsColumn.FixedWidth = true;
			this.gridColumn3.OptionsColumn.ReadOnly = true;
			this.gridColumn3.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn3.Visible = true;
			this.gridColumn3.VisibleIndex = 2;
			// 
			// groupControl1
			// 
			this.groupControl1.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.groupControl1.AppearanceCaption.Options.UseFont = true;
			this.groupControl1.Controls.Add(this.dataNavigator1);
			this.groupControl1.Controls.Add(this.textEdit_Number);
			this.groupControl1.Controls.Add(this.textEdit_Name);
			this.groupControl1.Controls.Add(this.notePanel_Number);
			this.groupControl1.Controls.Add(this.notePanel_Name);
			this.groupControl1.Controls.Add(this.notePanel1);
			this.groupControl1.Controls.Add(this.comboBoxEdit_Class);
			this.groupControl1.Controls.Add(this.notePanel_Class);
			this.groupControl1.Controls.Add(this.comboBoxEdit_Grade);
			this.groupControl1.Controls.Add(this.notePanel_Grade);
			this.groupControl1.Dock = System.Windows.Forms.DockStyle.Top;
			this.groupControl1.Location = new System.Drawing.Point(0, 0);
			this.groupControl1.Name = "groupControl1";
			this.groupControl1.Size = new System.Drawing.Size(194, 224);
			this.groupControl1.TabIndex = 0;
			this.groupControl1.Text = "本园教师";
			// 
			// dataNavigator1
			// 
			this.dataNavigator1.Buttons.Append.Visible = false;
			this.dataNavigator1.Buttons.CancelEdit.Visible = false;
			this.dataNavigator1.Buttons.EndEdit.Visible = false;
			this.dataNavigator1.Buttons.First.Hint = "第一条记录";
			this.dataNavigator1.Buttons.Last.Hint = "最后一条记录";
			this.dataNavigator1.Buttons.Next.Hint = "下一条记录";
			this.dataNavigator1.Buttons.NextPage.Visible = false;
			this.dataNavigator1.Buttons.Prev.Hint = "上一条记录";
			this.dataNavigator1.Buttons.PrevPage.Visible = false;
			this.dataNavigator1.Buttons.Remove.Visible = false;
			this.dataNavigator1.Dock = System.Windows.Forms.DockStyle.Bottom;
			this.dataNavigator1.Location = new System.Drawing.Point(3, 189);
			this.dataNavigator1.Name = "dataNavigator1";
			this.dataNavigator1.Size = new System.Drawing.Size(188, 32);
			this.dataNavigator1.TabIndex = 35;
			this.dataNavigator1.Text = "dataNavigator1";
			this.dataNavigator1.TextLocation = DevExpress.XtraEditors.NavigatorButtonsTextLocation.End;
			// 
			// textEdit_Number
			// 
			this.textEdit_Number.EditValue = "";
			this.textEdit_Number.Location = new System.Drawing.Point(88, 152);
			this.textEdit_Number.Name = "textEdit_Number";
			this.textEdit_Number.Size = new System.Drawing.Size(79, 23);
			this.textEdit_Number.TabIndex = 34;
			this.textEdit_Number.EditValueChanged += new System.EventHandler(this.textEdit_Number_EditValueChanged);
			// 
			// textEdit_Name
			// 
			this.textEdit_Name.EditValue = "";
			this.textEdit_Name.Location = new System.Drawing.Point(88, 120);
			this.textEdit_Name.Name = "textEdit_Name";
			this.textEdit_Name.Size = new System.Drawing.Size(79, 23);
			this.textEdit_Name.TabIndex = 33;
			this.textEdit_Name.EditValueChanged += new System.EventHandler(this.textEdit_Name_EditValueChanged);
			// 
			// notePanel_Number
			// 
			this.notePanel_Number.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_Number.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_Number.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_Number.ForeColor = System.Drawing.Color.Black;
			this.notePanel_Number.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_Number.Location = new System.Drawing.Point(15, 152);
			this.notePanel_Number.MaxRows = 5;
			this.notePanel_Number.Name = "notePanel_Number";
			this.notePanel_Number.ParentAutoHeight = true;
			this.notePanel_Number.Size = new System.Drawing.Size(65, 22);
			this.notePanel_Number.TabIndex = 32;
			this.notePanel_Number.TabStop = false;
			this.notePanel_Number.Text = "工  号:";
			// 
			// notePanel_Name
			// 
			this.notePanel_Name.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_Name.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_Name.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_Name.ForeColor = System.Drawing.Color.Black;
			this.notePanel_Name.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_Name.Location = new System.Drawing.Point(15, 120);
			this.notePanel_Name.MaxRows = 5;
			this.notePanel_Name.Name = "notePanel_Name";
			this.notePanel_Name.ParentAutoHeight = true;
			this.notePanel_Name.Size = new System.Drawing.Size(65, 22);
			this.notePanel_Name.TabIndex = 31;
			this.notePanel_Name.TabStop = false;
			this.notePanel_Name.Text = "姓  名:";
			// 
			// notePanel1
			// 
			this.notePanel1.BackColor = System.Drawing.Color.LightGoldenrodYellow;
			this.notePanel1.Dock = System.Windows.Forms.DockStyle.Top;
			this.notePanel1.ForeColor = System.Drawing.Color.OrangeRed;
			this.notePanel1.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel1.Location = new System.Drawing.Point(3, 18);
			this.notePanel1.MaxRows = 5;
			this.notePanel1.Name = "notePanel1";
			this.notePanel1.ParentAutoHeight = true;
			this.notePanel1.Size = new System.Drawing.Size(188, 23);
			this.notePanel1.TabIndex = 18;
			this.notePanel1.TabStop = false;
			this.notePanel1.Text = "您要查找哪位教师?";
			// 
			// comboBoxEdit_Class
			// 
			this.comboBoxEdit_Class.EditValue = "全部";
			this.comboBoxEdit_Class.Location = new System.Drawing.Point(88, 88);
			this.comboBoxEdit_Class.Name = "comboBoxEdit_Class";
			// 
			// comboBoxEdit_Class.Properties
			// 
			this.comboBoxEdit_Class.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																													   new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.comboBoxEdit_Class.Properties.Items.AddRange(new object[] {
																			   "全部"});
			this.comboBoxEdit_Class.Size = new System.Drawing.Size(79, 23);
			this.comboBoxEdit_Class.TabIndex = 17;
			this.comboBoxEdit_Class.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit_Class_SelectedIndexChanged);
			// 
			// notePanel_Class
			// 
			this.notePanel_Class.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_Class.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_Class.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_Class.ForeColor = System.Drawing.Color.Black;
			this.notePanel_Class.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_Class.Location = new System.Drawing.Point(17, 88);
			this.notePanel_Class.MaxRows = 5;
			this.notePanel_Class.Name = "notePanel_Class";
			this.notePanel_Class.ParentAutoHeight = true;
			this.notePanel_Class.Size = new System.Drawing.Size(64, 22);
			this.notePanel_Class.TabIndex = 16;
			this.notePanel_Class.TabStop = false;
			this.notePanel_Class.Text = "岗  位:";
			// 
			// comboBoxEdit_Grade
			// 
			this.comboBoxEdit_Grade.EditValue = "全部";
			this.comboBoxEdit_Grade.Location = new System.Drawing.Point(88, 56);
			this.comboBoxEdit_Grade.Name = "comboBoxEdit_Grade";
			// 
			// comboBoxEdit_Grade.Properties
			// 
			this.comboBoxEdit_Grade.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																													   new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.comboBoxEdit_Grade.Properties.Items.AddRange(new object[] {
																			   "全部"});
			this.comboBoxEdit_Grade.Size = new System.Drawing.Size(79, 23);
			this.comboBoxEdit_Grade.TabIndex = 15;
			this.comboBoxEdit_Grade.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit_Grade_SelectedIndexChanged);
			// 
			// notePanel_Grade
			// 
			this.notePanel_Grade.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_Grade.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_Grade.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_Grade.ForeColor = System.Drawing.Color.Black;
			this.notePanel_Grade.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_Grade.Location = new System.Drawing.Point(17, 56);
			this.notePanel_Grade.MaxRows = 5;
			this.notePanel_Grade.Name = "notePanel_Grade";
			this.notePanel_Grade.ParentAutoHeight = true;
			this.notePanel_Grade.Size = new System.Drawing.Size(64, 22);
			this.notePanel_Grade.TabIndex = 14;
			this.notePanel_Grade.TabStop = false;
			this.notePanel_Grade.Text = "部  门:";
			// 
			// groupControl3
			// 
			this.groupControl3.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.groupControl3.AppearanceCaption.Options.UseFont = true;
			this.groupControl3.Controls.Add(this.label4);
			this.groupControl3.Controls.Add(this.label3);
			this.groupControl3.Controls.Add(this.tTechnicalPost);
			this.groupControl3.Controls.Add(this.tLevel);
			this.groupControl3.Controls.Add(this.notePanel15);
			this.groupControl3.Controls.Add(this.tJoinDate);
			this.groupControl3.Controls.Add(this.tEnterTime);
			this.groupControl3.Controls.Add(this.notePanel14);
			this.groupControl3.Controls.Add(this.notePanel13);
			this.groupControl3.Controls.Add(this.notePanel9);
			this.groupControl3.Controls.Add(this.tDuty);
			this.groupControl3.Controls.Add(this.notePanel8);
			this.groupControl3.Controls.Add(this.tDept);
			this.groupControl3.Controls.Add(this.notePanel4);
			this.groupControl3.Controls.Add(this.textEdit_tID);
			this.groupControl3.Dock = System.Windows.Forms.DockStyle.Top;
			this.groupControl3.Location = new System.Drawing.Point(0, 296);
			this.groupControl3.Name = "groupControl3";
			this.groupControl3.Size = new System.Drawing.Size(558, 176);
			this.groupControl3.TabIndex = 2;
			this.groupControl3.Text = "教师工作信息";
			// 
			// label4
			// 
			this.label4.BackColor = System.Drawing.Color.Transparent;
			this.label4.ForeColor = System.Drawing.Color.Red;
			this.label4.Location = new System.Drawing.Point(48, 76);
			this.label4.Name = "label4";
			this.label4.Size = new System.Drawing.Size(16, 16);
			this.label4.TabIndex = 55;
			this.label4.Text = "*";
			this.label4.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			// 
			// label3
			// 
			this.label3.BackColor = System.Drawing.Color.Transparent;
			this.label3.ForeColor = System.Drawing.Color.Red;
			this.label3.Location = new System.Drawing.Point(48, 36);
			this.label3.Name = "label3";
			this.label3.Size = new System.Drawing.Size(16, 16);
			this.label3.TabIndex = 54;
			this.label3.Text = "*";
			this.label3.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			// 
			// tTechnicalPost
			// 
			this.tTechnicalPost.EditValue = "中级职称";
			this.tTechnicalPost.Location = new System.Drawing.Point(160, 112);
			this.tTechnicalPost.Name = "tTechnicalPost";
			// 
			// tTechnicalPost.Properties
			// 
			this.tTechnicalPost.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																												   new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.tTechnicalPost.Properties.Items.AddRange(new object[] {
																		   "中级职称",
																		   "高级职称"});
			this.tTechnicalPost.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
			this.tTechnicalPost.Size = new System.Drawing.Size(88, 23);
			this.tTechnicalPost.TabIndex = 53;
			// 
			// tLevel
			// 
			this.tLevel.EditValue = "一级教师";
			this.tLevel.Location = new System.Drawing.Point(400, 32);
			this.tLevel.Name = "tLevel";
			// 
			// tLevel.Properties
			// 
			this.tLevel.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																										   new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.tLevel.Properties.Items.AddRange(new object[] {
																   "一级教师",
																   "二级教师",
																   "三级教师",
																   "特级教师"});
			this.tLevel.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
			this.tLevel.Size = new System.Drawing.Size(88, 23);
			this.tLevel.TabIndex = 52;
			// 
			// notePanel15
			// 
			this.notePanel15.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel15.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel15.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel15.ForeColor = System.Drawing.Color.Black;
			this.notePanel15.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel15.Location = new System.Drawing.Point(280, 32);
			this.notePanel15.MaxRows = 5;
			this.notePanel15.Name = "notePanel15";
			this.notePanel15.ParentAutoHeight = true;
			this.notePanel15.Size = new System.Drawing.Size(104, 22);
			this.notePanel15.TabIndex = 51;
			this.notePanel15.TabStop = false;
			this.notePanel15.Text = "   教师等级:";
			// 
			// tJoinDate
			// 
			this.tJoinDate.EditValue = new System.DateTime(2005, 5, 21, 0, 0, 0, 0);
			this.tJoinDate.Location = new System.Drawing.Point(400, 72);
			this.tJoinDate.Name = "tJoinDate";
			// 
			// tJoinDate.Properties
			// 
			this.tJoinDate.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																											  new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.tJoinDate.Properties.Mask.EditMask = "d";
			this.tJoinDate.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.DateTime;
			this.tJoinDate.Size = new System.Drawing.Size(88, 23);
			this.tJoinDate.TabIndex = 50;
			// 
			// tEnterTime
			// 
			this.tEnterTime.EditValue = new System.DateTime(2005, 5, 21, 0, 0, 0, 0);
			this.tEnterTime.Location = new System.Drawing.Point(400, 112);
			this.tEnterTime.Name = "tEnterTime";
			// 
			// tEnterTime.Properties
			// 
			this.tEnterTime.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																											   new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.tEnterTime.Properties.Mask.EditMask = "d";
			this.tEnterTime.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.DateTime;
			this.tEnterTime.Size = new System.Drawing.Size(88, 23);
			this.tEnterTime.TabIndex = 49;
			// 
			// notePanel14
			// 
			this.notePanel14.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel14.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel14.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel14.ForeColor = System.Drawing.Color.Black;
			this.notePanel14.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel14.Location = new System.Drawing.Point(280, 112);
			this.notePanel14.MaxRows = 5;
			this.notePanel14.Name = "notePanel14";
			this.notePanel14.ParentAutoHeight = true;
			this.notePanel14.Size = new System.Drawing.Size(104, 22);
			this.notePanel14.TabIndex = 48;
			this.notePanel14.TabStop = false;
			this.notePanel14.Text = "   入园时间:";
			// 
			// notePanel13
			// 
			this.notePanel13.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel13.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel13.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel13.ForeColor = System.Drawing.Color.Black;
			this.notePanel13.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel13.Location = new System.Drawing.Point(280, 72);
			this.notePanel13.MaxRows = 5;
			this.notePanel13.Name = "notePanel13";
			this.notePanel13.ParentAutoHeight = true;
			this.notePanel13.Size = new System.Drawing.Size(104, 22);
			this.notePanel13.TabIndex = 47;
			this.notePanel13.TabStop = false;
			this.notePanel13.Text = "参加工作时间:";
			// 
			// notePanel9
			// 
			this.notePanel9.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel9.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel9.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel9.ForeColor = System.Drawing.Color.Black;
			this.notePanel9.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel9.Location = new System.Drawing.Point(72, 112);
			this.notePanel9.MaxRows = 5;
			this.notePanel9.Name = "notePanel9";
			this.notePanel9.ParentAutoHeight = true;
			this.notePanel9.Size = new System.Drawing.Size(80, 22);
			this.notePanel9.TabIndex = 45;
			this.notePanel9.TabStop = false;
			this.notePanel9.Text = "  职  称:";
			// 
			// tDuty
			// 
			this.tDuty.EditValue = "";
			this.tDuty.Location = new System.Drawing.Point(160, 72);
			this.tDuty.Name = "tDuty";
			// 
			// tDuty.Properties
			// 
			this.tDuty.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																										  new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.tDuty.Size = new System.Drawing.Size(88, 23);
			this.tDuty.TabIndex = 44;
			// 
			// notePanel8
			// 
			this.notePanel8.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel8.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel8.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel8.ForeColor = System.Drawing.Color.Black;
			this.notePanel8.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel8.Location = new System.Drawing.Point(72, 72);
			this.notePanel8.MaxRows = 5;
			this.notePanel8.Name = "notePanel8";
			this.notePanel8.ParentAutoHeight = true;
			this.notePanel8.Size = new System.Drawing.Size(80, 22);
			this.notePanel8.TabIndex = 43;
			this.notePanel8.TabStop = false;
			this.notePanel8.Text = "  岗  位:";
			// 
			// tDept
			// 
			this.tDept.EditValue = "";
			this.tDept.Location = new System.Drawing.Point(160, 32);
			this.tDept.Name = "tDept";
			// 
			// tDept.Properties
			// 
			this.tDept.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																										  new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.tDept.Size = new System.Drawing.Size(88, 23);
			this.tDept.TabIndex = 26;
			this.tDept.SelectedIndexChanged += new System.EventHandler(this.tDept_SelectedIndexChanged);
			// 
			// notePanel4
			// 
			this.notePanel4.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel4.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel4.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel4.ForeColor = System.Drawing.Color.Black;
			this.notePanel4.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel4.Location = new System.Drawing.Point(72, 32);
			this.notePanel4.MaxRows = 5;
			this.notePanel4.Name = "notePanel4";
			this.notePanel4.ParentAutoHeight = true;
			this.notePanel4.Size = new System.Drawing.Size(80, 22);
			this.notePanel4.TabIndex = 25;
			this.notePanel4.TabStop = false;
			this.notePanel4.Text = "所属部门:";
			// 
			// textEdit_tID
			// 
			this.textEdit_tID.EditValue = "textEdit1";
			this.textEdit_tID.Location = new System.Drawing.Point(376, 40);
			this.textEdit_tID.Name = "textEdit_tID";
			// 
			// textEdit_tID.Properties
			// 
			this.textEdit_tID.Properties.AutoHeight = false;
			this.textEdit_tID.Size = new System.Drawing.Size(8, 8);
			this.textEdit_tID.TabIndex = 52;
			// 
			// groupControl2
			// 
			this.groupControl2.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.groupControl2.AppearanceCaption.Options.UseFont = true;
			this.groupControl2.Controls.Add(this.label2);
			this.groupControl2.Controls.Add(this.label_ReqOfKidName);
			this.groupControl2.Controls.Add(this.pictureEdit_LoadImageData);
			this.groupControl2.Controls.Add(this.tAddr);
			this.groupControl2.Controls.Add(this.notePanel12);
			this.groupControl2.Controls.Add(this.tRecord);
			this.groupControl2.Controls.Add(this.notePanel11);
			this.groupControl2.Controls.Add(this.tSex);
			this.groupControl2.Controls.Add(this.notePanel10);
			this.groupControl2.Controls.Add(this.tWorkPhone);
			this.groupControl2.Controls.Add(this.notePanel7);
			this.groupControl2.Controls.Add(this.tPhone);
			this.groupControl2.Controls.Add(this.notePanel6);
			this.groupControl2.Controls.Add(this.tHomePhone);
			this.groupControl2.Controls.Add(this.notePanel5);
			this.groupControl2.Controls.Add(this.textEdit_UserPwd);
			this.groupControl2.Controls.Add(this.tNumber);
			this.groupControl2.Controls.Add(this.tName);
			this.groupControl2.Controls.Add(this.notePanel3);
			this.groupControl2.Controls.Add(this.notePanel2);
			this.groupControl2.Controls.Add(this.notePanel_KidName);
			this.groupControl2.Controls.Add(this.notePanel_KidBaseInfoTitle);
			this.groupControl2.Controls.Add(this.comboBoxEdit_Privilege);
			this.groupControl2.Controls.Add(this.notePanel16);
			this.groupControl2.Controls.Add(this.notePanel17);
			this.groupControl2.Controls.Add(this.tMarrige);
			this.groupControl2.Dock = System.Windows.Forms.DockStyle.Top;
			this.groupControl2.Location = new System.Drawing.Point(0, 40);
			this.groupControl2.Name = "groupControl2";
			this.groupControl2.Size = new System.Drawing.Size(558, 256);
			this.groupControl2.TabIndex = 1;
			this.groupControl2.Text = "教师基本信息";
			// 
			// label2
			// 
			this.label2.BackColor = System.Drawing.Color.Transparent;
			this.label2.ForeColor = System.Drawing.Color.Red;
			this.label2.Location = new System.Drawing.Point(24, 124);
			this.label2.Name = "label2";
			this.label2.Size = new System.Drawing.Size(16, 16);
			this.label2.TabIndex = 51;
			this.label2.Text = "*";
			this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			// 
			// label_ReqOfKidName
			// 
			this.label_ReqOfKidName.BackColor = System.Drawing.Color.Transparent;
			this.label_ReqOfKidName.ForeColor = System.Drawing.Color.Red;
			this.label_ReqOfKidName.Location = new System.Drawing.Point(24, 60);
			this.label_ReqOfKidName.Name = "label_ReqOfKidName";
			this.label_ReqOfKidName.Size = new System.Drawing.Size(16, 16);
			this.label_ReqOfKidName.TabIndex = 49;
			this.label_ReqOfKidName.Text = "*";
			this.label_ReqOfKidName.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			// 
			// pictureEdit_LoadImageData
			// 
			this.pictureEdit_LoadImageData.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("pictureEdit_LoadImageData.BackgroundImage")));
			this.pictureEdit_LoadImageData.Location = new System.Drawing.Point(432, 56);
			this.pictureEdit_LoadImageData.Name = "pictureEdit_LoadImageData";
			this.barManager1.SetPopupContextMenu(this.pictureEdit_LoadImageData, this.popupMenu2);
			// 
			// pictureEdit_LoadImageData.Properties
			// 
			this.pictureEdit_LoadImageData.Properties.Appearance.BackColor = System.Drawing.Color.Transparent;
			this.pictureEdit_LoadImageData.Properties.Appearance.Options.UseBackColor = true;
			this.pictureEdit_LoadImageData.Properties.NullText = "   像素800*600";
			this.pictureEdit_LoadImageData.Properties.ShowMenu = false;
			this.pictureEdit_LoadImageData.Size = new System.Drawing.Size(112, 120);
			this.pictureEdit_LoadImageData.TabIndex = 48;
			// 
			// tAddr
			// 
			this.tAddr.EditValue = "";
			this.tAddr.Location = new System.Drawing.Point(136, 216);
			this.tAddr.Name = "tAddr";
			this.tAddr.Size = new System.Drawing.Size(272, 23);
			this.tAddr.TabIndex = 47;
			// 
			// notePanel12
			// 
			this.notePanel12.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel12.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel12.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel12.ForeColor = System.Drawing.Color.Black;
			this.notePanel12.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel12.Location = new System.Drawing.Point(48, 216);
			this.notePanel12.MaxRows = 5;
			this.notePanel12.Name = "notePanel12";
			this.notePanel12.ParentAutoHeight = true;
			this.notePanel12.Size = new System.Drawing.Size(80, 22);
			this.notePanel12.TabIndex = 46;
			this.notePanel12.TabStop = false;
			this.notePanel12.Text = "  地  址:";
			// 
			// tRecord
			// 
			this.tRecord.EditValue = "本科";
			this.tRecord.Location = new System.Drawing.Point(320, 56);
			this.tRecord.Name = "tRecord";
			// 
			// tRecord.Properties
			// 
			this.tRecord.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																											new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.tRecord.Properties.Items.AddRange(new object[] {
																	"高中",
																	"大专",
																	"本科",
																	"硕士",
																	"博士",
																	"博士后"});
			this.tRecord.Size = new System.Drawing.Size(88, 23);
			this.tRecord.TabIndex = 45;
			// 
			// notePanel11
			// 
			this.notePanel11.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel11.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel11.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel11.ForeColor = System.Drawing.Color.Black;
			this.notePanel11.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel11.Location = new System.Drawing.Point(232, 56);
			this.notePanel11.MaxRows = 5;
			this.notePanel11.Name = "notePanel11";
			this.notePanel11.ParentAutoHeight = true;
			this.notePanel11.Size = new System.Drawing.Size(80, 22);
			this.notePanel11.TabIndex = 44;
			this.notePanel11.TabStop = false;
			this.notePanel11.Text = "  学  历:";
			// 
			// tSex
			// 
			this.tSex.EditValue = "男";
			this.tSex.Location = new System.Drawing.Point(136, 152);
			this.tSex.Name = "tSex";
			// 
			// tSex.Properties
			// 
			this.tSex.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																										 new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.tSex.Properties.Items.AddRange(new object[] {
																 "男",
																 "女"});
			this.tSex.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
			this.tSex.Size = new System.Drawing.Size(80, 23);
			this.tSex.TabIndex = 43;
			// 
			// notePanel10
			// 
			this.notePanel10.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel10.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel10.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel10.ForeColor = System.Drawing.Color.Black;
			this.notePanel10.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel10.Location = new System.Drawing.Point(48, 152);
			this.notePanel10.MaxRows = 5;
			this.notePanel10.Name = "notePanel10";
			this.notePanel10.ParentAutoHeight = true;
			this.notePanel10.Size = new System.Drawing.Size(80, 22);
			this.notePanel10.TabIndex = 42;
			this.notePanel10.TabStop = false;
			this.notePanel10.Text = "  性  别:";
			// 
			// tWorkPhone
			// 
			this.tWorkPhone.EditValue = "";
			this.tWorkPhone.Location = new System.Drawing.Point(320, 152);
			this.tWorkPhone.Name = "tWorkPhone";
			this.tWorkPhone.Size = new System.Drawing.Size(88, 23);
			this.tWorkPhone.TabIndex = 36;
			// 
			// notePanel7
			// 
			this.notePanel7.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel7.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel7.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel7.ForeColor = System.Drawing.Color.Black;
			this.notePanel7.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel7.Location = new System.Drawing.Point(232, 152);
			this.notePanel7.MaxRows = 5;
			this.notePanel7.Name = "notePanel7";
			this.notePanel7.ParentAutoHeight = true;
			this.notePanel7.Size = new System.Drawing.Size(80, 22);
			this.notePanel7.TabIndex = 35;
			this.notePanel7.TabStop = false;
			this.notePanel7.Text = "办公电话:";
			// 
			// tPhone
			// 
			this.tPhone.EditValue = "";
			this.tPhone.Location = new System.Drawing.Point(320, 120);
			this.tPhone.Name = "tPhone";
			this.tPhone.Size = new System.Drawing.Size(88, 23);
			this.tPhone.TabIndex = 34;
			// 
			// notePanel6
			// 
			this.notePanel6.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel6.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel6.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel6.ForeColor = System.Drawing.Color.Black;
			this.notePanel6.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel6.Location = new System.Drawing.Point(232, 120);
			this.notePanel6.MaxRows = 5;
			this.notePanel6.Name = "notePanel6";
			this.notePanel6.ParentAutoHeight = true;
			this.notePanel6.Size = new System.Drawing.Size(80, 22);
			this.notePanel6.TabIndex = 33;
			this.notePanel6.TabStop = false;
			this.notePanel6.Text = "手机号码:";
			// 
			// tHomePhone
			// 
			this.tHomePhone.EditValue = "";
			this.tHomePhone.Location = new System.Drawing.Point(320, 88);
			this.tHomePhone.Name = "tHomePhone";
			this.tHomePhone.Size = new System.Drawing.Size(88, 23);
			this.tHomePhone.TabIndex = 32;
			// 
			// notePanel5
			// 
			this.notePanel5.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel5.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel5.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel5.ForeColor = System.Drawing.Color.Black;
			this.notePanel5.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel5.Location = new System.Drawing.Point(232, 88);
			this.notePanel5.MaxRows = 5;
			this.notePanel5.Name = "notePanel5";
			this.notePanel5.ParentAutoHeight = true;
			this.notePanel5.Size = new System.Drawing.Size(80, 22);
			this.notePanel5.TabIndex = 31;
			this.notePanel5.TabStop = false;
			this.notePanel5.Text = "家庭电话:";
			// 
			// textEdit_UserPwd
			// 
			this.textEdit_UserPwd.EditValue = "1234";
			this.textEdit_UserPwd.Location = new System.Drawing.Point(136, 120);
			this.textEdit_UserPwd.Name = "textEdit_UserPwd";
			// 
			// textEdit_UserPwd.Properties
			// 
			this.textEdit_UserPwd.Properties.PasswordChar = '*';
			this.textEdit_UserPwd.Properties.ReadOnly = true;
			this.textEdit_UserPwd.Size = new System.Drawing.Size(80, 23);
			this.textEdit_UserPwd.TabIndex = 30;
			// 
			// tNumber
			// 
			this.tNumber.EditValue = "";
			this.tNumber.Location = new System.Drawing.Point(136, 88);
			this.tNumber.Name = "tNumber";
			this.tNumber.Size = new System.Drawing.Size(80, 23);
			this.tNumber.TabIndex = 29;
			// 
			// tName
			// 
			this.tName.EditValue = "";
			this.tName.Location = new System.Drawing.Point(136, 56);
			this.tName.Name = "tName";
			this.tName.Size = new System.Drawing.Size(80, 23);
			this.tName.TabIndex = 28;
			// 
			// notePanel3
			// 
			this.notePanel3.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel3.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel3.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel3.ForeColor = System.Drawing.Color.Black;
			this.notePanel3.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel3.Location = new System.Drawing.Point(48, 120);
			this.notePanel3.MaxRows = 5;
			this.notePanel3.Name = "notePanel3";
			this.notePanel3.ParentAutoHeight = true;
			this.notePanel3.Size = new System.Drawing.Size(80, 22);
			this.notePanel3.TabIndex = 26;
			this.notePanel3.TabStop = false;
			this.notePanel3.Text = "登陆密码:";
			// 
			// notePanel2
			// 
			this.notePanel2.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel2.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel2.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel2.ForeColor = System.Drawing.Color.Black;
			this.notePanel2.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel2.Location = new System.Drawing.Point(48, 87);
			this.notePanel2.MaxRows = 5;
			this.notePanel2.Name = "notePanel2";
			this.notePanel2.ParentAutoHeight = true;
			this.notePanel2.Size = new System.Drawing.Size(80, 22);
			this.notePanel2.TabIndex = 25;
			this.notePanel2.TabStop = false;
			this.notePanel2.Text = "教师工号:";
			// 
			// notePanel_KidName
			// 
			this.notePanel_KidName.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_KidName.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_KidName.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_KidName.ForeColor = System.Drawing.Color.Black;
			this.notePanel_KidName.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_KidName.Location = new System.Drawing.Point(48, 56);
			this.notePanel_KidName.MaxRows = 5;
			this.notePanel_KidName.Name = "notePanel_KidName";
			this.notePanel_KidName.ParentAutoHeight = true;
			this.notePanel_KidName.Size = new System.Drawing.Size(80, 22);
			this.notePanel_KidName.TabIndex = 24;
			this.notePanel_KidName.TabStop = false;
			this.notePanel_KidName.Text = "教师姓名:";
			// 
			// notePanel_KidBaseInfoTitle
			// 
			this.notePanel_KidBaseInfoTitle.BackColor = System.Drawing.Color.LightGoldenrodYellow;
			this.notePanel_KidBaseInfoTitle.Dock = System.Windows.Forms.DockStyle.Top;
			this.notePanel_KidBaseInfoTitle.ForeColor = System.Drawing.Color.OrangeRed;
			this.notePanel_KidBaseInfoTitle.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_KidBaseInfoTitle.Location = new System.Drawing.Point(3, 18);
			this.notePanel_KidBaseInfoTitle.MaxRows = 5;
			this.notePanel_KidBaseInfoTitle.Name = "notePanel_KidBaseInfoTitle";
			this.notePanel_KidBaseInfoTitle.ParentAutoHeight = true;
			this.notePanel_KidBaseInfoTitle.Size = new System.Drawing.Size(552, 23);
			this.notePanel_KidBaseInfoTitle.TabIndex = 23;
			this.notePanel_KidBaseInfoTitle.TabStop = false;
			this.notePanel_KidBaseInfoTitle.Text = "教师基本信息(*为必须填写)";
			// 
			// comboBoxEdit_Privilege
			// 
			this.comboBoxEdit_Privilege.EditValue = "一般";
			this.comboBoxEdit_Privilege.Location = new System.Drawing.Point(320, 184);
			this.comboBoxEdit_Privilege.Name = "comboBoxEdit_Privilege";
			// 
			// comboBoxEdit_Privilege.Properties
			// 
			this.comboBoxEdit_Privilege.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																														   new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.comboBoxEdit_Privilege.Properties.Items.AddRange(new object[] {
																				   "园长",
																				   "一般",
																				   "保健",
																				   "班主任",
																				   "财务"});
			this.comboBoxEdit_Privilege.Size = new System.Drawing.Size(88, 23);
			this.comboBoxEdit_Privilege.TabIndex = 43;
			this.comboBoxEdit_Privilege.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit_Privilege_SelectedIndexChanged);
			// 
			// notePanel16
			// 
			this.notePanel16.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel16.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel16.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel16.ForeColor = System.Drawing.Color.Black;
			this.notePanel16.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel16.Location = new System.Drawing.Point(232, 184);
			this.notePanel16.MaxRows = 5;
			this.notePanel16.Name = "notePanel16";
			this.notePanel16.ParentAutoHeight = true;
			this.notePanel16.Size = new System.Drawing.Size(80, 22);
			this.notePanel16.TabIndex = 42;
			this.notePanel16.TabStop = false;
			this.notePanel16.Text = "  权  限:";
			// 
			// notePanel17
			// 
			this.notePanel17.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel17.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel17.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel17.ForeColor = System.Drawing.Color.Black;
			this.notePanel17.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel17.Location = new System.Drawing.Point(48, 184);
			this.notePanel17.MaxRows = 5;
			this.notePanel17.Name = "notePanel17";
			this.notePanel17.ParentAutoHeight = true;
			this.notePanel17.Size = new System.Drawing.Size(80, 22);
			this.notePanel17.TabIndex = 42;
			this.notePanel17.TabStop = false;
			this.notePanel17.Text = "  婚   否:";
			// 
			// tMarrige
			// 
			this.tMarrige.EditValue = "是";
			this.tMarrige.ImeMode = System.Windows.Forms.ImeMode.NoControl;
			this.tMarrige.Location = new System.Drawing.Point(136, 184);
			this.tMarrige.Name = "tMarrige";
			// 
			// tMarrige.Properties
			// 
			this.tMarrige.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																											 new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.tMarrige.Properties.Items.AddRange(new object[] {
																	 "是",
																	 "否"});
			this.tMarrige.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
			this.tMarrige.Size = new System.Drawing.Size(80, 23);
			this.tMarrige.TabIndex = 43;
			// 
			// panelControl1
			// 
			this.panelControl1.Controls.Add(this.simpleButton_WriteButton);
			this.panelControl1.Controls.Add(this.simpleButton_SaveButton);
			this.panelControl1.Controls.Add(this.simpleButton_ModifyButton);
			this.panelControl1.Controls.Add(this.simpleButton_NewFile);
			this.panelControl1.Dock = System.Windows.Forms.DockStyle.Top;
			this.panelControl1.Location = new System.Drawing.Point(0, 0);
			this.panelControl1.Name = "panelControl1";
			this.panelControl1.Size = new System.Drawing.Size(558, 40);
			this.panelControl1.TabIndex = 0;
			this.panelControl1.Text = "panelControl1";
			// 
			// simpleButton_WriteButton
			// 
			this.simpleButton_WriteButton.Appearance.ForeColor = System.Drawing.Color.DarkMagenta;
			this.simpleButton_WriteButton.Appearance.Options.UseForeColor = true;
			this.simpleButton_WriteButton.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton_WriteButton.Image")));
			this.simpleButton_WriteButton.Location = new System.Drawing.Point(272, 8);
			this.simpleButton_WriteButton.Name = "simpleButton_WriteButton";
			this.simpleButton_WriteButton.Size = new System.Drawing.Size(80, 26);
			this.simpleButton_WriteButton.TabIndex = 13;
			this.simpleButton_WriteButton.Text = "打 印";
			this.simpleButton_WriteButton.Click += new System.EventHandler(this.simpleButton_WriteButton_Click);
			// 
			// simpleButton_SaveButton
			// 
			this.simpleButton_SaveButton.Appearance.ForeColor = System.Drawing.Color.DarkMagenta;
			this.simpleButton_SaveButton.Appearance.Options.UseForeColor = true;
			this.simpleButton_SaveButton.Enabled = false;
			this.simpleButton_SaveButton.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton_SaveButton.Image")));
			this.simpleButton_SaveButton.Location = new System.Drawing.Point(96, 8);
			this.simpleButton_SaveButton.Name = "simpleButton_SaveButton";
			this.simpleButton_SaveButton.Size = new System.Drawing.Size(80, 26);
			this.simpleButton_SaveButton.TabIndex = 9;
			this.simpleButton_SaveButton.Text = "保 存";
			this.simpleButton_SaveButton.Click += new System.EventHandler(this.simpleButton_SaveButton_Click);
			// 
			// simpleButton_ModifyButton
			// 
			this.simpleButton_ModifyButton.Appearance.ForeColor = System.Drawing.Color.DarkMagenta;
			this.simpleButton_ModifyButton.Appearance.Options.UseForeColor = true;
			this.simpleButton_ModifyButton.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton_ModifyButton.Image")));
			this.simpleButton_ModifyButton.Location = new System.Drawing.Point(184, 8);
			this.simpleButton_ModifyButton.Name = "simpleButton_ModifyButton";
			this.simpleButton_ModifyButton.Size = new System.Drawing.Size(80, 26);
			this.simpleButton_ModifyButton.TabIndex = 8;
			this.simpleButton_ModifyButton.Text = "修 改";
			this.simpleButton_ModifyButton.Click += new System.EventHandler(this.simpleButton_ModifyButton_Click);
			// 
			// simpleButton_NewFile
			// 
			this.simpleButton_NewFile.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.simpleButton_NewFile.Appearance.ForeColor = System.Drawing.Color.DarkMagenta;
			this.simpleButton_NewFile.Appearance.Options.UseFont = true;
			this.simpleButton_NewFile.Appearance.Options.UseForeColor = true;
			this.simpleButton_NewFile.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton_NewFile.Image")));
			this.simpleButton_NewFile.Location = new System.Drawing.Point(8, 8);
			this.simpleButton_NewFile.Name = "simpleButton_NewFile";
			this.simpleButton_NewFile.Size = new System.Drawing.Size(80, 26);
			this.simpleButton_NewFile.TabIndex = 7;
			this.simpleButton_NewFile.Tag = 4;
			this.simpleButton_NewFile.Text = "新 建";
			this.simpleButton_NewFile.Click += new System.EventHandler(this.simpleButton_NewFile_Click);
			// 
			// notePanel_TeaBaseInfoTitle
			// 
			this.notePanel_TeaBaseInfoTitle.BackColor = System.Drawing.Color.LightGoldenrodYellow;
			this.notePanel_TeaBaseInfoTitle.Dock = System.Windows.Forms.DockStyle.Top;
			this.notePanel_TeaBaseInfoTitle.ForeColor = System.Drawing.Color.OrangeRed;
			this.notePanel_TeaBaseInfoTitle.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_TeaBaseInfoTitle.Location = new System.Drawing.Point(0, 0);
			this.notePanel_TeaBaseInfoTitle.MaxRows = 5;
			this.notePanel_TeaBaseInfoTitle.Name = "notePanel_TeaBaseInfoTitle";
			this.notePanel_TeaBaseInfoTitle.ParentAutoHeight = true;
			this.notePanel_TeaBaseInfoTitle.Size = new System.Drawing.Size(768, 23);
			this.notePanel_TeaBaseInfoTitle.TabIndex = 3;
			this.notePanel_TeaBaseInfoTitle.TabStop = false;
			this.notePanel_TeaBaseInfoTitle.Text = "某某教师欢迎进入基本信息管理";
			// 
			// barManager1
			// 
			this.barManager1.DockControls.Add(this.barDockControlTop);
			this.barManager1.DockControls.Add(this.barDockControlBottom);
			this.barManager1.DockControls.Add(this.barDockControlLeft);
			this.barManager1.DockControls.Add(this.barDockControlRight);
			this.barManager1.Form = this;
			this.barManager1.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
																				  this.barButtonItem1,
																				  this.barButtonItem_TeaInfo_Refresh,
																				  this.barButtonItem_TeaInfo_LoadPic,
																				  this.barButtonItem_TeaInfo_DeletePic});
			this.barManager1.MaxItemId = 4;
			// 
			// popupMenu1
			// 
			this.popupMenu1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
																									new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem_TeaInfo_Refresh)});
			this.popupMenu1.Manager = this.barManager1;
			this.popupMenu1.Name = "popupMenu1";
			// 
			// barButtonItem_TeaInfo_Refresh
			// 
			this.barButtonItem_TeaInfo_Refresh.Caption = "刷新";
			this.barButtonItem_TeaInfo_Refresh.Id = 1;
			this.barButtonItem_TeaInfo_Refresh.Name = "barButtonItem_TeaInfo_Refresh";
			this.barButtonItem_TeaInfo_Refresh.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem_TeaInfo_Refresh_ItemClick);
			// 
			// popupMenu2
			// 
			this.popupMenu2.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
																									new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem_TeaInfo_LoadPic),
																									new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem_TeaInfo_DeletePic)});
			this.popupMenu2.Manager = this.barManager1;
			this.popupMenu2.Name = "popupMenu2";
			// 
			// barButtonItem_TeaInfo_LoadPic
			// 
			this.barButtonItem_TeaInfo_LoadPic.Caption = "载入图片";
			this.barButtonItem_TeaInfo_LoadPic.Id = 2;
			this.barButtonItem_TeaInfo_LoadPic.Name = "barButtonItem_TeaInfo_LoadPic";
			this.barButtonItem_TeaInfo_LoadPic.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem_TeaInfo_LoadPic_ItemClick);
			// 
			// barButtonItem_TeaInfo_DeletePic
			// 
			this.barButtonItem_TeaInfo_DeletePic.Caption = "删除图片";
			this.barButtonItem_TeaInfo_DeletePic.Id = 3;
			this.barButtonItem_TeaInfo_DeletePic.Name = "barButtonItem_TeaInfo_DeletePic";
			this.barButtonItem_TeaInfo_DeletePic.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem_TeaInfo_DeletePic_ItemClick);
			// 
			// barButtonItem1
			// 
			this.barButtonItem1.Caption = "加载图片";
			this.barButtonItem1.Id = 0;
			this.barButtonItem1.Name = "barButtonItem1";
			// 
			// helpProvider_Help
			// 
			this.helpProvider_Help.HelpNamespace = "";
			// 
			// TeacherBaseInfo
			// 
			this.Appearance.BackColor = System.Drawing.Color.WhiteSmoke;
			this.Appearance.Options.UseBackColor = true;
			this.Controls.Add(this.xtraTabControl_TeaBaseInfo);
			this.Controls.Add(this.barDockControlLeft);
			this.Controls.Add(this.barDockControlRight);
			this.Controls.Add(this.barDockControlBottom);
			this.Controls.Add(this.barDockControlTop);
			this.Name = "TeacherBaseInfo";
			this.Size = new System.Drawing.Size(772, 540);
			this.Load += new System.EventHandler(this.TeacherBaseInfo_Load);
			((System.ComponentModel.ISupportInitialize)(this.xtraTabControl_TeaBaseInfo)).EndInit();
			this.xtraTabControl_TeaBaseInfo.ResumeLayout(false);
			this.xtraTabPage_TeaBaseInfoMgmt.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.splitContainerControl1)).EndInit();
			this.splitContainerControl1.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.gridControl1)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
			this.groupControl1.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.textEdit_Number.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_Name.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_Class.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_Grade.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl3)).EndInit();
			this.groupControl3.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.tTechnicalPost.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.tLevel.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.tJoinDate.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.tEnterTime.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.tDuty.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.tDept.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_tID.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl2)).EndInit();
			this.groupControl2.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.pictureEdit_LoadImageData.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.tAddr.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.tRecord.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.tSex.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.tWorkPhone.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.tPhone.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.tHomePhone.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_UserPwd.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.tNumber.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.tName.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_Privilege.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.tMarrige.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
			this.panelControl1.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.barManager1)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.popupMenu1)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.popupMenu2)).EndInit();
			this.ResumeLayout(false);

		}
示例#37
0
 private void InitializeComponent()
 {
     this.layoutControl1      = new DevExpress.XtraLayout.LayoutControl();
     this.labelControl6       = new DevExpress.XtraEditors.LabelControl();
     this.labelControl5       = new DevExpress.XtraEditors.LabelControl();
     this.labelControl4       = new DevExpress.XtraEditors.LabelControl();
     this.labelControl3       = new DevExpress.XtraEditors.LabelControl();
     this.labelControl2       = new DevExpress.XtraEditors.LabelControl();
     this.labelControl1       = new DevExpress.XtraEditors.LabelControl();
     this.btnCancel           = new DevExpress.XtraEditors.SimpleButton();
     this.btnOK               = new DevExpress.XtraEditors.SimpleButton();
     this.ceVersion           = new DevExpress.XtraEditors.CheckEdit();
     this.cbVersion           = new DevExpress.XtraEditors.ComboBoxEdit();
     this.btnTestConn         = new DevExpress.XtraEditors.SimpleButton();
     this.teUserPwd           = new DevExpress.XtraEditors.TextEdit();
     this.teUserName          = new DevExpress.XtraEditors.TextEdit();
     this.teDatabase          = new DevExpress.XtraEditors.TextEdit();
     this.teInstance          = new DevExpress.XtraEditors.TextEdit();
     this.teServer            = new DevExpress.XtraEditors.TextEdit();
     this.layoutControlGroup1 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlGroup2 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlItem1  = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem2  = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem3  = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem11 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem12 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem13 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlGroup3 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlItem4  = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem5  = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem6  = new DevExpress.XtraLayout.LayoutControlItem();
     this.emptySpaceItem1     = new DevExpress.XtraLayout.EmptySpaceItem();
     this.layoutControlItem14 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem15 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlGroup4 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlItem7  = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem8  = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem16 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem9  = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem10 = new DevExpress.XtraLayout.LayoutControlItem();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl1)).BeginInit();
     this.layoutControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ceVersion.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbVersion.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.teUserPwd.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.teUserName.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.teDatabase.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.teInstance.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.teServer.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem11)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem12)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem13)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem6)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem14)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem15)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem7)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem8)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem16)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem9)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem10)).BeginInit();
     this.SuspendLayout();
     //
     // layoutControl1
     //
     this.layoutControl1.Controls.Add(this.labelControl6);
     this.layoutControl1.Controls.Add(this.labelControl5);
     this.layoutControl1.Controls.Add(this.labelControl4);
     this.layoutControl1.Controls.Add(this.labelControl3);
     this.layoutControl1.Controls.Add(this.labelControl2);
     this.layoutControl1.Controls.Add(this.labelControl1);
     this.layoutControl1.Controls.Add(this.btnCancel);
     this.layoutControl1.Controls.Add(this.btnOK);
     this.layoutControl1.Controls.Add(this.ceVersion);
     this.layoutControl1.Controls.Add(this.cbVersion);
     this.layoutControl1.Controls.Add(this.btnTestConn);
     this.layoutControl1.Controls.Add(this.teUserPwd);
     this.layoutControl1.Controls.Add(this.teUserName);
     this.layoutControl1.Controls.Add(this.teDatabase);
     this.layoutControl1.Controls.Add(this.teInstance);
     this.layoutControl1.Controls.Add(this.teServer);
     this.layoutControl1.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.layoutControl1.Location = new System.Drawing.Point(0, 0);
     this.layoutControl1.Name     = "layoutControl1";
     this.layoutControl1.Root     = this.layoutControlGroup1;
     this.layoutControl1.Size     = new System.Drawing.Size(284, 313);
     this.layoutControl1.TabIndex = 0;
     this.layoutControl1.Text     = "layoutControl1";
     //
     // labelControl6
     //
     this.labelControl6.Location        = new System.Drawing.Point(5, 233);
     this.labelControl6.Name            = "labelControl6";
     this.labelControl6.Size            = new System.Drawing.Size(60, 14);
     this.labelControl6.StyleController = this.layoutControl1;
     this.labelControl6.TabIndex        = 19;
     this.labelControl6.Text            = "版本名称:";
     //
     // labelControl5
     //
     this.labelControl5.Location        = new System.Drawing.Point(5, 155);
     this.labelControl5.Name            = "labelControl5";
     this.labelControl5.Size            = new System.Drawing.Size(48, 14);
     this.labelControl5.StyleController = this.layoutControl1;
     this.labelControl5.TabIndex        = 18;
     this.labelControl5.Text            = "密   码:";
     //
     // labelControl4
     //
     this.labelControl4.Location        = new System.Drawing.Point(5, 129);
     this.labelControl4.Name            = "labelControl4";
     this.labelControl4.Size            = new System.Drawing.Size(48, 14);
     this.labelControl4.StyleController = this.layoutControl1;
     this.labelControl4.TabIndex        = 17;
     this.labelControl4.Text            = "用户名:";
     //
     // labelControl3
     //
     this.labelControl3.Location        = new System.Drawing.Point(5, 77);
     this.labelControl3.Name            = "labelControl3";
     this.labelControl3.Size            = new System.Drawing.Size(48, 14);
     this.labelControl3.StyleController = this.layoutControl1;
     this.labelControl3.TabIndex        = 16;
     this.labelControl3.Text            = "数据库:";
     //
     // labelControl2
     //
     this.labelControl2.Location        = new System.Drawing.Point(5, 51);
     this.labelControl2.Name            = "labelControl2";
     this.labelControl2.Size            = new System.Drawing.Size(48, 14);
     this.labelControl2.StyleController = this.layoutControl1;
     this.labelControl2.TabIndex        = 15;
     this.labelControl2.Text            = "服   务:";
     //
     // labelControl1
     //
     this.labelControl1.Location        = new System.Drawing.Point(5, 25);
     this.labelControl1.Name            = "labelControl1";
     this.labelControl1.Size            = new System.Drawing.Size(48, 14);
     this.labelControl1.StyleController = this.layoutControl1;
     this.labelControl1.TabIndex        = 14;
     this.labelControl1.Text            = "服务器:";
     //
     // btnCancel
     //
     this.btnCancel.Location        = new System.Drawing.Point(146, 285);
     this.btnCancel.Name            = "btnCancel";
     this.btnCancel.Size            = new System.Drawing.Size(136, 22);
     this.btnCancel.StyleController = this.layoutControl1;
     this.btnCancel.TabIndex        = 13;
     this.btnCancel.Text            = "取消";
     this.btnCancel.Click          += new System.EventHandler(this.btnCancel_Click);
     //
     // btnOK
     //
     this.btnOK.Location        = new System.Drawing.Point(2, 285);
     this.btnOK.Name            = "btnOK";
     this.btnOK.Size            = new System.Drawing.Size(140, 22);
     this.btnOK.StyleController = this.layoutControl1;
     this.btnOK.TabIndex        = 12;
     this.btnOK.Text            = "确定";
     this.btnOK.Click          += new System.EventHandler(this.btnOK_Click);
     //
     // ceVersion
     //
     this.ceVersion.Location           = new System.Drawing.Point(5, 259);
     this.ceVersion.Name               = "ceVersion";
     this.ceVersion.Properties.Caption = "保存版本";
     this.ceVersion.Size               = new System.Drawing.Size(274, 19);
     this.ceVersion.StyleController    = this.layoutControl1;
     this.ceVersion.TabIndex           = 11;
     //
     // cbVersion
     //
     this.cbVersion.EditValue = "SDE.DEFAULT";
     this.cbVersion.Location  = new System.Drawing.Point(69, 233);
     this.cbVersion.Name      = "cbVersion";
     this.cbVersion.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.cbVersion.Size            = new System.Drawing.Size(210, 22);
     this.cbVersion.StyleController = this.layoutControl1;
     this.cbVersion.TabIndex        = 10;
     this.cbVersion.MouseDown      += new System.Windows.Forms.MouseEventHandler(this.cbVersion_MouseDown);
     //
     // btnTestConn
     //
     this.btnTestConn.Location        = new System.Drawing.Point(189, 181);
     this.btnTestConn.Name            = "btnTestConn";
     this.btnTestConn.Size            = new System.Drawing.Size(90, 22);
     this.btnTestConn.StyleController = this.layoutControl1;
     this.btnTestConn.TabIndex        = 9;
     this.btnTestConn.Text            = "测试连接";
     this.btnTestConn.Click          += new System.EventHandler(this.btnTestConn_Click);
     //
     // teUserPwd
     //
     this.teUserPwd.EditValue = "wkgis";
     this.teUserPwd.Location  = new System.Drawing.Point(57, 155);
     this.teUserPwd.Name      = "teUserPwd";
     this.teUserPwd.Properties.PasswordChar = '*';
     this.teUserPwd.Size            = new System.Drawing.Size(222, 22);
     this.teUserPwd.StyleController = this.layoutControl1;
     this.teUserPwd.TabIndex        = 8;
     //
     // teUserName
     //
     this.teUserName.EditValue       = "sa";
     this.teUserName.Location        = new System.Drawing.Point(57, 129);
     this.teUserName.Name            = "teUserName";
     this.teUserName.Size            = new System.Drawing.Size(222, 22);
     this.teUserName.StyleController = this.layoutControl1;
     this.teUserName.TabIndex        = 7;
     //
     // teDatabase
     //
     this.teDatabase.EditValue       = "SDE";
     this.teDatabase.Location        = new System.Drawing.Point(57, 77);
     this.teDatabase.Name            = "teDatabase";
     this.teDatabase.Size            = new System.Drawing.Size(222, 22);
     this.teDatabase.StyleController = this.layoutControl1;
     this.teDatabase.TabIndex        = 6;
     //
     // teInstance
     //
     this.teInstance.EditValue       = "sde:sqlserver:192.168.1.102";
     this.teInstance.Location        = new System.Drawing.Point(57, 51);
     this.teInstance.Name            = "teInstance";
     this.teInstance.Size            = new System.Drawing.Size(222, 22);
     this.teInstance.StyleController = this.layoutControl1;
     this.teInstance.TabIndex        = 5;
     //
     // teServer
     //
     this.teServer.EditValue       = "192.168.1.102";
     this.teServer.Location        = new System.Drawing.Point(57, 25);
     this.teServer.Name            = "teServer";
     this.teServer.Size            = new System.Drawing.Size(222, 22);
     this.teServer.StyleController = this.layoutControl1;
     this.teServer.TabIndex        = 4;
     //
     // layoutControlGroup1
     //
     this.layoutControlGroup1.CustomizationFormText       = "layoutControlGroup1";
     this.layoutControlGroup1.EnableIndentsWithoutBorders = DevExpress.Utils.DefaultBoolean.True;
     this.layoutControlGroup1.GroupBordersVisible         = false;
     this.layoutControlGroup1.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
         this.layoutControlGroup2,
         this.layoutControlGroup3,
         this.layoutControlGroup4,
         this.layoutControlItem9,
         this.layoutControlItem10
     });
     this.layoutControlGroup1.Location    = new System.Drawing.Point(0, 0);
     this.layoutControlGroup1.Name        = "layoutControlGroup1";
     this.layoutControlGroup1.Padding     = new DevExpress.XtraLayout.Utils.Padding(0, 0, 0, 0);
     this.layoutControlGroup1.Size        = new System.Drawing.Size(284, 313);
     this.layoutControlGroup1.Text        = "layoutControlGroup1";
     this.layoutControlGroup1.TextVisible = false;
     //
     // layoutControlGroup2
     //
     this.layoutControlGroup2.CustomizationFormText = "layoutControlGroup2";
     this.layoutControlGroup2.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
         this.layoutControlItem1,
         this.layoutControlItem2,
         this.layoutControlItem3,
         this.layoutControlItem11,
         this.layoutControlItem12,
         this.layoutControlItem13
     });
     this.layoutControlGroup2.Location = new System.Drawing.Point(0, 0);
     this.layoutControlGroup2.Name     = "layoutControlGroup2";
     this.layoutControlGroup2.Padding  = new DevExpress.XtraLayout.Utils.Padding(0, 0, 0, 0);
     this.layoutControlGroup2.Size     = new System.Drawing.Size(284, 104);
     this.layoutControlGroup2.Text     = "连接参数";
     //
     // layoutControlItem1
     //
     this.layoutControlItem1.Control = this.teServer;
     this.layoutControlItem1.CustomizationFormText = "layoutControlItem1";
     this.layoutControlItem1.Location = new System.Drawing.Point(52, 0);
     this.layoutControlItem1.Name     = "layoutControlItem1";
     this.layoutControlItem1.Size     = new System.Drawing.Size(226, 26);
     this.layoutControlItem1.Text     = "layoutControlItem1";
     this.layoutControlItem1.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem1.TextToControlDistance = 0;
     this.layoutControlItem1.TextVisible           = false;
     //
     // layoutControlItem2
     //
     this.layoutControlItem2.Control = this.teInstance;
     this.layoutControlItem2.CustomizationFormText = "layoutControlItem2";
     this.layoutControlItem2.Location = new System.Drawing.Point(52, 26);
     this.layoutControlItem2.Name     = "layoutControlItem2";
     this.layoutControlItem2.Size     = new System.Drawing.Size(226, 26);
     this.layoutControlItem2.Text     = "layoutControlItem2";
     this.layoutControlItem2.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem2.TextToControlDistance = 0;
     this.layoutControlItem2.TextVisible           = false;
     //
     // layoutControlItem3
     //
     this.layoutControlItem3.Control = this.teDatabase;
     this.layoutControlItem3.CustomizationFormText = "layoutControlItem3";
     this.layoutControlItem3.Location = new System.Drawing.Point(52, 52);
     this.layoutControlItem3.Name     = "layoutControlItem3";
     this.layoutControlItem3.Size     = new System.Drawing.Size(226, 26);
     this.layoutControlItem3.Text     = "layoutControlItem3";
     this.layoutControlItem3.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem3.TextToControlDistance = 0;
     this.layoutControlItem3.TextVisible           = false;
     //
     // layoutControlItem11
     //
     this.layoutControlItem11.Control = this.labelControl1;
     this.layoutControlItem11.CustomizationFormText = "layoutControlItem11";
     this.layoutControlItem11.Location = new System.Drawing.Point(0, 0);
     this.layoutControlItem11.Name     = "layoutControlItem11";
     this.layoutControlItem11.Size     = new System.Drawing.Size(52, 26);
     this.layoutControlItem11.Text     = "layoutControlItem11";
     this.layoutControlItem11.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem11.TextToControlDistance = 0;
     this.layoutControlItem11.TextVisible           = false;
     //
     // layoutControlItem12
     //
     this.layoutControlItem12.Control = this.labelControl2;
     this.layoutControlItem12.CustomizationFormText = "layoutControlItem12";
     this.layoutControlItem12.Location = new System.Drawing.Point(0, 26);
     this.layoutControlItem12.Name     = "layoutControlItem12";
     this.layoutControlItem12.Size     = new System.Drawing.Size(52, 26);
     this.layoutControlItem12.Text     = "layoutControlItem12";
     this.layoutControlItem12.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem12.TextToControlDistance = 0;
     this.layoutControlItem12.TextVisible           = false;
     //
     // layoutControlItem13
     //
     this.layoutControlItem13.Control = this.labelControl3;
     this.layoutControlItem13.CustomizationFormText = "layoutControlItem13";
     this.layoutControlItem13.Location = new System.Drawing.Point(0, 52);
     this.layoutControlItem13.Name     = "layoutControlItem13";
     this.layoutControlItem13.Size     = new System.Drawing.Size(52, 26);
     this.layoutControlItem13.Text     = "layoutControlItem13";
     this.layoutControlItem13.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem13.TextToControlDistance = 0;
     this.layoutControlItem13.TextVisible           = false;
     //
     // layoutControlGroup3
     //
     this.layoutControlGroup3.CustomizationFormText = "layoutControlGroup3";
     this.layoutControlGroup3.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
         this.layoutControlItem4,
         this.layoutControlItem5,
         this.layoutControlItem6,
         this.emptySpaceItem1,
         this.layoutControlItem14,
         this.layoutControlItem15
     });
     this.layoutControlGroup3.Location = new System.Drawing.Point(0, 104);
     this.layoutControlGroup3.Name     = "layoutControlGroup3";
     this.layoutControlGroup3.Padding  = new DevExpress.XtraLayout.Utils.Padding(0, 0, 0, 0);
     this.layoutControlGroup3.Size     = new System.Drawing.Size(284, 104);
     this.layoutControlGroup3.Text     = "账号";
     //
     // layoutControlItem4
     //
     this.layoutControlItem4.Control = this.teUserName;
     this.layoutControlItem4.CustomizationFormText = "layoutControlItem4";
     this.layoutControlItem4.Location = new System.Drawing.Point(52, 0);
     this.layoutControlItem4.Name     = "layoutControlItem4";
     this.layoutControlItem4.Size     = new System.Drawing.Size(226, 26);
     this.layoutControlItem4.Text     = "layoutControlItem4";
     this.layoutControlItem4.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem4.TextToControlDistance = 0;
     this.layoutControlItem4.TextVisible           = false;
     //
     // layoutControlItem5
     //
     this.layoutControlItem5.Control = this.teUserPwd;
     this.layoutControlItem5.CustomizationFormText = "layoutControlItem5";
     this.layoutControlItem5.Location = new System.Drawing.Point(52, 26);
     this.layoutControlItem5.Name     = "layoutControlItem5";
     this.layoutControlItem5.Size     = new System.Drawing.Size(226, 26);
     this.layoutControlItem5.Text     = "layoutControlItem5";
     this.layoutControlItem5.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem5.TextToControlDistance = 0;
     this.layoutControlItem5.TextVisible           = false;
     //
     // layoutControlItem6
     //
     this.layoutControlItem6.Control = this.btnTestConn;
     this.layoutControlItem6.CustomizationFormText = "layoutControlItem6";
     this.layoutControlItem6.Location = new System.Drawing.Point(184, 52);
     this.layoutControlItem6.Name     = "layoutControlItem6";
     this.layoutControlItem6.Size     = new System.Drawing.Size(94, 26);
     this.layoutControlItem6.Text     = "layoutControlItem6";
     this.layoutControlItem6.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem6.TextToControlDistance = 0;
     this.layoutControlItem6.TextVisible           = false;
     //
     // emptySpaceItem1
     //
     this.emptySpaceItem1.AllowHotTrack         = false;
     this.emptySpaceItem1.CustomizationFormText = "emptySpaceItem1";
     this.emptySpaceItem1.Location            = new System.Drawing.Point(0, 52);
     this.emptySpaceItem1.MaxSize             = new System.Drawing.Size(184, 26);
     this.emptySpaceItem1.MinSize             = new System.Drawing.Size(184, 26);
     this.emptySpaceItem1.Name                = "emptySpaceItem1";
     this.emptySpaceItem1.Size                = new System.Drawing.Size(184, 26);
     this.emptySpaceItem1.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.emptySpaceItem1.Text                = "emptySpaceItem1";
     this.emptySpaceItem1.TextSize            = new System.Drawing.Size(0, 0);
     //
     // layoutControlItem14
     //
     this.layoutControlItem14.Control = this.labelControl4;
     this.layoutControlItem14.CustomizationFormText = "layoutControlItem14";
     this.layoutControlItem14.Location = new System.Drawing.Point(0, 0);
     this.layoutControlItem14.Name     = "layoutControlItem14";
     this.layoutControlItem14.Size     = new System.Drawing.Size(52, 26);
     this.layoutControlItem14.Text     = "layoutControlItem14";
     this.layoutControlItem14.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem14.TextToControlDistance = 0;
     this.layoutControlItem14.TextVisible           = false;
     //
     // layoutControlItem15
     //
     this.layoutControlItem15.Control = this.labelControl5;
     this.layoutControlItem15.CustomizationFormText = "layoutControlItem15";
     this.layoutControlItem15.Location = new System.Drawing.Point(0, 26);
     this.layoutControlItem15.Name     = "layoutControlItem15";
     this.layoutControlItem15.Size     = new System.Drawing.Size(52, 26);
     this.layoutControlItem15.Text     = "layoutControlItem15";
     this.layoutControlItem15.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem15.TextToControlDistance = 0;
     this.layoutControlItem15.TextVisible           = false;
     //
     // layoutControlGroup4
     //
     this.layoutControlGroup4.CustomizationFormText = "layoutControlGroup4";
     this.layoutControlGroup4.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
         this.layoutControlItem7,
         this.layoutControlItem8,
         this.layoutControlItem16
     });
     this.layoutControlGroup4.Location = new System.Drawing.Point(0, 208);
     this.layoutControlGroup4.Name     = "layoutControlGroup4";
     this.layoutControlGroup4.Padding  = new DevExpress.XtraLayout.Utils.Padding(0, 0, 0, 0);
     this.layoutControlGroup4.Size     = new System.Drawing.Size(284, 75);
     this.layoutControlGroup4.Text     = "版本";
     //
     // layoutControlItem7
     //
     this.layoutControlItem7.Control = this.cbVersion;
     this.layoutControlItem7.CustomizationFormText = "layoutControlItem7";
     this.layoutControlItem7.Location = new System.Drawing.Point(64, 0);
     this.layoutControlItem7.Name     = "layoutControlItem7";
     this.layoutControlItem7.Size     = new System.Drawing.Size(214, 26);
     this.layoutControlItem7.Text     = "layoutControlItem7";
     this.layoutControlItem7.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem7.TextToControlDistance = 0;
     this.layoutControlItem7.TextVisible           = false;
     //
     // layoutControlItem8
     //
     this.layoutControlItem8.Control = this.ceVersion;
     this.layoutControlItem8.CustomizationFormText = "layoutControlItem8";
     this.layoutControlItem8.Location = new System.Drawing.Point(0, 26);
     this.layoutControlItem8.Name     = "layoutControlItem8";
     this.layoutControlItem8.Size     = new System.Drawing.Size(278, 23);
     this.layoutControlItem8.Text     = "layoutControlItem8";
     this.layoutControlItem8.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem8.TextToControlDistance = 0;
     this.layoutControlItem8.TextVisible           = false;
     //
     // layoutControlItem16
     //
     this.layoutControlItem16.Control = this.labelControl6;
     this.layoutControlItem16.CustomizationFormText = "layoutControlItem16";
     this.layoutControlItem16.Location = new System.Drawing.Point(0, 0);
     this.layoutControlItem16.Name     = "layoutControlItem16";
     this.layoutControlItem16.Size     = new System.Drawing.Size(64, 26);
     this.layoutControlItem16.Text     = "layoutControlItem16";
     this.layoutControlItem16.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem16.TextToControlDistance = 0;
     this.layoutControlItem16.TextVisible           = false;
     //
     // layoutControlItem9
     //
     this.layoutControlItem9.Control = this.btnOK;
     this.layoutControlItem9.CustomizationFormText = "layoutControlItem9";
     this.layoutControlItem9.Location = new System.Drawing.Point(0, 283);
     this.layoutControlItem9.Name     = "layoutControlItem9";
     this.layoutControlItem9.Size     = new System.Drawing.Size(144, 30);
     this.layoutControlItem9.Text     = "layoutControlItem9";
     this.layoutControlItem9.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem9.TextToControlDistance = 0;
     this.layoutControlItem9.TextVisible           = false;
     //
     // layoutControlItem10
     //
     this.layoutControlItem10.Control = this.btnCancel;
     this.layoutControlItem10.CustomizationFormText = "layoutControlItem10";
     this.layoutControlItem10.Location = new System.Drawing.Point(144, 283);
     this.layoutControlItem10.Name     = "layoutControlItem10";
     this.layoutControlItem10.Size     = new System.Drawing.Size(140, 30);
     this.layoutControlItem10.Text     = "layoutControlItem10";
     this.layoutControlItem10.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem10.TextToControlDistance = 0;
     this.layoutControlItem10.TextVisible           = false;
     //
     // FrmConnSDE
     //
     this.ClientSize = new System.Drawing.Size(284, 313);
     this.Controls.Add(this.layoutControl1);
     this.Name     = "FrmConnSDE";
     this.ShowIcon = false;
     this.Text     = "连接SDE";
     this.Load    += new System.EventHandler(this.FrmConnSDE_Load);
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl1)).EndInit();
     this.layoutControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ceVersion.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbVersion.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.teUserPwd.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.teUserName.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.teDatabase.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.teInstance.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.teServer.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem11)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem12)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem13)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem6)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem14)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem15)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem7)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem8)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem16)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem9)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem10)).EndInit();
     this.ResumeLayout(false);
 }
示例#38
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();
            DevExpress.XtraGrid.GridLevelNode gridLevelNode1 = new DevExpress.XtraGrid.GridLevelNode();
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(OptionsForm));
            this.xtraTabControl_Options = new DevExpress.XtraTab.XtraTabControl();
            this.xtraTabPage_ComPortSet = new DevExpress.XtraTab.XtraTabPage();
            this.groupControl_ComPortSet = new DevExpress.XtraEditors.GroupControl();
            this.simpleButton1 = new DevExpress.XtraEditors.SimpleButton();
            this.radioButton1 = new System.Windows.Forms.RadioButton();
            this.radioButton2 = new System.Windows.Forms.RadioButton();
            this.radioButton3 = new System.Windows.Forms.RadioButton();
            this.radioButton4 = new System.Windows.Forms.RadioButton();
            this.simpleButton6 = new DevExpress.XtraEditors.SimpleButton();
            this.xtraTabPage_AutoShutDown = new DevExpress.XtraTab.XtraTabPage();
            this.groupControl2 = new DevExpress.XtraEditors.GroupControl();
            this.checkEdit1 = new DevExpress.XtraEditors.CheckEdit();
            this.timeEdit_DutyStartTime = new DevExpress.XtraEditors.TimeEdit();
            this.notePanel_ShutDownTime = new DevExpress.Utils.Frames.NotePanel();
            this.simpleButton3 = new DevExpress.XtraEditors.SimpleButton();
            this.simpleButton5 = new DevExpress.XtraEditors.SimpleButton();
            this.checkEdit2 = new DevExpress.XtraEditors.CheckEdit();
            this.notePanel2 = new DevExpress.Utils.Frames.NotePanel();
            this.xtraTabPage_AutoSendSmsTimeSet = new DevExpress.XtraTab.XtraTabPage();
            this.groupControl3 = new DevExpress.XtraEditors.GroupControl();
            this.timeEdit_SMSMorningTime = new DevExpress.XtraEditors.TimeEdit();
            this.notePanel3 = new DevExpress.Utils.Frames.NotePanel();
            this.simpleButton4 = new DevExpress.XtraEditors.SimpleButton();
            this.notePanel5 = new DevExpress.Utils.Frames.NotePanel();
            this.timeEdit_SMSNightTime = new DevExpress.XtraEditors.TimeEdit();
            this.notePanel6 = new DevExpress.Utils.Frames.NotePanel();
            this.simpleButton7 = new DevExpress.XtraEditors.SimpleButton();
            this.notePanel4 = new DevExpress.Utils.Frames.NotePanel();
            this.xtraTabPage1 = new DevExpress.XtraTab.XtraTabPage();
            this.groupControl4 = new DevExpress.XtraEditors.GroupControl();
            this.textEdit_NewPwd = new DevExpress.XtraEditors.TextEdit();
            this.notePanel1 = new DevExpress.Utils.Frames.NotePanel();
            this.simpleButton8 = new DevExpress.XtraEditors.SimpleButton();
            this.notePanel7 = new DevExpress.Utils.Frames.NotePanel();
            this.simpleButton9 = new DevExpress.XtraEditors.SimpleButton();
            this.textEdit_ConfirmPwd = new DevExpress.XtraEditors.TextEdit();
            this.notePanel8 = new DevExpress.Utils.Frames.NotePanel();
            this.textEdit_OldPwd = new DevExpress.XtraEditors.TextEdit();
            this.xtraTabPage2 = new DevExpress.XtraTab.XtraTabPage();
            this.groupControl1 = new DevExpress.XtraEditors.GroupControl();
            this.textEdit_UpdateAddress = new DevExpress.XtraEditors.TextEdit();
            this.simpleButton2 = new DevExpress.XtraEditors.SimpleButton();
            this.simpleButton10 = new DevExpress.XtraEditors.SimpleButton();
            this.xtraTabPage3 = new DevExpress.XtraTab.XtraTabPage();
            this.groupControl5 = new DevExpress.XtraEditors.GroupControl();
            this.textEdit_DBUser = new DevExpress.XtraEditors.TextEdit();
            this.notePanel9 = new DevExpress.Utils.Frames.NotePanel();
            this.notePanel10 = new DevExpress.Utils.Frames.NotePanel();
            this.textEdit_DBPwd = new DevExpress.XtraEditors.TextEdit();
            this.notePanel11 = new DevExpress.Utils.Frames.NotePanel();
            this.textEdit_DBName = new DevExpress.XtraEditors.TextEdit();
            this.simpleButton11 = new DevExpress.XtraEditors.SimpleButton();
            this.simpleButton12 = new DevExpress.XtraEditors.SimpleButton();
            this.xtraTabPage_BatchCreate = new DevExpress.XtraTab.XtraTabPage();
            this.splitContainerControl1 = new DevExpress.XtraEditors.SplitContainerControl();
            this.groupControl8 = new DevExpress.XtraEditors.GroupControl();
            this.textEdit_ClassVol = new DevExpress.XtraEditors.TextEdit();
            this.textEdit_BatchCreate_TerminalNumbers = new DevExpress.XtraEditors.TextEdit();
            this.textEdit_BatchCreate_ClassNumbers = new DevExpress.XtraEditors.TextEdit();
            this.notePanel_ClassVol = new DevExpress.Utils.Frames.NotePanel();
            this.notePanel_BatchCreate_TerminalNumbers = new DevExpress.Utils.Frames.NotePanel();
            this.notePanel_BatchCreate_ClassNumbers = new DevExpress.Utils.Frames.NotePanel();
            this.groupControl6 = new DevExpress.XtraEditors.GroupControl();
            this.textEdit_BatchCreate_CardNumber = new DevExpress.XtraEditors.TextEdit();
            this.notePanel_BatchCreate_CardNumber = new DevExpress.Utils.Frames.NotePanel();
            this.comboBoxEdit_BatchCreate_Load = new DevExpress.XtraEditors.ComboBoxEdit();
            this.comboBoxEdit_BatchCreate_Type = new DevExpress.XtraEditors.ComboBoxEdit();
            this.textEdit_BatchCreate_Number = new DevExpress.XtraEditors.TextEdit();
            this.textEdit_BatchCreate_Name = new DevExpress.XtraEditors.TextEdit();
            this.comboBoxEdit_BatchCreate_Class = new DevExpress.XtraEditors.ComboBoxEdit();
            this.comboBoxEdit_BatchCreate_Grade = new DevExpress.XtraEditors.ComboBoxEdit();
            this.notePanel_BatchCreate_Load = new DevExpress.Utils.Frames.NotePanel();
            this.notePanel_BatchCreate_Type = new DevExpress.Utils.Frames.NotePanel();
            this.notePanel_BatchCreate_Number = new DevExpress.Utils.Frames.NotePanel();
            this.notePanel_BatchCreate_Name = new DevExpress.Utils.Frames.NotePanel();
            this.notePanel_BatchCreate_Class = new DevExpress.Utils.Frames.NotePanel();
            this.notePanel_BatchCreate_Grade = new DevExpress.Utils.Frames.NotePanel();
            this.groupControl7 = new DevExpress.XtraEditors.GroupControl();
            this.gridControl_BatchCreate_Machine = new DevExpress.XtraGrid.GridControl();
            this.gridView7 = new DevExpress.XtraGrid.Views.Grid.GridView();
            this.gridColumn48 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn47 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn35 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn36 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn37 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.repositoryItemTextEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
            this.repositoryItemTextEdit2 = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
            this.gridControl_BatchCreate_TeaCard = new DevExpress.XtraGrid.GridControl();
            this.gridView6 = new DevExpress.XtraGrid.Views.Grid.GridView();
            this.gridColumn30 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn31 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn32 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn33 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn34 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn46 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridControl1_BatchCreate_TeaBasicInfo = new DevExpress.XtraGrid.GridControl();
            this.gridView5 = new DevExpress.XtraGrid.Views.Grid.GridView();
            this.gridColumn24 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn25 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn26 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn27 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn28 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn29 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridControl_BatchCreate_StuCard = new DevExpress.XtraGrid.GridControl();
            this.gridView4 = new DevExpress.XtraGrid.Views.Grid.GridView();
            this.gridColumn18 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn19 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn20 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn21 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn22 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn23 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn45 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridControl_BatchCreate_StuBasicInfo = new DevExpress.XtraGrid.GridControl();
            this.advBandedGridView1 = new DevExpress.XtraGrid.Views.BandedGrid.AdvBandedGridView();
            this.gridBand1 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
            this.gridColumn10 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.gridColumn11 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.gridColumn41 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.gridColumn16 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.gridColumn44 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.gridColumn15 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.gridColumn9 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.gridColumn12 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.gridColumn42 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.gridColumn14 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.gridColumn43 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.gridColumn13 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.gridColumn17 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.gridControl_BatchCreate_Class = new DevExpress.XtraGrid.GridControl();
            this.gridView2 = new DevExpress.XtraGrid.Views.Grid.GridView();
            this.gridColumn4 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn5 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn6 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn7 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn8 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn39 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn40 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridControl_BatchCreate_Grade = new DevExpress.XtraGrid.GridControl();
            this.gridView1 = new DevExpress.XtraGrid.Views.Grid.GridView();
            this.gridColumn1 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn2 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn3 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn38 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.xtraTabPage_UpdateGrade = new DevExpress.XtraTab.XtraTabPage();
            this.splitContainerControl2 = new DevExpress.XtraEditors.SplitContainerControl();
            this.groupControl9 = new DevExpress.XtraEditors.GroupControl();
            this.comboBoxEdit_ClassNumber = new DevExpress.XtraEditors.ComboBoxEdit();
            this.notePanel_ClassNumber = new DevExpress.Utils.Frames.NotePanel();
            this.comboBoxEdit_GradeNumber = new DevExpress.XtraEditors.ComboBoxEdit();
            this.notePanel_GradeNumber = new DevExpress.Utils.Frames.NotePanel();
            this.notePanel12 = new DevExpress.Utils.Frames.NotePanel();
            this.textEdit_DestClass = new DevExpress.XtraEditors.TextEdit();
            this.notePanel_DestClass = new DevExpress.Utils.Frames.NotePanel();
            this.comboBoxEdit_SrcClass = new DevExpress.XtraEditors.ComboBoxEdit();
            this.notePanel_SrcClass = new DevExpress.Utils.Frames.NotePanel();
            this.textEdit_DestGrade = new DevExpress.XtraEditors.TextEdit();
            this.notePanel_DestGrade = new DevExpress.Utils.Frames.NotePanel();
            this.comboBoxEdit_SrcGrade = new DevExpress.XtraEditors.ComboBoxEdit();
            this.notePanel_SrcGrade = new DevExpress.Utils.Frames.NotePanel();
            this.groupControl10 = new DevExpress.XtraEditors.GroupControl();
            this.gridControl_StudentAdjust = new DevExpress.XtraGrid.GridControl();
            this.gridView3 = new DevExpress.XtraGrid.Views.Grid.GridView();
            this.gridColumn49 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.repositoryItemCheckEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
            this.gridColumn51 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn54 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn55 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn56 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.notePanel13 = new DevExpress.Utils.Frames.NotePanel();
            this.panelControl1 = new DevExpress.XtraEditors.PanelControl();
            this.simpleButton_Submit = new DevExpress.XtraEditors.SimpleButton();
            this.simpleButton_LoadTable = new DevExpress.XtraEditors.SimpleButton();
            this.splitterControl1 = new DevExpress.XtraEditors.SplitterControl();
            this.xtraTabPage_TerminalServ = new DevExpress.XtraTab.XtraTabPage();
            this.gridControl_SessionUser = new DevExpress.XtraGrid.GridControl();
            this.gridView9 = new DevExpress.XtraGrid.Views.Grid.GridView();
            this.gridColumn50 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn52 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn53 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn57 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridView8 = new DevExpress.XtraGrid.Views.Grid.GridView();
            this.xtraTabPage4 = new DevExpress.XtraTab.XtraTabPage();
            this.groupControl11 = new DevExpress.XtraEditors.GroupControl();
            this.groupControl12 = new DevExpress.XtraEditors.GroupControl();
            this.rbtDefault = new System.Windows.Forms.RadioButton();
            this.rbtIdle = new System.Windows.Forms.RadioButton();
            this.rbtStart = new System.Windows.Forms.RadioButton();
            this.smbBackUp = new DevExpress.XtraEditors.SimpleButton();
            this.tbxBackUpRoot = new System.Windows.Forms.TextBox();
            this.smbRoot = new DevExpress.XtraEditors.SimpleButton();
            this.xtraTabPage5 = new DevExpress.XtraTab.XtraTabPage();
            this.groupBox1 = new System.Windows.Forms.GroupBox();
            this.button1 = new System.Windows.Forms.Button();
            this.label1 = new System.Windows.Forms.Label();
            this.tbxUploadUrl = new System.Windows.Forms.TextBox();
            this.barManager1 = new DevExpress.XtraBars.BarManager(this.components);
            this.popupMenu1 = new DevExpress.XtraBars.PopupMenu(this.components);
            this.barButtonItem_Refresh = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItem_Add = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItem_Save = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItem_Modify = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItem_Delete = new DevExpress.XtraBars.BarButtonItem();
            this.popupMenu2 = new DevExpress.XtraBars.PopupMenu(this.components);
            this.barButtonItem_DeleteSession = new DevExpress.XtraBars.BarButtonItem();
            this.barDockControlTop = new DevExpress.XtraBars.BarDockControl();
            this.barDockControlBottom = new DevExpress.XtraBars.BarDockControl();
            this.barDockControlLeft = new DevExpress.XtraBars.BarDockControl();
            this.barDockControlRight = new DevExpress.XtraBars.BarDockControl();
            this.barButtonItem1 = new DevExpress.XtraBars.BarButtonItem();
            this.openFileDialog_LoadStuInfoXLS = new System.Windows.Forms.OpenFileDialog();
            this.saveFileDialog_BatchCreate = new System.Windows.Forms.SaveFileDialog();
            this.saveFileDialog_createbackup = new System.Windows.Forms.SaveFileDialog();
            ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl_Options)).BeginInit();
            this.xtraTabControl_Options.SuspendLayout();
            this.xtraTabPage_ComPortSet.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.groupControl_ComPortSet)).BeginInit();
            this.groupControl_ComPortSet.SuspendLayout();
            this.xtraTabPage_AutoShutDown.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).BeginInit();
            this.groupControl2.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.checkEdit1.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.timeEdit_DutyStartTime.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.checkEdit2.Properties)).BeginInit();
            this.xtraTabPage_AutoSendSmsTimeSet.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.groupControl3)).BeginInit();
            this.groupControl3.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.timeEdit_SMSMorningTime.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.timeEdit_SMSNightTime.Properties)).BeginInit();
            this.xtraTabPage1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.groupControl4)).BeginInit();
            this.groupControl4.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_NewPwd.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_ConfirmPwd.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_OldPwd.Properties)).BeginInit();
            this.xtraTabPage2.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
            this.groupControl1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_UpdateAddress.Properties)).BeginInit();
            this.xtraTabPage3.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.groupControl5)).BeginInit();
            this.groupControl5.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_DBUser.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_DBPwd.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_DBName.Properties)).BeginInit();
            this.xtraTabPage_BatchCreate.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl1)).BeginInit();
            this.splitContainerControl1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.groupControl8)).BeginInit();
            this.groupControl8.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_ClassVol.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_BatchCreate_TerminalNumbers.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_BatchCreate_ClassNumbers.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.groupControl6)).BeginInit();
            this.groupControl6.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_BatchCreate_CardNumber.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_BatchCreate_Load.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_BatchCreate_Type.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_BatchCreate_Number.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_BatchCreate_Name.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_BatchCreate_Class.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_BatchCreate_Grade.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.groupControl7)).BeginInit();
            this.groupControl7.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.gridControl_BatchCreate_Machine)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridView7)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridControl_BatchCreate_TeaCard)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridView6)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridControl1_BatchCreate_TeaBasicInfo)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridView5)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridControl_BatchCreate_StuCard)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridView4)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridControl_BatchCreate_StuBasicInfo)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.advBandedGridView1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridControl_BatchCreate_Class)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridView2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridControl_BatchCreate_Grade)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
            this.xtraTabPage_UpdateGrade.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl2)).BeginInit();
            this.splitContainerControl2.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.groupControl9)).BeginInit();
            this.groupControl9.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_ClassNumber.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_GradeNumber.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_DestClass.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_SrcClass.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_DestGrade.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_SrcGrade.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.groupControl10)).BeginInit();
            this.groupControl10.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.gridControl_StudentAdjust)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridView3)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
            this.panelControl1.SuspendLayout();
            this.xtraTabPage_TerminalServ.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.gridControl_SessionUser)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridView9)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridView8)).BeginInit();
            this.xtraTabPage4.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.groupControl11)).BeginInit();
            this.groupControl11.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.groupControl12)).BeginInit();
            this.groupControl12.SuspendLayout();
            this.xtraTabPage5.SuspendLayout();
            this.groupBox1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.barManager1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.popupMenu1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.popupMenu2)).BeginInit();
            this.SuspendLayout();
            // 
            // xtraTabControl_Options
            // 
            this.xtraTabControl_Options.Appearance.BackColor = System.Drawing.Color.WhiteSmoke;
            this.xtraTabControl_Options.Appearance.Options.UseBackColor = true;
            this.xtraTabControl_Options.AppearancePage.HeaderActive.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
            this.xtraTabControl_Options.AppearancePage.HeaderActive.ForeColor = System.Drawing.Color.DarkOrange;
            this.xtraTabControl_Options.AppearancePage.HeaderActive.Options.UseFont = true;
            this.xtraTabControl_Options.AppearancePage.HeaderActive.Options.UseForeColor = true;
            this.xtraTabControl_Options.Dock = System.Windows.Forms.DockStyle.Fill;
            this.xtraTabControl_Options.Location = new System.Drawing.Point(0, 0);
            this.xtraTabControl_Options.Name = "xtraTabControl_Options";
            this.xtraTabControl_Options.SelectedTabPage = this.xtraTabPage3;
            this.xtraTabControl_Options.Size = new System.Drawing.Size(688, 429);
            this.xtraTabControl_Options.TabIndex = 0;
            this.xtraTabControl_Options.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
            this.xtraTabPage_ComPortSet,
            this.xtraTabPage_AutoShutDown,
            this.xtraTabPage_AutoSendSmsTimeSet,
            this.xtraTabPage1,
            this.xtraTabPage2,
            this.xtraTabPage3,
            this.xtraTabPage_BatchCreate,
            this.xtraTabPage_UpdateGrade,
            this.xtraTabPage_TerminalServ,
            this.xtraTabPage4,
            this.xtraTabPage5});
            // 
            // xtraTabPage_ComPortSet
            // 
            this.xtraTabPage_ComPortSet.Appearance.PageClient.BackColor = System.Drawing.Color.WhiteSmoke;
            this.xtraTabPage_ComPortSet.Appearance.PageClient.Options.UseBackColor = true;
            this.xtraTabPage_ComPortSet.Controls.Add(this.groupControl_ComPortSet);
            this.xtraTabPage_ComPortSet.Name = "xtraTabPage_ComPortSet";
            this.xtraTabPage_ComPortSet.Size = new System.Drawing.Size(682, 400);
            this.xtraTabPage_ComPortSet.Text = "串口设定";
            // 
            // groupControl_ComPortSet
            // 
            this.groupControl_ComPortSet.Controls.Add(this.simpleButton1);
            this.groupControl_ComPortSet.Controls.Add(this.radioButton1);
            this.groupControl_ComPortSet.Controls.Add(this.radioButton2);
            this.groupControl_ComPortSet.Controls.Add(this.radioButton3);
            this.groupControl_ComPortSet.Controls.Add(this.radioButton4);
            this.groupControl_ComPortSet.Controls.Add(this.simpleButton6);
            this.groupControl_ComPortSet.Location = new System.Drawing.Point(184, 64);
            this.groupControl_ComPortSet.Name = "groupControl_ComPortSet";
            this.groupControl_ComPortSet.Size = new System.Drawing.Size(312, 216);
            this.groupControl_ComPortSet.TabIndex = 0;
            this.groupControl_ComPortSet.Text = "请选择管理机同电脑连接的串口";
            // 
            // simpleButton1
            // 
            this.simpleButton1.Location = new System.Drawing.Point(160, 184);
            this.simpleButton1.Name = "simpleButton1";
            this.simpleButton1.Size = new System.Drawing.Size(56, 23);
            this.simpleButton1.TabIndex = 1;
            this.simpleButton1.Text = "确定";
            this.simpleButton1.Click += new System.EventHandler(this.simpleButton1_Click);
            // 
            // radioButton1
            // 
            this.radioButton1.Location = new System.Drawing.Point(40, 32);
            this.radioButton1.Name = "radioButton1";
            this.radioButton1.Size = new System.Drawing.Size(104, 24);
            this.radioButton1.TabIndex = 0;
            this.radioButton1.Text = "串口1";
            // 
            // radioButton2
            // 
            this.radioButton2.Location = new System.Drawing.Point(168, 32);
            this.radioButton2.Name = "radioButton2";
            this.radioButton2.Size = new System.Drawing.Size(104, 24);
            this.radioButton2.TabIndex = 0;
            this.radioButton2.Text = "串口2";
            // 
            // radioButton3
            // 
            this.radioButton3.Location = new System.Drawing.Point(168, 80);
            this.radioButton3.Name = "radioButton3";
            this.radioButton3.Size = new System.Drawing.Size(104, 24);
            this.radioButton3.TabIndex = 0;
            this.radioButton3.Text = "串口4";
            // 
            // radioButton4
            // 
            this.radioButton4.Location = new System.Drawing.Point(40, 80);
            this.radioButton4.Name = "radioButton4";
            this.radioButton4.Size = new System.Drawing.Size(104, 24);
            this.radioButton4.TabIndex = 0;
            this.radioButton4.Text = "串口3";
            // 
            // simpleButton6
            // 
            this.simpleButton6.Location = new System.Drawing.Point(232, 184);
            this.simpleButton6.Name = "simpleButton6";
            this.simpleButton6.Size = new System.Drawing.Size(56, 23);
            this.simpleButton6.TabIndex = 1;
            this.simpleButton6.Text = "取消";
            this.simpleButton6.Click += new System.EventHandler(this.simpleButton6_Click);
            // 
            // xtraTabPage_AutoShutDown
            // 
            this.xtraTabPage_AutoShutDown.Appearance.PageClient.BackColor = System.Drawing.Color.WhiteSmoke;
            this.xtraTabPage_AutoShutDown.Appearance.PageClient.Options.UseBackColor = true;
            this.xtraTabPage_AutoShutDown.Controls.Add(this.groupControl2);
            this.xtraTabPage_AutoShutDown.Controls.Add(this.notePanel2);
            this.xtraTabPage_AutoShutDown.Name = "xtraTabPage_AutoShutDown";
            this.xtraTabPage_AutoShutDown.Size = new System.Drawing.Size(682, 400);
            this.xtraTabPage_AutoShutDown.Text = "关机时间设置";
            // 
            // groupControl2
            // 
            this.groupControl2.Controls.Add(this.checkEdit1);
            this.groupControl2.Controls.Add(this.timeEdit_DutyStartTime);
            this.groupControl2.Controls.Add(this.notePanel_ShutDownTime);
            this.groupControl2.Controls.Add(this.simpleButton3);
            this.groupControl2.Controls.Add(this.simpleButton5);
            this.groupControl2.Controls.Add(this.checkEdit2);
            this.groupControl2.Location = new System.Drawing.Point(168, 48);
            this.groupControl2.Name = "groupControl2";
            this.groupControl2.Size = new System.Drawing.Size(312, 216);
            this.groupControl2.TabIndex = 8;
            this.groupControl2.Text = "设置";
            // 
            // checkEdit1
            // 
            this.checkEdit1.Location = new System.Drawing.Point(68, 128);
            this.checkEdit1.Name = "checkEdit1";
            this.checkEdit1.Properties.Caption = "启动时自动运行";
            this.checkEdit1.Size = new System.Drawing.Size(180, 19);
            this.checkEdit1.TabIndex = 16;
            // 
            // timeEdit_DutyStartTime
            // 
            this.timeEdit_DutyStartTime.EditValue = new System.DateTime(2005, 8, 29, 0, 0, 0, 0);
            this.timeEdit_DutyStartTime.Location = new System.Drawing.Point(156, 48);
            this.timeEdit_DutyStartTime.Name = "timeEdit_DutyStartTime";
            this.timeEdit_DutyStartTime.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton()});
            this.timeEdit_DutyStartTime.Size = new System.Drawing.Size(88, 20);
            this.timeEdit_DutyStartTime.TabIndex = 15;
            // 
            // notePanel_ShutDownTime
            // 
            this.notePanel_ShutDownTime.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel_ShutDownTime.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel_ShutDownTime.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel_ShutDownTime.ForeColor = System.Drawing.Color.Black;
            this.notePanel_ShutDownTime.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_ShutDownTime.Location = new System.Drawing.Point(68, 48);
            this.notePanel_ShutDownTime.MaxRows = 5;
            this.notePanel_ShutDownTime.Name = "notePanel_ShutDownTime";
            this.notePanel_ShutDownTime.ParentAutoHeight = true;
            this.notePanel_ShutDownTime.Size = new System.Drawing.Size(80, 22);
            this.notePanel_ShutDownTime.TabIndex = 14;
            this.notePanel_ShutDownTime.TabStop = false;
            this.notePanel_ShutDownTime.Text = "关机时间";
            // 
            // simpleButton3
            // 
            this.simpleButton3.Location = new System.Drawing.Point(160, 184);
            this.simpleButton3.Name = "simpleButton3";
            this.simpleButton3.Size = new System.Drawing.Size(56, 23);
            this.simpleButton3.TabIndex = 1;
            this.simpleButton3.Text = "确定";
            this.simpleButton3.Click += new System.EventHandler(this.simpleButton3_Click);
            // 
            // simpleButton5
            // 
            this.simpleButton5.Location = new System.Drawing.Point(232, 184);
            this.simpleButton5.Name = "simpleButton5";
            this.simpleButton5.Size = new System.Drawing.Size(56, 23);
            this.simpleButton5.TabIndex = 1;
            this.simpleButton5.Text = "取消";
            this.simpleButton5.Click += new System.EventHandler(this.simpleButton5_Click);
            // 
            // checkEdit2
            // 
            this.checkEdit2.Location = new System.Drawing.Point(68, 88);
            this.checkEdit2.Name = "checkEdit2";
            this.checkEdit2.Properties.Caption = "开启自动关机";
            this.checkEdit2.Size = new System.Drawing.Size(180, 19);
            this.checkEdit2.TabIndex = 16;
            this.checkEdit2.CheckedChanged += new System.EventHandler(this.checkEdit2_CheckedChanged);
            // 
            // notePanel2
            // 
            this.notePanel2.BackColor = System.Drawing.Color.LightGoldenrodYellow;
            this.notePanel2.ForeColor = System.Drawing.Color.Gray;
            this.notePanel2.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel2.Location = new System.Drawing.Point(168, 280);
            this.notePanel2.MaxRows = 5;
            this.notePanel2.Name = "notePanel2";
            this.notePanel2.ParentAutoHeight = true;
            this.notePanel2.Size = new System.Drawing.Size(272, 23);
            this.notePanel2.TabIndex = 9;
            this.notePanel2.TabStop = false;
            this.notePanel2.Text = "自动关机功能已启动";
            this.notePanel2.Visible = false;
            // 
            // xtraTabPage_AutoSendSmsTimeSet
            // 
            this.xtraTabPage_AutoSendSmsTimeSet.Appearance.PageClient.BackColor = System.Drawing.Color.WhiteSmoke;
            this.xtraTabPage_AutoSendSmsTimeSet.Appearance.PageClient.Options.UseBackColor = true;
            this.xtraTabPage_AutoSendSmsTimeSet.Controls.Add(this.groupControl3);
            this.xtraTabPage_AutoSendSmsTimeSet.Controls.Add(this.notePanel4);
            this.xtraTabPage_AutoSendSmsTimeSet.Name = "xtraTabPage_AutoSendSmsTimeSet";
            this.xtraTabPage_AutoSendSmsTimeSet.Size = new System.Drawing.Size(682, 400);
            this.xtraTabPage_AutoSendSmsTimeSet.Text = "短信功能设置";
            // 
            // groupControl3
            // 
            this.groupControl3.Controls.Add(this.timeEdit_SMSMorningTime);
            this.groupControl3.Controls.Add(this.notePanel3);
            this.groupControl3.Controls.Add(this.simpleButton4);
            this.groupControl3.Controls.Add(this.notePanel5);
            this.groupControl3.Controls.Add(this.timeEdit_SMSNightTime);
            this.groupControl3.Controls.Add(this.notePanel6);
            this.groupControl3.Controls.Add(this.simpleButton7);
            this.groupControl3.Location = new System.Drawing.Point(168, 56);
            this.groupControl3.Name = "groupControl3";
            this.groupControl3.Size = new System.Drawing.Size(312, 216);
            this.groupControl3.TabIndex = 10;
            this.groupControl3.Text = "设置";
            // 
            // timeEdit_SMSMorningTime
            // 
            this.timeEdit_SMSMorningTime.EditValue = new System.DateTime(2005, 8, 29, 0, 0, 0, 0);
            this.timeEdit_SMSMorningTime.Location = new System.Drawing.Point(152, 96);
            this.timeEdit_SMSMorningTime.Name = "timeEdit_SMSMorningTime";
            this.timeEdit_SMSMorningTime.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton()});
            this.timeEdit_SMSMorningTime.Size = new System.Drawing.Size(88, 20);
            this.timeEdit_SMSMorningTime.TabIndex = 15;
            // 
            // notePanel3
            // 
            this.notePanel3.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel3.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel3.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel3.ForeColor = System.Drawing.Color.Black;
            this.notePanel3.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel3.Location = new System.Drawing.Point(64, 96);
            this.notePanel3.MaxRows = 5;
            this.notePanel3.Name = "notePanel3";
            this.notePanel3.ParentAutoHeight = true;
            this.notePanel3.Size = new System.Drawing.Size(80, 22);
            this.notePanel3.TabIndex = 14;
            this.notePanel3.TabStop = false;
            this.notePanel3.Text = "迟到时间";
            // 
            // simpleButton4
            // 
            this.simpleButton4.Location = new System.Drawing.Point(160, 184);
            this.simpleButton4.Name = "simpleButton4";
            this.simpleButton4.Size = new System.Drawing.Size(56, 23);
            this.simpleButton4.TabIndex = 1;
            this.simpleButton4.Text = "确定";
            this.simpleButton4.Click += new System.EventHandler(this.simpleButton4_Click);
            // 
            // notePanel5
            // 
            this.notePanel5.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel5.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel5.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel5.ForeColor = System.Drawing.Color.Black;
            this.notePanel5.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel5.Location = new System.Drawing.Point(64, 128);
            this.notePanel5.MaxRows = 5;
            this.notePanel5.Name = "notePanel5";
            this.notePanel5.ParentAutoHeight = true;
            this.notePanel5.Size = new System.Drawing.Size(80, 22);
            this.notePanel5.TabIndex = 14;
            this.notePanel5.TabStop = false;
            this.notePanel5.Text = "晚接时间";
            // 
            // timeEdit_SMSNightTime
            // 
            this.timeEdit_SMSNightTime.EditValue = new System.DateTime(2005, 8, 29, 0, 0, 0, 0);
            this.timeEdit_SMSNightTime.Location = new System.Drawing.Point(152, 128);
            this.timeEdit_SMSNightTime.Name = "timeEdit_SMSNightTime";
            this.timeEdit_SMSNightTime.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton()});
            this.timeEdit_SMSNightTime.Size = new System.Drawing.Size(88, 20);
            this.timeEdit_SMSNightTime.TabIndex = 15;
            // 
            // notePanel6
            // 
            this.notePanel6.BackColor = System.Drawing.Color.LightGoldenrodYellow;
            this.notePanel6.Dock = System.Windows.Forms.DockStyle.Top;
            this.notePanel6.ForeColor = System.Drawing.Color.Gray;
            this.notePanel6.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel6.Location = new System.Drawing.Point(2, 22);
            this.notePanel6.MaxRows = 5;
            this.notePanel6.Name = "notePanel6";
            this.notePanel6.ParentAutoHeight = true;
            this.notePanel6.Size = new System.Drawing.Size(308, 52);
            this.notePanel6.TabIndex = 11;
            this.notePanel6.TabStop = false;
            this.notePanel6.Text = "当每日时间到达迟到时间,晚接时间,如果注册过短信服务的学生仍为到校,系统将会自动向手机发出信息提示!";
            // 
            // simpleButton7
            // 
            this.simpleButton7.Location = new System.Drawing.Point(232, 184);
            this.simpleButton7.Name = "simpleButton7";
            this.simpleButton7.Size = new System.Drawing.Size(56, 23);
            this.simpleButton7.TabIndex = 1;
            this.simpleButton7.Text = "取消";
            this.simpleButton7.Click += new System.EventHandler(this.simpleButton7_Click);
            // 
            // notePanel4
            // 
            this.notePanel4.BackColor = System.Drawing.Color.LightGoldenrodYellow;
            this.notePanel4.ForeColor = System.Drawing.Color.Gray;
            this.notePanel4.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel4.Location = new System.Drawing.Point(184, 288);
            this.notePanel4.MaxRows = 5;
            this.notePanel4.Name = "notePanel4";
            this.notePanel4.ParentAutoHeight = true;
            this.notePanel4.Size = new System.Drawing.Size(272, 23);
            this.notePanel4.TabIndex = 11;
            this.notePanel4.TabStop = false;
            this.notePanel4.Text = "短信自动发送时间设定成功";
            this.notePanel4.Visible = false;
            // 
            // xtraTabPage1
            // 
            this.xtraTabPage1.Appearance.PageClient.BackColor = System.Drawing.Color.WhiteSmoke;
            this.xtraTabPage1.Appearance.PageClient.Options.UseBackColor = true;
            this.xtraTabPage1.Controls.Add(this.groupControl4);
            this.xtraTabPage1.Name = "xtraTabPage1";
            this.xtraTabPage1.Size = new System.Drawing.Size(682, 400);
            this.xtraTabPage1.Text = "修改个人密码";
            // 
            // groupControl4
            // 
            this.groupControl4.Controls.Add(this.textEdit_NewPwd);
            this.groupControl4.Controls.Add(this.notePanel1);
            this.groupControl4.Controls.Add(this.simpleButton8);
            this.groupControl4.Controls.Add(this.notePanel7);
            this.groupControl4.Controls.Add(this.simpleButton9);
            this.groupControl4.Controls.Add(this.textEdit_ConfirmPwd);
            this.groupControl4.Controls.Add(this.notePanel8);
            this.groupControl4.Controls.Add(this.textEdit_OldPwd);
            this.groupControl4.Location = new System.Drawing.Point(176, 64);
            this.groupControl4.Name = "groupControl4";
            this.groupControl4.Size = new System.Drawing.Size(312, 216);
            this.groupControl4.TabIndex = 11;
            this.groupControl4.Text = "请输入修改密码";
            // 
            // textEdit_NewPwd
            // 
            this.textEdit_NewPwd.EditValue = "";
            this.textEdit_NewPwd.Location = new System.Drawing.Point(160, 72);
            this.textEdit_NewPwd.Name = "textEdit_NewPwd";
            this.textEdit_NewPwd.Properties.PasswordChar = '*';
            this.textEdit_NewPwd.Size = new System.Drawing.Size(88, 20);
            this.textEdit_NewPwd.TabIndex = 17;
            // 
            // notePanel1
            // 
            this.notePanel1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel1.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel1.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel1.ForeColor = System.Drawing.Color.Black;
            this.notePanel1.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel1.Location = new System.Drawing.Point(72, 72);
            this.notePanel1.MaxRows = 5;
            this.notePanel1.Name = "notePanel1";
            this.notePanel1.ParentAutoHeight = true;
            this.notePanel1.Size = new System.Drawing.Size(80, 22);
            this.notePanel1.TabIndex = 14;
            this.notePanel1.TabStop = false;
            this.notePanel1.Text = "修改密码";
            // 
            // simpleButton8
            // 
            this.simpleButton8.Location = new System.Drawing.Point(128, 144);
            this.simpleButton8.Name = "simpleButton8";
            this.simpleButton8.Size = new System.Drawing.Size(56, 23);
            this.simpleButton8.TabIndex = 1;
            this.simpleButton8.Text = "确定";
            this.simpleButton8.Click += new System.EventHandler(this.simpleButton8_Click);
            // 
            // notePanel7
            // 
            this.notePanel7.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel7.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel7.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel7.ForeColor = System.Drawing.Color.Black;
            this.notePanel7.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel7.Location = new System.Drawing.Point(72, 104);
            this.notePanel7.MaxRows = 5;
            this.notePanel7.Name = "notePanel7";
            this.notePanel7.ParentAutoHeight = true;
            this.notePanel7.Size = new System.Drawing.Size(80, 22);
            this.notePanel7.TabIndex = 14;
            this.notePanel7.TabStop = false;
            this.notePanel7.Text = "确认密码";
            // 
            // simpleButton9
            // 
            this.simpleButton9.Location = new System.Drawing.Point(192, 144);
            this.simpleButton9.Name = "simpleButton9";
            this.simpleButton9.Size = new System.Drawing.Size(56, 23);
            this.simpleButton9.TabIndex = 1;
            this.simpleButton9.Text = "取消";
            this.simpleButton9.Click += new System.EventHandler(this.simpleButton9_Click);
            // 
            // textEdit_ConfirmPwd
            // 
            this.textEdit_ConfirmPwd.EditValue = "";
            this.textEdit_ConfirmPwd.Location = new System.Drawing.Point(160, 104);
            this.textEdit_ConfirmPwd.Name = "textEdit_ConfirmPwd";
            this.textEdit_ConfirmPwd.Properties.PasswordChar = '*';
            this.textEdit_ConfirmPwd.Size = new System.Drawing.Size(88, 20);
            this.textEdit_ConfirmPwd.TabIndex = 18;
            // 
            // notePanel8
            // 
            this.notePanel8.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel8.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel8.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel8.ForeColor = System.Drawing.Color.Black;
            this.notePanel8.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel8.Location = new System.Drawing.Point(72, 40);
            this.notePanel8.MaxRows = 5;
            this.notePanel8.Name = "notePanel8";
            this.notePanel8.ParentAutoHeight = true;
            this.notePanel8.Size = new System.Drawing.Size(80, 22);
            this.notePanel8.TabIndex = 14;
            this.notePanel8.TabStop = false;
            this.notePanel8.Text = "原始密码";
            // 
            // textEdit_OldPwd
            // 
            this.textEdit_OldPwd.EditValue = "";
            this.textEdit_OldPwd.Location = new System.Drawing.Point(160, 40);
            this.textEdit_OldPwd.Name = "textEdit_OldPwd";
            this.textEdit_OldPwd.Properties.PasswordChar = '*';
            this.textEdit_OldPwd.Size = new System.Drawing.Size(88, 20);
            this.textEdit_OldPwd.TabIndex = 16;
            // 
            // xtraTabPage2
            // 
            this.xtraTabPage2.Appearance.PageClient.BackColor = System.Drawing.Color.WhiteSmoke;
            this.xtraTabPage2.Appearance.PageClient.Options.UseBackColor = true;
            this.xtraTabPage2.Controls.Add(this.groupControl1);
            this.xtraTabPage2.Name = "xtraTabPage2";
            this.xtraTabPage2.Size = new System.Drawing.Size(682, 400);
            this.xtraTabPage2.Text = "配置自动更新地址";
            // 
            // groupControl1
            // 
            this.groupControl1.Controls.Add(this.textEdit_UpdateAddress);
            this.groupControl1.Controls.Add(this.simpleButton2);
            this.groupControl1.Controls.Add(this.simpleButton10);
            this.groupControl1.Location = new System.Drawing.Point(176, 64);
            this.groupControl1.Name = "groupControl1";
            this.groupControl1.Size = new System.Drawing.Size(312, 216);
            this.groupControl1.TabIndex = 1;
            this.groupControl1.Text = "请输入自动更新网络地址";
            // 
            // textEdit_UpdateAddress
            // 
            this.textEdit_UpdateAddress.EditValue = "";
            this.textEdit_UpdateAddress.Location = new System.Drawing.Point(52, 72);
            this.textEdit_UpdateAddress.Name = "textEdit_UpdateAddress";
            this.textEdit_UpdateAddress.Size = new System.Drawing.Size(208, 20);
            this.textEdit_UpdateAddress.TabIndex = 17;
            // 
            // simpleButton2
            // 
            this.simpleButton2.Location = new System.Drawing.Point(160, 168);
            this.simpleButton2.Name = "simpleButton2";
            this.simpleButton2.Size = new System.Drawing.Size(56, 23);
            this.simpleButton2.TabIndex = 1;
            this.simpleButton2.Text = "确定";
            this.simpleButton2.Click += new System.EventHandler(this.simpleButton2_Click);
            // 
            // simpleButton10
            // 
            this.simpleButton10.Location = new System.Drawing.Point(232, 168);
            this.simpleButton10.Name = "simpleButton10";
            this.simpleButton10.Size = new System.Drawing.Size(56, 23);
            this.simpleButton10.TabIndex = 1;
            this.simpleButton10.Text = "取消";
            this.simpleButton10.Click += new System.EventHandler(this.simpleButton10_Click);
            // 
            // xtraTabPage3
            // 
            this.xtraTabPage3.Appearance.PageClient.BackColor = System.Drawing.Color.WhiteSmoke;
            this.xtraTabPage3.Appearance.PageClient.Options.UseBackColor = true;
            this.xtraTabPage3.Controls.Add(this.groupControl5);
            this.xtraTabPage3.Name = "xtraTabPage3";
            this.xtraTabPage3.Size = new System.Drawing.Size(682, 400);
            this.xtraTabPage3.Text = "配置数据库";
            // 
            // groupControl5
            // 
            this.groupControl5.Controls.Add(this.textEdit_DBUser);
            this.groupControl5.Controls.Add(this.notePanel9);
            this.groupControl5.Controls.Add(this.notePanel10);
            this.groupControl5.Controls.Add(this.textEdit_DBPwd);
            this.groupControl5.Controls.Add(this.notePanel11);
            this.groupControl5.Controls.Add(this.textEdit_DBName);
            this.groupControl5.Controls.Add(this.simpleButton11);
            this.groupControl5.Controls.Add(this.simpleButton12);
            this.groupControl5.Location = new System.Drawing.Point(168, 56);
            this.groupControl5.Name = "groupControl5";
            this.groupControl5.Size = new System.Drawing.Size(342, 256);
            this.groupControl5.TabIndex = 2;
            this.groupControl5.Text = "服务器配置";
            // 
            // textEdit_DBUser
            // 
            this.textEdit_DBUser.EditValue = "";
            this.textEdit_DBUser.Location = new System.Drawing.Point(153, 93);
            this.textEdit_DBUser.Name = "textEdit_DBUser";
            this.textEdit_DBUser.Size = new System.Drawing.Size(152, 20);
            this.textEdit_DBUser.TabIndex = 23;
            // 
            // notePanel9
            // 
            this.notePanel9.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel9.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel9.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel9.ForeColor = System.Drawing.Color.Black;
            this.notePanel9.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel9.Location = new System.Drawing.Point(38, 93);
            this.notePanel9.MaxRows = 5;
            this.notePanel9.Name = "notePanel9";
            this.notePanel9.ParentAutoHeight = true;
            this.notePanel9.Size = new System.Drawing.Size(104, 22);
            this.notePanel9.TabIndex = 21;
            this.notePanel9.TabStop = false;
            this.notePanel9.Text = "     用户名:";
            // 
            // notePanel10
            // 
            this.notePanel10.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel10.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel10.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel10.ForeColor = System.Drawing.Color.Black;
            this.notePanel10.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel10.Location = new System.Drawing.Point(38, 125);
            this.notePanel10.MaxRows = 5;
            this.notePanel10.Name = "notePanel10";
            this.notePanel10.ParentAutoHeight = true;
            this.notePanel10.Size = new System.Drawing.Size(104, 22);
            this.notePanel10.TabIndex = 19;
            this.notePanel10.TabStop = false;
            this.notePanel10.Text = "      密   码:";
            // 
            // textEdit_DBPwd
            // 
            this.textEdit_DBPwd.EditValue = "";
            this.textEdit_DBPwd.Location = new System.Drawing.Point(153, 125);
            this.textEdit_DBPwd.Name = "textEdit_DBPwd";
            this.textEdit_DBPwd.Properties.PasswordChar = '*';
            this.textEdit_DBPwd.Size = new System.Drawing.Size(152, 20);
            this.textEdit_DBPwd.TabIndex = 24;
            // 
            // notePanel11
            // 
            this.notePanel11.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel11.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel11.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel11.ForeColor = System.Drawing.Color.Black;
            this.notePanel11.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel11.Location = new System.Drawing.Point(38, 61);
            this.notePanel11.MaxRows = 5;
            this.notePanel11.Name = "notePanel11";
            this.notePanel11.ParentAutoHeight = true;
            this.notePanel11.Size = new System.Drawing.Size(104, 22);
            this.notePanel11.TabIndex = 20;
            this.notePanel11.TabStop = false;
            this.notePanel11.Text = "数据库实例名:";
            // 
            // textEdit_DBName
            // 
            this.textEdit_DBName.EditValue = "";
            this.textEdit_DBName.Location = new System.Drawing.Point(153, 61);
            this.textEdit_DBName.Name = "textEdit_DBName";
            this.textEdit_DBName.Size = new System.Drawing.Size(152, 20);
            this.textEdit_DBName.TabIndex = 22;
            // 
            // simpleButton11
            // 
            this.simpleButton11.Location = new System.Drawing.Point(75, 168);
            this.simpleButton11.Name = "simpleButton11";
            this.simpleButton11.Size = new System.Drawing.Size(85, 23);
            this.simpleButton11.TabIndex = 1;
            this.simpleButton11.Text = "测试连接";
            this.simpleButton11.Click += new System.EventHandler(this.simpleButton11_Click);
            // 
            // simpleButton12
            // 
            this.simpleButton12.Location = new System.Drawing.Point(182, 168);
            this.simpleButton12.Name = "simpleButton12";
            this.simpleButton12.Size = new System.Drawing.Size(85, 23);
            this.simpleButton12.TabIndex = 1;
            this.simpleButton12.Text = "保存设置";
            this.simpleButton12.Click += new System.EventHandler(this.simpleButton12_Click);
            // 
            // xtraTabPage_BatchCreate
            // 
            this.xtraTabPage_BatchCreate.Controls.Add(this.splitContainerControl1);
            this.xtraTabPage_BatchCreate.Name = "xtraTabPage_BatchCreate";
            this.xtraTabPage_BatchCreate.Size = new System.Drawing.Size(682, 400);
            this.xtraTabPage_BatchCreate.Text = "批量数据生成";
            // 
            // splitContainerControl1
            // 
            this.splitContainerControl1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.splitContainerControl1.Location = new System.Drawing.Point(0, 0);
            this.splitContainerControl1.Name = "splitContainerControl1";
            this.splitContainerControl1.Panel1.Controls.Add(this.groupControl8);
            this.splitContainerControl1.Panel1.Controls.Add(this.groupControl6);
            this.splitContainerControl1.Panel1.Text = "splitContainerControl1_Panel1";
            this.splitContainerControl1.Panel2.Controls.Add(this.groupControl7);
            this.splitContainerControl1.Panel2.Text = "splitContainerControl1_Panel2";
            this.splitContainerControl1.Size = new System.Drawing.Size(682, 400);
            this.splitContainerControl1.SplitterPosition = 213;
            this.splitContainerControl1.TabIndex = 0;
            this.splitContainerControl1.Text = "splitContainerControl1";
            // 
            // groupControl8
            // 
            this.groupControl8.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.groupControl8.AppearanceCaption.Options.UseFont = true;
            this.groupControl8.Controls.Add(this.textEdit_ClassVol);
            this.groupControl8.Controls.Add(this.textEdit_BatchCreate_TerminalNumbers);
            this.groupControl8.Controls.Add(this.textEdit_BatchCreate_ClassNumbers);
            this.groupControl8.Controls.Add(this.notePanel_ClassVol);
            this.groupControl8.Controls.Add(this.notePanel_BatchCreate_TerminalNumbers);
            this.groupControl8.Controls.Add(this.notePanel_BatchCreate_ClassNumbers);
            this.groupControl8.Dock = System.Windows.Forms.DockStyle.Fill;
            this.groupControl8.Location = new System.Drawing.Point(0, 256);
            this.groupControl8.Name = "groupControl8";
            this.groupControl8.Size = new System.Drawing.Size(213, 144);
            this.groupControl8.TabIndex = 1;
            this.groupControl8.Text = "硬件信息修改";
            // 
            // textEdit_ClassVol
            // 
            this.textEdit_ClassVol.EditValue = "";
            this.textEdit_ClassVol.Location = new System.Drawing.Point(104, 96);
            this.textEdit_ClassVol.Name = "textEdit_ClassVol";
            this.textEdit_ClassVol.Size = new System.Drawing.Size(96, 20);
            this.textEdit_ClassVol.TabIndex = 32;
            // 
            // textEdit_BatchCreate_TerminalNumbers
            // 
            this.textEdit_BatchCreate_TerminalNumbers.EditValue = "";
            this.textEdit_BatchCreate_TerminalNumbers.Location = new System.Drawing.Point(104, 64);
            this.textEdit_BatchCreate_TerminalNumbers.Name = "textEdit_BatchCreate_TerminalNumbers";
            this.textEdit_BatchCreate_TerminalNumbers.Size = new System.Drawing.Size(96, 20);
            this.textEdit_BatchCreate_TerminalNumbers.TabIndex = 31;
            // 
            // textEdit_BatchCreate_ClassNumbers
            // 
            this.textEdit_BatchCreate_ClassNumbers.EditValue = "";
            this.textEdit_BatchCreate_ClassNumbers.Location = new System.Drawing.Point(104, 32);
            this.textEdit_BatchCreate_ClassNumbers.Name = "textEdit_BatchCreate_ClassNumbers";
            this.textEdit_BatchCreate_ClassNumbers.Size = new System.Drawing.Size(96, 20);
            this.textEdit_BatchCreate_ClassNumbers.TabIndex = 30;
            // 
            // notePanel_ClassVol
            // 
            this.notePanel_ClassVol.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel_ClassVol.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel_ClassVol.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel_ClassVol.ForeColor = System.Drawing.Color.Black;
            this.notePanel_ClassVol.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_ClassVol.Location = new System.Drawing.Point(16, 96);
            this.notePanel_ClassVol.MaxRows = 5;
            this.notePanel_ClassVol.Name = "notePanel_ClassVol";
            this.notePanel_ClassVol.ParentAutoHeight = true;
            this.notePanel_ClassVol.Size = new System.Drawing.Size(80, 22);
            this.notePanel_ClassVol.TabIndex = 24;
            this.notePanel_ClassVol.TabStop = false;
            this.notePanel_ClassVol.Text = "教室容量:";
            // 
            // notePanel_BatchCreate_TerminalNumbers
            // 
            this.notePanel_BatchCreate_TerminalNumbers.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel_BatchCreate_TerminalNumbers.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel_BatchCreate_TerminalNumbers.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel_BatchCreate_TerminalNumbers.ForeColor = System.Drawing.Color.Black;
            this.notePanel_BatchCreate_TerminalNumbers.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_BatchCreate_TerminalNumbers.Location = new System.Drawing.Point(16, 64);
            this.notePanel_BatchCreate_TerminalNumbers.MaxRows = 5;
            this.notePanel_BatchCreate_TerminalNumbers.Name = "notePanel_BatchCreate_TerminalNumbers";
            this.notePanel_BatchCreate_TerminalNumbers.ParentAutoHeight = true;
            this.notePanel_BatchCreate_TerminalNumbers.Size = new System.Drawing.Size(80, 22);
            this.notePanel_BatchCreate_TerminalNumbers.TabIndex = 23;
            this.notePanel_BatchCreate_TerminalNumbers.TabStop = false;
            this.notePanel_BatchCreate_TerminalNumbers.Text = "主机总数:";
            // 
            // notePanel_BatchCreate_ClassNumbers
            // 
            this.notePanel_BatchCreate_ClassNumbers.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel_BatchCreate_ClassNumbers.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel_BatchCreate_ClassNumbers.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel_BatchCreate_ClassNumbers.ForeColor = System.Drawing.Color.Black;
            this.notePanel_BatchCreate_ClassNumbers.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_BatchCreate_ClassNumbers.Location = new System.Drawing.Point(16, 32);
            this.notePanel_BatchCreate_ClassNumbers.MaxRows = 5;
            this.notePanel_BatchCreate_ClassNumbers.Name = "notePanel_BatchCreate_ClassNumbers";
            this.notePanel_BatchCreate_ClassNumbers.ParentAutoHeight = true;
            this.notePanel_BatchCreate_ClassNumbers.Size = new System.Drawing.Size(80, 22);
            this.notePanel_BatchCreate_ClassNumbers.TabIndex = 22;
            this.notePanel_BatchCreate_ClassNumbers.TabStop = false;
            this.notePanel_BatchCreate_ClassNumbers.Text = "班级总数:";
            // 
            // groupControl6
            // 
            this.groupControl6.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.groupControl6.AppearanceCaption.Options.UseFont = true;
            this.groupControl6.Controls.Add(this.textEdit_BatchCreate_CardNumber);
            this.groupControl6.Controls.Add(this.notePanel_BatchCreate_CardNumber);
            this.groupControl6.Controls.Add(this.comboBoxEdit_BatchCreate_Load);
            this.groupControl6.Controls.Add(this.comboBoxEdit_BatchCreate_Type);
            this.groupControl6.Controls.Add(this.textEdit_BatchCreate_Number);
            this.groupControl6.Controls.Add(this.textEdit_BatchCreate_Name);
            this.groupControl6.Controls.Add(this.comboBoxEdit_BatchCreate_Class);
            this.groupControl6.Controls.Add(this.comboBoxEdit_BatchCreate_Grade);
            this.groupControl6.Controls.Add(this.notePanel_BatchCreate_Load);
            this.groupControl6.Controls.Add(this.notePanel_BatchCreate_Type);
            this.groupControl6.Controls.Add(this.notePanel_BatchCreate_Number);
            this.groupControl6.Controls.Add(this.notePanel_BatchCreate_Name);
            this.groupControl6.Controls.Add(this.notePanel_BatchCreate_Class);
            this.groupControl6.Controls.Add(this.notePanel_BatchCreate_Grade);
            this.groupControl6.Dock = System.Windows.Forms.DockStyle.Top;
            this.groupControl6.Location = new System.Drawing.Point(0, 0);
            this.groupControl6.Name = "groupControl6";
            this.groupControl6.Size = new System.Drawing.Size(213, 256);
            this.groupControl6.TabIndex = 0;
            this.groupControl6.Text = "信息查询";
            // 
            // textEdit_BatchCreate_CardNumber
            // 
            this.textEdit_BatchCreate_CardNumber.EditValue = "";
            this.textEdit_BatchCreate_CardNumber.Location = new System.Drawing.Point(104, 152);
            this.textEdit_BatchCreate_CardNumber.Name = "textEdit_BatchCreate_CardNumber";
            this.textEdit_BatchCreate_CardNumber.Size = new System.Drawing.Size(96, 20);
            this.textEdit_BatchCreate_CardNumber.TabIndex = 34;
            this.textEdit_BatchCreate_CardNumber.EditValueChanged += new System.EventHandler(this.textEdit_BatchCreate_CardNumber_EditValueChanged);
            // 
            // notePanel_BatchCreate_CardNumber
            // 
            this.notePanel_BatchCreate_CardNumber.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel_BatchCreate_CardNumber.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel_BatchCreate_CardNumber.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel_BatchCreate_CardNumber.ForeColor = System.Drawing.Color.Black;
            this.notePanel_BatchCreate_CardNumber.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_BatchCreate_CardNumber.Location = new System.Drawing.Point(16, 152);
            this.notePanel_BatchCreate_CardNumber.MaxRows = 5;
            this.notePanel_BatchCreate_CardNumber.Name = "notePanel_BatchCreate_CardNumber";
            this.notePanel_BatchCreate_CardNumber.ParentAutoHeight = true;
            this.notePanel_BatchCreate_CardNumber.Size = new System.Drawing.Size(80, 22);
            this.notePanel_BatchCreate_CardNumber.TabIndex = 33;
            this.notePanel_BatchCreate_CardNumber.TabStop = false;
            this.notePanel_BatchCreate_CardNumber.Text = "  卡  号:";
            // 
            // comboBoxEdit_BatchCreate_Load
            // 
            this.comboBoxEdit_BatchCreate_Load.EditValue = "未选择";
            this.comboBoxEdit_BatchCreate_Load.Location = new System.Drawing.Point(104, 216);
            this.comboBoxEdit_BatchCreate_Load.Name = "comboBoxEdit_BatchCreate_Load";
            this.comboBoxEdit_BatchCreate_Load.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.comboBoxEdit_BatchCreate_Load.Properties.Items.AddRange(new object[] {
            "学生信息表(简单)",
            "学生信息表(复杂)",
            "教师信息表",
            "生成卡号新增表",
            "载入卡号新增表"});
            this.comboBoxEdit_BatchCreate_Load.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
            this.comboBoxEdit_BatchCreate_Load.Size = new System.Drawing.Size(96, 20);
            this.comboBoxEdit_BatchCreate_Load.TabIndex = 32;
            this.comboBoxEdit_BatchCreate_Load.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit_BatchCreate_Load_SelectedIndexChanged);
            // 
            // comboBoxEdit_BatchCreate_Type
            // 
            this.comboBoxEdit_BatchCreate_Type.EditValue = "未选择";
            this.comboBoxEdit_BatchCreate_Type.Location = new System.Drawing.Point(104, 184);
            this.comboBoxEdit_BatchCreate_Type.Name = "comboBoxEdit_BatchCreate_Type";
            this.comboBoxEdit_BatchCreate_Type.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.comboBoxEdit_BatchCreate_Type.Properties.Items.AddRange(new object[] {
            "年级表(含部门)",
            "班级表(含岗位)",
            "学生基本信息表",
            "学生卡号表",
            "教师基本信息表",
            "教师卡号表",
            "硬件配置表"});
            this.comboBoxEdit_BatchCreate_Type.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
            this.comboBoxEdit_BatchCreate_Type.Size = new System.Drawing.Size(96, 20);
            this.comboBoxEdit_BatchCreate_Type.TabIndex = 31;
            this.comboBoxEdit_BatchCreate_Type.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit_BatchCreate_Type_SelectedIndexChanged);
            // 
            // textEdit_BatchCreate_Number
            // 
            this.textEdit_BatchCreate_Number.EditValue = "";
            this.textEdit_BatchCreate_Number.Location = new System.Drawing.Point(104, 120);
            this.textEdit_BatchCreate_Number.Name = "textEdit_BatchCreate_Number";
            this.textEdit_BatchCreate_Number.Size = new System.Drawing.Size(96, 20);
            this.textEdit_BatchCreate_Number.TabIndex = 30;
            this.textEdit_BatchCreate_Number.EditValueChanged += new System.EventHandler(this.textEdit_BatchCreate_Number_EditValueChanged);
            // 
            // textEdit_BatchCreate_Name
            // 
            this.textEdit_BatchCreate_Name.EditValue = "";
            this.textEdit_BatchCreate_Name.Location = new System.Drawing.Point(104, 88);
            this.textEdit_BatchCreate_Name.Name = "textEdit_BatchCreate_Name";
            this.textEdit_BatchCreate_Name.Size = new System.Drawing.Size(96, 20);
            this.textEdit_BatchCreate_Name.TabIndex = 29;
            this.textEdit_BatchCreate_Name.EditValueChanged += new System.EventHandler(this.textEdit_BatchCreate_Name_EditValueChanged);
            // 
            // comboBoxEdit_BatchCreate_Class
            // 
            this.comboBoxEdit_BatchCreate_Class.EditValue = "全部";
            this.comboBoxEdit_BatchCreate_Class.Location = new System.Drawing.Point(104, 56);
            this.comboBoxEdit_BatchCreate_Class.Name = "comboBoxEdit_BatchCreate_Class";
            this.comboBoxEdit_BatchCreate_Class.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.comboBoxEdit_BatchCreate_Class.Properties.Items.AddRange(new object[] {
            "全部"});
            this.comboBoxEdit_BatchCreate_Class.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
            this.comboBoxEdit_BatchCreate_Class.Size = new System.Drawing.Size(96, 20);
            this.comboBoxEdit_BatchCreate_Class.TabIndex = 28;
            this.comboBoxEdit_BatchCreate_Class.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit_BatchCreate_Class_SelectedIndexChanged);
            // 
            // comboBoxEdit_BatchCreate_Grade
            // 
            this.comboBoxEdit_BatchCreate_Grade.EditValue = "全部";
            this.comboBoxEdit_BatchCreate_Grade.Location = new System.Drawing.Point(104, 24);
            this.comboBoxEdit_BatchCreate_Grade.Name = "comboBoxEdit_BatchCreate_Grade";
            this.comboBoxEdit_BatchCreate_Grade.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.comboBoxEdit_BatchCreate_Grade.Properties.Items.AddRange(new object[] {
            "全部"});
            this.comboBoxEdit_BatchCreate_Grade.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
            this.comboBoxEdit_BatchCreate_Grade.Size = new System.Drawing.Size(96, 20);
            this.comboBoxEdit_BatchCreate_Grade.TabIndex = 27;
            this.comboBoxEdit_BatchCreate_Grade.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit_BatchCreate_Grade_SelectedIndexChanged);
            // 
            // notePanel_BatchCreate_Load
            // 
            this.notePanel_BatchCreate_Load.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel_BatchCreate_Load.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel_BatchCreate_Load.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel_BatchCreate_Load.ForeColor = System.Drawing.Color.Black;
            this.notePanel_BatchCreate_Load.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_BatchCreate_Load.Location = new System.Drawing.Point(16, 216);
            this.notePanel_BatchCreate_Load.MaxRows = 5;
            this.notePanel_BatchCreate_Load.Name = "notePanel_BatchCreate_Load";
            this.notePanel_BatchCreate_Load.ParentAutoHeight = true;
            this.notePanel_BatchCreate_Load.Size = new System.Drawing.Size(80, 22);
            this.notePanel_BatchCreate_Load.TabIndex = 26;
            this.notePanel_BatchCreate_Load.TabStop = false;
            this.notePanel_BatchCreate_Load.Text = "  载  入:";
            // 
            // notePanel_BatchCreate_Type
            // 
            this.notePanel_BatchCreate_Type.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel_BatchCreate_Type.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel_BatchCreate_Type.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel_BatchCreate_Type.ForeColor = System.Drawing.Color.Black;
            this.notePanel_BatchCreate_Type.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_BatchCreate_Type.Location = new System.Drawing.Point(16, 184);
            this.notePanel_BatchCreate_Type.MaxRows = 5;
            this.notePanel_BatchCreate_Type.Name = "notePanel_BatchCreate_Type";
            this.notePanel_BatchCreate_Type.ParentAutoHeight = true;
            this.notePanel_BatchCreate_Type.Size = new System.Drawing.Size(80, 22);
            this.notePanel_BatchCreate_Type.TabIndex = 25;
            this.notePanel_BatchCreate_Type.TabStop = false;
            this.notePanel_BatchCreate_Type.Text = "  类  型:";
            // 
            // notePanel_BatchCreate_Number
            // 
            this.notePanel_BatchCreate_Number.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel_BatchCreate_Number.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel_BatchCreate_Number.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel_BatchCreate_Number.ForeColor = System.Drawing.Color.Black;
            this.notePanel_BatchCreate_Number.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_BatchCreate_Number.Location = new System.Drawing.Point(16, 120);
            this.notePanel_BatchCreate_Number.MaxRows = 5;
            this.notePanel_BatchCreate_Number.Name = "notePanel_BatchCreate_Number";
            this.notePanel_BatchCreate_Number.ParentAutoHeight = true;
            this.notePanel_BatchCreate_Number.Size = new System.Drawing.Size(80, 22);
            this.notePanel_BatchCreate_Number.TabIndex = 24;
            this.notePanel_BatchCreate_Number.TabStop = false;
            this.notePanel_BatchCreate_Number.Text = "  学  号:";
            // 
            // notePanel_BatchCreate_Name
            // 
            this.notePanel_BatchCreate_Name.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel_BatchCreate_Name.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel_BatchCreate_Name.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel_BatchCreate_Name.ForeColor = System.Drawing.Color.Black;
            this.notePanel_BatchCreate_Name.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_BatchCreate_Name.Location = new System.Drawing.Point(16, 88);
            this.notePanel_BatchCreate_Name.MaxRows = 5;
            this.notePanel_BatchCreate_Name.Name = "notePanel_BatchCreate_Name";
            this.notePanel_BatchCreate_Name.ParentAutoHeight = true;
            this.notePanel_BatchCreate_Name.Size = new System.Drawing.Size(80, 22);
            this.notePanel_BatchCreate_Name.TabIndex = 23;
            this.notePanel_BatchCreate_Name.TabStop = false;
            this.notePanel_BatchCreate_Name.Text = "  姓  名:";
            // 
            // notePanel_BatchCreate_Class
            // 
            this.notePanel_BatchCreate_Class.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel_BatchCreate_Class.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel_BatchCreate_Class.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel_BatchCreate_Class.ForeColor = System.Drawing.Color.Black;
            this.notePanel_BatchCreate_Class.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_BatchCreate_Class.Location = new System.Drawing.Point(16, 56);
            this.notePanel_BatchCreate_Class.MaxRows = 5;
            this.notePanel_BatchCreate_Class.Name = "notePanel_BatchCreate_Class";
            this.notePanel_BatchCreate_Class.ParentAutoHeight = true;
            this.notePanel_BatchCreate_Class.Size = new System.Drawing.Size(80, 22);
            this.notePanel_BatchCreate_Class.TabIndex = 22;
            this.notePanel_BatchCreate_Class.TabStop = false;
            this.notePanel_BatchCreate_Class.Text = "  班  级:";
            // 
            // notePanel_BatchCreate_Grade
            // 
            this.notePanel_BatchCreate_Grade.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel_BatchCreate_Grade.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel_BatchCreate_Grade.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel_BatchCreate_Grade.ForeColor = System.Drawing.Color.Black;
            this.notePanel_BatchCreate_Grade.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_BatchCreate_Grade.Location = new System.Drawing.Point(16, 24);
            this.notePanel_BatchCreate_Grade.MaxRows = 5;
            this.notePanel_BatchCreate_Grade.Name = "notePanel_BatchCreate_Grade";
            this.notePanel_BatchCreate_Grade.ParentAutoHeight = true;
            this.notePanel_BatchCreate_Grade.Size = new System.Drawing.Size(80, 22);
            this.notePanel_BatchCreate_Grade.TabIndex = 21;
            this.notePanel_BatchCreate_Grade.TabStop = false;
            this.notePanel_BatchCreate_Grade.Text = "  年  级:";
            // 
            // groupControl7
            // 
            this.groupControl7.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.groupControl7.AppearanceCaption.Options.UseFont = true;
            this.groupControl7.Controls.Add(this.gridControl_BatchCreate_Machine);
            this.groupControl7.Controls.Add(this.gridControl_BatchCreate_TeaCard);
            this.groupControl7.Controls.Add(this.gridControl1_BatchCreate_TeaBasicInfo);
            this.groupControl7.Controls.Add(this.gridControl_BatchCreate_StuCard);
            this.groupControl7.Controls.Add(this.gridControl_BatchCreate_StuBasicInfo);
            this.groupControl7.Controls.Add(this.gridControl_BatchCreate_Class);
            this.groupControl7.Controls.Add(this.gridControl_BatchCreate_Grade);
            this.groupControl7.Dock = System.Windows.Forms.DockStyle.Fill;
            this.groupControl7.Location = new System.Drawing.Point(0, 0);
            this.groupControl7.Name = "groupControl7";
            this.groupControl7.Size = new System.Drawing.Size(464, 400);
            this.groupControl7.TabIndex = 0;
            this.groupControl7.Text = "信息列表";
            // 
            // gridControl_BatchCreate_Machine
            // 
            this.gridControl_BatchCreate_Machine.Dock = System.Windows.Forms.DockStyle.Fill;
            this.gridControl_BatchCreate_Machine.Location = new System.Drawing.Point(2, 22);
            this.gridControl_BatchCreate_Machine.MainView = this.gridView7;
            this.gridControl_BatchCreate_Machine.Name = "gridControl_BatchCreate_Machine";
            this.gridControl_BatchCreate_Machine.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
            this.repositoryItemTextEdit1,
            this.repositoryItemTextEdit2});
            this.gridControl_BatchCreate_Machine.Size = new System.Drawing.Size(460, 376);
            this.gridControl_BatchCreate_Machine.TabIndex = 6;
            this.gridControl_BatchCreate_Machine.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
            this.gridView7});
            // 
            // gridView7
            // 
            this.gridView7.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
            this.gridColumn48,
            this.gridColumn47,
            this.gridColumn35,
            this.gridColumn36,
            this.gridColumn37});
            this.gridView7.GridControl = this.gridControl_BatchCreate_Machine;
            this.gridView7.Name = "gridView7";
            this.gridView7.OptionsCustomization.AllowFilter = false;
            this.gridView7.OptionsView.ShowFilterPanelMode = DevExpress.XtraGrid.Views.Base.ShowFilterPanelMode.Never;
            this.gridView7.OptionsView.ShowGroupPanel = false;
            // 
            // gridColumn48
            // 
            this.gridColumn48.Caption = "gridColumn48";
            this.gridColumn48.FieldName = "Address";
            this.gridColumn48.Name = "gridColumn48";
            this.gridColumn48.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn48.OptionsColumn.AllowIncrementalSearch = false;
            this.gridColumn48.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn48.OptionsColumn.AllowMove = false;
            this.gridColumn48.OptionsColumn.AllowSize = false;
            this.gridColumn48.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
            this.gridColumn48.OptionsColumn.ShowInCustomizationForm = false;
            // 
            // gridColumn47
            // 
            this.gridColumn47.Caption = "gridColumn47";
            this.gridColumn47.FieldName = "Type";
            this.gridColumn47.Name = "gridColumn47";
            this.gridColumn47.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn47.OptionsColumn.AllowIncrementalSearch = false;
            this.gridColumn47.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn47.OptionsColumn.AllowMove = false;
            this.gridColumn47.OptionsColumn.AllowSize = false;
            this.gridColumn47.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
            this.gridColumn47.OptionsColumn.ShowInCustomizationForm = false;
            // 
            // gridColumn35
            // 
            this.gridColumn35.AppearanceCell.Options.UseTextOptions = true;
            this.gridColumn35.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn35.AppearanceHeader.Options.UseTextOptions = true;
            this.gridColumn35.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn35.Caption = "硬件地址";
            this.gridColumn35.FieldName = "machine_address";
            this.gridColumn35.Name = "gridColumn35";
            this.gridColumn35.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn35.OptionsColumn.AllowIncrementalSearch = false;
            this.gridColumn35.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn35.OptionsColumn.AllowMove = false;
            this.gridColumn35.OptionsColumn.AllowSize = false;
            this.gridColumn35.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
            this.gridColumn35.OptionsColumn.ShowInCustomizationForm = false;
            this.gridColumn35.Visible = true;
            this.gridColumn35.VisibleIndex = 0;
            // 
            // gridColumn36
            // 
            this.gridColumn36.AppearanceCell.Options.UseTextOptions = true;
            this.gridColumn36.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn36.AppearanceHeader.Options.UseTextOptions = true;
            this.gridColumn36.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn36.Caption = "硬件类型";
            this.gridColumn36.FieldName = "machine_type";
            this.gridColumn36.Name = "gridColumn36";
            this.gridColumn36.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn36.OptionsColumn.AllowIncrementalSearch = false;
            this.gridColumn36.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn36.OptionsColumn.AllowMove = false;
            this.gridColumn36.OptionsColumn.AllowSize = false;
            this.gridColumn36.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
            this.gridColumn36.OptionsColumn.ShowInCustomizationForm = false;
            this.gridColumn36.Visible = true;
            this.gridColumn36.VisibleIndex = 1;
            // 
            // gridColumn37
            // 
            this.gridColumn37.AppearanceCell.Options.UseTextOptions = true;
            this.gridColumn37.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn37.AppearanceHeader.Options.UseTextOptions = true;
            this.gridColumn37.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn37.Caption = "硬件容量";
            this.gridColumn37.FieldName = "machine_volumn";
            this.gridColumn37.Name = "gridColumn37";
            this.gridColumn37.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn37.OptionsColumn.AllowIncrementalSearch = false;
            this.gridColumn37.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn37.OptionsColumn.AllowMove = false;
            this.gridColumn37.OptionsColumn.AllowSize = false;
            this.gridColumn37.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
            this.gridColumn37.OptionsColumn.ShowInCustomizationForm = false;
            this.gridColumn37.Visible = true;
            this.gridColumn37.VisibleIndex = 2;
            // 
            // repositoryItemTextEdit1
            // 
            this.repositoryItemTextEdit1.AutoHeight = false;
            this.repositoryItemTextEdit1.Name = "repositoryItemTextEdit1";
            // 
            // repositoryItemTextEdit2
            // 
            this.repositoryItemTextEdit2.AutoHeight = false;
            this.repositoryItemTextEdit2.Name = "repositoryItemTextEdit2";
            // 
            // gridControl_BatchCreate_TeaCard
            // 
            this.gridControl_BatchCreate_TeaCard.Dock = System.Windows.Forms.DockStyle.Fill;
            this.gridControl_BatchCreate_TeaCard.Location = new System.Drawing.Point(2, 22);
            this.gridControl_BatchCreate_TeaCard.MainView = this.gridView6;
            this.gridControl_BatchCreate_TeaCard.Name = "gridControl_BatchCreate_TeaCard";
            this.gridControl_BatchCreate_TeaCard.Size = new System.Drawing.Size(460, 376);
            this.gridControl_BatchCreate_TeaCard.TabIndex = 5;
            this.gridControl_BatchCreate_TeaCard.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
            this.gridView6});
            // 
            // gridView6
            // 
            this.gridView6.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
            this.gridColumn30,
            this.gridColumn31,
            this.gridColumn32,
            this.gridColumn33,
            this.gridColumn34,
            this.gridColumn46});
            this.gridView6.GridControl = this.gridControl_BatchCreate_TeaCard;
            this.gridView6.Name = "gridView6";
            this.gridView6.OptionsCustomization.AllowFilter = false;
            this.gridView6.OptionsView.ShowFilterPanelMode = DevExpress.XtraGrid.Views.Base.ShowFilterPanelMode.Never;
            this.gridView6.OptionsView.ShowGroupPanel = false;
            // 
            // gridColumn30
            // 
            this.gridColumn30.AppearanceCell.Options.UseTextOptions = true;
            this.gridColumn30.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn30.AppearanceHeader.Options.UseTextOptions = true;
            this.gridColumn30.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn30.Caption = "工号";
            this.gridColumn30.FieldName = "T_Number";
            this.gridColumn30.Name = "gridColumn30";
            this.gridColumn30.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn30.OptionsColumn.AllowIncrementalSearch = false;
            this.gridColumn30.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn30.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
            this.gridColumn30.OptionsColumn.ShowInCustomizationForm = false;
            this.gridColumn30.Visible = true;
            this.gridColumn30.VisibleIndex = 0;
            this.gridColumn30.Width = 79;
            // 
            // gridColumn31
            // 
            this.gridColumn31.AppearanceCell.Options.UseTextOptions = true;
            this.gridColumn31.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn31.AppearanceHeader.Options.UseTextOptions = true;
            this.gridColumn31.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn31.Caption = "姓名";
            this.gridColumn31.FieldName = "T_Name";
            this.gridColumn31.Name = "gridColumn31";
            this.gridColumn31.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn31.OptionsColumn.AllowIncrementalSearch = false;
            this.gridColumn31.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn31.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
            this.gridColumn31.OptionsColumn.ShowInCustomizationForm = false;
            this.gridColumn31.Visible = true;
            this.gridColumn31.VisibleIndex = 1;
            this.gridColumn31.Width = 80;
            // 
            // gridColumn32
            // 
            this.gridColumn32.AppearanceCell.Options.UseTextOptions = true;
            this.gridColumn32.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn32.AppearanceHeader.Options.UseTextOptions = true;
            this.gridColumn32.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn32.Caption = "卡号";
            this.gridColumn32.FieldName = "info_teaCardNumber";
            this.gridColumn32.Name = "gridColumn32";
            this.gridColumn32.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn32.OptionsColumn.AllowIncrementalSearch = false;
            this.gridColumn32.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn32.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
            this.gridColumn32.OptionsColumn.ShowInCustomizationForm = false;
            this.gridColumn32.Visible = true;
            this.gridColumn32.VisibleIndex = 2;
            this.gridColumn32.Width = 120;
            // 
            // gridColumn33
            // 
            this.gridColumn33.AppearanceCell.Options.UseTextOptions = true;
            this.gridColumn33.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn33.AppearanceHeader.Options.UseTextOptions = true;
            this.gridColumn33.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn33.Caption = "制卡日期";
            this.gridColumn33.DisplayFormat.FormatString = "yyyy-MM-dd HH:mm:ss";
            this.gridColumn33.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
            this.gridColumn33.FieldName = "info_teaCardSendDate";
            this.gridColumn33.Name = "gridColumn33";
            this.gridColumn33.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn33.OptionsColumn.AllowIncrementalSearch = false;
            this.gridColumn33.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn33.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
            this.gridColumn33.OptionsColumn.ShowInCustomizationForm = false;
            this.gridColumn33.Visible = true;
            this.gridColumn33.VisibleIndex = 3;
            this.gridColumn33.Width = 159;
            // 
            // gridColumn34
            // 
            this.gridColumn34.AppearanceCell.Options.UseTextOptions = true;
            this.gridColumn34.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn34.AppearanceHeader.Options.UseTextOptions = true;
            this.gridColumn34.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn34.Caption = "gridColumn34";
            this.gridColumn34.FieldName = "info_teaBasicID";
            this.gridColumn34.Name = "gridColumn34";
            this.gridColumn34.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn34.OptionsColumn.AllowIncrementalSearch = false;
            this.gridColumn34.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn34.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
            this.gridColumn34.OptionsColumn.ShowInCustomizationForm = false;
            // 
            // gridColumn46
            // 
            this.gridColumn46.Caption = "gridColumn46";
            this.gridColumn46.FieldName = "info_teaCardSeq";
            this.gridColumn46.MinWidth = 10;
            this.gridColumn46.Name = "gridColumn46";
            // 
            // gridControl1_BatchCreate_TeaBasicInfo
            // 
            this.gridControl1_BatchCreate_TeaBasicInfo.Dock = System.Windows.Forms.DockStyle.Fill;
            this.gridControl1_BatchCreate_TeaBasicInfo.Location = new System.Drawing.Point(2, 22);
            this.gridControl1_BatchCreate_TeaBasicInfo.MainView = this.gridView5;
            this.gridControl1_BatchCreate_TeaBasicInfo.Name = "gridControl1_BatchCreate_TeaBasicInfo";
            this.gridControl1_BatchCreate_TeaBasicInfo.Size = new System.Drawing.Size(460, 376);
            this.gridControl1_BatchCreate_TeaBasicInfo.TabIndex = 4;
            this.gridControl1_BatchCreate_TeaBasicInfo.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
            this.gridView5});
            // 
            // gridView5
            // 
            this.gridView5.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
            this.gridColumn24,
            this.gridColumn25,
            this.gridColumn26,
            this.gridColumn27,
            this.gridColumn28,
            this.gridColumn29});
            this.gridView5.GridControl = this.gridControl1_BatchCreate_TeaBasicInfo;
            this.gridView5.Name = "gridView5";
            this.gridView5.OptionsCustomization.AllowFilter = false;
            this.gridView5.OptionsView.ShowFilterPanelMode = DevExpress.XtraGrid.Views.Base.ShowFilterPanelMode.Never;
            this.gridView5.OptionsView.ShowGroupPanel = false;
            // 
            // gridColumn24
            // 
            this.gridColumn24.AppearanceCell.Options.UseTextOptions = true;
            this.gridColumn24.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn24.AppearanceHeader.Options.UseTextOptions = true;
            this.gridColumn24.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn24.Caption = "姓名";
            this.gridColumn24.FieldName = "T_Name";
            this.gridColumn24.Name = "gridColumn24";
            this.gridColumn24.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn24.OptionsColumn.AllowIncrementalSearch = false;
            this.gridColumn24.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn24.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
            this.gridColumn24.OptionsColumn.ShowInCustomizationForm = false;
            this.gridColumn24.Visible = true;
            this.gridColumn24.VisibleIndex = 0;
            // 
            // gridColumn25
            // 
            this.gridColumn25.AppearanceCell.Options.UseTextOptions = true;
            this.gridColumn25.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn25.AppearanceHeader.Options.UseTextOptions = true;
            this.gridColumn25.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn25.Caption = "工号";
            this.gridColumn25.FieldName = "T_Number";
            this.gridColumn25.Name = "gridColumn25";
            this.gridColumn25.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn25.OptionsColumn.AllowIncrementalSearch = false;
            this.gridColumn25.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn25.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
            this.gridColumn25.OptionsColumn.ShowInCustomizationForm = false;
            this.gridColumn25.Visible = true;
            this.gridColumn25.VisibleIndex = 1;
            // 
            // gridColumn26
            // 
            this.gridColumn26.AppearanceCell.Options.UseTextOptions = true;
            this.gridColumn26.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn26.AppearanceHeader.Options.UseTextOptions = true;
            this.gridColumn26.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn26.Caption = "部门";
            this.gridColumn26.FieldName = "T_Depart";
            this.gridColumn26.Name = "gridColumn26";
            this.gridColumn26.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn26.OptionsColumn.AllowIncrementalSearch = false;
            this.gridColumn26.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn26.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
            this.gridColumn26.OptionsColumn.ShowInCustomizationForm = false;
            this.gridColumn26.Visible = true;
            this.gridColumn26.VisibleIndex = 2;
            // 
            // gridColumn27
            // 
            this.gridColumn27.AppearanceCell.Options.UseTextOptions = true;
            this.gridColumn27.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn27.AppearanceHeader.Options.UseTextOptions = true;
            this.gridColumn27.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn27.Caption = "岗位";
            this.gridColumn27.FieldName = "T_Duty";
            this.gridColumn27.Name = "gridColumn27";
            this.gridColumn27.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn27.OptionsColumn.AllowIncrementalSearch = false;
            this.gridColumn27.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn27.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
            this.gridColumn27.OptionsColumn.ShowInCustomizationForm = false;
            this.gridColumn27.Visible = true;
            this.gridColumn27.VisibleIndex = 3;
            // 
            // gridColumn28
            // 
            this.gridColumn28.AppearanceCell.Options.UseTextOptions = true;
            this.gridColumn28.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn28.AppearanceHeader.Options.UseTextOptions = true;
            this.gridColumn28.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn28.Caption = "性别";
            this.gridColumn28.FieldName = "T_Sex";
            this.gridColumn28.Name = "gridColumn28";
            this.gridColumn28.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn28.OptionsColumn.AllowIncrementalSearch = false;
            this.gridColumn28.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn28.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
            this.gridColumn28.OptionsColumn.ShowInCustomizationForm = false;
            this.gridColumn28.Visible = true;
            this.gridColumn28.VisibleIndex = 4;
            // 
            // gridColumn29
            // 
            this.gridColumn29.AppearanceCell.Options.UseTextOptions = true;
            this.gridColumn29.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn29.AppearanceHeader.Options.UseTextOptions = true;
            this.gridColumn29.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn29.Caption = "gridColumn29";
            this.gridColumn29.FieldName = "T_ID";
            this.gridColumn29.Name = "gridColumn29";
            this.gridColumn29.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn29.OptionsColumn.AllowIncrementalSearch = false;
            this.gridColumn29.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn29.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
            this.gridColumn29.OptionsColumn.ShowInCustomizationForm = false;
            // 
            // gridControl_BatchCreate_StuCard
            // 
            this.gridControl_BatchCreate_StuCard.Dock = System.Windows.Forms.DockStyle.Fill;
            this.gridControl_BatchCreate_StuCard.Location = new System.Drawing.Point(2, 22);
            this.gridControl_BatchCreate_StuCard.MainView = this.gridView4;
            this.gridControl_BatchCreate_StuCard.Name = "gridControl_BatchCreate_StuCard";
            this.gridControl_BatchCreate_StuCard.Size = new System.Drawing.Size(460, 376);
            this.gridControl_BatchCreate_StuCard.TabIndex = 3;
            this.gridControl_BatchCreate_StuCard.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
            this.gridView4});
            this.gridControl_BatchCreate_StuCard.Visible = false;
            // 
            // gridView4
            // 
            this.gridView4.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
            this.gridColumn18,
            this.gridColumn19,
            this.gridColumn20,
            this.gridColumn21,
            this.gridColumn22,
            this.gridColumn23,
            this.gridColumn45});
            this.gridView4.GridControl = this.gridControl_BatchCreate_StuCard;
            this.gridView4.Name = "gridView4";
            this.gridView4.OptionsCustomization.AllowFilter = false;
            this.gridView4.OptionsView.ShowFilterPanelMode = DevExpress.XtraGrid.Views.Base.ShowFilterPanelMode.Never;
            this.gridView4.OptionsView.ShowGroupPanel = false;
            // 
            // gridColumn18
            // 
            this.gridColumn18.AppearanceCell.Options.UseTextOptions = true;
            this.gridColumn18.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn18.AppearanceHeader.Options.UseTextOptions = true;
            this.gridColumn18.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn18.Caption = "学号";
            this.gridColumn18.FieldName = "info_stuNumber";
            this.gridColumn18.Name = "gridColumn18";
            this.gridColumn18.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn18.OptionsColumn.AllowIncrementalSearch = false;
            this.gridColumn18.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn18.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
            this.gridColumn18.OptionsColumn.ShowInCustomizationForm = false;
            this.gridColumn18.Visible = true;
            this.gridColumn18.VisibleIndex = 0;
            this.gridColumn18.Width = 58;
            // 
            // gridColumn19
            // 
            this.gridColumn19.AppearanceCell.Options.UseTextOptions = true;
            this.gridColumn19.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn19.AppearanceHeader.Options.UseTextOptions = true;
            this.gridColumn19.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn19.Caption = "姓名";
            this.gridColumn19.FieldName = "info_stuName";
            this.gridColumn19.Name = "gridColumn19";
            this.gridColumn19.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn19.OptionsColumn.AllowIncrementalSearch = false;
            this.gridColumn19.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn19.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
            this.gridColumn19.OptionsColumn.ShowInCustomizationForm = false;
            this.gridColumn19.Visible = true;
            this.gridColumn19.VisibleIndex = 1;
            this.gridColumn19.Width = 71;
            // 
            // gridColumn20
            // 
            this.gridColumn20.AppearanceCell.Options.UseTextOptions = true;
            this.gridColumn20.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn20.AppearanceHeader.Options.UseTextOptions = true;
            this.gridColumn20.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn20.Caption = "卡号";
            this.gridColumn20.FieldName = "info_stuCardNumber";
            this.gridColumn20.Name = "gridColumn20";
            this.gridColumn20.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn20.OptionsColumn.AllowIncrementalSearch = false;
            this.gridColumn20.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn20.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
            this.gridColumn20.OptionsColumn.ShowInCustomizationForm = false;
            this.gridColumn20.Visible = true;
            this.gridColumn20.VisibleIndex = 2;
            this.gridColumn20.Width = 94;
            // 
            // gridColumn21
            // 
            this.gridColumn21.AppearanceCell.Options.UseTextOptions = true;
            this.gridColumn21.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn21.AppearanceHeader.Options.UseTextOptions = true;
            this.gridColumn21.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn21.Caption = "持卡人";
            this.gridColumn21.FieldName = "info_stuCardHolder";
            this.gridColumn21.Name = "gridColumn21";
            this.gridColumn21.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn21.OptionsColumn.AllowIncrementalSearch = false;
            this.gridColumn21.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn21.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
            this.gridColumn21.OptionsColumn.ShowInCustomizationForm = false;
            this.gridColumn21.Visible = true;
            this.gridColumn21.VisibleIndex = 3;
            this.gridColumn21.Width = 60;
            // 
            // gridColumn22
            // 
            this.gridColumn22.AppearanceCell.Options.UseTextOptions = true;
            this.gridColumn22.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn22.AppearanceHeader.Options.UseTextOptions = true;
            this.gridColumn22.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn22.Caption = "制卡日期";
            this.gridColumn22.DisplayFormat.FormatString = "yyyy-MM-dd HH:mm:ss";
            this.gridColumn22.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
            this.gridColumn22.FieldName = "info_stuCardSendDate";
            this.gridColumn22.Name = "gridColumn22";
            this.gridColumn22.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn22.OptionsColumn.AllowIncrementalSearch = false;
            this.gridColumn22.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn22.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
            this.gridColumn22.OptionsColumn.ShowInCustomizationForm = false;
            this.gridColumn22.Visible = true;
            this.gridColumn22.VisibleIndex = 4;
            this.gridColumn22.Width = 155;
            // 
            // gridColumn23
            // 
            this.gridColumn23.AppearanceCell.Options.UseTextOptions = true;
            this.gridColumn23.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn23.AppearanceHeader.Options.UseTextOptions = true;
            this.gridColumn23.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn23.Caption = "gridColumn23";
            this.gridColumn23.FieldName = "info_stuBasicID";
            this.gridColumn23.MinWidth = 10;
            this.gridColumn23.Name = "gridColumn23";
            this.gridColumn23.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn23.OptionsColumn.AllowIncrementalSearch = false;
            this.gridColumn23.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn23.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
            this.gridColumn23.OptionsColumn.ShowInCustomizationForm = false;
            // 
            // gridColumn45
            // 
            this.gridColumn45.Caption = "gridColumn45";
            this.gridColumn45.FieldName = "info_stuCardSeq";
            this.gridColumn45.Name = "gridColumn45";
            // 
            // gridControl_BatchCreate_StuBasicInfo
            // 
            this.gridControl_BatchCreate_StuBasicInfo.Dock = System.Windows.Forms.DockStyle.Fill;
            gridLevelNode1.RelationName = "Level1";
            this.gridControl_BatchCreate_StuBasicInfo.LevelTree.Nodes.AddRange(new DevExpress.XtraGrid.GridLevelNode[] {
            gridLevelNode1});
            this.gridControl_BatchCreate_StuBasicInfo.Location = new System.Drawing.Point(2, 22);
            this.gridControl_BatchCreate_StuBasicInfo.MainView = this.advBandedGridView1;
            this.gridControl_BatchCreate_StuBasicInfo.Name = "gridControl_BatchCreate_StuBasicInfo";
            this.gridControl_BatchCreate_StuBasicInfo.Size = new System.Drawing.Size(460, 376);
            this.gridControl_BatchCreate_StuBasicInfo.TabIndex = 2;
            this.gridControl_BatchCreate_StuBasicInfo.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
            this.advBandedGridView1});
            this.gridControl_BatchCreate_StuBasicInfo.Visible = false;
            // 
            // advBandedGridView1
            // 
            this.advBandedGridView1.Bands.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.GridBand[] {
            this.gridBand1});
            this.advBandedGridView1.Columns.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn[] {
            this.gridColumn9,
            this.gridColumn10,
            this.gridColumn11,
            this.gridColumn12,
            this.gridColumn13,
            this.gridColumn14,
            this.gridColumn15,
            this.gridColumn16,
            this.gridColumn17,
            this.gridColumn41,
            this.gridColumn42,
            this.gridColumn43,
            this.gridColumn44});
            this.advBandedGridView1.GridControl = this.gridControl_BatchCreate_StuBasicInfo;
            this.advBandedGridView1.Name = "advBandedGridView1";
            this.advBandedGridView1.OptionsCustomization.AllowFilter = false;
            this.advBandedGridView1.OptionsView.ShowFilterPanelMode = DevExpress.XtraGrid.Views.Base.ShowFilterPanelMode.Never;
            this.advBandedGridView1.OptionsView.ShowGroupPanel = false;
            // 
            // gridBand1
            // 
            this.gridBand1.Caption = "幼儿基本信息";
            this.gridBand1.Columns.Add(this.gridColumn10);
            this.gridBand1.Columns.Add(this.gridColumn11);
            this.gridBand1.Columns.Add(this.gridColumn41);
            this.gridBand1.Columns.Add(this.gridColumn16);
            this.gridBand1.Columns.Add(this.gridColumn44);
            this.gridBand1.Columns.Add(this.gridColumn15);
            this.gridBand1.Columns.Add(this.gridColumn9);
            this.gridBand1.Columns.Add(this.gridColumn12);
            this.gridBand1.Columns.Add(this.gridColumn42);
            this.gridBand1.Columns.Add(this.gridColumn14);
            this.gridBand1.Columns.Add(this.gridColumn43);
            this.gridBand1.Columns.Add(this.gridColumn13);
            this.gridBand1.Name = "gridBand1";
            this.gridBand1.Width = 441;
            // 
            // gridColumn10
            // 
            this.gridColumn10.AppearanceCell.Options.UseTextOptions = true;
            this.gridColumn10.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn10.AppearanceHeader.Options.UseTextOptions = true;
            this.gridColumn10.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn10.Caption = "姓名";
            this.gridColumn10.FieldName = "info_stuName";
            this.gridColumn10.Name = "gridColumn10";
            this.gridColumn10.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn10.OptionsColumn.AllowIncrementalSearch = false;
            this.gridColumn10.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn10.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
            this.gridColumn10.OptionsColumn.FixedWidth = true;
            this.gridColumn10.OptionsColumn.ShowInCustomizationForm = false;
            this.gridColumn10.Visible = true;
            this.gridColumn10.Width = 65;
            // 
            // gridColumn11
            // 
            this.gridColumn11.AppearanceCell.Options.UseTextOptions = true;
            this.gridColumn11.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn11.AppearanceHeader.Options.UseTextOptions = true;
            this.gridColumn11.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn11.Caption = "年级号";
            this.gridColumn11.FieldName = "info_stuGrade";
            this.gridColumn11.Name = "gridColumn11";
            this.gridColumn11.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn11.OptionsColumn.AllowIncrementalSearch = false;
            this.gridColumn11.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn11.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
            this.gridColumn11.OptionsColumn.FixedWidth = true;
            this.gridColumn11.OptionsColumn.ShowInCustomizationForm = false;
            this.gridColumn11.Visible = true;
            this.gridColumn11.Width = 51;
            // 
            // gridColumn41
            // 
            this.gridColumn41.AppearanceCell.Options.UseTextOptions = true;
            this.gridColumn41.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn41.AppearanceHeader.Options.UseTextOptions = true;
            this.gridColumn41.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn41.Caption = "家庭电话";
            this.gridColumn41.FieldName = "info_stuFatherLinkPhone";
            this.gridColumn41.Name = "gridColumn41";
            this.gridColumn41.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn41.OptionsColumn.AllowIncrementalSearch = false;
            this.gridColumn41.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn41.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
            this.gridColumn41.OptionsColumn.FixedWidth = true;
            this.gridColumn41.OptionsColumn.ShowInCustomizationForm = false;
            this.gridColumn41.Visible = true;
            this.gridColumn41.Width = 72;
            // 
            // gridColumn16
            // 
            this.gridColumn16.AppearanceCell.Options.UseTextOptions = true;
            this.gridColumn16.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn16.AppearanceHeader.Options.UseTextOptions = true;
            this.gridColumn16.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn16.Caption = "入园时间";
            this.gridColumn16.FieldName = "info_stuEntryDate";
            this.gridColumn16.Name = "gridColumn16";
            this.gridColumn16.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn16.OptionsColumn.AllowIncrementalSearch = false;
            this.gridColumn16.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn16.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
            this.gridColumn16.OptionsColumn.FixedWidth = true;
            this.gridColumn16.OptionsColumn.ShowInCustomizationForm = false;
            this.gridColumn16.Visible = true;
            this.gridColumn16.Width = 72;
            // 
            // gridColumn44
            // 
            this.gridColumn44.AppearanceCell.Options.UseTextOptions = true;
            this.gridColumn44.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn44.AppearanceHeader.Options.UseTextOptions = true;
            this.gridColumn44.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn44.Caption = "电子邮件";
            this.gridColumn44.FieldName = "info_stuEMailAddr";
            this.gridColumn44.MinWidth = 10;
            this.gridColumn44.Name = "gridColumn44";
            this.gridColumn44.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn44.OptionsColumn.AllowIncrementalSearch = false;
            this.gridColumn44.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn44.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
            this.gridColumn44.OptionsColumn.FixedWidth = true;
            this.gridColumn44.OptionsColumn.ShowInCustomizationForm = false;
            this.gridColumn44.Visible = true;
            this.gridColumn44.Width = 89;
            // 
            // gridColumn15
            // 
            this.gridColumn15.AppearanceCell.Options.UseTextOptions = true;
            this.gridColumn15.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn15.AppearanceHeader.Options.UseTextOptions = true;
            this.gridColumn15.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn15.Caption = "托管";
            this.gridColumn15.FieldName = "info_stuEntryStatus";
            this.gridColumn15.Name = "gridColumn15";
            this.gridColumn15.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn15.OptionsColumn.AllowIncrementalSearch = false;
            this.gridColumn15.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn15.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
            this.gridColumn15.OptionsColumn.FixedWidth = true;
            this.gridColumn15.OptionsColumn.ShowInCustomizationForm = false;
            this.gridColumn15.Visible = true;
            this.gridColumn15.Width = 92;
            // 
            // gridColumn9
            // 
            this.gridColumn9.AppearanceCell.Options.UseTextOptions = true;
            this.gridColumn9.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn9.AppearanceHeader.Options.UseTextOptions = true;
            this.gridColumn9.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn9.Caption = "学号";
            this.gridColumn9.FieldName = "info_stuNumber";
            this.gridColumn9.MinWidth = 10;
            this.gridColumn9.Name = "gridColumn9";
            this.gridColumn9.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn9.OptionsColumn.AllowIncrementalSearch = false;
            this.gridColumn9.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn9.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
            this.gridColumn9.OptionsColumn.FixedWidth = true;
            this.gridColumn9.OptionsColumn.ShowInCustomizationForm = false;
            this.gridColumn9.RowIndex = 1;
            this.gridColumn9.Visible = true;
            this.gridColumn9.Width = 65;
            // 
            // gridColumn12
            // 
            this.gridColumn12.AppearanceCell.Options.UseTextOptions = true;
            this.gridColumn12.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn12.AppearanceHeader.Options.UseTextOptions = true;
            this.gridColumn12.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn12.Caption = "班级号";
            this.gridColumn12.FieldName = "info_stuClass";
            this.gridColumn12.Name = "gridColumn12";
            this.gridColumn12.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn12.OptionsColumn.AllowIncrementalSearch = false;
            this.gridColumn12.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn12.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
            this.gridColumn12.OptionsColumn.FixedWidth = true;
            this.gridColumn12.OptionsColumn.ShowInCustomizationForm = false;
            this.gridColumn12.RowIndex = 1;
            this.gridColumn12.Visible = true;
            this.gridColumn12.Width = 51;
            // 
            // gridColumn42
            // 
            this.gridColumn42.AppearanceCell.Options.UseTextOptions = true;
            this.gridColumn42.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn42.AppearanceHeader.Options.UseTextOptions = true;
            this.gridColumn42.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn42.Caption = "家庭住址";
            this.gridColumn42.FieldName = "info_stuFamilyAddr";
            this.gridColumn42.MinWidth = 10;
            this.gridColumn42.Name = "gridColumn42";
            this.gridColumn42.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn42.OptionsColumn.AllowIncrementalSearch = false;
            this.gridColumn42.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn42.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
            this.gridColumn42.OptionsColumn.FixedWidth = true;
            this.gridColumn42.OptionsColumn.ShowInCustomizationForm = false;
            this.gridColumn42.RowIndex = 1;
            this.gridColumn42.Visible = true;
            this.gridColumn42.Width = 72;
            // 
            // gridColumn14
            // 
            this.gridColumn14.AppearanceCell.Options.UseTextOptions = true;
            this.gridColumn14.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn14.AppearanceHeader.Options.UseTextOptions = true;
            this.gridColumn14.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn14.Caption = "生日";
            this.gridColumn14.FieldName = "info_stuBirthDay";
            this.gridColumn14.Name = "gridColumn14";
            this.gridColumn14.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn14.OptionsColumn.AllowIncrementalSearch = false;
            this.gridColumn14.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn14.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
            this.gridColumn14.OptionsColumn.FixedWidth = true;
            this.gridColumn14.OptionsColumn.ShowInCustomizationForm = false;
            this.gridColumn14.RowIndex = 1;
            this.gridColumn14.Visible = true;
            this.gridColumn14.Width = 72;
            // 
            // gridColumn43
            // 
            this.gridColumn43.AppearanceCell.Options.UseTextOptions = true;
            this.gridColumn43.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn43.AppearanceHeader.Options.UseTextOptions = true;
            this.gridColumn43.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn43.Caption = "邮编";
            this.gridColumn43.FieldName = "info_stuZipCode";
            this.gridColumn43.Name = "gridColumn43";
            this.gridColumn43.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn43.OptionsColumn.AllowIncrementalSearch = false;
            this.gridColumn43.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn43.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
            this.gridColumn43.OptionsColumn.FixedWidth = true;
            this.gridColumn43.OptionsColumn.ShowInCustomizationForm = false;
            this.gridColumn43.RowIndex = 1;
            this.gridColumn43.Visible = true;
            this.gridColumn43.Width = 89;
            // 
            // gridColumn13
            // 
            this.gridColumn13.AppearanceCell.Options.UseTextOptions = true;
            this.gridColumn13.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn13.AppearanceHeader.Options.UseTextOptions = true;
            this.gridColumn13.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn13.Caption = "性别";
            this.gridColumn13.FieldName = "info_stuGender";
            this.gridColumn13.Name = "gridColumn13";
            this.gridColumn13.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn13.OptionsColumn.AllowIncrementalSearch = false;
            this.gridColumn13.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn13.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
            this.gridColumn13.OptionsColumn.FixedWidth = true;
            this.gridColumn13.OptionsColumn.ShowInCustomizationForm = false;
            this.gridColumn13.RowIndex = 1;
            this.gridColumn13.Visible = true;
            this.gridColumn13.Width = 92;
            // 
            // gridColumn17
            // 
            this.gridColumn17.Caption = "gridColumn17";
            this.gridColumn17.FieldName = "info_stuID";
            this.gridColumn17.Name = "gridColumn17";
            this.gridColumn17.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn17.OptionsColumn.AllowIncrementalSearch = false;
            this.gridColumn17.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn17.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
            this.gridColumn17.OptionsColumn.FixedWidth = true;
            this.gridColumn17.OptionsColumn.ShowInCustomizationForm = false;
            this.gridColumn17.Visible = true;
            this.gridColumn17.Width = 147;
            // 
            // gridControl_BatchCreate_Class
            // 
            this.gridControl_BatchCreate_Class.Dock = System.Windows.Forms.DockStyle.Fill;
            this.gridControl_BatchCreate_Class.Location = new System.Drawing.Point(2, 22);
            this.gridControl_BatchCreate_Class.MainView = this.gridView2;
            this.gridControl_BatchCreate_Class.Name = "gridControl_BatchCreate_Class";
            this.gridControl_BatchCreate_Class.Size = new System.Drawing.Size(460, 376);
            this.gridControl_BatchCreate_Class.TabIndex = 1;
            this.gridControl_BatchCreate_Class.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
            this.gridView2});
            this.gridControl_BatchCreate_Class.Visible = false;
            // 
            // gridView2
            // 
            this.gridView2.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
            this.gridColumn4,
            this.gridColumn5,
            this.gridColumn6,
            this.gridColumn7,
            this.gridColumn8,
            this.gridColumn39,
            this.gridColumn40});
            this.gridView2.GridControl = this.gridControl_BatchCreate_Class;
            this.gridView2.Name = "gridView2";
            this.gridView2.OptionsCustomization.AllowFilter = false;
            this.gridView2.OptionsView.ShowFilterPanelMode = DevExpress.XtraGrid.Views.Base.ShowFilterPanelMode.Never;
            this.gridView2.OptionsView.ShowGroupPanel = false;
            // 
            // gridColumn4
            // 
            this.gridColumn4.AppearanceCell.Options.UseTextOptions = true;
            this.gridColumn4.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn4.AppearanceHeader.Options.UseTextOptions = true;
            this.gridColumn4.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn4.Caption = "班级号(岗位号)";
            this.gridColumn4.FieldName = "info_classNumber";
            this.gridColumn4.Name = "gridColumn4";
            this.gridColumn4.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn4.OptionsColumn.AllowIncrementalSearch = false;
            this.gridColumn4.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn4.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
            this.gridColumn4.OptionsColumn.ShowInCustomizationForm = false;
            this.gridColumn4.Visible = true;
            this.gridColumn4.VisibleIndex = 0;
            this.gridColumn4.Width = 93;
            // 
            // gridColumn5
            // 
            this.gridColumn5.AppearanceCell.Options.UseTextOptions = true;
            this.gridColumn5.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn5.AppearanceHeader.Options.UseTextOptions = true;
            this.gridColumn5.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn5.Caption = "班级名(岗位名)";
            this.gridColumn5.FieldName = "info_className";
            this.gridColumn5.Name = "gridColumn5";
            this.gridColumn5.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn5.OptionsColumn.AllowIncrementalSearch = false;
            this.gridColumn5.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn5.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
            this.gridColumn5.OptionsColumn.ShowInCustomizationForm = false;
            this.gridColumn5.Visible = true;
            this.gridColumn5.VisibleIndex = 1;
            this.gridColumn5.Width = 96;
            // 
            // gridColumn6
            // 
            this.gridColumn6.AppearanceCell.Options.UseTextOptions = true;
            this.gridColumn6.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn6.AppearanceHeader.Options.UseTextOptions = true;
            this.gridColumn6.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn6.Caption = "年级号(部门号)";
            this.gridColumn6.FieldName = "info_gradeNumber";
            this.gridColumn6.Name = "gridColumn6";
            this.gridColumn6.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn6.OptionsColumn.AllowIncrementalSearch = false;
            this.gridColumn6.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn6.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
            this.gridColumn6.OptionsColumn.ShowInCustomizationForm = false;
            this.gridColumn6.Visible = true;
            this.gridColumn6.VisibleIndex = 2;
            this.gridColumn6.Width = 100;
            // 
            // gridColumn7
            // 
            this.gridColumn7.AppearanceCell.Options.UseTextOptions = true;
            this.gridColumn7.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn7.AppearanceHeader.Options.UseTextOptions = true;
            this.gridColumn7.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn7.Caption = "对应地址";
            this.gridColumn7.FieldName = "info_machineAddr";
            this.gridColumn7.Name = "gridColumn7";
            this.gridColumn7.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn7.OptionsColumn.AllowIncrementalSearch = false;
            this.gridColumn7.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn7.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
            this.gridColumn7.OptionsColumn.ShowInCustomizationForm = false;
            this.gridColumn7.Visible = true;
            this.gridColumn7.VisibleIndex = 3;
            this.gridColumn7.Width = 66;
            // 
            // gridColumn8
            // 
            this.gridColumn8.AppearanceCell.Options.UseTextOptions = true;
            this.gridColumn8.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn8.AppearanceHeader.Options.UseTextOptions = true;
            this.gridColumn8.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn8.Caption = "备注";
            this.gridColumn8.FieldName = "info_classRemark";
            this.gridColumn8.Name = "gridColumn8";
            this.gridColumn8.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn8.OptionsColumn.AllowIncrementalSearch = false;
            this.gridColumn8.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn8.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
            this.gridColumn8.OptionsColumn.ShowInCustomizationForm = false;
            this.gridColumn8.Visible = true;
            this.gridColumn8.VisibleIndex = 4;
            this.gridColumn8.Width = 83;
            // 
            // gridColumn39
            // 
            this.gridColumn39.Caption = "gridColumn39";
            this.gridColumn39.FieldName = "ClassNumber";
            this.gridColumn39.Name = "gridColumn39";
            // 
            // gridColumn40
            // 
            this.gridColumn40.Caption = "gridColumn40";
            this.gridColumn40.FieldName = "GradeNumber";
            this.gridColumn40.Name = "gridColumn40";
            // 
            // gridControl_BatchCreate_Grade
            // 
            this.gridControl_BatchCreate_Grade.Dock = System.Windows.Forms.DockStyle.Fill;
            this.gridControl_BatchCreate_Grade.Location = new System.Drawing.Point(2, 22);
            this.gridControl_BatchCreate_Grade.MainView = this.gridView1;
            this.gridControl_BatchCreate_Grade.Name = "gridControl_BatchCreate_Grade";
            this.gridControl_BatchCreate_Grade.Size = new System.Drawing.Size(460, 376);
            this.gridControl_BatchCreate_Grade.TabIndex = 0;
            this.gridControl_BatchCreate_Grade.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
            this.gridView1});
            this.gridControl_BatchCreate_Grade.Visible = false;
            // 
            // gridView1
            // 
            this.gridView1.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
            this.gridColumn1,
            this.gridColumn2,
            this.gridColumn3,
            this.gridColumn38});
            this.gridView1.GridControl = this.gridControl_BatchCreate_Grade;
            this.gridView1.Name = "gridView1";
            this.gridView1.OptionsCustomization.AllowFilter = false;
            this.gridView1.OptionsView.ShowFilterPanelMode = DevExpress.XtraGrid.Views.Base.ShowFilterPanelMode.Never;
            this.gridView1.OptionsView.ShowGroupPanel = false;
            // 
            // gridColumn1
            // 
            this.gridColumn1.AppearanceCell.Options.UseTextOptions = true;
            this.gridColumn1.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn1.AppearanceHeader.Options.UseTextOptions = true;
            this.gridColumn1.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn1.Caption = "年级号(部门号)";
            this.gridColumn1.FieldName = "info_gradeNumber";
            this.gridColumn1.Name = "gridColumn1";
            this.gridColumn1.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn1.OptionsColumn.AllowIncrementalSearch = false;
            this.gridColumn1.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn1.OptionsColumn.AllowMove = false;
            this.gridColumn1.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
            this.gridColumn1.OptionsColumn.ShowInCustomizationForm = false;
            this.gridColumn1.Visible = true;
            this.gridColumn1.VisibleIndex = 0;
            this.gridColumn1.Width = 146;
            // 
            // gridColumn2
            // 
            this.gridColumn2.AppearanceCell.Options.UseTextOptions = true;
            this.gridColumn2.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn2.AppearanceHeader.Options.UseTextOptions = true;
            this.gridColumn2.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn2.Caption = "年级名(部门名)";
            this.gridColumn2.FieldName = "info_gradeName";
            this.gridColumn2.Name = "gridColumn2";
            this.gridColumn2.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn2.OptionsColumn.AllowIncrementalSearch = false;
            this.gridColumn2.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn2.OptionsColumn.AllowMove = false;
            this.gridColumn2.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
            this.gridColumn2.OptionsColumn.ShowInCustomizationForm = false;
            this.gridColumn2.Visible = true;
            this.gridColumn2.VisibleIndex = 1;
            this.gridColumn2.Width = 168;
            // 
            // gridColumn3
            // 
            this.gridColumn3.AppearanceCell.Options.UseTextOptions = true;
            this.gridColumn3.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn3.AppearanceHeader.Options.UseTextOptions = true;
            this.gridColumn3.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn3.Caption = "年级备注(部门备注)";
            this.gridColumn3.FieldName = "info_gradeRemark";
            this.gridColumn3.Name = "gridColumn3";
            this.gridColumn3.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn3.OptionsColumn.AllowIncrementalSearch = false;
            this.gridColumn3.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn3.OptionsColumn.AllowMove = false;
            this.gridColumn3.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
            this.gridColumn3.OptionsColumn.ShowInCustomizationForm = false;
            this.gridColumn3.Visible = true;
            this.gridColumn3.VisibleIndex = 2;
            this.gridColumn3.Width = 340;
            // 
            // gridColumn38
            // 
            this.gridColumn38.Caption = "gridColumn38";
            this.gridColumn38.FieldName = "GradeNumber";
            this.gridColumn38.Name = "gridColumn38";
            // 
            // xtraTabPage_UpdateGrade
            // 
            this.xtraTabPage_UpdateGrade.Appearance.PageClient.BackColor = System.Drawing.Color.WhiteSmoke;
            this.xtraTabPage_UpdateGrade.Appearance.PageClient.Options.UseBackColor = true;
            this.xtraTabPage_UpdateGrade.Controls.Add(this.splitContainerControl2);
            this.xtraTabPage_UpdateGrade.Controls.Add(this.splitterControl1);
            this.xtraTabPage_UpdateGrade.Name = "xtraTabPage_UpdateGrade";
            this.xtraTabPage_UpdateGrade.PageVisible = false;
            this.xtraTabPage_UpdateGrade.Size = new System.Drawing.Size(682, 400);
            this.xtraTabPage_UpdateGrade.Text = "年班升级";
            // 
            // splitContainerControl2
            // 
            this.splitContainerControl2.Dock = System.Windows.Forms.DockStyle.Fill;
            this.splitContainerControl2.Location = new System.Drawing.Point(5, 0);
            this.splitContainerControl2.Name = "splitContainerControl2";
            this.splitContainerControl2.Panel1.Controls.Add(this.groupControl9);
            this.splitContainerControl2.Panel1.Text = "splitContainerControl2_Panel1";
            this.splitContainerControl2.Panel2.Controls.Add(this.groupControl10);
            this.splitContainerControl2.Panel2.Controls.Add(this.panelControl1);
            this.splitContainerControl2.Panel2.Text = "splitContainerControl2_Panel2";
            this.splitContainerControl2.Size = new System.Drawing.Size(677, 400);
            this.splitContainerControl2.SplitterPosition = 220;
            this.splitContainerControl2.TabIndex = 1;
            this.splitContainerControl2.Text = "splitContainerControl2";
            // 
            // groupControl9
            // 
            this.groupControl9.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.groupControl9.AppearanceCaption.Options.UseFont = true;
            this.groupControl9.Controls.Add(this.comboBoxEdit_ClassNumber);
            this.groupControl9.Controls.Add(this.notePanel_ClassNumber);
            this.groupControl9.Controls.Add(this.comboBoxEdit_GradeNumber);
            this.groupControl9.Controls.Add(this.notePanel_GradeNumber);
            this.groupControl9.Controls.Add(this.notePanel12);
            this.groupControl9.Controls.Add(this.textEdit_DestClass);
            this.groupControl9.Controls.Add(this.notePanel_DestClass);
            this.groupControl9.Controls.Add(this.comboBoxEdit_SrcClass);
            this.groupControl9.Controls.Add(this.notePanel_SrcClass);
            this.groupControl9.Controls.Add(this.textEdit_DestGrade);
            this.groupControl9.Controls.Add(this.notePanel_DestGrade);
            this.groupControl9.Controls.Add(this.comboBoxEdit_SrcGrade);
            this.groupControl9.Controls.Add(this.notePanel_SrcGrade);
            this.groupControl9.Dock = System.Windows.Forms.DockStyle.Top;
            this.groupControl9.Location = new System.Drawing.Point(0, 0);
            this.groupControl9.Name = "groupControl9";
            this.groupControl9.Size = new System.Drawing.Size(220, 256);
            this.groupControl9.TabIndex = 0;
            this.groupControl9.Text = "年班变更";
            // 
            // comboBoxEdit_ClassNumber
            // 
            this.comboBoxEdit_ClassNumber.EditValue = "";
            this.comboBoxEdit_ClassNumber.Location = new System.Drawing.Point(112, 152);
            this.comboBoxEdit_ClassNumber.Name = "comboBoxEdit_ClassNumber";
            this.comboBoxEdit_ClassNumber.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.comboBoxEdit_ClassNumber.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
            this.comboBoxEdit_ClassNumber.Size = new System.Drawing.Size(88, 20);
            this.comboBoxEdit_ClassNumber.TabIndex = 39;
            this.comboBoxEdit_ClassNumber.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit_ClassNumber_SelectedIndexChanged);
            // 
            // notePanel_ClassNumber
            // 
            this.notePanel_ClassNumber.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel_ClassNumber.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel_ClassNumber.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel_ClassNumber.ForeColor = System.Drawing.Color.Black;
            this.notePanel_ClassNumber.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_ClassNumber.Location = new System.Drawing.Point(16, 152);
            this.notePanel_ClassNumber.MaxRows = 5;
            this.notePanel_ClassNumber.Name = "notePanel_ClassNumber";
            this.notePanel_ClassNumber.ParentAutoHeight = true;
            this.notePanel_ClassNumber.Size = new System.Drawing.Size(80, 22);
            this.notePanel_ClassNumber.TabIndex = 38;
            this.notePanel_ClassNumber.TabStop = false;
            this.notePanel_ClassNumber.Text = " 班级号:";
            // 
            // comboBoxEdit_GradeNumber
            // 
            this.comboBoxEdit_GradeNumber.EditValue = "";
            this.comboBoxEdit_GradeNumber.Location = new System.Drawing.Point(112, 56);
            this.comboBoxEdit_GradeNumber.Name = "comboBoxEdit_GradeNumber";
            this.comboBoxEdit_GradeNumber.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.comboBoxEdit_GradeNumber.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
            this.comboBoxEdit_GradeNumber.Size = new System.Drawing.Size(88, 20);
            this.comboBoxEdit_GradeNumber.TabIndex = 37;
            this.comboBoxEdit_GradeNumber.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit_GradeNumber_SelectedIndexChanged);
            // 
            // notePanel_GradeNumber
            // 
            this.notePanel_GradeNumber.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel_GradeNumber.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel_GradeNumber.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel_GradeNumber.ForeColor = System.Drawing.Color.Black;
            this.notePanel_GradeNumber.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_GradeNumber.Location = new System.Drawing.Point(16, 56);
            this.notePanel_GradeNumber.MaxRows = 5;
            this.notePanel_GradeNumber.Name = "notePanel_GradeNumber";
            this.notePanel_GradeNumber.ParentAutoHeight = true;
            this.notePanel_GradeNumber.Size = new System.Drawing.Size(80, 22);
            this.notePanel_GradeNumber.TabIndex = 36;
            this.notePanel_GradeNumber.TabStop = false;
            this.notePanel_GradeNumber.Text = " 年级号:";
            // 
            // notePanel12
            // 
            this.notePanel12.BackColor = System.Drawing.Color.LightGoldenrodYellow;
            this.notePanel12.Dock = System.Windows.Forms.DockStyle.Top;
            this.notePanel12.ForeColor = System.Drawing.Color.OrangeRed;
            this.notePanel12.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel12.Location = new System.Drawing.Point(2, 22);
            this.notePanel12.MaxRows = 5;
            this.notePanel12.Name = "notePanel12";
            this.notePanel12.ParentAutoHeight = true;
            this.notePanel12.Size = new System.Drawing.Size(216, 23);
            this.notePanel12.TabIndex = 35;
            this.notePanel12.TabStop = false;
            this.notePanel12.Text = "整体调整";
            // 
            // textEdit_DestClass
            // 
            this.textEdit_DestClass.EditValue = "";
            this.textEdit_DestClass.Location = new System.Drawing.Point(112, 216);
            this.textEdit_DestClass.Name = "textEdit_DestClass";
            this.textEdit_DestClass.Size = new System.Drawing.Size(88, 20);
            this.textEdit_DestClass.TabIndex = 34;
            this.textEdit_DestClass.KeyDown += new System.Windows.Forms.KeyEventHandler(this.textEdit_DestClass_KeyDown);
            // 
            // notePanel_DestClass
            // 
            this.notePanel_DestClass.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel_DestClass.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel_DestClass.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel_DestClass.ForeColor = System.Drawing.Color.Black;
            this.notePanel_DestClass.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_DestClass.Location = new System.Drawing.Point(16, 216);
            this.notePanel_DestClass.MaxRows = 5;
            this.notePanel_DestClass.Name = "notePanel_DestClass";
            this.notePanel_DestClass.ParentAutoHeight = true;
            this.notePanel_DestClass.Size = new System.Drawing.Size(80, 22);
            this.notePanel_DestClass.TabIndex = 33;
            this.notePanel_DestClass.TabStop = false;
            this.notePanel_DestClass.Text = "现班级名:";
            // 
            // comboBoxEdit_SrcClass
            // 
            this.comboBoxEdit_SrcClass.EditValue = "";
            this.comboBoxEdit_SrcClass.Location = new System.Drawing.Point(112, 184);
            this.comboBoxEdit_SrcClass.Name = "comboBoxEdit_SrcClass";
            this.comboBoxEdit_SrcClass.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.comboBoxEdit_SrcClass.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
            this.comboBoxEdit_SrcClass.Size = new System.Drawing.Size(88, 20);
            this.comboBoxEdit_SrcClass.TabIndex = 32;
            // 
            // notePanel_SrcClass
            // 
            this.notePanel_SrcClass.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel_SrcClass.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel_SrcClass.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel_SrcClass.ForeColor = System.Drawing.Color.Black;
            this.notePanel_SrcClass.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_SrcClass.Location = new System.Drawing.Point(16, 184);
            this.notePanel_SrcClass.MaxRows = 5;
            this.notePanel_SrcClass.Name = "notePanel_SrcClass";
            this.notePanel_SrcClass.ParentAutoHeight = true;
            this.notePanel_SrcClass.Size = new System.Drawing.Size(80, 22);
            this.notePanel_SrcClass.TabIndex = 31;
            this.notePanel_SrcClass.TabStop = false;
            this.notePanel_SrcClass.Text = "原班级名:";
            // 
            // textEdit_DestGrade
            // 
            this.textEdit_DestGrade.EditValue = "";
            this.textEdit_DestGrade.Location = new System.Drawing.Point(112, 120);
            this.textEdit_DestGrade.Name = "textEdit_DestGrade";
            this.textEdit_DestGrade.Size = new System.Drawing.Size(88, 20);
            this.textEdit_DestGrade.TabIndex = 30;
            this.textEdit_DestGrade.KeyDown += new System.Windows.Forms.KeyEventHandler(this.textEdit_DestGrade_KeyDown);
            // 
            // notePanel_DestGrade
            // 
            this.notePanel_DestGrade.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel_DestGrade.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel_DestGrade.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel_DestGrade.ForeColor = System.Drawing.Color.Black;
            this.notePanel_DestGrade.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_DestGrade.Location = new System.Drawing.Point(16, 120);
            this.notePanel_DestGrade.MaxRows = 5;
            this.notePanel_DestGrade.Name = "notePanel_DestGrade";
            this.notePanel_DestGrade.ParentAutoHeight = true;
            this.notePanel_DestGrade.Size = new System.Drawing.Size(80, 22);
            this.notePanel_DestGrade.TabIndex = 29;
            this.notePanel_DestGrade.TabStop = false;
            this.notePanel_DestGrade.Text = "现年级名:";
            // 
            // comboBoxEdit_SrcGrade
            // 
            this.comboBoxEdit_SrcGrade.EditValue = "";
            this.comboBoxEdit_SrcGrade.Location = new System.Drawing.Point(112, 88);
            this.comboBoxEdit_SrcGrade.Name = "comboBoxEdit_SrcGrade";
            this.comboBoxEdit_SrcGrade.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.comboBoxEdit_SrcGrade.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
            this.comboBoxEdit_SrcGrade.Size = new System.Drawing.Size(88, 20);
            this.comboBoxEdit_SrcGrade.TabIndex = 28;
            // 
            // notePanel_SrcGrade
            // 
            this.notePanel_SrcGrade.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel_SrcGrade.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel_SrcGrade.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel_SrcGrade.ForeColor = System.Drawing.Color.Black;
            this.notePanel_SrcGrade.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_SrcGrade.Location = new System.Drawing.Point(16, 88);
            this.notePanel_SrcGrade.MaxRows = 5;
            this.notePanel_SrcGrade.Name = "notePanel_SrcGrade";
            this.notePanel_SrcGrade.ParentAutoHeight = true;
            this.notePanel_SrcGrade.Size = new System.Drawing.Size(80, 22);
            this.notePanel_SrcGrade.TabIndex = 22;
            this.notePanel_SrcGrade.TabStop = false;
            this.notePanel_SrcGrade.Text = "原年级名:";
            // 
            // groupControl10
            // 
            this.groupControl10.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.groupControl10.AppearanceCaption.Options.UseFont = true;
            this.groupControl10.Controls.Add(this.gridControl_StudentAdjust);
            this.groupControl10.Controls.Add(this.notePanel13);
            this.groupControl10.Dock = System.Windows.Forms.DockStyle.Fill;
            this.groupControl10.Location = new System.Drawing.Point(0, 40);
            this.groupControl10.Name = "groupControl10";
            this.groupControl10.Size = new System.Drawing.Size(452, 360);
            this.groupControl10.TabIndex = 1;
            this.groupControl10.Text = "不匹配学生信息列表";
            // 
            // gridControl_StudentAdjust
            // 
            this.gridControl_StudentAdjust.Dock = System.Windows.Forms.DockStyle.Fill;
            this.gridControl_StudentAdjust.Location = new System.Drawing.Point(2, 45);
            this.gridControl_StudentAdjust.MainView = this.gridView3;
            this.gridControl_StudentAdjust.Name = "gridControl_StudentAdjust";
            this.gridControl_StudentAdjust.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
            this.repositoryItemCheckEdit1});
            this.gridControl_StudentAdjust.Size = new System.Drawing.Size(448, 313);
            this.gridControl_StudentAdjust.TabIndex = 37;
            this.gridControl_StudentAdjust.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
            this.gridView3});
            this.gridControl_StudentAdjust.DoubleClick += new System.EventHandler(this.gridControl_StudentAdjust_DoubleClick);
            // 
            // gridView3
            // 
            this.gridView3.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
            this.gridColumn49,
            this.gridColumn51,
            this.gridColumn54,
            this.gridColumn55,
            this.gridColumn56});
            this.gridView3.GridControl = this.gridControl_StudentAdjust;
            this.gridView3.Name = "gridView3";
            this.gridView3.OptionsCustomization.AllowFilter = false;
            this.gridView3.OptionsView.ShowAutoFilterRow = true;
            this.gridView3.OptionsView.ShowFilterPanelMode = DevExpress.XtraGrid.Views.Base.ShowFilterPanelMode.Never;
            this.gridView3.OptionsView.ShowGroupPanel = false;
            // 
            // gridColumn49
            // 
            this.gridColumn49.AppearanceCell.Options.UseTextOptions = true;
            this.gridColumn49.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn49.AppearanceHeader.Options.UseTextOptions = true;
            this.gridColumn49.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn49.Caption = "是否新生";
            this.gridColumn49.ColumnEdit = this.repositoryItemCheckEdit1;
            this.gridColumn49.FieldName = "info_checkType";
            this.gridColumn49.Name = "gridColumn49";
            this.gridColumn49.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn49.OptionsColumn.AllowIncrementalSearch = false;
            this.gridColumn49.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn49.OptionsColumn.AllowMove = false;
            this.gridColumn49.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
            this.gridColumn49.OptionsColumn.ShowInCustomizationForm = false;
            this.gridColumn49.Visible = true;
            this.gridColumn49.VisibleIndex = 0;
            this.gridColumn49.Width = 71;
            // 
            // repositoryItemCheckEdit1
            // 
            this.repositoryItemCheckEdit1.AutoHeight = false;
            this.repositoryItemCheckEdit1.Name = "repositoryItemCheckEdit1";
            this.repositoryItemCheckEdit1.NullStyle = DevExpress.XtraEditors.Controls.StyleIndeterminate.Unchecked;
            // 
            // gridColumn51
            // 
            this.gridColumn51.AppearanceCell.Options.UseTextOptions = true;
            this.gridColumn51.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn51.AppearanceHeader.Options.UseTextOptions = true;
            this.gridColumn51.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn51.Caption = "姓名";
            this.gridColumn51.FieldName = "info_stuName";
            this.gridColumn51.Name = "gridColumn51";
            this.gridColumn51.OptionsColumn.AllowEdit = false;
            this.gridColumn51.OptionsColumn.AllowFocus = false;
            this.gridColumn51.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn51.OptionsColumn.AllowIncrementalSearch = false;
            this.gridColumn51.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn51.OptionsColumn.AllowMove = false;
            this.gridColumn51.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
            this.gridColumn51.OptionsColumn.ReadOnly = true;
            this.gridColumn51.OptionsColumn.ShowInCustomizationForm = false;
            this.gridColumn51.Visible = true;
            this.gridColumn51.VisibleIndex = 1;
            this.gridColumn51.Width = 48;
            // 
            // gridColumn54
            // 
            this.gridColumn54.AppearanceCell.Options.UseTextOptions = true;
            this.gridColumn54.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn54.AppearanceHeader.Options.UseTextOptions = true;
            this.gridColumn54.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn54.Caption = "年级号";
            this.gridColumn54.FieldName = "info_stuGrade";
            this.gridColumn54.Name = "gridColumn54";
            this.gridColumn54.OptionsColumn.AllowEdit = false;
            this.gridColumn54.OptionsColumn.AllowFocus = false;
            this.gridColumn54.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn54.OptionsColumn.AllowIncrementalSearch = false;
            this.gridColumn54.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn54.OptionsColumn.AllowMove = false;
            this.gridColumn54.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
            this.gridColumn54.OptionsColumn.ReadOnly = true;
            this.gridColumn54.OptionsColumn.ShowInCustomizationForm = false;
            this.gridColumn54.Visible = true;
            this.gridColumn54.VisibleIndex = 2;
            this.gridColumn54.Width = 45;
            // 
            // gridColumn55
            // 
            this.gridColumn55.AppearanceCell.Options.UseTextOptions = true;
            this.gridColumn55.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn55.AppearanceHeader.Options.UseTextOptions = true;
            this.gridColumn55.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn55.Caption = "班级号";
            this.gridColumn55.FieldName = "info_stuClass";
            this.gridColumn55.Name = "gridColumn55";
            this.gridColumn55.OptionsColumn.AllowEdit = false;
            this.gridColumn55.OptionsColumn.AllowFocus = false;
            this.gridColumn55.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn55.OptionsColumn.AllowIncrementalSearch = false;
            this.gridColumn55.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn55.OptionsColumn.AllowMove = false;
            this.gridColumn55.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
            this.gridColumn55.OptionsColumn.ReadOnly = true;
            this.gridColumn55.OptionsColumn.ShowInCustomizationForm = false;
            this.gridColumn55.Visible = true;
            this.gridColumn55.VisibleIndex = 3;
            this.gridColumn55.Width = 48;
            // 
            // gridColumn56
            // 
            this.gridColumn56.AppearanceCell.Options.UseTextOptions = true;
            this.gridColumn56.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn56.AppearanceHeader.Options.UseTextOptions = true;
            this.gridColumn56.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn56.Caption = "入园类型";
            this.gridColumn56.FieldName = "info_type";
            this.gridColumn56.Name = "gridColumn56";
            this.gridColumn56.OptionsColumn.AllowEdit = false;
            this.gridColumn56.OptionsColumn.AllowFocus = false;
            this.gridColumn56.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn56.OptionsColumn.AllowIncrementalSearch = false;
            this.gridColumn56.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn56.OptionsColumn.AllowMove = false;
            this.gridColumn56.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
            this.gridColumn56.OptionsColumn.ReadOnly = true;
            this.gridColumn56.OptionsColumn.ShowInCustomizationForm = false;
            this.gridColumn56.Visible = true;
            this.gridColumn56.VisibleIndex = 4;
            this.gridColumn56.Width = 61;
            // 
            // notePanel13
            // 
            this.notePanel13.BackColor = System.Drawing.Color.LightGoldenrodYellow;
            this.notePanel13.Dock = System.Windows.Forms.DockStyle.Top;
            this.notePanel13.ForeColor = System.Drawing.Color.OrangeRed;
            this.notePanel13.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel13.Location = new System.Drawing.Point(2, 22);
            this.notePanel13.MaxRows = 5;
            this.notePanel13.Name = "notePanel13";
            this.notePanel13.ParentAutoHeight = true;
            this.notePanel13.Size = new System.Drawing.Size(448, 23);
            this.notePanel13.TabIndex = 36;
            this.notePanel13.TabStop = false;
            this.notePanel13.Text = "学生个别调整";
            // 
            // panelControl1
            // 
            this.panelControl1.Controls.Add(this.simpleButton_Submit);
            this.panelControl1.Controls.Add(this.simpleButton_LoadTable);
            this.panelControl1.Dock = System.Windows.Forms.DockStyle.Top;
            this.panelControl1.Location = new System.Drawing.Point(0, 0);
            this.panelControl1.Name = "panelControl1";
            this.panelControl1.Size = new System.Drawing.Size(452, 40);
            this.panelControl1.TabIndex = 0;
            // 
            // simpleButton_Submit
            // 
            this.simpleButton_Submit.Location = new System.Drawing.Point(120, 8);
            this.simpleButton_Submit.Name = "simpleButton_Submit";
            this.simpleButton_Submit.Size = new System.Drawing.Size(96, 23);
            this.simpleButton_Submit.TabIndex = 3;
            this.simpleButton_Submit.Text = "提交调整操作";
            this.simpleButton_Submit.Click += new System.EventHandler(this.simpleButton_Submit_Click);
            // 
            // simpleButton_LoadTable
            // 
            this.simpleButton_LoadTable.Location = new System.Drawing.Point(8, 8);
            this.simpleButton_LoadTable.Name = "simpleButton_LoadTable";
            this.simpleButton_LoadTable.Size = new System.Drawing.Size(104, 23);
            this.simpleButton_LoadTable.TabIndex = 2;
            this.simpleButton_LoadTable.Text = "载入学生调整表";
            this.simpleButton_LoadTable.Click += new System.EventHandler(this.simpleButton_LoadTable_Click);
            // 
            // splitterControl1
            // 
            this.splitterControl1.Location = new System.Drawing.Point(0, 0);
            this.splitterControl1.Name = "splitterControl1";
            this.splitterControl1.Size = new System.Drawing.Size(5, 400);
            this.splitterControl1.TabIndex = 0;
            this.splitterControl1.TabStop = false;
            // 
            // xtraTabPage_TerminalServ
            // 
            this.xtraTabPage_TerminalServ.Appearance.PageClient.BackColor = System.Drawing.Color.WhiteSmoke;
            this.xtraTabPage_TerminalServ.Appearance.PageClient.Options.UseBackColor = true;
            this.xtraTabPage_TerminalServ.Controls.Add(this.gridControl_SessionUser);
            this.xtraTabPage_TerminalServ.Name = "xtraTabPage_TerminalServ";
            this.xtraTabPage_TerminalServ.Size = new System.Drawing.Size(682, 400);
            this.xtraTabPage_TerminalServ.Text = "终端服务管理";
            // 
            // gridControl_SessionUser
            // 
            this.gridControl_SessionUser.Location = new System.Drawing.Point(136, 80);
            this.gridControl_SessionUser.MainView = this.gridView9;
            this.gridControl_SessionUser.Name = "gridControl_SessionUser";
            this.gridControl_SessionUser.Size = new System.Drawing.Size(448, 232);
            this.gridControl_SessionUser.TabIndex = 0;
            this.gridControl_SessionUser.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
            this.gridView9,
            this.gridView8});
            // 
            // gridView9
            // 
            this.gridView9.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
            this.gridColumn50,
            this.gridColumn52,
            this.gridColumn53,
            this.gridColumn57});
            this.gridView9.GridControl = this.gridControl_SessionUser;
            this.gridView9.Name = "gridView9";
            this.gridView9.OptionsCustomization.AllowFilter = false;
            this.gridView9.OptionsView.ShowFilterPanelMode = DevExpress.XtraGrid.Views.Base.ShowFilterPanelMode.Never;
            this.gridView9.OptionsView.ShowGroupPanel = false;
            // 
            // gridColumn50
            // 
            this.gridColumn50.AppearanceCell.Options.UseTextOptions = true;
            this.gridColumn50.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn50.AppearanceHeader.Options.UseTextOptions = true;
            this.gridColumn50.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn50.Caption = "登陆用户";
            this.gridColumn50.FieldName = "session_LoginUser";
            this.gridColumn50.Name = "gridColumn50";
            this.gridColumn50.OptionsColumn.AllowEdit = false;
            this.gridColumn50.OptionsColumn.AllowFocus = false;
            this.gridColumn50.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn50.OptionsColumn.AllowIncrementalSearch = false;
            this.gridColumn50.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn50.OptionsColumn.AllowMove = false;
            this.gridColumn50.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
            this.gridColumn50.OptionsColumn.FixedWidth = true;
            this.gridColumn50.OptionsColumn.ReadOnly = true;
            this.gridColumn50.OptionsColumn.ShowInCustomizationForm = false;
            this.gridColumn50.Visible = true;
            this.gridColumn50.VisibleIndex = 0;
            // 
            // gridColumn52
            // 
            this.gridColumn52.AppearanceCell.Options.UseTextOptions = true;
            this.gridColumn52.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn52.AppearanceHeader.Options.UseTextOptions = true;
            this.gridColumn52.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn52.Caption = "登陆IP";
            this.gridColumn52.FieldName = "session_LoginIP";
            this.gridColumn52.Name = "gridColumn52";
            this.gridColumn52.OptionsColumn.AllowEdit = false;
            this.gridColumn52.OptionsColumn.AllowFocus = false;
            this.gridColumn52.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn52.OptionsColumn.AllowIncrementalSearch = false;
            this.gridColumn52.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn52.OptionsColumn.AllowMove = false;
            this.gridColumn52.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
            this.gridColumn52.OptionsColumn.FixedWidth = true;
            this.gridColumn52.OptionsColumn.ReadOnly = true;
            this.gridColumn52.OptionsColumn.ShowInCustomizationForm = false;
            this.gridColumn52.Visible = true;
            this.gridColumn52.VisibleIndex = 1;
            // 
            // gridColumn53
            // 
            this.gridColumn53.AppearanceCell.Options.UseTextOptions = true;
            this.gridColumn53.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn53.AppearanceHeader.Options.UseTextOptions = true;
            this.gridColumn53.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn53.Caption = "登陆时间";
            this.gridColumn53.FieldName = "session_LoginDate";
            this.gridColumn53.Name = "gridColumn53";
            this.gridColumn53.OptionsColumn.AllowEdit = false;
            this.gridColumn53.OptionsColumn.AllowFocus = false;
            this.gridColumn53.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn53.OptionsColumn.AllowIncrementalSearch = false;
            this.gridColumn53.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn53.OptionsColumn.AllowMove = false;
            this.gridColumn53.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
            this.gridColumn53.OptionsColumn.FixedWidth = true;
            this.gridColumn53.OptionsColumn.ReadOnly = true;
            this.gridColumn53.OptionsColumn.ShowInCustomizationForm = false;
            this.gridColumn53.Visible = true;
            this.gridColumn53.VisibleIndex = 2;
            // 
            // gridColumn57
            // 
            this.gridColumn57.Caption = "MAC地址";
            this.gridColumn57.FieldName = "session_LoginMac";
            this.gridColumn57.Name = "gridColumn57";
            // 
            // gridView8
            // 
            this.gridView8.GridControl = this.gridControl_SessionUser;
            this.gridView8.Name = "gridView8";
            // 
            // xtraTabPage4
            // 
            this.xtraTabPage4.Appearance.PageClient.BackColor = System.Drawing.Color.WhiteSmoke;
            this.xtraTabPage4.Appearance.PageClient.Options.UseBackColor = true;
            this.xtraTabPage4.Controls.Add(this.groupControl11);
            this.xtraTabPage4.Name = "xtraTabPage4";
            this.xtraTabPage4.Size = new System.Drawing.Size(682, 400);
            this.xtraTabPage4.Text = "数据备份";
            // 
            // groupControl11
            // 
            this.groupControl11.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.groupControl11.Appearance.Options.UseFont = true;
            this.groupControl11.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.groupControl11.AppearanceCaption.Options.UseFont = true;
            this.groupControl11.Controls.Add(this.groupControl12);
            this.groupControl11.Controls.Add(this.tbxBackUpRoot);
            this.groupControl11.Controls.Add(this.smbRoot);
            this.groupControl11.Location = new System.Drawing.Point(120, 48);
            this.groupControl11.Name = "groupControl11";
            this.groupControl11.Size = new System.Drawing.Size(448, 280);
            this.groupControl11.TabIndex = 0;
            this.groupControl11.Text = "数据备份";
            // 
            // groupControl12
            // 
            this.groupControl12.Controls.Add(this.rbtDefault);
            this.groupControl12.Controls.Add(this.rbtIdle);
            this.groupControl12.Controls.Add(this.rbtStart);
            this.groupControl12.Controls.Add(this.smbBackUp);
            this.groupControl12.Location = new System.Drawing.Point(32, 64);
            this.groupControl12.Name = "groupControl12";
            this.groupControl12.Size = new System.Drawing.Size(384, 192);
            this.groupControl12.TabIndex = 4;
            this.groupControl12.Text = "备份方案";
            // 
            // rbtDefault
            // 
            this.rbtDefault.Checked = true;
            this.rbtDefault.Location = new System.Drawing.Point(80, 96);
            this.rbtDefault.Name = "rbtDefault";
            this.rbtDefault.Size = new System.Drawing.Size(136, 24);
            this.rbtDefault.TabIndex = 6;
            this.rbtDefault.TabStop = true;
            this.rbtDefault.Text = "系统默认的备份";
            // 
            // rbtIdle
            // 
            this.rbtIdle.Location = new System.Drawing.Point(80, 64);
            this.rbtIdle.Name = "rbtIdle";
            this.rbtIdle.Size = new System.Drawing.Size(200, 24);
            this.rbtIdle.TabIndex = 5;
            this.rbtIdle.Text = "每当CPU闲置时进行备份";
            // 
            // rbtStart
            // 
            this.rbtStart.Location = new System.Drawing.Point(80, 32);
            this.rbtStart.Name = "rbtStart";
            this.rbtStart.Size = new System.Drawing.Size(200, 24);
            this.rbtStart.TabIndex = 4;
            this.rbtStart.Text = "每当重新启动系统时进行备份";
            // 
            // smbBackUp
            // 
            this.smbBackUp.Location = new System.Drawing.Point(136, 136);
            this.smbBackUp.Name = "smbBackUp";
            this.smbBackUp.Size = new System.Drawing.Size(85, 23);
            this.smbBackUp.TabIndex = 3;
            this.smbBackUp.Text = "执行备份";
            this.smbBackUp.Click += new System.EventHandler(this.smbBackUp_Click);
            // 
            // tbxBackUpRoot
            // 
            this.tbxBackUpRoot.Location = new System.Drawing.Point(128, 40);
            this.tbxBackUpRoot.Name = "tbxBackUpRoot";
            this.tbxBackUpRoot.ReadOnly = true;
            this.tbxBackUpRoot.Size = new System.Drawing.Size(288, 22);
            this.tbxBackUpRoot.TabIndex = 3;
            // 
            // smbRoot
            // 
            this.smbRoot.Location = new System.Drawing.Point(32, 40);
            this.smbRoot.Name = "smbRoot";
            this.smbRoot.Size = new System.Drawing.Size(85, 23);
            this.smbRoot.TabIndex = 2;
            this.smbRoot.Text = "备份路径";
            this.smbRoot.Click += new System.EventHandler(this.smbRoot_Click);
            // 
            // xtraTabPage5
            // 
            this.xtraTabPage5.Controls.Add(this.groupBox1);
            this.xtraTabPage5.Name = "xtraTabPage5";
            this.xtraTabPage5.Size = new System.Drawing.Size(682, 400);
            this.xtraTabPage5.Text = "数据上传";
            // 
            // groupBox1
            // 
            this.groupBox1.Controls.Add(this.button1);
            this.groupBox1.Controls.Add(this.label1);
            this.groupBox1.Controls.Add(this.tbxUploadUrl);
            this.groupBox1.Location = new System.Drawing.Point(126, 64);
            this.groupBox1.Name = "groupBox1";
            this.groupBox1.Size = new System.Drawing.Size(432, 216);
            this.groupBox1.TabIndex = 1;
            this.groupBox1.TabStop = false;
            this.groupBox1.Text = "数据上传";
            // 
            // button1
            // 
            this.button1.Location = new System.Drawing.Point(24, 160);
            this.button1.Name = "button1";
            this.button1.Size = new System.Drawing.Size(75, 23);
            this.button1.TabIndex = 2;
            this.button1.Text = "确定";
            this.button1.Click += new System.EventHandler(this.button1_Click);
            // 
            // label1
            // 
            this.label1.Location = new System.Drawing.Point(16, 48);
            this.label1.Name = "label1";
            this.label1.Size = new System.Drawing.Size(40, 23);
            this.label1.TabIndex = 1;
            this.label1.Text = "地址:";
            // 
            // tbxUploadUrl
            // 
            this.tbxUploadUrl.Location = new System.Drawing.Point(60, 46);
            this.tbxUploadUrl.Name = "tbxUploadUrl";
            this.tbxUploadUrl.Size = new System.Drawing.Size(320, 22);
            this.tbxUploadUrl.TabIndex = 0;
            // 
            // barManager1
            // 
            this.barManager1.DockControls.Add(this.barDockControlTop);
            this.barManager1.DockControls.Add(this.barDockControlBottom);
            this.barManager1.DockControls.Add(this.barDockControlLeft);
            this.barManager1.DockControls.Add(this.barDockControlRight);
            this.barManager1.Form = this;
            this.barManager1.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
            this.barButtonItem_Refresh,
            this.barButtonItem_Modify,
            this.barButtonItem_Delete,
            this.barButtonItem1,
            this.barButtonItem_Add,
            this.barButtonItem_Save,
            this.barButtonItem_DeleteSession});
            this.barManager1.MaxItemId = 7;
            // 
            // popupMenu1
            // 
            this.popupMenu1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem_Refresh),
            new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem_Add),
            new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem_Save),
            new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem_Modify),
            new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem_Delete)});
            this.popupMenu1.Manager = this.barManager1;
            this.popupMenu1.Name = "popupMenu1";
            // 
            // barButtonItem_Refresh
            // 
            this.barButtonItem_Refresh.Caption = "刷新记录";
            this.barButtonItem_Refresh.Id = 0;
            this.barButtonItem_Refresh.Name = "barButtonItem_Refresh";
            this.barButtonItem_Refresh.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem_Refresh_ItemClick);
            // 
            // barButtonItem_Add
            // 
            this.barButtonItem_Add.Caption = "添加条空记录";
            this.barButtonItem_Add.Id = 4;
            this.barButtonItem_Add.Name = "barButtonItem_Add";
            this.barButtonItem_Add.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem_Add_ItemClick);
            // 
            // barButtonItem_Save
            // 
            this.barButtonItem_Save.Caption = "保存这条记录";
            this.barButtonItem_Save.Id = 5;
            this.barButtonItem_Save.Name = "barButtonItem_Save";
            this.barButtonItem_Save.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem_Save_ItemClick);
            // 
            // barButtonItem_Modify
            // 
            this.barButtonItem_Modify.Caption = "修改记录";
            this.barButtonItem_Modify.Id = 1;
            this.barButtonItem_Modify.Name = "barButtonItem_Modify";
            this.barButtonItem_Modify.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem_Modify_ItemClick);
            // 
            // barButtonItem_Delete
            // 
            this.barButtonItem_Delete.Caption = "删除记录";
            this.barButtonItem_Delete.Id = 2;
            this.barButtonItem_Delete.Name = "barButtonItem_Delete";
            this.barButtonItem_Delete.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem_Delete_ItemClick);
            // 
            // popupMenu2
            // 
            this.popupMenu2.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem_DeleteSession)});
            this.popupMenu2.Manager = this.barManager1;
            this.popupMenu2.Name = "popupMenu2";
            // 
            // barButtonItem_DeleteSession
            // 
            this.barButtonItem_DeleteSession.Caption = "断开";
            this.barButtonItem_DeleteSession.Id = 6;
            this.barButtonItem_DeleteSession.Name = "barButtonItem_DeleteSession";
            this.barButtonItem_DeleteSession.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem_DeleteSession_ItemClick);
            // 
            // barDockControlTop
            // 
            this.barDockControlTop.CausesValidation = false;
            this.barDockControlTop.Dock = System.Windows.Forms.DockStyle.Top;
            this.barDockControlTop.Location = new System.Drawing.Point(0, 0);
            this.barDockControlTop.Size = new System.Drawing.Size(688, 0);
            // 
            // barDockControlBottom
            // 
            this.barDockControlBottom.CausesValidation = false;
            this.barDockControlBottom.Dock = System.Windows.Forms.DockStyle.Bottom;
            this.barDockControlBottom.Location = new System.Drawing.Point(0, 429);
            this.barDockControlBottom.Size = new System.Drawing.Size(688, 0);
            // 
            // barDockControlLeft
            // 
            this.barDockControlLeft.CausesValidation = false;
            this.barDockControlLeft.Dock = System.Windows.Forms.DockStyle.Left;
            this.barDockControlLeft.Location = new System.Drawing.Point(0, 0);
            this.barDockControlLeft.Size = new System.Drawing.Size(0, 429);
            // 
            // barDockControlRight
            // 
            this.barDockControlRight.CausesValidation = false;
            this.barDockControlRight.Dock = System.Windows.Forms.DockStyle.Right;
            this.barDockControlRight.Location = new System.Drawing.Point(688, 0);
            this.barDockControlRight.Size = new System.Drawing.Size(0, 429);
            // 
            // barButtonItem1
            // 
            this.barButtonItem1.Caption = "barButtonItem1";
            this.barButtonItem1.Id = 3;
            this.barButtonItem1.Name = "barButtonItem1";
            // 
            // OptionsForm
            // 
            this.Appearance.BackColor = System.Drawing.Color.WhiteSmoke;
            this.Appearance.Options.UseBackColor = true;
            this.AutoScaleBaseSize = new System.Drawing.Size(6, 15);
            this.ClientSize = new System.Drawing.Size(688, 429);
            this.Controls.Add(this.xtraTabControl_Options);
            this.Controls.Add(this.barDockControlLeft);
            this.Controls.Add(this.barDockControlRight);
            this.Controls.Add(this.barDockControlBottom);
            this.Controls.Add(this.barDockControlTop);
            this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
            this.MaximizeBox = false;
            this.Name = "OptionsForm";
            this.ShowInTaskbar = false;
            this.Text = "选项";
            this.Load += new System.EventHandler(this.OptionsForm_Load);
            ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl_Options)).EndInit();
            this.xtraTabControl_Options.ResumeLayout(false);
            this.xtraTabPage_ComPortSet.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.groupControl_ComPortSet)).EndInit();
            this.groupControl_ComPortSet.ResumeLayout(false);
            this.xtraTabPage_AutoShutDown.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).EndInit();
            this.groupControl2.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.checkEdit1.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.timeEdit_DutyStartTime.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.checkEdit2.Properties)).EndInit();
            this.xtraTabPage_AutoSendSmsTimeSet.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.groupControl3)).EndInit();
            this.groupControl3.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.timeEdit_SMSMorningTime.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.timeEdit_SMSNightTime.Properties)).EndInit();
            this.xtraTabPage1.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.groupControl4)).EndInit();
            this.groupControl4.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_NewPwd.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_ConfirmPwd.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_OldPwd.Properties)).EndInit();
            this.xtraTabPage2.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
            this.groupControl1.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_UpdateAddress.Properties)).EndInit();
            this.xtraTabPage3.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.groupControl5)).EndInit();
            this.groupControl5.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_DBUser.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_DBPwd.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_DBName.Properties)).EndInit();
            this.xtraTabPage_BatchCreate.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl1)).EndInit();
            this.splitContainerControl1.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.groupControl8)).EndInit();
            this.groupControl8.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_ClassVol.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_BatchCreate_TerminalNumbers.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_BatchCreate_ClassNumbers.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.groupControl6)).EndInit();
            this.groupControl6.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_BatchCreate_CardNumber.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_BatchCreate_Load.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_BatchCreate_Type.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_BatchCreate_Number.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_BatchCreate_Name.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_BatchCreate_Class.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_BatchCreate_Grade.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.groupControl7)).EndInit();
            this.groupControl7.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.gridControl_BatchCreate_Machine)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridView7)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridControl_BatchCreate_TeaCard)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridView6)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridControl1_BatchCreate_TeaBasicInfo)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridView5)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridControl_BatchCreate_StuCard)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridView4)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridControl_BatchCreate_StuBasicInfo)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.advBandedGridView1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridControl_BatchCreate_Class)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridView2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridControl_BatchCreate_Grade)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
            this.xtraTabPage_UpdateGrade.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl2)).EndInit();
            this.splitContainerControl2.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.groupControl9)).EndInit();
            this.groupControl9.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_ClassNumber.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_GradeNumber.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_DestClass.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_SrcClass.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_DestGrade.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_SrcGrade.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.groupControl10)).EndInit();
            this.groupControl10.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.gridControl_StudentAdjust)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridView3)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
            this.panelControl1.ResumeLayout(false);
            this.xtraTabPage_TerminalServ.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.gridControl_SessionUser)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridView9)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridView8)).EndInit();
            this.xtraTabPage4.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.groupControl11)).EndInit();
            this.groupControl11.ResumeLayout(false);
            this.groupControl11.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.groupControl12)).EndInit();
            this.groupControl12.ResumeLayout(false);
            this.xtraTabPage5.ResumeLayout(false);
            this.groupBox1.ResumeLayout(false);
            this.groupBox1.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.barManager1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.popupMenu1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.popupMenu2)).EndInit();
            this.ResumeLayout(false);

		}
示例#39
0
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmStaff));
     this.MainMenu1 = new System.Windows.Forms.MainMenu(this.components);
     this.MenuItem1 = new System.Windows.Forms.MenuItem();
     this.MenuItem2 = new System.Windows.Forms.MenuItem();
     this.MenuItem4 = new System.Windows.Forms.MenuItem();
     this.MenuItemChangePassword = new System.Windows.Forms.MenuItem();
     this.MenuItemBlockMembershipID = new System.Windows.Forms.MenuItem();
     this.MenuItemResetMembershipID = new System.Windows.Forms.MenuItem();
     this.MenuItem9 = new System.Windows.Forms.MenuItem();
     this.MenuItem10 = new System.Windows.Forms.MenuItem();
     this.MenuItem5 = new System.Windows.Forms.MenuItem();
     this.Bar1 = new DevExpress.XtraBars.Bar();
     this.BarManager1 = new DevExpress.XtraBars.BarManager(this.components);
     this.Bar2 = new DevExpress.XtraBars.Bar();
     this.bbiClose = new DevExpress.XtraBars.BarButtonItem();
     this.barbtnTimeCard = new DevExpress.XtraBars.BarButtonItem();
     this.barstaticCurrentLogin = new DevExpress.XtraBars.BarStaticItem();
     this.BarAndDockingController1 = new DevExpress.XtraBars.BarAndDockingController(this.components);
     this.barDockControlTop = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlBottom = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlLeft = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlRight = new DevExpress.XtraBars.BarDockControl();
     this.barButtonItem1 = new DevExpress.XtraBars.BarButtonItem();
     this.barbtnClose = new DevExpress.XtraBars.BarButtonItem();
     this.tabStaff = new DevExpress.XtraTab.XtraTabControl();
     this.tabStaffOne = new DevExpress.XtraTab.XtraTabPage();
     this.lblOne_2 = new DevExpress.XtraEditors.SimpleButton();
     this.luedtMemoEmployeeID = new DevExpress.XtraEditors.LookUpEdit();
     this.lblMemoEmployeeID = new System.Windows.Forms.Label();
     this.groupMessages = new DevExpress.XtraEditors.GroupControl();
     this.lblmnuMessagesReceipient = new System.Windows.Forms.Label();
     this.lblmnuMessagesFollowUpAction = new System.Windows.Forms.Label();
     this.lblmnuMessagesMemoInfo = new System.Windows.Forms.Label();
     this.groupMessagesEntry = new DevExpress.XtraEditors.GroupControl();
     this.cbViewMemo = new DevExpress.XtraEditors.ComboBoxEdit();
     this.sbtnMemoUnpost = new DevExpress.XtraEditors.SimpleButton();
     this.sbtnMemoPrint = new DevExpress.XtraEditors.SimpleButton();
     this.sbtnMemoNew = new DevExpress.XtraEditors.SimpleButton();
     this.gctrMemo = new DevExpress.XtraGrid.GridControl();
     this.gvMemo = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colnMemoID = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colPostUpdateDateTime = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colAuthorID = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colAuthor = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colTitle = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colRead = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemCheckEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.groupMessagesFollowUpAction = new DevExpress.XtraEditors.GroupControl();
     this.GroupControl4 = new DevExpress.XtraEditors.GroupControl();
     this.sbtnRepliesDelete = new DevExpress.XtraEditors.SimpleButton();
     this.sbtnRepliesView = new DevExpress.XtraEditors.SimpleButton();
     this.sbtnRepliesUpdate = new DevExpress.XtraEditors.SimpleButton();
     this.sbtnRepliesAdd = new DevExpress.XtraEditors.SimpleButton();
     this.gctrReplies = new DevExpress.XtraGrid.GridControl();
     this.gvReplies = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colReplyDate = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colReplyEmployeeID = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colReplyEmployeeName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colReplyMessage = new DevExpress.XtraGrid.Columns.GridColumn();
     this.groupMessagesMemoInfo = new DevExpress.XtraEditors.GroupControl();
     this.GroupControl8 = new DevExpress.XtraEditors.GroupControl();
     this.sbtnUpdate = new DevExpress.XtraEditors.SimpleButton();
     this.memoedtMessage = new DevExpress.XtraEditors.MemoEdit();
     this.Label37 = new System.Windows.Forms.Label();
     this.groupMessagesReceipient = new DevExpress.XtraEditors.GroupControl();
     this.GroupControl6 = new DevExpress.XtraEditors.GroupControl();
     this.cbMemoReceipient = new DevExpress.XtraEditors.ComboBoxEdit();
     this.sbtnReceipientDelete = new DevExpress.XtraEditors.SimpleButton();
     this.sbtnReceipientNew = new DevExpress.XtraEditors.SimpleButton();
     this.gctrReceipient = new DevExpress.XtraGrid.GridControl();
     this.gvReceipient = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colRecipientType = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colRecipient = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colRecipientID = new DevExpress.XtraGrid.Columns.GridColumn();
     this.groupReceipientGroup = new DevExpress.XtraEditors.GroupControl();
     this.groupReceipientGroupEntry = new DevExpress.XtraEditors.GroupControl();
     this.sbtnRecpGrpDelete = new DevExpress.XtraEditors.SimpleButton();
     this.sbtnRecpGrpEdit = new DevExpress.XtraEditors.SimpleButton();
     this.sbtnRecpGrpNew = new DevExpress.XtraEditors.SimpleButton();
     this.gctrRecpGrp = new DevExpress.XtraGrid.GridControl();
     this.gvRecpGrp = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colReceipientGroupID = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colReceipientGroupCode = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colDescription = new DevExpress.XtraGrid.Columns.GridColumn();
     this.groupReceipientGroupReceipientEntries = new DevExpress.XtraEditors.GroupControl();
     this.GroupControl10 = new DevExpress.XtraEditors.GroupControl();
     this.sbtnRecpEntryDelete = new DevExpress.XtraEditors.SimpleButton();
     this.sbtnRecpEntryNew = new DevExpress.XtraEditors.SimpleButton();
     this.gctrRecpEntry = new DevExpress.XtraGrid.GridControl();
     this.gvRecpEntry = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colEmployeeID = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colEmployeeName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.lblOne_1 = new DevExpress.XtraEditors.SimpleButton();
     this.tabStaffTwo = new DevExpress.XtraTab.XtraTabPage();
     this.groupService = new DevExpress.XtraEditors.GroupControl();
     this.groupServiceEntry = new DevExpress.XtraEditors.GroupControl();
     this.groupControl3 = new DevExpress.XtraEditors.GroupControl();
     this.luedtCommissionServiceBranch = new DevExpress.XtraEditors.LookUpEdit();
     this.label30 = new System.Windows.Forms.Label();
     this.cbServiceYear = new DevExpress.XtraEditors.ComboBoxEdit();
     this.label5 = new System.Windows.Forms.Label();
     this.label3 = new System.Windows.Forms.Label();
     this.label2 = new System.Windows.Forms.Label();
     this.cbServiceMonth = new DevExpress.XtraEditors.ComboBoxEdit();
     this.cbServiceServiceType = new DevExpress.XtraEditors.ComboBoxEdit();
     this.sbtnServiceInquiry = new DevExpress.XtraEditors.SimpleButton();
     this.gctrService = new DevExpress.XtraGrid.GridControl();
     this.gvService = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colServicedtDate = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colServicestrBranchCode = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colServicestrMembershipID = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colServicestrServiceCode = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colServicestrCommission = new DevExpress.XtraGrid.Columns.GridColumn();
     this.lblTwo_1 = new DevExpress.XtraEditors.SimpleButton();
     this.lblTwo_2 = new DevExpress.XtraEditors.SimpleButton();
     this.groupSales = new DevExpress.XtraEditors.GroupControl();
     this.groupSalesEntry = new DevExpress.XtraEditors.GroupControl();
     this.groupControl7 = new DevExpress.XtraEditors.GroupControl();
     this.luedtSalesBranchCode = new DevExpress.XtraEditors.LookUpEdit();
     this.label16 = new System.Windows.Forms.Label();
     this.cbSalesYear = new DevExpress.XtraEditors.ComboBoxEdit();
     this.label6 = new System.Windows.Forms.Label();
     this.label7 = new System.Windows.Forms.Label();
     this.label8 = new System.Windows.Forms.Label();
     this.cbSalesMonth = new DevExpress.XtraEditors.ComboBoxEdit();
     this.sbtnSalesInquiry = new DevExpress.XtraEditors.SimpleButton();
     this.cbSalesType = new DevExpress.XtraEditors.ComboBoxEdit();
     this.gctrSales = new DevExpress.XtraGrid.GridControl();
     this.gvSales = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colSalesDate = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colSalesReceipt = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colSalesMembershipID = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colSalesNettAmount = new DevExpress.XtraGrid.Columns.GridColumn();
     this.tabStaffThree = new DevExpress.XtraTab.XtraTabPage();
     this.lblThree_3 = new DevExpress.XtraEditors.SimpleButton();
     this.lblThree_1 = new DevExpress.XtraEditors.SimpleButton();
     this.lblThree_2 = new DevExpress.XtraEditors.SimpleButton();
     this.groupTimesheet = new DevExpress.XtraEditors.GroupControl();
     this.groupTimesheetEntry = new DevExpress.XtraEditors.GroupControl();
     this.groupControl9 = new DevExpress.XtraEditors.GroupControl();
     this.cbTimesheetYear = new DevExpress.XtraEditors.ComboBoxEdit();
     this.label1 = new System.Windows.Forms.Label();
     this.label11 = new System.Windows.Forms.Label();
     this.cbTimesheetMonth = new DevExpress.XtraEditors.ComboBoxEdit();
     this.sbtnTimesheetInquiry = new DevExpress.XtraEditors.SimpleButton();
     this.gridctrTimesheet = new DevExpress.XtraGrid.GridControl();
     this.gvTimesheet = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colTimesheetDate = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colTimesheetRosterIn = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colTimesheetRosterOut = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colTimesheetBranchFirstTimeIn = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colTimesheetBranchLastTimeOut = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colTimesheetFirstTimeIn = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colTimesheetLastTimeOut = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colTimesheetManagerNameIn = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colTimesheetManagerNameOut = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colTimesheetLateness = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemCheckEdit2 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.colTimesheetTotalLateness = new DevExpress.XtraGrid.Columns.GridColumn();
     this.groupOvertime = new DevExpress.XtraEditors.GroupControl();
     this.groupControl15 = new DevExpress.XtraEditors.GroupControl();
     this.sbtnOvertimeDelete = new DevExpress.XtraEditors.SimpleButton();
     this.groupControl16 = new DevExpress.XtraEditors.GroupControl();
     this.cbOvertimeYear = new DevExpress.XtraEditors.ComboBoxEdit();
     this.label14 = new System.Windows.Forms.Label();
     this.label15 = new System.Windows.Forms.Label();
     this.cbOvertimeMonth = new DevExpress.XtraEditors.ComboBoxEdit();
     this.sbtnOvertimeInquiry = new DevExpress.XtraEditors.SimpleButton();
     this.sbtnApplyOvertime = new DevExpress.XtraEditors.SimpleButton();
     this.gridctrOvertime = new DevExpress.XtraGrid.GridControl();
     this.gvOvertime = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colOvertimeDate = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colOvertimeHours = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colOvertimeReason = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colOvertimeCharging = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colOvertimeManager = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colOvertimeApprovingManagerID = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colOvertimeStatus = new DevExpress.XtraGrid.Columns.GridColumn();
     this.groupLateness = new DevExpress.XtraEditors.GroupControl();
     this.groupControl13 = new DevExpress.XtraEditors.GroupControl();
     this.groupControl14 = new DevExpress.XtraEditors.GroupControl();
     this.cbLatenessYear = new DevExpress.XtraEditors.ComboBoxEdit();
     this.label12 = new System.Windows.Forms.Label();
     this.label13 = new System.Windows.Forms.Label();
     this.cbLatenessMonth = new DevExpress.XtraEditors.ComboBoxEdit();
     this.sbtnLatenessInquiry = new DevExpress.XtraEditors.SimpleButton();
     this.gridctrLateness = new DevExpress.XtraGrid.GridControl();
     this.gvLateness = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colLatenessRosterID = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colLatenessDate = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colLatenessBranch = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colLatenessType = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colLatenessExpected = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemTimeEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemTimeEdit();
     this.colLatenessActual = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemTimeEdit2 = new DevExpress.XtraEditors.Repository.RepositoryItemTimeEdit();
     this.colLatenessLateness = new DevExpress.XtraGrid.Columns.GridColumn();
     this.tabStaffFour = new DevExpress.XtraTab.XtraTabPage();
     this.lblFour_2 = new DevExpress.XtraEditors.SimpleButton();
     this.lblFour_1 = new DevExpress.XtraEditors.SimpleButton();
     this.groupAppointment = new DevExpress.XtraEditors.GroupControl();
     this.groupAppointmentEntry = new DevExpress.XtraEditors.GroupControl();
     this.groupControl12 = new DevExpress.XtraEditors.GroupControl();
     this.cbAppointmentYear = new DevExpress.XtraEditors.ComboBoxEdit();
     this.label26 = new System.Windows.Forms.Label();
     this.label27 = new System.Windows.Forms.Label();
     this.cbAppointmentMonth = new DevExpress.XtraEditors.ComboBoxEdit();
     this.sbtnAppointmentInquiry = new DevExpress.XtraEditors.SimpleButton();
     this.sbtnAppointmentDelete = new DevExpress.XtraEditors.SimpleButton();
     this.sbtnAppointmentPrint = new DevExpress.XtraEditors.SimpleButton();
     this.sbtnAppointmentEdit = new DevExpress.XtraEditors.SimpleButton();
     this.sbtnAppointmentNew = new DevExpress.XtraEditors.SimpleButton();
     this.gridctrAppointment = new DevExpress.XtraGrid.GridControl();
     this.gvAppointment = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colAppointmentDate = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colAppointmentStartDate = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colAppointmentEndDate = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colAppointmentOrganization = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colAppointmentContact = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colAppointmentTypeID = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colAppointmentRemarks = new DevExpress.XtraGrid.Columns.GridColumn();
     this.groupContact = new DevExpress.XtraEditors.GroupControl();
     this.groupContactEntry = new DevExpress.XtraEditors.GroupControl();
     this.sbtnContactEdit = new DevExpress.XtraEditors.SimpleButton();
     this.sbtnContactDelete = new DevExpress.XtraEditors.SimpleButton();
     this.sbtnContactNew = new DevExpress.XtraEditors.SimpleButton();
     this.gridctrContact = new DevExpress.XtraGrid.GridControl();
     this.gvContact = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colContactPerson = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colContactOrganization = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colContactMobile = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colContactOfficeNo = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colContactEmail = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colContactFax = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colContactAddress = new DevExpress.XtraGrid.Columns.GridColumn();
     this.tabStaffFive = new DevExpress.XtraTab.XtraTabPage();
     this.groupCustomerVoice = new DevExpress.XtraEditors.GroupControl();
     this.lblmnuCustomerVoiceActionHistory = new System.Windows.Forms.Label();
     this.lblmnuCustomerVoiceCVDetails = new System.Windows.Forms.Label();
     this.GroupControl24 = new DevExpress.XtraEditors.GroupControl();
     this.luedtCVSubmitter = new DevExpress.XtraEditors.LookUpEdit();
     this.sbtnAssign = new DevExpress.XtraEditors.SimpleButton();
     this.sbtnCVPrint = new DevExpress.XtraEditors.SimpleButton();
     this.sbtnCVEdit = new DevExpress.XtraEditors.SimpleButton();
     this.sbtnCVDelete = new DevExpress.XtraEditors.SimpleButton();
     this.sbtnCVNew = new DevExpress.XtraEditors.SimpleButton();
     this.cbListCV = new DevExpress.XtraEditors.ComboBoxEdit();
     this.gctrCV = new DevExpress.XtraGrid.GridControl();
     this.gvCV = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colRefNo = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colDtReceived = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colBranch = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colMembershipID = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colMemberName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colDepartment = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colType = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colCategory = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colSubject = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colSubmittedBy = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colStaffSubject = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colDepartmentAssignedTo = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colLastUpdatedDate = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colStatus = new DevExpress.XtraGrid.Columns.GridColumn();
     this.label17 = new System.Windows.Forms.Label();
     this.luedtCVAssignTo = new DevExpress.XtraEditors.LookUpEdit();
     this.lblCVSubmitter = new System.Windows.Forms.Label();
     this.groupCustomerVoiceActionHistory = new DevExpress.XtraEditors.GroupControl();
     this.GroupControl26 = new DevExpress.XtraEditors.GroupControl();
     this.sbtnNewCVAction = new DevExpress.XtraEditors.SimpleButton();
     this.gctrCVAction = new DevExpress.XtraGrid.GridControl();
     this.gvCVAction = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colActionID = new DevExpress.XtraGrid.Columns.GridColumn();
     this.coldtDate = new DevExpress.XtraGrid.Columns.GridColumn();
     this.coldtTime = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colMode = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colActionDetail = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colActionTakenBy = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colActionTakenByID = new DevExpress.XtraGrid.Columns.GridColumn();
     this.groupCustomerVoiceCVDetails = new DevExpress.XtraEditors.GroupControl();
     this.GroupControl28 = new DevExpress.XtraEditors.GroupControl();
     this.txtHomeNo = new DevExpress.XtraEditors.TextEdit();
     this.label31 = new System.Windows.Forms.Label();
     this.txtEmail = new DevExpress.XtraEditors.TextEdit();
     this.label10 = new System.Windows.Forms.Label();
     this.txtContactNo = new DevExpress.XtraEditors.TextEdit();
     this.label9 = new System.Windows.Forms.Label();
     this.memoeditSummaryCV = new DevExpress.XtraEditors.MemoEdit();
     this.Label32 = new System.Windows.Forms.Label();
     this.tabStaffSix = new DevExpress.XtraTab.XtraTabPage();
     this.groupControl1 = new DevExpress.XtraEditors.GroupControl();
     this.lblSix_2 = new DevExpress.XtraEditors.SimpleButton();
     this.lblSix_1 = new DevExpress.XtraEditors.SimpleButton();
     this.groupLeave = new DevExpress.XtraEditors.GroupControl();
     this.groupLeaveLeaveDetails = new DevExpress.XtraEditors.GroupControl();
     this.groupControl11 = new DevExpress.XtraEditors.GroupControl();
     this.cbLeaveStatus = new DevExpress.XtraEditors.ComboBoxEdit();
     this.label35 = new System.Windows.Forms.Label();
     this.txtLeaveEntitlement = new DevExpress.XtraEditors.TextEdit();
     this.label34 = new System.Windows.Forms.Label();
     this.dateedtLeaveJoinDate = new DevExpress.XtraEditors.DateEdit();
     this.label33 = new System.Windows.Forms.Label();
     this.sbtnLeaveEdit = new DevExpress.XtraEditors.SimpleButton();
     this.sbtnLeaveDelete = new DevExpress.XtraEditors.SimpleButton();
     this.sbtnLeaveApply = new DevExpress.XtraEditors.SimpleButton();
     this.gridctrLeaveDetail = new DevExpress.XtraGrid.GridControl();
     this.gvLeave = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colLeaveStartDate = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colLeaveStartTime = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colLeaveEndTime = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.nLeaveQuantity = new DevExpress.XtraGrid.Columns.GridColumn();
     this.nUnpaidLeave = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colLeaveTimeOff = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colfFullDay = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colLeaveLeaveType = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colLeaveReason = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colLeaveLeaveStatus = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colLeaveApprovingManager = new DevExpress.XtraGrid.Columns.GridColumn();
     this.cbLeaveNYearID = new DevExpress.XtraEditors.ComboBoxEdit();
     this.lblNYearID = new System.Windows.Forms.Label();
     this.groupLeaveLeaveBalance = new DevExpress.XtraEditors.GroupControl();
     this.groupControl5 = new DevExpress.XtraEditors.GroupControl();
     this.btnConvert = new System.Windows.Forms.Button();
     this.txtDaysConvert = new System.Windows.Forms.TextBox();
     this.label36 = new System.Windows.Forms.Label();
     this.btnAdjust = new System.Windows.Forms.Button();
     this.txtLeaveAdjust = new System.Windows.Forms.TextBox();
     this.label29 = new System.Windows.Forms.Label();
     this.sbtnLeaveBalanceInquiry = new DevExpress.XtraEditors.SimpleButton();
     this.label25 = new System.Windows.Forms.Label();
     this.cbLeaveBalance = new DevExpress.XtraEditors.ComboBoxEdit();
     this.gridctrLeaveBalance = new DevExpress.XtraGrid.GridControl();
     this.gvLeaveBalance = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colLeaveBalanceDate = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colLeaveBalanceTransaction = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colLeaveBalanceStatus = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colLeaveBalanceNoOfDays = new DevExpress.XtraGrid.Columns.GridColumn();
     this.groupLeaveRoster = new DevExpress.XtraEditors.GroupControl();
     this.groupControl2 = new DevExpress.XtraEditors.GroupControl();
     this.label23 = new System.Windows.Forms.Label();
     this.label24 = new System.Windows.Forms.Label();
     this.label21 = new System.Windows.Forms.Label();
     this.label22 = new System.Windows.Forms.Label();
     this.label19 = new System.Windows.Forms.Label();
     this.label20 = new System.Windows.Forms.Label();
     this.label18 = new System.Windows.Forms.Label();
     this.label4 = new System.Windows.Forms.Label();
     this.panelControl1 = new DevExpress.XtraEditors.PanelControl();
     this.acmsRosterHeader6 = new ACMS.Control.ACMSRosterHeader();
     this.acmsRosterHeader5 = new ACMS.Control.ACMSRosterHeader();
     this.acmsRosterHeader4 = new ACMS.Control.ACMSRosterHeader();
     this.acmsRosterHeader3 = new ACMS.Control.ACMSRosterHeader();
     this.acmsRosterHeader2 = new ACMS.Control.ACMSRosterHeader();
     this.acmsRosterHeader1 = new ACMS.Control.ACMSRosterHeader();
     this.sbtnLeaveNextMonth = new DevExpress.XtraEditors.SimpleButton();
     this.sbtnLeavePreviousMonth = new DevExpress.XtraEditors.SimpleButton();
     this.luedtLeaveEmployeeID = new DevExpress.XtraEditors.LookUpEdit();
     this.lblLeaveEmployeeID = new System.Windows.Forms.Label();
     this.tabStaffSeven = new DevExpress.XtraTab.XtraTabPage();
     this.groupControl17 = new DevExpress.XtraEditors.GroupControl();
     this.tabStaffEight = new DevExpress.XtraTab.XtraTabPage();
     this.xtraTabControl1 = new DevExpress.XtraTab.XtraTabControl();
     this.xtraTabPage1 = new DevExpress.XtraTab.XtraTabPage();
     this.memoEdit2 = new DevExpress.XtraEditors.MemoEdit();
     this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
     this.xtraTabPage2 = new DevExpress.XtraTab.XtraTabPage();
     this.lookUpEdit4 = new DevExpress.XtraEditors.LookUpEdit();
     this.label40 = new System.Windows.Forms.Label();
     this.lookUpEdit3 = new DevExpress.XtraEditors.LookUpEdit();
     this.label39 = new System.Windows.Forms.Label();
     this.lookUpEdit2 = new DevExpress.XtraEditors.LookUpEdit();
     this.label38 = new System.Windows.Forms.Label();
     this.lookUpEdit1 = new DevExpress.XtraEditors.LookUpEdit();
     this.label28 = new System.Windows.Forms.Label();
     this.xtraTabPage3 = new DevExpress.XtraTab.XtraTabPage();
     this.groupControl18 = new DevExpress.XtraEditors.GroupControl();
     this.timer1 = new System.Windows.Forms.Timer(this.components);
     ((System.ComponentModel.ISupportInitialize)(this.BarManager1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.BarAndDockingController1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tabStaff)).BeginInit();
     this.tabStaff.SuspendLayout();
     this.tabStaffOne.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.luedtMemoEmployeeID.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupMessages)).BeginInit();
     this.groupMessages.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupMessagesEntry)).BeginInit();
     this.groupMessagesEntry.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cbViewMemo.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gctrMemo)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvMemo)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupMessagesFollowUpAction)).BeginInit();
     this.groupMessagesFollowUpAction.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.GroupControl4)).BeginInit();
     this.GroupControl4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gctrReplies)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvReplies)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupMessagesMemoInfo)).BeginInit();
     this.groupMessagesMemoInfo.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.GroupControl8)).BeginInit();
     this.GroupControl8.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.memoedtMessage.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupMessagesReceipient)).BeginInit();
     this.groupMessagesReceipient.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.GroupControl6)).BeginInit();
     this.GroupControl6.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cbMemoReceipient.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gctrReceipient)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvReceipient)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupReceipientGroup)).BeginInit();
     this.groupReceipientGroup.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupReceipientGroupEntry)).BeginInit();
     this.groupReceipientGroupEntry.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gctrRecpGrp)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvRecpGrp)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupReceipientGroupReceipientEntries)).BeginInit();
     this.groupReceipientGroupReceipientEntries.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.GroupControl10)).BeginInit();
     this.GroupControl10.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gctrRecpEntry)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvRecpEntry)).BeginInit();
     this.tabStaffTwo.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupService)).BeginInit();
     this.groupService.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupServiceEntry)).BeginInit();
     this.groupServiceEntry.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl3)).BeginInit();
     this.groupControl3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.luedtCommissionServiceBranch.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbServiceYear.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbServiceMonth.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbServiceServiceType.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gctrService)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvService)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupSales)).BeginInit();
     this.groupSales.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupSalesEntry)).BeginInit();
     this.groupSalesEntry.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl7)).BeginInit();
     this.groupControl7.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.luedtSalesBranchCode.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbSalesYear.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbSalesMonth.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbSalesType.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gctrSales)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvSales)).BeginInit();
     this.tabStaffThree.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupTimesheet)).BeginInit();
     this.groupTimesheet.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupTimesheetEntry)).BeginInit();
     this.groupTimesheetEntry.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl9)).BeginInit();
     this.groupControl9.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cbTimesheetYear.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbTimesheetMonth.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridctrTimesheet)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvTimesheet)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupOvertime)).BeginInit();
     this.groupOvertime.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl15)).BeginInit();
     this.groupControl15.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl16)).BeginInit();
     this.groupControl16.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cbOvertimeYear.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbOvertimeMonth.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridctrOvertime)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvOvertime)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupLateness)).BeginInit();
     this.groupLateness.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl13)).BeginInit();
     this.groupControl13.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl14)).BeginInit();
     this.groupControl14.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cbLatenessYear.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbLatenessMonth.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridctrLateness)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvLateness)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTimeEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTimeEdit2)).BeginInit();
     this.tabStaffFour.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupAppointment)).BeginInit();
     this.groupAppointment.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupAppointmentEntry)).BeginInit();
     this.groupAppointmentEntry.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl12)).BeginInit();
     this.groupControl12.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cbAppointmentYear.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbAppointmentMonth.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridctrAppointment)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvAppointment)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupContact)).BeginInit();
     this.groupContact.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupContactEntry)).BeginInit();
     this.groupContactEntry.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridctrContact)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvContact)).BeginInit();
     this.tabStaffFive.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupCustomerVoice)).BeginInit();
     this.groupCustomerVoice.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.GroupControl24)).BeginInit();
     this.GroupControl24.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.luedtCVSubmitter.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbListCV.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gctrCV)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvCV)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.luedtCVAssignTo.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupCustomerVoiceActionHistory)).BeginInit();
     this.groupCustomerVoiceActionHistory.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.GroupControl26)).BeginInit();
     this.GroupControl26.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gctrCVAction)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvCVAction)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupCustomerVoiceCVDetails)).BeginInit();
     this.groupCustomerVoiceCVDetails.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.GroupControl28)).BeginInit();
     this.GroupControl28.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtHomeNo.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtEmail.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtContactNo.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.memoeditSummaryCV.Properties)).BeginInit();
     this.tabStaffSix.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
     this.groupControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupLeave)).BeginInit();
     this.groupLeave.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupLeaveLeaveDetails)).BeginInit();
     this.groupLeaveLeaveDetails.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl11)).BeginInit();
     this.groupControl11.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cbLeaveStatus.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtLeaveEntitlement.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateedtLeaveJoinDate.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateedtLeaveJoinDate.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridctrLeaveDetail)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvLeave)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbLeaveNYearID.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupLeaveLeaveBalance)).BeginInit();
     this.groupLeaveLeaveBalance.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl5)).BeginInit();
     this.groupControl5.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cbLeaveBalance.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridctrLeaveBalance)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvLeaveBalance)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupLeaveRoster)).BeginInit();
     this.groupLeaveRoster.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).BeginInit();
     this.groupControl2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
     this.panelControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.luedtLeaveEmployeeID.Properties)).BeginInit();
     this.tabStaffSeven.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl17)).BeginInit();
     this.tabStaffEight.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl1)).BeginInit();
     this.xtraTabControl1.SuspendLayout();
     this.xtraTabPage1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.memoEdit2.Properties)).BeginInit();
     this.xtraTabPage2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.lookUpEdit4.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lookUpEdit3.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lookUpEdit2.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lookUpEdit1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl18)).BeginInit();
     this.SuspendLayout();
     //
     // MainMenu1
     //
     this.MainMenu1.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
     this.MenuItem1,
     this.MenuItem4,
     this.MenuItem5});
     //
     // MenuItem1
     //
     this.MenuItem1.Index = 0;
     this.MenuItem1.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
     this.MenuItem2});
     this.MenuItem1.Text = "File";
     //
     // MenuItem2
     //
     this.MenuItem2.Index = 0;
     this.MenuItem2.Text = "Quit";
     this.MenuItem2.Click += new System.EventHandler(this.MenuItem2_Click);
     //
     // MenuItem4
     //
     this.MenuItem4.Index = 1;
     this.MenuItem4.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
     this.MenuItemChangePassword,
     this.MenuItemBlockMembershipID,
     this.MenuItemResetMembershipID,
     this.MenuItem9,
     this.MenuItem10});
     this.MenuItem4.Text = "Tools";
     //
     // MenuItemChangePassword
     //
     this.MenuItemChangePassword.Index = 0;
     this.MenuItemChangePassword.Text = "Change Password";
     this.MenuItemChangePassword.Click += new System.EventHandler(this.MenuItemChangePassword_Click);
     //
     // MenuItemBlockMembershipID
     //
     this.MenuItemBlockMembershipID.Index = 1;
     this.MenuItemBlockMembershipID.Text = "Block Membership ID";
     this.MenuItemBlockMembershipID.Click += new System.EventHandler(this.MenuItemBlockMembershipID_Click);
     //
     // MenuItemResetMembershipID
     //
     this.MenuItemResetMembershipID.Index = 2;
     this.MenuItemResetMembershipID.Text = "Reset Membership ID";
     this.MenuItemResetMembershipID.Click += new System.EventHandler(this.MenuItemResetMembershipID_Click);
     //
     // MenuItem9
     //
     this.MenuItem9.Index = 3;
     this.MenuItem9.Text = "Re-print receipt";
     //
     // MenuItem10
     //
     this.MenuItem10.Index = 4;
     this.MenuItem10.Text = "Open Carton";
     //
     // MenuItem5
     //
     this.MenuItem5.Index = 2;
     this.MenuItem5.Text = "Help";
     //
     // Bar1
     //
     this.Bar1.Appearance.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Bar1.Appearance.Options.UseFont = true;
     this.Bar1.BarName = "bnTopBar";
     this.Bar1.DockCol = 0;
     this.Bar1.DockRow = 0;
     this.Bar1.DockStyle = DevExpress.XtraBars.BarDockStyle.Top;
     this.Bar1.OptionsBar.MultiLine = true;
     this.Bar1.OptionsBar.UseWholeRow = true;
     this.Bar1.Text = "TopBar";
     //
     // BarManager1
     //
     this.BarManager1.AllowQuickCustomization = false;
     this.BarManager1.Bars.AddRange(new DevExpress.XtraBars.Bar[] {
     this.Bar2});
     this.BarManager1.Controller = this.BarAndDockingController1;
     this.BarManager1.DockControls.Add(this.barDockControlTop);
     this.BarManager1.DockControls.Add(this.barDockControlBottom);
     this.BarManager1.DockControls.Add(this.barDockControlLeft);
     this.BarManager1.DockControls.Add(this.barDockControlRight);
     this.BarManager1.Form = this;
     this.BarManager1.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
     this.bbiClose,
     this.barbtnTimeCard,
     this.barButtonItem1,
     this.barbtnClose,
     this.barstaticCurrentLogin});
     this.BarManager1.MainMenu = this.Bar2;
     this.BarManager1.MaxItemId = 6;
     //
     // Bar2
     //
     this.Bar2.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Bar2.Appearance.Options.UseFont = true;
     this.Bar2.BarName = "Custom 1";
     this.Bar2.DockCol = 0;
     this.Bar2.DockRow = 0;
     this.Bar2.DockStyle = DevExpress.XtraBars.BarDockStyle.Top;
     this.Bar2.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.PaintStyle, this.bbiClose, DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph),
     new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.PaintStyle, this.barbtnTimeCard, DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph),
     new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.PaintStyle, this.barstaticCurrentLogin, "", true, true, true, 0, null, DevExpress.XtraBars.BarItemPaintStyle.Standard)});
     this.Bar2.OptionsBar.MultiLine = true;
     this.Bar2.OptionsBar.UseWholeRow = true;
     this.Bar2.Text = "Custom 1";
     //
     // bbiClose
     //
     this.bbiClose.Caption = "Close";
     this.bbiClose.Glyph = ((System.Drawing.Image)(resources.GetObject("bbiClose.Glyph")));
     this.bbiClose.Id = 0;
     this.bbiClose.Name = "bbiClose";
     this.bbiClose.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbiLoginOut_ItemClick);
     //
     // barbtnTimeCard
     //
     this.barbtnTimeCard.Caption = "Time Card";
     this.barbtnTimeCard.Glyph = ((System.Drawing.Image)(resources.GetObject("barbtnTimeCard.Glyph")));
     this.barbtnTimeCard.Id = 1;
     this.barbtnTimeCard.Name = "barbtnTimeCard";
     this.barbtnTimeCard.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barbtnTimeCard_ItemClick);
     //
     // barstaticCurrentLogin
     //
     this.barstaticCurrentLogin.Border = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.barstaticCurrentLogin.Caption = "Current Login: {0}, {1}";
     this.barstaticCurrentLogin.Id = 4;
     this.barstaticCurrentLogin.Name = "barstaticCurrentLogin";
     this.barstaticCurrentLogin.OwnFont = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.barstaticCurrentLogin.TextAlignment = System.Drawing.StringAlignment.Near;
     this.barstaticCurrentLogin.UseOwnFont = true;
     //
     // BarAndDockingController1
     //
     this.BarAndDockingController1.PaintStyleName = "WindowsXP";
     //
     // barButtonItem1
     //
     this.barButtonItem1.Caption = "ACMS Manager";
     this.barButtonItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("barButtonItem1.Glyph")));
     this.barButtonItem1.Id = 2;
     this.barButtonItem1.Name = "barButtonItem1";
     this.barButtonItem1.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem1_ItemClick);
     //
     // barbtnClose
     //
     this.barbtnClose.Id = 5;
     this.barbtnClose.Name = "barbtnClose";
     //
     // tabStaff
     //
     this.tabStaff.Cursor = System.Windows.Forms.Cursors.Arrow;
     this.tabStaff.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.tabStaff.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.tabStaff.ImeMode = System.Windows.Forms.ImeMode.On;
     this.tabStaff.Location = new System.Drawing.Point(0, 65);
     this.tabStaff.LookAndFeel.UseDefaultLookAndFeel = false;
     this.tabStaff.Name = "tabStaff";
     this.tabStaff.PaintStyleName = "Skin";
     this.tabStaff.SelectedTabPage = this.tabStaffOne;
     this.tabStaff.Size = new System.Drawing.Size(1016, 648);
     this.tabStaff.TabIndex = 0;
     this.tabStaff.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
     this.tabStaffOne,
     this.tabStaffTwo,
     this.tabStaffThree,
     this.tabStaffFour,
     this.tabStaffFive,
     this.tabStaffSix,
     this.tabStaffSeven,
     this.tabStaffEight});
     this.tabStaff.Text = "tabStaffMailbox";
     this.tabStaff.VisibleChanged += new System.EventHandler(this.tabStaff_VisibleChanged);
     this.tabStaff.SelectedPageChanged += new DevExpress.XtraTab.TabPageChangedEventHandler(this.tabStaff_SelectedPageChanged);
     this.tabStaff.Click += new System.EventHandler(this.tabStaff_Click);
     //
     // tabStaffOne
     //
     this.tabStaffOne.Appearance.Header.Font = new System.Drawing.Font("Tahoma", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.tabStaffOne.Appearance.Header.Options.UseFont = true;
     this.tabStaffOne.Controls.Add(this.lblOne_2);
     this.tabStaffOne.Controls.Add(this.luedtMemoEmployeeID);
     this.tabStaffOne.Controls.Add(this.lblMemoEmployeeID);
     this.tabStaffOne.Controls.Add(this.groupMessages);
     this.tabStaffOne.Controls.Add(this.groupReceipientGroup);
     this.tabStaffOne.Controls.Add(this.lblOne_1);
     this.tabStaffOne.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.tabStaffOne.Name = "tabStaffOne";
     this.tabStaffOne.Size = new System.Drawing.Size(1007, 612);
     this.tabStaffOne.Text = "Mailbox";
     this.tabStaffOne.VisibleChanged += new System.EventHandler(this.tabStaffMailbox_VisibleChanged);
     //
     // lblOne_2
     //
     this.lblOne_2.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.lblOne_2.Appearance.ForeColor = System.Drawing.Color.MediumBlue;
     this.lblOne_2.Appearance.Options.UseFont = true;
     this.lblOne_2.Appearance.Options.UseForeColor = true;
     this.lblOne_2.Location = new System.Drawing.Point(160, 8);
     this.lblOne_2.Name = "lblOne_2";
     this.lblOne_2.Size = new System.Drawing.Size(138, 23);
     this.lblOne_2.TabIndex = 142;
     this.lblOne_2.Text = "Receipient Group";
     this.lblOne_2.Click += new System.EventHandler(this.lblOne_2_Click);
     //
     // luedtMemoEmployeeID
     //
     this.luedtMemoEmployeeID.Location = new System.Drawing.Point(776, 8);
     this.luedtMemoEmployeeID.Name = "luedtMemoEmployeeID";
     this.luedtMemoEmployeeID.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.luedtMemoEmployeeID.Size = new System.Drawing.Size(208, 20);
     this.luedtMemoEmployeeID.TabIndex = 33;
     this.luedtMemoEmployeeID.EditValueChanged += new System.EventHandler(this.luedtMemoEmployeeID_EditValueChanged);
     //
     // lblMemoEmployeeID
     //
     this.lblMemoEmployeeID.AutoSize = true;
     this.lblMemoEmployeeID.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblMemoEmployeeID.Location = new System.Drawing.Point(688, 8);
     this.lblMemoEmployeeID.Name = "lblMemoEmployeeID";
     this.lblMemoEmployeeID.Size = new System.Drawing.Size(88, 16);
     this.lblMemoEmployeeID.TabIndex = 34;
     this.lblMemoEmployeeID.Text = "Staff Name:";
     //
     // groupMessages
     //
     this.groupMessages.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowOnly;
     this.groupMessages.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.groupMessages.Controls.Add(this.lblmnuMessagesReceipient);
     this.groupMessages.Controls.Add(this.lblmnuMessagesFollowUpAction);
     this.groupMessages.Controls.Add(this.lblmnuMessagesMemoInfo);
     this.groupMessages.Controls.Add(this.groupMessagesEntry);
     this.groupMessages.Controls.Add(this.groupMessagesFollowUpAction);
     this.groupMessages.Controls.Add(this.groupMessagesMemoInfo);
     this.groupMessages.Controls.Add(this.groupMessagesReceipient);
     this.groupMessages.Location = new System.Drawing.Point(0, 34);
     this.groupMessages.Name = "groupMessages";
     this.groupMessages.ShowCaption = false;
     this.groupMessages.Size = new System.Drawing.Size(1007, 584);
     this.groupMessages.TabIndex = 13;
     this.groupMessages.Text = "GroupControl3";
     //
     // lblmnuMessagesReceipient
     //
     this.lblmnuMessagesReceipient.AutoSize = true;
     this.lblmnuMessagesReceipient.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblmnuMessagesReceipient.Location = new System.Drawing.Point(176, 320);
     this.lblmnuMessagesReceipient.Name = "lblmnuMessagesReceipient";
     this.lblmnuMessagesReceipient.Size = new System.Drawing.Size(83, 16);
     this.lblmnuMessagesReceipient.TabIndex = 2;
     this.lblmnuMessagesReceipient.Text = "Receipient";
     this.lblmnuMessagesReceipient.Click += new System.EventHandler(this.lblmnuMessagesReceipient_Click);
     //
     // lblmnuMessagesFollowUpAction
     //
     this.lblmnuMessagesFollowUpAction.AutoSize = true;
     this.lblmnuMessagesFollowUpAction.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblmnuMessagesFollowUpAction.Location = new System.Drawing.Point(112, 320);
     this.lblmnuMessagesFollowUpAction.Name = "lblmnuMessagesFollowUpAction";
     this.lblmnuMessagesFollowUpAction.Size = new System.Drawing.Size(62, 16);
     this.lblmnuMessagesFollowUpAction.TabIndex = 1;
     this.lblmnuMessagesFollowUpAction.Text = "Replies";
     this.lblmnuMessagesFollowUpAction.Click += new System.EventHandler(this.lblmnuMessagesFollowUpAction_Click);
     //
     // lblmnuMessagesMemoInfo
     //
     this.lblmnuMessagesMemoInfo.AutoSize = true;
     this.lblmnuMessagesMemoInfo.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblmnuMessagesMemoInfo.Location = new System.Drawing.Point(24, 320);
     this.lblmnuMessagesMemoInfo.Name = "lblmnuMessagesMemoInfo";
     this.lblmnuMessagesMemoInfo.Size = new System.Drawing.Size(79, 16);
     this.lblmnuMessagesMemoInfo.TabIndex = 0;
     this.lblmnuMessagesMemoInfo.Text = "Memo Info";
     this.lblmnuMessagesMemoInfo.Click += new System.EventHandler(this.lblmnuMessagesMemoInfo_Click);
     //
     // groupMessagesEntry
     //
     this.groupMessagesEntry.Appearance.BackColor = System.Drawing.SystemColors.Control;
     this.groupMessagesEntry.Appearance.Options.UseBackColor = true;
     this.groupMessagesEntry.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowOnly;
     this.groupMessagesEntry.Controls.Add(this.cbViewMemo);
     this.groupMessagesEntry.Controls.Add(this.sbtnMemoUnpost);
     this.groupMessagesEntry.Controls.Add(this.sbtnMemoPrint);
     this.groupMessagesEntry.Controls.Add(this.sbtnMemoNew);
     this.groupMessagesEntry.Controls.Add(this.gctrMemo);
     this.groupMessagesEntry.Location = new System.Drawing.Point(8, 0);
     this.groupMessagesEntry.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.groupMessagesEntry.LookAndFeel.UseDefaultLookAndFeel = false;
     this.groupMessagesEntry.Name = "groupMessagesEntry";
     this.groupMessagesEntry.Size = new System.Drawing.Size(992, 312);
     this.groupMessagesEntry.TabIndex = 1;
     this.groupMessagesEntry.Text = "MESSAGES";
     //
     // cbViewMemo
     //
     this.cbViewMemo.EditValue = "All";
     this.cbViewMemo.ImeMode = System.Windows.Forms.ImeMode.On;
     this.cbViewMemo.Location = new System.Drawing.Point(16, 32);
     this.cbViewMemo.Name = "cbViewMemo";
     this.cbViewMemo.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cbViewMemo.Properties.Items.AddRange(new object[] {
     "All",
     "Personal Email",
     "Branch Bulletin",
     "Sent Memo"});
     this.cbViewMemo.Properties.PopupSizeable = true;
     this.cbViewMemo.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
     this.cbViewMemo.Size = new System.Drawing.Size(136, 20);
     this.cbViewMemo.TabIndex = 0;
     this.cbViewMemo.SelectedIndexChanged += new System.EventHandler(this.cbViewMemo_SelectedIndexChanged);
     //
     // sbtnMemoUnpost
     //
     this.sbtnMemoUnpost.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.sbtnMemoUnpost.Appearance.Options.UseFont = true;
     this.sbtnMemoUnpost.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.sbtnMemoUnpost.Location = new System.Drawing.Point(320, 32);
     this.sbtnMemoUnpost.Name = "sbtnMemoUnpost";
     this.sbtnMemoUnpost.Size = new System.Drawing.Size(72, 20);
     this.sbtnMemoUnpost.TabIndex = 3;
     this.sbtnMemoUnpost.Text = "Unpost";
     this.sbtnMemoUnpost.Click += new System.EventHandler(this.sbtnMemoUnpost_Click);
     //
     // sbtnMemoPrint
     //
     this.sbtnMemoPrint.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.sbtnMemoPrint.Appearance.Options.UseFont = true;
     this.sbtnMemoPrint.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.sbtnMemoPrint.Location = new System.Drawing.Point(240, 32);
     this.sbtnMemoPrint.Name = "sbtnMemoPrint";
     this.sbtnMemoPrint.Size = new System.Drawing.Size(72, 20);
     this.sbtnMemoPrint.TabIndex = 2;
     this.sbtnMemoPrint.Text = "Print";
     this.sbtnMemoPrint.Click += new System.EventHandler(this.sbtnMemoPrint_Click);
     //
     // sbtnMemoNew
     //
     this.sbtnMemoNew.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.sbtnMemoNew.Appearance.Options.UseFont = true;
     this.sbtnMemoNew.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.sbtnMemoNew.Location = new System.Drawing.Point(160, 32);
     this.sbtnMemoNew.Name = "sbtnMemoNew";
     this.sbtnMemoNew.Size = new System.Drawing.Size(72, 20);
     this.sbtnMemoNew.TabIndex = 1;
     this.sbtnMemoNew.Text = "New";
     this.sbtnMemoNew.Click += new System.EventHandler(this.sbtnMemoNew_Click);
     //
     // gctrMemo
     //
     this.gctrMemo.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.gctrMemo.EmbeddedNavigator.Name = "";
     this.gctrMemo.Location = new System.Drawing.Point(2, 62);
     this.gctrMemo.LookAndFeel.UseDefaultLookAndFeel = false;
     this.gctrMemo.MainView = this.gvMemo;
     this.gctrMemo.Name = "gctrMemo";
     this.gctrMemo.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemCheckEdit1});
     this.gctrMemo.Size = new System.Drawing.Size(988, 248);
     this.gctrMemo.TabIndex = 4;
     this.gctrMemo.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gvMemo});
     //
     // gvMemo
     //
     this.gvMemo.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colnMemoID,
     this.colPostUpdateDateTime,
     this.colAuthorID,
     this.colAuthor,
     this.colTitle,
     this.colRead});
     this.gvMemo.GridControl = this.gctrMemo;
     this.gvMemo.Name = "gvMemo";
     this.gvMemo.OptionsBehavior.AllowIncrementalSearch = true;
     this.gvMemo.OptionsBehavior.Editable = false;
     this.gvMemo.OptionsCustomization.AllowFilter = false;
     this.gvMemo.OptionsView.ShowGroupPanel = false;
     this.gvMemo.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.colPostUpdateDateTime, DevExpress.Data.ColumnSortOrder.Descending)});
     this.gvMemo.FocusedRowChanged += new DevExpress.XtraGrid.Views.Base.FocusedRowChangedEventHandler(this.gvMemo_FocusedRowChanged);
     this.gvMemo.DataSourceChanged += new System.EventHandler(this.gvMemo_DataSourceChanged);
     //
     // colnMemoID
     //
     this.colnMemoID.Caption = "Memo ID";
     this.colnMemoID.FieldName = "nMemoID";
     this.colnMemoID.Name = "colnMemoID";
     this.colnMemoID.Visible = true;
     this.colnMemoID.VisibleIndex = 0;
     this.colnMemoID.Width = 115;
     //
     // colPostUpdateDateTime
     //
     this.colPostUpdateDateTime.Caption = "Post/Update Date Time";
     this.colPostUpdateDateTime.DisplayFormat.FormatString = "dd/MM/yyyy hh:mm tt";
     this.colPostUpdateDateTime.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.colPostUpdateDateTime.FieldName = "dtLastEditDate";
     this.colPostUpdateDateTime.Name = "colPostUpdateDateTime";
     this.colPostUpdateDateTime.Visible = true;
     this.colPostUpdateDateTime.VisibleIndex = 1;
     this.colPostUpdateDateTime.Width = 172;
     //
     // colAuthorID
     //
     this.colAuthorID.Caption = "Author ID";
     this.colAuthorID.FieldName = "nEmployeeID";
     this.colAuthorID.Name = "colAuthorID";
     this.colAuthorID.Width = 201;
     //
     // colAuthor
     //
     this.colAuthor.Caption = "Author";
     this.colAuthor.FieldName = "strEmployeeName";
     this.colAuthor.Name = "colAuthor";
     this.colAuthor.Visible = true;
     this.colAuthor.VisibleIndex = 2;
     this.colAuthor.Width = 229;
     //
     // colTitle
     //
     this.colTitle.Caption = "Subject";
     this.colTitle.FieldName = "strTitle";
     this.colTitle.Name = "colTitle";
     this.colTitle.Visible = true;
     this.colTitle.VisibleIndex = 3;
     this.colTitle.Width = 405;
     //
     // colRead
     //
     this.colRead.Caption = "Read";
     this.colRead.ColumnEdit = this.repositoryItemCheckEdit1;
     this.colRead.FieldName = "fRead";
     this.colRead.Name = "colRead";
     this.colRead.Visible = true;
     this.colRead.VisibleIndex = 4;
     this.colRead.Width = 46;
     //
     // repositoryItemCheckEdit1
     //
     this.repositoryItemCheckEdit1.AutoHeight = false;
     this.repositoryItemCheckEdit1.Name = "repositoryItemCheckEdit1";
     this.repositoryItemCheckEdit1.NullStyle = DevExpress.XtraEditors.Controls.StyleIndeterminate.Unchecked;
     //
     // groupMessagesFollowUpAction
     //
     this.groupMessagesFollowUpAction.Appearance.BackColor = System.Drawing.SystemColors.Control;
     this.groupMessagesFollowUpAction.Appearance.Options.UseBackColor = true;
     this.groupMessagesFollowUpAction.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowOnly;
     this.groupMessagesFollowUpAction.Controls.Add(this.GroupControl4);
     this.groupMessagesFollowUpAction.Location = new System.Drawing.Point(7, 344);
     this.groupMessagesFollowUpAction.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.groupMessagesFollowUpAction.LookAndFeel.UseDefaultLookAndFeel = false;
     this.groupMessagesFollowUpAction.Name = "groupMessagesFollowUpAction";
     this.groupMessagesFollowUpAction.Size = new System.Drawing.Size(992, 232);
     this.groupMessagesFollowUpAction.TabIndex = 12;
     this.groupMessagesFollowUpAction.Text = "Replies";
     //
     // GroupControl4
     //
     this.GroupControl4.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowOnly;
     this.GroupControl4.Controls.Add(this.sbtnRepliesDelete);
     this.GroupControl4.Controls.Add(this.sbtnRepliesView);
     this.GroupControl4.Controls.Add(this.sbtnRepliesUpdate);
     this.GroupControl4.Controls.Add(this.sbtnRepliesAdd);
     this.GroupControl4.Controls.Add(this.gctrReplies);
     this.GroupControl4.Dock = System.Windows.Forms.DockStyle.Fill;
     this.GroupControl4.Location = new System.Drawing.Point(2, 19);
     this.GroupControl4.Name = "GroupControl4";
     this.GroupControl4.ShowCaption = false;
     this.GroupControl4.Size = new System.Drawing.Size(988, 211);
     this.GroupControl4.TabIndex = 0;
     this.GroupControl4.Text = "GroupControl1";
     //
     // sbtnRepliesDelete
     //
     this.sbtnRepliesDelete.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.sbtnRepliesDelete.Appearance.Options.UseFont = true;
     this.sbtnRepliesDelete.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.sbtnRepliesDelete.Location = new System.Drawing.Point(256, 16);
     this.sbtnRepliesDelete.Name = "sbtnRepliesDelete";
     this.sbtnRepliesDelete.Size = new System.Drawing.Size(72, 20);
     this.sbtnRepliesDelete.TabIndex = 3;
     this.sbtnRepliesDelete.Text = "Delete";
     this.sbtnRepliesDelete.Click += new System.EventHandler(this.sbtnRepliesDelete_Click);
     //
     // sbtnRepliesView
     //
     this.sbtnRepliesView.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.sbtnRepliesView.Appearance.Options.UseFont = true;
     this.sbtnRepliesView.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.sbtnRepliesView.Location = new System.Drawing.Point(96, 16);
     this.sbtnRepliesView.Name = "sbtnRepliesView";
     this.sbtnRepliesView.Size = new System.Drawing.Size(72, 20);
     this.sbtnRepliesView.TabIndex = 1;
     this.sbtnRepliesView.Text = "View";
     this.sbtnRepliesView.Click += new System.EventHandler(this.sbtnRepliesView_Click);
     //
     // sbtnRepliesUpdate
     //
     this.sbtnRepliesUpdate.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.sbtnRepliesUpdate.Appearance.Options.UseFont = true;
     this.sbtnRepliesUpdate.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.sbtnRepliesUpdate.Location = new System.Drawing.Point(176, 16);
     this.sbtnRepliesUpdate.Name = "sbtnRepliesUpdate";
     this.sbtnRepliesUpdate.Size = new System.Drawing.Size(72, 20);
     this.sbtnRepliesUpdate.TabIndex = 2;
     this.sbtnRepliesUpdate.Text = "Update";
     this.sbtnRepliesUpdate.Click += new System.EventHandler(this.sbtnRepliesUpdate_Click);
     //
     // sbtnRepliesAdd
     //
     this.sbtnRepliesAdd.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.sbtnRepliesAdd.Appearance.Options.UseFont = true;
     this.sbtnRepliesAdd.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.sbtnRepliesAdd.Location = new System.Drawing.Point(16, 16);
     this.sbtnRepliesAdd.Name = "sbtnRepliesAdd";
     this.sbtnRepliesAdd.Size = new System.Drawing.Size(72, 20);
     this.sbtnRepliesAdd.TabIndex = 0;
     this.sbtnRepliesAdd.Text = "Add";
     this.sbtnRepliesAdd.Click += new System.EventHandler(this.sbtnRepliesAdd_Click);
     //
     // gctrReplies
     //
     this.gctrReplies.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.gctrReplies.EmbeddedNavigator.Name = "";
     this.gctrReplies.Location = new System.Drawing.Point(2, 49);
     this.gctrReplies.LookAndFeel.UseDefaultLookAndFeel = false;
     this.gctrReplies.MainView = this.gvReplies;
     this.gctrReplies.Name = "gctrReplies";
     this.gctrReplies.Size = new System.Drawing.Size(984, 160);
     this.gctrReplies.TabIndex = 4;
     this.gctrReplies.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gvReplies});
     //
     // gvReplies
     //
     this.gvReplies.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colReplyDate,
     this.colReplyEmployeeID,
     this.colReplyEmployeeName,
     this.colReplyMessage});
     this.gvReplies.GridControl = this.gctrReplies;
     this.gvReplies.Name = "gvReplies";
     this.gvReplies.OptionsBehavior.AllowIncrementalSearch = true;
     this.gvReplies.OptionsBehavior.Editable = false;
     this.gvReplies.OptionsCustomization.AllowFilter = false;
     this.gvReplies.OptionsView.ShowGroupPanel = false;
     this.gvReplies.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.colReplyDate, DevExpress.Data.ColumnSortOrder.Descending)});
     //
     // colReplyDate
     //
     this.colReplyDate.Caption = "Date";
     this.colReplyDate.DisplayFormat.FormatString = "dd/MM/yyyy";
     this.colReplyDate.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.colReplyDate.FieldName = "dtDate";
     this.colReplyDate.Name = "colReplyDate";
     this.colReplyDate.Visible = true;
     this.colReplyDate.VisibleIndex = 0;
     this.colReplyDate.Width = 143;
     //
     // colReplyEmployeeID
     //
     this.colReplyEmployeeID.Caption = "Employee ID";
     this.colReplyEmployeeID.FieldName = "nEmployeeID";
     this.colReplyEmployeeID.Name = "colReplyEmployeeID";
     this.colReplyEmployeeID.Width = 209;
     //
     // colReplyEmployeeName
     //
     this.colReplyEmployeeName.Caption = "Employee";
     this.colReplyEmployeeName.FieldName = "strEmployeeName";
     this.colReplyEmployeeName.Name = "colReplyEmployeeName";
     this.colReplyEmployeeName.Visible = true;
     this.colReplyEmployeeName.VisibleIndex = 1;
     this.colReplyEmployeeName.Width = 247;
     //
     // colReplyMessage
     //
     this.colReplyMessage.Caption = "Message";
     this.colReplyMessage.FieldName = "strMessage";
     this.colReplyMessage.Name = "colReplyMessage";
     this.colReplyMessage.Visible = true;
     this.colReplyMessage.VisibleIndex = 2;
     this.colReplyMessage.Width = 569;
     //
     // groupMessagesMemoInfo
     //
     this.groupMessagesMemoInfo.Appearance.BackColor = System.Drawing.SystemColors.Control;
     this.groupMessagesMemoInfo.Appearance.Options.UseBackColor = true;
     this.groupMessagesMemoInfo.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowOnly;
     this.groupMessagesMemoInfo.Controls.Add(this.GroupControl8);
     this.groupMessagesMemoInfo.Location = new System.Drawing.Point(7, 344);
     this.groupMessagesMemoInfo.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.groupMessagesMemoInfo.LookAndFeel.UseDefaultLookAndFeel = false;
     this.groupMessagesMemoInfo.Name = "groupMessagesMemoInfo";
     this.groupMessagesMemoInfo.Size = new System.Drawing.Size(992, 232);
     this.groupMessagesMemoInfo.TabIndex = 13;
     this.groupMessagesMemoInfo.Text = "MEMO INFO";
     this.groupMessagesMemoInfo.VisibleChanged += new System.EventHandler(this.groupMessagesMemoInfo_VisibleChanged);
     //
     // GroupControl8
     //
     this.GroupControl8.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowOnly;
     this.GroupControl8.Controls.Add(this.sbtnUpdate);
     this.GroupControl8.Controls.Add(this.memoedtMessage);
     this.GroupControl8.Controls.Add(this.Label37);
     this.GroupControl8.Dock = System.Windows.Forms.DockStyle.Fill;
     this.GroupControl8.Location = new System.Drawing.Point(2, 19);
     this.GroupControl8.Name = "GroupControl8";
     this.GroupControl8.ShowCaption = false;
     this.GroupControl8.Size = new System.Drawing.Size(988, 211);
     this.GroupControl8.TabIndex = 0;
     this.GroupControl8.Text = "GroupControl1";
     //
     // sbtnUpdate
     //
     this.sbtnUpdate.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.sbtnUpdate.Appearance.Options.UseFont = true;
     this.sbtnUpdate.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.sbtnUpdate.Location = new System.Drawing.Point(656, 180);
     this.sbtnUpdate.Name = "sbtnUpdate";
     this.sbtnUpdate.Size = new System.Drawing.Size(72, 20);
     this.sbtnUpdate.TabIndex = 1;
     this.sbtnUpdate.Text = "Update";
     this.sbtnUpdate.Click += new System.EventHandler(this.sbtnUpdate_Click);
     //
     // memoedtMessage
     //
     this.memoedtMessage.EditValue = "";
     this.memoedtMessage.Location = new System.Drawing.Point(88, 16);
     this.memoedtMessage.Name = "memoedtMessage";
     this.memoedtMessage.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.memoedtMessage.Properties.Appearance.Options.UseFont = true;
     this.memoedtMessage.Properties.MaxLength = 1000;
     this.memoedtMessage.Size = new System.Drawing.Size(560, 184);
     this.memoedtMessage.TabIndex = 0;
     //
     // Label37
     //
     this.Label37.AutoSize = true;
     this.Label37.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Label37.Location = new System.Drawing.Point(16, 16);
     this.Label37.Name = "Label37";
     this.Label37.Size = new System.Drawing.Size(72, 16);
     this.Label37.TabIndex = 16;
     this.Label37.Text = "Message";
     //
     // groupMessagesReceipient
     //
     this.groupMessagesReceipient.Appearance.BackColor = System.Drawing.SystemColors.Control;
     this.groupMessagesReceipient.Appearance.Options.UseBackColor = true;
     this.groupMessagesReceipient.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowOnly;
     this.groupMessagesReceipient.Controls.Add(this.GroupControl6);
     this.groupMessagesReceipient.Location = new System.Drawing.Point(7, 344);
     this.groupMessagesReceipient.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.groupMessagesReceipient.LookAndFeel.UseDefaultLookAndFeel = false;
     this.groupMessagesReceipient.Name = "groupMessagesReceipient";
     this.groupMessagesReceipient.Size = new System.Drawing.Size(992, 232);
     this.groupMessagesReceipient.TabIndex = 14;
     this.groupMessagesReceipient.Text = "RECEIPIENT";
     //
     // GroupControl6
     //
     this.GroupControl6.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowOnly;
     this.GroupControl6.Controls.Add(this.cbMemoReceipient);
     this.GroupControl6.Controls.Add(this.sbtnReceipientDelete);
     this.GroupControl6.Controls.Add(this.sbtnReceipientNew);
     this.GroupControl6.Controls.Add(this.gctrReceipient);
     this.GroupControl6.Dock = System.Windows.Forms.DockStyle.Fill;
     this.GroupControl6.Location = new System.Drawing.Point(2, 19);
     this.GroupControl6.Name = "GroupControl6";
     this.GroupControl6.ShowCaption = false;
     this.GroupControl6.Size = new System.Drawing.Size(988, 211);
     this.GroupControl6.TabIndex = 0;
     this.GroupControl6.Text = "GroupControl1";
     //
     // cbMemoReceipient
     //
     this.cbMemoReceipient.EditValue = "Branch Group";
     this.cbMemoReceipient.ImeMode = System.Windows.Forms.ImeMode.On;
     this.cbMemoReceipient.Location = new System.Drawing.Point(8, 16);
     this.cbMemoReceipient.Name = "cbMemoReceipient";
     this.cbMemoReceipient.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cbMemoReceipient.Properties.Items.AddRange(new object[] {
     "Branch Group",
     "Department Group",
     "Personal Group",
     "Employee"});
     this.cbMemoReceipient.Properties.PopupSizeable = true;
     this.cbMemoReceipient.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
     this.cbMemoReceipient.Size = new System.Drawing.Size(136, 20);
     this.cbMemoReceipient.TabIndex = 0;
     this.cbMemoReceipient.SelectedIndexChanged += new System.EventHandler(this.cbMemoReceipient_SelectedIndexChanged);
     //
     // sbtnReceipientDelete
     //
     this.sbtnReceipientDelete.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.sbtnReceipientDelete.Appearance.Options.UseFont = true;
     this.sbtnReceipientDelete.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.sbtnReceipientDelete.Location = new System.Drawing.Point(232, 16);
     this.sbtnReceipientDelete.Name = "sbtnReceipientDelete";
     this.sbtnReceipientDelete.Size = new System.Drawing.Size(72, 20);
     this.sbtnReceipientDelete.TabIndex = 2;
     this.sbtnReceipientDelete.Text = "Delete";
     this.sbtnReceipientDelete.Click += new System.EventHandler(this.sbtnReceipientDelete_Click);
     //
     // sbtnReceipientNew
     //
     this.sbtnReceipientNew.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.sbtnReceipientNew.Appearance.Options.UseFont = true;
     this.sbtnReceipientNew.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.sbtnReceipientNew.Location = new System.Drawing.Point(152, 16);
     this.sbtnReceipientNew.Name = "sbtnReceipientNew";
     this.sbtnReceipientNew.Size = new System.Drawing.Size(72, 20);
     this.sbtnReceipientNew.TabIndex = 1;
     this.sbtnReceipientNew.Text = "New";
     this.sbtnReceipientNew.Click += new System.EventHandler(this.sbtnReceipientNew_Click);
     //
     // gctrReceipient
     //
     this.gctrReceipient.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.gctrReceipient.EmbeddedNavigator.Name = "";
     this.gctrReceipient.Location = new System.Drawing.Point(2, 49);
     this.gctrReceipient.LookAndFeel.UseDefaultLookAndFeel = false;
     this.gctrReceipient.MainView = this.gvReceipient;
     this.gctrReceipient.Name = "gctrReceipient";
     this.gctrReceipient.Size = new System.Drawing.Size(984, 160);
     this.gctrReceipient.TabIndex = 3;
     this.gctrReceipient.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gvReceipient});
     //
     // gvReceipient
     //
     this.gvReceipient.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colRecipientType,
     this.colRecipient,
     this.colRecipientID});
     this.gvReceipient.GridControl = this.gctrReceipient;
     this.gvReceipient.Name = "gvReceipient";
     this.gvReceipient.OptionsBehavior.AllowIncrementalSearch = true;
     this.gvReceipient.OptionsBehavior.Editable = false;
     this.gvReceipient.OptionsCustomization.AllowFilter = false;
     this.gvReceipient.OptionsView.ShowGroupPanel = false;
     //
     // colRecipientType
     //
     this.colRecipientType.Caption = "Type";
     this.colRecipientType.FieldName = "Type";
     this.colRecipientType.Name = "colRecipientType";
     this.colRecipientType.Visible = true;
     this.colRecipientType.VisibleIndex = 0;
     this.colRecipientType.Width = 223;
     //
     // colRecipient
     //
     this.colRecipient.Caption = "Receipient";
     this.colRecipient.FieldName = "Receipient";
     this.colRecipient.Name = "colRecipient";
     this.colRecipient.Visible = true;
     this.colRecipient.VisibleIndex = 1;
     this.colRecipient.Width = 558;
     //
     // colRecipientID
     //
     this.colRecipientID.Caption = "Receipient ID";
     this.colRecipientID.FieldName = "nReceipientID";
     this.colRecipientID.Name = "colRecipientID";
     this.colRecipientID.Width = 178;
     //
     // groupReceipientGroup
     //
     this.groupReceipientGroup.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowOnly;
     this.groupReceipientGroup.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.groupReceipientGroup.Controls.Add(this.groupReceipientGroupEntry);
     this.groupReceipientGroup.Controls.Add(this.groupReceipientGroupReceipientEntries);
     this.groupReceipientGroup.Location = new System.Drawing.Point(0, 34);
     this.groupReceipientGroup.Name = "groupReceipientGroup";
     this.groupReceipientGroup.ShowCaption = false;
     this.groupReceipientGroup.Size = new System.Drawing.Size(1007, 584);
     this.groupReceipientGroup.TabIndex = 14;
     this.groupReceipientGroup.Text = "GroupControl3";
     //
     // groupReceipientGroupEntry
     //
     this.groupReceipientGroupEntry.Appearance.BackColor = System.Drawing.SystemColors.Control;
     this.groupReceipientGroupEntry.Appearance.Options.UseBackColor = true;
     this.groupReceipientGroupEntry.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowOnly;
     this.groupReceipientGroupEntry.Controls.Add(this.sbtnRecpGrpDelete);
     this.groupReceipientGroupEntry.Controls.Add(this.sbtnRecpGrpEdit);
     this.groupReceipientGroupEntry.Controls.Add(this.sbtnRecpGrpNew);
     this.groupReceipientGroupEntry.Controls.Add(this.gctrRecpGrp);
     this.groupReceipientGroupEntry.Location = new System.Drawing.Point(8, 0);
     this.groupReceipientGroupEntry.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.groupReceipientGroupEntry.LookAndFeel.UseDefaultLookAndFeel = false;
     this.groupReceipientGroupEntry.Name = "groupReceipientGroupEntry";
     this.groupReceipientGroupEntry.Size = new System.Drawing.Size(992, 312);
     this.groupReceipientGroupEntry.TabIndex = 1;
     this.groupReceipientGroupEntry.Text = "RECEIPIENT GROUP";
     //
     // sbtnRecpGrpDelete
     //
     this.sbtnRecpGrpDelete.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.sbtnRecpGrpDelete.Appearance.Options.UseFont = true;
     this.sbtnRecpGrpDelete.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.sbtnRecpGrpDelete.Location = new System.Drawing.Point(176, 32);
     this.sbtnRecpGrpDelete.Name = "sbtnRecpGrpDelete";
     this.sbtnRecpGrpDelete.Size = new System.Drawing.Size(72, 20);
     this.sbtnRecpGrpDelete.TabIndex = 2;
     this.sbtnRecpGrpDelete.Text = "Delete";
     this.sbtnRecpGrpDelete.Click += new System.EventHandler(this.sbtnRecpGrpDelete_Click);
     //
     // sbtnRecpGrpEdit
     //
     this.sbtnRecpGrpEdit.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.sbtnRecpGrpEdit.Appearance.Options.UseFont = true;
     this.sbtnRecpGrpEdit.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.sbtnRecpGrpEdit.Location = new System.Drawing.Point(96, 32);
     this.sbtnRecpGrpEdit.Name = "sbtnRecpGrpEdit";
     this.sbtnRecpGrpEdit.Size = new System.Drawing.Size(72, 20);
     this.sbtnRecpGrpEdit.TabIndex = 1;
     this.sbtnRecpGrpEdit.Text = "Edit";
     this.sbtnRecpGrpEdit.Click += new System.EventHandler(this.sbtnRecpGrpEdit_Click);
     //
     // sbtnRecpGrpNew
     //
     this.sbtnRecpGrpNew.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.sbtnRecpGrpNew.Appearance.Options.UseFont = true;
     this.sbtnRecpGrpNew.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.sbtnRecpGrpNew.Location = new System.Drawing.Point(16, 32);
     this.sbtnRecpGrpNew.Name = "sbtnRecpGrpNew";
     this.sbtnRecpGrpNew.Size = new System.Drawing.Size(72, 20);
     this.sbtnRecpGrpNew.TabIndex = 0;
     this.sbtnRecpGrpNew.Text = "New";
     this.sbtnRecpGrpNew.Click += new System.EventHandler(this.sbtnRecpGrpNew_Click);
     //
     // gctrRecpGrp
     //
     this.gctrRecpGrp.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.gctrRecpGrp.EmbeddedNavigator.Name = "";
     this.gctrRecpGrp.Location = new System.Drawing.Point(2, 62);
     this.gctrRecpGrp.LookAndFeel.UseDefaultLookAndFeel = false;
     this.gctrRecpGrp.MainView = this.gvRecpGrp;
     this.gctrRecpGrp.Name = "gctrRecpGrp";
     this.gctrRecpGrp.Size = new System.Drawing.Size(988, 248);
     this.gctrRecpGrp.TabIndex = 3;
     this.gctrRecpGrp.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gvRecpGrp});
     //
     // gvRecpGrp
     //
     this.gvRecpGrp.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colReceipientGroupID,
     this.colReceipientGroupCode,
     this.colDescription});
     this.gvRecpGrp.GridControl = this.gctrRecpGrp;
     this.gvRecpGrp.Name = "gvRecpGrp";
     this.gvRecpGrp.OptionsBehavior.AllowIncrementalSearch = true;
     this.gvRecpGrp.OptionsBehavior.Editable = false;
     this.gvRecpGrp.OptionsCustomization.AllowFilter = false;
     this.gvRecpGrp.OptionsView.ShowGroupPanel = false;
     this.gvRecpGrp.FocusedRowChanged += new DevExpress.XtraGrid.Views.Base.FocusedRowChangedEventHandler(this.gvRecpGrp_FocusedRowChanged);
     this.gvRecpGrp.DataSourceChanged += new System.EventHandler(this.gvRecpGrp_DataSourceChanged);
     //
     // colReceipientGroupID
     //
     this.colReceipientGroupID.Caption = "Group ID";
     this.colReceipientGroupID.FieldName = "nMemoGroupID";
     this.colReceipientGroupID.Name = "colReceipientGroupID";
     this.colReceipientGroupID.Visible = true;
     this.colReceipientGroupID.VisibleIndex = 0;
     this.colReceipientGroupID.Width = 110;
     //
     // colReceipientGroupCode
     //
     this.colReceipientGroupCode.Caption = "Receipient Group Code";
     this.colReceipientGroupCode.FieldName = "strMemoGroupCode";
     this.colReceipientGroupCode.Name = "colReceipientGroupCode";
     this.colReceipientGroupCode.Visible = true;
     this.colReceipientGroupCode.VisibleIndex = 1;
     this.colReceipientGroupCode.Width = 417;
     //
     // colDescription
     //
     this.colDescription.Caption = "Description";
     this.colDescription.FieldName = "strDescription";
     this.colDescription.Name = "colDescription";
     this.colDescription.Visible = true;
     this.colDescription.VisibleIndex = 2;
     this.colDescription.Width = 440;
     //
     // groupReceipientGroupReceipientEntries
     //
     this.groupReceipientGroupReceipientEntries.Appearance.BackColor = System.Drawing.SystemColors.Control;
     this.groupReceipientGroupReceipientEntries.Appearance.Options.UseBackColor = true;
     this.groupReceipientGroupReceipientEntries.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowOnly;
     this.groupReceipientGroupReceipientEntries.Controls.Add(this.GroupControl10);
     this.groupReceipientGroupReceipientEntries.Location = new System.Drawing.Point(7, 320);
     this.groupReceipientGroupReceipientEntries.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.groupReceipientGroupReceipientEntries.LookAndFeel.UseDefaultLookAndFeel = false;
     this.groupReceipientGroupReceipientEntries.Name = "groupReceipientGroupReceipientEntries";
     this.groupReceipientGroupReceipientEntries.Size = new System.Drawing.Size(992, 256);
     this.groupReceipientGroupReceipientEntries.TabIndex = 14;
     this.groupReceipientGroupReceipientEntries.Text = "RECEIPIENT ENTRIES";
     //
     // GroupControl10
     //
     this.GroupControl10.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowOnly;
     this.GroupControl10.Controls.Add(this.sbtnRecpEntryDelete);
     this.GroupControl10.Controls.Add(this.sbtnRecpEntryNew);
     this.GroupControl10.Controls.Add(this.gctrRecpEntry);
     this.GroupControl10.Dock = System.Windows.Forms.DockStyle.Fill;
     this.GroupControl10.Location = new System.Drawing.Point(2, 19);
     this.GroupControl10.Name = "GroupControl10";
     this.GroupControl10.ShowCaption = false;
     this.GroupControl10.Size = new System.Drawing.Size(988, 235);
     this.GroupControl10.TabIndex = 0;
     this.GroupControl10.Text = "GroupControl1";
     //
     // sbtnRecpEntryDelete
     //
     this.sbtnRecpEntryDelete.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.sbtnRecpEntryDelete.Appearance.Options.UseFont = true;
     this.sbtnRecpEntryDelete.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.sbtnRecpEntryDelete.Location = new System.Drawing.Point(96, 16);
     this.sbtnRecpEntryDelete.Name = "sbtnRecpEntryDelete";
     this.sbtnRecpEntryDelete.Size = new System.Drawing.Size(72, 20);
     this.sbtnRecpEntryDelete.TabIndex = 1;
     this.sbtnRecpEntryDelete.Text = "Delete";
     this.sbtnRecpEntryDelete.Click += new System.EventHandler(this.sbtnRecpEntryDelete_Click);
     //
     // sbtnRecpEntryNew
     //
     this.sbtnRecpEntryNew.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.sbtnRecpEntryNew.Appearance.Options.UseFont = true;
     this.sbtnRecpEntryNew.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.sbtnRecpEntryNew.Location = new System.Drawing.Point(16, 16);
     this.sbtnRecpEntryNew.Name = "sbtnRecpEntryNew";
     this.sbtnRecpEntryNew.Size = new System.Drawing.Size(72, 20);
     this.sbtnRecpEntryNew.TabIndex = 0;
     this.sbtnRecpEntryNew.Text = "New";
     this.sbtnRecpEntryNew.Click += new System.EventHandler(this.sbtnRecpEntryNew_Click);
     //
     // gctrRecpEntry
     //
     this.gctrRecpEntry.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.gctrRecpEntry.EmbeddedNavigator.Name = "";
     this.gctrRecpEntry.Location = new System.Drawing.Point(2, 49);
     this.gctrRecpEntry.LookAndFeel.UseDefaultLookAndFeel = false;
     this.gctrRecpEntry.MainView = this.gvRecpEntry;
     this.gctrRecpEntry.Name = "gctrRecpEntry";
     this.gctrRecpEntry.Size = new System.Drawing.Size(984, 184);
     this.gctrRecpEntry.TabIndex = 2;
     this.gctrRecpEntry.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gvRecpEntry});
     //
     // gvRecpEntry
     //
     this.gvRecpEntry.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colEmployeeID,
     this.colEmployeeName});
     this.gvRecpEntry.GridControl = this.gctrRecpEntry;
     this.gvRecpEntry.Name = "gvRecpEntry";
     this.gvRecpEntry.OptionsBehavior.AllowIncrementalSearch = true;
     this.gvRecpEntry.OptionsBehavior.Editable = false;
     this.gvRecpEntry.OptionsCustomization.AllowFilter = false;
     this.gvRecpEntry.OptionsView.ShowGroupPanel = false;
     //
     // colEmployeeID
     //
     this.colEmployeeID.Caption = "EmployeeID";
     this.colEmployeeID.FieldName = "nEmployeeID";
     this.colEmployeeID.Name = "colEmployeeID";
     this.colEmployeeID.Visible = true;
     this.colEmployeeID.VisibleIndex = 0;
     this.colEmployeeID.Width = 90;
     //
     // colEmployeeName
     //
     this.colEmployeeName.Caption = "Employee Name";
     this.colEmployeeName.FieldName = "strEmployeeName";
     this.colEmployeeName.Name = "colEmployeeName";
     this.colEmployeeName.Visible = true;
     this.colEmployeeName.VisibleIndex = 1;
     this.colEmployeeName.Width = 209;
     //
     // lblOne_1
     //
     this.lblOne_1.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.lblOne_1.Appearance.ForeColor = System.Drawing.Color.MediumBlue;
     this.lblOne_1.Appearance.Options.UseFont = true;
     this.lblOne_1.Appearance.Options.UseForeColor = true;
     this.lblOne_1.Location = new System.Drawing.Point(8, 8);
     this.lblOne_1.Name = "lblOne_1";
     this.lblOne_1.Size = new System.Drawing.Size(138, 23);
     this.lblOne_1.TabIndex = 141;
     this.lblOne_1.Text = "Messages";
     this.lblOne_1.Click += new System.EventHandler(this.lblOne_1_Click);
     //
     // tabStaffTwo
     //
     this.tabStaffTwo.Appearance.Header.Font = new System.Drawing.Font("Tahoma", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.tabStaffTwo.Appearance.Header.Options.UseFont = true;
     this.tabStaffTwo.Controls.Add(this.groupService);
     this.tabStaffTwo.Controls.Add(this.lblTwo_1);
     this.tabStaffTwo.Controls.Add(this.lblTwo_2);
     this.tabStaffTwo.Controls.Add(this.groupSales);
     this.tabStaffTwo.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.tabStaffTwo.Name = "tabStaffTwo";
     this.tabStaffTwo.PageVisible = false;
     this.tabStaffTwo.Size = new System.Drawing.Size(1007, 612);
     this.tabStaffTwo.Text = "Commission";
     this.tabStaffTwo.VisibleChanged += new System.EventHandler(this.tabStaffCommision_VisibleChanged);
     //
     // groupService
     //
     this.groupService.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowOnly;
     this.groupService.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.groupService.Controls.Add(this.groupServiceEntry);
     this.groupService.Location = new System.Drawing.Point(0, 34);
     this.groupService.Name = "groupService";
     this.groupService.ShowCaption = false;
     this.groupService.Size = new System.Drawing.Size(1007, 584);
     this.groupService.TabIndex = 15;
     this.groupService.Text = "GroupControl3";
     //
     // groupServiceEntry
     //
     this.groupServiceEntry.Appearance.BackColor = System.Drawing.SystemColors.Control;
     this.groupServiceEntry.Appearance.Options.UseBackColor = true;
     this.groupServiceEntry.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowOnly;
     this.groupServiceEntry.Controls.Add(this.groupControl3);
     this.groupServiceEntry.Controls.Add(this.gctrService);
     this.groupServiceEntry.Location = new System.Drawing.Point(8, 0);
     this.groupServiceEntry.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.groupServiceEntry.LookAndFeel.UseDefaultLookAndFeel = false;
     this.groupServiceEntry.Name = "groupServiceEntry";
     this.groupServiceEntry.Size = new System.Drawing.Size(992, 576);
     this.groupServiceEntry.TabIndex = 1;
     this.groupServiceEntry.Text = "SERVICE";
     //
     // groupControl3
     //
     this.groupControl3.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowOnly;
     this.groupControl3.Controls.Add(this.luedtCommissionServiceBranch);
     this.groupControl3.Controls.Add(this.label30);
     this.groupControl3.Controls.Add(this.cbServiceYear);
     this.groupControl3.Controls.Add(this.label5);
     this.groupControl3.Controls.Add(this.label3);
     this.groupControl3.Controls.Add(this.label2);
     this.groupControl3.Controls.Add(this.cbServiceMonth);
     this.groupControl3.Controls.Add(this.cbServiceServiceType);
     this.groupControl3.Controls.Add(this.sbtnServiceInquiry);
     this.groupControl3.Location = new System.Drawing.Point(6, 24);
     this.groupControl3.Name = "groupControl3";
     this.groupControl3.Size = new System.Drawing.Size(730, 52);
     this.groupControl3.TabIndex = 0;
     this.groupControl3.Text = "Inquiry";
     //
     // luedtCommissionServiceBranch
     //
     this.luedtCommissionServiceBranch.Location = new System.Drawing.Point(258, 24);
     this.luedtCommissionServiceBranch.Name = "luedtCommissionServiceBranch";
     this.luedtCommissionServiceBranch.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.luedtCommissionServiceBranch.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     this.luedtCommissionServiceBranch.Size = new System.Drawing.Size(150, 20);
     this.luedtCommissionServiceBranch.TabIndex = 1;
     //
     // label30
     //
     this.label30.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label30.Location = new System.Drawing.Point(206, 24);
     this.label30.Name = "label30";
     this.label30.Size = new System.Drawing.Size(50, 20);
     this.label30.TabIndex = 18;
     this.label30.Text = "Branch:";
     //
     // cbServiceYear
     //
     this.cbServiceYear.EditValue = "";
     this.cbServiceYear.ImeMode = System.Windows.Forms.ImeMode.On;
     this.cbServiceYear.Location = new System.Drawing.Point(580, 24);
     this.cbServiceYear.Name = "cbServiceYear";
     this.cbServiceYear.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cbServiceYear.Properties.PopupSizeable = true;
     this.cbServiceYear.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
     this.cbServiceYear.Size = new System.Drawing.Size(64, 20);
     this.cbServiceYear.TabIndex = 3;
     //
     // label5
     //
     this.label5.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label5.Location = new System.Drawing.Point(542, 24);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(34, 20);
     this.label5.TabIndex = 15;
     this.label5.Text = "Year:";
     //
     // label3
     //
     this.label3.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label3.Location = new System.Drawing.Point(414, 24);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(42, 20);
     this.label3.TabIndex = 14;
     this.label3.Text = "Month:";
     //
     // label2
     //
     this.label2.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label2.Location = new System.Drawing.Point(8, 24);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(78, 20);
     this.label2.TabIndex = 13;
     this.label2.Text = "Service Type:";
     //
     // cbServiceMonth
     //
     this.cbServiceMonth.EditValue = "January";
     this.cbServiceMonth.ImeMode = System.Windows.Forms.ImeMode.On;
     this.cbServiceMonth.Location = new System.Drawing.Point(458, 24);
     this.cbServiceMonth.Name = "cbServiceMonth";
     this.cbServiceMonth.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cbServiceMonth.Properties.Items.AddRange(new object[] {
     "January",
     "February",
     "March",
     "April",
     "May",
     "June",
     "July",
     "August",
     "September",
     "October",
     "November",
     "December"});
     this.cbServiceMonth.Properties.PopupSizeable = true;
     this.cbServiceMonth.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
     this.cbServiceMonth.Size = new System.Drawing.Size(80, 20);
     this.cbServiceMonth.TabIndex = 2;
     //
     // cbServiceServiceType
     //
     this.cbServiceServiceType.EditValue = "PT Service";
     this.cbServiceServiceType.ImeMode = System.Windows.Forms.ImeMode.On;
     this.cbServiceServiceType.Location = new System.Drawing.Point(88, 24);
     this.cbServiceServiceType.Name = "cbServiceServiceType";
     this.cbServiceServiceType.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cbServiceServiceType.Properties.Items.AddRange(new object[] {
     "PT Service",
     "Spa Service"});
     this.cbServiceServiceType.Properties.PopupSizeable = true;
     this.cbServiceServiceType.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
     this.cbServiceServiceType.Size = new System.Drawing.Size(112, 20);
     this.cbServiceServiceType.TabIndex = 0;
     //
     // sbtnServiceInquiry
     //
     this.sbtnServiceInquiry.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.sbtnServiceInquiry.Appearance.Options.UseFont = true;
     this.sbtnServiceInquiry.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.sbtnServiceInquiry.Location = new System.Drawing.Point(648, 24);
     this.sbtnServiceInquiry.Name = "sbtnServiceInquiry";
     this.sbtnServiceInquiry.Size = new System.Drawing.Size(72, 20);
     this.sbtnServiceInquiry.TabIndex = 4;
     this.sbtnServiceInquiry.Text = "Inquiry";
     this.sbtnServiceInquiry.Click += new System.EventHandler(this.sbtnServiceInquiry_Click);
     //
     // gctrService
     //
     this.gctrService.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.gctrService.EmbeddedNavigator.Name = "";
     this.gctrService.Location = new System.Drawing.Point(2, 80);
     this.gctrService.LookAndFeel.UseDefaultLookAndFeel = false;
     this.gctrService.MainView = this.gvService;
     this.gctrService.Name = "gctrService";
     this.gctrService.Size = new System.Drawing.Size(988, 494);
     this.gctrService.TabIndex = 5;
     this.gctrService.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gvService});
     //
     // gvService
     //
     this.gvService.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colServicedtDate,
     this.colServicestrBranchCode,
     this.colServicestrMembershipID,
     this.colServicestrServiceCode,
     this.colServicestrCommission});
     this.gvService.GridControl = this.gctrService;
     this.gvService.Name = "gvService";
     this.gvService.OptionsBehavior.AllowIncrementalSearch = true;
     this.gvService.OptionsBehavior.Editable = false;
     this.gvService.OptionsCustomization.AllowFilter = false;
     this.gvService.OptionsView.ShowFooter = true;
     this.gvService.OptionsView.ShowGroupPanel = false;
     this.gvService.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.colServicedtDate, DevExpress.Data.ColumnSortOrder.Ascending)});
     //
     // colServicedtDate
     //
     this.colServicedtDate.Caption = "Date";
     this.colServicedtDate.DisplayFormat.FormatString = "dd/MM/yyyy";
     this.colServicedtDate.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.colServicedtDate.FieldName = "dtDate";
     this.colServicedtDate.Name = "colServicedtDate";
     this.colServicedtDate.Visible = true;
     this.colServicedtDate.VisibleIndex = 0;
     //
     // colServicestrBranchCode
     //
     this.colServicestrBranchCode.Caption = "Branch";
     this.colServicestrBranchCode.FieldName = "strBranchCode";
     this.colServicestrBranchCode.Name = "colServicestrBranchCode";
     this.colServicestrBranchCode.Visible = true;
     this.colServicestrBranchCode.VisibleIndex = 1;
     //
     // colServicestrMembershipID
     //
     this.colServicestrMembershipID.Caption = "Membership ID";
     this.colServicestrMembershipID.FieldName = "strMembershipID";
     this.colServicestrMembershipID.Name = "colServicestrMembershipID";
     this.colServicestrMembershipID.Visible = true;
     this.colServicestrMembershipID.VisibleIndex = 2;
     //
     // colServicestrServiceCode
     //
     this.colServicestrServiceCode.Caption = "Transaction Code";
     this.colServicestrServiceCode.FieldName = "strServiceCode";
     this.colServicestrServiceCode.Name = "colServicestrServiceCode";
     this.colServicestrServiceCode.Visible = true;
     this.colServicestrServiceCode.VisibleIndex = 3;
     //
     // colServicestrCommission
     //
     this.colServicestrCommission.Caption = "Commission";
     this.colServicestrCommission.FieldName = "mCommission";
     this.colServicestrCommission.Name = "colServicestrCommission";
     this.colServicestrCommission.SummaryItem.SummaryType = DevExpress.Data.SummaryItemType.Sum;
     this.colServicestrCommission.Visible = true;
     this.colServicestrCommission.VisibleIndex = 4;
     //
     // lblTwo_1
     //
     this.lblTwo_1.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.lblTwo_1.Appearance.ForeColor = System.Drawing.Color.MediumBlue;
     this.lblTwo_1.Appearance.Options.UseFont = true;
     this.lblTwo_1.Appearance.Options.UseForeColor = true;
     this.lblTwo_1.Location = new System.Drawing.Point(8, 8);
     this.lblTwo_1.Name = "lblTwo_1";
     this.lblTwo_1.Size = new System.Drawing.Size(138, 23);
     this.lblTwo_1.TabIndex = 142;
     this.lblTwo_1.Text = "Sales";
     this.lblTwo_1.Click += new System.EventHandler(this.lblTwo_1_Click);
     //
     // lblTwo_2
     //
     this.lblTwo_2.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.lblTwo_2.Appearance.ForeColor = System.Drawing.Color.MediumBlue;
     this.lblTwo_2.Appearance.Options.UseFont = true;
     this.lblTwo_2.Appearance.Options.UseForeColor = true;
     this.lblTwo_2.Location = new System.Drawing.Point(160, 8);
     this.lblTwo_2.Name = "lblTwo_2";
     this.lblTwo_2.Size = new System.Drawing.Size(138, 23);
     this.lblTwo_2.TabIndex = 143;
     this.lblTwo_2.Text = "Service";
     this.lblTwo_2.Click += new System.EventHandler(this.lblTwo_2_Click);
     //
     // groupSales
     //
     this.groupSales.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowOnly;
     this.groupSales.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.groupSales.Controls.Add(this.groupSalesEntry);
     this.groupSales.Location = new System.Drawing.Point(0, 34);
     this.groupSales.Name = "groupSales";
     this.groupSales.ShowCaption = false;
     this.groupSales.Size = new System.Drawing.Size(1007, 584);
     this.groupSales.TabIndex = 14;
     this.groupSales.Text = "GroupControl3";
     //
     // groupSalesEntry
     //
     this.groupSalesEntry.Appearance.BackColor = System.Drawing.SystemColors.Control;
     this.groupSalesEntry.Appearance.Options.UseBackColor = true;
     this.groupSalesEntry.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowOnly;
     this.groupSalesEntry.Controls.Add(this.groupControl7);
     this.groupSalesEntry.Controls.Add(this.gctrSales);
     this.groupSalesEntry.Location = new System.Drawing.Point(8, 0);
     this.groupSalesEntry.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.groupSalesEntry.LookAndFeel.UseDefaultLookAndFeel = false;
     this.groupSalesEntry.Name = "groupSalesEntry";
     this.groupSalesEntry.Size = new System.Drawing.Size(992, 576);
     this.groupSalesEntry.TabIndex = 1;
     this.groupSalesEntry.Text = "SALES";
     //
     // groupControl7
     //
     this.groupControl7.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowOnly;
     this.groupControl7.Controls.Add(this.luedtSalesBranchCode);
     this.groupControl7.Controls.Add(this.label16);
     this.groupControl7.Controls.Add(this.cbSalesYear);
     this.groupControl7.Controls.Add(this.label6);
     this.groupControl7.Controls.Add(this.label7);
     this.groupControl7.Controls.Add(this.label8);
     this.groupControl7.Controls.Add(this.cbSalesMonth);
     this.groupControl7.Controls.Add(this.sbtnSalesInquiry);
     this.groupControl7.Controls.Add(this.cbSalesType);
     this.groupControl7.Location = new System.Drawing.Point(6, 24);
     this.groupControl7.Name = "groupControl7";
     this.groupControl7.Size = new System.Drawing.Size(772, 52);
     this.groupControl7.TabIndex = 0;
     this.groupControl7.Text = "Inquiry";
     //
     // luedtSalesBranchCode
     //
     this.luedtSalesBranchCode.Location = new System.Drawing.Point(304, 24);
     this.luedtSalesBranchCode.Name = "luedtSalesBranchCode";
     this.luedtSalesBranchCode.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.luedtSalesBranchCode.Size = new System.Drawing.Size(150, 20);
     this.luedtSalesBranchCode.TabIndex = 1;
     //
     // label16
     //
     this.label16.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label16.Location = new System.Drawing.Point(252, 24);
     this.label16.Name = "label16";
     this.label16.Size = new System.Drawing.Size(50, 20);
     this.label16.TabIndex = 16;
     this.label16.Text = "Branch:";
     //
     // cbSalesYear
     //
     this.cbSalesYear.EditValue = "";
     this.cbSalesYear.ImeMode = System.Windows.Forms.ImeMode.On;
     this.cbSalesYear.Location = new System.Drawing.Point(624, 24);
     this.cbSalesYear.Name = "cbSalesYear";
     this.cbSalesYear.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cbSalesYear.Properties.PopupSizeable = true;
     this.cbSalesYear.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
     this.cbSalesYear.Size = new System.Drawing.Size(64, 20);
     this.cbSalesYear.TabIndex = 3;
     //
     // label6
     //
     this.label6.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label6.Location = new System.Drawing.Point(586, 24);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(34, 20);
     this.label6.TabIndex = 15;
     this.label6.Text = "Year:";
     //
     // label7
     //
     this.label7.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label7.Location = new System.Drawing.Point(458, 24);
     this.label7.Name = "label7";
     this.label7.Size = new System.Drawing.Size(42, 20);
     this.label7.TabIndex = 14;
     this.label7.Text = "Month:";
     //
     // label8
     //
     this.label8.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label8.Location = new System.Drawing.Point(8, 24);
     this.label8.Name = "label8";
     this.label8.Size = new System.Drawing.Size(70, 20);
     this.label8.TabIndex = 13;
     this.label8.Text = "Sales Type:";
     //
     // cbSalesMonth
     //
     this.cbSalesMonth.EditValue = "January";
     this.cbSalesMonth.ImeMode = System.Windows.Forms.ImeMode.On;
     this.cbSalesMonth.Location = new System.Drawing.Point(502, 24);
     this.cbSalesMonth.Name = "cbSalesMonth";
     this.cbSalesMonth.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cbSalesMonth.Properties.Items.AddRange(new object[] {
     "January",
     "February",
     "March",
     "April",
     "May",
     "June",
     "July",
     "August",
     "September",
     "October",
     "November",
     "December"});
     this.cbSalesMonth.Properties.PopupSizeable = true;
     this.cbSalesMonth.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
     this.cbSalesMonth.Size = new System.Drawing.Size(80, 20);
     this.cbSalesMonth.TabIndex = 2;
     //
     // sbtnSalesInquiry
     //
     this.sbtnSalesInquiry.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.sbtnSalesInquiry.Appearance.Options.UseFont = true;
     this.sbtnSalesInquiry.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.sbtnSalesInquiry.Location = new System.Drawing.Point(692, 24);
     this.sbtnSalesInquiry.Name = "sbtnSalesInquiry";
     this.sbtnSalesInquiry.Size = new System.Drawing.Size(72, 20);
     this.sbtnSalesInquiry.TabIndex = 4;
     this.sbtnSalesInquiry.Text = "Inquiry";
     this.sbtnSalesInquiry.Click += new System.EventHandler(this.sbtnSalesInquiry_Click);
     //
     // cbSalesType
     //
     this.cbSalesType.EditValue = "Fitness Package Sales";
     this.cbSalesType.ImeMode = System.Windows.Forms.ImeMode.On;
     this.cbSalesType.Location = new System.Drawing.Point(80, 24);
     this.cbSalesType.Name = "cbSalesType";
     this.cbSalesType.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cbSalesType.Properties.Items.AddRange(new object[] {
     "Fitness Product Sales",
     "Fitness Package Sales",
     "Spa Product Sales",
     "Spa Package Sales",
     "Personal Trainer Package Sales",
     "IPL Package Sales"});
     this.cbSalesType.Properties.PopupSizeable = true;
     this.cbSalesType.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
     this.cbSalesType.Size = new System.Drawing.Size(168, 20);
     this.cbSalesType.TabIndex = 0;
     //
     // gctrSales
     //
     this.gctrSales.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.gctrSales.EmbeddedNavigator.Name = "";
     this.gctrSales.Location = new System.Drawing.Point(2, 80);
     this.gctrSales.LookAndFeel.UseDefaultLookAndFeel = false;
     this.gctrSales.MainView = this.gvSales;
     this.gctrSales.Name = "gctrSales";
     this.gctrSales.Size = new System.Drawing.Size(988, 494);
     this.gctrSales.TabIndex = 5;
     this.gctrSales.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gvSales});
     //
     // gvSales
     //
     this.gvSales.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colSalesDate,
     this.colSalesReceipt,
     this.colSalesMembershipID,
     this.colSalesNettAmount});
     this.gvSales.GridControl = this.gctrSales;
     this.gvSales.Name = "gvSales";
     this.gvSales.OptionsBehavior.AllowIncrementalSearch = true;
     this.gvSales.OptionsBehavior.Editable = false;
     this.gvSales.OptionsCustomization.AllowFilter = false;
     this.gvSales.OptionsView.ShowFooter = true;
     this.gvSales.OptionsView.ShowGroupPanel = false;
     this.gvSales.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.colSalesDate, DevExpress.Data.ColumnSortOrder.Ascending)});
     //
     // colSalesDate
     //
     this.colSalesDate.Caption = "Date";
     this.colSalesDate.DisplayFormat.FormatString = "dd/MM/yyyy";
     this.colSalesDate.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.colSalesDate.FieldName = "dtDate";
     this.colSalesDate.Name = "colSalesDate";
     this.colSalesDate.Visible = true;
     this.colSalesDate.VisibleIndex = 0;
     this.colSalesDate.Width = 99;
     //
     // colSalesReceipt
     //
     this.colSalesReceipt.Caption = "Receipt No";
     this.colSalesReceipt.FieldName = "strReceiptNo";
     this.colSalesReceipt.Name = "colSalesReceipt";
     this.colSalesReceipt.Visible = true;
     this.colSalesReceipt.VisibleIndex = 1;
     this.colSalesReceipt.Width = 166;
     //
     // colSalesMembershipID
     //
     this.colSalesMembershipID.Caption = "Membership ID";
     this.colSalesMembershipID.FieldName = "strMembershipID";
     this.colSalesMembershipID.Name = "colSalesMembershipID";
     this.colSalesMembershipID.Visible = true;
     this.colSalesMembershipID.VisibleIndex = 2;
     this.colSalesMembershipID.Width = 294;
     //
     // colSalesNettAmount
     //
     this.colSalesNettAmount.Caption = "Nett Amount";
     this.colSalesNettAmount.FieldName = "mNettAmount";
     this.colSalesNettAmount.Name = "colSalesNettAmount";
     this.colSalesNettAmount.SummaryItem.SummaryType = DevExpress.Data.SummaryItemType.Sum;
     this.colSalesNettAmount.Visible = true;
     this.colSalesNettAmount.VisibleIndex = 3;
     this.colSalesNettAmount.Width = 107;
     //
     // tabStaffThree
     //
     this.tabStaffThree.Appearance.Header.Font = new System.Drawing.Font("Tahoma", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.tabStaffThree.Appearance.Header.Options.UseFont = true;
     this.tabStaffThree.Controls.Add(this.lblThree_3);
     this.tabStaffThree.Controls.Add(this.lblThree_1);
     this.tabStaffThree.Controls.Add(this.lblThree_2);
     this.tabStaffThree.Controls.Add(this.groupTimesheet);
     this.tabStaffThree.Controls.Add(this.groupOvertime);
     this.tabStaffThree.Controls.Add(this.groupLateness);
     this.tabStaffThree.Name = "tabStaffThree";
     this.tabStaffThree.PageVisible = false;
     this.tabStaffThree.Size = new System.Drawing.Size(1007, 612);
     this.tabStaffThree.Text = "Timesheet";
     this.tabStaffThree.VisibleChanged += new System.EventHandler(this.tabStaffTimesheet_VisibleChanged);
     //
     // lblThree_3
     //
     this.lblThree_3.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.lblThree_3.Appearance.ForeColor = System.Drawing.Color.MediumBlue;
     this.lblThree_3.Appearance.Options.UseFont = true;
     this.lblThree_3.Appearance.Options.UseForeColor = true;
     this.lblThree_3.Location = new System.Drawing.Point(296, 8);
     this.lblThree_3.Name = "lblThree_3";
     this.lblThree_3.Size = new System.Drawing.Size(138, 23);
     this.lblThree_3.TabIndex = 146;
     this.lblThree_3.Text = "Lateness";
     this.lblThree_3.Click += new System.EventHandler(this.lblThree_3_Click);
     //
     // lblThree_1
     //
     this.lblThree_1.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.lblThree_1.Appearance.ForeColor = System.Drawing.Color.MediumBlue;
     this.lblThree_1.Appearance.Options.UseFont = true;
     this.lblThree_1.Appearance.Options.UseForeColor = true;
     this.lblThree_1.Location = new System.Drawing.Point(8, 8);
     this.lblThree_1.Name = "lblThree_1";
     this.lblThree_1.Size = new System.Drawing.Size(138, 23);
     this.lblThree_1.TabIndex = 144;
     this.lblThree_1.Text = "Timesheet";
     this.lblThree_1.Click += new System.EventHandler(this.lblThree_1_Click);
     //
     // lblThree_2
     //
     this.lblThree_2.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.lblThree_2.Appearance.ForeColor = System.Drawing.Color.MediumBlue;
     this.lblThree_2.Appearance.Options.UseFont = true;
     this.lblThree_2.Appearance.Options.UseForeColor = true;
     this.lblThree_2.Location = new System.Drawing.Point(152, 8);
     this.lblThree_2.Name = "lblThree_2";
     this.lblThree_2.Size = new System.Drawing.Size(138, 23);
     this.lblThree_2.TabIndex = 145;
     this.lblThree_2.Text = "Overtime";
     this.lblThree_2.Click += new System.EventHandler(this.lblThree_2_Click);
     //
     // groupTimesheet
     //
     this.groupTimesheet.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowOnly;
     this.groupTimesheet.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.groupTimesheet.Controls.Add(this.groupTimesheetEntry);
     this.groupTimesheet.Location = new System.Drawing.Point(0, 32);
     this.groupTimesheet.Name = "groupTimesheet";
     this.groupTimesheet.ShowCaption = false;
     this.groupTimesheet.Size = new System.Drawing.Size(1007, 576);
     this.groupTimesheet.TabIndex = 10;
     this.groupTimesheet.Text = "GroupControl1";
     //
     // groupTimesheetEntry
     //
     this.groupTimesheetEntry.Appearance.BackColor = System.Drawing.SystemColors.Control;
     this.groupTimesheetEntry.Appearance.Options.UseBackColor = true;
     this.groupTimesheetEntry.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowOnly;
     this.groupTimesheetEntry.Controls.Add(this.groupControl9);
     this.groupTimesheetEntry.Controls.Add(this.gridctrTimesheet);
     this.groupTimesheetEntry.Location = new System.Drawing.Point(8, 0);
     this.groupTimesheetEntry.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.groupTimesheetEntry.LookAndFeel.UseDefaultLookAndFeel = false;
     this.groupTimesheetEntry.Name = "groupTimesheetEntry";
     this.groupTimesheetEntry.Size = new System.Drawing.Size(992, 568);
     this.groupTimesheetEntry.TabIndex = 1;
     this.groupTimesheetEntry.Text = "TIMESHEET";
     //
     // groupControl9
     //
     this.groupControl9.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowOnly;
     this.groupControl9.Controls.Add(this.cbTimesheetYear);
     this.groupControl9.Controls.Add(this.label1);
     this.groupControl9.Controls.Add(this.label11);
     this.groupControl9.Controls.Add(this.cbTimesheetMonth);
     this.groupControl9.Controls.Add(this.sbtnTimesheetInquiry);
     this.groupControl9.Location = new System.Drawing.Point(6, 22);
     this.groupControl9.Name = "groupControl9";
     this.groupControl9.Size = new System.Drawing.Size(328, 52);
     this.groupControl9.TabIndex = 0;
     this.groupControl9.Text = "Inquiry";
     //
     // cbTimesheetYear
     //
     this.cbTimesheetYear.EditValue = "";
     this.cbTimesheetYear.ImeMode = System.Windows.Forms.ImeMode.On;
     this.cbTimesheetYear.Location = new System.Drawing.Point(178, 24);
     this.cbTimesheetYear.Name = "cbTimesheetYear";
     this.cbTimesheetYear.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cbTimesheetYear.Properties.PopupSizeable = true;
     this.cbTimesheetYear.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
     this.cbTimesheetYear.Size = new System.Drawing.Size(64, 20);
     this.cbTimesheetYear.TabIndex = 2;
     //
     // label1
     //
     this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label1.Location = new System.Drawing.Point(140, 24);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(34, 20);
     this.label1.TabIndex = 15;
     this.label1.Text = "Year:";
     //
     // label11
     //
     this.label11.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label11.Location = new System.Drawing.Point(12, 24);
     this.label11.Name = "label11";
     this.label11.Size = new System.Drawing.Size(42, 20);
     this.label11.TabIndex = 0;
     this.label11.Text = "Month:";
     //
     // cbTimesheetMonth
     //
     this.cbTimesheetMonth.EditValue = "January";
     this.cbTimesheetMonth.ImeMode = System.Windows.Forms.ImeMode.On;
     this.cbTimesheetMonth.Location = new System.Drawing.Point(56, 24);
     this.cbTimesheetMonth.Name = "cbTimesheetMonth";
     this.cbTimesheetMonth.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cbTimesheetMonth.Properties.Items.AddRange(new object[] {
     "January",
     "February",
     "March",
     "April",
     "May",
     "June",
     "July",
     "August",
     "September",
     "October",
     "November",
     "December"});
     this.cbTimesheetMonth.Properties.PopupSizeable = true;
     this.cbTimesheetMonth.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
     this.cbTimesheetMonth.Size = new System.Drawing.Size(80, 20);
     this.cbTimesheetMonth.TabIndex = 1;
     //
     // sbtnTimesheetInquiry
     //
     this.sbtnTimesheetInquiry.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.sbtnTimesheetInquiry.Appearance.Options.UseFont = true;
     this.sbtnTimesheetInquiry.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.sbtnTimesheetInquiry.Location = new System.Drawing.Point(246, 24);
     this.sbtnTimesheetInquiry.Name = "sbtnTimesheetInquiry";
     this.sbtnTimesheetInquiry.Size = new System.Drawing.Size(72, 20);
     this.sbtnTimesheetInquiry.TabIndex = 3;
     this.sbtnTimesheetInquiry.Text = "Inquiry";
     this.sbtnTimesheetInquiry.Click += new System.EventHandler(this.sbtnTimesheetInquiry_Click);
     //
     // gridctrTimesheet
     //
     this.gridctrTimesheet.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.gridctrTimesheet.EmbeddedNavigator.Name = "";
     this.gridctrTimesheet.Location = new System.Drawing.Point(2, 76);
     this.gridctrTimesheet.LookAndFeel.UseDefaultLookAndFeel = false;
     this.gridctrTimesheet.MainView = this.gvTimesheet;
     this.gridctrTimesheet.Name = "gridctrTimesheet";
     this.gridctrTimesheet.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemCheckEdit2});
     this.gridctrTimesheet.Size = new System.Drawing.Size(988, 490);
     this.gridctrTimesheet.TabIndex = 1;
     this.gridctrTimesheet.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gvTimesheet});
     //
     // gvTimesheet
     //
     this.gvTimesheet.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colTimesheetDate,
     this.colTimesheetRosterIn,
     this.colTimesheetRosterOut,
     this.colTimesheetBranchFirstTimeIn,
     this.colTimesheetBranchLastTimeOut,
     this.colTimesheetFirstTimeIn,
     this.colTimesheetLastTimeOut,
     this.colTimesheetManagerNameIn,
     this.colTimesheetManagerNameOut,
     this.colTimesheetLateness,
     this.colTimesheetTotalLateness});
     this.gvTimesheet.GridControl = this.gridctrTimesheet;
     this.gvTimesheet.Name = "gvTimesheet";
     this.gvTimesheet.OptionsBehavior.AllowIncrementalSearch = true;
     this.gvTimesheet.OptionsBehavior.Editable = false;
     this.gvTimesheet.OptionsCustomization.AllowFilter = false;
     this.gvTimesheet.OptionsView.ShowGroupPanel = false;
     this.gvTimesheet.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.colTimesheetDate, DevExpress.Data.ColumnSortOrder.Descending)});
     this.gvTimesheet.DoubleClick += new System.EventHandler(this.gvTimesheet_DoubleClick);
     this.gvTimesheet.RowStyle += new DevExpress.XtraGrid.Views.Grid.RowStyleEventHandler(this.gvTimesheet_RowStyle);
     //
     // colTimesheetDate
     //
     this.colTimesheetDate.Caption = "Date";
     this.colTimesheetDate.DisplayFormat.FormatString = "dd/MM/yyyy";
     this.colTimesheetDate.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.colTimesheetDate.FieldName = "dtDate";
     this.colTimesheetDate.Name = "colTimesheetDate";
     this.colTimesheetDate.Visible = true;
     this.colTimesheetDate.VisibleIndex = 0;
     this.colTimesheetDate.Width = 119;
     //
     // colTimesheetRosterIn
     //
     this.colTimesheetRosterIn.Caption = "Roster In";
     this.colTimesheetRosterIn.DisplayFormat.FormatString = "hh:mm tt";
     this.colTimesheetRosterIn.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.colTimesheetRosterIn.FieldName = "Expected Start Time";
     this.colTimesheetRosterIn.Name = "colTimesheetRosterIn";
     this.colTimesheetRosterIn.Visible = true;
     this.colTimesheetRosterIn.VisibleIndex = 1;
     this.colTimesheetRosterIn.Width = 89;
     //
     // colTimesheetRosterOut
     //
     this.colTimesheetRosterOut.Caption = "Roster Out";
     this.colTimesheetRosterOut.DisplayFormat.FormatString = "hh:mm tt";
     this.colTimesheetRosterOut.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.colTimesheetRosterOut.FieldName = "Expected End Time";
     this.colTimesheetRosterOut.Name = "colTimesheetRosterOut";
     this.colTimesheetRosterOut.Visible = true;
     this.colTimesheetRosterOut.VisibleIndex = 2;
     this.colTimesheetRosterOut.Width = 79;
     //
     // colTimesheetBranchFirstTimeIn
     //
     this.colTimesheetBranchFirstTimeIn.Caption = "Branch In";
     this.colTimesheetBranchFirstTimeIn.FieldName = "strBranchCodeIn";
     this.colTimesheetBranchFirstTimeIn.Name = "colTimesheetBranchFirstTimeIn";
     this.colTimesheetBranchFirstTimeIn.Visible = true;
     this.colTimesheetBranchFirstTimeIn.VisibleIndex = 3;
     this.colTimesheetBranchFirstTimeIn.Width = 71;
     //
     // colTimesheetBranchLastTimeOut
     //
     this.colTimesheetBranchLastTimeOut.Caption = "Branch Out";
     this.colTimesheetBranchLastTimeOut.FieldName = "strBranchCodeOut";
     this.colTimesheetBranchLastTimeOut.Name = "colTimesheetBranchLastTimeOut";
     this.colTimesheetBranchLastTimeOut.Visible = true;
     this.colTimesheetBranchLastTimeOut.VisibleIndex = 5;
     this.colTimesheetBranchLastTimeOut.Width = 66;
     //
     // colTimesheetFirstTimeIn
     //
     this.colTimesheetFirstTimeIn.Caption = "Time (In)";
     this.colTimesheetFirstTimeIn.DisplayFormat.FormatString = "hh:mm tt";
     this.colTimesheetFirstTimeIn.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.colTimesheetFirstTimeIn.FieldName = "First Time In";
     this.colTimesheetFirstTimeIn.Name = "colTimesheetFirstTimeIn";
     this.colTimesheetFirstTimeIn.Visible = true;
     this.colTimesheetFirstTimeIn.VisibleIndex = 4;
     this.colTimesheetFirstTimeIn.Width = 83;
     //
     // colTimesheetLastTimeOut
     //
     this.colTimesheetLastTimeOut.Caption = "Time (Out)";
     this.colTimesheetLastTimeOut.DisplayFormat.FormatString = "hh:mm tt";
     this.colTimesheetLastTimeOut.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.colTimesheetLastTimeOut.FieldName = "Last Time Out";
     this.colTimesheetLastTimeOut.Name = "colTimesheetLastTimeOut";
     this.colTimesheetLastTimeOut.Visible = true;
     this.colTimesheetLastTimeOut.VisibleIndex = 6;
     this.colTimesheetLastTimeOut.Width = 84;
     //
     // colTimesheetManagerNameIn
     //
     this.colTimesheetManagerNameIn.Caption = "Edit (In)";
     this.colTimesheetManagerNameIn.FieldName = "strManagerNameIn";
     this.colTimesheetManagerNameIn.Name = "colTimesheetManagerNameIn";
     this.colTimesheetManagerNameIn.Visible = true;
     this.colTimesheetManagerNameIn.VisibleIndex = 7;
     this.colTimesheetManagerNameIn.Width = 120;
     //
     // colTimesheetManagerNameOut
     //
     this.colTimesheetManagerNameOut.Caption = "Edit (Out)";
     this.colTimesheetManagerNameOut.FieldName = "strManagerNameOut";
     this.colTimesheetManagerNameOut.Name = "colTimesheetManagerNameOut";
     this.colTimesheetManagerNameOut.Visible = true;
     this.colTimesheetManagerNameOut.VisibleIndex = 8;
     this.colTimesheetManagerNameOut.Width = 122;
     //
     // colTimesheetLateness
     //
     this.colTimesheetLateness.Caption = "Lateness";
     this.colTimesheetLateness.ColumnEdit = this.repositoryItemCheckEdit2;
     this.colTimesheetLateness.FieldName = "fLateness";
     this.colTimesheetLateness.Name = "colTimesheetLateness";
     this.colTimesheetLateness.Visible = true;
     this.colTimesheetLateness.VisibleIndex = 9;
     this.colTimesheetLateness.Width = 54;
     //
     // repositoryItemCheckEdit2
     //
     this.repositoryItemCheckEdit2.AutoHeight = false;
     this.repositoryItemCheckEdit2.Name = "repositoryItemCheckEdit2";
     this.repositoryItemCheckEdit2.NullStyle = DevExpress.XtraEditors.Controls.StyleIndeterminate.Unchecked;
     //
     // colTimesheetTotalLateness
     //
     this.colTimesheetTotalLateness.Caption = "Total Lateness";
     this.colTimesheetTotalLateness.DisplayFormat.FormatString = "HH:mm";
     this.colTimesheetTotalLateness.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.colTimesheetTotalLateness.FieldName = "dtLateness";
     this.colTimesheetTotalLateness.Name = "colTimesheetTotalLateness";
     this.colTimesheetTotalLateness.Visible = true;
     this.colTimesheetTotalLateness.VisibleIndex = 10;
     this.colTimesheetTotalLateness.Width = 80;
     //
     // groupOvertime
     //
     this.groupOvertime.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowOnly;
     this.groupOvertime.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.groupOvertime.Controls.Add(this.groupControl15);
     this.groupOvertime.Location = new System.Drawing.Point(0, 32);
     this.groupOvertime.Name = "groupOvertime";
     this.groupOvertime.ShowCaption = false;
     this.groupOvertime.Size = new System.Drawing.Size(1007, 576);
     this.groupOvertime.TabIndex = 15;
     this.groupOvertime.Text = "GroupControl1";
     this.groupOvertime.Visible = false;
     //
     // groupControl15
     //
     this.groupControl15.Appearance.BackColor = System.Drawing.SystemColors.Control;
     this.groupControl15.Appearance.Options.UseBackColor = true;
     this.groupControl15.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowOnly;
     this.groupControl15.Controls.Add(this.sbtnOvertimeDelete);
     this.groupControl15.Controls.Add(this.groupControl16);
     this.groupControl15.Controls.Add(this.sbtnApplyOvertime);
     this.groupControl15.Controls.Add(this.gridctrOvertime);
     this.groupControl15.Location = new System.Drawing.Point(8, 0);
     this.groupControl15.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.groupControl15.LookAndFeel.UseDefaultLookAndFeel = false;
     this.groupControl15.Name = "groupControl15";
     this.groupControl15.Size = new System.Drawing.Size(992, 574);
     this.groupControl15.TabIndex = 1;
     this.groupControl15.Text = "OVERTIME";
     //
     // sbtnOvertimeDelete
     //
     this.sbtnOvertimeDelete.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.sbtnOvertimeDelete.Appearance.Options.UseFont = true;
     this.sbtnOvertimeDelete.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.sbtnOvertimeDelete.Location = new System.Drawing.Point(452, 48);
     this.sbtnOvertimeDelete.Name = "sbtnOvertimeDelete";
     this.sbtnOvertimeDelete.Size = new System.Drawing.Size(104, 20);
     this.sbtnOvertimeDelete.TabIndex = 2;
     this.sbtnOvertimeDelete.Text = "Cancel Overtime";
     this.sbtnOvertimeDelete.Click += new System.EventHandler(this.sbtnOvertimeDelete_Click);
     //
     // groupControl16
     //
     this.groupControl16.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowOnly;
     this.groupControl16.Controls.Add(this.cbOvertimeYear);
     this.groupControl16.Controls.Add(this.label14);
     this.groupControl16.Controls.Add(this.label15);
     this.groupControl16.Controls.Add(this.cbOvertimeMonth);
     this.groupControl16.Controls.Add(this.sbtnOvertimeInquiry);
     this.groupControl16.Location = new System.Drawing.Point(6, 24);
     this.groupControl16.Name = "groupControl16";
     this.groupControl16.Size = new System.Drawing.Size(328, 52);
     this.groupControl16.TabIndex = 0;
     this.groupControl16.Text = "Inquiry";
     //
     // cbOvertimeYear
     //
     this.cbOvertimeYear.EditValue = "";
     this.cbOvertimeYear.ImeMode = System.Windows.Forms.ImeMode.On;
     this.cbOvertimeYear.Location = new System.Drawing.Point(178, 24);
     this.cbOvertimeYear.Name = "cbOvertimeYear";
     this.cbOvertimeYear.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cbOvertimeYear.Properties.PopupSizeable = true;
     this.cbOvertimeYear.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
     this.cbOvertimeYear.Size = new System.Drawing.Size(64, 20);
     this.cbOvertimeYear.TabIndex = 1;
     //
     // label14
     //
     this.label14.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label14.Location = new System.Drawing.Point(140, 24);
     this.label14.Name = "label14";
     this.label14.Size = new System.Drawing.Size(34, 20);
     this.label14.TabIndex = 15;
     this.label14.Text = "Year:";
     //
     // label15
     //
     this.label15.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label15.Location = new System.Drawing.Point(12, 24);
     this.label15.Name = "label15";
     this.label15.Size = new System.Drawing.Size(42, 20);
     this.label15.TabIndex = 14;
     this.label15.Text = "Month:";
     //
     // cbOvertimeMonth
     //
     this.cbOvertimeMonth.EditValue = "January";
     this.cbOvertimeMonth.ImeMode = System.Windows.Forms.ImeMode.On;
     this.cbOvertimeMonth.Location = new System.Drawing.Point(56, 24);
     this.cbOvertimeMonth.Name = "cbOvertimeMonth";
     this.cbOvertimeMonth.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cbOvertimeMonth.Properties.Items.AddRange(new object[] {
     "January",
     "February",
     "March",
     "April",
     "May",
     "June",
     "July",
     "August",
     "September",
     "October",
     "November",
     "December"});
     this.cbOvertimeMonth.Properties.PopupSizeable = true;
     this.cbOvertimeMonth.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
     this.cbOvertimeMonth.Size = new System.Drawing.Size(80, 20);
     this.cbOvertimeMonth.TabIndex = 0;
     //
     // sbtnOvertimeInquiry
     //
     this.sbtnOvertimeInquiry.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.sbtnOvertimeInquiry.Appearance.Options.UseFont = true;
     this.sbtnOvertimeInquiry.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.sbtnOvertimeInquiry.Location = new System.Drawing.Point(246, 24);
     this.sbtnOvertimeInquiry.Name = "sbtnOvertimeInquiry";
     this.sbtnOvertimeInquiry.Size = new System.Drawing.Size(72, 20);
     this.sbtnOvertimeInquiry.TabIndex = 2;
     this.sbtnOvertimeInquiry.Text = "Inquiry";
     this.sbtnOvertimeInquiry.Click += new System.EventHandler(this.sbtnOvertimeInquiry_Click);
     //
     // sbtnApplyOvertime
     //
     this.sbtnApplyOvertime.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.sbtnApplyOvertime.Appearance.Options.UseFont = true;
     this.sbtnApplyOvertime.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.sbtnApplyOvertime.Location = new System.Drawing.Point(340, 48);
     this.sbtnApplyOvertime.Name = "sbtnApplyOvertime";
     this.sbtnApplyOvertime.Size = new System.Drawing.Size(104, 20);
     this.sbtnApplyOvertime.TabIndex = 1;
     this.sbtnApplyOvertime.Text = "Apply Overtime";
     this.sbtnApplyOvertime.Click += new System.EventHandler(this.sbtnApplyOvertime_Click);
     //
     // gridctrOvertime
     //
     this.gridctrOvertime.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.gridctrOvertime.EmbeddedNavigator.Name = "";
     this.gridctrOvertime.Location = new System.Drawing.Point(2, 80);
     this.gridctrOvertime.LookAndFeel.UseDefaultLookAndFeel = false;
     this.gridctrOvertime.MainView = this.gvOvertime;
     this.gridctrOvertime.Name = "gridctrOvertime";
     this.gridctrOvertime.Size = new System.Drawing.Size(988, 492);
     this.gridctrOvertime.TabIndex = 3;
     this.gridctrOvertime.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gvOvertime});
     //
     // gvOvertime
     //
     this.gvOvertime.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colOvertimeDate,
     this.colOvertimeHours,
     this.colOvertimeReason,
     this.colOvertimeCharging,
     this.colOvertimeManager,
     this.colOvertimeApprovingManagerID,
     this.colOvertimeStatus});
     this.gvOvertime.GridControl = this.gridctrOvertime;
     this.gvOvertime.Name = "gvOvertime";
     this.gvOvertime.OptionsBehavior.AllowIncrementalSearch = true;
     this.gvOvertime.OptionsBehavior.Editable = false;
     this.gvOvertime.OptionsCustomization.AllowFilter = false;
     this.gvOvertime.OptionsView.ShowGroupPanel = false;
     this.gvOvertime.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.colOvertimeDate, DevExpress.Data.ColumnSortOrder.Descending)});
     //
     // colOvertimeDate
     //
     this.colOvertimeDate.Caption = "Date";
     this.colOvertimeDate.DisplayFormat.FormatString = "dd/MM/yyyy";
     this.colOvertimeDate.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.colOvertimeDate.FieldName = "dtDate";
     this.colOvertimeDate.Name = "colOvertimeDate";
     this.colOvertimeDate.Visible = true;
     this.colOvertimeDate.VisibleIndex = 0;
     this.colOvertimeDate.Width = 115;
     //
     // colOvertimeHours
     //
     this.colOvertimeHours.Caption = "Hours";
     this.colOvertimeHours.FieldName = "nHours";
     this.colOvertimeHours.Name = "colOvertimeHours";
     this.colOvertimeHours.Visible = true;
     this.colOvertimeHours.VisibleIndex = 1;
     this.colOvertimeHours.Width = 96;
     //
     // colOvertimeReason
     //
     this.colOvertimeReason.Caption = "Reason";
     this.colOvertimeReason.FieldName = "strReason";
     this.colOvertimeReason.Name = "colOvertimeReason";
     this.colOvertimeReason.Visible = true;
     this.colOvertimeReason.VisibleIndex = 2;
     this.colOvertimeReason.Width = 320;
     //
     // colOvertimeCharging
     //
     this.colOvertimeCharging.Caption = "Charging";
     this.colOvertimeCharging.FieldName = "Charging";
     this.colOvertimeCharging.Name = "colOvertimeCharging";
     this.colOvertimeCharging.Visible = true;
     this.colOvertimeCharging.VisibleIndex = 3;
     this.colOvertimeCharging.Width = 84;
     //
     // colOvertimeManager
     //
     this.colOvertimeManager.Caption = "Approving Manager";
     this.colOvertimeManager.FieldName = "strEmployeeName";
     this.colOvertimeManager.Name = "colOvertimeManager";
     this.colOvertimeManager.Visible = true;
     this.colOvertimeManager.VisibleIndex = 4;
     this.colOvertimeManager.Width = 194;
     //
     // colOvertimeApprovingManagerID
     //
     this.colOvertimeApprovingManagerID.Caption = "Approving Manager ID";
     this.colOvertimeApprovingManagerID.FieldName = "nApprovingManagerID";
     this.colOvertimeApprovingManagerID.Name = "colOvertimeApprovingManagerID";
     this.colOvertimeApprovingManagerID.Visible = true;
     this.colOvertimeApprovingManagerID.VisibleIndex = 5;
     this.colOvertimeApprovingManagerID.Width = 57;
     //
     // colOvertimeStatus
     //
     this.colOvertimeStatus.Caption = "Status";
     this.colOvertimeStatus.FieldName = "Status";
     this.colOvertimeStatus.Name = "colOvertimeStatus";
     this.colOvertimeStatus.Visible = true;
     this.colOvertimeStatus.VisibleIndex = 6;
     this.colOvertimeStatus.Width = 101;
     //
     // groupLateness
     //
     this.groupLateness.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowOnly;
     this.groupLateness.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.groupLateness.Controls.Add(this.groupControl13);
     this.groupLateness.Location = new System.Drawing.Point(0, 32);
     this.groupLateness.Name = "groupLateness";
     this.groupLateness.ShowCaption = false;
     this.groupLateness.Size = new System.Drawing.Size(1007, 576);
     this.groupLateness.TabIndex = 14;
     this.groupLateness.Text = "GroupControl1";
     //
     // groupControl13
     //
     this.groupControl13.Appearance.BackColor = System.Drawing.SystemColors.Control;
     this.groupControl13.Appearance.Options.UseBackColor = true;
     this.groupControl13.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowOnly;
     this.groupControl13.Controls.Add(this.groupControl14);
     this.groupControl13.Controls.Add(this.gridctrLateness);
     this.groupControl13.Location = new System.Drawing.Point(8, 0);
     this.groupControl13.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.groupControl13.LookAndFeel.UseDefaultLookAndFeel = false;
     this.groupControl13.Name = "groupControl13";
     this.groupControl13.Size = new System.Drawing.Size(992, 574);
     this.groupControl13.TabIndex = 1;
     this.groupControl13.Text = "LATENESS";
     //
     // groupControl14
     //
     this.groupControl14.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowOnly;
     this.groupControl14.Controls.Add(this.cbLatenessYear);
     this.groupControl14.Controls.Add(this.label12);
     this.groupControl14.Controls.Add(this.label13);
     this.groupControl14.Controls.Add(this.cbLatenessMonth);
     this.groupControl14.Controls.Add(this.sbtnLatenessInquiry);
     this.groupControl14.Location = new System.Drawing.Point(6, 24);
     this.groupControl14.Name = "groupControl14";
     this.groupControl14.Size = new System.Drawing.Size(328, 52);
     this.groupControl14.TabIndex = 0;
     this.groupControl14.Text = "Inquiry";
     //
     // cbLatenessYear
     //
     this.cbLatenessYear.EditValue = "";
     this.cbLatenessYear.ImeMode = System.Windows.Forms.ImeMode.On;
     this.cbLatenessYear.Location = new System.Drawing.Point(178, 24);
     this.cbLatenessYear.Name = "cbLatenessYear";
     this.cbLatenessYear.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cbLatenessYear.Properties.PopupSizeable = true;
     this.cbLatenessYear.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
     this.cbLatenessYear.Size = new System.Drawing.Size(64, 20);
     this.cbLatenessYear.TabIndex = 1;
     //
     // label12
     //
     this.label12.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label12.Location = new System.Drawing.Point(140, 24);
     this.label12.Name = "label12";
     this.label12.Size = new System.Drawing.Size(34, 20);
     this.label12.TabIndex = 15;
     this.label12.Text = "Year:";
     //
     // label13
     //
     this.label13.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label13.Location = new System.Drawing.Point(12, 24);
     this.label13.Name = "label13";
     this.label13.Size = new System.Drawing.Size(42, 20);
     this.label13.TabIndex = 14;
     this.label13.Text = "Month:";
     //
     // cbLatenessMonth
     //
     this.cbLatenessMonth.EditValue = "January";
     this.cbLatenessMonth.ImeMode = System.Windows.Forms.ImeMode.On;
     this.cbLatenessMonth.Location = new System.Drawing.Point(56, 24);
     this.cbLatenessMonth.Name = "cbLatenessMonth";
     this.cbLatenessMonth.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cbLatenessMonth.Properties.Items.AddRange(new object[] {
     "January",
     "February",
     "March",
     "April",
     "May",
     "June",
     "July",
     "August",
     "September",
     "October",
     "November",
     "December"});
     this.cbLatenessMonth.Properties.PopupSizeable = true;
     this.cbLatenessMonth.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
     this.cbLatenessMonth.Size = new System.Drawing.Size(80, 20);
     this.cbLatenessMonth.TabIndex = 0;
     //
     // sbtnLatenessInquiry
     //
     this.sbtnLatenessInquiry.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.sbtnLatenessInquiry.Appearance.Options.UseFont = true;
     this.sbtnLatenessInquiry.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.sbtnLatenessInquiry.Location = new System.Drawing.Point(246, 24);
     this.sbtnLatenessInquiry.Name = "sbtnLatenessInquiry";
     this.sbtnLatenessInquiry.Size = new System.Drawing.Size(72, 20);
     this.sbtnLatenessInquiry.TabIndex = 2;
     this.sbtnLatenessInquiry.Text = "Inquiry";
     this.sbtnLatenessInquiry.Click += new System.EventHandler(this.sbtnLatenessInquiry_Click);
     //
     // gridctrLateness
     //
     this.gridctrLateness.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.gridctrLateness.EmbeddedNavigator.Name = "";
     this.gridctrLateness.Location = new System.Drawing.Point(2, 80);
     this.gridctrLateness.LookAndFeel.UseDefaultLookAndFeel = false;
     this.gridctrLateness.MainView = this.gvLateness;
     this.gridctrLateness.Name = "gridctrLateness";
     this.gridctrLateness.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemTimeEdit1,
     this.repositoryItemTimeEdit2});
     this.gridctrLateness.Size = new System.Drawing.Size(988, 492);
     this.gridctrLateness.TabIndex = 1;
     this.gridctrLateness.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gvLateness});
     //
     // gvLateness
     //
     this.gvLateness.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colLatenessRosterID,
     this.colLatenessDate,
     this.colLatenessBranch,
     this.colLatenessType,
     this.colLatenessExpected,
     this.colLatenessActual,
     this.colLatenessLateness});
     this.gvLateness.GridControl = this.gridctrLateness;
     this.gvLateness.Name = "gvLateness";
     this.gvLateness.OptionsBehavior.AllowIncrementalSearch = true;
     this.gvLateness.OptionsBehavior.Editable = false;
     this.gvLateness.OptionsCustomization.AllowFilter = false;
     this.gvLateness.OptionsView.ShowFooter = true;
     this.gvLateness.OptionsView.ShowGroupPanel = false;
     this.gvLateness.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.colLatenessDate, DevExpress.Data.ColumnSortOrder.Descending)});
     //
     // colLatenessRosterID
     //
     this.colLatenessRosterID.Caption = "Roster ID";
     this.colLatenessRosterID.FieldName = "nRosterID";
     this.colLatenessRosterID.Name = "colLatenessRosterID";
     //
     // colLatenessDate
     //
     this.colLatenessDate.Caption = "Date";
     this.colLatenessDate.DisplayFormat.FormatString = "dd/MM/yyyy";
     this.colLatenessDate.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.colLatenessDate.FieldName = "dtDate";
     this.colLatenessDate.Name = "colLatenessDate";
     this.colLatenessDate.Visible = true;
     this.colLatenessDate.VisibleIndex = 0;
     this.colLatenessDate.Width = 185;
     //
     // colLatenessBranch
     //
     this.colLatenessBranch.Caption = "Branch Code";
     this.colLatenessBranch.FieldName = "strBranchCode";
     this.colLatenessBranch.Name = "colLatenessBranch";
     this.colLatenessBranch.Visible = true;
     this.colLatenessBranch.VisibleIndex = 1;
     this.colLatenessBranch.Width = 85;
     //
     // colLatenessType
     //
     this.colLatenessType.Caption = "Type";
     this.colLatenessType.FieldName = "strType";
     this.colLatenessType.Name = "colLatenessType";
     this.colLatenessType.Visible = true;
     this.colLatenessType.VisibleIndex = 2;
     this.colLatenessType.Width = 124;
     //
     // colLatenessExpected
     //
     this.colLatenessExpected.Caption = "Expected Time";
     this.colLatenessExpected.ColumnEdit = this.repositoryItemTimeEdit1;
     this.colLatenessExpected.FieldName = "dtExpected";
     this.colLatenessExpected.Name = "colLatenessExpected";
     this.colLatenessExpected.Visible = true;
     this.colLatenessExpected.VisibleIndex = 3;
     this.colLatenessExpected.Width = 196;
     //
     // repositoryItemTimeEdit1
     //
     this.repositoryItemTimeEdit1.AutoHeight = false;
     this.repositoryItemTimeEdit1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.repositoryItemTimeEdit1.Name = "repositoryItemTimeEdit1";
     //
     // colLatenessActual
     //
     this.colLatenessActual.Caption = "Actual Time";
     this.colLatenessActual.ColumnEdit = this.repositoryItemTimeEdit2;
     this.colLatenessActual.FieldName = "dtActual";
     this.colLatenessActual.Name = "colLatenessActual";
     this.colLatenessActual.Visible = true;
     this.colLatenessActual.VisibleIndex = 4;
     this.colLatenessActual.Width = 208;
     //
     // repositoryItemTimeEdit2
     //
     this.repositoryItemTimeEdit2.AutoHeight = false;
     this.repositoryItemTimeEdit2.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.repositoryItemTimeEdit2.Name = "repositoryItemTimeEdit2";
     //
     // colLatenessLateness
     //
     this.colLatenessLateness.Caption = "Lateness (Minutes)";
     this.colLatenessLateness.DisplayFormat.FormatString = "#.00";
     this.colLatenessLateness.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.colLatenessLateness.FieldName = "nLateness";
     this.colLatenessLateness.Name = "colLatenessLateness";
     this.colLatenessLateness.SummaryItem.DisplayFormat = "{0:#.00}";
     this.colLatenessLateness.SummaryItem.SummaryType = DevExpress.Data.SummaryItemType.Sum;
     this.colLatenessLateness.Visible = true;
     this.colLatenessLateness.VisibleIndex = 5;
     this.colLatenessLateness.Width = 169;
     //
     // tabStaffFour
     //
     this.tabStaffFour.Appearance.Header.Font = new System.Drawing.Font("Tahoma", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.tabStaffFour.Appearance.Header.Options.UseFont = true;
     this.tabStaffFour.Controls.Add(this.lblFour_2);
     this.tabStaffFour.Controls.Add(this.lblFour_1);
     this.tabStaffFour.Controls.Add(this.groupAppointment);
     this.tabStaffFour.Controls.Add(this.groupContact);
     this.tabStaffFour.Name = "tabStaffFour";
     this.tabStaffFour.PageVisible = false;
     this.tabStaffFour.Size = new System.Drawing.Size(1007, 612);
     this.tabStaffFour.Text = "Appointments";
     this.tabStaffFour.VisibleChanged += new System.EventHandler(this.tabStaffAppointments_VisibleChanged);
     //
     // lblFour_2
     //
     this.lblFour_2.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.lblFour_2.Appearance.ForeColor = System.Drawing.Color.MediumBlue;
     this.lblFour_2.Appearance.Options.UseFont = true;
     this.lblFour_2.Appearance.Options.UseForeColor = true;
     this.lblFour_2.Location = new System.Drawing.Point(160, 8);
     this.lblFour_2.Name = "lblFour_2";
     this.lblFour_2.Size = new System.Drawing.Size(138, 23);
     this.lblFour_2.TabIndex = 144;
     this.lblFour_2.Text = "Contact";
     this.lblFour_2.Click += new System.EventHandler(this.lblFour_2_Click);
     //
     // lblFour_1
     //
     this.lblFour_1.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.lblFour_1.Appearance.ForeColor = System.Drawing.Color.MediumBlue;
     this.lblFour_1.Appearance.Options.UseFont = true;
     this.lblFour_1.Appearance.Options.UseForeColor = true;
     this.lblFour_1.Location = new System.Drawing.Point(8, 8);
     this.lblFour_1.Name = "lblFour_1";
     this.lblFour_1.Size = new System.Drawing.Size(138, 23);
     this.lblFour_1.TabIndex = 143;
     this.lblFour_1.Text = "Appointment";
     this.lblFour_1.Click += new System.EventHandler(this.lblFour_1_Click);
     //
     // groupAppointment
     //
     this.groupAppointment.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowOnly;
     this.groupAppointment.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.groupAppointment.Controls.Add(this.groupAppointmentEntry);
     this.groupAppointment.Location = new System.Drawing.Point(0, 34);
     this.groupAppointment.Name = "groupAppointment";
     this.groupAppointment.ShowCaption = false;
     this.groupAppointment.Size = new System.Drawing.Size(1007, 584);
     this.groupAppointment.TabIndex = 21;
     this.groupAppointment.Text = "GroupControl3";
     //
     // groupAppointmentEntry
     //
     this.groupAppointmentEntry.Appearance.BackColor = System.Drawing.SystemColors.Control;
     this.groupAppointmentEntry.Appearance.Options.UseBackColor = true;
     this.groupAppointmentEntry.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowOnly;
     this.groupAppointmentEntry.Controls.Add(this.groupControl12);
     this.groupAppointmentEntry.Controls.Add(this.sbtnAppointmentDelete);
     this.groupAppointmentEntry.Controls.Add(this.sbtnAppointmentPrint);
     this.groupAppointmentEntry.Controls.Add(this.sbtnAppointmentEdit);
     this.groupAppointmentEntry.Controls.Add(this.sbtnAppointmentNew);
     this.groupAppointmentEntry.Controls.Add(this.gridctrAppointment);
     this.groupAppointmentEntry.Location = new System.Drawing.Point(8, 0);
     this.groupAppointmentEntry.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.groupAppointmentEntry.LookAndFeel.UseDefaultLookAndFeel = false;
     this.groupAppointmentEntry.Name = "groupAppointmentEntry";
     this.groupAppointmentEntry.Size = new System.Drawing.Size(992, 576);
     this.groupAppointmentEntry.TabIndex = 0;
     this.groupAppointmentEntry.Text = "APPOINTMENT";
     //
     // groupControl12
     //
     this.groupControl12.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowOnly;
     this.groupControl12.Controls.Add(this.cbAppointmentYear);
     this.groupControl12.Controls.Add(this.label26);
     this.groupControl12.Controls.Add(this.label27);
     this.groupControl12.Controls.Add(this.cbAppointmentMonth);
     this.groupControl12.Controls.Add(this.sbtnAppointmentInquiry);
     this.groupControl12.Location = new System.Drawing.Point(8, 24);
     this.groupControl12.Name = "groupControl12";
     this.groupControl12.Size = new System.Drawing.Size(328, 52);
     this.groupControl12.TabIndex = 0;
     this.groupControl12.Text = "Inquiry";
     //
     // cbAppointmentYear
     //
     this.cbAppointmentYear.EditValue = "";
     this.cbAppointmentYear.ImeMode = System.Windows.Forms.ImeMode.On;
     this.cbAppointmentYear.Location = new System.Drawing.Point(178, 24);
     this.cbAppointmentYear.Name = "cbAppointmentYear";
     this.cbAppointmentYear.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cbAppointmentYear.Properties.PopupSizeable = true;
     this.cbAppointmentYear.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
     this.cbAppointmentYear.Size = new System.Drawing.Size(64, 20);
     this.cbAppointmentYear.TabIndex = 1;
     //
     // label26
     //
     this.label26.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label26.Location = new System.Drawing.Point(140, 24);
     this.label26.Name = "label26";
     this.label26.Size = new System.Drawing.Size(34, 20);
     this.label26.TabIndex = 15;
     this.label26.Text = "Year:";
     //
     // label27
     //
     this.label27.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label27.Location = new System.Drawing.Point(12, 24);
     this.label27.Name = "label27";
     this.label27.Size = new System.Drawing.Size(42, 20);
     this.label27.TabIndex = 14;
     this.label27.Text = "Month:";
     //
     // cbAppointmentMonth
     //
     this.cbAppointmentMonth.EditValue = "January";
     this.cbAppointmentMonth.ImeMode = System.Windows.Forms.ImeMode.On;
     this.cbAppointmentMonth.Location = new System.Drawing.Point(56, 24);
     this.cbAppointmentMonth.Name = "cbAppointmentMonth";
     this.cbAppointmentMonth.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cbAppointmentMonth.Properties.Items.AddRange(new object[] {
     "January",
     "February",
     "March",
     "April",
     "May",
     "June",
     "July",
     "August",
     "September",
     "October",
     "November",
     "December"});
     this.cbAppointmentMonth.Properties.PopupSizeable = true;
     this.cbAppointmentMonth.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
     this.cbAppointmentMonth.Size = new System.Drawing.Size(80, 20);
     this.cbAppointmentMonth.TabIndex = 0;
     //
     // sbtnAppointmentInquiry
     //
     this.sbtnAppointmentInquiry.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.sbtnAppointmentInquiry.Appearance.Options.UseFont = true;
     this.sbtnAppointmentInquiry.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.sbtnAppointmentInquiry.Location = new System.Drawing.Point(246, 24);
     this.sbtnAppointmentInquiry.Name = "sbtnAppointmentInquiry";
     this.sbtnAppointmentInquiry.Size = new System.Drawing.Size(72, 20);
     this.sbtnAppointmentInquiry.TabIndex = 2;
     this.sbtnAppointmentInquiry.Text = "Inquiry";
     this.sbtnAppointmentInquiry.Click += new System.EventHandler(this.sbtnAppointmentInquiry_Click);
     //
     // sbtnAppointmentDelete
     //
     this.sbtnAppointmentDelete.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.sbtnAppointmentDelete.Appearance.Options.UseFont = true;
     this.sbtnAppointmentDelete.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.sbtnAppointmentDelete.Location = new System.Drawing.Point(504, 48);
     this.sbtnAppointmentDelete.Name = "sbtnAppointmentDelete";
     this.sbtnAppointmentDelete.Size = new System.Drawing.Size(72, 20);
     this.sbtnAppointmentDelete.TabIndex = 3;
     this.sbtnAppointmentDelete.Text = "Delete";
     this.sbtnAppointmentDelete.Click += new System.EventHandler(this.sbtnAppointmentDelete_Click);
     //
     // sbtnAppointmentPrint
     //
     this.sbtnAppointmentPrint.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.sbtnAppointmentPrint.Appearance.Options.UseFont = true;
     this.sbtnAppointmentPrint.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.sbtnAppointmentPrint.Location = new System.Drawing.Point(584, 48);
     this.sbtnAppointmentPrint.Name = "sbtnAppointmentPrint";
     this.sbtnAppointmentPrint.Size = new System.Drawing.Size(72, 20);
     this.sbtnAppointmentPrint.TabIndex = 3;
     this.sbtnAppointmentPrint.Text = "Print";
     this.sbtnAppointmentPrint.Click += new System.EventHandler(this.sbtnAppointmentPrint_Click);
     //
     // sbtnAppointmentEdit
     //
     this.sbtnAppointmentEdit.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.sbtnAppointmentEdit.Appearance.Options.UseFont = true;
     this.sbtnAppointmentEdit.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.sbtnAppointmentEdit.Location = new System.Drawing.Point(424, 48);
     this.sbtnAppointmentEdit.Name = "sbtnAppointmentEdit";
     this.sbtnAppointmentEdit.Size = new System.Drawing.Size(72, 20);
     this.sbtnAppointmentEdit.TabIndex = 2;
     this.sbtnAppointmentEdit.Text = "Edit";
     this.sbtnAppointmentEdit.Click += new System.EventHandler(this.sbtnAppointmentEdit_Click);
     //
     // sbtnAppointmentNew
     //
     this.sbtnAppointmentNew.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.sbtnAppointmentNew.Appearance.Options.UseFont = true;
     this.sbtnAppointmentNew.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.sbtnAppointmentNew.Location = new System.Drawing.Point(344, 48);
     this.sbtnAppointmentNew.Name = "sbtnAppointmentNew";
     this.sbtnAppointmentNew.Size = new System.Drawing.Size(72, 20);
     this.sbtnAppointmentNew.TabIndex = 1;
     this.sbtnAppointmentNew.Text = "New";
     this.sbtnAppointmentNew.Click += new System.EventHandler(this.sbtnAppointmentNew_Click);
     //
     // gridctrAppointment
     //
     this.gridctrAppointment.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.gridctrAppointment.EmbeddedNavigator.Name = "";
     this.gridctrAppointment.Location = new System.Drawing.Point(2, 86);
     this.gridctrAppointment.LookAndFeel.UseDefaultLookAndFeel = false;
     this.gridctrAppointment.MainView = this.gvAppointment;
     this.gridctrAppointment.Name = "gridctrAppointment";
     this.gridctrAppointment.Size = new System.Drawing.Size(988, 488);
     this.gridctrAppointment.TabIndex = 4;
     this.gridctrAppointment.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gvAppointment});
     //
     // gvAppointment
     //
     this.gvAppointment.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colAppointmentDate,
     this.colAppointmentStartDate,
     this.colAppointmentEndDate,
     this.colAppointmentOrganization,
     this.colAppointmentContact,
     this.colAppointmentTypeID,
     this.colAppointmentRemarks});
     this.gvAppointment.GridControl = this.gridctrAppointment;
     this.gvAppointment.Name = "gvAppointment";
     this.gvAppointment.OptionsBehavior.AllowIncrementalSearch = true;
     this.gvAppointment.OptionsBehavior.Editable = false;
     this.gvAppointment.OptionsCustomization.AllowFilter = false;
     this.gvAppointment.OptionsView.ShowGroupPanel = false;
     this.gvAppointment.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.colAppointmentDate, DevExpress.Data.ColumnSortOrder.Descending)});
     //
     // colAppointmentDate
     //
     this.colAppointmentDate.Caption = "Date";
     this.colAppointmentDate.DisplayFormat.FormatString = "dd/MM/yyyy";
     this.colAppointmentDate.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.colAppointmentDate.FieldName = "dtDate";
     this.colAppointmentDate.Name = "colAppointmentDate";
     this.colAppointmentDate.Visible = true;
     this.colAppointmentDate.VisibleIndex = 0;
     this.colAppointmentDate.Width = 93;
     //
     // colAppointmentStartDate
     //
     this.colAppointmentStartDate.Caption = "Start Time";
     this.colAppointmentStartDate.DisplayFormat.FormatString = "hh:mm tt";
     this.colAppointmentStartDate.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.colAppointmentStartDate.FieldName = "dtStartTime";
     this.colAppointmentStartDate.Name = "colAppointmentStartDate";
     this.colAppointmentStartDate.Visible = true;
     this.colAppointmentStartDate.VisibleIndex = 1;
     this.colAppointmentStartDate.Width = 85;
     //
     // colAppointmentEndDate
     //
     this.colAppointmentEndDate.Caption = "End Time";
     this.colAppointmentEndDate.DisplayFormat.FormatString = "hh:mm tt";
     this.colAppointmentEndDate.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.colAppointmentEndDate.FieldName = "dtEndTime";
     this.colAppointmentEndDate.Name = "colAppointmentEndDate";
     this.colAppointmentEndDate.Visible = true;
     this.colAppointmentEndDate.VisibleIndex = 2;
     this.colAppointmentEndDate.Width = 79;
     //
     // colAppointmentOrganization
     //
     this.colAppointmentOrganization.Caption = "Organization / Place of Appointment";
     this.colAppointmentOrganization.FieldName = "strOrganization";
     this.colAppointmentOrganization.Name = "colAppointmentOrganization";
     this.colAppointmentOrganization.Visible = true;
     this.colAppointmentOrganization.VisibleIndex = 3;
     this.colAppointmentOrganization.Width = 215;
     //
     // colAppointmentContact
     //
     this.colAppointmentContact.Caption = "Contact";
     this.colAppointmentContact.FieldName = "strContactName";
     this.colAppointmentContact.Name = "colAppointmentContact";
     this.colAppointmentContact.Visible = true;
     this.colAppointmentContact.VisibleIndex = 4;
     this.colAppointmentContact.Width = 153;
     //
     // colAppointmentTypeID
     //
     this.colAppointmentTypeID.Caption = "Appointment Type";
     this.colAppointmentTypeID.FieldName = "nAppointmentTypeId";
     this.colAppointmentTypeID.Name = "colAppointmentTypeID";
     this.colAppointmentTypeID.Visible = true;
     this.colAppointmentTypeID.VisibleIndex = 5;
     //
     // colAppointmentRemarks
     //
     this.colAppointmentRemarks.Caption = "Remarks";
     this.colAppointmentRemarks.FieldName = "strRemarks";
     this.colAppointmentRemarks.Name = "colAppointmentRemarks";
     this.colAppointmentRemarks.Visible = true;
     this.colAppointmentRemarks.VisibleIndex = 6;
     this.colAppointmentRemarks.Width = 342;
     //
     // groupContact
     //
     this.groupContact.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowOnly;
     this.groupContact.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.groupContact.Controls.Add(this.groupContactEntry);
     this.groupContact.Location = new System.Drawing.Point(0, 34);
     this.groupContact.Name = "groupContact";
     this.groupContact.ShowCaption = false;
     this.groupContact.Size = new System.Drawing.Size(1007, 584);
     this.groupContact.TabIndex = 20;
     this.groupContact.Text = "GroupControl3";
     //
     // groupContactEntry
     //
     this.groupContactEntry.Appearance.BackColor = System.Drawing.SystemColors.Control;
     this.groupContactEntry.Appearance.Options.UseBackColor = true;
     this.groupContactEntry.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowOnly;
     this.groupContactEntry.Controls.Add(this.sbtnContactEdit);
     this.groupContactEntry.Controls.Add(this.sbtnContactDelete);
     this.groupContactEntry.Controls.Add(this.sbtnContactNew);
     this.groupContactEntry.Controls.Add(this.gridctrContact);
     this.groupContactEntry.Location = new System.Drawing.Point(8, 0);
     this.groupContactEntry.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.groupContactEntry.LookAndFeel.UseDefaultLookAndFeel = false;
     this.groupContactEntry.Name = "groupContactEntry";
     this.groupContactEntry.Size = new System.Drawing.Size(992, 576);
     this.groupContactEntry.TabIndex = 1;
     this.groupContactEntry.Text = "CONTACT";
     //
     // sbtnContactEdit
     //
     this.sbtnContactEdit.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.sbtnContactEdit.Appearance.Options.UseFont = true;
     this.sbtnContactEdit.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.sbtnContactEdit.Location = new System.Drawing.Point(96, 32);
     this.sbtnContactEdit.Name = "sbtnContactEdit";
     this.sbtnContactEdit.Size = new System.Drawing.Size(72, 20);
     this.sbtnContactEdit.TabIndex = 1;
     this.sbtnContactEdit.Text = "Edit";
     this.sbtnContactEdit.Click += new System.EventHandler(this.sbtnContactEdit_Click);
     //
     // sbtnContactDelete
     //
     this.sbtnContactDelete.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.sbtnContactDelete.Appearance.Options.UseFont = true;
     this.sbtnContactDelete.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.sbtnContactDelete.Location = new System.Drawing.Point(176, 32);
     this.sbtnContactDelete.Name = "sbtnContactDelete";
     this.sbtnContactDelete.Size = new System.Drawing.Size(72, 20);
     this.sbtnContactDelete.TabIndex = 2;
     this.sbtnContactDelete.Text = "Delete";
     this.sbtnContactDelete.Click += new System.EventHandler(this.sbtnContactDelete_Click);
     //
     // sbtnContactNew
     //
     this.sbtnContactNew.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.sbtnContactNew.Appearance.Options.UseFont = true;
     this.sbtnContactNew.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.sbtnContactNew.Location = new System.Drawing.Point(16, 32);
     this.sbtnContactNew.Name = "sbtnContactNew";
     this.sbtnContactNew.Size = new System.Drawing.Size(72, 20);
     this.sbtnContactNew.TabIndex = 0;
     this.sbtnContactNew.Text = "New";
     this.sbtnContactNew.Click += new System.EventHandler(this.sbtnContactNew_Click);
     //
     // gridctrContact
     //
     this.gridctrContact.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.gridctrContact.EmbeddedNavigator.Name = "";
     this.gridctrContact.Location = new System.Drawing.Point(2, 62);
     this.gridctrContact.LookAndFeel.UseDefaultLookAndFeel = false;
     this.gridctrContact.MainView = this.gvContact;
     this.gridctrContact.Name = "gridctrContact";
     this.gridctrContact.Size = new System.Drawing.Size(988, 512);
     this.gridctrContact.TabIndex = 3;
     this.gridctrContact.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gvContact});
     //
     // gvContact
     //
     this.gvContact.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colContactPerson,
     this.colContactOrganization,
     this.colContactMobile,
     this.colContactOfficeNo,
     this.colContactEmail,
     this.colContactFax,
     this.colContactAddress});
     this.gvContact.GridControl = this.gridctrContact;
     this.gvContact.Name = "gvContact";
     this.gvContact.OptionsBehavior.AllowIncrementalSearch = true;
     this.gvContact.OptionsBehavior.Editable = false;
     this.gvContact.OptionsCustomization.AllowFilter = false;
     this.gvContact.OptionsView.ShowGroupPanel = false;
     //
     // colContactPerson
     //
     this.colContactPerson.Caption = "Contact Person";
     this.colContactPerson.FieldName = "strContactName";
     this.colContactPerson.Name = "colContactPerson";
     this.colContactPerson.Visible = true;
     this.colContactPerson.VisibleIndex = 0;
     this.colContactPerson.Width = 128;
     //
     // colContactOrganization
     //
     this.colContactOrganization.Caption = "Organization";
     this.colContactOrganization.FieldName = "strOrganization";
     this.colContactOrganization.Name = "colContactOrganization";
     this.colContactOrganization.Visible = true;
     this.colContactOrganization.VisibleIndex = 1;
     this.colContactOrganization.Width = 150;
     //
     // colContactMobile
     //
     this.colContactMobile.Caption = "Mobile No.";
     this.colContactMobile.FieldName = "strMobileNo";
     this.colContactMobile.Name = "colContactMobile";
     this.colContactMobile.Visible = true;
     this.colContactMobile.VisibleIndex = 2;
     this.colContactMobile.Width = 107;
     //
     // colContactOfficeNo
     //
     this.colContactOfficeNo.Caption = "Office No.";
     this.colContactOfficeNo.FieldName = "strOfficeNo";
     this.colContactOfficeNo.Name = "colContactOfficeNo";
     this.colContactOfficeNo.Visible = true;
     this.colContactOfficeNo.VisibleIndex = 3;
     this.colContactOfficeNo.Width = 111;
     //
     // colContactEmail
     //
     this.colContactEmail.Caption = "Email Address";
     this.colContactEmail.FieldName = "strEmail";
     this.colContactEmail.Name = "colContactEmail";
     this.colContactEmail.Visible = true;
     this.colContactEmail.VisibleIndex = 4;
     this.colContactEmail.Width = 159;
     //
     // colContactFax
     //
     this.colContactFax.Caption = "Fax";
     this.colContactFax.FieldName = "strFax";
     this.colContactFax.Name = "colContactFax";
     this.colContactFax.Visible = true;
     this.colContactFax.VisibleIndex = 5;
     this.colContactFax.Width = 102;
     //
     // colContactAddress
     //
     this.colContactAddress.Caption = "Address";
     this.colContactAddress.FieldName = "strAddress";
     this.colContactAddress.Name = "colContactAddress";
     this.colContactAddress.Visible = true;
     this.colContactAddress.VisibleIndex = 6;
     this.colContactAddress.Width = 210;
     //
     // tabStaffFive
     //
     this.tabStaffFive.Appearance.Header.Font = new System.Drawing.Font("Tahoma", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.tabStaffFive.Appearance.Header.Options.UseFont = true;
     this.tabStaffFive.Controls.Add(this.groupCustomerVoice);
     this.tabStaffFive.Name = "tabStaffFive";
     this.tabStaffFive.PageVisible = false;
     this.tabStaffFive.Size = new System.Drawing.Size(1007, 612);
     this.tabStaffFive.Text = "Customer Voice";
     this.tabStaffFive.VisibleChanged += new System.EventHandler(this.tabStaffCustomerVoice_VisibleChanged);
     //
     // groupCustomerVoice
     //
     this.groupCustomerVoice.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowOnly;
     this.groupCustomerVoice.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.groupCustomerVoice.Controls.Add(this.lblmnuCustomerVoiceActionHistory);
     this.groupCustomerVoice.Controls.Add(this.lblmnuCustomerVoiceCVDetails);
     this.groupCustomerVoice.Controls.Add(this.GroupControl24);
     this.groupCustomerVoice.Controls.Add(this.groupCustomerVoiceActionHistory);
     this.groupCustomerVoice.Controls.Add(this.groupCustomerVoiceCVDetails);
     this.groupCustomerVoice.Location = new System.Drawing.Point(0, 8);
     this.groupCustomerVoice.Name = "groupCustomerVoice";
     this.groupCustomerVoice.ShowCaption = false;
     this.groupCustomerVoice.Size = new System.Drawing.Size(1007, 584);
     this.groupCustomerVoice.TabIndex = 11;
     this.groupCustomerVoice.Text = "GroupControl1";
     //
     // lblmnuCustomerVoiceActionHistory
     //
     this.lblmnuCustomerVoiceActionHistory.AutoSize = true;
     this.lblmnuCustomerVoiceActionHistory.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblmnuCustomerVoiceActionHistory.Location = new System.Drawing.Point(184, 320);
     this.lblmnuCustomerVoiceActionHistory.Name = "lblmnuCustomerVoiceActionHistory";
     this.lblmnuCustomerVoiceActionHistory.Size = new System.Drawing.Size(104, 16);
     this.lblmnuCustomerVoiceActionHistory.TabIndex = 10;
     this.lblmnuCustomerVoiceActionHistory.Text = "Action History";
     this.lblmnuCustomerVoiceActionHistory.Click += new System.EventHandler(this.lblmnuCustomerVoiceActionHistory_Click);
     //
     // lblmnuCustomerVoiceCVDetails
     //
     this.lblmnuCustomerVoiceCVDetails.AutoSize = true;
     this.lblmnuCustomerVoiceCVDetails.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblmnuCustomerVoiceCVDetails.Location = new System.Drawing.Point(24, 320);
     this.lblmnuCustomerVoiceCVDetails.Name = "lblmnuCustomerVoiceCVDetails";
     this.lblmnuCustomerVoiceCVDetails.Size = new System.Drawing.Size(170, 16);
     this.lblmnuCustomerVoiceCVDetails.TabIndex = 9;
     this.lblmnuCustomerVoiceCVDetails.Text = "Customer Voice Details";
     this.lblmnuCustomerVoiceCVDetails.Click += new System.EventHandler(this.lblmnuCustomerVoiceCVDetails_Click);
     //
     // GroupControl24
     //
     this.GroupControl24.Appearance.BackColor = System.Drawing.SystemColors.Control;
     this.GroupControl24.Appearance.Options.UseBackColor = true;
     this.GroupControl24.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowOnly;
     this.GroupControl24.Controls.Add(this.luedtCVSubmitter);
     this.GroupControl24.Controls.Add(this.sbtnAssign);
     this.GroupControl24.Controls.Add(this.sbtnCVPrint);
     this.GroupControl24.Controls.Add(this.sbtnCVEdit);
     this.GroupControl24.Controls.Add(this.sbtnCVDelete);
     this.GroupControl24.Controls.Add(this.sbtnCVNew);
     this.GroupControl24.Controls.Add(this.cbListCV);
     this.GroupControl24.Controls.Add(this.gctrCV);
     this.GroupControl24.Controls.Add(this.label17);
     this.GroupControl24.Controls.Add(this.luedtCVAssignTo);
     this.GroupControl24.Controls.Add(this.lblCVSubmitter);
     this.GroupControl24.Location = new System.Drawing.Point(8, 0);
     this.GroupControl24.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.GroupControl24.LookAndFeel.UseDefaultLookAndFeel = false;
     this.GroupControl24.Name = "GroupControl24";
     this.GroupControl24.Size = new System.Drawing.Size(992, 312);
     this.GroupControl24.TabIndex = 0;
     this.GroupControl24.Text = "CUSTOMER VOICE";
     //
     // luedtCVSubmitter
     //
     this.luedtCVSubmitter.Location = new System.Drawing.Point(400, 32);
     this.luedtCVSubmitter.Name = "luedtCVSubmitter";
     this.luedtCVSubmitter.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.luedtCVSubmitter.Size = new System.Drawing.Size(176, 20);
     this.luedtCVSubmitter.TabIndex = 2;
     this.luedtCVSubmitter.EditValueChanged += new System.EventHandler(this.luedtCVSubmiter_EditValueChanged);
     //
     // sbtnAssign
     //
     this.sbtnAssign.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.sbtnAssign.Appearance.Options.UseFont = true;
     this.sbtnAssign.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.sbtnAssign.Location = new System.Drawing.Point(824, 32);
     this.sbtnAssign.Name = "sbtnAssign";
     this.sbtnAssign.Size = new System.Drawing.Size(80, 20);
     this.sbtnAssign.TabIndex = 6;
     this.sbtnAssign.Text = "Assign To";
     this.sbtnAssign.Click += new System.EventHandler(this.sbtnAssign_Click);
     //
     // sbtnCVPrint
     //
     this.sbtnCVPrint.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.sbtnCVPrint.Appearance.Options.UseFont = true;
     this.sbtnCVPrint.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.sbtnCVPrint.Location = new System.Drawing.Point(912, 32);
     this.sbtnCVPrint.Name = "sbtnCVPrint";
     this.sbtnCVPrint.Size = new System.Drawing.Size(72, 20);
     this.sbtnCVPrint.TabIndex = 7;
     this.sbtnCVPrint.Text = "Print";
     this.sbtnCVPrint.Click += new System.EventHandler(this.sbtnCVPrint_Click);
     //
     // sbtnCVEdit
     //
     this.sbtnCVEdit.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.sbtnCVEdit.Appearance.Options.UseFont = true;
     this.sbtnCVEdit.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.sbtnCVEdit.Location = new System.Drawing.Point(744, 32);
     this.sbtnCVEdit.Name = "sbtnCVEdit";
     this.sbtnCVEdit.Size = new System.Drawing.Size(72, 20);
     this.sbtnCVEdit.TabIndex = 5;
     this.sbtnCVEdit.Text = "Update";
     this.sbtnCVEdit.Click += new System.EventHandler(this.sbtnCVEdit_Click);
     //
     // sbtnCVDelete
     //
     this.sbtnCVDelete.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.sbtnCVDelete.Appearance.Options.UseFont = true;
     this.sbtnCVDelete.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.sbtnCVDelete.Location = new System.Drawing.Point(664, 32);
     this.sbtnCVDelete.Name = "sbtnCVDelete";
     this.sbtnCVDelete.Size = new System.Drawing.Size(72, 20);
     this.sbtnCVDelete.TabIndex = 4;
     this.sbtnCVDelete.Text = "Delete";
     this.sbtnCVDelete.Click += new System.EventHandler(this.sbtnCVDelete_Click);
     //
     // sbtnCVNew
     //
     this.sbtnCVNew.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.sbtnCVNew.Appearance.Options.UseFont = true;
     this.sbtnCVNew.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.sbtnCVNew.Location = new System.Drawing.Point(584, 32);
     this.sbtnCVNew.Name = "sbtnCVNew";
     this.sbtnCVNew.Size = new System.Drawing.Size(72, 20);
     this.sbtnCVNew.TabIndex = 3;
     this.sbtnCVNew.Text = "New";
     this.sbtnCVNew.Click += new System.EventHandler(this.sbtnCVNew_Click);
     //
     // cbListCV
     //
     this.cbListCV.EditValue = "All";
     this.cbListCV.Location = new System.Drawing.Point(8, 32);
     this.cbListCV.Name = "cbListCV";
     this.cbListCV.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cbListCV.Properties.Items.AddRange(new object[] {
     "All",
     "New",
     "Open",
     "Closed"});
     this.cbListCV.Properties.PopupSizeable = true;
     this.cbListCV.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
     this.cbListCV.Size = new System.Drawing.Size(88, 20);
     this.cbListCV.TabIndex = 0;
     this.cbListCV.SelectedIndexChanged += new System.EventHandler(this.cbListCV_SelectedIndexChanged);
     //
     // gctrCV
     //
     this.gctrCV.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.gctrCV.EmbeddedNavigator.Name = "";
     this.gctrCV.Location = new System.Drawing.Point(2, 62);
     this.gctrCV.LookAndFeel.UseDefaultLookAndFeel = false;
     this.gctrCV.MainView = this.gvCV;
     this.gctrCV.Name = "gctrCV";
     this.gctrCV.Size = new System.Drawing.Size(988, 248);
     this.gctrCV.TabIndex = 8;
     this.gctrCV.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gvCV});
     //
     // gvCV
     //
     this.gvCV.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colRefNo,
     this.colDtReceived,
     this.colBranch,
     this.colMembershipID,
     this.colMemberName,
     this.colDepartment,
     this.colType,
     this.colCategory,
     this.colSubject,
     this.colSubmittedBy,
     this.colStaffSubject,
     this.colDepartmentAssignedTo,
     this.colLastUpdatedDate,
     this.colStatus});
     this.gvCV.GridControl = this.gctrCV;
     this.gvCV.Name = "gvCV";
     this.gvCV.OptionsBehavior.AllowIncrementalSearch = true;
     this.gvCV.OptionsBehavior.Editable = false;
     this.gvCV.OptionsCustomization.AllowFilter = false;
     this.gvCV.OptionsView.ColumnAutoWidth = false;
     this.gvCV.OptionsView.ShowGroupPanel = false;
     this.gvCV.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.colDtReceived, DevExpress.Data.ColumnSortOrder.Descending)});
     this.gvCV.FocusedRowChanged += new DevExpress.XtraGrid.Views.Base.FocusedRowChangedEventHandler(this.gvCV_FocusedRowChanged);
     this.gvCV.DataSourceChanged += new System.EventHandler(this.gvCV_DataSourceChanged);
     //
     // colRefNo
     //
     this.colRefNo.Caption = "Ref No";
     this.colRefNo.FieldName = "nCaseID";
     this.colRefNo.Name = "colRefNo";
     this.colRefNo.Visible = true;
     this.colRefNo.VisibleIndex = 0;
     //
     // colDtReceived
     //
     this.colDtReceived.Caption = "Date Received";
     this.colDtReceived.DisplayFormat.FormatString = "dd/MM/yyyy";
     this.colDtReceived.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.colDtReceived.FieldName = "dtDate";
     this.colDtReceived.Name = "colDtReceived";
     this.colDtReceived.Visible = true;
     this.colDtReceived.VisibleIndex = 1;
     this.colDtReceived.Width = 100;
     //
     // colBranch
     //
     this.colBranch.Caption = "Branch";
     this.colBranch.FieldName = "strBranchCode";
     this.colBranch.Name = "colBranch";
     this.colBranch.Visible = true;
     this.colBranch.VisibleIndex = 2;
     //
     // colMembershipID
     //
     this.colMembershipID.Caption = "Membership Id";
     this.colMembershipID.FieldName = "strMembershipID";
     this.colMembershipID.Name = "colMembershipID";
     this.colMembershipID.Visible = true;
     this.colMembershipID.VisibleIndex = 6;
     this.colMembershipID.Width = 100;
     //
     // colMemberName
     //
     this.colMemberName.Caption = "Member Name";
     this.colMemberName.FieldName = "strMembershipName";
     this.colMemberName.Name = "colMemberName";
     this.colMemberName.Visible = true;
     this.colMemberName.VisibleIndex = 3;
     this.colMemberName.Width = 101;
     //
     // colDepartment
     //
     this.colDepartment.Caption = "Department";
     this.colDepartment.FieldName = "strDepartmentDescription";
     this.colDepartment.Name = "colDepartment";
     this.colDepartment.Visible = true;
     this.colDepartment.VisibleIndex = 7;
     this.colDepartment.Width = 89;
     //
     // colType
     //
     this.colType.Caption = "Type";
     this.colType.FieldName = "strCaseTypeDescription";
     this.colType.Name = "colType";
     this.colType.Visible = true;
     this.colType.VisibleIndex = 4;
     //
     // colCategory
     //
     this.colCategory.Caption = "Category";
     this.colCategory.FieldName = "strCaseCategoryDescription";
     this.colCategory.Name = "colCategory";
     this.colCategory.Visible = true;
     this.colCategory.VisibleIndex = 5;
     //
     // colSubject
     //
     this.colSubject.Caption = "Subject";
     this.colSubject.FieldName = "strSubject";
     this.colSubject.Name = "colSubject";
     //
     // colSubmittedBy
     //
     this.colSubmittedBy.Caption = "Submitted By";
     this.colSubmittedBy.FieldName = "strSubmittedBy";
     this.colSubmittedBy.Name = "colSubmittedBy";
     this.colSubmittedBy.Visible = true;
     this.colSubmittedBy.VisibleIndex = 8;
     this.colSubmittedBy.Width = 97;
     //
     // colStaffSubject
     //
     this.colStaffSubject.Caption = "Subject Staff ";
     this.colStaffSubject.FieldName = "strSubjectStaff";
     this.colStaffSubject.Name = "colStaffSubject";
     //
     // colDepartmentAssignedTo
     //
     this.colDepartmentAssignedTo.Caption = "Department Assigned To";
     this.colDepartmentAssignedTo.FieldName = "strDepartmentAssignedTo";
     this.colDepartmentAssignedTo.Name = "colDepartmentAssignedTo";
     this.colDepartmentAssignedTo.Visible = true;
     this.colDepartmentAssignedTo.VisibleIndex = 9;
     this.colDepartmentAssignedTo.Width = 130;
     //
     // colLastUpdatedDate
     //
     this.colLastUpdatedDate.Caption = "Last Updated Date";
     this.colLastUpdatedDate.DisplayFormat.FormatString = "dd/MM/yyyy";
     this.colLastUpdatedDate.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.colLastUpdatedDate.FieldName = "dtLastEditDate";
     this.colLastUpdatedDate.Name = "colLastUpdatedDate";
     this.colLastUpdatedDate.Visible = true;
     this.colLastUpdatedDate.VisibleIndex = 10;
     this.colLastUpdatedDate.Width = 100;
     //
     // colStatus
     //
     this.colStatus.Caption = "Status";
     this.colStatus.FieldName = "strStatus";
     this.colStatus.Name = "colStatus";
     this.colStatus.Visible = true;
     this.colStatus.VisibleIndex = 11;
     //
     // label17
     //
     this.label17.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label17.Location = new System.Drawing.Point(104, 32);
     this.label17.Name = "label17";
     this.label17.Size = new System.Drawing.Size(64, 20);
     this.label17.TabIndex = 19;
     this.label17.Text = "Assign To:";
     //
     // luedtCVAssignTo
     //
     this.luedtCVAssignTo.Location = new System.Drawing.Point(168, 32);
     this.luedtCVAssignTo.Name = "luedtCVAssignTo";
     this.luedtCVAssignTo.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.luedtCVAssignTo.Size = new System.Drawing.Size(160, 20);
     this.luedtCVAssignTo.TabIndex = 1;
     this.luedtCVAssignTo.EditValueChanged += new System.EventHandler(this.luedtCVAssignTo_EditValueChanged);
     //
     // lblCVSubmitter
     //
     this.lblCVSubmitter.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblCVSubmitter.Location = new System.Drawing.Point(336, 32);
     this.lblCVSubmitter.Name = "lblCVSubmitter";
     this.lblCVSubmitter.Size = new System.Drawing.Size(64, 20);
     this.lblCVSubmitter.TabIndex = 16;
     this.lblCVSubmitter.Text = "Submitter:";
     //
     // groupCustomerVoiceActionHistory
     //
     this.groupCustomerVoiceActionHistory.Appearance.BackColor = System.Drawing.SystemColors.Control;
     this.groupCustomerVoiceActionHistory.Appearance.Options.UseBackColor = true;
     this.groupCustomerVoiceActionHistory.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowOnly;
     this.groupCustomerVoiceActionHistory.Controls.Add(this.GroupControl26);
     this.groupCustomerVoiceActionHistory.Location = new System.Drawing.Point(7, 344);
     this.groupCustomerVoiceActionHistory.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.groupCustomerVoiceActionHistory.LookAndFeel.UseDefaultLookAndFeel = false;
     this.groupCustomerVoiceActionHistory.Name = "groupCustomerVoiceActionHistory";
     this.groupCustomerVoiceActionHistory.Size = new System.Drawing.Size(992, 232);
     this.groupCustomerVoiceActionHistory.TabIndex = 11;
     this.groupCustomerVoiceActionHistory.Text = "ACTION HISTORY";
     //
     // GroupControl26
     //
     this.GroupControl26.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowOnly;
     this.GroupControl26.Controls.Add(this.sbtnNewCVAction);
     this.GroupControl26.Controls.Add(this.gctrCVAction);
     this.GroupControl26.Dock = System.Windows.Forms.DockStyle.Fill;
     this.GroupControl26.Location = new System.Drawing.Point(2, 19);
     this.GroupControl26.Name = "GroupControl26";
     this.GroupControl26.ShowCaption = false;
     this.GroupControl26.Size = new System.Drawing.Size(988, 211);
     this.GroupControl26.TabIndex = 0;
     this.GroupControl26.Text = "GroupControl1";
     //
     // sbtnNewCVAction
     //
     this.sbtnNewCVAction.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.sbtnNewCVAction.Appearance.Options.UseFont = true;
     this.sbtnNewCVAction.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.sbtnNewCVAction.Location = new System.Drawing.Point(16, 16);
     this.sbtnNewCVAction.Name = "sbtnNewCVAction";
     this.sbtnNewCVAction.Size = new System.Drawing.Size(72, 20);
     this.sbtnNewCVAction.TabIndex = 0;
     this.sbtnNewCVAction.Text = "New";
     this.sbtnNewCVAction.Click += new System.EventHandler(this.sbtnNewCVAction_Click);
     //
     // gctrCVAction
     //
     this.gctrCVAction.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.gctrCVAction.EmbeddedNavigator.Name = "";
     this.gctrCVAction.Location = new System.Drawing.Point(2, 49);
     this.gctrCVAction.LookAndFeel.UseDefaultLookAndFeel = false;
     this.gctrCVAction.MainView = this.gvCVAction;
     this.gctrCVAction.Name = "gctrCVAction";
     this.gctrCVAction.Size = new System.Drawing.Size(984, 160);
     this.gctrCVAction.TabIndex = 1;
     this.gctrCVAction.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gvCVAction});
     //
     // gvCVAction
     //
     this.gvCVAction.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colActionID,
     this.coldtDate,
     this.coldtTime,
     this.colMode,
     this.colActionDetail,
     this.colActionTakenBy,
     this.colActionTakenByID});
     this.gvCVAction.GridControl = this.gctrCVAction;
     this.gvCVAction.Name = "gvCVAction";
     this.gvCVAction.OptionsBehavior.AllowIncrementalSearch = true;
     this.gvCVAction.OptionsBehavior.Editable = false;
     this.gvCVAction.OptionsCustomization.AllowFilter = false;
     this.gvCVAction.OptionsView.ShowGroupPanel = false;
     this.gvCVAction.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.coldtDate, DevExpress.Data.ColumnSortOrder.Descending)});
     //
     // colActionID
     //
     this.colActionID.Caption = "ID";
     this.colActionID.FieldName = "nActionID";
     this.colActionID.Name = "colActionID";
     this.colActionID.Visible = true;
     this.colActionID.VisibleIndex = 0;
     this.colActionID.Width = 64;
     //
     // coldtDate
     //
     this.coldtDate.Caption = "Date";
     this.coldtDate.DisplayFormat.FormatString = "dd/MM/yyy";
     this.coldtDate.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.coldtDate.FieldName = "dtDate";
     this.coldtDate.Name = "coldtDate";
     this.coldtDate.Visible = true;
     this.coldtDate.VisibleIndex = 1;
     this.coldtDate.Width = 117;
     //
     // coldtTime
     //
     this.coldtTime.Caption = "Time";
     this.coldtTime.DisplayFormat.FormatString = "hh:mm tt";
     this.coldtTime.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.coldtTime.FieldName = "dtDate";
     this.coldtTime.GroupFormat.FormatString = "hh:mm tt";
     this.coldtTime.GroupFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.coldtTime.Name = "coldtTime";
     this.coldtTime.Visible = true;
     this.coldtTime.VisibleIndex = 2;
     this.coldtTime.Width = 78;
     //
     // colMode
     //
     this.colMode.Caption = "Mode";
     this.colMode.FieldName = "strMode";
     this.colMode.Name = "colMode";
     this.colMode.Visible = true;
     this.colMode.VisibleIndex = 3;
     this.colMode.Width = 207;
     //
     // colActionDetail
     //
     this.colActionDetail.Caption = "Action Taken";
     this.colActionDetail.FieldName = "strActionDetails";
     this.colActionDetail.Name = "colActionDetail";
     this.colActionDetail.Visible = true;
     this.colActionDetail.VisibleIndex = 4;
     this.colActionDetail.Width = 262;
     //
     // colActionTakenBy
     //
     this.colActionTakenBy.Caption = "Action Taken By";
     this.colActionTakenBy.FieldName = "strActionTakenBy";
     this.colActionTakenBy.Name = "colActionTakenBy";
     this.colActionTakenBy.Visible = true;
     this.colActionTakenBy.VisibleIndex = 5;
     this.colActionTakenBy.Width = 231;
     //
     // colActionTakenByID
     //
     this.colActionTakenByID.Caption = "Action Taken By ID";
     this.colActionTakenByID.FieldName = "nActionByID";
     this.colActionTakenByID.Name = "colActionTakenByID";
     this.colActionTakenByID.Visible = true;
     this.colActionTakenByID.VisibleIndex = 6;
     //
     // groupCustomerVoiceCVDetails
     //
     this.groupCustomerVoiceCVDetails.Appearance.BackColor = System.Drawing.SystemColors.Control;
     this.groupCustomerVoiceCVDetails.Appearance.Options.UseBackColor = true;
     this.groupCustomerVoiceCVDetails.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowOnly;
     this.groupCustomerVoiceCVDetails.Controls.Add(this.GroupControl28);
     this.groupCustomerVoiceCVDetails.Location = new System.Drawing.Point(7, 344);
     this.groupCustomerVoiceCVDetails.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.groupCustomerVoiceCVDetails.LookAndFeel.UseDefaultLookAndFeel = false;
     this.groupCustomerVoiceCVDetails.Name = "groupCustomerVoiceCVDetails";
     this.groupCustomerVoiceCVDetails.Size = new System.Drawing.Size(992, 232);
     this.groupCustomerVoiceCVDetails.TabIndex = 6;
     this.groupCustomerVoiceCVDetails.Text = "CUSTOMER VOICE DETAILS";
     //
     // GroupControl28
     //
     this.GroupControl28.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowOnly;
     this.GroupControl28.Controls.Add(this.txtHomeNo);
     this.GroupControl28.Controls.Add(this.label31);
     this.GroupControl28.Controls.Add(this.txtEmail);
     this.GroupControl28.Controls.Add(this.label10);
     this.GroupControl28.Controls.Add(this.txtContactNo);
     this.GroupControl28.Controls.Add(this.label9);
     this.GroupControl28.Controls.Add(this.memoeditSummaryCV);
     this.GroupControl28.Controls.Add(this.Label32);
     this.GroupControl28.Dock = System.Windows.Forms.DockStyle.Fill;
     this.GroupControl28.Location = new System.Drawing.Point(2, 19);
     this.GroupControl28.Name = "GroupControl28";
     this.GroupControl28.ShowCaption = false;
     this.GroupControl28.Size = new System.Drawing.Size(988, 211);
     this.GroupControl28.TabIndex = 0;
     this.GroupControl28.Text = "GroupControl1";
     //
     // txtHomeNo
     //
     this.txtHomeNo.EditValue = "";
     this.txtHomeNo.Location = new System.Drawing.Point(360, 16);
     this.txtHomeNo.Name = "txtHomeNo";
     this.txtHomeNo.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold);
     this.txtHomeNo.Properties.Appearance.Options.UseFont = true;
     this.txtHomeNo.Properties.ReadOnly = true;
     this.txtHomeNo.Size = new System.Drawing.Size(152, 22);
     this.txtHomeNo.TabIndex = 18;
     //
     // label31
     //
     this.label31.AutoSize = true;
     this.label31.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label31.Location = new System.Drawing.Point(288, 16);
     this.label31.Name = "label31";
     this.label31.Size = new System.Drawing.Size(73, 16);
     this.label31.TabIndex = 19;
     this.label31.Text = "Home No";
     //
     // txtEmail
     //
     this.txtEmail.EditValue = "";
     this.txtEmail.Location = new System.Drawing.Point(640, 16);
     this.txtEmail.Name = "txtEmail";
     this.txtEmail.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold);
     this.txtEmail.Properties.Appearance.Options.UseFont = true;
     this.txtEmail.Properties.ReadOnly = true;
     this.txtEmail.Size = new System.Drawing.Size(280, 22);
     this.txtEmail.TabIndex = 1;
     //
     // label10
     //
     this.label10.AutoSize = true;
     this.label10.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label10.Location = new System.Drawing.Point(528, 16);
     this.label10.Name = "label10";
     this.label10.Size = new System.Drawing.Size(109, 16);
     this.label10.TabIndex = 17;
     this.label10.Text = "Email Address";
     //
     // txtContactNo
     //
     this.txtContactNo.EditValue = "";
     this.txtContactNo.Location = new System.Drawing.Point(120, 16);
     this.txtContactNo.Name = "txtContactNo";
     this.txtContactNo.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold);
     this.txtContactNo.Properties.Appearance.Options.UseFont = true;
     this.txtContactNo.Properties.ReadOnly = true;
     this.txtContactNo.Size = new System.Drawing.Size(152, 22);
     this.txtContactNo.TabIndex = 0;
     //
     // label9
     //
     this.label9.AutoSize = true;
     this.label9.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label9.Location = new System.Drawing.Point(8, 16);
     this.label9.Name = "label9";
     this.label9.Size = new System.Drawing.Size(79, 16);
     this.label9.TabIndex = 15;
     this.label9.Text = "Mobile No";
     //
     // memoeditSummaryCV
     //
     this.memoeditSummaryCV.EditValue = "";
     this.memoeditSummaryCV.Location = new System.Drawing.Point(120, 48);
     this.memoeditSummaryCV.Name = "memoeditSummaryCV";
     this.memoeditSummaryCV.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold);
     this.memoeditSummaryCV.Properties.Appearance.Options.UseFont = true;
     this.memoeditSummaryCV.Properties.ReadOnly = true;
     this.memoeditSummaryCV.Size = new System.Drawing.Size(800, 152);
     this.memoeditSummaryCV.TabIndex = 2;
     //
     // Label32
     //
     this.Label32.AutoSize = true;
     this.Label32.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Label32.Location = new System.Drawing.Point(8, 56);
     this.Label32.Name = "Label32";
     this.Label32.Size = new System.Drawing.Size(113, 16);
     this.Label32.TabIndex = 13;
     this.Label32.Text = "Summary of CV";
     //
     // tabStaffSix
     //
     this.tabStaffSix.Appearance.Header.Font = new System.Drawing.Font("Tahoma", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.tabStaffSix.Appearance.Header.Options.UseFont = true;
     this.tabStaffSix.Controls.Add(this.groupControl1);
     this.tabStaffSix.Name = "tabStaffSix";
     this.tabStaffSix.PageVisible = false;
     this.tabStaffSix.Size = new System.Drawing.Size(1007, 612);
     this.tabStaffSix.Text = "Leave";
     //
     // groupControl1
     //
     this.groupControl1.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowOnly;
     this.groupControl1.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.groupControl1.Controls.Add(this.lblSix_2);
     this.groupControl1.Controls.Add(this.lblSix_1);
     this.groupControl1.Controls.Add(this.groupLeave);
     this.groupControl1.Controls.Add(this.groupLeaveRoster);
     this.groupControl1.Controls.Add(this.luedtLeaveEmployeeID);
     this.groupControl1.Controls.Add(this.lblLeaveEmployeeID);
     this.groupControl1.Location = new System.Drawing.Point(0, 0);
     this.groupControl1.Name = "groupControl1";
     this.groupControl1.ShowCaption = false;
     this.groupControl1.Size = new System.Drawing.Size(1007, 610);
     this.groupControl1.TabIndex = 0;
     this.groupControl1.Text = "GroupControl1";
     //
     // lblSix_2
     //
     this.lblSix_2.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.lblSix_2.Appearance.ForeColor = System.Drawing.Color.MediumBlue;
     this.lblSix_2.Appearance.Options.UseFont = true;
     this.lblSix_2.Appearance.Options.UseForeColor = true;
     this.lblSix_2.Location = new System.Drawing.Point(156, 4);
     this.lblSix_2.Name = "lblSix_2";
     this.lblSix_2.Size = new System.Drawing.Size(138, 23);
     this.lblSix_2.TabIndex = 144;
     this.lblSix_2.Text = "Roster";
     this.lblSix_2.Click += new System.EventHandler(this.lblSix_2_Click);
     //
     // lblSix_1
     //
     this.lblSix_1.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.lblSix_1.Appearance.ForeColor = System.Drawing.Color.MediumBlue;
     this.lblSix_1.Appearance.Options.UseFont = true;
     this.lblSix_1.Appearance.Options.UseForeColor = true;
     this.lblSix_1.Location = new System.Drawing.Point(12, 4);
     this.lblSix_1.Name = "lblSix_1";
     this.lblSix_1.Size = new System.Drawing.Size(138, 23);
     this.lblSix_1.TabIndex = 143;
     this.lblSix_1.Text = "Leave";
     this.lblSix_1.Click += new System.EventHandler(this.lblSix_2_Click);
     //
     // groupLeave
     //
     this.groupLeave.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowOnly;
     this.groupLeave.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.groupLeave.Controls.Add(this.groupLeaveLeaveDetails);
     this.groupLeave.Controls.Add(this.groupLeaveLeaveBalance);
     this.groupLeave.Location = new System.Drawing.Point(0, 30);
     this.groupLeave.Name = "groupLeave";
     this.groupLeave.Size = new System.Drawing.Size(1004, 578);
     this.groupLeave.TabIndex = 4;
     this.groupLeave.Text = "groupControl12";
     //
     // groupLeaveLeaveDetails
     //
     this.groupLeaveLeaveDetails.Appearance.BackColor = System.Drawing.SystemColors.Control;
     this.groupLeaveLeaveDetails.Appearance.Options.UseBackColor = true;
     this.groupLeaveLeaveDetails.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowOnly;
     this.groupLeaveLeaveDetails.Controls.Add(this.groupControl11);
     this.groupLeaveLeaveDetails.Location = new System.Drawing.Point(8, 0);
     this.groupLeaveLeaveDetails.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.groupLeaveLeaveDetails.LookAndFeel.UseDefaultLookAndFeel = false;
     this.groupLeaveLeaveDetails.Name = "groupLeaveLeaveDetails";
     this.groupLeaveLeaveDetails.Size = new System.Drawing.Size(990, 282);
     this.groupLeaveLeaveDetails.TabIndex = 5;
     this.groupLeaveLeaveDetails.Text = "LEAVE DETAILS";
     //
     // groupControl11
     //
     this.groupControl11.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowOnly;
     this.groupControl11.Controls.Add(this.cbLeaveStatus);
     this.groupControl11.Controls.Add(this.label35);
     this.groupControl11.Controls.Add(this.txtLeaveEntitlement);
     this.groupControl11.Controls.Add(this.label34);
     this.groupControl11.Controls.Add(this.dateedtLeaveJoinDate);
     this.groupControl11.Controls.Add(this.label33);
     this.groupControl11.Controls.Add(this.sbtnLeaveEdit);
     this.groupControl11.Controls.Add(this.sbtnLeaveDelete);
     this.groupControl11.Controls.Add(this.sbtnLeaveApply);
     this.groupControl11.Controls.Add(this.gridctrLeaveDetail);
     this.groupControl11.Controls.Add(this.cbLeaveNYearID);
     this.groupControl11.Controls.Add(this.lblNYearID);
     this.groupControl11.Dock = System.Windows.Forms.DockStyle.Fill;
     this.groupControl11.Location = new System.Drawing.Point(2, 19);
     this.groupControl11.Name = "groupControl11";
     this.groupControl11.ShowCaption = false;
     this.groupControl11.Size = new System.Drawing.Size(986, 261);
     this.groupControl11.TabIndex = 0;
     this.groupControl11.Text = "GroupControl1";
     //
     // cbLeaveStatus
     //
     this.cbLeaveStatus.EditValue = "All";
     this.cbLeaveStatus.Location = new System.Drawing.Point(168, 8);
     this.cbLeaveStatus.Name = "cbLeaveStatus";
     this.cbLeaveStatus.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cbLeaveStatus.Properties.Items.AddRange(new object[] {
     "Pending Approval",
     "Approved",
     "Rejected",
     "Cancelled",
     "All"});
     this.cbLeaveStatus.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
     this.cbLeaveStatus.Size = new System.Drawing.Size(118, 20);
     this.cbLeaveStatus.TabIndex = 19;
     this.cbLeaveStatus.SelectedIndexChanged += new System.EventHandler(this.cbLeaveStatus_SelectedIndexChanged);
     //
     // label35
     //
     this.label35.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label35.Location = new System.Drawing.Point(120, 10);
     this.label35.Name = "label35";
     this.label35.Size = new System.Drawing.Size(46, 18);
     this.label35.TabIndex = 18;
     this.label35.Text = "Status:";
     //
     // txtLeaveEntitlement
     //
     this.txtLeaveEntitlement.EditValue = "";
     this.txtLeaveEntitlement.Location = new System.Drawing.Point(884, 8);
     this.txtLeaveEntitlement.Name = "txtLeaveEntitlement";
     this.txtLeaveEntitlement.Properties.ReadOnly = true;
     this.txtLeaveEntitlement.Size = new System.Drawing.Size(52, 20);
     this.txtLeaveEntitlement.TabIndex = 6;
     //
     // label34
     //
     this.label34.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label34.Location = new System.Drawing.Point(702, 10);
     this.label34.Name = "label34";
     this.label34.Size = new System.Drawing.Size(180, 18);
     this.label34.TabIndex = 17;
     this.label34.Text = "Leave Entitlement For This Year:";
     //
     // dateedtLeaveJoinDate
     //
     this.dateedtLeaveJoinDate.EditValue = null;
     this.dateedtLeaveJoinDate.Location = new System.Drawing.Point(588, 8);
     this.dateedtLeaveJoinDate.Name = "dateedtLeaveJoinDate";
     this.dateedtLeaveJoinDate.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.dateedtLeaveJoinDate.Properties.ReadOnly = true;
     this.dateedtLeaveJoinDate.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.dateedtLeaveJoinDate.Size = new System.Drawing.Size(110, 20);
     this.dateedtLeaveJoinDate.TabIndex = 5;
     this.dateedtLeaveJoinDate.QueryPopUp += new System.ComponentModel.CancelEventHandler(this.dateedtLeaveJoinDate_QueryPopUp);
     //
     // label33
     //
     this.label33.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label33.Location = new System.Drawing.Point(526, 10);
     this.label33.Name = "label33";
     this.label33.Size = new System.Drawing.Size(60, 18);
     this.label33.TabIndex = 15;
     this.label33.Text = "Join Date:";
     //
     // sbtnLeaveEdit
     //
     this.sbtnLeaveEdit.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.sbtnLeaveEdit.Appearance.Options.UseFont = true;
     this.sbtnLeaveEdit.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.sbtnLeaveEdit.Location = new System.Drawing.Point(370, 8);
     this.sbtnLeaveEdit.Name = "sbtnLeaveEdit";
     this.sbtnLeaveEdit.Size = new System.Drawing.Size(72, 20);
     this.sbtnLeaveEdit.TabIndex = 3;
     this.sbtnLeaveEdit.Text = "Edit";
     this.sbtnLeaveEdit.Click += new System.EventHandler(this.sbtnLeaveEdit_Click);
     //
     // sbtnLeaveDelete
     //
     this.sbtnLeaveDelete.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.sbtnLeaveDelete.Appearance.Options.UseFont = true;
     this.sbtnLeaveDelete.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.sbtnLeaveDelete.Location = new System.Drawing.Point(448, 8);
     this.sbtnLeaveDelete.Name = "sbtnLeaveDelete";
     this.sbtnLeaveDelete.Size = new System.Drawing.Size(72, 20);
     this.sbtnLeaveDelete.TabIndex = 4;
     this.sbtnLeaveDelete.Text = "Cancel";
     this.sbtnLeaveDelete.Click += new System.EventHandler(this.sbtnLeaveDelete_Click);
     //
     // sbtnLeaveApply
     //
     this.sbtnLeaveApply.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.sbtnLeaveApply.Appearance.Options.UseFont = true;
     this.sbtnLeaveApply.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.sbtnLeaveApply.Location = new System.Drawing.Point(292, 8);
     this.sbtnLeaveApply.Name = "sbtnLeaveApply";
     this.sbtnLeaveApply.Size = new System.Drawing.Size(72, 20);
     this.sbtnLeaveApply.TabIndex = 2;
     this.sbtnLeaveApply.Text = "Apply";
     this.sbtnLeaveApply.Click += new System.EventHandler(this.sbtnLeaveApply_Click);
     //
     // gridctrLeaveDetail
     //
     this.gridctrLeaveDetail.EmbeddedNavigator.Name = "";
     this.gridctrLeaveDetail.Location = new System.Drawing.Point(4, 36);
     this.gridctrLeaveDetail.LookAndFeel.UseDefaultLookAndFeel = false;
     this.gridctrLeaveDetail.MainView = this.gvLeave;
     this.gridctrLeaveDetail.Name = "gridctrLeaveDetail";
     this.gridctrLeaveDetail.Size = new System.Drawing.Size(978, 222);
     this.gridctrLeaveDetail.TabIndex = 7;
     this.gridctrLeaveDetail.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gvLeave});
     //
     // gvLeave
     //
     this.gvLeave.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colLeaveStartDate,
     this.colLeaveStartTime,
     this.colLeaveEndTime,
     this.gridColumn2,
     this.gridColumn1,
     this.nLeaveQuantity,
     this.nUnpaidLeave,
     this.colLeaveTimeOff,
     this.colfFullDay,
     this.colLeaveLeaveType,
     this.colLeaveReason,
     this.colLeaveLeaveStatus,
     this.colLeaveApprovingManager});
     this.gvLeave.GridControl = this.gridctrLeaveDetail;
     this.gvLeave.Name = "gvLeave";
     this.gvLeave.OptionsBehavior.AllowIncrementalSearch = true;
     this.gvLeave.OptionsBehavior.Editable = false;
     this.gvLeave.OptionsCustomization.AllowFilter = false;
     this.gvLeave.OptionsView.ShowFooter = true;
     this.gvLeave.OptionsView.ShowGroupPanel = false;
     this.gvLeave.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.colLeaveStartDate, DevExpress.Data.ColumnSortOrder.Ascending)});
     //
     // colLeaveStartDate
     //
     this.colLeaveStartDate.Caption = "Date";
     this.colLeaveStartDate.DisplayFormat.FormatString = "dd/MM/yyyy";
     this.colLeaveStartDate.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.colLeaveStartDate.FieldName = "dtStartTime";
     this.colLeaveStartDate.Name = "colLeaveStartDate";
     this.colLeaveStartDate.Visible = true;
     this.colLeaveStartDate.VisibleIndex = 0;
     //
     // colLeaveStartTime
     //
     this.colLeaveStartTime.Caption = "Start Time";
     this.colLeaveStartTime.DisplayFormat.FormatString = "hh:mm tt";
     this.colLeaveStartTime.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.colLeaveStartTime.FieldName = "StartTime";
     this.colLeaveStartTime.Name = "colLeaveStartTime";
     this.colLeaveStartTime.Visible = true;
     this.colLeaveStartTime.VisibleIndex = 1;
     this.colLeaveStartTime.Width = 60;
     //
     // colLeaveEndTime
     //
     this.colLeaveEndTime.Caption = "End Time";
     this.colLeaveEndTime.DisplayFormat.FormatString = "hh:mm tt";
     this.colLeaveEndTime.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.colLeaveEndTime.FieldName = "EndTime";
     this.colLeaveEndTime.Name = "colLeaveEndTime";
     this.colLeaveEndTime.Visible = true;
     this.colLeaveEndTime.VisibleIndex = 2;
     this.colLeaveEndTime.Width = 56;
     //
     // gridColumn2
     //
     this.gridColumn2.Caption = "Off (Hrs)";
     this.gridColumn2.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumn2.FieldName = "nTimeOffQuantity";
     this.gridColumn2.GroupFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumn2.Name = "gridColumn2";
     this.gridColumn2.SummaryItem.DisplayFormat = "{0}";
     this.gridColumn2.SummaryItem.SummaryType = DevExpress.Data.SummaryItemType.Sum;
     this.gridColumn2.Visible = true;
     this.gridColumn2.VisibleIndex = 3;
     this.gridColumn2.Width = 70;
     //
     // gridColumn1
     //
     this.gridColumn1.Caption = "Unpaid(Hrs)";
     this.gridColumn1.FieldName = "nUnpaidTimeOff";
     this.gridColumn1.Name = "gridColumn1";
     this.gridColumn1.SummaryItem.DisplayFormat = "{0}";
     this.gridColumn1.SummaryItem.SummaryType = DevExpress.Data.SummaryItemType.Sum;
     this.gridColumn1.Visible = true;
     this.gridColumn1.VisibleIndex = 4;
     this.gridColumn1.Width = 73;
     //
     // nLeaveQuantity
     //
     this.nLeaveQuantity.Caption = "Leave (Days)";
     this.nLeaveQuantity.FieldName = "nLeaveQuantity";
     this.nLeaveQuantity.Name = "nLeaveQuantity";
     this.nLeaveQuantity.SummaryItem.DisplayFormat = "{0}";
     this.nLeaveQuantity.SummaryItem.SummaryType = DevExpress.Data.SummaryItemType.Sum;
     this.nLeaveQuantity.Visible = true;
     this.nLeaveQuantity.VisibleIndex = 5;
     this.nLeaveQuantity.Width = 78;
     //
     // nUnpaidLeave
     //
     this.nUnpaidLeave.Caption = "Unpaid (Days)";
     this.nUnpaidLeave.FieldName = "nUnpaidLeave";
     this.nUnpaidLeave.Name = "nUnpaidLeave";
     this.nUnpaidLeave.SummaryItem.DisplayFormat = "{0}";
     this.nUnpaidLeave.SummaryItem.SummaryType = DevExpress.Data.SummaryItemType.Sum;
     this.nUnpaidLeave.Visible = true;
     this.nUnpaidLeave.VisibleIndex = 6;
     this.nUnpaidLeave.Width = 85;
     //
     // colLeaveTimeOff
     //
     this.colLeaveTimeOff.Caption = "Time Off";
     this.colLeaveTimeOff.FieldName = "fTimeOff";
     this.colLeaveTimeOff.Name = "colLeaveTimeOff";
     this.colLeaveTimeOff.Width = 64;
     //
     // colfFullDay
     //
     this.colfFullDay.Caption = "Full Day";
     this.colfFullDay.FieldName = "fFullDay";
     this.colfFullDay.Name = "colfFullDay";
     this.colfFullDay.Visible = true;
     this.colfFullDay.VisibleIndex = 7;
     this.colfFullDay.Width = 54;
     //
     // colLeaveLeaveType
     //
     this.colLeaveLeaveType.Caption = "Type";
     this.colLeaveLeaveType.FieldName = "strLeaveType";
     this.colLeaveLeaveType.Name = "colLeaveLeaveType";
     this.colLeaveLeaveType.Visible = true;
     this.colLeaveLeaveType.VisibleIndex = 8;
     this.colLeaveLeaveType.Width = 68;
     //
     // colLeaveReason
     //
     this.colLeaveReason.Caption = "Reason";
     this.colLeaveReason.FieldName = "strRemarks";
     this.colLeaveReason.Name = "colLeaveReason";
     this.colLeaveReason.Visible = true;
     this.colLeaveReason.VisibleIndex = 9;
     this.colLeaveReason.Width = 62;
     //
     // colLeaveLeaveStatus
     //
     this.colLeaveLeaveStatus.Caption = "Status";
     this.colLeaveLeaveStatus.FieldName = "strStatus";
     this.colLeaveLeaveStatus.Name = "colLeaveLeaveStatus";
     this.colLeaveLeaveStatus.Visible = true;
     this.colLeaveLeaveStatus.VisibleIndex = 10;
     this.colLeaveLeaveStatus.Width = 64;
     //
     // colLeaveApprovingManager
     //
     this.colLeaveApprovingManager.Caption = "Approving Manager";
     this.colLeaveApprovingManager.FieldName = "strApprovingManager";
     this.colLeaveApprovingManager.Name = "colLeaveApprovingManager";
     this.colLeaveApprovingManager.Visible = true;
     this.colLeaveApprovingManager.VisibleIndex = 11;
     this.colLeaveApprovingManager.Width = 212;
     //
     // cbLeaveNYearID
     //
     this.cbLeaveNYearID.EditValue = "1";
     this.cbLeaveNYearID.Location = new System.Drawing.Point(60, 8);
     this.cbLeaveNYearID.Name = "cbLeaveNYearID";
     this.cbLeaveNYearID.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cbLeaveNYearID.Properties.Items.AddRange(new object[] {
     "1"});
     this.cbLeaveNYearID.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
     this.cbLeaveNYearID.Size = new System.Drawing.Size(56, 20);
     this.cbLeaveNYearID.TabIndex = 1;
     this.cbLeaveNYearID.SelectedIndexChanged += new System.EventHandler(this.cbLeaveNYearID_SelectedIndexChanged);
     //
     // lblNYearID
     //
     this.lblNYearID.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblNYearID.Location = new System.Drawing.Point(6, 10);
     this.lblNYearID.Name = "lblNYearID";
     this.lblNYearID.Size = new System.Drawing.Size(52, 18);
     this.lblNYearID.TabIndex = 15;
     this.lblNYearID.Text = "Year ID:";
     //
     // groupLeaveLeaveBalance
     //
     this.groupLeaveLeaveBalance.Appearance.BackColor = System.Drawing.SystemColors.Control;
     this.groupLeaveLeaveBalance.Appearance.Options.UseBackColor = true;
     this.groupLeaveLeaveBalance.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowOnly;
     this.groupLeaveLeaveBalance.Controls.Add(this.groupControl5);
     this.groupLeaveLeaveBalance.Location = new System.Drawing.Point(8, 286);
     this.groupLeaveLeaveBalance.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.groupLeaveLeaveBalance.LookAndFeel.UseDefaultLookAndFeel = false;
     this.groupLeaveLeaveBalance.Name = "groupLeaveLeaveBalance";
     this.groupLeaveLeaveBalance.Size = new System.Drawing.Size(990, 290);
     this.groupLeaveLeaveBalance.TabIndex = 7;
     this.groupLeaveLeaveBalance.Text = "LEAVE BALANCE";
     //
     // groupControl5
     //
     this.groupControl5.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowOnly;
     this.groupControl5.Controls.Add(this.btnConvert);
     this.groupControl5.Controls.Add(this.txtDaysConvert);
     this.groupControl5.Controls.Add(this.label36);
     this.groupControl5.Controls.Add(this.btnAdjust);
     this.groupControl5.Controls.Add(this.txtLeaveAdjust);
     this.groupControl5.Controls.Add(this.label29);
     this.groupControl5.Controls.Add(this.sbtnLeaveBalanceInquiry);
     this.groupControl5.Controls.Add(this.label25);
     this.groupControl5.Controls.Add(this.cbLeaveBalance);
     this.groupControl5.Controls.Add(this.gridctrLeaveBalance);
     this.groupControl5.Dock = System.Windows.Forms.DockStyle.Fill;
     this.groupControl5.Location = new System.Drawing.Point(2, 19);
     this.groupControl5.Name = "groupControl5";
     this.groupControl5.ShowCaption = false;
     this.groupControl5.Size = new System.Drawing.Size(986, 269);
     this.groupControl5.TabIndex = 0;
     this.groupControl5.Text = "GroupControl1";
     //
     // btnConvert
     //
     this.btnConvert.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnConvert.Location = new System.Drawing.Point(822, 10);
     this.btnConvert.Name = "btnConvert";
     this.btnConvert.Size = new System.Drawing.Size(56, 22);
     this.btnConvert.TabIndex = 21;
     this.btnConvert.Text = "Convert";
     this.btnConvert.Click += new System.EventHandler(this.button1_Click_1);
     //
     // txtDaysConvert
     //
     this.txtDaysConvert.Location = new System.Drawing.Point(782, 10);
     this.txtDaysConvert.Name = "txtDaysConvert";
     this.txtDaysConvert.Size = new System.Drawing.Size(36, 20);
     this.txtDaysConvert.TabIndex = 20;
     //
     // label36
     //
     this.label36.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label36.Location = new System.Drawing.Point(642, 12);
     this.label36.Name = "label36";
     this.label36.Size = new System.Drawing.Size(136, 20);
     this.label36.TabIndex = 19;
     this.label36.Text = "Convert Leave to Hours:";
     //
     // btnAdjust
     //
     this.btnAdjust.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnAdjust.Location = new System.Drawing.Point(518, 10);
     this.btnAdjust.Name = "btnAdjust";
     this.btnAdjust.Size = new System.Drawing.Size(46, 22);
     this.btnAdjust.TabIndex = 18;
     this.btnAdjust.Text = "Adjust";
     this.btnAdjust.Click += new System.EventHandler(this.button1_Click);
     //
     // txtLeaveAdjust
     //
     this.txtLeaveAdjust.Location = new System.Drawing.Point(478, 10);
     this.txtLeaveAdjust.Name = "txtLeaveAdjust";
     this.txtLeaveAdjust.Size = new System.Drawing.Size(36, 20);
     this.txtLeaveAdjust.TabIndex = 17;
     //
     // label29
     //
     this.label29.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label29.Location = new System.Drawing.Point(288, 12);
     this.label29.Name = "label29";
     this.label29.Size = new System.Drawing.Size(184, 20);
     this.label29.TabIndex = 15;
     this.label29.Text = "Adjustment for selected Year ID :";
     //
     // sbtnLeaveBalanceInquiry
     //
     this.sbtnLeaveBalanceInquiry.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.sbtnLeaveBalanceInquiry.Appearance.Options.UseFont = true;
     this.sbtnLeaveBalanceInquiry.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.sbtnLeaveBalanceInquiry.Location = new System.Drawing.Point(186, 10);
     this.sbtnLeaveBalanceInquiry.Name = "sbtnLeaveBalanceInquiry";
     this.sbtnLeaveBalanceInquiry.Size = new System.Drawing.Size(72, 20);
     this.sbtnLeaveBalanceInquiry.TabIndex = 2;
     this.sbtnLeaveBalanceInquiry.Text = "Inquiry";
     this.sbtnLeaveBalanceInquiry.Click += new System.EventHandler(this.sbtnLeaveBalanceInquiry_Click);
     //
     // label25
     //
     this.label25.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label25.Location = new System.Drawing.Point(8, 12);
     this.label25.Name = "label25";
     this.label25.Size = new System.Drawing.Size(40, 18);
     this.label25.TabIndex = 14;
     this.label25.Text = "Type:";
     //
     // cbLeaveBalance
     //
     this.cbLeaveBalance.EditValue = "Annual Leave balance";
     this.cbLeaveBalance.Location = new System.Drawing.Point(52, 10);
     this.cbLeaveBalance.Name = "cbLeaveBalance";
     this.cbLeaveBalance.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cbLeaveBalance.Properties.Items.AddRange(new object[] {
     "Annual Leave balance",
     "Time Off balance",
     "Misc Leave balance"});
     this.cbLeaveBalance.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
     this.cbLeaveBalance.Size = new System.Drawing.Size(130, 20);
     this.cbLeaveBalance.TabIndex = 0;
     //
     // gridctrLeaveBalance
     //
     this.gridctrLeaveBalance.EmbeddedNavigator.Name = "";
     this.gridctrLeaveBalance.Location = new System.Drawing.Point(4, 38);
     this.gridctrLeaveBalance.LookAndFeel.UseDefaultLookAndFeel = false;
     this.gridctrLeaveBalance.MainView = this.gvLeaveBalance;
     this.gridctrLeaveBalance.Name = "gridctrLeaveBalance";
     this.gridctrLeaveBalance.Size = new System.Drawing.Size(978, 226);
     this.gridctrLeaveBalance.TabIndex = 3;
     this.gridctrLeaveBalance.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gvLeaveBalance});
     //
     // gvLeaveBalance
     //
     this.gvLeaveBalance.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colLeaveBalanceDate,
     this.colLeaveBalanceTransaction,
     this.colLeaveBalanceStatus,
     this.colLeaveBalanceNoOfDays});
     this.gvLeaveBalance.GridControl = this.gridctrLeaveBalance;
     this.gvLeaveBalance.Name = "gvLeaveBalance";
     this.gvLeaveBalance.OptionsBehavior.AllowIncrementalSearch = true;
     this.gvLeaveBalance.OptionsBehavior.Editable = false;
     this.gvLeaveBalance.OptionsCustomization.AllowFilter = false;
     this.gvLeaveBalance.OptionsCustomization.AllowSort = false;
     this.gvLeaveBalance.OptionsLayout.Columns.AddNewColumns = false;
     this.gvLeaveBalance.OptionsView.ShowFooter = true;
     this.gvLeaveBalance.OptionsView.ShowGroupPanel = false;
     this.gvLeaveBalance.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.colLeaveBalanceTransaction, DevExpress.Data.ColumnSortOrder.Ascending)});
     //
     // colLeaveBalanceDate
     //
     this.colLeaveBalanceDate.Caption = "Date";
     this.colLeaveBalanceDate.DisplayFormat.FormatString = "dd/MM/yyyy";
     this.colLeaveBalanceDate.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.colLeaveBalanceDate.FieldName = "dtDate";
     this.colLeaveBalanceDate.Name = "colLeaveBalanceDate";
     this.colLeaveBalanceDate.Visible = true;
     this.colLeaveBalanceDate.VisibleIndex = 0;
     this.colLeaveBalanceDate.Width = 173;
     //
     // colLeaveBalanceTransaction
     //
     this.colLeaveBalanceTransaction.Caption = "Transaction";
     this.colLeaveBalanceTransaction.FieldName = "Transaction";
     this.colLeaveBalanceTransaction.Name = "colLeaveBalanceTransaction";
     this.colLeaveBalanceTransaction.Visible = true;
     this.colLeaveBalanceTransaction.VisibleIndex = 1;
     this.colLeaveBalanceTransaction.Width = 512;
     //
     // colLeaveBalanceStatus
     //
     this.colLeaveBalanceStatus.Caption = "Status";
     this.colLeaveBalanceStatus.FieldName = "strStatus";
     this.colLeaveBalanceStatus.Name = "colLeaveBalanceStatus";
     this.colLeaveBalanceStatus.Visible = true;
     this.colLeaveBalanceStatus.VisibleIndex = 2;
     this.colLeaveBalanceStatus.Width = 172;
     //
     // colLeaveBalanceNoOfDays
     //
     this.colLeaveBalanceNoOfDays.Caption = "No. of Days";
     this.colLeaveBalanceNoOfDays.FieldName = "NoOfDays";
     this.colLeaveBalanceNoOfDays.Name = "colLeaveBalanceNoOfDays";
     this.colLeaveBalanceNoOfDays.SummaryItem.SummaryType = DevExpress.Data.SummaryItemType.Sum;
     this.colLeaveBalanceNoOfDays.Visible = true;
     this.colLeaveBalanceNoOfDays.VisibleIndex = 3;
     this.colLeaveBalanceNoOfDays.Width = 100;
     //
     // groupLeaveRoster
     //
     this.groupLeaveRoster.Appearance.BackColor = System.Drawing.SystemColors.Control;
     this.groupLeaveRoster.Appearance.Options.UseBackColor = true;
     this.groupLeaveRoster.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowOnly;
     this.groupLeaveRoster.Controls.Add(this.groupControl2);
     this.groupLeaveRoster.Controls.Add(this.panelControl1);
     this.groupLeaveRoster.Controls.Add(this.sbtnLeaveNextMonth);
     this.groupLeaveRoster.Controls.Add(this.sbtnLeavePreviousMonth);
     this.groupLeaveRoster.Location = new System.Drawing.Point(8, 30);
     this.groupLeaveRoster.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.groupLeaveRoster.LookAndFeel.UseDefaultLookAndFeel = false;
     this.groupLeaveRoster.Name = "groupLeaveRoster";
     this.groupLeaveRoster.Size = new System.Drawing.Size(994, 576);
     this.groupLeaveRoster.TabIndex = 1;
     this.groupLeaveRoster.Text = "ROSTER";
     //
     // groupControl2
     //
     this.groupControl2.Appearance.BackColor = System.Drawing.SystemColors.Control;
     this.groupControl2.Appearance.ForeColor = System.Drawing.Color.Black;
     this.groupControl2.Appearance.Options.UseBackColor = true;
     this.groupControl2.Appearance.Options.UseForeColor = true;
     this.groupControl2.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowOnly;
     this.groupControl2.Controls.Add(this.label23);
     this.groupControl2.Controls.Add(this.label24);
     this.groupControl2.Controls.Add(this.label21);
     this.groupControl2.Controls.Add(this.label22);
     this.groupControl2.Controls.Add(this.label19);
     this.groupControl2.Controls.Add(this.label20);
     this.groupControl2.Controls.Add(this.label18);
     this.groupControl2.Controls.Add(this.label4);
     this.groupControl2.Location = new System.Drawing.Point(694, 38);
     this.groupControl2.Name = "groupControl2";
     this.groupControl2.Size = new System.Drawing.Size(210, 138);
     this.groupControl2.TabIndex = 30;
     this.groupControl2.Text = "Legend";
     //
     // label23
     //
     this.label23.Location = new System.Drawing.Point(42, 114);
     this.label23.Name = "label23";
     this.label23.Size = new System.Drawing.Size(162, 16);
     this.label23.TabIndex = 7;
     this.label23.Text = "Time off";
     //
     // label24
     //
     this.label24.BackColor = System.Drawing.Color.Green;
     this.label24.Location = new System.Drawing.Point(10, 108);
     this.label24.Name = "label24";
     this.label24.Size = new System.Drawing.Size(26, 23);
     this.label24.TabIndex = 6;
     //
     // label21
     //
     this.label21.Location = new System.Drawing.Point(42, 84);
     this.label21.Name = "label21";
     this.label21.Size = new System.Drawing.Size(162, 16);
     this.label21.TabIndex = 5;
     this.label21.Text = "Full day leave";
     //
     // label22
     //
     this.label22.BackColor = System.Drawing.Color.LightBlue;
     this.label22.Location = new System.Drawing.Point(10, 78);
     this.label22.Name = "label22";
     this.label22.Size = new System.Drawing.Size(26, 23);
     this.label22.TabIndex = 4;
     //
     // label19
     //
     this.label19.Location = new System.Drawing.Point(42, 56);
     this.label19.Name = "label19";
     this.label19.Size = new System.Drawing.Size(162, 16);
     this.label19.TabIndex = 3;
     this.label19.Text = "Half day leave";
     //
     // label20
     //
     this.label20.BackColor = System.Drawing.Color.Yellow;
     this.label20.Location = new System.Drawing.Point(10, 50);
     this.label20.Name = "label20";
     this.label20.Size = new System.Drawing.Size(26, 23);
     this.label20.TabIndex = 2;
     //
     // label18
     //
     this.label18.Location = new System.Drawing.Point(42, 28);
     this.label18.Name = "label18";
     this.label18.Size = new System.Drawing.Size(162, 16);
     this.label18.TabIndex = 1;
     this.label18.Text = "Applied leave in pending status";
     //
     // label4
     //
     this.label4.BackColor = System.Drawing.Color.Red;
     this.label4.Location = new System.Drawing.Point(10, 22);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(26, 23);
     this.label4.TabIndex = 0;
     //
     // panelControl1
     //
     this.panelControl1.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowOnly;
     this.panelControl1.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl1.Controls.Add(this.acmsRosterHeader6);
     this.panelControl1.Controls.Add(this.acmsRosterHeader5);
     this.panelControl1.Controls.Add(this.acmsRosterHeader4);
     this.panelControl1.Controls.Add(this.acmsRosterHeader3);
     this.panelControl1.Controls.Add(this.acmsRosterHeader2);
     this.panelControl1.Controls.Add(this.acmsRosterHeader1);
     this.panelControl1.Location = new System.Drawing.Point(6, 44);
     this.panelControl1.Name = "panelControl1";
     this.panelControl1.Size = new System.Drawing.Size(668, 530);
     this.panelControl1.TabIndex = 29;
     //
     // acmsRosterHeader6
     //
     this.acmsRosterHeader6.dtLeaveDetails = null;
     this.acmsRosterHeader6.dtRoster = null;
     this.acmsRosterHeader6.dtRosterDetail = null;
     this.acmsRosterHeader6.EmpID = null;
     this.acmsRosterHeader6.IsShowLeave = false;
     this.acmsRosterHeader6.Location = new System.Drawing.Point(-146, 442);
     this.acmsRosterHeader6.Name = "acmsRosterHeader6";
     this.acmsRosterHeader6.ShowHeaderLabel = false;
     this.acmsRosterHeader6.Size = new System.Drawing.Size(794, 85);
     this.acmsRosterHeader6.TabIndex = 5;
     this.acmsRosterHeader6.WeekDay = null;
     this.acmsRosterHeader6.WeekNo = null;
     this.acmsRosterHeader6.year = null;
     this.acmsRosterHeader6.Click += new System.EventHandler(this.acmsRosterHeader_Click);
     //
     // acmsRosterHeader5
     //
     this.acmsRosterHeader5.dtLeaveDetails = null;
     this.acmsRosterHeader5.dtRoster = null;
     this.acmsRosterHeader5.dtRosterDetail = null;
     this.acmsRosterHeader5.EmpID = null;
     this.acmsRosterHeader5.IsShowLeave = false;
     this.acmsRosterHeader5.Location = new System.Drawing.Point(-146, 354);
     this.acmsRosterHeader5.Name = "acmsRosterHeader5";
     this.acmsRosterHeader5.ShowHeaderLabel = false;
     this.acmsRosterHeader5.Size = new System.Drawing.Size(794, 85);
     this.acmsRosterHeader5.TabIndex = 4;
     this.acmsRosterHeader5.WeekDay = null;
     this.acmsRosterHeader5.WeekNo = null;
     this.acmsRosterHeader5.year = null;
     this.acmsRosterHeader5.Click += new System.EventHandler(this.acmsRosterHeader_Click);
     //
     // acmsRosterHeader4
     //
     this.acmsRosterHeader4.dtLeaveDetails = null;
     this.acmsRosterHeader4.dtRoster = null;
     this.acmsRosterHeader4.dtRosterDetail = null;
     this.acmsRosterHeader4.EmpID = null;
     this.acmsRosterHeader4.IsShowLeave = false;
     this.acmsRosterHeader4.Location = new System.Drawing.Point(-146, 266);
     this.acmsRosterHeader4.Name = "acmsRosterHeader4";
     this.acmsRosterHeader4.ShowHeaderLabel = false;
     this.acmsRosterHeader4.Size = new System.Drawing.Size(794, 85);
     this.acmsRosterHeader4.TabIndex = 3;
     this.acmsRosterHeader4.WeekDay = null;
     this.acmsRosterHeader4.WeekNo = null;
     this.acmsRosterHeader4.year = null;
     this.acmsRosterHeader4.Click += new System.EventHandler(this.acmsRosterHeader_Click);
     //
     // acmsRosterHeader3
     //
     this.acmsRosterHeader3.dtLeaveDetails = null;
     this.acmsRosterHeader3.dtRoster = null;
     this.acmsRosterHeader3.dtRosterDetail = null;
     this.acmsRosterHeader3.EmpID = null;
     this.acmsRosterHeader3.IsShowLeave = false;
     this.acmsRosterHeader3.Location = new System.Drawing.Point(-146, 178);
     this.acmsRosterHeader3.Name = "acmsRosterHeader3";
     this.acmsRosterHeader3.ShowHeaderLabel = false;
     this.acmsRosterHeader3.Size = new System.Drawing.Size(794, 85);
     this.acmsRosterHeader3.TabIndex = 2;
     this.acmsRosterHeader3.WeekDay = null;
     this.acmsRosterHeader3.WeekNo = null;
     this.acmsRosterHeader3.year = null;
     this.acmsRosterHeader3.Click += new System.EventHandler(this.acmsRosterHeader_Click);
     //
     // acmsRosterHeader2
     //
     this.acmsRosterHeader2.dtLeaveDetails = null;
     this.acmsRosterHeader2.dtRoster = null;
     this.acmsRosterHeader2.dtRosterDetail = null;
     this.acmsRosterHeader2.EmpID = null;
     this.acmsRosterHeader2.IsShowLeave = false;
     this.acmsRosterHeader2.Location = new System.Drawing.Point(-146, 90);
     this.acmsRosterHeader2.Name = "acmsRosterHeader2";
     this.acmsRosterHeader2.ShowHeaderLabel = false;
     this.acmsRosterHeader2.Size = new System.Drawing.Size(794, 85);
     this.acmsRosterHeader2.TabIndex = 1;
     this.acmsRosterHeader2.WeekDay = null;
     this.acmsRosterHeader2.WeekNo = null;
     this.acmsRosterHeader2.year = null;
     this.acmsRosterHeader2.Click += new System.EventHandler(this.acmsRosterHeader_Click);
     //
     // acmsRosterHeader1
     //
     this.acmsRosterHeader1.dtLeaveDetails = null;
     this.acmsRosterHeader1.dtRoster = null;
     this.acmsRosterHeader1.dtRosterDetail = null;
     this.acmsRosterHeader1.EmpID = null;
     this.acmsRosterHeader1.IsShowLeave = false;
     this.acmsRosterHeader1.Location = new System.Drawing.Point(-146, 2);
     this.acmsRosterHeader1.Name = "acmsRosterHeader1";
     this.acmsRosterHeader1.ShowHeaderLabel = false;
     this.acmsRosterHeader1.Size = new System.Drawing.Size(794, 85);
     this.acmsRosterHeader1.TabIndex = 0;
     this.acmsRosterHeader1.WeekDay = null;
     this.acmsRosterHeader1.WeekNo = null;
     this.acmsRosterHeader1.year = null;
     this.acmsRosterHeader1.Click += new System.EventHandler(this.acmsRosterHeader_Click);
     //
     // sbtnLeaveNextMonth
     //
     this.sbtnLeaveNextMonth.Appearance.BackColor = System.Drawing.Color.LightGray;
     this.sbtnLeaveNextMonth.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.sbtnLeaveNextMonth.Appearance.Options.UseBackColor = true;
     this.sbtnLeaveNextMonth.Appearance.Options.UseFont = true;
     this.sbtnLeaveNextMonth.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.sbtnLeaveNextMonth.Location = new System.Drawing.Point(572, 22);
     this.sbtnLeaveNextMonth.Name = "sbtnLeaveNextMonth";
     this.sbtnLeaveNextMonth.Size = new System.Drawing.Size(80, 20);
     this.sbtnLeaveNextMonth.TabIndex = 1;
     this.sbtnLeaveNextMonth.Text = "Next >>";
     this.sbtnLeaveNextMonth.Click += new System.EventHandler(this.sbtnLeaveNextMonth_Click);
     //
     // sbtnLeavePreviousMonth
     //
     this.sbtnLeavePreviousMonth.Appearance.BackColor = System.Drawing.Color.LightGray;
     this.sbtnLeavePreviousMonth.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.sbtnLeavePreviousMonth.Appearance.Options.UseBackColor = true;
     this.sbtnLeavePreviousMonth.Appearance.Options.UseFont = true;
     this.sbtnLeavePreviousMonth.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.sbtnLeavePreviousMonth.Location = new System.Drawing.Point(12, 22);
     this.sbtnLeavePreviousMonth.Name = "sbtnLeavePreviousMonth";
     this.sbtnLeavePreviousMonth.Size = new System.Drawing.Size(80, 20);
     this.sbtnLeavePreviousMonth.TabIndex = 0;
     this.sbtnLeavePreviousMonth.Text = "<<Previous";
     this.sbtnLeavePreviousMonth.Click += new System.EventHandler(this.sbtnLeavePreviousMonth_Click);
     //
     // luedtLeaveEmployeeID
     //
     this.luedtLeaveEmployeeID.Location = new System.Drawing.Point(778, 2);
     this.luedtLeaveEmployeeID.Name = "luedtLeaveEmployeeID";
     this.luedtLeaveEmployeeID.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.luedtLeaveEmployeeID.Size = new System.Drawing.Size(208, 20);
     this.luedtLeaveEmployeeID.TabIndex = 3;
     this.luedtLeaveEmployeeID.EditValueChanged += new System.EventHandler(this.luedtLeaveEmployeeID_EditValueChanged);
     //
     // lblLeaveEmployeeID
     //
     this.lblLeaveEmployeeID.AutoSize = true;
     this.lblLeaveEmployeeID.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblLeaveEmployeeID.Location = new System.Drawing.Point(690, 6);
     this.lblLeaveEmployeeID.Name = "lblLeaveEmployeeID";
     this.lblLeaveEmployeeID.Size = new System.Drawing.Size(88, 16);
     this.lblLeaveEmployeeID.TabIndex = 32;
     this.lblLeaveEmployeeID.Text = "Staff Name:";
     //
     // tabStaffSeven
     //
     this.tabStaffSeven.Appearance.Header.Font = new System.Drawing.Font("Tahoma", 11.25F, System.Drawing.FontStyle.Bold);
     this.tabStaffSeven.Appearance.Header.Options.UseFont = true;
     this.tabStaffSeven.Controls.Add(this.groupControl17);
     this.tabStaffSeven.Name = "tabStaffSeven";
     this.tabStaffSeven.Size = new System.Drawing.Size(1007, 612);
     this.tabStaffSeven.Text = "To-Do-List";
     //
     // groupControl17
     //
     this.groupControl17.Appearance.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.groupControl17.Appearance.Options.UseFont = true;
     this.groupControl17.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowOnly;
     this.groupControl17.Location = new System.Drawing.Point(0, 0);
     this.groupControl17.Name = "groupControl17";
     this.groupControl17.Size = new System.Drawing.Size(992, 576);
     this.groupControl17.TabIndex = 1;
     this.groupControl17.Text = "You Won\'t Behind Schedule Anymore";
     //
     // tabStaffEight
     //
     this.tabStaffEight.Appearance.Header.Font = new System.Drawing.Font("Tahoma", 11.25F, System.Drawing.FontStyle.Bold);
     this.tabStaffEight.Appearance.Header.Options.UseFont = true;
     this.tabStaffEight.Controls.Add(this.xtraTabControl1);
     this.tabStaffEight.Controls.Add(this.groupControl18);
     this.tabStaffEight.Name = "tabStaffEight";
     this.tabStaffEight.Size = new System.Drawing.Size(1007, 612);
     this.tabStaffEight.Text = "Work Flow";
     //
     // xtraTabControl1
     //
     this.xtraTabControl1.Location = new System.Drawing.Point(0, 337);
     this.xtraTabControl1.Name = "xtraTabControl1";
     this.xtraTabControl1.SelectedTabPage = this.xtraTabPage1;
     this.xtraTabControl1.Size = new System.Drawing.Size(1004, 281);
     this.xtraTabControl1.TabIndex = 3;
     this.xtraTabControl1.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
     this.xtraTabPage1,
     this.xtraTabPage2,
     this.xtraTabPage3});
     this.xtraTabControl1.Text = "xtraTabControl1";
     //
     // xtraTabPage1
     //
     this.xtraTabPage1.Controls.Add(this.memoEdit2);
     this.xtraTabPage1.Controls.Add(this.labelControl1);
     this.xtraTabPage1.Image = ((System.Drawing.Image)(resources.GetObject("xtraTabPage1.Image")));
     this.xtraTabPage1.Name = "xtraTabPage1";
     this.xtraTabPage1.Size = new System.Drawing.Size(995, 240);
     this.xtraTabPage1.Text = "Detail";
     //
     // memoEdit2
     //
     this.memoEdit2.EditValue = "";
     this.memoEdit2.Location = new System.Drawing.Point(10, 33);
     this.memoEdit2.Name = "memoEdit2";
     this.memoEdit2.Size = new System.Drawing.Size(706, 187);
     this.memoEdit2.TabIndex = 6;
     //
     // labelControl1
     //
     this.labelControl1.Location = new System.Drawing.Point(12, 8);
     this.labelControl1.Name = "labelControl1";
     this.labelControl1.Size = new System.Drawing.Size(53, 13);
     this.labelControl1.TabIndex = 0;
     this.labelControl1.Text = "Description";
     //
     // xtraTabPage2
     //
     this.xtraTabPage2.Controls.Add(this.lookUpEdit4);
     this.xtraTabPage2.Controls.Add(this.label40);
     this.xtraTabPage2.Controls.Add(this.lookUpEdit3);
     this.xtraTabPage2.Controls.Add(this.label39);
     this.xtraTabPage2.Controls.Add(this.lookUpEdit2);
     this.xtraTabPage2.Controls.Add(this.label38);
     this.xtraTabPage2.Controls.Add(this.lookUpEdit1);
     this.xtraTabPage2.Controls.Add(this.label28);
     this.xtraTabPage2.Image = ((System.Drawing.Image)(resources.GetObject("xtraTabPage2.Image")));
     this.xtraTabPage2.Name = "xtraTabPage2";
     this.xtraTabPage2.Size = new System.Drawing.Size(995, 240);
     this.xtraTabPage2.Text = "Attachment";
     //
     // lookUpEdit4
     //
     this.lookUpEdit4.Location = new System.Drawing.Point(100, 39);
     this.lookUpEdit4.Name = "lookUpEdit4";
     this.lookUpEdit4.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lookUpEdit4.Size = new System.Drawing.Size(139, 20);
     this.lookUpEdit4.TabIndex = 7;
     //
     // label40
     //
     this.label40.AutoSize = true;
     this.label40.Location = new System.Drawing.Point(19, 43);
     this.label40.Name = "label40";
     this.label40.Size = new System.Drawing.Size(61, 13);
     this.label40.TabIndex = 6;
     this.label40.Text = "Attachment";
     //
     // lookUpEdit3
     //
     this.lookUpEdit3.Location = new System.Drawing.Point(100, 70);
     this.lookUpEdit3.Name = "lookUpEdit3";
     this.lookUpEdit3.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lookUpEdit3.Size = new System.Drawing.Size(139, 20);
     this.lookUpEdit3.TabIndex = 5;
     //
     // label39
     //
     this.label39.AutoSize = true;
     this.label39.Location = new System.Drawing.Point(19, 77);
     this.label39.Name = "label39";
     this.label39.Size = new System.Drawing.Size(61, 13);
     this.label39.TabIndex = 4;
     this.label39.Text = "Attachment";
     //
     // lookUpEdit2
     //
     this.lookUpEdit2.Location = new System.Drawing.Point(100, 106);
     this.lookUpEdit2.Name = "lookUpEdit2";
     this.lookUpEdit2.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lookUpEdit2.Size = new System.Drawing.Size(139, 20);
     this.lookUpEdit2.TabIndex = 3;
     //
     // label38
     //
     this.label38.AutoSize = true;
     this.label38.Location = new System.Drawing.Point(19, 110);
     this.label38.Name = "label38";
     this.label38.Size = new System.Drawing.Size(61, 13);
     this.label38.TabIndex = 2;
     this.label38.Text = "Attachment";
     //
     // lookUpEdit1
     //
     this.lookUpEdit1.Location = new System.Drawing.Point(100, 10);
     this.lookUpEdit1.Name = "lookUpEdit1";
     this.lookUpEdit1.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lookUpEdit1.Size = new System.Drawing.Size(139, 20);
     this.lookUpEdit1.TabIndex = 1;
     //
     // label28
     //
     this.label28.AutoSize = true;
     this.label28.Location = new System.Drawing.Point(19, 14);
     this.label28.Name = "label28";
     this.label28.Size = new System.Drawing.Size(61, 13);
     this.label28.TabIndex = 0;
     this.label28.Text = "Attachment";
     //
     // xtraTabPage3
     //
     this.xtraTabPage3.Image = ((System.Drawing.Image)(resources.GetObject("xtraTabPage3.Image")));
     this.xtraTabPage3.Name = "xtraTabPage3";
     this.xtraTabPage3.Size = new System.Drawing.Size(995, 240);
     this.xtraTabPage3.Text = "Video";
     //
     // groupControl18
     //
     this.groupControl18.Appearance.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.groupControl18.Appearance.Options.UseFont = true;
     this.groupControl18.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowOnly;
     this.groupControl18.Dock = System.Windows.Forms.DockStyle.Top;
     this.groupControl18.Location = new System.Drawing.Point(0, 0);
     this.groupControl18.Name = "groupControl18";
     this.groupControl18.Size = new System.Drawing.Size(1007, 337);
     this.groupControl18.TabIndex = 2;
     this.groupControl18.Text = "You Won\'t Behind Schedule Anymore";
     //
     // timer1
     //
     this.timer1.Tick += new System.EventHandler(this.timer1_Tick);
     //
     // frmStaff
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize = new System.Drawing.Size(1016, 713);
     this.Controls.Add(this.tabStaff);
     this.Controls.Add(this.barDockControlLeft);
     this.Controls.Add(this.barDockControlRight);
     this.Controls.Add(this.barDockControlBottom);
     this.Controls.Add(this.barDockControlTop);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Menu = this.MainMenu1;
     this.Name = "frmStaff";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "ACMS Staff";
     this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
     this.Load += new System.EventHandler(this.frmStaff_Load);
     this.Closing += new System.ComponentModel.CancelEventHandler(this.frmStaff_Closing);
     ((System.ComponentModel.ISupportInitialize)(this.BarManager1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.BarAndDockingController1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tabStaff)).EndInit();
     this.tabStaff.ResumeLayout(false);
     this.tabStaffOne.ResumeLayout(false);
     this.tabStaffOne.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.luedtMemoEmployeeID.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupMessages)).EndInit();
     this.groupMessages.ResumeLayout(false);
     this.groupMessages.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupMessagesEntry)).EndInit();
     this.groupMessagesEntry.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.cbViewMemo.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gctrMemo)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvMemo)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupMessagesFollowUpAction)).EndInit();
     this.groupMessagesFollowUpAction.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.GroupControl4)).EndInit();
     this.GroupControl4.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gctrReplies)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvReplies)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupMessagesMemoInfo)).EndInit();
     this.groupMessagesMemoInfo.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.GroupControl8)).EndInit();
     this.GroupControl8.ResumeLayout(false);
     this.GroupControl8.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.memoedtMessage.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupMessagesReceipient)).EndInit();
     this.groupMessagesReceipient.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.GroupControl6)).EndInit();
     this.GroupControl6.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.cbMemoReceipient.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gctrReceipient)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvReceipient)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupReceipientGroup)).EndInit();
     this.groupReceipientGroup.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupReceipientGroupEntry)).EndInit();
     this.groupReceipientGroupEntry.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gctrRecpGrp)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvRecpGrp)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupReceipientGroupReceipientEntries)).EndInit();
     this.groupReceipientGroupReceipientEntries.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.GroupControl10)).EndInit();
     this.GroupControl10.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gctrRecpEntry)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvRecpEntry)).EndInit();
     this.tabStaffTwo.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupService)).EndInit();
     this.groupService.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupServiceEntry)).EndInit();
     this.groupServiceEntry.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl3)).EndInit();
     this.groupControl3.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.luedtCommissionServiceBranch.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbServiceYear.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbServiceMonth.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbServiceServiceType.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gctrService)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvService)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupSales)).EndInit();
     this.groupSales.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupSalesEntry)).EndInit();
     this.groupSalesEntry.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl7)).EndInit();
     this.groupControl7.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.luedtSalesBranchCode.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbSalesYear.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbSalesMonth.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbSalesType.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gctrSales)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvSales)).EndInit();
     this.tabStaffThree.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupTimesheet)).EndInit();
     this.groupTimesheet.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupTimesheetEntry)).EndInit();
     this.groupTimesheetEntry.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl9)).EndInit();
     this.groupControl9.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.cbTimesheetYear.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbTimesheetMonth.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridctrTimesheet)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvTimesheet)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupOvertime)).EndInit();
     this.groupOvertime.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl15)).EndInit();
     this.groupControl15.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl16)).EndInit();
     this.groupControl16.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.cbOvertimeYear.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbOvertimeMonth.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridctrOvertime)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvOvertime)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupLateness)).EndInit();
     this.groupLateness.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl13)).EndInit();
     this.groupControl13.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl14)).EndInit();
     this.groupControl14.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.cbLatenessYear.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbLatenessMonth.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridctrLateness)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvLateness)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTimeEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTimeEdit2)).EndInit();
     this.tabStaffFour.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupAppointment)).EndInit();
     this.groupAppointment.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupAppointmentEntry)).EndInit();
     this.groupAppointmentEntry.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl12)).EndInit();
     this.groupControl12.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.cbAppointmentYear.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbAppointmentMonth.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridctrAppointment)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvAppointment)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupContact)).EndInit();
     this.groupContact.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupContactEntry)).EndInit();
     this.groupContactEntry.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridctrContact)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvContact)).EndInit();
     this.tabStaffFive.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupCustomerVoice)).EndInit();
     this.groupCustomerVoice.ResumeLayout(false);
     this.groupCustomerVoice.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.GroupControl24)).EndInit();
     this.GroupControl24.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.luedtCVSubmitter.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbListCV.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gctrCV)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvCV)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.luedtCVAssignTo.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupCustomerVoiceActionHistory)).EndInit();
     this.groupCustomerVoiceActionHistory.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.GroupControl26)).EndInit();
     this.GroupControl26.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gctrCVAction)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvCVAction)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupCustomerVoiceCVDetails)).EndInit();
     this.groupCustomerVoiceCVDetails.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.GroupControl28)).EndInit();
     this.GroupControl28.ResumeLayout(false);
     this.GroupControl28.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtHomeNo.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtEmail.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtContactNo.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.memoeditSummaryCV.Properties)).EndInit();
     this.tabStaffSix.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
     this.groupControl1.ResumeLayout(false);
     this.groupControl1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupLeave)).EndInit();
     this.groupLeave.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupLeaveLeaveDetails)).EndInit();
     this.groupLeaveLeaveDetails.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl11)).EndInit();
     this.groupControl11.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.cbLeaveStatus.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtLeaveEntitlement.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateedtLeaveJoinDate.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateedtLeaveJoinDate.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridctrLeaveDetail)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvLeave)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbLeaveNYearID.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupLeaveLeaveBalance)).EndInit();
     this.groupLeaveLeaveBalance.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl5)).EndInit();
     this.groupControl5.ResumeLayout(false);
     this.groupControl5.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cbLeaveBalance.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridctrLeaveBalance)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvLeaveBalance)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupLeaveRoster)).EndInit();
     this.groupLeaveRoster.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).EndInit();
     this.groupControl2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
     this.panelControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.luedtLeaveEmployeeID.Properties)).EndInit();
     this.tabStaffSeven.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl17)).EndInit();
     this.tabStaffEight.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl1)).EndInit();
     this.xtraTabControl1.ResumeLayout(false);
     this.xtraTabPage1.ResumeLayout(false);
     this.xtraTabPage1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.memoEdit2.Properties)).EndInit();
     this.xtraTabPage2.ResumeLayout(false);
     this.xtraTabPage2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.lookUpEdit4.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lookUpEdit3.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lookUpEdit2.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lookUpEdit1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl18)).EndInit();
     this.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.advBandedGridView1 = new DevExpress.XtraGrid.Views.BandedGrid.AdvBandedGridView();
			this.gridBand1 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
			this.gridControl_TeaDutyAsign = new DevExpress.XtraGrid.GridControl();
			this.gridView1 = new DevExpress.XtraGrid.Views.Grid.GridView();
			this.gridColumn2 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn3 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn11 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn12 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn4 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.repositoryItemPopupContainerEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemPopupContainerEdit();
			this.popupContainerControl1 = new DevExpress.XtraEditors.PopupContainerControl();
			this.checkedListBoxControl1 = new DevExpress.XtraEditors.CheckedListBoxControl();
			this.toolTipController1 = new DevExpress.Utils.ToolTipController(this.components);
			this.gridColumn5 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.repositoryItemPopupContainerEdit2 = new DevExpress.XtraEditors.Repository.RepositoryItemPopupContainerEdit();
			this.popupContainerControl2 = new DevExpress.XtraEditors.PopupContainerControl();
			this.checkedListBoxControl2 = new DevExpress.XtraEditors.CheckedListBoxControl();
			this.gridColumn6 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.repositoryItemPopupContainerEdit3 = new DevExpress.XtraEditors.Repository.RepositoryItemPopupContainerEdit();
			this.popupContainerControl3 = new DevExpress.XtraEditors.PopupContainerControl();
			this.checkedListBoxControl3 = new DevExpress.XtraEditors.CheckedListBoxControl();
			this.gridColumn7 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.repositoryItemPopupContainerEdit4 = new DevExpress.XtraEditors.Repository.RepositoryItemPopupContainerEdit();
			this.popupContainerControl4 = new DevExpress.XtraEditors.PopupContainerControl();
			this.checkedListBoxControl4 = new DevExpress.XtraEditors.CheckedListBoxControl();
			this.gridColumn8 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.repositoryItemPopupContainerEdit5 = new DevExpress.XtraEditors.Repository.RepositoryItemPopupContainerEdit();
			this.popupContainerControl5 = new DevExpress.XtraEditors.PopupContainerControl();
			this.checkedListBoxControl5 = new DevExpress.XtraEditors.CheckedListBoxControl();
			this.gridColumn9 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.repositoryItemPopupContainerEdit6 = new DevExpress.XtraEditors.Repository.RepositoryItemPopupContainerEdit();
			this.popupContainerControl6 = new DevExpress.XtraEditors.PopupContainerControl();
			this.checkedListBoxControl6 = new DevExpress.XtraEditors.CheckedListBoxControl();
			this.gridColumn10 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.repositoryItemPopupContainerEdit7 = new DevExpress.XtraEditors.Repository.RepositoryItemPopupContainerEdit();
			this.popupContainerControl7 = new DevExpress.XtraEditors.PopupContainerControl();
			this.checkedListBoxControl7 = new DevExpress.XtraEditors.CheckedListBoxControl();
			this.gridColumn1 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.repositoryItemLookUpEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
			this.xtraTabControl_TeaDutyDetailInfo = new DevExpress.XtraTab.XtraTabControl();
			this.xtraTabPage_TeaDutyDetails = new DevExpress.XtraTab.XtraTabPage();
			this.groupControl_TeaDutyAsign = new DevExpress.XtraEditors.GroupControl();
			this.simpleButton_SaveDutyAsign = new DevExpress.XtraEditors.SimpleButton();
			this.notePanel2 = new DevExpress.Utils.Frames.NotePanel();
			this.groupControl_TeaDutyDetailsMgmt = new DevExpress.XtraEditors.GroupControl();
			this.splitContainerControl_DutyMgmt = new DevExpress.XtraEditors.SplitContainerControl();
			this.textEdit_DutyStartTime = new DevExpress.XtraEditors.TextEdit();
			this.dataNavigator_DutyDetails = new DevExpress.XtraEditors.DataNavigator();
			this.notePanel_DutyDetailsTitle = new DevExpress.Utils.Frames.NotePanel();
			this.pnlHint_DutyName = new DevExpress.Utils.Frames.NotePanel();
			this.label_ReqOfDutyName = new System.Windows.Forms.Label();
			this.textEdit_AddDutyName = new DevExpress.XtraEditors.TextEdit();
			this.notePanel_DutyStartTime = new DevExpress.Utils.Frames.NotePanel();
			this.label_ReqOfDutyEndTime = new System.Windows.Forms.Label();
			this.notePanel_DutyRemark = new DevExpress.Utils.Frames.NotePanel();
			this.textEdit_AddDutyRemark = new DevExpress.XtraEditors.TextEdit();
			this.notePanel_DutyEndTime = new DevExpress.Utils.Frames.NotePanel();
			this.label_ReqOfDutyStartTime = new System.Windows.Forms.Label();
			this.textEdit_DutyEndTime = new DevExpress.XtraEditors.TextEdit();
			this.simpleButton_TeaDutySave = new DevExpress.XtraEditors.SimpleButton();
			this.simpleButton_LoadCurDuty = new DevExpress.XtraEditors.SimpleButton();
			this.simpleButton_LoadHisDuty = new DevExpress.XtraEditors.SimpleButton();
			this.dateEdit_DutyHistory = new DevExpress.XtraEditors.DateEdit();
			this.notePanel_DutyHistory = new DevExpress.Utils.Frames.NotePanel();
			this.comboBoxEdit_DutySearTeaClass = new DevExpress.XtraEditors.ComboBoxEdit();
			this.comboBoxEdit_DutySearTeaGarde = new DevExpress.XtraEditors.ComboBoxEdit();
			this.textEdit_DutySearTeaID = new DevExpress.XtraEditors.TextEdit();
			this.notePanel_AsignDutyByTeaID = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_TeaDutyAsignSearTitle = new DevExpress.Utils.Frames.NotePanel();
			this.notePannotePanel_AsignDutyByTeaGrade = new DevExpress.Utils.Frames.NotePanel();
			this.notePannotePanel_AsignDutyByTeaName = new DevExpress.Utils.Frames.NotePanel();
			this.notePannotePanel_AsignDutyByTeaClass = new DevExpress.Utils.Frames.NotePanel();
			this.textEdit_DutySearTeaName = new DevExpress.XtraEditors.TextEdit();
			this.simpleButton_TeaSearForDuty = new DevExpress.XtraEditors.SimpleButton();
			this.xtraTabPage_TeaOnDutyInfo = new DevExpress.XtraTab.XtraTabPage();
			this.groupControl_TeaDutyDetailsStatistic = new DevExpress.XtraEditors.GroupControl();
			this.textEdit_TeaOut = new DevExpress.XtraEditors.TextEdit();
			this.textEdit_TeaShouldAttend = new DevExpress.XtraEditors.TextEdit();
			this.textEdit_TeaAttend = new DevExpress.XtraEditors.TextEdit();
			this.textEdit_TeaAbsence = new DevExpress.XtraEditors.TextEdit();
			this.textEdit_TeaOffTime = new DevExpress.XtraEditors.TextEdit();
			this.textEdit_TeaOnTime = new DevExpress.XtraEditors.TextEdit();
			this.notePanel_TeaOut = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_TeaShouldAttend = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_TeaOnTime = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_TeaOffTime = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_TeaAttend = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_TeaAbsence = new DevExpress.Utils.Frames.NotePanel();
			this.groupControl_TeaDutyDetailsSearch = new DevExpress.XtraEditors.GroupControl();
			this.simpleButton4 = new DevExpress.XtraEditors.SimpleButton();
			this.comboBoxEdit_TeaDutyDetailsFlowType = new DevExpress.XtraEditors.ComboBoxEdit();
			this.notePanel_TeaDutyDetailsFlowType = new DevExpress.Utils.Frames.NotePanel();
			this.comboBoxEdit_TeaDutyDetailsSerType = new DevExpress.XtraEditors.ComboBoxEdit();
			this.notePanel_TeaDutyDetailsSerType = new DevExpress.Utils.Frames.NotePanel();
			this.simpleButton_SearTeaDutyDetails = new DevExpress.XtraEditors.SimpleButton();
			this.dateEdit_TeaDutyDetailsSearByStartTime = new DevExpress.XtraEditors.DateEdit();
			this.comboBoxEdit_TeaDutyDetailsSearByGrade = new DevExpress.XtraEditors.ComboBoxEdit();
			this.textEdit_TeaDutyDetailsSearByID = new DevExpress.XtraEditors.TextEdit();
			this.notePanel_TeaDutyDetailsSearByID = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_TeaDutyDetailSearByName = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_TeaDutyDetailsSearByGrade = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_TeaDutyDetailsSearByClass = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_TeaDutyDetailsSearByStartTime = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_TeaDutyDetailsSearByEndTime = new DevExpress.Utils.Frames.NotePanel();
			this.textEdit_TeaDutyDetailsSearByName = new DevExpress.XtraEditors.TextEdit();
			this.comboBoxEdit_TeaDutyDetailsSearByClass = new DevExpress.XtraEditors.ComboBoxEdit();
			this.dateEdit_TeaDutyDetailsSearByEndTime = new DevExpress.XtraEditors.DateEdit();
			this.simpleButton1 = new DevExpress.XtraEditors.SimpleButton();
			this.simpleButton3 = new DevExpress.XtraEditors.SimpleButton();
			this.groupControl_TeaDutyDetails = new DevExpress.XtraEditors.GroupControl();
			this.gridControl_TeaDutySummary = new DevExpress.XtraGrid.GridControl();
			this.advBandedGridView4 = new DevExpress.XtraGrid.Views.BandedGrid.AdvBandedGridView();
			this.gridBand4 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
			this.bandedGridColumn8 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.bandedGridColumn10 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.bandedGridColumn12 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.bandedGridColumn14 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.bandedGridColumn9 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.bandedGridColumn11 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.bandedGridColumn13 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.bandedGridColumn15 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.gridView3 = new DevExpress.XtraGrid.Views.Grid.GridView();
			this.gridControl_TeaDutyNormal = new DevExpress.XtraGrid.GridControl();
			this.advBandedGridView3 = new DevExpress.XtraGrid.Views.BandedGrid.AdvBandedGridView();
			this.gridBand3 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
			this.bandedGridColumn1 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.bandedGridColumn2 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.bandedGridColumn3 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.bandedGridColumn4 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.bandedGridColumn5 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.bandedGridColumn6 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.bandedGridColumn7 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.popupContainerControl_Remarks = new DevExpress.XtraEditors.PopupContainerControl();
			this.memoEdit_Remarks = new DevExpress.XtraEditors.MemoEdit();
			this.gridControl_TeaDutyDetails = new DevExpress.XtraGrid.GridControl();
			this.advBandedGridView2 = new DevExpress.XtraGrid.Views.BandedGrid.AdvBandedGridView();
			this.gridBand2 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
			this.gridColumn13 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.gridColumn14 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.gridColumn15 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.gridColumn16 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.gridColumn17 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.gridColumn18 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.gridColumn19 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.gridColumn20 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.gridColumn21 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.gridColumn22 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.gridColumn23 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.gridColumn24 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.gridColumn25 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.repositoryItemPopupContainerEdit8 = new DevExpress.XtraEditors.Repository.RepositoryItemPopupContainerEdit();
			this.gridColumn34 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.gridColumn35 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.repositoryItemMemoEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemMemoEdit();
			this.gridView2 = new DevExpress.XtraGrid.Views.Grid.GridView();
			this.groupControl_TeaDutyOutDetails = new DevExpress.XtraEditors.GroupControl();
			this.gridControl_TeaOutDetails = new DevExpress.XtraGrid.GridControl();
			this.gridView4 = new DevExpress.XtraGrid.Views.Grid.GridView();
			this.gridColumn26 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn27 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn28 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn29 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn30 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn31 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn32 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn33 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.xtraTabPage_TeaOnDutyReports = new DevExpress.XtraTab.XtraTabPage();
			this.groupControl_Graph = new DevExpress.XtraEditors.GroupControl();
			this.groupControl_TeaDutyReportsSear = new DevExpress.XtraEditors.GroupControl();
			this.comboBoxEdit_Graphic_TeaDept = new DevExpress.XtraEditors.ComboBoxEdit();
			this.textEdit_Graphic_TeaID = new DevExpress.XtraEditors.TextEdit();
			this.notePanel_Graphic_TeaID = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_Graphic_TeaName = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_Graphic_TeaDept = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_Graphic_TeaDuty = new DevExpress.Utils.Frames.NotePanel();
			this.textEdit_Graphic_TeaName = new DevExpress.XtraEditors.TextEdit();
			this.comboBoxEdit_Graphic_TeaDuty = new DevExpress.XtraEditors.ComboBoxEdit();
			this.dateEdit1 = new DevExpress.XtraEditors.DateEdit();
			this.notePanel6 = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel7 = new DevExpress.Utils.Frames.NotePanel();
			this.dateEdit2 = new DevExpress.XtraEditors.DateEdit();
			this.simpleButton_ReportAnalysis = new DevExpress.XtraEditors.SimpleButton();
			this.simpleButton2 = new DevExpress.XtraEditors.SimpleButton();
			this.saveFileDialog_Report = new System.Windows.Forms.SaveFileDialog();
			this.helpProvider_DutyInfo = new System.Windows.Forms.HelpProvider();
			((System.ComponentModel.ISupportInitialize)(this.advBandedGridView1)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.gridControl_TeaDutyAsign)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.repositoryItemPopupContainerEdit1)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.popupContainerControl1)).BeginInit();
			this.popupContainerControl1.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.checkedListBoxControl1)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.repositoryItemPopupContainerEdit2)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.popupContainerControl2)).BeginInit();
			this.popupContainerControl2.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.checkedListBoxControl2)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.repositoryItemPopupContainerEdit3)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.popupContainerControl3)).BeginInit();
			this.popupContainerControl3.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.checkedListBoxControl3)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.repositoryItemPopupContainerEdit4)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.popupContainerControl4)).BeginInit();
			this.popupContainerControl4.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.checkedListBoxControl4)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.repositoryItemPopupContainerEdit5)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.popupContainerControl5)).BeginInit();
			this.popupContainerControl5.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.checkedListBoxControl5)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.repositoryItemPopupContainerEdit6)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.popupContainerControl6)).BeginInit();
			this.popupContainerControl6.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.checkedListBoxControl6)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.repositoryItemPopupContainerEdit7)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.popupContainerControl7)).BeginInit();
			this.popupContainerControl7.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.checkedListBoxControl7)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEdit1)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.xtraTabControl_TeaDutyDetailInfo)).BeginInit();
			this.xtraTabControl_TeaDutyDetailInfo.SuspendLayout();
			this.xtraTabPage_TeaDutyDetails.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_TeaDutyAsign)).BeginInit();
			this.groupControl_TeaDutyAsign.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_TeaDutyDetailsMgmt)).BeginInit();
			this.groupControl_TeaDutyDetailsMgmt.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.splitContainerControl_DutyMgmt)).BeginInit();
			this.splitContainerControl_DutyMgmt.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_DutyStartTime.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_AddDutyName.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_AddDutyRemark.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_DutyEndTime.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.dateEdit_DutyHistory.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_DutySearTeaClass.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_DutySearTeaGarde.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_DutySearTeaID.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_DutySearTeaName.Properties)).BeginInit();
			this.xtraTabPage_TeaOnDutyInfo.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_TeaDutyDetailsStatistic)).BeginInit();
			this.groupControl_TeaDutyDetailsStatistic.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_TeaOut.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_TeaShouldAttend.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_TeaAttend.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_TeaAbsence.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_TeaOffTime.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_TeaOnTime.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_TeaDutyDetailsSearch)).BeginInit();
			this.groupControl_TeaDutyDetailsSearch.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_TeaDutyDetailsFlowType.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_TeaDutyDetailsSerType.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.dateEdit_TeaDutyDetailsSearByStartTime.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_TeaDutyDetailsSearByGrade.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_TeaDutyDetailsSearByID.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_TeaDutyDetailsSearByName.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_TeaDutyDetailsSearByClass.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.dateEdit_TeaDutyDetailsSearByEndTime.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_TeaDutyDetails)).BeginInit();
			this.groupControl_TeaDutyDetails.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.gridControl_TeaDutySummary)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.advBandedGridView4)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.gridView3)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.gridControl_TeaDutyNormal)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.advBandedGridView3)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.popupContainerControl_Remarks)).BeginInit();
			this.popupContainerControl_Remarks.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.memoEdit_Remarks.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.gridControl_TeaDutyDetails)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.advBandedGridView2)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.repositoryItemPopupContainerEdit8)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.repositoryItemMemoEdit1)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.gridView2)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_TeaDutyOutDetails)).BeginInit();
			this.groupControl_TeaDutyOutDetails.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.gridControl_TeaOutDetails)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.gridView4)).BeginInit();
			this.xtraTabPage_TeaOnDutyReports.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_Graph)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_TeaDutyReportsSear)).BeginInit();
			this.groupControl_TeaDutyReportsSear.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_Graphic_TeaDept.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_Graphic_TeaID.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_Graphic_TeaName.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_Graphic_TeaDuty.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.dateEdit1.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.dateEdit2.Properties)).BeginInit();
			this.SuspendLayout();
			// 
			// advBandedGridView1
			// 
			this.advBandedGridView1.Bands.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.GridBand[] {
																										   this.gridBand1});
			this.advBandedGridView1.GridControl = this.gridControl_TeaDutyAsign;
			this.advBandedGridView1.Name = "advBandedGridView1";
			// 
			// gridBand1
			// 
			this.gridBand1.Caption = "gridBand1";
			this.gridBand1.Name = "gridBand1";
			// 
			// gridControl_TeaDutyAsign
			// 
			this.gridControl_TeaDutyAsign.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)));
			// 
			// gridControl_TeaDutyAsign.EmbeddedNavigator
			// 
			this.gridControl_TeaDutyAsign.EmbeddedNavigator.Name = "";
			this.gridControl_TeaDutyAsign.Location = new System.Drawing.Point(3, 80);
			this.gridControl_TeaDutyAsign.MainView = this.gridView1;
			this.gridControl_TeaDutyAsign.Name = "gridControl_TeaDutyAsign";
			this.gridControl_TeaDutyAsign.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
																															  this.repositoryItemLookUpEdit1,
																															  this.repositoryItemPopupContainerEdit1,
																															  this.repositoryItemPopupContainerEdit2,
																															  this.repositoryItemPopupContainerEdit3,
																															  this.repositoryItemPopupContainerEdit4,
																															  this.repositoryItemPopupContainerEdit5,
																															  this.repositoryItemPopupContainerEdit6,
																															  this.repositoryItemPopupContainerEdit7});
			this.gridControl_TeaDutyAsign.Size = new System.Drawing.Size(762, 224);
			this.gridControl_TeaDutyAsign.TabIndex = 0;
			this.gridControl_TeaDutyAsign.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
																													this.gridView1,
																													this.advBandedGridView1});
			// 
			// gridView1
			// 
			this.gridView1.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
																							 this.gridColumn2,
																							 this.gridColumn3,
																							 this.gridColumn11,
																							 this.gridColumn12,
																							 this.gridColumn4,
																							 this.gridColumn5,
																							 this.gridColumn6,
																							 this.gridColumn7,
																							 this.gridColumn8,
																							 this.gridColumn9,
																							 this.gridColumn10,
																							 this.gridColumn1});
			this.gridView1.GridControl = this.gridControl_TeaDutyAsign;
			this.gridView1.Name = "gridView1";
			this.gridView1.OptionsCustomization.AllowFilter = false;
			this.gridView1.OptionsView.ShowFilterPanel = false;
			this.gridView1.OptionsView.ShowFooter = true;
			this.gridView1.OptionsView.ShowGroupPanel = false;
			// 
			// gridColumn2
			// 
			this.gridColumn2.Caption = "工号";
			this.gridColumn2.FieldName = "T_Number";
			this.gridColumn2.Name = "gridColumn2";
			this.gridColumn2.OptionsColumn.AllowEdit = false;
			this.gridColumn2.Visible = true;
			this.gridColumn2.VisibleIndex = 0;
			this.gridColumn2.Width = 41;
			// 
			// gridColumn3
			// 
			this.gridColumn3.Caption = "教师姓名";
			this.gridColumn3.FieldName = "T_Name";
			this.gridColumn3.Name = "gridColumn3";
			this.gridColumn3.OptionsColumn.AllowEdit = false;
			this.gridColumn3.Visible = true;
			this.gridColumn3.VisibleIndex = 1;
			this.gridColumn3.Width = 59;
			// 
			// gridColumn11
			// 
			this.gridColumn11.Caption = "岗位";
			this.gridColumn11.FieldName = "T_Depart";
			this.gridColumn11.Name = "gridColumn11";
			this.gridColumn11.OptionsColumn.AllowEdit = false;
			this.gridColumn11.Visible = true;
			this.gridColumn11.VisibleIndex = 2;
			this.gridColumn11.Width = 59;
			// 
			// gridColumn12
			// 
			this.gridColumn12.Caption = "部门";
			this.gridColumn12.FieldName = "T_Duty";
			this.gridColumn12.Name = "gridColumn12";
			this.gridColumn12.OptionsColumn.AllowEdit = false;
			this.gridColumn12.Visible = true;
			this.gridColumn12.VisibleIndex = 3;
			this.gridColumn12.Width = 56;
			// 
			// gridColumn4
			// 
			this.gridColumn4.Caption = "周一班次";
			this.gridColumn4.ColumnEdit = this.repositoryItemPopupContainerEdit1;
			this.gridColumn4.FieldName = "teaonduty_monday";
			this.gridColumn4.Name = "gridColumn4";
			this.gridColumn4.Visible = true;
			this.gridColumn4.VisibleIndex = 4;
			this.gridColumn4.Width = 83;
			// 
			// repositoryItemPopupContainerEdit1
			// 
			this.repositoryItemPopupContainerEdit1.AutoHeight = false;
			this.repositoryItemPopupContainerEdit1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																														   new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.repositoryItemPopupContainerEdit1.Name = "repositoryItemPopupContainerEdit1";
			this.repositoryItemPopupContainerEdit1.PopupControl = this.popupContainerControl1;
			this.repositoryItemPopupContainerEdit1.QueryPopUp += new System.ComponentModel.CancelEventHandler(this.repositoryItemPopupContainerEdit1_QueryPopUp);
			this.repositoryItemPopupContainerEdit1.QueryResultValue += new DevExpress.XtraEditors.Controls.QueryResultValueEventHandler(this.repositoryItemPopupContainerEdit1_QueryResultValue);
			// 
			// popupContainerControl1
			// 
			this.popupContainerControl1.Controls.Add(this.checkedListBoxControl1);
			this.popupContainerControl1.Location = new System.Drawing.Point(8, 120);
			this.popupContainerControl1.Name = "popupContainerControl1";
			this.popupContainerControl1.TabIndex = 6;
			this.popupContainerControl1.Text = "popupContainerControl1";
			// 
			// checkedListBoxControl1
			// 
			this.checkedListBoxControl1.CheckOnClick = true;
			this.checkedListBoxControl1.Dock = System.Windows.Forms.DockStyle.Fill;
			this.checkedListBoxControl1.ItemHeight = 16;
			this.checkedListBoxControl1.Location = new System.Drawing.Point(0, 0);
			this.checkedListBoxControl1.Name = "checkedListBoxControl1";
			this.checkedListBoxControl1.Size = new System.Drawing.Size(200, 100);
			this.checkedListBoxControl1.TabIndex = 0;
			this.checkedListBoxControl1.ToolTipController = this.toolTipController1;
			this.checkedListBoxControl1.ToolTipIconType = DevExpress.Utils.ToolTipIconType.Error;
			this.checkedListBoxControl1.Click += new System.EventHandler(this.checkedListBoxControl1_Click);
			// 
			// gridColumn5
			// 
			this.gridColumn5.Caption = "周二班次";
			this.gridColumn5.ColumnEdit = this.repositoryItemPopupContainerEdit2;
			this.gridColumn5.FieldName = "teaonduty_tuesday";
			this.gridColumn5.Name = "gridColumn5";
			this.gridColumn5.Visible = true;
			this.gridColumn5.VisibleIndex = 5;
			this.gridColumn5.Width = 77;
			// 
			// repositoryItemPopupContainerEdit2
			// 
			this.repositoryItemPopupContainerEdit2.AutoHeight = false;
			this.repositoryItemPopupContainerEdit2.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																														   new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.repositoryItemPopupContainerEdit2.Name = "repositoryItemPopupContainerEdit2";
			this.repositoryItemPopupContainerEdit2.PopupControl = this.popupContainerControl2;
			this.repositoryItemPopupContainerEdit2.QueryPopUp += new System.ComponentModel.CancelEventHandler(this.repositoryItemPopupContainerEdit2_QueryPopUp);
			this.repositoryItemPopupContainerEdit2.QueryResultValue += new DevExpress.XtraEditors.Controls.QueryResultValueEventHandler(this.repositoryItemPopupContainerEdit2_QueryResultValue);
			// 
			// popupContainerControl2
			// 
			this.popupContainerControl2.Controls.Add(this.checkedListBoxControl2);
			this.popupContainerControl2.Location = new System.Drawing.Point(224, 24);
			this.popupContainerControl2.Name = "popupContainerControl2";
			this.popupContainerControl2.TabIndex = 7;
			this.popupContainerControl2.Text = "popupContainerControl2";
			// 
			// checkedListBoxControl2
			// 
			this.checkedListBoxControl2.CheckOnClick = true;
			this.checkedListBoxControl2.Dock = System.Windows.Forms.DockStyle.Fill;
			this.checkedListBoxControl2.ItemHeight = 16;
			this.checkedListBoxControl2.Location = new System.Drawing.Point(0, 0);
			this.checkedListBoxControl2.Name = "checkedListBoxControl2";
			this.checkedListBoxControl2.Size = new System.Drawing.Size(200, 100);
			this.checkedListBoxControl2.TabIndex = 0;
			this.checkedListBoxControl2.ToolTipController = this.toolTipController1;
			this.checkedListBoxControl2.Click += new System.EventHandler(this.checkedListBoxControl2_Click);
			// 
			// gridColumn6
			// 
			this.gridColumn6.Caption = "周三班次";
			this.gridColumn6.ColumnEdit = this.repositoryItemPopupContainerEdit3;
			this.gridColumn6.FieldName = "teaonduty_wednesday";
			this.gridColumn6.Name = "gridColumn6";
			this.gridColumn6.Visible = true;
			this.gridColumn6.VisibleIndex = 6;
			this.gridColumn6.Width = 74;
			// 
			// repositoryItemPopupContainerEdit3
			// 
			this.repositoryItemPopupContainerEdit3.AutoHeight = false;
			this.repositoryItemPopupContainerEdit3.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																														   new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.repositoryItemPopupContainerEdit3.Name = "repositoryItemPopupContainerEdit3";
			this.repositoryItemPopupContainerEdit3.PopupControl = this.popupContainerControl3;
			this.repositoryItemPopupContainerEdit3.QueryPopUp += new System.ComponentModel.CancelEventHandler(this.repositoryItemPopupContainerEdit3_QueryPopUp);
			this.repositoryItemPopupContainerEdit3.QueryResultValue += new DevExpress.XtraEditors.Controls.QueryResultValueEventHandler(this.repositoryItemPopupContainerEdit3_QueryResultValue);
			// 
			// popupContainerControl3
			// 
			this.popupContainerControl3.Controls.Add(this.checkedListBoxControl3);
			this.popupContainerControl3.Location = new System.Drawing.Point(224, 120);
			this.popupContainerControl3.Name = "popupContainerControl3";
			this.popupContainerControl3.TabIndex = 8;
			this.popupContainerControl3.Text = "popupContainerControl3";
			// 
			// checkedListBoxControl3
			// 
			this.checkedListBoxControl3.CheckOnClick = true;
			this.checkedListBoxControl3.Dock = System.Windows.Forms.DockStyle.Fill;
			this.checkedListBoxControl3.ItemHeight = 16;
			this.checkedListBoxControl3.Location = new System.Drawing.Point(0, 0);
			this.checkedListBoxControl3.Name = "checkedListBoxControl3";
			this.checkedListBoxControl3.Size = new System.Drawing.Size(200, 100);
			this.checkedListBoxControl3.TabIndex = 0;
			this.checkedListBoxControl3.ToolTipController = this.toolTipController1;
			this.checkedListBoxControl3.ToolTipIconType = DevExpress.Utils.ToolTipIconType.Exclamation;
			this.checkedListBoxControl3.Click += new System.EventHandler(this.checkedListBoxControl3_Click);
			// 
			// gridColumn7
			// 
			this.gridColumn7.Caption = "周四班次";
			this.gridColumn7.ColumnEdit = this.repositoryItemPopupContainerEdit4;
			this.gridColumn7.FieldName = "teaonduty_thursday";
			this.gridColumn7.Name = "gridColumn7";
			this.gridColumn7.Visible = true;
			this.gridColumn7.VisibleIndex = 7;
			this.gridColumn7.Width = 73;
			// 
			// repositoryItemPopupContainerEdit4
			// 
			this.repositoryItemPopupContainerEdit4.AutoHeight = false;
			this.repositoryItemPopupContainerEdit4.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																														   new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.repositoryItemPopupContainerEdit4.Name = "repositoryItemPopupContainerEdit4";
			this.repositoryItemPopupContainerEdit4.PopupControl = this.popupContainerControl4;
			this.repositoryItemPopupContainerEdit4.QueryPopUp += new System.ComponentModel.CancelEventHandler(this.repositoryItemPopupContainerEdit4_QueryPopUp);
			this.repositoryItemPopupContainerEdit4.QueryResultValue += new DevExpress.XtraEditors.Controls.QueryResultValueEventHandler(this.repositoryItemPopupContainerEdit4_QueryResultValue);
			// 
			// popupContainerControl4
			// 
			this.popupContainerControl4.Controls.Add(this.checkedListBoxControl4);
			this.popupContainerControl4.Location = new System.Drawing.Point(16, 16);
			this.popupContainerControl4.Name = "popupContainerControl4";
			this.popupContainerControl4.TabIndex = 9;
			this.popupContainerControl4.Text = "popupContainerControl4";
			// 
			// checkedListBoxControl4
			// 
			this.checkedListBoxControl4.CheckOnClick = true;
			this.checkedListBoxControl4.Dock = System.Windows.Forms.DockStyle.Fill;
			this.checkedListBoxControl4.ItemHeight = 16;
			this.checkedListBoxControl4.Location = new System.Drawing.Point(0, 0);
			this.checkedListBoxControl4.Name = "checkedListBoxControl4";
			this.checkedListBoxControl4.Size = new System.Drawing.Size(200, 100);
			this.checkedListBoxControl4.TabIndex = 0;
			this.checkedListBoxControl4.ToolTipController = this.toolTipController1;
			this.checkedListBoxControl4.ToolTipIconType = DevExpress.Utils.ToolTipIconType.Application;
			this.checkedListBoxControl4.Click += new System.EventHandler(this.checkedListBoxControl4_Click);
			// 
			// gridColumn8
			// 
			this.gridColumn8.Caption = "周五班次";
			this.gridColumn8.ColumnEdit = this.repositoryItemPopupContainerEdit5;
			this.gridColumn8.FieldName = "teaonduty_friday";
			this.gridColumn8.Name = "gridColumn8";
			this.gridColumn8.Visible = true;
			this.gridColumn8.VisibleIndex = 8;
			this.gridColumn8.Width = 70;
			// 
			// repositoryItemPopupContainerEdit5
			// 
			this.repositoryItemPopupContainerEdit5.AutoHeight = false;
			this.repositoryItemPopupContainerEdit5.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																														   new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.repositoryItemPopupContainerEdit5.Name = "repositoryItemPopupContainerEdit5";
			this.repositoryItemPopupContainerEdit5.PopupControl = this.popupContainerControl5;
			this.repositoryItemPopupContainerEdit5.QueryPopUp += new System.ComponentModel.CancelEventHandler(this.repositoryItemPopupContainerEdit5_QueryPopUp);
			this.repositoryItemPopupContainerEdit5.QueryResultValue += new DevExpress.XtraEditors.Controls.QueryResultValueEventHandler(this.repositoryItemPopupContainerEdit5_QueryResultValue);
			// 
			// popupContainerControl5
			// 
			this.popupContainerControl5.Controls.Add(this.checkedListBoxControl5);
			this.popupContainerControl5.Location = new System.Drawing.Point(0, 224);
			this.popupContainerControl5.Name = "popupContainerControl5";
			this.popupContainerControl5.TabIndex = 10;
			this.popupContainerControl5.Text = "popupContainerControl5";
			// 
			// checkedListBoxControl5
			// 
			this.checkedListBoxControl5.CheckOnClick = true;
			this.checkedListBoxControl5.Dock = System.Windows.Forms.DockStyle.Fill;
			this.checkedListBoxControl5.ItemHeight = 16;
			this.checkedListBoxControl5.Location = new System.Drawing.Point(0, 0);
			this.checkedListBoxControl5.Name = "checkedListBoxControl5";
			this.checkedListBoxControl5.Size = new System.Drawing.Size(200, 100);
			this.checkedListBoxControl5.TabIndex = 0;
			this.checkedListBoxControl5.ToolTipController = this.toolTipController1;
			this.checkedListBoxControl5.ToolTipIconType = DevExpress.Utils.ToolTipIconType.Hand;
			this.checkedListBoxControl5.Click += new System.EventHandler(this.checkedListBoxControl5_Click);
			// 
			// gridColumn9
			// 
			this.gridColumn9.Caption = "周六班次";
			this.gridColumn9.ColumnEdit = this.repositoryItemPopupContainerEdit6;
			this.gridColumn9.FieldName = "teaonduty_saturday";
			this.gridColumn9.Name = "gridColumn9";
			this.gridColumn9.Width = 70;
			// 
			// repositoryItemPopupContainerEdit6
			// 
			this.repositoryItemPopupContainerEdit6.AutoHeight = false;
			this.repositoryItemPopupContainerEdit6.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																														   new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.repositoryItemPopupContainerEdit6.Name = "repositoryItemPopupContainerEdit6";
			this.repositoryItemPopupContainerEdit6.PopupControl = this.popupContainerControl6;
			this.repositoryItemPopupContainerEdit6.QueryPopUp += new System.ComponentModel.CancelEventHandler(this.repositoryItemPopupContainerEdit6_QueryPopUp);
			this.repositoryItemPopupContainerEdit6.QueryResultValue += new DevExpress.XtraEditors.Controls.QueryResultValueEventHandler(this.repositoryItemPopupContainerEdit6_QueryResultValue);
			// 
			// popupContainerControl6
			// 
			this.popupContainerControl6.Controls.Add(this.checkedListBoxControl6);
			this.popupContainerControl6.Location = new System.Drawing.Point(232, 232);
			this.popupContainerControl6.Name = "popupContainerControl6";
			this.popupContainerControl6.TabIndex = 11;
			this.popupContainerControl6.Text = "popupContainerControl6";
			// 
			// checkedListBoxControl6
			// 
			this.checkedListBoxControl6.CheckOnClick = true;
			this.checkedListBoxControl6.Dock = System.Windows.Forms.DockStyle.Fill;
			this.checkedListBoxControl6.ItemHeight = 16;
			this.checkedListBoxControl6.Location = new System.Drawing.Point(0, 0);
			this.checkedListBoxControl6.Name = "checkedListBoxControl6";
			this.checkedListBoxControl6.Size = new System.Drawing.Size(200, 100);
			this.checkedListBoxControl6.TabIndex = 0;
			this.checkedListBoxControl6.ToolTipController = this.toolTipController1;
			this.checkedListBoxControl6.ToolTipIconType = DevExpress.Utils.ToolTipIconType.Warning;
			this.checkedListBoxControl6.Click += new System.EventHandler(this.checkedListBoxControl6_Click);
			// 
			// gridColumn10
			// 
			this.gridColumn10.Caption = "周末班次";
			this.gridColumn10.ColumnEdit = this.repositoryItemPopupContainerEdit7;
			this.gridColumn10.FieldName = "teaonduty_sunday";
			this.gridColumn10.Name = "gridColumn10";
			this.gridColumn10.Width = 83;
			// 
			// repositoryItemPopupContainerEdit7
			// 
			this.repositoryItemPopupContainerEdit7.AutoHeight = false;
			this.repositoryItemPopupContainerEdit7.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																														   new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.repositoryItemPopupContainerEdit7.Name = "repositoryItemPopupContainerEdit7";
			this.repositoryItemPopupContainerEdit7.PopupControl = this.popupContainerControl7;
			this.repositoryItemPopupContainerEdit7.QueryPopUp += new System.ComponentModel.CancelEventHandler(this.repositoryItemPopupContainerEdit7_QueryPopUp);
			this.repositoryItemPopupContainerEdit7.QueryResultValue += new DevExpress.XtraEditors.Controls.QueryResultValueEventHandler(this.repositoryItemPopupContainerEdit7_QueryResultValue);
			// 
			// popupContainerControl7
			// 
			this.popupContainerControl7.Controls.Add(this.checkedListBoxControl7);
			this.popupContainerControl7.Location = new System.Drawing.Point(432, 48);
			this.popupContainerControl7.Name = "popupContainerControl7";
			this.popupContainerControl7.TabIndex = 12;
			this.popupContainerControl7.Text = "popupContainerControl7";
			// 
			// checkedListBoxControl7
			// 
			this.checkedListBoxControl7.CheckOnClick = true;
			this.checkedListBoxControl7.Dock = System.Windows.Forms.DockStyle.Fill;
			this.checkedListBoxControl7.ItemHeight = 16;
			this.checkedListBoxControl7.Location = new System.Drawing.Point(0, 0);
			this.checkedListBoxControl7.Name = "checkedListBoxControl7";
			this.checkedListBoxControl7.Size = new System.Drawing.Size(200, 100);
			this.checkedListBoxControl7.TabIndex = 0;
			this.checkedListBoxControl7.ToolTipController = this.toolTipController1;
			this.checkedListBoxControl7.ToolTipIconType = DevExpress.Utils.ToolTipIconType.WindLogo;
			this.checkedListBoxControl7.Click += new System.EventHandler(this.checkedListBoxControl7_Click);
			// 
			// gridColumn1
			// 
			this.gridColumn1.Caption = "Teacher_ID";
			this.gridColumn1.FieldName = "T_ID";
			this.gridColumn1.Name = "gridColumn1";
			// 
			// repositoryItemLookUpEdit1
			// 
			this.repositoryItemLookUpEdit1.AutoHeight = false;
			this.repositoryItemLookUpEdit1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																												   new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.repositoryItemLookUpEdit1.Name = "repositoryItemLookUpEdit1";
			// 
			// xtraTabControl_TeaDutyDetailInfo
			// 
			this.xtraTabControl_TeaDutyDetailInfo.Appearance.BackColor = System.Drawing.Color.WhiteSmoke;
			this.xtraTabControl_TeaDutyDetailInfo.Appearance.Options.UseBackColor = true;
			this.xtraTabControl_TeaDutyDetailInfo.AppearancePage.HeaderActive.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
			this.xtraTabControl_TeaDutyDetailInfo.AppearancePage.HeaderActive.ForeColor = System.Drawing.Color.DarkOrange;
			this.xtraTabControl_TeaDutyDetailInfo.AppearancePage.HeaderActive.Options.UseFont = true;
			this.xtraTabControl_TeaDutyDetailInfo.AppearancePage.HeaderActive.Options.UseForeColor = true;
			this.xtraTabControl_TeaDutyDetailInfo.Controls.Add(this.xtraTabPage_TeaDutyDetails);
			this.xtraTabControl_TeaDutyDetailInfo.Controls.Add(this.xtraTabPage_TeaOnDutyInfo);
			this.xtraTabControl_TeaDutyDetailInfo.Controls.Add(this.xtraTabPage_TeaOnDutyReports);
			this.xtraTabControl_TeaDutyDetailInfo.Dock = System.Windows.Forms.DockStyle.Fill;
			this.xtraTabControl_TeaDutyDetailInfo.Location = new System.Drawing.Point(0, 0);
			this.xtraTabControl_TeaDutyDetailInfo.Name = "xtraTabControl_TeaDutyDetailInfo";
			this.xtraTabControl_TeaDutyDetailInfo.SelectedTabPage = this.xtraTabPage_TeaOnDutyInfo;
			this.xtraTabControl_TeaDutyDetailInfo.Size = new System.Drawing.Size(772, 540);
			this.xtraTabControl_TeaDutyDetailInfo.TabIndex = 0;
			this.xtraTabControl_TeaDutyDetailInfo.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
																											 this.xtraTabPage_TeaDutyDetails,
																											 this.xtraTabPage_TeaOnDutyInfo,
																											 this.xtraTabPage_TeaOnDutyReports});
			this.xtraTabControl_TeaDutyDetailInfo.Text = "出勤信息管理";
			// 
			// xtraTabPage_TeaDutyDetails
			// 
			this.xtraTabPage_TeaDutyDetails.Appearance.PageClient.BackColor = System.Drawing.Color.WhiteSmoke;
			this.xtraTabPage_TeaDutyDetails.Appearance.PageClient.Options.UseBackColor = true;
			this.xtraTabPage_TeaDutyDetails.Controls.Add(this.groupControl_TeaDutyAsign);
			this.xtraTabPage_TeaDutyDetails.Controls.Add(this.groupControl_TeaDutyDetailsMgmt);
			this.xtraTabPage_TeaDutyDetails.Name = "xtraTabPage_TeaDutyDetails";
			this.xtraTabPage_TeaDutyDetails.Size = new System.Drawing.Size(768, 515);
			this.xtraTabPage_TeaDutyDetails.Text = "班次管理";
			// 
			// groupControl_TeaDutyAsign
			// 
			this.groupControl_TeaDutyAsign.Controls.Add(this.popupContainerControl7);
			this.groupControl_TeaDutyAsign.Controls.Add(this.popupContainerControl6);
			this.groupControl_TeaDutyAsign.Controls.Add(this.popupContainerControl5);
			this.groupControl_TeaDutyAsign.Controls.Add(this.popupContainerControl4);
			this.groupControl_TeaDutyAsign.Controls.Add(this.popupContainerControl3);
			this.groupControl_TeaDutyAsign.Controls.Add(this.popupContainerControl2);
			this.groupControl_TeaDutyAsign.Controls.Add(this.popupContainerControl1);
			this.groupControl_TeaDutyAsign.Controls.Add(this.simpleButton_SaveDutyAsign);
			this.groupControl_TeaDutyAsign.Controls.Add(this.notePanel2);
			this.groupControl_TeaDutyAsign.Controls.Add(this.gridControl_TeaDutyAsign);
			this.groupControl_TeaDutyAsign.Dock = System.Windows.Forms.DockStyle.Fill;
			this.groupControl_TeaDutyAsign.Location = new System.Drawing.Point(0, 208);
			this.groupControl_TeaDutyAsign.Name = "groupControl_TeaDutyAsign";
			this.groupControl_TeaDutyAsign.Size = new System.Drawing.Size(768, 307);
			this.groupControl_TeaDutyAsign.TabIndex = 1;
			this.groupControl_TeaDutyAsign.Text = "班次分配";
			// 
			// simpleButton_SaveDutyAsign
			// 
			this.simpleButton_SaveDutyAsign.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
			this.simpleButton_SaveDutyAsign.Location = new System.Drawing.Point(648, 48);
			this.simpleButton_SaveDutyAsign.Name = "simpleButton_SaveDutyAsign";
			this.simpleButton_SaveDutyAsign.Size = new System.Drawing.Size(96, 24);
			this.simpleButton_SaveDutyAsign.TabIndex = 5;
			this.simpleButton_SaveDutyAsign.Text = "更新当前班次";
			this.simpleButton_SaveDutyAsign.Click += new System.EventHandler(this.simpleButton_SaveDutyAsign_Click);
			// 
			// notePanel2
			// 
			this.notePanel2.BackColor = System.Drawing.Color.LightGoldenrodYellow;
			this.notePanel2.Dock = System.Windows.Forms.DockStyle.Top;
			this.notePanel2.ForeColor = System.Drawing.Color.OrangeRed;
			this.notePanel2.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel2.Location = new System.Drawing.Point(3, 18);
			this.notePanel2.MaxRows = 5;
			this.notePanel2.Name = "notePanel2";
			this.notePanel2.ParentAutoHeight = true;
			this.notePanel2.Size = new System.Drawing.Size(762, 23);
			this.notePanel2.TabIndex = 4;
			this.notePanel2.TabStop = false;
			this.notePanel2.Text = "班次信息";
			// 
			// groupControl_TeaDutyDetailsMgmt
			// 
			this.groupControl_TeaDutyDetailsMgmt.Controls.Add(this.splitContainerControl_DutyMgmt);
			this.groupControl_TeaDutyDetailsMgmt.Dock = System.Windows.Forms.DockStyle.Top;
			this.groupControl_TeaDutyDetailsMgmt.Location = new System.Drawing.Point(0, 0);
			this.groupControl_TeaDutyDetailsMgmt.Name = "groupControl_TeaDutyDetailsMgmt";
			this.groupControl_TeaDutyDetailsMgmt.Size = new System.Drawing.Size(768, 208);
			this.groupControl_TeaDutyDetailsMgmt.TabIndex = 0;
			// 
			// splitContainerControl_DutyMgmt
			// 
			this.splitContainerControl_DutyMgmt.Dock = System.Windows.Forms.DockStyle.Fill;
			this.splitContainerControl_DutyMgmt.Location = new System.Drawing.Point(3, 18);
			this.splitContainerControl_DutyMgmt.Name = "splitContainerControl_DutyMgmt";
			this.splitContainerControl_DutyMgmt.Panel1.Controls.Add(this.textEdit_DutyStartTime);
			this.splitContainerControl_DutyMgmt.Panel1.Controls.Add(this.dataNavigator_DutyDetails);
			this.splitContainerControl_DutyMgmt.Panel1.Controls.Add(this.notePanel_DutyDetailsTitle);
			this.splitContainerControl_DutyMgmt.Panel1.Controls.Add(this.pnlHint_DutyName);
			this.splitContainerControl_DutyMgmt.Panel1.Controls.Add(this.label_ReqOfDutyName);
			this.splitContainerControl_DutyMgmt.Panel1.Controls.Add(this.textEdit_AddDutyName);
			this.splitContainerControl_DutyMgmt.Panel1.Controls.Add(this.notePanel_DutyStartTime);
			this.splitContainerControl_DutyMgmt.Panel1.Controls.Add(this.label_ReqOfDutyEndTime);
			this.splitContainerControl_DutyMgmt.Panel1.Controls.Add(this.notePanel_DutyRemark);
			this.splitContainerControl_DutyMgmt.Panel1.Controls.Add(this.textEdit_AddDutyRemark);
			this.splitContainerControl_DutyMgmt.Panel1.Controls.Add(this.notePanel_DutyEndTime);
			this.splitContainerControl_DutyMgmt.Panel1.Controls.Add(this.label_ReqOfDutyStartTime);
			this.splitContainerControl_DutyMgmt.Panel1.Controls.Add(this.textEdit_DutyEndTime);
			this.splitContainerControl_DutyMgmt.Panel1.Text = "splitContainerControl2_Panel1";
			this.splitContainerControl_DutyMgmt.Panel2.Controls.Add(this.simpleButton_TeaDutySave);
			this.splitContainerControl_DutyMgmt.Panel2.Controls.Add(this.simpleButton_LoadCurDuty);
			this.splitContainerControl_DutyMgmt.Panel2.Controls.Add(this.simpleButton_LoadHisDuty);
			this.splitContainerControl_DutyMgmt.Panel2.Controls.Add(this.dateEdit_DutyHistory);
			this.splitContainerControl_DutyMgmt.Panel2.Controls.Add(this.notePanel_DutyHistory);
			this.splitContainerControl_DutyMgmt.Panel2.Controls.Add(this.comboBoxEdit_DutySearTeaClass);
			this.splitContainerControl_DutyMgmt.Panel2.Controls.Add(this.comboBoxEdit_DutySearTeaGarde);
			this.splitContainerControl_DutyMgmt.Panel2.Controls.Add(this.textEdit_DutySearTeaID);
			this.splitContainerControl_DutyMgmt.Panel2.Controls.Add(this.notePanel_AsignDutyByTeaID);
			this.splitContainerControl_DutyMgmt.Panel2.Controls.Add(this.notePanel_TeaDutyAsignSearTitle);
			this.splitContainerControl_DutyMgmt.Panel2.Controls.Add(this.notePannotePanel_AsignDutyByTeaGrade);
			this.splitContainerControl_DutyMgmt.Panel2.Controls.Add(this.notePannotePanel_AsignDutyByTeaName);
			this.splitContainerControl_DutyMgmt.Panel2.Controls.Add(this.notePannotePanel_AsignDutyByTeaClass);
			this.splitContainerControl_DutyMgmt.Panel2.Controls.Add(this.textEdit_DutySearTeaName);
			this.splitContainerControl_DutyMgmt.Panel2.Controls.Add(this.simpleButton_TeaSearForDuty);
			this.splitContainerControl_DutyMgmt.Panel2.Text = "splitContainerControl2_Panel2";
			this.splitContainerControl_DutyMgmt.Size = new System.Drawing.Size(762, 187);
			this.splitContainerControl_DutyMgmt.SplitterPosition = 324;
			this.splitContainerControl_DutyMgmt.TabIndex = 0;
			this.splitContainerControl_DutyMgmt.Text = "splitContainerControl2";
			// 
			// textEdit_DutyStartTime
			// 
			this.textEdit_DutyStartTime.EditValue = "";
			this.textEdit_DutyStartTime.Location = new System.Drawing.Point(120, 61);
			this.textEdit_DutyStartTime.Name = "textEdit_DutyStartTime";
			// 
			// textEdit_DutyStartTime.Properties
			// 
			this.textEdit_DutyStartTime.Properties.DisplayFormat.FormatString = "HH:mm:ss";
			this.textEdit_DutyStartTime.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
			this.textEdit_DutyStartTime.Properties.EditValueChangedFiringMode = DevExpress.XtraEditors.Controls.EditValueChangedFiringMode.Buffered;
			this.textEdit_DutyStartTime.Properties.Mask.EditMask = "HH:mm:ss";
			this.textEdit_DutyStartTime.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.DateTime;
			this.textEdit_DutyStartTime.Size = new System.Drawing.Size(160, 23);
			this.textEdit_DutyStartTime.TabIndex = 12;
			// 
			// dataNavigator_DutyDetails
			// 
			this.dataNavigator_DutyDetails.Buttons.Append.Hint = "添加一条新记录";
			this.dataNavigator_DutyDetails.Buttons.CancelEdit.Hint = "取消修改";
			this.dataNavigator_DutyDetails.Buttons.EndEdit.Hint = "保存修改";
			this.dataNavigator_DutyDetails.Buttons.First.Hint = "查看第一条记录";
			this.dataNavigator_DutyDetails.Buttons.Last.Hint = "查看最后一条记录";
			this.dataNavigator_DutyDetails.Buttons.Next.Hint = "查看下一条记录";
			this.dataNavigator_DutyDetails.Buttons.NextPage.Hint = "跳至下一页";
			this.dataNavigator_DutyDetails.Buttons.Prev.Hint = "查看前一条记录";
			this.dataNavigator_DutyDetails.Buttons.PrevPage.Hint = "跳至前一页";
			this.dataNavigator_DutyDetails.Buttons.Remove.Hint = "删除此条记录";
			this.dataNavigator_DutyDetails.Dock = System.Windows.Forms.DockStyle.Bottom;
			this.dataNavigator_DutyDetails.Location = new System.Drawing.Point(0, 157);
			this.dataNavigator_DutyDetails.Name = "dataNavigator_DutyDetails";
			this.dataNavigator_DutyDetails.ShowToolTips = true;
			this.dataNavigator_DutyDetails.Size = new System.Drawing.Size(318, 24);
			this.dataNavigator_DutyDetails.TabIndex = 10;
			this.dataNavigator_DutyDetails.Text = "班次信息管理";
			this.dataNavigator_DutyDetails.TextLocation = DevExpress.XtraEditors.NavigatorButtonsTextLocation.End;
			this.dataNavigator_DutyDetails.ButtonClick += new DevExpress.XtraEditors.NavigatorButtonClickEventHandler(this.dataNavigator_DutyDetails_ButtonClick);
			// 
			// notePanel_DutyDetailsTitle
			// 
			this.notePanel_DutyDetailsTitle.BackColor = System.Drawing.Color.LightGoldenrodYellow;
			this.notePanel_DutyDetailsTitle.Dock = System.Windows.Forms.DockStyle.Top;
			this.notePanel_DutyDetailsTitle.ForeColor = System.Drawing.Color.OrangeRed;
			this.notePanel_DutyDetailsTitle.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_DutyDetailsTitle.Location = new System.Drawing.Point(0, 0);
			this.notePanel_DutyDetailsTitle.MaxRows = 5;
			this.notePanel_DutyDetailsTitle.Name = "notePanel_DutyDetailsTitle";
			this.notePanel_DutyDetailsTitle.ParentAutoHeight = true;
			this.notePanel_DutyDetailsTitle.Size = new System.Drawing.Size(318, 23);
			this.notePanel_DutyDetailsTitle.TabIndex = 2;
			this.notePanel_DutyDetailsTitle.TabStop = false;
			this.notePanel_DutyDetailsTitle.Text = "班次详细信息管理(*为必须填写)";
			// 
			// pnlHint_DutyName
			// 
			this.pnlHint_DutyName.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.pnlHint_DutyName.BackColor2 = System.Drawing.Color.DarkGray;
			this.pnlHint_DutyName.Font = new System.Drawing.Font("Tahoma", 8F);
			this.pnlHint_DutyName.ForeColor = System.Drawing.Color.Black;
			this.pnlHint_DutyName.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.pnlHint_DutyName.Location = new System.Drawing.Point(24, 32);
			this.pnlHint_DutyName.MaxRows = 5;
			this.pnlHint_DutyName.Name = "pnlHint_DutyName";
			this.pnlHint_DutyName.ParentAutoHeight = true;
			this.pnlHint_DutyName.Size = new System.Drawing.Size(80, 22);
			this.pnlHint_DutyName.TabIndex = 3;
			this.pnlHint_DutyName.TabStop = false;
			this.pnlHint_DutyName.Text = "班次名称";
			// 
			// label_ReqOfDutyName
			// 
			this.label_ReqOfDutyName.ForeColor = System.Drawing.Color.Red;
			this.label_ReqOfDutyName.Location = new System.Drawing.Point(8, 32);
			this.label_ReqOfDutyName.Name = "label_ReqOfDutyName";
			this.label_ReqOfDutyName.Size = new System.Drawing.Size(16, 16);
			this.label_ReqOfDutyName.TabIndex = 6;
			this.label_ReqOfDutyName.Text = "*";
			this.label_ReqOfDutyName.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			// 
			// textEdit_AddDutyName
			// 
			this.textEdit_AddDutyName.EditValue = "";
			this.textEdit_AddDutyName.Location = new System.Drawing.Point(120, 32);
			this.textEdit_AddDutyName.Name = "textEdit_AddDutyName";
			this.textEdit_AddDutyName.Size = new System.Drawing.Size(160, 23);
			this.textEdit_AddDutyName.TabIndex = 4;
			this.textEdit_AddDutyName.EditValueChanged += new System.EventHandler(this.textEdit_AddDutyName_EditValueChanged);
			this.textEdit_AddDutyName.Leave += new System.EventHandler(this.textEdit_AddDutyName_Leave);
			// 
			// notePanel_DutyStartTime
			// 
			this.notePanel_DutyStartTime.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_DutyStartTime.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_DutyStartTime.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_DutyStartTime.ForeColor = System.Drawing.Color.Black;
			this.notePanel_DutyStartTime.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_DutyStartTime.Location = new System.Drawing.Point(24, 61);
			this.notePanel_DutyStartTime.MaxRows = 5;
			this.notePanel_DutyStartTime.Name = "notePanel_DutyStartTime";
			this.notePanel_DutyStartTime.ParentAutoHeight = true;
			this.notePanel_DutyStartTime.Size = new System.Drawing.Size(80, 22);
			this.notePanel_DutyStartTime.TabIndex = 3;
			this.notePanel_DutyStartTime.TabStop = false;
			this.notePanel_DutyStartTime.Text = "起始时间";
			// 
			// label_ReqOfDutyEndTime
			// 
			this.label_ReqOfDutyEndTime.ForeColor = System.Drawing.Color.Red;
			this.label_ReqOfDutyEndTime.Location = new System.Drawing.Point(8, 64);
			this.label_ReqOfDutyEndTime.Name = "label_ReqOfDutyEndTime";
			this.label_ReqOfDutyEndTime.Size = new System.Drawing.Size(16, 16);
			this.label_ReqOfDutyEndTime.TabIndex = 8;
			this.label_ReqOfDutyEndTime.Text = "*";
			this.label_ReqOfDutyEndTime.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			// 
			// notePanel_DutyRemark
			// 
			this.notePanel_DutyRemark.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_DutyRemark.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_DutyRemark.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_DutyRemark.ForeColor = System.Drawing.Color.Black;
			this.notePanel_DutyRemark.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_DutyRemark.Location = new System.Drawing.Point(24, 119);
			this.notePanel_DutyRemark.MaxRows = 5;
			this.notePanel_DutyRemark.Name = "notePanel_DutyRemark";
			this.notePanel_DutyRemark.ParentAutoHeight = true;
			this.notePanel_DutyRemark.Size = new System.Drawing.Size(80, 22);
			this.notePanel_DutyRemark.TabIndex = 3;
			this.notePanel_DutyRemark.TabStop = false;
			this.notePanel_DutyRemark.Text = "  备  注";
			// 
			// textEdit_AddDutyRemark
			// 
			this.textEdit_AddDutyRemark.EditValue = "";
			this.textEdit_AddDutyRemark.Location = new System.Drawing.Point(120, 120);
			this.textEdit_AddDutyRemark.Name = "textEdit_AddDutyRemark";
			this.textEdit_AddDutyRemark.Size = new System.Drawing.Size(160, 23);
			this.textEdit_AddDutyRemark.TabIndex = 4;
			// 
			// notePanel_DutyEndTime
			// 
			this.notePanel_DutyEndTime.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_DutyEndTime.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_DutyEndTime.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_DutyEndTime.ForeColor = System.Drawing.Color.Black;
			this.notePanel_DutyEndTime.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_DutyEndTime.Location = new System.Drawing.Point(24, 90);
			this.notePanel_DutyEndTime.MaxRows = 5;
			this.notePanel_DutyEndTime.Name = "notePanel_DutyEndTime";
			this.notePanel_DutyEndTime.ParentAutoHeight = true;
			this.notePanel_DutyEndTime.Size = new System.Drawing.Size(80, 22);
			this.notePanel_DutyEndTime.TabIndex = 3;
			this.notePanel_DutyEndTime.TabStop = false;
			this.notePanel_DutyEndTime.Text = "结束时间";
			// 
			// label_ReqOfDutyStartTime
			// 
			this.label_ReqOfDutyStartTime.ForeColor = System.Drawing.Color.Red;
			this.label_ReqOfDutyStartTime.Location = new System.Drawing.Point(8, 88);
			this.label_ReqOfDutyStartTime.Name = "label_ReqOfDutyStartTime";
			this.label_ReqOfDutyStartTime.Size = new System.Drawing.Size(16, 16);
			this.label_ReqOfDutyStartTime.TabIndex = 7;
			this.label_ReqOfDutyStartTime.Text = "*";
			this.label_ReqOfDutyStartTime.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			// 
			// textEdit_DutyEndTime
			// 
			this.textEdit_DutyEndTime.EditValue = "";
			this.textEdit_DutyEndTime.Location = new System.Drawing.Point(120, 90);
			this.textEdit_DutyEndTime.Name = "textEdit_DutyEndTime";
			// 
			// textEdit_DutyEndTime.Properties
			// 
			this.textEdit_DutyEndTime.Properties.DisplayFormat.FormatString = "d";
			this.textEdit_DutyEndTime.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
			this.textEdit_DutyEndTime.Properties.Mask.EditMask = "HH:mm:ss";
			this.textEdit_DutyEndTime.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.DateTime;
			this.textEdit_DutyEndTime.Size = new System.Drawing.Size(160, 23);
			this.textEdit_DutyEndTime.TabIndex = 16;
			this.textEdit_DutyEndTime.Tag = "";
			// 
			// simpleButton_TeaDutySave
			// 
			this.simpleButton_TeaDutySave.Location = new System.Drawing.Point(224, 136);
			this.simpleButton_TeaDutySave.Name = "simpleButton_TeaDutySave";
			this.simpleButton_TeaDutySave.Size = new System.Drawing.Size(88, 24);
			this.simpleButton_TeaDutySave.TabIndex = 13;
			this.simpleButton_TeaDutySave.Text = "下周班保存";
			this.simpleButton_TeaDutySave.Click += new System.EventHandler(this.simpleButton_TeaDutySave_Click);
			// 
			// simpleButton_LoadCurDuty
			// 
			this.simpleButton_LoadCurDuty.Enabled = false;
			this.simpleButton_LoadCurDuty.Location = new System.Drawing.Point(128, 136);
			this.simpleButton_LoadCurDuty.Name = "simpleButton_LoadCurDuty";
			this.simpleButton_LoadCurDuty.Size = new System.Drawing.Size(88, 24);
			this.simpleButton_LoadCurDuty.TabIndex = 12;
			this.simpleButton_LoadCurDuty.Text = "本周班载入";
			this.simpleButton_LoadCurDuty.Click += new System.EventHandler(this.simpleButton_LoadCurDuty_Click);
			// 
			// simpleButton_LoadHisDuty
			// 
			this.simpleButton_LoadHisDuty.Location = new System.Drawing.Point(32, 136);
			this.simpleButton_LoadHisDuty.Name = "simpleButton_LoadHisDuty";
			this.simpleButton_LoadHisDuty.Size = new System.Drawing.Size(88, 24);
			this.simpleButton_LoadHisDuty.TabIndex = 11;
			this.simpleButton_LoadHisDuty.Text = "历史班载入";
			this.simpleButton_LoadHisDuty.Click += new System.EventHandler(this.simpleButton_LoadHisDuty_Click);
			// 
			// dateEdit_DutyHistory
			// 
			this.dateEdit_DutyHistory.EditValue = new System.DateTime(2006, 3, 23, 0, 0, 0, 0);
			this.dateEdit_DutyHistory.Location = new System.Drawing.Point(120, 96);
			this.dateEdit_DutyHistory.Name = "dateEdit_DutyHistory";
			// 
			// dateEdit_DutyHistory.Properties
			// 
			this.dateEdit_DutyHistory.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																														 new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.dateEdit_DutyHistory.Properties.Mask.EditMask = "d";
			this.dateEdit_DutyHistory.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.DateTime;
			this.dateEdit_DutyHistory.Size = new System.Drawing.Size(88, 23);
			this.dateEdit_DutyHistory.TabIndex = 10;
			// 
			// notePanel_DutyHistory
			// 
			this.notePanel_DutyHistory.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_DutyHistory.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_DutyHistory.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_DutyHistory.ForeColor = System.Drawing.Color.Black;
			this.notePanel_DutyHistory.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_DutyHistory.Location = new System.Drawing.Point(32, 96);
			this.notePanel_DutyHistory.MaxRows = 5;
			this.notePanel_DutyHistory.Name = "notePanel_DutyHistory";
			this.notePanel_DutyHistory.ParentAutoHeight = true;
			this.notePanel_DutyHistory.Size = new System.Drawing.Size(80, 22);
			this.notePanel_DutyHistory.TabIndex = 9;
			this.notePanel_DutyHistory.TabStop = false;
			this.notePanel_DutyHistory.Text = "班次时间";
			// 
			// comboBoxEdit_DutySearTeaClass
			// 
			this.comboBoxEdit_DutySearTeaClass.EditValue = "全部";
			this.comboBoxEdit_DutySearTeaClass.Location = new System.Drawing.Point(312, 64);
			this.comboBoxEdit_DutySearTeaClass.Name = "comboBoxEdit_DutySearTeaClass";
			// 
			// comboBoxEdit_DutySearTeaClass.Properties
			// 
			this.comboBoxEdit_DutySearTeaClass.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																																  new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.comboBoxEdit_DutySearTeaClass.Properties.Items.AddRange(new object[] {
																						  "全部"});
			this.comboBoxEdit_DutySearTeaClass.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
			this.comboBoxEdit_DutySearTeaClass.Size = new System.Drawing.Size(88, 23);
			this.comboBoxEdit_DutySearTeaClass.TabIndex = 7;
			this.comboBoxEdit_DutySearTeaClass.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit_DutySearTeaClass_SelectedIndexChanged);
			// 
			// comboBoxEdit_DutySearTeaGarde
			// 
			this.comboBoxEdit_DutySearTeaGarde.EditValue = "全部";
			this.comboBoxEdit_DutySearTeaGarde.Location = new System.Drawing.Point(120, 64);
			this.comboBoxEdit_DutySearTeaGarde.Name = "comboBoxEdit_DutySearTeaGarde";
			// 
			// comboBoxEdit_DutySearTeaGarde.Properties
			// 
			this.comboBoxEdit_DutySearTeaGarde.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																																  new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.comboBoxEdit_DutySearTeaGarde.Properties.Items.AddRange(new object[] {
																						  "全部"});
			this.comboBoxEdit_DutySearTeaGarde.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
			this.comboBoxEdit_DutySearTeaGarde.Size = new System.Drawing.Size(88, 23);
			this.comboBoxEdit_DutySearTeaGarde.TabIndex = 6;
			this.comboBoxEdit_DutySearTeaGarde.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit_DutySearTeaGarde_SelectedIndexChanged);
			// 
			// textEdit_DutySearTeaID
			// 
			this.textEdit_DutySearTeaID.EditValue = "";
			this.textEdit_DutySearTeaID.Location = new System.Drawing.Point(120, 32);
			this.textEdit_DutySearTeaID.Name = "textEdit_DutySearTeaID";
			this.textEdit_DutySearTeaID.Size = new System.Drawing.Size(88, 23);
			this.textEdit_DutySearTeaID.TabIndex = 5;
			// 
			// notePanel_AsignDutyByTeaID
			// 
			this.notePanel_AsignDutyByTeaID.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_AsignDutyByTeaID.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_AsignDutyByTeaID.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_AsignDutyByTeaID.ForeColor = System.Drawing.Color.Black;
			this.notePanel_AsignDutyByTeaID.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_AsignDutyByTeaID.Location = new System.Drawing.Point(32, 32);
			this.notePanel_AsignDutyByTeaID.MaxRows = 5;
			this.notePanel_AsignDutyByTeaID.Name = "notePanel_AsignDutyByTeaID";
			this.notePanel_AsignDutyByTeaID.ParentAutoHeight = true;
			this.notePanel_AsignDutyByTeaID.Size = new System.Drawing.Size(80, 22);
			this.notePanel_AsignDutyByTeaID.TabIndex = 4;
			this.notePanel_AsignDutyByTeaID.TabStop = false;
			this.notePanel_AsignDutyByTeaID.Text = "教师工号";
			// 
			// notePanel_TeaDutyAsignSearTitle
			// 
			this.notePanel_TeaDutyAsignSearTitle.BackColor = System.Drawing.Color.LightGoldenrodYellow;
			this.notePanel_TeaDutyAsignSearTitle.Dock = System.Windows.Forms.DockStyle.Top;
			this.notePanel_TeaDutyAsignSearTitle.ForeColor = System.Drawing.Color.OrangeRed;
			this.notePanel_TeaDutyAsignSearTitle.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_TeaDutyAsignSearTitle.Location = new System.Drawing.Point(0, 0);
			this.notePanel_TeaDutyAsignSearTitle.MaxRows = 5;
			this.notePanel_TeaDutyAsignSearTitle.Name = "notePanel_TeaDutyAsignSearTitle";
			this.notePanel_TeaDutyAsignSearTitle.ParentAutoHeight = true;
			this.notePanel_TeaDutyAsignSearTitle.Size = new System.Drawing.Size(428, 23);
			this.notePanel_TeaDutyAsignSearTitle.TabIndex = 3;
			this.notePanel_TeaDutyAsignSearTitle.TabStop = false;
			this.notePanel_TeaDutyAsignSearTitle.Text = "**班次载入时间以一周为准";
			// 
			// notePannotePanel_AsignDutyByTeaGrade
			// 
			this.notePannotePanel_AsignDutyByTeaGrade.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePannotePanel_AsignDutyByTeaGrade.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePannotePanel_AsignDutyByTeaGrade.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePannotePanel_AsignDutyByTeaGrade.ForeColor = System.Drawing.Color.Black;
			this.notePannotePanel_AsignDutyByTeaGrade.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePannotePanel_AsignDutyByTeaGrade.Location = new System.Drawing.Point(32, 64);
			this.notePannotePanel_AsignDutyByTeaGrade.MaxRows = 5;
			this.notePannotePanel_AsignDutyByTeaGrade.Name = "notePannotePanel_AsignDutyByTeaGrade";
			this.notePannotePanel_AsignDutyByTeaGrade.ParentAutoHeight = true;
			this.notePannotePanel_AsignDutyByTeaGrade.Size = new System.Drawing.Size(80, 22);
			this.notePannotePanel_AsignDutyByTeaGrade.TabIndex = 4;
			this.notePannotePanel_AsignDutyByTeaGrade.TabStop = false;
			this.notePannotePanel_AsignDutyByTeaGrade.Text = "所在部门";
			// 
			// notePannotePanel_AsignDutyByTeaName
			// 
			this.notePannotePanel_AsignDutyByTeaName.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePannotePanel_AsignDutyByTeaName.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePannotePanel_AsignDutyByTeaName.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePannotePanel_AsignDutyByTeaName.ForeColor = System.Drawing.Color.Black;
			this.notePannotePanel_AsignDutyByTeaName.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePannotePanel_AsignDutyByTeaName.Location = new System.Drawing.Point(224, 32);
			this.notePannotePanel_AsignDutyByTeaName.MaxRows = 5;
			this.notePannotePanel_AsignDutyByTeaName.Name = "notePannotePanel_AsignDutyByTeaName";
			this.notePannotePanel_AsignDutyByTeaName.ParentAutoHeight = true;
			this.notePannotePanel_AsignDutyByTeaName.Size = new System.Drawing.Size(80, 22);
			this.notePannotePanel_AsignDutyByTeaName.TabIndex = 4;
			this.notePannotePanel_AsignDutyByTeaName.TabStop = false;
			this.notePannotePanel_AsignDutyByTeaName.Text = "教师姓名";
			// 
			// notePannotePanel_AsignDutyByTeaClass
			// 
			this.notePannotePanel_AsignDutyByTeaClass.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePannotePanel_AsignDutyByTeaClass.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePannotePanel_AsignDutyByTeaClass.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePannotePanel_AsignDutyByTeaClass.ForeColor = System.Drawing.Color.Black;
			this.notePannotePanel_AsignDutyByTeaClass.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePannotePanel_AsignDutyByTeaClass.Location = new System.Drawing.Point(224, 64);
			this.notePannotePanel_AsignDutyByTeaClass.MaxRows = 5;
			this.notePannotePanel_AsignDutyByTeaClass.Name = "notePannotePanel_AsignDutyByTeaClass";
			this.notePannotePanel_AsignDutyByTeaClass.ParentAutoHeight = true;
			this.notePannotePanel_AsignDutyByTeaClass.Size = new System.Drawing.Size(80, 22);
			this.notePannotePanel_AsignDutyByTeaClass.TabIndex = 4;
			this.notePannotePanel_AsignDutyByTeaClass.TabStop = false;
			this.notePannotePanel_AsignDutyByTeaClass.Text = "岗位";
			// 
			// textEdit_DutySearTeaName
			// 
			this.textEdit_DutySearTeaName.EditValue = "";
			this.textEdit_DutySearTeaName.Location = new System.Drawing.Point(312, 32);
			this.textEdit_DutySearTeaName.Name = "textEdit_DutySearTeaName";
			this.textEdit_DutySearTeaName.Size = new System.Drawing.Size(88, 23);
			this.textEdit_DutySearTeaName.TabIndex = 5;
			// 
			// simpleButton_TeaSearForDuty
			// 
			this.simpleButton_TeaSearForDuty.Location = new System.Drawing.Point(320, 136);
			this.simpleButton_TeaSearForDuty.Name = "simpleButton_TeaSearForDuty";
			this.simpleButton_TeaSearForDuty.Size = new System.Drawing.Size(88, 24);
			this.simpleButton_TeaSearForDuty.TabIndex = 8;
			this.simpleButton_TeaSearForDuty.Text = "班次检索";
			this.simpleButton_TeaSearForDuty.Click += new System.EventHandler(this.simpleButton_TeaSearForDuty_Click);
			// 
			// xtraTabPage_TeaOnDutyInfo
			// 
			this.xtraTabPage_TeaOnDutyInfo.Appearance.PageClient.BackColor = System.Drawing.Color.WhiteSmoke;
			this.xtraTabPage_TeaOnDutyInfo.Appearance.PageClient.Options.UseBackColor = true;
			this.xtraTabPage_TeaOnDutyInfo.Controls.Add(this.groupControl_TeaDutyDetailsStatistic);
			this.xtraTabPage_TeaOnDutyInfo.Controls.Add(this.groupControl_TeaDutyDetailsSearch);
			this.xtraTabPage_TeaOnDutyInfo.Controls.Add(this.groupControl_TeaDutyDetails);
			this.xtraTabPage_TeaOnDutyInfo.Controls.Add(this.groupControl_TeaDutyOutDetails);
			this.xtraTabPage_TeaOnDutyInfo.Name = "xtraTabPage_TeaOnDutyInfo";
			this.xtraTabPage_TeaOnDutyInfo.Size = new System.Drawing.Size(768, 515);
			this.xtraTabPage_TeaOnDutyInfo.Text = "出勤信息";
			// 
			// groupControl_TeaDutyDetailsStatistic
			// 
			this.groupControl_TeaDutyDetailsStatistic.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.groupControl_TeaDutyDetailsStatistic.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.groupControl_TeaDutyDetailsStatistic.AppearanceCaption.Options.UseFont = true;
			this.groupControl_TeaDutyDetailsStatistic.Controls.Add(this.textEdit_TeaOut);
			this.groupControl_TeaDutyDetailsStatistic.Controls.Add(this.textEdit_TeaShouldAttend);
			this.groupControl_TeaDutyDetailsStatistic.Controls.Add(this.textEdit_TeaAttend);
			this.groupControl_TeaDutyDetailsStatistic.Controls.Add(this.textEdit_TeaAbsence);
			this.groupControl_TeaDutyDetailsStatistic.Controls.Add(this.textEdit_TeaOffTime);
			this.groupControl_TeaDutyDetailsStatistic.Controls.Add(this.textEdit_TeaOnTime);
			this.groupControl_TeaDutyDetailsStatistic.Controls.Add(this.notePanel_TeaOut);
			this.groupControl_TeaDutyDetailsStatistic.Controls.Add(this.notePanel_TeaShouldAttend);
			this.groupControl_TeaDutyDetailsStatistic.Controls.Add(this.notePanel_TeaOnTime);
			this.groupControl_TeaDutyDetailsStatistic.Controls.Add(this.notePanel_TeaOffTime);
			this.groupControl_TeaDutyDetailsStatistic.Controls.Add(this.notePanel_TeaAttend);
			this.groupControl_TeaDutyDetailsStatistic.Controls.Add(this.notePanel_TeaAbsence);
			this.groupControl_TeaDutyDetailsStatistic.Location = new System.Drawing.Point(480, 304);
			this.groupControl_TeaDutyDetailsStatistic.Name = "groupControl_TeaDutyDetailsStatistic";
			this.groupControl_TeaDutyDetailsStatistic.Size = new System.Drawing.Size(288, 208);
			this.groupControl_TeaDutyDetailsStatistic.TabIndex = 1;
			this.groupControl_TeaDutyDetailsStatistic.Text = "出勤数据统计";
			// 
			// textEdit_TeaOut
			// 
			this.textEdit_TeaOut.EditValue = "";
			this.textEdit_TeaOut.Location = new System.Drawing.Point(160, 248);
			this.textEdit_TeaOut.Name = "textEdit_TeaOut";
			// 
			// textEdit_TeaOut.Properties
			// 
			this.textEdit_TeaOut.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.textEdit_TeaOut.Properties.Appearance.ForeColor = System.Drawing.Color.RoyalBlue;
			this.textEdit_TeaOut.Properties.Appearance.Options.UseFont = true;
			this.textEdit_TeaOut.Properties.Appearance.Options.UseForeColor = true;
			this.textEdit_TeaOut.Size = new System.Drawing.Size(120, 23);
			this.textEdit_TeaOut.TabIndex = 13;
			// 
			// textEdit_TeaShouldAttend
			// 
			this.textEdit_TeaShouldAttend.EditValue = "";
			this.textEdit_TeaShouldAttend.Location = new System.Drawing.Point(160, 200);
			this.textEdit_TeaShouldAttend.Name = "textEdit_TeaShouldAttend";
			// 
			// textEdit_TeaShouldAttend.Properties
			// 
			this.textEdit_TeaShouldAttend.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.textEdit_TeaShouldAttend.Properties.Appearance.ForeColor = System.Drawing.Color.RoyalBlue;
			this.textEdit_TeaShouldAttend.Properties.Appearance.Options.UseFont = true;
			this.textEdit_TeaShouldAttend.Properties.Appearance.Options.UseForeColor = true;
			this.textEdit_TeaShouldAttend.Size = new System.Drawing.Size(120, 23);
			this.textEdit_TeaShouldAttend.TabIndex = 12;
			// 
			// textEdit_TeaAttend
			// 
			this.textEdit_TeaAttend.EditValue = "";
			this.textEdit_TeaAttend.Location = new System.Drawing.Point(160, 160);
			this.textEdit_TeaAttend.Name = "textEdit_TeaAttend";
			// 
			// textEdit_TeaAttend.Properties
			// 
			this.textEdit_TeaAttend.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.textEdit_TeaAttend.Properties.Appearance.ForeColor = System.Drawing.Color.RoyalBlue;
			this.textEdit_TeaAttend.Properties.Appearance.Options.UseFont = true;
			this.textEdit_TeaAttend.Properties.Appearance.Options.UseForeColor = true;
			this.textEdit_TeaAttend.Size = new System.Drawing.Size(120, 23);
			this.textEdit_TeaAttend.TabIndex = 11;
			// 
			// textEdit_TeaAbsence
			// 
			this.textEdit_TeaAbsence.EditValue = "";
			this.textEdit_TeaAbsence.Location = new System.Drawing.Point(160, 120);
			this.textEdit_TeaAbsence.Name = "textEdit_TeaAbsence";
			// 
			// textEdit_TeaAbsence.Properties
			// 
			this.textEdit_TeaAbsence.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.textEdit_TeaAbsence.Properties.Appearance.ForeColor = System.Drawing.Color.RoyalBlue;
			this.textEdit_TeaAbsence.Properties.Appearance.Options.UseFont = true;
			this.textEdit_TeaAbsence.Properties.Appearance.Options.UseForeColor = true;
			this.textEdit_TeaAbsence.Size = new System.Drawing.Size(120, 23);
			this.textEdit_TeaAbsence.TabIndex = 10;
			// 
			// textEdit_TeaOffTime
			// 
			this.textEdit_TeaOffTime.EditValue = "";
			this.textEdit_TeaOffTime.Location = new System.Drawing.Point(160, 80);
			this.textEdit_TeaOffTime.Name = "textEdit_TeaOffTime";
			// 
			// textEdit_TeaOffTime.Properties
			// 
			this.textEdit_TeaOffTime.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.textEdit_TeaOffTime.Properties.Appearance.ForeColor = System.Drawing.Color.RoyalBlue;
			this.textEdit_TeaOffTime.Properties.Appearance.Options.UseFont = true;
			this.textEdit_TeaOffTime.Properties.Appearance.Options.UseForeColor = true;
			this.textEdit_TeaOffTime.Size = new System.Drawing.Size(120, 23);
			this.textEdit_TeaOffTime.TabIndex = 9;
			// 
			// textEdit_TeaOnTime
			// 
			this.textEdit_TeaOnTime.EditValue = "";
			this.textEdit_TeaOnTime.Location = new System.Drawing.Point(160, 40);
			this.textEdit_TeaOnTime.Name = "textEdit_TeaOnTime";
			// 
			// textEdit_TeaOnTime.Properties
			// 
			this.textEdit_TeaOnTime.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.textEdit_TeaOnTime.Properties.Appearance.ForeColor = System.Drawing.Color.RoyalBlue;
			this.textEdit_TeaOnTime.Properties.Appearance.Options.UseFont = true;
			this.textEdit_TeaOnTime.Properties.Appearance.Options.UseForeColor = true;
			this.textEdit_TeaOnTime.Size = new System.Drawing.Size(120, 23);
			this.textEdit_TeaOnTime.TabIndex = 8;
			// 
			// notePanel_TeaOut
			// 
			this.notePanel_TeaOut.BackColor = System.Drawing.Color.Orange;
			this.notePanel_TeaOut.ForeColor = System.Drawing.Color.White;
			this.notePanel_TeaOut.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_TeaOut.Location = new System.Drawing.Point(56, 248);
			this.notePanel_TeaOut.MaxRows = 5;
			this.notePanel_TeaOut.Name = "notePanel_TeaOut";
			this.notePanel_TeaOut.ParentAutoHeight = true;
			this.notePanel_TeaOut.Size = new System.Drawing.Size(88, 23);
			this.notePanel_TeaOut.TabIndex = 7;
			this.notePanel_TeaOut.TabStop = false;
			this.notePanel_TeaOut.Text = "  外  出";
			// 
			// notePanel_TeaShouldAttend
			// 
			this.notePanel_TeaShouldAttend.BackColor = System.Drawing.Color.Orange;
			this.notePanel_TeaShouldAttend.ForeColor = System.Drawing.Color.White;
			this.notePanel_TeaShouldAttend.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_TeaShouldAttend.Location = new System.Drawing.Point(56, 200);
			this.notePanel_TeaShouldAttend.MaxRows = 5;
			this.notePanel_TeaShouldAttend.Name = "notePanel_TeaShouldAttend";
			this.notePanel_TeaShouldAttend.ParentAutoHeight = true;
			this.notePanel_TeaShouldAttend.Size = new System.Drawing.Size(88, 23);
			this.notePanel_TeaShouldAttend.TabIndex = 6;
			this.notePanel_TeaShouldAttend.TabStop = false;
			this.notePanel_TeaShouldAttend.Text = " 应出勤";
			// 
			// notePanel_TeaOnTime
			// 
			this.notePanel_TeaOnTime.BackColor = System.Drawing.Color.Orange;
			this.notePanel_TeaOnTime.ForeColor = System.Drawing.Color.White;
			this.notePanel_TeaOnTime.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_TeaOnTime.Location = new System.Drawing.Point(56, 40);
			this.notePanel_TeaOnTime.MaxRows = 5;
			this.notePanel_TeaOnTime.Name = "notePanel_TeaOnTime";
			this.notePanel_TeaOnTime.ParentAutoHeight = true;
			this.notePanel_TeaOnTime.Size = new System.Drawing.Size(88, 23);
			this.notePanel_TeaOnTime.TabIndex = 5;
			this.notePanel_TeaOnTime.TabStop = false;
			this.notePanel_TeaOnTime.Text = "  迟  到";
			// 
			// notePanel_TeaOffTime
			// 
			this.notePanel_TeaOffTime.BackColor = System.Drawing.Color.Orange;
			this.notePanel_TeaOffTime.ForeColor = System.Drawing.Color.White;
			this.notePanel_TeaOffTime.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_TeaOffTime.Location = new System.Drawing.Point(56, 80);
			this.notePanel_TeaOffTime.MaxRows = 5;
			this.notePanel_TeaOffTime.Name = "notePanel_TeaOffTime";
			this.notePanel_TeaOffTime.ParentAutoHeight = true;
			this.notePanel_TeaOffTime.Size = new System.Drawing.Size(88, 23);
			this.notePanel_TeaOffTime.TabIndex = 5;
			this.notePanel_TeaOffTime.TabStop = false;
			this.notePanel_TeaOffTime.Text = "  早  退";
			// 
			// notePanel_TeaAttend
			// 
			this.notePanel_TeaAttend.BackColor = System.Drawing.Color.Orange;
			this.notePanel_TeaAttend.ForeColor = System.Drawing.Color.White;
			this.notePanel_TeaAttend.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_TeaAttend.Location = new System.Drawing.Point(56, 160);
			this.notePanel_TeaAttend.MaxRows = 5;
			this.notePanel_TeaAttend.Name = "notePanel_TeaAttend";
			this.notePanel_TeaAttend.ParentAutoHeight = true;
			this.notePanel_TeaAttend.Size = new System.Drawing.Size(88, 23);
			this.notePanel_TeaAttend.TabIndex = 5;
			this.notePanel_TeaAttend.TabStop = false;
			this.notePanel_TeaAttend.Text = " 实出勤";
			// 
			// notePanel_TeaAbsence
			// 
			this.notePanel_TeaAbsence.BackColor = System.Drawing.Color.Orange;
			this.notePanel_TeaAbsence.ForeColor = System.Drawing.Color.White;
			this.notePanel_TeaAbsence.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_TeaAbsence.Location = new System.Drawing.Point(56, 120);
			this.notePanel_TeaAbsence.MaxRows = 5;
			this.notePanel_TeaAbsence.Name = "notePanel_TeaAbsence";
			this.notePanel_TeaAbsence.ParentAutoHeight = true;
			this.notePanel_TeaAbsence.Size = new System.Drawing.Size(88, 23);
			this.notePanel_TeaAbsence.TabIndex = 5;
			this.notePanel_TeaAbsence.TabStop = false;
			this.notePanel_TeaAbsence.Text = "  缺  勤";
			// 
			// groupControl_TeaDutyDetailsSearch
			// 
			this.groupControl_TeaDutyDetailsSearch.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.groupControl_TeaDutyDetailsSearch.AppearanceCaption.Options.UseFont = true;
			this.groupControl_TeaDutyDetailsSearch.Controls.Add(this.simpleButton4);
			this.groupControl_TeaDutyDetailsSearch.Controls.Add(this.comboBoxEdit_TeaDutyDetailsFlowType);
			this.groupControl_TeaDutyDetailsSearch.Controls.Add(this.notePanel_TeaDutyDetailsFlowType);
			this.groupControl_TeaDutyDetailsSearch.Controls.Add(this.comboBoxEdit_TeaDutyDetailsSerType);
			this.groupControl_TeaDutyDetailsSearch.Controls.Add(this.notePanel_TeaDutyDetailsSerType);
			this.groupControl_TeaDutyDetailsSearch.Controls.Add(this.simpleButton_SearTeaDutyDetails);
			this.groupControl_TeaDutyDetailsSearch.Controls.Add(this.dateEdit_TeaDutyDetailsSearByStartTime);
			this.groupControl_TeaDutyDetailsSearch.Controls.Add(this.comboBoxEdit_TeaDutyDetailsSearByGrade);
			this.groupControl_TeaDutyDetailsSearch.Controls.Add(this.textEdit_TeaDutyDetailsSearByID);
			this.groupControl_TeaDutyDetailsSearch.Controls.Add(this.notePanel_TeaDutyDetailsSearByID);
			this.groupControl_TeaDutyDetailsSearch.Controls.Add(this.notePanel_TeaDutyDetailSearByName);
			this.groupControl_TeaDutyDetailsSearch.Controls.Add(this.notePanel_TeaDutyDetailsSearByGrade);
			this.groupControl_TeaDutyDetailsSearch.Controls.Add(this.notePanel_TeaDutyDetailsSearByClass);
			this.groupControl_TeaDutyDetailsSearch.Controls.Add(this.notePanel_TeaDutyDetailsSearByStartTime);
			this.groupControl_TeaDutyDetailsSearch.Controls.Add(this.notePanel_TeaDutyDetailsSearByEndTime);
			this.groupControl_TeaDutyDetailsSearch.Controls.Add(this.textEdit_TeaDutyDetailsSearByName);
			this.groupControl_TeaDutyDetailsSearch.Controls.Add(this.comboBoxEdit_TeaDutyDetailsSearByClass);
			this.groupControl_TeaDutyDetailsSearch.Controls.Add(this.dateEdit_TeaDutyDetailsSearByEndTime);
			this.groupControl_TeaDutyDetailsSearch.Controls.Add(this.simpleButton1);
			this.groupControl_TeaDutyDetailsSearch.Controls.Add(this.simpleButton3);
			this.groupControl_TeaDutyDetailsSearch.Location = new System.Drawing.Point(0, 0);
			this.groupControl_TeaDutyDetailsSearch.Name = "groupControl_TeaDutyDetailsSearch";
			this.groupControl_TeaDutyDetailsSearch.Size = new System.Drawing.Size(264, 304);
			this.groupControl_TeaDutyDetailsSearch.TabIndex = 0;
			this.groupControl_TeaDutyDetailsSearch.Text = "出勤信息检索条件";
			// 
			// simpleButton4
			// 
			this.simpleButton4.Location = new System.Drawing.Point(200, 272);
			this.simpleButton4.Name = "simpleButton4";
			this.simpleButton4.Size = new System.Drawing.Size(60, 23);
			this.simpleButton4.TabIndex = 13;
			this.simpleButton4.Text = "统计报表";
			this.simpleButton4.Click += new System.EventHandler(this.simpleButton4_Click);
			// 
			// comboBoxEdit_TeaDutyDetailsFlowType
			// 
			this.comboBoxEdit_TeaDutyDetailsFlowType.EditValue = "全部";
			this.comboBoxEdit_TeaDutyDetailsFlowType.Location = new System.Drawing.Point(136, 214);
			this.comboBoxEdit_TeaDutyDetailsFlowType.Name = "comboBoxEdit_TeaDutyDetailsFlowType";
			// 
			// comboBoxEdit_TeaDutyDetailsFlowType.Properties
			// 
			this.comboBoxEdit_TeaDutyDetailsFlowType.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																																		new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.comboBoxEdit_TeaDutyDetailsFlowType.Properties.Items.AddRange(new object[] {
																								"上班",
																								"下班",
																								"全部"});
			this.comboBoxEdit_TeaDutyDetailsFlowType.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
			this.comboBoxEdit_TeaDutyDetailsFlowType.Size = new System.Drawing.Size(112, 23);
			this.comboBoxEdit_TeaDutyDetailsFlowType.TabIndex = 12;
			// 
			// notePanel_TeaDutyDetailsFlowType
			// 
			this.notePanel_TeaDutyDetailsFlowType.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_TeaDutyDetailsFlowType.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_TeaDutyDetailsFlowType.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_TeaDutyDetailsFlowType.ForeColor = System.Drawing.Color.Black;
			this.notePanel_TeaDutyDetailsFlowType.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_TeaDutyDetailsFlowType.Location = new System.Drawing.Point(32, 214);
			this.notePanel_TeaDutyDetailsFlowType.MaxRows = 5;
			this.notePanel_TeaDutyDetailsFlowType.Name = "notePanel_TeaDutyDetailsFlowType";
			this.notePanel_TeaDutyDetailsFlowType.ParentAutoHeight = true;
			this.notePanel_TeaDutyDetailsFlowType.Size = new System.Drawing.Size(88, 22);
			this.notePanel_TeaDutyDetailsFlowType.TabIndex = 11;
			this.notePanel_TeaDutyDetailsFlowType.TabStop = false;
			this.notePanel_TeaDutyDetailsFlowType.Text = "状          态";
			// 
			// comboBoxEdit_TeaDutyDetailsSerType
			// 
			this.comboBoxEdit_TeaDutyDetailsSerType.EditValue = "一般查询";
			this.comboBoxEdit_TeaDutyDetailsSerType.Location = new System.Drawing.Point(136, 246);
			this.comboBoxEdit_TeaDutyDetailsSerType.Name = "comboBoxEdit_TeaDutyDetailsSerType";
			// 
			// comboBoxEdit_TeaDutyDetailsSerType.Properties
			// 
			this.comboBoxEdit_TeaDutyDetailsSerType.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																																	   new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.comboBoxEdit_TeaDutyDetailsSerType.Properties.Items.AddRange(new object[] {
																							   "一般查询",
																							   "精确查询",
																							   "综合查询"});
			this.comboBoxEdit_TeaDutyDetailsSerType.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
			this.comboBoxEdit_TeaDutyDetailsSerType.Size = new System.Drawing.Size(112, 23);
			this.comboBoxEdit_TeaDutyDetailsSerType.TabIndex = 10;
			this.comboBoxEdit_TeaDutyDetailsSerType.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit_TeaDutyDetailsSerType_SelectedIndexChanged);
			// 
			// notePanel_TeaDutyDetailsSerType
			// 
			this.notePanel_TeaDutyDetailsSerType.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_TeaDutyDetailsSerType.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_TeaDutyDetailsSerType.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_TeaDutyDetailsSerType.ForeColor = System.Drawing.Color.Black;
			this.notePanel_TeaDutyDetailsSerType.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_TeaDutyDetailsSerType.Location = new System.Drawing.Point(32, 246);
			this.notePanel_TeaDutyDetailsSerType.MaxRows = 5;
			this.notePanel_TeaDutyDetailsSerType.Name = "notePanel_TeaDutyDetailsSerType";
			this.notePanel_TeaDutyDetailsSerType.ParentAutoHeight = true;
			this.notePanel_TeaDutyDetailsSerType.Size = new System.Drawing.Size(88, 22);
			this.notePanel_TeaDutyDetailsSerType.TabIndex = 9;
			this.notePanel_TeaDutyDetailsSerType.TabStop = false;
			this.notePanel_TeaDutyDetailsSerType.Text = "查 询 类 型";
			// 
			// simpleButton_SearTeaDutyDetails
			// 
			this.simpleButton_SearTeaDutyDetails.Location = new System.Drawing.Point(70, 272);
			this.simpleButton_SearTeaDutyDetails.Name = "simpleButton_SearTeaDutyDetails";
			this.simpleButton_SearTeaDutyDetails.Size = new System.Drawing.Size(64, 23);
			this.simpleButton_SearTeaDutyDetails.TabIndex = 8;
			this.simpleButton_SearTeaDutyDetails.Text = "出勤报表";
			this.simpleButton_SearTeaDutyDetails.Click += new System.EventHandler(this.simpleButton_SearTeaDutyDetails_Click);
			// 
			// dateEdit_TeaDutyDetailsSearByStartTime
			// 
			this.dateEdit_TeaDutyDetailsSearByStartTime.EditValue = new System.DateTime(2005, 12, 31, 0, 0, 0, 0);
			this.dateEdit_TeaDutyDetailsSearByStartTime.Location = new System.Drawing.Point(136, 148);
			this.dateEdit_TeaDutyDetailsSearByStartTime.Name = "dateEdit_TeaDutyDetailsSearByStartTime";
			// 
			// dateEdit_TeaDutyDetailsSearByStartTime.Properties
			// 
			this.dateEdit_TeaDutyDetailsSearByStartTime.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																																		   new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.dateEdit_TeaDutyDetailsSearByStartTime.Properties.Mask.EditMask = "d";
			this.dateEdit_TeaDutyDetailsSearByStartTime.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.DateTime;
			this.dateEdit_TeaDutyDetailsSearByStartTime.Size = new System.Drawing.Size(112, 23);
			this.dateEdit_TeaDutyDetailsSearByStartTime.TabIndex = 7;
			// 
			// comboBoxEdit_TeaDutyDetailsSearByGrade
			// 
			this.comboBoxEdit_TeaDutyDetailsSearByGrade.EditValue = "全部";
			this.comboBoxEdit_TeaDutyDetailsSearByGrade.Location = new System.Drawing.Point(136, 84);
			this.comboBoxEdit_TeaDutyDetailsSearByGrade.Name = "comboBoxEdit_TeaDutyDetailsSearByGrade";
			// 
			// comboBoxEdit_TeaDutyDetailsSearByGrade.Properties
			// 
			this.comboBoxEdit_TeaDutyDetailsSearByGrade.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																																		   new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.comboBoxEdit_TeaDutyDetailsSearByGrade.Properties.Items.AddRange(new object[] {
																								   "全部"});
			this.comboBoxEdit_TeaDutyDetailsSearByGrade.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
			this.comboBoxEdit_TeaDutyDetailsSearByGrade.Size = new System.Drawing.Size(112, 23);
			this.comboBoxEdit_TeaDutyDetailsSearByGrade.TabIndex = 6;
			this.comboBoxEdit_TeaDutyDetailsSearByGrade.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit_TeaDutyDetailsSearByGrade_SelectedIndexChanged);
			// 
			// textEdit_TeaDutyDetailsSearByID
			// 
			this.textEdit_TeaDutyDetailsSearByID.EditValue = "";
			this.textEdit_TeaDutyDetailsSearByID.Location = new System.Drawing.Point(136, 24);
			this.textEdit_TeaDutyDetailsSearByID.Name = "textEdit_TeaDutyDetailsSearByID";
			this.textEdit_TeaDutyDetailsSearByID.Size = new System.Drawing.Size(112, 23);
			this.textEdit_TeaDutyDetailsSearByID.TabIndex = 5;
			// 
			// notePanel_TeaDutyDetailsSearByID
			// 
			this.notePanel_TeaDutyDetailsSearByID.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_TeaDutyDetailsSearByID.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_TeaDutyDetailsSearByID.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_TeaDutyDetailsSearByID.ForeColor = System.Drawing.Color.Black;
			this.notePanel_TeaDutyDetailsSearByID.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_TeaDutyDetailsSearByID.Location = new System.Drawing.Point(32, 24);
			this.notePanel_TeaDutyDetailsSearByID.MaxRows = 5;
			this.notePanel_TeaDutyDetailsSearByID.Name = "notePanel_TeaDutyDetailsSearByID";
			this.notePanel_TeaDutyDetailsSearByID.ParentAutoHeight = true;
			this.notePanel_TeaDutyDetailsSearByID.Size = new System.Drawing.Size(88, 22);
			this.notePanel_TeaDutyDetailsSearByID.TabIndex = 4;
			this.notePanel_TeaDutyDetailsSearByID.TabStop = false;
			this.notePanel_TeaDutyDetailsSearByID.Text = "教 师 工 号";
			// 
			// notePanel_TeaDutyDetailSearByName
			// 
			this.notePanel_TeaDutyDetailSearByName.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_TeaDutyDetailSearByName.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_TeaDutyDetailSearByName.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_TeaDutyDetailSearByName.ForeColor = System.Drawing.Color.Black;
			this.notePanel_TeaDutyDetailSearByName.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_TeaDutyDetailSearByName.Location = new System.Drawing.Point(32, 56);
			this.notePanel_TeaDutyDetailSearByName.MaxRows = 5;
			this.notePanel_TeaDutyDetailSearByName.Name = "notePanel_TeaDutyDetailSearByName";
			this.notePanel_TeaDutyDetailSearByName.ParentAutoHeight = true;
			this.notePanel_TeaDutyDetailSearByName.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.notePanel_TeaDutyDetailSearByName.Size = new System.Drawing.Size(88, 22);
			this.notePanel_TeaDutyDetailSearByName.TabIndex = 4;
			this.notePanel_TeaDutyDetailSearByName.TabStop = false;
			this.notePanel_TeaDutyDetailSearByName.Text = "教 师 姓 名";
			// 
			// notePanel_TeaDutyDetailsSearByGrade
			// 
			this.notePanel_TeaDutyDetailsSearByGrade.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_TeaDutyDetailsSearByGrade.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_TeaDutyDetailsSearByGrade.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_TeaDutyDetailsSearByGrade.ForeColor = System.Drawing.Color.Black;
			this.notePanel_TeaDutyDetailsSearByGrade.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_TeaDutyDetailsSearByGrade.Location = new System.Drawing.Point(32, 88);
			this.notePanel_TeaDutyDetailsSearByGrade.MaxRows = 5;
			this.notePanel_TeaDutyDetailsSearByGrade.Name = "notePanel_TeaDutyDetailsSearByGrade";
			this.notePanel_TeaDutyDetailsSearByGrade.ParentAutoHeight = true;
			this.notePanel_TeaDutyDetailsSearByGrade.Size = new System.Drawing.Size(88, 22);
			this.notePanel_TeaDutyDetailsSearByGrade.TabIndex = 4;
			this.notePanel_TeaDutyDetailsSearByGrade.TabStop = false;
			this.notePanel_TeaDutyDetailsSearByGrade.Text = "所 在 部 门";
			// 
			// notePanel_TeaDutyDetailsSearByClass
			// 
			this.notePanel_TeaDutyDetailsSearByClass.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_TeaDutyDetailsSearByClass.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_TeaDutyDetailsSearByClass.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_TeaDutyDetailsSearByClass.ForeColor = System.Drawing.Color.Black;
			this.notePanel_TeaDutyDetailsSearByClass.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_TeaDutyDetailsSearByClass.Location = new System.Drawing.Point(32, 120);
			this.notePanel_TeaDutyDetailsSearByClass.MaxRows = 5;
			this.notePanel_TeaDutyDetailsSearByClass.Name = "notePanel_TeaDutyDetailsSearByClass";
			this.notePanel_TeaDutyDetailsSearByClass.ParentAutoHeight = true;
			this.notePanel_TeaDutyDetailsSearByClass.Size = new System.Drawing.Size(88, 22);
			this.notePanel_TeaDutyDetailsSearByClass.TabIndex = 4;
			this.notePanel_TeaDutyDetailsSearByClass.TabStop = false;
			this.notePanel_TeaDutyDetailsSearByClass.Text = "岗          位";
			// 
			// notePanel_TeaDutyDetailsSearByStartTime
			// 
			this.notePanel_TeaDutyDetailsSearByStartTime.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_TeaDutyDetailsSearByStartTime.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_TeaDutyDetailsSearByStartTime.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_TeaDutyDetailsSearByStartTime.ForeColor = System.Drawing.Color.Black;
			this.notePanel_TeaDutyDetailsSearByStartTime.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_TeaDutyDetailsSearByStartTime.Location = new System.Drawing.Point(32, 152);
			this.notePanel_TeaDutyDetailsSearByStartTime.MaxRows = 5;
			this.notePanel_TeaDutyDetailsSearByStartTime.Name = "notePanel_TeaDutyDetailsSearByStartTime";
			this.notePanel_TeaDutyDetailsSearByStartTime.ParentAutoHeight = true;
			this.notePanel_TeaDutyDetailsSearByStartTime.Size = new System.Drawing.Size(88, 22);
			this.notePanel_TeaDutyDetailsSearByStartTime.TabIndex = 4;
			this.notePanel_TeaDutyDetailsSearByStartTime.TabStop = false;
			this.notePanel_TeaDutyDetailsSearByStartTime.Text = "起 始 时 间";
			// 
			// notePanel_TeaDutyDetailsSearByEndTime
			// 
			this.notePanel_TeaDutyDetailsSearByEndTime.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_TeaDutyDetailsSearByEndTime.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_TeaDutyDetailsSearByEndTime.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_TeaDutyDetailsSearByEndTime.ForeColor = System.Drawing.Color.Black;
			this.notePanel_TeaDutyDetailsSearByEndTime.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_TeaDutyDetailsSearByEndTime.Location = new System.Drawing.Point(32, 184);
			this.notePanel_TeaDutyDetailsSearByEndTime.MaxRows = 5;
			this.notePanel_TeaDutyDetailsSearByEndTime.Name = "notePanel_TeaDutyDetailsSearByEndTime";
			this.notePanel_TeaDutyDetailsSearByEndTime.ParentAutoHeight = true;
			this.notePanel_TeaDutyDetailsSearByEndTime.Size = new System.Drawing.Size(88, 22);
			this.notePanel_TeaDutyDetailsSearByEndTime.TabIndex = 4;
			this.notePanel_TeaDutyDetailsSearByEndTime.TabStop = false;
			this.notePanel_TeaDutyDetailsSearByEndTime.Text = "结 束 时 间";
			// 
			// textEdit_TeaDutyDetailsSearByName
			// 
			this.textEdit_TeaDutyDetailsSearByName.EditValue = "";
			this.textEdit_TeaDutyDetailsSearByName.Location = new System.Drawing.Point(136, 52);
			this.textEdit_TeaDutyDetailsSearByName.Name = "textEdit_TeaDutyDetailsSearByName";
			this.textEdit_TeaDutyDetailsSearByName.Size = new System.Drawing.Size(112, 23);
			this.textEdit_TeaDutyDetailsSearByName.TabIndex = 5;
			// 
			// comboBoxEdit_TeaDutyDetailsSearByClass
			// 
			this.comboBoxEdit_TeaDutyDetailsSearByClass.EditValue = "全部";
			this.comboBoxEdit_TeaDutyDetailsSearByClass.Location = new System.Drawing.Point(136, 116);
			this.comboBoxEdit_TeaDutyDetailsSearByClass.Name = "comboBoxEdit_TeaDutyDetailsSearByClass";
			// 
			// comboBoxEdit_TeaDutyDetailsSearByClass.Properties
			// 
			this.comboBoxEdit_TeaDutyDetailsSearByClass.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																																		   new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.comboBoxEdit_TeaDutyDetailsSearByClass.Properties.Items.AddRange(new object[] {
																								   "全部"});
			this.comboBoxEdit_TeaDutyDetailsSearByClass.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
			this.comboBoxEdit_TeaDutyDetailsSearByClass.Size = new System.Drawing.Size(112, 23);
			this.comboBoxEdit_TeaDutyDetailsSearByClass.TabIndex = 6;
			this.comboBoxEdit_TeaDutyDetailsSearByClass.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit_TeaDutyDetailsSearByClass_SelectedIndexChanged);
			// 
			// dateEdit_TeaDutyDetailsSearByEndTime
			// 
			this.dateEdit_TeaDutyDetailsSearByEndTime.EditValue = new System.DateTime(2005, 12, 31, 0, 0, 0, 0);
			this.dateEdit_TeaDutyDetailsSearByEndTime.Location = new System.Drawing.Point(136, 182);
			this.dateEdit_TeaDutyDetailsSearByEndTime.Name = "dateEdit_TeaDutyDetailsSearByEndTime";
			// 
			// dateEdit_TeaDutyDetailsSearByEndTime.Properties
			// 
			this.dateEdit_TeaDutyDetailsSearByEndTime.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																																		 new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.dateEdit_TeaDutyDetailsSearByEndTime.Properties.Mask.EditMask = "d";
			this.dateEdit_TeaDutyDetailsSearByEndTime.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.DateTime;
			this.dateEdit_TeaDutyDetailsSearByEndTime.Size = new System.Drawing.Size(112, 23);
			this.dateEdit_TeaDutyDetailsSearByEndTime.TabIndex = 7;
			// 
			// simpleButton1
			// 
			this.simpleButton1.Location = new System.Drawing.Point(8, 272);
			this.simpleButton1.Name = "simpleButton1";
			this.simpleButton1.Size = new System.Drawing.Size(60, 23);
			this.simpleButton1.TabIndex = 8;
			this.simpleButton1.Text = "检索";
			this.simpleButton1.Click += new System.EventHandler(this.simpleButton1_Click);
			// 
			// simpleButton3
			// 
			this.simpleButton3.Location = new System.Drawing.Point(136, 272);
			this.simpleButton3.Name = "simpleButton3";
			this.simpleButton3.Size = new System.Drawing.Size(60, 23);
			this.simpleButton3.TabIndex = 8;
			this.simpleButton3.Text = "外出报表";
			this.simpleButton3.Click += new System.EventHandler(this.simpleButton3_Click);
			// 
			// groupControl_TeaDutyDetails
			// 
			this.groupControl_TeaDutyDetails.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
				| System.Windows.Forms.AnchorStyles.Right)));
			this.groupControl_TeaDutyDetails.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.groupControl_TeaDutyDetails.AppearanceCaption.Options.UseFont = true;
			this.groupControl_TeaDutyDetails.Controls.Add(this.gridControl_TeaDutySummary);
			this.groupControl_TeaDutyDetails.Controls.Add(this.gridControl_TeaDutyNormal);
			this.groupControl_TeaDutyDetails.Controls.Add(this.popupContainerControl_Remarks);
			this.groupControl_TeaDutyDetails.Controls.Add(this.gridControl_TeaDutyDetails);
			this.groupControl_TeaDutyDetails.Location = new System.Drawing.Point(264, 0);
			this.groupControl_TeaDutyDetails.Name = "groupControl_TeaDutyDetails";
			this.groupControl_TeaDutyDetails.Size = new System.Drawing.Size(504, 304);
			this.groupControl_TeaDutyDetails.TabIndex = 0;
			this.groupControl_TeaDutyDetails.Text = "出勤信息";
			// 
			// gridControl_TeaDutySummary
			// 
			this.gridControl_TeaDutySummary.Dock = System.Windows.Forms.DockStyle.Fill;
			// 
			// gridControl_TeaDutySummary.EmbeddedNavigator
			// 
			this.gridControl_TeaDutySummary.EmbeddedNavigator.Name = "";
			this.gridControl_TeaDutySummary.Location = new System.Drawing.Point(3, 18);
			this.gridControl_TeaDutySummary.MainView = this.advBandedGridView4;
			this.gridControl_TeaDutySummary.Name = "gridControl_TeaDutySummary";
			this.gridControl_TeaDutySummary.Size = new System.Drawing.Size(498, 283);
			this.gridControl_TeaDutySummary.TabIndex = 3;
			this.gridControl_TeaDutySummary.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
																													  this.advBandedGridView4,
																													  this.gridView3});
			this.gridControl_TeaDutySummary.Visible = false;
			// 
			// advBandedGridView4
			// 
			this.advBandedGridView4.Bands.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.GridBand[] {
																										   this.gridBand4});
			this.advBandedGridView4.Columns.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn[] {
																													 this.bandedGridColumn8,
																													 this.bandedGridColumn9,
																													 this.bandedGridColumn10,
																													 this.bandedGridColumn11,
																													 this.bandedGridColumn12,
																													 this.bandedGridColumn13,
																													 this.bandedGridColumn14,
																													 this.bandedGridColumn15});
			this.advBandedGridView4.GridControl = this.gridControl_TeaDutySummary;
			this.advBandedGridView4.Name = "advBandedGridView4";
			this.advBandedGridView4.OptionsCustomization.AllowFilter = false;
			this.advBandedGridView4.OptionsView.ShowFilterPanel = false;
			this.advBandedGridView4.OptionsView.ShowGroupPanel = false;
			// 
			// gridBand4
			// 
			this.gridBand4.Caption = "教师出勤综合信息";
			this.gridBand4.Columns.Add(this.bandedGridColumn8);
			this.gridBand4.Columns.Add(this.bandedGridColumn10);
			this.gridBand4.Columns.Add(this.bandedGridColumn12);
			this.gridBand4.Columns.Add(this.bandedGridColumn14);
			this.gridBand4.Columns.Add(this.bandedGridColumn9);
			this.gridBand4.Columns.Add(this.bandedGridColumn11);
			this.gridBand4.Columns.Add(this.bandedGridColumn13);
			this.gridBand4.Columns.Add(this.bandedGridColumn15);
			this.gridBand4.Name = "gridBand4";
			this.gridBand4.Width = 589;
			// 
			// bandedGridColumn8
			// 
			this.bandedGridColumn8.AppearanceCell.Options.UseTextOptions = true;
			this.bandedGridColumn8.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn8.AppearanceHeader.Options.UseTextOptions = true;
			this.bandedGridColumn8.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn8.Caption = "教师姓名";
			this.bandedGridColumn8.FieldName = "T_Name";
			this.bandedGridColumn8.Name = "bandedGridColumn8";
			this.bandedGridColumn8.OptionsColumn.AllowEdit = false;
			this.bandedGridColumn8.OptionsColumn.AllowFocus = false;
			this.bandedGridColumn8.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn8.OptionsColumn.AllowIncrementalSearch = false;
			this.bandedGridColumn8.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn8.OptionsColumn.AllowMove = false;
			this.bandedGridColumn8.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.bandedGridColumn8.OptionsColumn.ReadOnly = true;
			this.bandedGridColumn8.OptionsColumn.ShowInCustomizationForm = false;
			this.bandedGridColumn8.Visible = true;
			this.bandedGridColumn8.Width = 145;
			// 
			// bandedGridColumn10
			// 
			this.bandedGridColumn10.AppearanceCell.Options.UseTextOptions = true;
			this.bandedGridColumn10.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn10.AppearanceHeader.Options.UseTextOptions = true;
			this.bandedGridColumn10.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn10.Caption = "迟到";
			this.bandedGridColumn10.FieldName = "Late";
			this.bandedGridColumn10.Name = "bandedGridColumn10";
			this.bandedGridColumn10.OptionsColumn.AllowEdit = false;
			this.bandedGridColumn10.OptionsColumn.AllowFocus = false;
			this.bandedGridColumn10.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn10.OptionsColumn.AllowIncrementalSearch = false;
			this.bandedGridColumn10.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn10.OptionsColumn.AllowMove = false;
			this.bandedGridColumn10.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.bandedGridColumn10.OptionsColumn.ReadOnly = true;
			this.bandedGridColumn10.OptionsColumn.ShowInCustomizationForm = false;
			this.bandedGridColumn10.Visible = true;
			this.bandedGridColumn10.Width = 145;
			// 
			// bandedGridColumn12
			// 
			this.bandedGridColumn12.AppearanceCell.Options.UseTextOptions = true;
			this.bandedGridColumn12.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn12.AppearanceHeader.Options.UseTextOptions = true;
			this.bandedGridColumn12.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn12.Caption = "缺席";
			this.bandedGridColumn12.FieldName = "Absence";
			this.bandedGridColumn12.Name = "bandedGridColumn12";
			this.bandedGridColumn12.OptionsColumn.AllowEdit = false;
			this.bandedGridColumn12.OptionsColumn.AllowFocus = false;
			this.bandedGridColumn12.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn12.OptionsColumn.AllowIncrementalSearch = false;
			this.bandedGridColumn12.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn12.OptionsColumn.AllowMove = false;
			this.bandedGridColumn12.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.bandedGridColumn12.OptionsColumn.ReadOnly = true;
			this.bandedGridColumn12.OptionsColumn.ShowInCustomizationForm = false;
			this.bandedGridColumn12.Visible = true;
			this.bandedGridColumn12.Width = 145;
			// 
			// bandedGridColumn14
			// 
			this.bandedGridColumn14.AppearanceCell.Options.UseTextOptions = true;
			this.bandedGridColumn14.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn14.AppearanceHeader.Options.UseTextOptions = true;
			this.bandedGridColumn14.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn14.Caption = "应出勤";
			this.bandedGridColumn14.FieldName = "ShouldAttend";
			this.bandedGridColumn14.Name = "bandedGridColumn14";
			this.bandedGridColumn14.OptionsColumn.AllowEdit = false;
			this.bandedGridColumn14.OptionsColumn.AllowFocus = false;
			this.bandedGridColumn14.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn14.OptionsColumn.AllowIncrementalSearch = false;
			this.bandedGridColumn14.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn14.OptionsColumn.AllowMove = false;
			this.bandedGridColumn14.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.bandedGridColumn14.OptionsColumn.ReadOnly = true;
			this.bandedGridColumn14.OptionsColumn.ShowInCustomizationForm = false;
			this.bandedGridColumn14.Visible = true;
			this.bandedGridColumn14.Width = 154;
			// 
			// bandedGridColumn9
			// 
			this.bandedGridColumn9.AppearanceCell.Options.UseTextOptions = true;
			this.bandedGridColumn9.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn9.AppearanceHeader.Options.UseTextOptions = true;
			this.bandedGridColumn9.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn9.Caption = "教师工号";
			this.bandedGridColumn9.FieldName = "T_Number";
			this.bandedGridColumn9.Name = "bandedGridColumn9";
			this.bandedGridColumn9.OptionsColumn.AllowEdit = false;
			this.bandedGridColumn9.OptionsColumn.AllowFocus = false;
			this.bandedGridColumn9.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn9.OptionsColumn.AllowIncrementalSearch = false;
			this.bandedGridColumn9.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn9.OptionsColumn.AllowMove = false;
			this.bandedGridColumn9.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.bandedGridColumn9.OptionsColumn.ReadOnly = true;
			this.bandedGridColumn9.OptionsColumn.ShowInCustomizationForm = false;
			this.bandedGridColumn9.RowIndex = 1;
			this.bandedGridColumn9.Visible = true;
			this.bandedGridColumn9.Width = 145;
			// 
			// bandedGridColumn11
			// 
			this.bandedGridColumn11.AppearanceCell.Options.UseTextOptions = true;
			this.bandedGridColumn11.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn11.AppearanceHeader.Options.UseTextOptions = true;
			this.bandedGridColumn11.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn11.Caption = "早退";
			this.bandedGridColumn11.FieldName = "OffTime";
			this.bandedGridColumn11.Name = "bandedGridColumn11";
			this.bandedGridColumn11.OptionsColumn.AllowEdit = false;
			this.bandedGridColumn11.OptionsColumn.AllowFocus = false;
			this.bandedGridColumn11.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn11.OptionsColumn.AllowIncrementalSearch = false;
			this.bandedGridColumn11.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn11.OptionsColumn.AllowMove = false;
			this.bandedGridColumn11.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.bandedGridColumn11.OptionsColumn.ReadOnly = true;
			this.bandedGridColumn11.OptionsColumn.ShowInCustomizationForm = false;
			this.bandedGridColumn11.RowIndex = 1;
			this.bandedGridColumn11.Visible = true;
			this.bandedGridColumn11.Width = 145;
			// 
			// bandedGridColumn13
			// 
			this.bandedGridColumn13.AppearanceCell.Options.UseTextOptions = true;
			this.bandedGridColumn13.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn13.AppearanceHeader.Options.UseTextOptions = true;
			this.bandedGridColumn13.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn13.Caption = "实出勤";
			this.bandedGridColumn13.FieldName = "Attend";
			this.bandedGridColumn13.Name = "bandedGridColumn13";
			this.bandedGridColumn13.OptionsColumn.AllowEdit = false;
			this.bandedGridColumn13.OptionsColumn.AllowFocus = false;
			this.bandedGridColumn13.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn13.OptionsColumn.AllowIncrementalSearch = false;
			this.bandedGridColumn13.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn13.OptionsColumn.AllowMove = false;
			this.bandedGridColumn13.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.bandedGridColumn13.OptionsColumn.ReadOnly = true;
			this.bandedGridColumn13.OptionsColumn.ShowInCustomizationForm = false;
			this.bandedGridColumn13.RowIndex = 1;
			this.bandedGridColumn13.Visible = true;
			this.bandedGridColumn13.Width = 145;
			// 
			// bandedGridColumn15
			// 
			this.bandedGridColumn15.AppearanceCell.Options.UseTextOptions = true;
			this.bandedGridColumn15.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn15.AppearanceHeader.Options.UseTextOptions = true;
			this.bandedGridColumn15.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn15.Caption = "外出";
			this.bandedGridColumn15.FieldName = "Out";
			this.bandedGridColumn15.Name = "bandedGridColumn15";
			this.bandedGridColumn15.OptionsColumn.AllowEdit = false;
			this.bandedGridColumn15.OptionsColumn.AllowFocus = false;
			this.bandedGridColumn15.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn15.OptionsColumn.AllowIncrementalSearch = false;
			this.bandedGridColumn15.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn15.OptionsColumn.AllowMove = false;
			this.bandedGridColumn15.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.bandedGridColumn15.OptionsColumn.ReadOnly = true;
			this.bandedGridColumn15.OptionsColumn.ShowInCustomizationForm = false;
			this.bandedGridColumn15.RowIndex = 1;
			this.bandedGridColumn15.Visible = true;
			this.bandedGridColumn15.Width = 154;
			// 
			// gridView3
			// 
			this.gridView3.GridControl = this.gridControl_TeaDutySummary;
			this.gridView3.Name = "gridView3";
			// 
			// gridControl_TeaDutyNormal
			// 
			this.gridControl_TeaDutyNormal.Dock = System.Windows.Forms.DockStyle.Fill;
			// 
			// gridControl_TeaDutyNormal.EmbeddedNavigator
			// 
			this.gridControl_TeaDutyNormal.EmbeddedNavigator.Name = "";
			this.gridControl_TeaDutyNormal.Location = new System.Drawing.Point(3, 18);
			this.gridControl_TeaDutyNormal.MainView = this.advBandedGridView3;
			this.gridControl_TeaDutyNormal.Name = "gridControl_TeaDutyNormal";
			this.gridControl_TeaDutyNormal.Size = new System.Drawing.Size(498, 283);
			this.gridControl_TeaDutyNormal.TabIndex = 2;
			this.gridControl_TeaDutyNormal.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
																													 this.advBandedGridView3});
			// 
			// advBandedGridView3
			// 
			this.advBandedGridView3.Bands.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.GridBand[] {
																										   this.gridBand3});
			this.advBandedGridView3.Columns.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn[] {
																													 this.bandedGridColumn1,
																													 this.bandedGridColumn2,
																													 this.bandedGridColumn3,
																													 this.bandedGridColumn4,
																													 this.bandedGridColumn5,
																													 this.bandedGridColumn6,
																													 this.bandedGridColumn7});
			this.advBandedGridView3.GridControl = this.gridControl_TeaDutyNormal;
			this.advBandedGridView3.Name = "advBandedGridView3";
			this.advBandedGridView3.OptionsCustomization.AllowFilter = false;
			this.advBandedGridView3.OptionsView.ShowFilterPanel = false;
			this.advBandedGridView3.OptionsView.ShowGroupPanel = false;
			// 
			// gridBand3
			// 
			this.gridBand3.Caption = "教师出勤信息";
			this.gridBand3.Columns.Add(this.bandedGridColumn1);
			this.gridBand3.Columns.Add(this.bandedGridColumn2);
			this.gridBand3.Columns.Add(this.bandedGridColumn3);
			this.gridBand3.Columns.Add(this.bandedGridColumn4);
			this.gridBand3.Columns.Add(this.bandedGridColumn5);
			this.gridBand3.Columns.Add(this.bandedGridColumn6);
			this.gridBand3.Columns.Add(this.bandedGridColumn7);
			this.gridBand3.Name = "gridBand3";
			this.gridBand3.Width = 645;
			// 
			// bandedGridColumn1
			// 
			this.bandedGridColumn1.AppearanceCell.Options.UseTextOptions = true;
			this.bandedGridColumn1.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn1.AppearanceHeader.Options.UseTextOptions = true;
			this.bandedGridColumn1.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn1.Caption = "序号";
			this.bandedGridColumn1.FieldName = "T_OrderNumber";
			this.bandedGridColumn1.Name = "bandedGridColumn1";
			this.bandedGridColumn1.OptionsColumn.AllowEdit = false;
			this.bandedGridColumn1.OptionsColumn.AllowFocus = false;
			this.bandedGridColumn1.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn1.OptionsColumn.AllowIncrementalSearch = false;
			this.bandedGridColumn1.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn1.OptionsColumn.AllowMove = false;
			this.bandedGridColumn1.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.bandedGridColumn1.OptionsColumn.ReadOnly = true;
			this.bandedGridColumn1.OptionsColumn.ShowInCustomizationForm = false;
			this.bandedGridColumn1.Visible = true;
			this.bandedGridColumn1.Width = 67;
			// 
			// bandedGridColumn2
			// 
			this.bandedGridColumn2.AppearanceCell.Options.UseTextOptions = true;
			this.bandedGridColumn2.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn2.AppearanceHeader.Options.UseTextOptions = true;
			this.bandedGridColumn2.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn2.Caption = "教师姓名";
			this.bandedGridColumn2.FieldName = "T_Name";
			this.bandedGridColumn2.Name = "bandedGridColumn2";
			this.bandedGridColumn2.OptionsColumn.AllowEdit = false;
			this.bandedGridColumn2.OptionsColumn.AllowFocus = false;
			this.bandedGridColumn2.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn2.OptionsColumn.AllowIncrementalSearch = false;
			this.bandedGridColumn2.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn2.OptionsColumn.AllowMove = false;
			this.bandedGridColumn2.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.bandedGridColumn2.OptionsColumn.ReadOnly = true;
			this.bandedGridColumn2.OptionsColumn.ShowInCustomizationForm = false;
			this.bandedGridColumn2.Visible = true;
			this.bandedGridColumn2.Width = 86;
			// 
			// bandedGridColumn3
			// 
			this.bandedGridColumn3.AppearanceCell.Options.UseTextOptions = true;
			this.bandedGridColumn3.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn3.AppearanceHeader.Options.UseTextOptions = true;
			this.bandedGridColumn3.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn3.Caption = "教师工号";
			this.bandedGridColumn3.FieldName = "T_Number";
			this.bandedGridColumn3.Name = "bandedGridColumn3";
			this.bandedGridColumn3.OptionsColumn.AllowEdit = false;
			this.bandedGridColumn3.OptionsColumn.AllowFocus = false;
			this.bandedGridColumn3.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn3.OptionsColumn.AllowIncrementalSearch = false;
			this.bandedGridColumn3.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn3.OptionsColumn.AllowMove = false;
			this.bandedGridColumn3.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.bandedGridColumn3.OptionsColumn.ReadOnly = true;
			this.bandedGridColumn3.OptionsColumn.ShowInCustomizationForm = false;
			this.bandedGridColumn3.Visible = true;
			this.bandedGridColumn3.Width = 87;
			// 
			// bandedGridColumn4
			// 
			this.bandedGridColumn4.AppearanceCell.Options.UseTextOptions = true;
			this.bandedGridColumn4.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn4.AppearanceHeader.Options.UseTextOptions = true;
			this.bandedGridColumn4.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn4.Caption = "所在部门";
			this.bandedGridColumn4.FieldName = "T_Depart";
			this.bandedGridColumn4.Name = "bandedGridColumn4";
			this.bandedGridColumn4.OptionsColumn.AllowEdit = false;
			this.bandedGridColumn4.OptionsColumn.AllowFocus = false;
			this.bandedGridColumn4.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn4.OptionsColumn.AllowIncrementalSearch = false;
			this.bandedGridColumn4.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn4.OptionsColumn.AllowMove = false;
			this.bandedGridColumn4.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.bandedGridColumn4.OptionsColumn.ReadOnly = true;
			this.bandedGridColumn4.OptionsColumn.ShowInCustomizationForm = false;
			this.bandedGridColumn4.Visible = true;
			this.bandedGridColumn4.Width = 84;
			// 
			// bandedGridColumn5
			// 
			this.bandedGridColumn5.AppearanceCell.Options.UseTextOptions = true;
			this.bandedGridColumn5.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn5.AppearanceHeader.Options.UseTextOptions = true;
			this.bandedGridColumn5.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn5.Caption = "岗位";
			this.bandedGridColumn5.FieldName = "T_Duty";
			this.bandedGridColumn5.Name = "bandedGridColumn5";
			this.bandedGridColumn5.OptionsColumn.AllowEdit = false;
			this.bandedGridColumn5.OptionsColumn.AllowFocus = false;
			this.bandedGridColumn5.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn5.OptionsColumn.AllowIncrementalSearch = false;
			this.bandedGridColumn5.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn5.OptionsColumn.AllowMove = false;
			this.bandedGridColumn5.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.bandedGridColumn5.OptionsColumn.ReadOnly = true;
			this.bandedGridColumn5.OptionsColumn.ShowInCustomizationForm = false;
			this.bandedGridColumn5.Visible = true;
			this.bandedGridColumn5.Width = 78;
			// 
			// bandedGridColumn6
			// 
			this.bandedGridColumn6.AppearanceCell.Options.UseTextOptions = true;
			this.bandedGridColumn6.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn6.AppearanceHeader.Options.UseTextOptions = true;
			this.bandedGridColumn6.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn6.Caption = "记录时间";
			this.bandedGridColumn6.DisplayFormat.FormatString = "yyyy-MM-dd HH:mm:ss";
			this.bandedGridColumn6.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
			this.bandedGridColumn6.FieldName = "teaflow_date";
			this.bandedGridColumn6.Name = "bandedGridColumn6";
			this.bandedGridColumn6.OptionsColumn.AllowEdit = false;
			this.bandedGridColumn6.OptionsColumn.AllowFocus = false;
			this.bandedGridColumn6.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn6.OptionsColumn.AllowIncrementalSearch = false;
			this.bandedGridColumn6.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn6.OptionsColumn.AllowMove = false;
			this.bandedGridColumn6.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.bandedGridColumn6.OptionsColumn.ReadOnly = true;
			this.bandedGridColumn6.OptionsColumn.ShowInCustomizationForm = false;
			this.bandedGridColumn6.Visible = true;
			this.bandedGridColumn6.Width = 127;
			// 
			// bandedGridColumn7
			// 
			this.bandedGridColumn7.AppearanceCell.Options.UseTextOptions = true;
			this.bandedGridColumn7.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn7.AppearanceHeader.Options.UseTextOptions = true;
			this.bandedGridColumn7.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn7.Caption = "记录状态";
			this.bandedGridColumn7.FieldName = "teafs_name";
			this.bandedGridColumn7.Name = "bandedGridColumn7";
			this.bandedGridColumn7.OptionsColumn.AllowEdit = false;
			this.bandedGridColumn7.OptionsColumn.AllowFocus = false;
			this.bandedGridColumn7.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn7.OptionsColumn.AllowIncrementalSearch = false;
			this.bandedGridColumn7.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn7.OptionsColumn.AllowMove = false;
			this.bandedGridColumn7.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.bandedGridColumn7.OptionsColumn.ReadOnly = true;
			this.bandedGridColumn7.OptionsColumn.ShowInCustomizationForm = false;
			this.bandedGridColumn7.Visible = true;
			this.bandedGridColumn7.Width = 116;
			// 
			// popupContainerControl_Remarks
			// 
			this.popupContainerControl_Remarks.Controls.Add(this.memoEdit_Remarks);
			this.popupContainerControl_Remarks.Location = new System.Drawing.Point(48, 120);
			this.popupContainerControl_Remarks.Name = "popupContainerControl_Remarks";
			this.popupContainerControl_Remarks.TabIndex = 1;
			this.popupContainerControl_Remarks.Text = "popupContainerControl8";
			// 
			// memoEdit_Remarks
			// 
			this.memoEdit_Remarks.Dock = System.Windows.Forms.DockStyle.Fill;
			this.memoEdit_Remarks.EditValue = "";
			this.memoEdit_Remarks.Location = new System.Drawing.Point(0, 0);
			this.memoEdit_Remarks.Name = "memoEdit_Remarks";
			this.memoEdit_Remarks.Size = new System.Drawing.Size(200, 100);
			this.memoEdit_Remarks.TabIndex = 0;
			// 
			// gridControl_TeaDutyDetails
			// 
			this.gridControl_TeaDutyDetails.Dock = System.Windows.Forms.DockStyle.Fill;
			// 
			// gridControl_TeaDutyDetails.EmbeddedNavigator
			// 
			this.gridControl_TeaDutyDetails.EmbeddedNavigator.Name = "";
			this.gridControl_TeaDutyDetails.Location = new System.Drawing.Point(3, 18);
			this.gridControl_TeaDutyDetails.MainView = this.advBandedGridView2;
			this.gridControl_TeaDutyDetails.Name = "gridControl_TeaDutyDetails";
			this.gridControl_TeaDutyDetails.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
																																this.repositoryItemMemoEdit1,
																																this.repositoryItemPopupContainerEdit8});
			this.gridControl_TeaDutyDetails.Size = new System.Drawing.Size(498, 283);
			this.gridControl_TeaDutyDetails.TabIndex = 0;
			this.gridControl_TeaDutyDetails.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
																													  this.advBandedGridView2,
																													  this.gridView2});
			// 
			// advBandedGridView2
			// 
			this.advBandedGridView2.Bands.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.GridBand[] {
																										   this.gridBand2});
			this.advBandedGridView2.Columns.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn[] {
																													 this.gridColumn13,
																													 this.gridColumn14,
																													 this.gridColumn15,
																													 this.gridColumn16,
																													 this.gridColumn17,
																													 this.gridColumn18,
																													 this.gridColumn19,
																													 this.gridColumn20,
																													 this.gridColumn21,
																													 this.gridColumn22,
																													 this.gridColumn23,
																													 this.gridColumn24,
																													 this.gridColumn25,
																													 this.gridColumn34,
																													 this.gridColumn35});
			this.advBandedGridView2.GridControl = this.gridControl_TeaDutyDetails;
			this.advBandedGridView2.Name = "advBandedGridView2";
			this.advBandedGridView2.OptionsCustomization.AllowFilter = false;
			this.advBandedGridView2.OptionsCustomization.AllowGroup = false;
			this.advBandedGridView2.OptionsDetail.EnableDetailToolTip = true;
			this.advBandedGridView2.OptionsView.ShowFilterPanel = false;
			this.advBandedGridView2.OptionsView.ShowGroupPanel = false;
			// 
			// gridBand2
			// 
			this.gridBand2.Caption = "教师出勤详细信息";
			this.gridBand2.Columns.Add(this.gridColumn13);
			this.gridBand2.Columns.Add(this.gridColumn14);
			this.gridBand2.Columns.Add(this.gridColumn15);
			this.gridBand2.Columns.Add(this.gridColumn16);
			this.gridBand2.Columns.Add(this.gridColumn17);
			this.gridBand2.Columns.Add(this.gridColumn18);
			this.gridBand2.Columns.Add(this.gridColumn19);
			this.gridBand2.Columns.Add(this.gridColumn20);
			this.gridBand2.Columns.Add(this.gridColumn21);
			this.gridBand2.Columns.Add(this.gridColumn22);
			this.gridBand2.Columns.Add(this.gridColumn23);
			this.gridBand2.Columns.Add(this.gridColumn24);
			this.gridBand2.Columns.Add(this.gridColumn25);
			this.gridBand2.Columns.Add(this.gridColumn34);
			this.gridBand2.Columns.Add(this.gridColumn35);
			this.gridBand2.Name = "gridBand2";
			this.gridBand2.Width = 602;
			// 
			// gridColumn13
			// 
			this.gridColumn13.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn13.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn13.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn13.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn13.Caption = "姓名";
			this.gridColumn13.FieldName = "T_Name";
			this.gridColumn13.Name = "gridColumn13";
			this.gridColumn13.OptionsColumn.AllowEdit = false;
			this.gridColumn13.Visible = true;
			this.gridColumn13.Width = 44;
			// 
			// gridColumn14
			// 
			this.gridColumn14.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn14.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn14.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn14.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn14.Caption = "工号";
			this.gridColumn14.FieldName = "T_Number";
			this.gridColumn14.Name = "gridColumn14";
			this.gridColumn14.OptionsColumn.AllowEdit = false;
			this.gridColumn14.Visible = true;
			this.gridColumn14.Width = 41;
			// 
			// gridColumn15
			// 
			this.gridColumn15.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn15.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn15.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn15.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn15.Caption = "部门";
			this.gridColumn15.FieldName = "T_Depart";
			this.gridColumn15.Name = "gridColumn15";
			this.gridColumn15.OptionsColumn.AllowEdit = false;
			this.gridColumn15.Visible = true;
			this.gridColumn15.Width = 41;
			// 
			// gridColumn16
			// 
			this.gridColumn16.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn16.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn16.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn16.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn16.Caption = "岗位";
			this.gridColumn16.FieldName = "T_Duty";
			this.gridColumn16.Name = "gridColumn16";
			this.gridColumn16.OptionsColumn.AllowEdit = false;
			this.gridColumn16.Visible = true;
			this.gridColumn16.Width = 45;
			// 
			// gridColumn17
			// 
			this.gridColumn17.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn17.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn17.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn17.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn17.Caption = "日期";
			this.gridColumn17.FieldName = "teaondutyanaly_date";
			this.gridColumn17.MinWidth = 10;
			this.gridColumn17.Name = "gridColumn17";
			this.gridColumn17.OptionsColumn.AllowEdit = false;
			this.gridColumn17.Width = 49;
			// 
			// gridColumn18
			// 
			this.gridColumn18.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn18.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn18.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn18.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn18.Caption = "入校时间";
			this.gridColumn18.DisplayFormat.FormatString = "g";
			this.gridColumn18.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
			this.gridColumn18.FieldName = "teaondutyanaly_entertime";
			this.gridColumn18.Name = "gridColumn18";
			this.gridColumn18.OptionsColumn.AllowEdit = false;
			this.gridColumn18.Visible = true;
			this.gridColumn18.Width = 68;
			// 
			// gridColumn19
			// 
			this.gridColumn19.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn19.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn19.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn19.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn19.Caption = "离校时间";
			this.gridColumn19.DisplayFormat.FormatString = "g";
			this.gridColumn19.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
			this.gridColumn19.FieldName = "teaondutyanaly_leavetime";
			this.gridColumn19.Name = "gridColumn19";
			this.gridColumn19.OptionsColumn.AllowEdit = false;
			this.gridColumn19.Visible = true;
			this.gridColumn19.Width = 60;
			// 
			// gridColumn20
			// 
			this.gridColumn20.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn20.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn20.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn20.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn20.Caption = "班次";
			this.gridColumn20.FieldName = "teaduty_name";
			this.gridColumn20.Name = "gridColumn20";
			this.gridColumn20.OptionsColumn.AllowEdit = false;
			this.gridColumn20.Visible = true;
			this.gridColumn20.Width = 48;
			// 
			// gridColumn21
			// 
			this.gridColumn21.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn21.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn21.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn21.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn21.Caption = "迟到";
			this.gridColumn21.FieldName = "teaondutyanaly_isontime";
			this.gridColumn21.MinWidth = 10;
			this.gridColumn21.Name = "gridColumn21";
			this.gridColumn21.OptionsColumn.AllowEdit = false;
			this.gridColumn21.Visible = true;
			this.gridColumn21.Width = 34;
			// 
			// gridColumn22
			// 
			this.gridColumn22.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn22.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn22.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn22.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn22.Caption = "早退";
			this.gridColumn22.FieldName = "teaondutyanaly_isofftime";
			this.gridColumn22.Name = "gridColumn22";
			this.gridColumn22.OptionsColumn.AllowEdit = false;
			this.gridColumn22.Visible = true;
			this.gridColumn22.Width = 41;
			// 
			// gridColumn23
			// 
			this.gridColumn23.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn23.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn23.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn23.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn23.Caption = "缺勤";
			this.gridColumn23.FieldName = "teaondutyanaly_isabsence";
			this.gridColumn23.Name = "gridColumn23";
			this.gridColumn23.OptionsColumn.AllowEdit = false;
			this.gridColumn23.Visible = true;
			this.gridColumn23.Width = 34;
			// 
			// gridColumn24
			// 
			this.gridColumn24.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn24.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn24.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn24.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn24.Caption = "外出";
			this.gridColumn24.FieldName = "teaondutyanaly_isout";
			this.gridColumn24.Name = "gridColumn24";
			this.gridColumn24.OptionsColumn.AllowEdit = false;
			this.gridColumn24.Visible = true;
			this.gridColumn24.Width = 38;
			// 
			// gridColumn25
			// 
			this.gridColumn25.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn25.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn25.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn25.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn25.Caption = "备注";
			this.gridColumn25.ColumnEdit = this.repositoryItemPopupContainerEdit8;
			this.gridColumn25.FieldName = "teaondutyanaly_remark";
			this.gridColumn25.Name = "gridColumn25";
			this.gridColumn25.Visible = true;
			this.gridColumn25.Width = 108;
			// 
			// repositoryItemPopupContainerEdit8
			// 
			this.repositoryItemPopupContainerEdit8.AutoHeight = false;
			this.repositoryItemPopupContainerEdit8.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																														   new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.repositoryItemPopupContainerEdit8.CharacterCasing = System.Windows.Forms.CharacterCasing.Lower;
			this.repositoryItemPopupContainerEdit8.Name = "repositoryItemPopupContainerEdit8";
			this.repositoryItemPopupContainerEdit8.PopupControl = this.popupContainerControl_Remarks;
			this.repositoryItemPopupContainerEdit8.ShowPopupCloseButton = false;
			this.repositoryItemPopupContainerEdit8.QueryPopUp += new System.ComponentModel.CancelEventHandler(this.repositoryItemPopupContainerEdit8_QueryPopUp);
			this.repositoryItemPopupContainerEdit8.QueryResultValue += new DevExpress.XtraEditors.Controls.QueryResultValueEventHandler(this.repositoryItemPopupContainerEdit8_QueryResultValue);
			// 
			// gridColumn34
			// 
			this.gridColumn34.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn34.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn34.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn34.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn34.Caption = "tID";
			this.gridColumn34.FieldName = "teaondutyanaly_teaid";
			this.gridColumn34.Name = "gridColumn34";
			// 
			// gridColumn35
			// 
			this.gridColumn35.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn35.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn35.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn35.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn35.Caption = "dutyID";
			this.gridColumn35.FieldName = "teaondutyanaly_number";
			this.gridColumn35.MinWidth = 10;
			this.gridColumn35.Name = "gridColumn35";
			// 
			// repositoryItemMemoEdit1
			// 
			this.repositoryItemMemoEdit1.Name = "repositoryItemMemoEdit1";
			// 
			// gridView2
			// 
			this.gridView2.GridControl = this.gridControl_TeaDutyDetails;
			this.gridView2.Name = "gridView2";
			// 
			// groupControl_TeaDutyOutDetails
			// 
			this.groupControl_TeaDutyOutDetails.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
				| System.Windows.Forms.AnchorStyles.Left)));
			this.groupControl_TeaDutyOutDetails.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.groupControl_TeaDutyOutDetails.AppearanceCaption.Options.UseFont = true;
			this.groupControl_TeaDutyOutDetails.Controls.Add(this.gridControl_TeaOutDetails);
			this.groupControl_TeaDutyOutDetails.Location = new System.Drawing.Point(2, 304);
			this.groupControl_TeaDutyOutDetails.Name = "groupControl_TeaDutyOutDetails";
			this.groupControl_TeaDutyOutDetails.Size = new System.Drawing.Size(478, 208);
			this.groupControl_TeaDutyOutDetails.TabIndex = 1;
			this.groupControl_TeaDutyOutDetails.Text = "外出详细信息";
			// 
			// gridControl_TeaOutDetails
			// 
			this.gridControl_TeaOutDetails.Dock = System.Windows.Forms.DockStyle.Fill;
			// 
			// gridControl_TeaOutDetails.EmbeddedNavigator
			// 
			this.gridControl_TeaOutDetails.EmbeddedNavigator.Name = "";
			this.gridControl_TeaOutDetails.Location = new System.Drawing.Point(3, 18);
			this.gridControl_TeaOutDetails.MainView = this.gridView4;
			this.gridControl_TeaOutDetails.Name = "gridControl_TeaOutDetails";
			this.gridControl_TeaOutDetails.Size = new System.Drawing.Size(472, 187);
			this.gridControl_TeaOutDetails.TabIndex = 0;
			this.gridControl_TeaOutDetails.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
																													 this.gridView4});
			// 
			// gridView4
			// 
			this.gridView4.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
																							 this.gridColumn26,
																							 this.gridColumn27,
																							 this.gridColumn28,
																							 this.gridColumn29,
																							 this.gridColumn30,
																							 this.gridColumn31,
																							 this.gridColumn32,
																							 this.gridColumn33});
			this.gridView4.GridControl = this.gridControl_TeaOutDetails;
			this.gridView4.Name = "gridView4";
			this.gridView4.OptionsBehavior.Editable = false;
			this.gridView4.OptionsCustomization.AllowFilter = false;
			this.gridView4.OptionsCustomization.AllowGroup = false;
			this.gridView4.OptionsView.ShowFilterPanel = false;
			this.gridView4.OptionsView.ShowFooter = true;
			this.gridView4.OptionsView.ShowGroupPanel = false;
			// 
			// gridColumn26
			// 
			this.gridColumn26.Caption = "姓名";
			this.gridColumn26.FieldName = "T_Name";
			this.gridColumn26.Name = "gridColumn26";
			this.gridColumn26.OptionsColumn.AllowEdit = false;
			this.gridColumn26.Visible = true;
			this.gridColumn26.VisibleIndex = 0;
			this.gridColumn26.Width = 44;
			// 
			// gridColumn27
			// 
			this.gridColumn27.Caption = "工号";
			this.gridColumn27.FieldName = "T_Number";
			this.gridColumn27.Name = "gridColumn27";
			this.gridColumn27.OptionsColumn.AllowEdit = false;
			this.gridColumn27.Visible = true;
			this.gridColumn27.VisibleIndex = 1;
			this.gridColumn27.Width = 40;
			// 
			// gridColumn28
			// 
			this.gridColumn28.Caption = "部门";
			this.gridColumn28.FieldName = "T_Depart";
			this.gridColumn28.Name = "gridColumn28";
			this.gridColumn28.OptionsColumn.AllowEdit = false;
			this.gridColumn28.Visible = true;
			this.gridColumn28.VisibleIndex = 2;
			this.gridColumn28.Width = 46;
			// 
			// gridColumn29
			// 
			this.gridColumn29.Caption = "岗位";
			this.gridColumn29.FieldName = "T_Duty";
			this.gridColumn29.Name = "gridColumn29";
			this.gridColumn29.OptionsColumn.AllowEdit = false;
			this.gridColumn29.Visible = true;
			this.gridColumn29.VisibleIndex = 3;
			this.gridColumn29.Width = 45;
			// 
			// gridColumn30
			// 
			this.gridColumn30.Caption = "外出时班次";
			this.gridColumn30.FieldName = "teaduty_name";
			this.gridColumn30.Name = "gridColumn30";
			this.gridColumn30.OptionsColumn.AllowEdit = false;
			this.gridColumn30.Visible = true;
			this.gridColumn30.VisibleIndex = 4;
			this.gridColumn30.Width = 73;
			// 
			// gridColumn31
			// 
			this.gridColumn31.Caption = "外出时间";
			this.gridColumn31.DisplayFormat.FormatString = "g";
			this.gridColumn31.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
			this.gridColumn31.FieldName = "teaout_leavetime";
			this.gridColumn31.Name = "gridColumn31";
			this.gridColumn31.OptionsColumn.AllowEdit = false;
			this.gridColumn31.Visible = true;
			this.gridColumn31.VisibleIndex = 5;
			this.gridColumn31.Width = 59;
			// 
			// gridColumn32
			// 
			this.gridColumn32.Caption = "外出归来时间";
			this.gridColumn32.DisplayFormat.FormatString = "g";
			this.gridColumn32.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
			this.gridColumn32.FieldName = "teaout_backtime";
			this.gridColumn32.Name = "gridColumn32";
			this.gridColumn32.OptionsColumn.AllowEdit = false;
			this.gridColumn32.Visible = true;
			this.gridColumn32.VisibleIndex = 6;
			this.gridColumn32.Width = 84;
			// 
			// gridColumn33
			// 
			this.gridColumn33.Caption = "外出原因";
			this.gridColumn33.FieldName = "teafs_name";
			this.gridColumn33.Name = "gridColumn33";
			this.gridColumn33.OptionsColumn.AllowEdit = false;
			this.gridColumn33.Visible = true;
			this.gridColumn33.VisibleIndex = 7;
			this.gridColumn33.Width = 64;
			// 
			// xtraTabPage_TeaOnDutyReports
			// 
			this.xtraTabPage_TeaOnDutyReports.Appearance.PageClient.BackColor = System.Drawing.Color.WhiteSmoke;
			this.xtraTabPage_TeaOnDutyReports.Appearance.PageClient.Options.UseBackColor = true;
			this.xtraTabPage_TeaOnDutyReports.Controls.Add(this.groupControl_Graph);
			this.xtraTabPage_TeaOnDutyReports.Controls.Add(this.groupControl_TeaDutyReportsSear);
			this.xtraTabPage_TeaOnDutyReports.Name = "xtraTabPage_TeaOnDutyReports";
			this.xtraTabPage_TeaOnDutyReports.Size = new System.Drawing.Size(768, 515);
			this.xtraTabPage_TeaOnDutyReports.Text = "出勤信息分析";
			// 
			// groupControl_Graph
			// 
			this.groupControl_Graph.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
				| System.Windows.Forms.AnchorStyles.Right)));
			this.groupControl_Graph.Location = new System.Drawing.Point(200, 8);
			this.groupControl_Graph.Name = "groupControl_Graph";
			this.groupControl_Graph.Size = new System.Drawing.Size(568, 392);
			this.groupControl_Graph.TabIndex = 2;
			this.groupControl_Graph.Text = "分析图形";
			this.groupControl_Graph.Resize += new System.EventHandler(this.groupControl_Graph_Resize);
			// 
			// groupControl_TeaDutyReportsSear
			// 
			this.groupControl_TeaDutyReportsSear.Controls.Add(this.comboBoxEdit_Graphic_TeaDept);
			this.groupControl_TeaDutyReportsSear.Controls.Add(this.textEdit_Graphic_TeaID);
			this.groupControl_TeaDutyReportsSear.Controls.Add(this.notePanel_Graphic_TeaID);
			this.groupControl_TeaDutyReportsSear.Controls.Add(this.notePanel_Graphic_TeaName);
			this.groupControl_TeaDutyReportsSear.Controls.Add(this.notePanel_Graphic_TeaDept);
			this.groupControl_TeaDutyReportsSear.Controls.Add(this.notePanel_Graphic_TeaDuty);
			this.groupControl_TeaDutyReportsSear.Controls.Add(this.textEdit_Graphic_TeaName);
			this.groupControl_TeaDutyReportsSear.Controls.Add(this.comboBoxEdit_Graphic_TeaDuty);
			this.groupControl_TeaDutyReportsSear.Controls.Add(this.dateEdit1);
			this.groupControl_TeaDutyReportsSear.Controls.Add(this.notePanel6);
			this.groupControl_TeaDutyReportsSear.Controls.Add(this.notePanel7);
			this.groupControl_TeaDutyReportsSear.Controls.Add(this.dateEdit2);
			this.groupControl_TeaDutyReportsSear.Controls.Add(this.simpleButton_ReportAnalysis);
			this.groupControl_TeaDutyReportsSear.Controls.Add(this.simpleButton2);
			this.groupControl_TeaDutyReportsSear.Location = new System.Drawing.Point(8, 8);
			this.groupControl_TeaDutyReportsSear.Name = "groupControl_TeaDutyReportsSear";
			this.groupControl_TeaDutyReportsSear.Size = new System.Drawing.Size(184, 272);
			this.groupControl_TeaDutyReportsSear.TabIndex = 1;
			this.groupControl_TeaDutyReportsSear.Text = "总出勤情况报表";
			// 
			// comboBoxEdit_Graphic_TeaDept
			// 
			this.comboBoxEdit_Graphic_TeaDept.EditValue = "全部";
			this.comboBoxEdit_Graphic_TeaDept.Location = new System.Drawing.Point(88, 88);
			this.comboBoxEdit_Graphic_TeaDept.Name = "comboBoxEdit_Graphic_TeaDept";
			// 
			// comboBoxEdit_Graphic_TeaDept.Properties
			// 
			this.comboBoxEdit_Graphic_TeaDept.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																																 new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.comboBoxEdit_Graphic_TeaDept.Properties.Items.AddRange(new object[] {
																						 "全部"});
			this.comboBoxEdit_Graphic_TeaDept.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
			this.comboBoxEdit_Graphic_TeaDept.Size = new System.Drawing.Size(88, 23);
			this.comboBoxEdit_Graphic_TeaDept.TabIndex = 20;
			this.comboBoxEdit_Graphic_TeaDept.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit_Graphic_TeaDept_SelectedIndexChanged);
			// 
			// textEdit_Graphic_TeaID
			// 
			this.textEdit_Graphic_TeaID.EditValue = "";
			this.textEdit_Graphic_TeaID.Location = new System.Drawing.Point(88, 24);
			this.textEdit_Graphic_TeaID.Name = "textEdit_Graphic_TeaID";
			this.textEdit_Graphic_TeaID.Size = new System.Drawing.Size(88, 23);
			this.textEdit_Graphic_TeaID.TabIndex = 18;
			// 
			// notePanel_Graphic_TeaID
			// 
			this.notePanel_Graphic_TeaID.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_Graphic_TeaID.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_Graphic_TeaID.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_Graphic_TeaID.ForeColor = System.Drawing.Color.Black;
			this.notePanel_Graphic_TeaID.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_Graphic_TeaID.Location = new System.Drawing.Point(8, 24);
			this.notePanel_Graphic_TeaID.MaxRows = 5;
			this.notePanel_Graphic_TeaID.Name = "notePanel_Graphic_TeaID";
			this.notePanel_Graphic_TeaID.ParentAutoHeight = true;
			this.notePanel_Graphic_TeaID.Size = new System.Drawing.Size(72, 22);
			this.notePanel_Graphic_TeaID.TabIndex = 16;
			this.notePanel_Graphic_TeaID.TabStop = false;
			this.notePanel_Graphic_TeaID.Text = "教师工号";
			// 
			// notePanel_Graphic_TeaName
			// 
			this.notePanel_Graphic_TeaName.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_Graphic_TeaName.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_Graphic_TeaName.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_Graphic_TeaName.ForeColor = System.Drawing.Color.Black;
			this.notePanel_Graphic_TeaName.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_Graphic_TeaName.Location = new System.Drawing.Point(8, 56);
			this.notePanel_Graphic_TeaName.MaxRows = 5;
			this.notePanel_Graphic_TeaName.Name = "notePanel_Graphic_TeaName";
			this.notePanel_Graphic_TeaName.ParentAutoHeight = true;
			this.notePanel_Graphic_TeaName.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.notePanel_Graphic_TeaName.Size = new System.Drawing.Size(72, 22);
			this.notePanel_Graphic_TeaName.TabIndex = 13;
			this.notePanel_Graphic_TeaName.TabStop = false;
			this.notePanel_Graphic_TeaName.Text = "教师姓名";
			// 
			// notePanel_Graphic_TeaDept
			// 
			this.notePanel_Graphic_TeaDept.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_Graphic_TeaDept.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_Graphic_TeaDept.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_Graphic_TeaDept.ForeColor = System.Drawing.Color.Black;
			this.notePanel_Graphic_TeaDept.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_Graphic_TeaDept.Location = new System.Drawing.Point(8, 88);
			this.notePanel_Graphic_TeaDept.MaxRows = 5;
			this.notePanel_Graphic_TeaDept.Name = "notePanel_Graphic_TeaDept";
			this.notePanel_Graphic_TeaDept.ParentAutoHeight = true;
			this.notePanel_Graphic_TeaDept.Size = new System.Drawing.Size(72, 22);
			this.notePanel_Graphic_TeaDept.TabIndex = 14;
			this.notePanel_Graphic_TeaDept.TabStop = false;
			this.notePanel_Graphic_TeaDept.Text = "所在部门";
			// 
			// notePanel_Graphic_TeaDuty
			// 
			this.notePanel_Graphic_TeaDuty.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_Graphic_TeaDuty.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_Graphic_TeaDuty.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_Graphic_TeaDuty.ForeColor = System.Drawing.Color.Black;
			this.notePanel_Graphic_TeaDuty.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_Graphic_TeaDuty.Location = new System.Drawing.Point(8, 120);
			this.notePanel_Graphic_TeaDuty.MaxRows = 5;
			this.notePanel_Graphic_TeaDuty.Name = "notePanel_Graphic_TeaDuty";
			this.notePanel_Graphic_TeaDuty.ParentAutoHeight = true;
			this.notePanel_Graphic_TeaDuty.Size = new System.Drawing.Size(72, 22);
			this.notePanel_Graphic_TeaDuty.TabIndex = 15;
			this.notePanel_Graphic_TeaDuty.TabStop = false;
			this.notePanel_Graphic_TeaDuty.Text = "岗位";
			// 
			// textEdit_Graphic_TeaName
			// 
			this.textEdit_Graphic_TeaName.EditValue = "";
			this.textEdit_Graphic_TeaName.Location = new System.Drawing.Point(88, 56);
			this.textEdit_Graphic_TeaName.Name = "textEdit_Graphic_TeaName";
			this.textEdit_Graphic_TeaName.Size = new System.Drawing.Size(88, 23);
			this.textEdit_Graphic_TeaName.TabIndex = 17;
			// 
			// comboBoxEdit_Graphic_TeaDuty
			// 
			this.comboBoxEdit_Graphic_TeaDuty.EditValue = "全部";
			this.comboBoxEdit_Graphic_TeaDuty.Location = new System.Drawing.Point(88, 120);
			this.comboBoxEdit_Graphic_TeaDuty.Name = "comboBoxEdit_Graphic_TeaDuty";
			// 
			// comboBoxEdit_Graphic_TeaDuty.Properties
			// 
			this.comboBoxEdit_Graphic_TeaDuty.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																																 new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.comboBoxEdit_Graphic_TeaDuty.Properties.Items.AddRange(new object[] {
																						 "全部"});
			this.comboBoxEdit_Graphic_TeaDuty.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
			this.comboBoxEdit_Graphic_TeaDuty.Size = new System.Drawing.Size(88, 23);
			this.comboBoxEdit_Graphic_TeaDuty.TabIndex = 19;
			// 
			// dateEdit1
			// 
			this.dateEdit1.EditValue = new System.DateTime(2005, 12, 31, 0, 0, 0, 0);
			this.dateEdit1.Location = new System.Drawing.Point(88, 152);
			this.dateEdit1.Name = "dateEdit1";
			// 
			// dateEdit1.Properties
			// 
			this.dateEdit1.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																											  new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.dateEdit1.Properties.Mask.EditMask = "d";
			this.dateEdit1.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.DateTime;
			this.dateEdit1.Size = new System.Drawing.Size(88, 23);
			this.dateEdit1.TabIndex = 12;
			// 
			// notePanel6
			// 
			this.notePanel6.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel6.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel6.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel6.ForeColor = System.Drawing.Color.Black;
			this.notePanel6.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel6.Location = new System.Drawing.Point(8, 152);
			this.notePanel6.MaxRows = 5;
			this.notePanel6.Name = "notePanel6";
			this.notePanel6.ParentAutoHeight = true;
			this.notePanel6.Size = new System.Drawing.Size(72, 22);
			this.notePanel6.TabIndex = 10;
			this.notePanel6.TabStop = false;
			this.notePanel6.Text = "起始时间";
			// 
			// notePanel7
			// 
			this.notePanel7.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel7.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel7.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel7.ForeColor = System.Drawing.Color.Black;
			this.notePanel7.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel7.Location = new System.Drawing.Point(8, 184);
			this.notePanel7.MaxRows = 5;
			this.notePanel7.Name = "notePanel7";
			this.notePanel7.ParentAutoHeight = true;
			this.notePanel7.Size = new System.Drawing.Size(72, 22);
			this.notePanel7.TabIndex = 9;
			this.notePanel7.TabStop = false;
			this.notePanel7.Text = "结束时间";
			// 
			// dateEdit2
			// 
			this.dateEdit2.EditValue = new System.DateTime(2005, 12, 31, 0, 0, 0, 0);
			this.dateEdit2.Location = new System.Drawing.Point(88, 184);
			this.dateEdit2.Name = "dateEdit2";
			// 
			// dateEdit2.Properties
			// 
			this.dateEdit2.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																											  new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.dateEdit2.Properties.Mask.EditMask = "d";
			this.dateEdit2.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.DateTime;
			this.dateEdit2.Size = new System.Drawing.Size(88, 23);
			this.dateEdit2.TabIndex = 11;
			// 
			// simpleButton_ReportAnalysis
			// 
			this.simpleButton_ReportAnalysis.Location = new System.Drawing.Point(24, 224);
			this.simpleButton_ReportAnalysis.Name = "simpleButton_ReportAnalysis";
			this.simpleButton_ReportAnalysis.Size = new System.Drawing.Size(64, 23);
			this.simpleButton_ReportAnalysis.TabIndex = 8;
			this.simpleButton_ReportAnalysis.Text = "分析";
			this.simpleButton_ReportAnalysis.Click += new System.EventHandler(this.simpleButton_ReportAnalysis_Click);
			// 
			// simpleButton2
			// 
			this.simpleButton2.Location = new System.Drawing.Point(96, 224);
			this.simpleButton2.Name = "simpleButton2";
			this.simpleButton2.Size = new System.Drawing.Size(64, 23);
			this.simpleButton2.TabIndex = 8;
			this.simpleButton2.Text = "生成报表";
			this.simpleButton2.Click += new System.EventHandler(this.simpleButton2_Click);
			// 
			// TeacherOnDutyInfo
			// 
			this.Appearance.BackColor = System.Drawing.Color.WhiteSmoke;
			this.Appearance.Options.UseBackColor = true;
			this.Controls.Add(this.xtraTabControl_TeaDutyDetailInfo);
			this.Name = "TeacherOnDutyInfo";
			this.Size = new System.Drawing.Size(772, 540);
			((System.ComponentModel.ISupportInitialize)(this.advBandedGridView1)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.gridControl_TeaDutyAsign)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.repositoryItemPopupContainerEdit1)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.popupContainerControl1)).EndInit();
			this.popupContainerControl1.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.checkedListBoxControl1)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.repositoryItemPopupContainerEdit2)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.popupContainerControl2)).EndInit();
			this.popupContainerControl2.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.checkedListBoxControl2)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.repositoryItemPopupContainerEdit3)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.popupContainerControl3)).EndInit();
			this.popupContainerControl3.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.checkedListBoxControl3)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.repositoryItemPopupContainerEdit4)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.popupContainerControl4)).EndInit();
			this.popupContainerControl4.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.checkedListBoxControl4)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.repositoryItemPopupContainerEdit5)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.popupContainerControl5)).EndInit();
			this.popupContainerControl5.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.checkedListBoxControl5)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.repositoryItemPopupContainerEdit6)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.popupContainerControl6)).EndInit();
			this.popupContainerControl6.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.checkedListBoxControl6)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.repositoryItemPopupContainerEdit7)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.popupContainerControl7)).EndInit();
			this.popupContainerControl7.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.checkedListBoxControl7)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEdit1)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.xtraTabControl_TeaDutyDetailInfo)).EndInit();
			this.xtraTabControl_TeaDutyDetailInfo.ResumeLayout(false);
			this.xtraTabPage_TeaDutyDetails.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.groupControl_TeaDutyAsign)).EndInit();
			this.groupControl_TeaDutyAsign.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.groupControl_TeaDutyDetailsMgmt)).EndInit();
			this.groupControl_TeaDutyDetailsMgmt.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.splitContainerControl_DutyMgmt)).EndInit();
			this.splitContainerControl_DutyMgmt.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.textEdit_DutyStartTime.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_AddDutyName.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_AddDutyRemark.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_DutyEndTime.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.dateEdit_DutyHistory.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_DutySearTeaClass.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_DutySearTeaGarde.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_DutySearTeaID.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_DutySearTeaName.Properties)).EndInit();
			this.xtraTabPage_TeaOnDutyInfo.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.groupControl_TeaDutyDetailsStatistic)).EndInit();
			this.groupControl_TeaDutyDetailsStatistic.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.textEdit_TeaOut.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_TeaShouldAttend.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_TeaAttend.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_TeaAbsence.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_TeaOffTime.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_TeaOnTime.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_TeaDutyDetailsSearch)).EndInit();
			this.groupControl_TeaDutyDetailsSearch.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_TeaDutyDetailsFlowType.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_TeaDutyDetailsSerType.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.dateEdit_TeaDutyDetailsSearByStartTime.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_TeaDutyDetailsSearByGrade.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_TeaDutyDetailsSearByID.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_TeaDutyDetailsSearByName.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_TeaDutyDetailsSearByClass.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.dateEdit_TeaDutyDetailsSearByEndTime.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_TeaDutyDetails)).EndInit();
			this.groupControl_TeaDutyDetails.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.gridControl_TeaDutySummary)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.advBandedGridView4)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.gridView3)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.gridControl_TeaDutyNormal)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.advBandedGridView3)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.popupContainerControl_Remarks)).EndInit();
			this.popupContainerControl_Remarks.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.memoEdit_Remarks.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.gridControl_TeaDutyDetails)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.advBandedGridView2)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.repositoryItemPopupContainerEdit8)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.repositoryItemMemoEdit1)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.gridView2)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_TeaDutyOutDetails)).EndInit();
			this.groupControl_TeaDutyOutDetails.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.gridControl_TeaOutDetails)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.gridView4)).EndInit();
			this.xtraTabPage_TeaOnDutyReports.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.groupControl_Graph)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_TeaDutyReportsSear)).EndInit();
			this.groupControl_TeaDutyReportsSear.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_Graphic_TeaDept.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_Graphic_TeaID.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_Graphic_TeaName.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_Graphic_TeaDuty.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.dateEdit1.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.dateEdit2.Properties)).EndInit();
			this.ResumeLayout(false);

		}
示例#41
0
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmStaff));
     this.colDNC = new DevExpress.XtraGrid.Columns.GridColumn();
     this.MainMenu1 = new System.Windows.Forms.MainMenu(this.components);
     this.MenuItem1 = new System.Windows.Forms.MenuItem();
     this.MenuItem2 = new System.Windows.Forms.MenuItem();
     this.MenuItem4 = new System.Windows.Forms.MenuItem();
     this.MenuItemChangePassword = new System.Windows.Forms.MenuItem();
     this.MenuItemBlockMembershipID = new System.Windows.Forms.MenuItem();
     this.MenuItemResetMembershipID = new System.Windows.Forms.MenuItem();
     this.MenuItem9 = new System.Windows.Forms.MenuItem();
     this.MenuItem10 = new System.Windows.Forms.MenuItem();
     this.MenuItem5 = new System.Windows.Forms.MenuItem();
     this.Bar1 = new DevExpress.XtraBars.Bar();
     this.BarManager1 = new DevExpress.XtraBars.BarManager(this.components);
     this.Bar2 = new DevExpress.XtraBars.Bar();
     this.bbiClose = new DevExpress.XtraBars.BarButtonItem();
     this.barstaticCurrentLogin = new DevExpress.XtraBars.BarStaticItem();
     this.BarAndDockingController1 = new DevExpress.XtraBars.BarAndDockingController(this.components);
     this.barDockControlTop = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlBottom = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlLeft = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlRight = new DevExpress.XtraBars.BarDockControl();
     this.barButtonItem1 = new DevExpress.XtraBars.BarButtonItem();
     this.tabStaff = new DevExpress.XtraTab.XtraTabControl();
     this.tabStaffFour = new DevExpress.XtraTab.XtraTabPage();
     this.lblFour_2 = new DevExpress.XtraEditors.SimpleButton();
     this.lblFour_1 = new DevExpress.XtraEditors.SimpleButton();
     this.groupContact = new DevExpress.XtraEditors.GroupControl();
     this.groupContactEntry = new DevExpress.XtraEditors.GroupControl();
     this.cmbStatus = new DevExpress.XtraEditors.ComboBoxEdit();
     this.simpleButton1 = new DevExpress.XtraEditors.SimpleButton();
     this.lblSearchLead = new System.Windows.Forms.Label();
     this.txtSearchLead = new System.Windows.Forms.TextBox();
     this.sbtnContactEdit = new DevExpress.XtraEditors.SimpleButton();
     this.sbtnContactDelete = new DevExpress.XtraEditors.SimpleButton();
     this.sbtnContactNew = new DevExpress.XtraEditors.SimpleButton();
     this.gridctrContact = new DevExpress.XtraGrid.GridControl();
     this.gvContact = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colDateTime = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colPhoneCall = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colSMS = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colContactPerson = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colStaffAssigned = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colNRIC = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colDOB = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colContactMobile = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colRemarks = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colMediaSourceID = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colAppointmentStatus = new DevExpress.XtraGrid.Columns.GridColumn();
     this.groupAppointment = new DevExpress.XtraEditors.GroupControl();
     this.groupAppointmentEntry = new DevExpress.XtraEditors.GroupControl();
     this.groupControl12 = new DevExpress.XtraEditors.GroupControl();
     this.cbAppointmentYear = new DevExpress.XtraEditors.ComboBoxEdit();
     this.label26 = new System.Windows.Forms.Label();
     this.label27 = new System.Windows.Forms.Label();
     this.cbAppointmentMonth = new DevExpress.XtraEditors.ComboBoxEdit();
     this.sbtnAppointmentInquiry = new DevExpress.XtraEditors.SimpleButton();
     this.sbtnAppointmentDelete = new DevExpress.XtraEditors.SimpleButton();
     this.sbtnAppointmentPrint = new DevExpress.XtraEditors.SimpleButton();
     this.sbtnAppointmentVerifiedBy = new DevExpress.XtraEditors.SimpleButton();
     this.sbtnAppointmentEdit = new DevExpress.XtraEditors.SimpleButton();
     this.sbtnAppointmentNew = new DevExpress.XtraEditors.SimpleButton();
     this.gridctrAppointment = new DevExpress.XtraGrid.GridControl();
     this.gvAppointment = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colVerifyAppt = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemCheckEditUtilizationSelection = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.colAppointmentID = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colAppointmentDate = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colAppointmentStartDate = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colAppointmentEndDate = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colAppointmentOrganization = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colAppointmentContact = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colAppointmentMobileNo = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colAppointmentRemarks = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colAppointmentStaffAssign = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colAppointmentServedBy = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colAppointmentVerifiedBy = new DevExpress.XtraGrid.Columns.GridColumn();
     this.tabStaffOne = new DevExpress.XtraTab.XtraTabPage();
     this.lblOne_2 = new DevExpress.XtraEditors.SimpleButton();
     this.luedtMemoEmployeeID = new DevExpress.XtraEditors.LookUpEdit();
     this.lblMemoEmployeeID = new System.Windows.Forms.Label();
     this.groupMessages = new DevExpress.XtraEditors.GroupControl();
     this.lblmnuMessagesReceipient = new System.Windows.Forms.Label();
     this.lblmnuMessagesFollowUpAction = new System.Windows.Forms.Label();
     this.lblmnuMessagesMemoInfo = new System.Windows.Forms.Label();
     this.groupMessagesEntry = new DevExpress.XtraEditors.GroupControl();
     this.cbViewMemo = new DevExpress.XtraEditors.ComboBoxEdit();
     this.sbtnMemoUnpost = new DevExpress.XtraEditors.SimpleButton();
     this.sbtnMemoPrint = new DevExpress.XtraEditors.SimpleButton();
     this.sbtnMemoNew = new DevExpress.XtraEditors.SimpleButton();
     this.gctrMemo = new DevExpress.XtraGrid.GridControl();
     this.gvMemo = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colnMemoID = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colPostUpdateDateTime = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colAuthorID = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colAuthor = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colTitle = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colRead = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemCheckEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.groupMessagesMemoInfo = new DevExpress.XtraEditors.GroupControl();
     this.GroupControl8 = new DevExpress.XtraEditors.GroupControl();
     this.panel1 = new System.Windows.Forms.Panel();
     this.label40 = new System.Windows.Forms.Label();
     this.llFile3 = new System.Windows.Forms.LinkLabel();
     this.llFile2 = new System.Windows.Forms.LinkLabel();
     this.llFile1 = new System.Windows.Forms.LinkLabel();
     this.pbF3Select = new System.Windows.Forms.PictureBox();
     this.txtFilePath3 = new DevExpress.XtraEditors.TextEdit();
     this.label39 = new System.Windows.Forms.Label();
     this.pbF2Select = new System.Windows.Forms.PictureBox();
     this.txtFilePath2 = new DevExpress.XtraEditors.TextEdit();
     this.label38 = new System.Windows.Forms.Label();
     this.pbF1Select = new System.Windows.Forms.PictureBox();
     this.txtFilePath1 = new DevExpress.XtraEditors.TextEdit();
     this.label28 = new System.Windows.Forms.Label();
     this.pbPreview = new System.Windows.Forms.PictureBox();
     this.pbFileSelect = new System.Windows.Forms.PictureBox();
     this.txtImagePath = new DevExpress.XtraEditors.TextEdit();
     this.lblFileName = new System.Windows.Forms.Label();
     this.sbtnUpdate = new DevExpress.XtraEditors.SimpleButton();
     this.memoedtMessage = new DevExpress.XtraEditors.MemoEdit();
     this.Label37 = new System.Windows.Forms.Label();
     this.groupMessagesReceipient = new DevExpress.XtraEditors.GroupControl();
     this.GroupControl6 = new DevExpress.XtraEditors.GroupControl();
     this.cbMemoReceipient = new DevExpress.XtraEditors.ComboBoxEdit();
     this.sbtnReceipientDelete = new DevExpress.XtraEditors.SimpleButton();
     this.sbtnReceipientNew = new DevExpress.XtraEditors.SimpleButton();
     this.gctrReceipient = new DevExpress.XtraGrid.GridControl();
     this.gvReceipient = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colRecipientType = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colRecipient = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colRecipientID = new DevExpress.XtraGrid.Columns.GridColumn();
     this.groupMessagesFollowUpAction = new DevExpress.XtraEditors.GroupControl();
     this.GroupControl4 = new DevExpress.XtraEditors.GroupControl();
     this.sbtnRepliesDelete = new DevExpress.XtraEditors.SimpleButton();
     this.sbtnRepliesView = new DevExpress.XtraEditors.SimpleButton();
     this.sbtnRepliesUpdate = new DevExpress.XtraEditors.SimpleButton();
     this.sbtnRepliesAdd = new DevExpress.XtraEditors.SimpleButton();
     this.gctrReplies = new DevExpress.XtraGrid.GridControl();
     this.gvReplies = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colReplyDate = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colReplyEmployeeID = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colReplyEmployeeName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colReplyMessage = new DevExpress.XtraGrid.Columns.GridColumn();
     this.groupReceipientGroup = new DevExpress.XtraEditors.GroupControl();
     this.groupReceipientGroupEntry = new DevExpress.XtraEditors.GroupControl();
     this.sbtnRecpGrpDelete = new DevExpress.XtraEditors.SimpleButton();
     this.sbtnRecpGrpEdit = new DevExpress.XtraEditors.SimpleButton();
     this.sbtnRecpGrpNew = new DevExpress.XtraEditors.SimpleButton();
     this.gctrRecpGrp = new DevExpress.XtraGrid.GridControl();
     this.gvRecpGrp = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colReceipientGroupID = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colReceipientGroupCode = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colDescription = new DevExpress.XtraGrid.Columns.GridColumn();
     this.groupReceipientGroupReceipientEntries = new DevExpress.XtraEditors.GroupControl();
     this.GroupControl10 = new DevExpress.XtraEditors.GroupControl();
     this.sbtnRecpEntryDelete = new DevExpress.XtraEditors.SimpleButton();
     this.sbtnRecpEntryNew = new DevExpress.XtraEditors.SimpleButton();
     this.gctrRecpEntry = new DevExpress.XtraGrid.GridControl();
     this.gvRecpEntry = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colEmployeeID = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colEmployeeName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.lblOne_1 = new DevExpress.XtraEditors.SimpleButton();
     this.tabStaffTwo = new DevExpress.XtraTab.XtraTabPage();
     this.lblTwo_1 = new DevExpress.XtraEditors.SimpleButton();
     this.lblTwo_2 = new DevExpress.XtraEditors.SimpleButton();
     this.groupSales = new DevExpress.XtraEditors.GroupControl();
     this.groupSalesEntry = new DevExpress.XtraEditors.GroupControl();
     this.groupControl7 = new DevExpress.XtraEditors.GroupControl();
     this.luedtSalesBranchCode = new DevExpress.XtraEditors.LookUpEdit();
     this.label16 = new System.Windows.Forms.Label();
     this.cbSalesYear = new DevExpress.XtraEditors.ComboBoxEdit();
     this.label6 = new System.Windows.Forms.Label();
     this.label7 = new System.Windows.Forms.Label();
     this.label8 = new System.Windows.Forms.Label();
     this.cbSalesMonth = new DevExpress.XtraEditors.ComboBoxEdit();
     this.sbtnSalesInquiry = new DevExpress.XtraEditors.SimpleButton();
     this.cbSalesType = new DevExpress.XtraEditors.ComboBoxEdit();
     this.gctrSales = new DevExpress.XtraGrid.GridControl();
     this.gvSales = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colSalesDate = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colSalesReceipt = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colSalesMembershipID = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colSalesNettAmount = new DevExpress.XtraGrid.Columns.GridColumn();
     this.groupService = new DevExpress.XtraEditors.GroupControl();
     this.groupServiceEntry = new DevExpress.XtraEditors.GroupControl();
     this.groupControl3 = new DevExpress.XtraEditors.GroupControl();
     this.luedtCommissionServiceBranch = new DevExpress.XtraEditors.LookUpEdit();
     this.label30 = new System.Windows.Forms.Label();
     this.cbServiceYear = new DevExpress.XtraEditors.ComboBoxEdit();
     this.label5 = new System.Windows.Forms.Label();
     this.label3 = new System.Windows.Forms.Label();
     this.label2 = new System.Windows.Forms.Label();
     this.cbServiceMonth = new DevExpress.XtraEditors.ComboBoxEdit();
     this.cbServiceServiceType = new DevExpress.XtraEditors.ComboBoxEdit();
     this.sbtnServiceInquiry = new DevExpress.XtraEditors.SimpleButton();
     this.gctrService = new DevExpress.XtraGrid.GridControl();
     this.gvService = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colServicedtDate = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colServicestrBranchCode = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colServicestrMembershipID = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colServicestrServiceCode = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colServicestrCommission = new DevExpress.XtraGrid.Columns.GridColumn();
     this.tabStaffFive = new DevExpress.XtraTab.XtraTabPage();
     this.groupCustomerVoice = new DevExpress.XtraEditors.GroupControl();
     this.lblmnuCustomerVoiceActionHistory = new System.Windows.Forms.Label();
     this.lblmnuCustomerVoiceCVDetails = new System.Windows.Forms.Label();
     this.GroupControl24 = new DevExpress.XtraEditors.GroupControl();
     this.luedtCVSubmitter = new DevExpress.XtraEditors.LookUpEdit();
     this.sbtnAssign = new DevExpress.XtraEditors.SimpleButton();
     this.sbtnCVPrint = new DevExpress.XtraEditors.SimpleButton();
     this.sbtnCVEdit = new DevExpress.XtraEditors.SimpleButton();
     this.sbtnCVDelete = new DevExpress.XtraEditors.SimpleButton();
     this.sbtnCVNew = new DevExpress.XtraEditors.SimpleButton();
     this.cbListCV = new DevExpress.XtraEditors.ComboBoxEdit();
     this.gctrCV = new DevExpress.XtraGrid.GridControl();
     this.gvCV = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colRefNo = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colDtReceived = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colBranch = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colMembershipID = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colMemberName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colDepartment = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colType = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colCategory = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colSubject = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colSubmittedBy = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colStaffSubject = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colDepartmentAssignedTo = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colLastUpdatedDate = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colStatus = new DevExpress.XtraGrid.Columns.GridColumn();
     this.label17 = new System.Windows.Forms.Label();
     this.luedtCVAssignTo = new DevExpress.XtraEditors.LookUpEdit();
     this.lblCVSubmitter = new System.Windows.Forms.Label();
     this.groupCustomerVoiceActionHistory = new DevExpress.XtraEditors.GroupControl();
     this.GroupControl26 = new DevExpress.XtraEditors.GroupControl();
     this.sbtnNewCVAction = new DevExpress.XtraEditors.SimpleButton();
     this.gctrCVAction = new DevExpress.XtraGrid.GridControl();
     this.gvCVAction = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colActionID = new DevExpress.XtraGrid.Columns.GridColumn();
     this.coldtDate = new DevExpress.XtraGrid.Columns.GridColumn();
     this.coldtTime = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colMode = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colActionDetail = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colActionTakenBy = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colActionTakenByID = new DevExpress.XtraGrid.Columns.GridColumn();
     this.groupCustomerVoiceCVDetails = new DevExpress.XtraEditors.GroupControl();
     this.GroupControl28 = new DevExpress.XtraEditors.GroupControl();
     this.txtHomeNo = new DevExpress.XtraEditors.TextEdit();
     this.label31 = new System.Windows.Forms.Label();
     this.txtEmail = new DevExpress.XtraEditors.TextEdit();
     this.label10 = new System.Windows.Forms.Label();
     this.txtContactNo = new DevExpress.XtraEditors.TextEdit();
     this.label9 = new System.Windows.Forms.Label();
     this.memoeditSummaryCV = new DevExpress.XtraEditors.MemoEdit();
     this.Label32 = new System.Windows.Forms.Label();
     this.tabStaffSeven = new DevExpress.XtraTab.XtraTabPage();
     this.groupMobileApp = new DevExpress.XtraEditors.GroupControl();
     this.lblThree_3 = new DevExpress.XtraEditors.SimpleButton();
     this.lblThree_1 = new DevExpress.XtraEditors.SimpleButton();
     this.lblThree_2 = new DevExpress.XtraEditors.SimpleButton();
     this.colDNCExpiryDate = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colEmail = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colDNCLog = new DevExpress.XtraGrid.Columns.GridColumn();
     this.ColGender = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colMediaSource = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colstrBranchCode = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colBranchCode = new DevExpress.XtraGrid.Columns.GridColumn();
     this.timer1 = new System.Windows.Forms.Timer(this.components);
     this.toolTip1 = new System.Windows.Forms.ToolTip(this.components);
     ((System.ComponentModel.ISupportInitialize)(this.BarManager1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.BarAndDockingController1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tabStaff)).BeginInit();
     this.tabStaff.SuspendLayout();
     this.tabStaffFour.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupContact)).BeginInit();
     this.groupContact.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupContactEntry)).BeginInit();
     this.groupContactEntry.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cmbStatus.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridctrContact)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvContact)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupAppointment)).BeginInit();
     this.groupAppointment.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupAppointmentEntry)).BeginInit();
     this.groupAppointmentEntry.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl12)).BeginInit();
     this.groupControl12.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cbAppointmentYear.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbAppointmentMonth.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridctrAppointment)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvAppointment)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEditUtilizationSelection)).BeginInit();
     this.tabStaffOne.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.luedtMemoEmployeeID.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupMessages)).BeginInit();
     this.groupMessages.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupMessagesEntry)).BeginInit();
     this.groupMessagesEntry.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cbViewMemo.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gctrMemo)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvMemo)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupMessagesMemoInfo)).BeginInit();
     this.groupMessagesMemoInfo.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.GroupControl8)).BeginInit();
     this.GroupControl8.SuspendLayout();
     this.panel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pbF3Select)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtFilePath3.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pbF2Select)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtFilePath2.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pbF1Select)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtFilePath1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pbPreview)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pbFileSelect)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtImagePath.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.memoedtMessage.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupMessagesReceipient)).BeginInit();
     this.groupMessagesReceipient.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.GroupControl6)).BeginInit();
     this.GroupControl6.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cbMemoReceipient.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gctrReceipient)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvReceipient)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupMessagesFollowUpAction)).BeginInit();
     this.groupMessagesFollowUpAction.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.GroupControl4)).BeginInit();
     this.GroupControl4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gctrReplies)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvReplies)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupReceipientGroup)).BeginInit();
     this.groupReceipientGroup.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupReceipientGroupEntry)).BeginInit();
     this.groupReceipientGroupEntry.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gctrRecpGrp)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvRecpGrp)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupReceipientGroupReceipientEntries)).BeginInit();
     this.groupReceipientGroupReceipientEntries.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.GroupControl10)).BeginInit();
     this.GroupControl10.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gctrRecpEntry)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvRecpEntry)).BeginInit();
     this.tabStaffTwo.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupSales)).BeginInit();
     this.groupSales.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupSalesEntry)).BeginInit();
     this.groupSalesEntry.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl7)).BeginInit();
     this.groupControl7.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.luedtSalesBranchCode.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbSalesYear.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbSalesMonth.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbSalesType.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gctrSales)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvSales)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupService)).BeginInit();
     this.groupService.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupServiceEntry)).BeginInit();
     this.groupServiceEntry.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl3)).BeginInit();
     this.groupControl3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.luedtCommissionServiceBranch.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbServiceYear.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbServiceMonth.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbServiceServiceType.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gctrService)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvService)).BeginInit();
     this.tabStaffFive.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupCustomerVoice)).BeginInit();
     this.groupCustomerVoice.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.GroupControl24)).BeginInit();
     this.GroupControl24.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.luedtCVSubmitter.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbListCV.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gctrCV)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvCV)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.luedtCVAssignTo.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupCustomerVoiceActionHistory)).BeginInit();
     this.groupCustomerVoiceActionHistory.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.GroupControl26)).BeginInit();
     this.GroupControl26.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gctrCVAction)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvCVAction)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupCustomerVoiceCVDetails)).BeginInit();
     this.groupCustomerVoiceCVDetails.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.GroupControl28)).BeginInit();
     this.GroupControl28.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtHomeNo.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtEmail.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtContactNo.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.memoeditSummaryCV.Properties)).BeginInit();
     this.tabStaffSeven.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupMobileApp)).BeginInit();
     this.SuspendLayout();
     //
     // colDNC
     //
     this.colDNC.Caption = "DNC";
     this.colDNC.FieldName = "fDNC";
     this.colDNC.Name = "colDNC";
     this.colDNC.Visible = true;
     this.colDNC.VisibleIndex = 4;
     this.colDNC.Width = 35;
     //
     // MainMenu1
     //
     this.MainMenu1.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
     this.MenuItem1,
     this.MenuItem4,
     this.MenuItem5});
     //
     // MenuItem1
     //
     this.MenuItem1.Index = 0;
     this.MenuItem1.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
     this.MenuItem2});
     this.MenuItem1.Text = "File";
     //
     // MenuItem2
     //
     this.MenuItem2.Index = 0;
     this.MenuItem2.Text = "Quit";
     this.MenuItem2.Click += new System.EventHandler(this.MenuItem2_Click);
     //
     // MenuItem4
     //
     this.MenuItem4.Index = 1;
     this.MenuItem4.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
     this.MenuItemChangePassword,
     this.MenuItemBlockMembershipID,
     this.MenuItemResetMembershipID,
     this.MenuItem9,
     this.MenuItem10});
     this.MenuItem4.Text = "Tools";
     //
     // MenuItemChangePassword
     //
     this.MenuItemChangePassword.Index = 0;
     this.MenuItemChangePassword.Text = "Change Password";
     this.MenuItemChangePassword.Click += new System.EventHandler(this.MenuItemChangePassword_Click);
     //
     // MenuItemBlockMembershipID
     //
     this.MenuItemBlockMembershipID.Index = 1;
     this.MenuItemBlockMembershipID.Text = "Block Membership ID";
     this.MenuItemBlockMembershipID.Click += new System.EventHandler(this.MenuItemBlockMembershipID_Click);
     //
     // MenuItemResetMembershipID
     //
     this.MenuItemResetMembershipID.Index = 2;
     this.MenuItemResetMembershipID.Text = "Reset Membership ID";
     this.MenuItemResetMembershipID.Click += new System.EventHandler(this.MenuItemResetMembershipID_Click);
     //
     // MenuItem9
     //
     this.MenuItem9.Index = 3;
     this.MenuItem9.Text = "Re-print receipt";
     //
     // MenuItem10
     //
     this.MenuItem10.Index = 4;
     this.MenuItem10.Text = "Open Carton";
     this.MenuItem10.Visible = false;
     //
     // MenuItem5
     //
     this.MenuItem5.Index = 2;
     this.MenuItem5.Text = "Help";
     //
     // Bar1
     //
     this.Bar1.Appearance.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Bar1.Appearance.Options.UseFont = true;
     this.Bar1.BarName = "bnTopBar";
     this.Bar1.DockCol = 0;
     this.Bar1.DockRow = 0;
     this.Bar1.DockStyle = DevExpress.XtraBars.BarDockStyle.Top;
     this.Bar1.OptionsBar.MultiLine = true;
     this.Bar1.OptionsBar.UseWholeRow = true;
     this.Bar1.Text = "TopBar";
     //
     // BarManager1
     //
     this.BarManager1.AllowQuickCustomization = false;
     this.BarManager1.Bars.AddRange(new DevExpress.XtraBars.Bar[] {
     this.Bar2});
     this.BarManager1.Controller = this.BarAndDockingController1;
     this.BarManager1.DockControls.Add(this.barDockControlTop);
     this.BarManager1.DockControls.Add(this.barDockControlBottom);
     this.BarManager1.DockControls.Add(this.barDockControlLeft);
     this.BarManager1.DockControls.Add(this.barDockControlRight);
     this.BarManager1.Form = this;
     this.BarManager1.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
     this.bbiClose,
     this.barButtonItem1,
     this.barstaticCurrentLogin});
     this.BarManager1.MainMenu = this.Bar2;
     this.BarManager1.MaxItemId = 6;
     //
     // Bar2
     //
     this.Bar2.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Bar2.Appearance.Options.UseFont = true;
     this.Bar2.BarName = "Custom 1";
     this.Bar2.DockCol = 0;
     this.Bar2.DockRow = 0;
     this.Bar2.DockStyle = DevExpress.XtraBars.BarDockStyle.Top;
     this.Bar2.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.PaintStyle, this.bbiClose, DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph),
     new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.PaintStyle, this.barstaticCurrentLogin, "", true, true, true, 0, null, DevExpress.XtraBars.BarItemPaintStyle.Standard)});
     this.Bar2.OptionsBar.MultiLine = true;
     this.Bar2.OptionsBar.UseWholeRow = true;
     this.Bar2.Text = "Custom 1";
     //
     // bbiClose
     //
     this.bbiClose.Caption = "Close";
     this.bbiClose.Glyph = ((System.Drawing.Image)(resources.GetObject("bbiClose.Glyph")));
     this.bbiClose.Id = 0;
     this.bbiClose.Name = "bbiClose";
     this.bbiClose.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbiLoginOut_ItemClick);
     //
     // barstaticCurrentLogin
     //
     this.barstaticCurrentLogin.Border = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.barstaticCurrentLogin.Caption = "Current Login: {0}, {1}";
     this.barstaticCurrentLogin.Id = 4;
     this.barstaticCurrentLogin.Name = "barstaticCurrentLogin";
     this.barstaticCurrentLogin.OwnFont = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.barstaticCurrentLogin.TextAlignment = System.Drawing.StringAlignment.Near;
     this.barstaticCurrentLogin.UseOwnFont = true;
     //
     // BarAndDockingController1
     //
     this.BarAndDockingController1.PaintStyleName = "WindowsXP";
     //
     // barButtonItem1
     //
     this.barButtonItem1.Caption = "ACMS Manager";
     this.barButtonItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("barButtonItem1.Glyph")));
     this.barButtonItem1.Id = 2;
     this.barButtonItem1.Name = "barButtonItem1";
     this.barButtonItem1.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem1_ItemClick);
     //
     // tabStaff
     //
     this.tabStaff.Cursor = System.Windows.Forms.Cursors.Arrow;
     this.tabStaff.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.tabStaff.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.tabStaff.ImeMode = System.Windows.Forms.ImeMode.On;
     this.tabStaff.Location = new System.Drawing.Point(0, 45);
     this.tabStaff.LookAndFeel.UseDefaultLookAndFeel = false;
     this.tabStaff.Name = "tabStaff";
     this.tabStaff.PaintStyleName = "Skin";
     this.tabStaff.SelectedTabPage = this.tabStaffFour;
     this.tabStaff.Size = new System.Drawing.Size(1016, 648);
     this.tabStaff.TabIndex = 0;
     this.tabStaff.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
     this.tabStaffOne,
     this.tabStaffTwo,
     this.tabStaffFour,
     this.tabStaffFive,
     this.tabStaffSeven});
     this.tabStaff.VisibleChanged += new System.EventHandler(this.tabStaff_VisibleChanged);
     this.tabStaff.SelectedPageChanged += new DevExpress.XtraTab.TabPageChangedEventHandler(this.tabStaff_SelectedPageChanged);
     this.tabStaff.Click += new System.EventHandler(this.tabStaff_Click);
     //
     // tabStaffFour
     //
     this.tabStaffFour.Appearance.Header.Font = new System.Drawing.Font("Tahoma", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.tabStaffFour.Appearance.Header.Options.UseFont = true;
     this.tabStaffFour.Controls.Add(this.lblFour_2);
     this.tabStaffFour.Controls.Add(this.lblFour_1);
     this.tabStaffFour.Controls.Add(this.groupContact);
     this.tabStaffFour.Controls.Add(this.groupAppointment);
     this.tabStaffFour.Name = "tabStaffFour";
     this.tabStaffFour.PageVisible = false;
     this.tabStaffFour.Size = new System.Drawing.Size(1007, 612);
     this.tabStaffFour.Text = "Appointments";
     this.tabStaffFour.VisibleChanged += new System.EventHandler(this.tabStaffAppointments_VisibleChanged);
     //
     // lblFour_2
     //
     this.lblFour_2.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.lblFour_2.Appearance.ForeColor = System.Drawing.Color.MediumBlue;
     this.lblFour_2.Appearance.Options.UseFont = true;
     this.lblFour_2.Appearance.Options.UseForeColor = true;
     this.lblFour_2.Location = new System.Drawing.Point(160, 8);
     this.lblFour_2.Name = "lblFour_2";
     this.lblFour_2.Size = new System.Drawing.Size(138, 23);
     this.lblFour_2.TabIndex = 144;
     this.lblFour_2.Text = "New Lead Contact";
     this.lblFour_2.Click += new System.EventHandler(this.lblFour_2_Click);
     //
     // lblFour_1
     //
     this.lblFour_1.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.lblFour_1.Appearance.ForeColor = System.Drawing.Color.MediumBlue;
     this.lblFour_1.Appearance.Options.UseFont = true;
     this.lblFour_1.Appearance.Options.UseForeColor = true;
     this.lblFour_1.Location = new System.Drawing.Point(8, 8);
     this.lblFour_1.Name = "lblFour_1";
     this.lblFour_1.Size = new System.Drawing.Size(138, 23);
     this.lblFour_1.TabIndex = 143;
     this.lblFour_1.Text = "Appointment";
     this.lblFour_1.Click += new System.EventHandler(this.lblFour_1_Click);
     //
     // groupContact
     //
     this.groupContact.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.groupContact.Controls.Add(this.groupContactEntry);
     this.groupContact.Location = new System.Drawing.Point(0, 34);
     this.groupContact.Name = "groupContact";
     this.groupContact.ShowCaption = false;
     this.groupContact.Size = new System.Drawing.Size(1007, 584);
     this.groupContact.TabIndex = 20;
     this.groupContact.Text = "GroupControl3";
     //
     // groupContactEntry
     //
     this.groupContactEntry.Appearance.BackColor = System.Drawing.SystemColors.Control;
     this.groupContactEntry.Appearance.Options.UseBackColor = true;
     this.groupContactEntry.Controls.Add(this.cmbStatus);
     this.groupContactEntry.Controls.Add(this.simpleButton1);
     this.groupContactEntry.Controls.Add(this.lblSearchLead);
     this.groupContactEntry.Controls.Add(this.txtSearchLead);
     this.groupContactEntry.Controls.Add(this.sbtnContactEdit);
     this.groupContactEntry.Controls.Add(this.sbtnContactDelete);
     this.groupContactEntry.Controls.Add(this.sbtnContactNew);
     this.groupContactEntry.Controls.Add(this.gridctrContact);
     this.groupContactEntry.Location = new System.Drawing.Point(8, 0);
     this.groupContactEntry.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.groupContactEntry.LookAndFeel.UseDefaultLookAndFeel = false;
     this.groupContactEntry.Name = "groupContactEntry";
     this.groupContactEntry.Size = new System.Drawing.Size(992, 576);
     this.groupContactEntry.TabIndex = 1;
     this.groupContactEntry.Text = "CONTACT";
     //
     // cmbStatus
     //
     this.cmbStatus.EditValue = "";
     this.cmbStatus.Location = new System.Drawing.Point(745, 35);
     this.cmbStatus.Name = "cmbStatus";
     this.cmbStatus.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cmbStatus.Properties.Items.AddRange(new object[] {
     "Safe to Contact",
     "Waiting List",
     "Do Not Contact",
     "Closed"});
     this.cmbStatus.Size = new System.Drawing.Size(136, 20);
     this.cmbStatus.TabIndex = 16;
     this.cmbStatus.SelectedIndexChanged += new System.EventHandler(this.cmbStatus_SelectedIndexChanged);
     //
     // simpleButton1
     //
     this.simpleButton1.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.simpleButton1.Appearance.Options.UseFont = true;
     this.simpleButton1.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.simpleButton1.Location = new System.Drawing.Point(887, 33);
     this.simpleButton1.Name = "simpleButton1";
     this.simpleButton1.Size = new System.Drawing.Size(87, 24);
     this.simpleButton1.TabIndex = 7;
     this.simpleButton1.Text = "Search";
     this.simpleButton1.Click += new System.EventHandler(this.simpleButton1_Click_1);
     //
     // lblSearchLead
     //
     this.lblSearchLead.AutoSize = true;
     this.lblSearchLead.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblSearchLead.Location = new System.Drawing.Point(477, 35);
     this.lblSearchLead.Name = "lblSearchLead";
     this.lblSearchLead.Size = new System.Drawing.Size(137, 16);
     this.lblSearchLead.TabIndex = 6;
     this.lblSearchLead.Text = "Name / Mobile No.";
     this.lblSearchLead.Click += new System.EventHandler(this.lblmnuCustomerVoiceCVDetails_Click);
     //
     // txtSearchLead
     //
     this.txtSearchLead.Location = new System.Drawing.Point(617, 35);
     this.txtSearchLead.Name = "txtSearchLead";
     this.txtSearchLead.Size = new System.Drawing.Size(126, 20);
     this.txtSearchLead.TabIndex = 6;
     //
     // sbtnContactEdit
     //
     this.sbtnContactEdit.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.sbtnContactEdit.Appearance.Options.UseFont = true;
     this.sbtnContactEdit.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.sbtnContactEdit.Location = new System.Drawing.Point(96, 32);
     this.sbtnContactEdit.Name = "sbtnContactEdit";
     this.sbtnContactEdit.Size = new System.Drawing.Size(72, 20);
     this.sbtnContactEdit.TabIndex = 1;
     this.sbtnContactEdit.Text = "Edit";
     this.sbtnContactEdit.Click += new System.EventHandler(this.sbtnContactEdit_Click);
     //
     // sbtnContactDelete
     //
     this.sbtnContactDelete.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.sbtnContactDelete.Appearance.Options.UseFont = true;
     this.sbtnContactDelete.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.sbtnContactDelete.Location = new System.Drawing.Point(176, 32);
     this.sbtnContactDelete.Name = "sbtnContactDelete";
     this.sbtnContactDelete.Size = new System.Drawing.Size(72, 20);
     this.sbtnContactDelete.TabIndex = 2;
     this.sbtnContactDelete.Text = "Delete";
     this.sbtnContactDelete.Click += new System.EventHandler(this.sbtnContactDelete_Click);
     //
     // sbtnContactNew
     //
     this.sbtnContactNew.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.sbtnContactNew.Appearance.Options.UseFont = true;
     this.sbtnContactNew.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.sbtnContactNew.Location = new System.Drawing.Point(16, 32);
     this.sbtnContactNew.Name = "sbtnContactNew";
     this.sbtnContactNew.Size = new System.Drawing.Size(72, 20);
     this.sbtnContactNew.TabIndex = 0;
     this.sbtnContactNew.Text = "New";
     this.sbtnContactNew.Click += new System.EventHandler(this.sbtnContactNew_Click);
     //
     // gridctrContact
     //
     this.gridctrContact.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.gridctrContact.Location = new System.Drawing.Point(2, 62);
     this.gridctrContact.LookAndFeel.UseDefaultLookAndFeel = false;
     this.gridctrContact.MainView = this.gvContact;
     this.gridctrContact.Name = "gridctrContact";
     this.gridctrContact.Size = new System.Drawing.Size(988, 512);
     this.gridctrContact.TabIndex = 3;
     this.gridctrContact.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gvContact});
     //
     // gvContact
     //
     this.gvContact.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colDateTime,
     this.colPhoneCall,
     this.colSMS,
     this.colContactPerson,
     this.colStaffAssigned,
     this.colNRIC,
     this.colDOB,
     this.colContactMobile,
     this.colRemarks,
     this.colMediaSourceID,
     this.colAppointmentStatus});
     this.gvContact.GridControl = this.gridctrContact;
     this.gvContact.Name = "gvContact";
     this.gvContact.OptionsBehavior.AllowIncrementalSearch = true;
     this.gvContact.OptionsBehavior.Editable = false;
     this.gvContact.OptionsCustomization.AllowFilter = false;
     this.gvContact.OptionsView.ShowGroupPanel = false;
     this.gvContact.RowStyle += new DevExpress.XtraGrid.Views.Grid.RowStyleEventHandler(this.gvContact_RowStyle);
     //
     // colDateTime
     //
     this.colDateTime.Caption = "Date";
     this.colDateTime.FieldName = "dDateTime";
     this.colDateTime.Name = "colDateTime";
     this.colDateTime.Visible = true;
     this.colDateTime.VisibleIndex = 0;
     this.colDateTime.Width = 68;
     //
     // colPhoneCall
     //
     this.colPhoneCall.Caption = "Call";
     this.colPhoneCall.FieldName = "fPhoneCall";
     this.colPhoneCall.Name = "colPhoneCall";
     this.colPhoneCall.Visible = true;
     this.colPhoneCall.VisibleIndex = 1;
     this.colPhoneCall.Width = 33;
     //
     // colSMS
     //
     this.colSMS.Caption = "SMS";
     this.colSMS.FieldName = "fSMS";
     this.colSMS.Name = "colSMS";
     this.colSMS.Visible = true;
     this.colSMS.VisibleIndex = 2;
     this.colSMS.Width = 33;
     //
     // colContactPerson
     //
     this.colContactPerson.Caption = "Contact Person";
     this.colContactPerson.FieldName = "strContactName";
     this.colContactPerson.Name = "colContactPerson";
     this.colContactPerson.Visible = true;
     this.colContactPerson.VisibleIndex = 3;
     this.colContactPerson.Width = 112;
     //
     // colStaffAssigned
     //
     this.colStaffAssigned.Caption = "Staff Assigned";
     this.colStaffAssigned.FieldName = "strEmployeeName";
     this.colStaffAssigned.Name = "colStaffAssigned";
     this.colStaffAssigned.Visible = true;
     this.colStaffAssigned.VisibleIndex = 4;
     this.colStaffAssigned.Width = 112;
     //
     // colNRIC
     //
     this.colNRIC.Caption = "NRICFIN";
     this.colNRIC.FieldName = "strNRICFIN";
     this.colNRIC.Name = "colNRIC";
     this.colNRIC.Width = 89;
     //
     // colDOB
     //
     this.colDOB.Caption = "Date-of-Birth";
     this.colDOB.FieldName = "dtDOB";
     this.colDOB.Name = "colDOB";
     this.colDOB.Width = 90;
     //
     // colContactMobile
     //
     this.colContactMobile.Caption = "Mobile No.";
     this.colContactMobile.FieldName = "strMobileNo";
     this.colContactMobile.Name = "colContactMobile";
     this.colContactMobile.Visible = true;
     this.colContactMobile.VisibleIndex = 5;
     this.colContactMobile.Width = 94;
     //
     // colRemarks
     //
     this.colRemarks.Caption = "Remarks.";
     this.colRemarks.FieldName = "strRemarks";
     this.colRemarks.Name = "colRemarks";
     this.colRemarks.OptionsColumn.FixedWidth = true;
     this.colRemarks.Visible = true;
     this.colRemarks.VisibleIndex = 6;
     this.colRemarks.Width = 200;
     //
     // colMediaSourceID
     //
     this.colMediaSourceID.Caption = "MediaSourceID";
     this.colMediaSourceID.FieldName = "nMediaSourceID";
     this.colMediaSourceID.Name = "colMediaSourceID";
     this.colMediaSourceID.Width = 20;
     //
     // colAppointmentStatus
     //
     this.colAppointmentStatus.Caption = "Appt. Status";
     this.colAppointmentStatus.FieldName = "strAppointmentStatus";
     this.colAppointmentStatus.Name = "colAppointmentStatus";
     this.colAppointmentStatus.Visible = true;
     this.colAppointmentStatus.VisibleIndex = 7;
     this.colAppointmentStatus.Width = 50;
     //
     // groupAppointment
     //
     this.groupAppointment.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.groupAppointment.Controls.Add(this.groupAppointmentEntry);
     this.groupAppointment.Location = new System.Drawing.Point(0, 34);
     this.groupAppointment.Name = "groupAppointment";
     this.groupAppointment.ShowCaption = false;
     this.groupAppointment.Size = new System.Drawing.Size(1007, 584);
     this.groupAppointment.TabIndex = 21;
     this.groupAppointment.Text = "GroupControl3";
     //
     // groupAppointmentEntry
     //
     this.groupAppointmentEntry.Appearance.BackColor = System.Drawing.SystemColors.Control;
     this.groupAppointmentEntry.Appearance.Options.UseBackColor = true;
     this.groupAppointmentEntry.Controls.Add(this.groupControl12);
     this.groupAppointmentEntry.Controls.Add(this.sbtnAppointmentDelete);
     this.groupAppointmentEntry.Controls.Add(this.sbtnAppointmentPrint);
     this.groupAppointmentEntry.Controls.Add(this.sbtnAppointmentVerifiedBy);
     this.groupAppointmentEntry.Controls.Add(this.sbtnAppointmentEdit);
     this.groupAppointmentEntry.Controls.Add(this.sbtnAppointmentNew);
     this.groupAppointmentEntry.Controls.Add(this.gridctrAppointment);
     this.groupAppointmentEntry.Location = new System.Drawing.Point(8, 0);
     this.groupAppointmentEntry.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.groupAppointmentEntry.LookAndFeel.UseDefaultLookAndFeel = false;
     this.groupAppointmentEntry.Name = "groupAppointmentEntry";
     this.groupAppointmentEntry.Size = new System.Drawing.Size(992, 576);
     this.groupAppointmentEntry.TabIndex = 0;
     this.groupAppointmentEntry.Text = "APPOINTMENT";
     this.groupAppointmentEntry.Paint += new System.Windows.Forms.PaintEventHandler(this.groupAppointmentEntry_Paint);
     //
     // groupControl12
     //
     this.groupControl12.Controls.Add(this.cbAppointmentYear);
     this.groupControl12.Controls.Add(this.label26);
     this.groupControl12.Controls.Add(this.label27);
     this.groupControl12.Controls.Add(this.cbAppointmentMonth);
     this.groupControl12.Controls.Add(this.sbtnAppointmentInquiry);
     this.groupControl12.Location = new System.Drawing.Point(8, 24);
     this.groupControl12.Name = "groupControl12";
     this.groupControl12.Size = new System.Drawing.Size(328, 52);
     this.groupControl12.TabIndex = 0;
     this.groupControl12.Text = "Inquiry";
     //
     // cbAppointmentYear
     //
     this.cbAppointmentYear.EditValue = "";
     this.cbAppointmentYear.ImeMode = System.Windows.Forms.ImeMode.On;
     this.cbAppointmentYear.Location = new System.Drawing.Point(178, 24);
     this.cbAppointmentYear.Name = "cbAppointmentYear";
     this.cbAppointmentYear.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cbAppointmentYear.Properties.PopupSizeable = true;
     this.cbAppointmentYear.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
     this.cbAppointmentYear.Size = new System.Drawing.Size(64, 20);
     this.cbAppointmentYear.TabIndex = 1;
     //
     // label26
     //
     this.label26.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label26.Location = new System.Drawing.Point(140, 24);
     this.label26.Name = "label26";
     this.label26.Size = new System.Drawing.Size(34, 20);
     this.label26.TabIndex = 15;
     this.label26.Text = "Year:";
     //
     // label27
     //
     this.label27.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label27.Location = new System.Drawing.Point(12, 24);
     this.label27.Name = "label27";
     this.label27.Size = new System.Drawing.Size(42, 20);
     this.label27.TabIndex = 14;
     this.label27.Text = "Month:";
     //
     // cbAppointmentMonth
     //
     this.cbAppointmentMonth.EditValue = "January";
     this.cbAppointmentMonth.ImeMode = System.Windows.Forms.ImeMode.On;
     this.cbAppointmentMonth.Location = new System.Drawing.Point(56, 24);
     this.cbAppointmentMonth.Name = "cbAppointmentMonth";
     this.cbAppointmentMonth.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cbAppointmentMonth.Properties.Items.AddRange(new object[] {
     "January",
     "February",
     "March",
     "April",
     "May",
     "June",
     "July",
     "August",
     "September",
     "October",
     "November",
     "December"});
     this.cbAppointmentMonth.Properties.PopupSizeable = true;
     this.cbAppointmentMonth.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
     this.cbAppointmentMonth.Size = new System.Drawing.Size(80, 20);
     this.cbAppointmentMonth.TabIndex = 0;
     //
     // sbtnAppointmentInquiry
     //
     this.sbtnAppointmentInquiry.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.sbtnAppointmentInquiry.Appearance.Options.UseFont = true;
     this.sbtnAppointmentInquiry.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.sbtnAppointmentInquiry.Location = new System.Drawing.Point(246, 24);
     this.sbtnAppointmentInquiry.Name = "sbtnAppointmentInquiry";
     this.sbtnAppointmentInquiry.Size = new System.Drawing.Size(72, 20);
     this.sbtnAppointmentInquiry.TabIndex = 2;
     this.sbtnAppointmentInquiry.Text = "Inquiry";
     this.sbtnAppointmentInquiry.Click += new System.EventHandler(this.sbtnAppointmentInquiry_Click);
     //
     // sbtnAppointmentDelete
     //
     this.sbtnAppointmentDelete.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.sbtnAppointmentDelete.Appearance.Options.UseFont = true;
     this.sbtnAppointmentDelete.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.sbtnAppointmentDelete.Location = new System.Drawing.Point(504, 48);
     this.sbtnAppointmentDelete.Name = "sbtnAppointmentDelete";
     this.sbtnAppointmentDelete.Size = new System.Drawing.Size(72, 20);
     this.sbtnAppointmentDelete.TabIndex = 3;
     this.sbtnAppointmentDelete.Text = "Delete";
     this.sbtnAppointmentDelete.Click += new System.EventHandler(this.sbtnAppointmentDelete_Click);
     //
     // sbtnAppointmentPrint
     //
     this.sbtnAppointmentPrint.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.sbtnAppointmentPrint.Appearance.Options.UseFont = true;
     this.sbtnAppointmentPrint.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.sbtnAppointmentPrint.Location = new System.Drawing.Point(584, 48);
     this.sbtnAppointmentPrint.Name = "sbtnAppointmentPrint";
     this.sbtnAppointmentPrint.Size = new System.Drawing.Size(72, 20);
     this.sbtnAppointmentPrint.TabIndex = 3;
     this.sbtnAppointmentPrint.Text = "Print";
     this.sbtnAppointmentPrint.Click += new System.EventHandler(this.sbtnAppointmentPrint_Click);
     //
     // sbtnAppointmentVerifiedBy
     //
     this.sbtnAppointmentVerifiedBy.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.sbtnAppointmentVerifiedBy.Appearance.Options.UseFont = true;
     this.sbtnAppointmentVerifiedBy.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.sbtnAppointmentVerifiedBy.Location = new System.Drawing.Point(664, 48);
     this.sbtnAppointmentVerifiedBy.Name = "sbtnAppointmentVerifiedBy";
     this.sbtnAppointmentVerifiedBy.Size = new System.Drawing.Size(72, 20);
     this.sbtnAppointmentVerifiedBy.TabIndex = 3;
     this.sbtnAppointmentVerifiedBy.Text = "Verify";
     this.sbtnAppointmentVerifiedBy.Click += new System.EventHandler(this.sbtnAppointmentVerifiedBy_Click);
     //
     // sbtnAppointmentEdit
     //
     this.sbtnAppointmentEdit.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.sbtnAppointmentEdit.Appearance.Options.UseFont = true;
     this.sbtnAppointmentEdit.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.sbtnAppointmentEdit.Location = new System.Drawing.Point(424, 48);
     this.sbtnAppointmentEdit.Name = "sbtnAppointmentEdit";
     this.sbtnAppointmentEdit.Size = new System.Drawing.Size(72, 20);
     this.sbtnAppointmentEdit.TabIndex = 2;
     this.sbtnAppointmentEdit.Text = "Edit";
     this.sbtnAppointmentEdit.Click += new System.EventHandler(this.sbtnAppointmentEdit_Click);
     //
     // sbtnAppointmentNew
     //
     this.sbtnAppointmentNew.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.sbtnAppointmentNew.Appearance.Options.UseFont = true;
     this.sbtnAppointmentNew.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.sbtnAppointmentNew.Location = new System.Drawing.Point(344, 48);
     this.sbtnAppointmentNew.Name = "sbtnAppointmentNew";
     this.sbtnAppointmentNew.Size = new System.Drawing.Size(72, 20);
     this.sbtnAppointmentNew.TabIndex = 1;
     this.sbtnAppointmentNew.Text = "New";
     this.sbtnAppointmentNew.Click += new System.EventHandler(this.sbtnAppointmentNew_Click);
     //
     // gridctrAppointment
     //
     this.gridctrAppointment.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.gridctrAppointment.Location = new System.Drawing.Point(2, 86);
     this.gridctrAppointment.LookAndFeel.UseDefaultLookAndFeel = false;
     this.gridctrAppointment.MainView = this.gvAppointment;
     this.gridctrAppointment.Name = "gridctrAppointment";
     this.gridctrAppointment.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemCheckEditUtilizationSelection});
     this.gridctrAppointment.Size = new System.Drawing.Size(988, 488);
     this.gridctrAppointment.TabIndex = 4;
     this.gridctrAppointment.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gvAppointment});
     //
     // gvAppointment
     //
     this.gvAppointment.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colVerifyAppt,
     this.colAppointmentID,
     this.colAppointmentDate,
     this.colAppointmentStartDate,
     this.colAppointmentEndDate,
     this.colAppointmentOrganization,
     this.colAppointmentContact,
     this.colAppointmentMobileNo,
     this.colAppointmentRemarks,
     this.colAppointmentStaffAssign,
     this.colAppointmentServedBy,
     this.colAppointmentVerifiedBy});
     this.gvAppointment.GridControl = this.gridctrAppointment;
     this.gvAppointment.Name = "gvAppointment";
     this.gvAppointment.OptionsView.ShowGroupPanel = false;
     this.gvAppointment.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.colAppointmentDate, DevExpress.Data.ColumnSortOrder.Descending)});
     //
     // colVerifyAppt
     //
     this.colVerifyAppt.Caption = "Utl";
     this.colVerifyAppt.ColumnEdit = this.repositoryItemCheckEditUtilizationSelection;
     this.colVerifyAppt.FieldName = "UtlCheck";
     this.colVerifyAppt.Name = "colVerifyAppt";
     this.colVerifyAppt.OptionsColumn.ShowCaption = false;
     this.colVerifyAppt.Visible = true;
     this.colVerifyAppt.VisibleIndex = 0;
     this.colVerifyAppt.Width = 25;
     //
     // repositoryItemCheckEditUtilizationSelection
     //
     this.repositoryItemCheckEditUtilizationSelection.AutoHeight = false;
     this.repositoryItemCheckEditUtilizationSelection.Name = "repositoryItemCheckEditUtilizationSelection";
     this.repositoryItemCheckEditUtilizationSelection.NullStyle = DevExpress.XtraEditors.Controls.StyleIndeterminate.Unchecked;
     //
     // colAppointmentID
     //
     this.colAppointmentID.FieldName = "nAppointmentID";
     this.colAppointmentID.Name = "colAppointmentID";
     this.colAppointmentID.OptionsColumn.ShowCaption = false;
     this.colAppointmentID.Visible = true;
     this.colAppointmentID.VisibleIndex = 1;
     this.colAppointmentID.Width = 25;
     //
     // colAppointmentDate
     //
     this.colAppointmentDate.Caption = "Date";
     this.colAppointmentDate.DisplayFormat.FormatString = "dd/MM/yyyy";
     this.colAppointmentDate.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.colAppointmentDate.FieldName = "dtDate";
     this.colAppointmentDate.Name = "colAppointmentDate";
     this.colAppointmentDate.OptionsColumn.AllowEdit = false;
     this.colAppointmentDate.OptionsColumn.AllowFocus = false;
     this.colAppointmentDate.OptionsFilter.AllowFilter = false;
     this.colAppointmentDate.Visible = true;
     this.colAppointmentDate.VisibleIndex = 2;
     this.colAppointmentDate.Width = 80;
     //
     // colAppointmentStartDate
     //
     this.colAppointmentStartDate.Caption = "Start Time";
     this.colAppointmentStartDate.DisplayFormat.FormatString = "hh:mm tt";
     this.colAppointmentStartDate.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.colAppointmentStartDate.FieldName = "dtStartTime";
     this.colAppointmentStartDate.Name = "colAppointmentStartDate";
     this.colAppointmentStartDate.OptionsColumn.AllowEdit = false;
     this.colAppointmentStartDate.OptionsColumn.AllowFocus = false;
     this.colAppointmentStartDate.OptionsFilter.AllowFilter = false;
     this.colAppointmentStartDate.Visible = true;
     this.colAppointmentStartDate.VisibleIndex = 3;
     this.colAppointmentStartDate.Width = 70;
     //
     // colAppointmentEndDate
     //
     this.colAppointmentEndDate.Caption = "End Time";
     this.colAppointmentEndDate.DisplayFormat.FormatString = "hh:mm tt";
     this.colAppointmentEndDate.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.colAppointmentEndDate.FieldName = "dtEndTime";
     this.colAppointmentEndDate.Name = "colAppointmentEndDate";
     this.colAppointmentEndDate.OptionsColumn.AllowEdit = false;
     this.colAppointmentEndDate.OptionsColumn.AllowFocus = false;
     this.colAppointmentEndDate.OptionsFilter.AllowFilter = false;
     this.colAppointmentEndDate.Visible = true;
     this.colAppointmentEndDate.VisibleIndex = 4;
     this.colAppointmentEndDate.Width = 70;
     //
     // colAppointmentOrganization
     //
     this.colAppointmentOrganization.Caption = "Organization / Place of Appointment";
     this.colAppointmentOrganization.FieldName = "strOrganization";
     this.colAppointmentOrganization.Name = "colAppointmentOrganization";
     this.colAppointmentOrganization.Width = 215;
     //
     // colAppointmentContact
     //
     this.colAppointmentContact.Caption = "Contact";
     this.colAppointmentContact.FieldName = "strContactName";
     this.colAppointmentContact.Name = "colAppointmentContact";
     this.colAppointmentContact.OptionsColumn.AllowEdit = false;
     this.colAppointmentContact.OptionsColumn.AllowFocus = false;
     this.colAppointmentContact.OptionsFilter.AllowFilter = false;
     this.colAppointmentContact.Visible = true;
     this.colAppointmentContact.VisibleIndex = 5;
     this.colAppointmentContact.Width = 140;
     //
     // colAppointmentMobileNo
     //
     this.colAppointmentMobileNo.Caption = "Mobile No";
     this.colAppointmentMobileNo.FieldName = "strMobileNo";
     this.colAppointmentMobileNo.Name = "colAppointmentMobileNo";
     this.colAppointmentMobileNo.OptionsColumn.AllowEdit = false;
     this.colAppointmentMobileNo.OptionsColumn.AllowFocus = false;
     this.colAppointmentMobileNo.OptionsFilter.AllowFilter = false;
     this.colAppointmentMobileNo.Visible = true;
     this.colAppointmentMobileNo.VisibleIndex = 6;
     //
     // colAppointmentRemarks
     //
     this.colAppointmentRemarks.Caption = "Remarks";
     this.colAppointmentRemarks.FieldName = "strRemarks";
     this.colAppointmentRemarks.Name = "colAppointmentRemarks";
     this.colAppointmentRemarks.OptionsColumn.AllowEdit = false;
     this.colAppointmentRemarks.OptionsColumn.AllowFocus = false;
     this.colAppointmentRemarks.OptionsFilter.AllowFilter = false;
     this.colAppointmentRemarks.Visible = true;
     this.colAppointmentRemarks.VisibleIndex = 7;
     this.colAppointmentRemarks.Width = 240;
     //
     // colAppointmentStaffAssign
     //
     this.colAppointmentStaffAssign.Caption = "Staff Assigned";
     this.colAppointmentStaffAssign.FieldName = "strStaffAssign";
     this.colAppointmentStaffAssign.Name = "colAppointmentStaffAssign";
     this.colAppointmentStaffAssign.OptionsColumn.AllowEdit = false;
     this.colAppointmentStaffAssign.OptionsColumn.AllowFocus = false;
     this.colAppointmentStaffAssign.OptionsFilter.AllowFilter = false;
     this.colAppointmentStaffAssign.Visible = true;
     this.colAppointmentStaffAssign.VisibleIndex = 8;
     this.colAppointmentStaffAssign.Width = 120;
     //
     // colAppointmentServedBy
     //
     this.colAppointmentServedBy.Caption = "Served By";
     this.colAppointmentServedBy.FieldName = "strServedBy";
     this.colAppointmentServedBy.Name = "colAppointmentServedBy";
     this.colAppointmentServedBy.OptionsColumn.AllowEdit = false;
     this.colAppointmentServedBy.OptionsColumn.AllowFocus = false;
     this.colAppointmentServedBy.OptionsFilter.AllowFilter = false;
     this.colAppointmentServedBy.Visible = true;
     this.colAppointmentServedBy.VisibleIndex = 9;
     this.colAppointmentServedBy.Width = 120;
     //
     // colAppointmentVerifiedBy
     //
     this.colAppointmentVerifiedBy.Caption = "Verified By";
     this.colAppointmentVerifiedBy.FieldName = "strVerifiedBy";
     this.colAppointmentVerifiedBy.Name = "colAppointmentVerifiedBy";
     this.colAppointmentVerifiedBy.OptionsColumn.AllowEdit = false;
     this.colAppointmentVerifiedBy.OptionsColumn.AllowFocus = false;
     this.colAppointmentVerifiedBy.OptionsFilter.AllowFilter = false;
     this.colAppointmentVerifiedBy.Visible = true;
     this.colAppointmentVerifiedBy.VisibleIndex = 10;
     this.colAppointmentVerifiedBy.Width = 120;
     //
     // tabStaffOne
     //
     this.tabStaffOne.Appearance.Header.Font = new System.Drawing.Font("Tahoma", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.tabStaffOne.Appearance.Header.Options.UseFont = true;
     this.tabStaffOne.Controls.Add(this.lblOne_2);
     this.tabStaffOne.Controls.Add(this.luedtMemoEmployeeID);
     this.tabStaffOne.Controls.Add(this.lblMemoEmployeeID);
     this.tabStaffOne.Controls.Add(this.groupMessages);
     this.tabStaffOne.Controls.Add(this.groupReceipientGroup);
     this.tabStaffOne.Controls.Add(this.lblOne_1);
     this.tabStaffOne.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.tabStaffOne.Name = "tabStaffOne";
     this.tabStaffOne.Size = new System.Drawing.Size(1007, 612);
     this.tabStaffOne.Text = "Mailbox";
     this.tabStaffOne.VisibleChanged += new System.EventHandler(this.tabStaffMailbox_VisibleChanged);
     //
     // lblOne_2
     //
     this.lblOne_2.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.lblOne_2.Appearance.ForeColor = System.Drawing.Color.MediumBlue;
     this.lblOne_2.Appearance.Options.UseFont = true;
     this.lblOne_2.Appearance.Options.UseForeColor = true;
     this.lblOne_2.Location = new System.Drawing.Point(160, 8);
     this.lblOne_2.Name = "lblOne_2";
     this.lblOne_2.Size = new System.Drawing.Size(138, 23);
     this.lblOne_2.TabIndex = 142;
     this.lblOne_2.Text = "Receipient Group";
     this.lblOne_2.Click += new System.EventHandler(this.lblOne_2_Click);
     //
     // luedtMemoEmployeeID
     //
     this.luedtMemoEmployeeID.Location = new System.Drawing.Point(776, 8);
     this.luedtMemoEmployeeID.Name = "luedtMemoEmployeeID";
     this.luedtMemoEmployeeID.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.luedtMemoEmployeeID.Size = new System.Drawing.Size(208, 20);
     this.luedtMemoEmployeeID.TabIndex = 33;
     this.luedtMemoEmployeeID.EditValueChanged += new System.EventHandler(this.luedtMemoEmployeeID_EditValueChanged);
     //
     // lblMemoEmployeeID
     //
     this.lblMemoEmployeeID.AutoSize = true;
     this.lblMemoEmployeeID.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblMemoEmployeeID.Location = new System.Drawing.Point(688, 8);
     this.lblMemoEmployeeID.Name = "lblMemoEmployeeID";
     this.lblMemoEmployeeID.Size = new System.Drawing.Size(88, 16);
     this.lblMemoEmployeeID.TabIndex = 34;
     this.lblMemoEmployeeID.Text = "Staff Name:";
     //
     // groupMessages
     //
     this.groupMessages.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.groupMessages.Controls.Add(this.lblmnuMessagesReceipient);
     this.groupMessages.Controls.Add(this.lblmnuMessagesFollowUpAction);
     this.groupMessages.Controls.Add(this.lblmnuMessagesMemoInfo);
     this.groupMessages.Controls.Add(this.groupMessagesEntry);
     this.groupMessages.Controls.Add(this.groupMessagesMemoInfo);
     this.groupMessages.Controls.Add(this.groupMessagesReceipient);
     this.groupMessages.Controls.Add(this.groupMessagesFollowUpAction);
     this.groupMessages.Location = new System.Drawing.Point(0, 34);
     this.groupMessages.Name = "groupMessages";
     this.groupMessages.ShowCaption = false;
     this.groupMessages.Size = new System.Drawing.Size(1007, 584);
     this.groupMessages.TabIndex = 13;
     this.groupMessages.Text = "GroupControl3";
     //
     // lblmnuMessagesReceipient
     //
     this.lblmnuMessagesReceipient.AutoSize = true;
     this.lblmnuMessagesReceipient.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblmnuMessagesReceipient.Location = new System.Drawing.Point(176, 320);
     this.lblmnuMessagesReceipient.Name = "lblmnuMessagesReceipient";
     this.lblmnuMessagesReceipient.Size = new System.Drawing.Size(83, 16);
     this.lblmnuMessagesReceipient.TabIndex = 2;
     this.lblmnuMessagesReceipient.Text = "Receipient";
     this.lblmnuMessagesReceipient.Click += new System.EventHandler(this.lblmnuMessagesReceipient_Click);
     //
     // lblmnuMessagesFollowUpAction
     //
     this.lblmnuMessagesFollowUpAction.AutoSize = true;
     this.lblmnuMessagesFollowUpAction.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblmnuMessagesFollowUpAction.Location = new System.Drawing.Point(112, 320);
     this.lblmnuMessagesFollowUpAction.Name = "lblmnuMessagesFollowUpAction";
     this.lblmnuMessagesFollowUpAction.Size = new System.Drawing.Size(62, 16);
     this.lblmnuMessagesFollowUpAction.TabIndex = 1;
     this.lblmnuMessagesFollowUpAction.Text = "Replies";
     this.lblmnuMessagesFollowUpAction.Click += new System.EventHandler(this.lblmnuMessagesFollowUpAction_Click);
     //
     // lblmnuMessagesMemoInfo
     //
     this.lblmnuMessagesMemoInfo.AutoSize = true;
     this.lblmnuMessagesMemoInfo.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblmnuMessagesMemoInfo.Location = new System.Drawing.Point(24, 320);
     this.lblmnuMessagesMemoInfo.Name = "lblmnuMessagesMemoInfo";
     this.lblmnuMessagesMemoInfo.Size = new System.Drawing.Size(79, 16);
     this.lblmnuMessagesMemoInfo.TabIndex = 0;
     this.lblmnuMessagesMemoInfo.Text = "Memo Info";
     this.lblmnuMessagesMemoInfo.Click += new System.EventHandler(this.lblmnuMessagesMemoInfo_Click);
     //
     // groupMessagesEntry
     //
     this.groupMessagesEntry.Appearance.BackColor = System.Drawing.SystemColors.Control;
     this.groupMessagesEntry.Appearance.Options.UseBackColor = true;
     this.groupMessagesEntry.Controls.Add(this.cbViewMemo);
     this.groupMessagesEntry.Controls.Add(this.sbtnMemoUnpost);
     this.groupMessagesEntry.Controls.Add(this.sbtnMemoPrint);
     this.groupMessagesEntry.Controls.Add(this.sbtnMemoNew);
     this.groupMessagesEntry.Controls.Add(this.gctrMemo);
     this.groupMessagesEntry.Location = new System.Drawing.Point(8, 0);
     this.groupMessagesEntry.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.groupMessagesEntry.LookAndFeel.UseDefaultLookAndFeel = false;
     this.groupMessagesEntry.Name = "groupMessagesEntry";
     this.groupMessagesEntry.Size = new System.Drawing.Size(992, 312);
     this.groupMessagesEntry.TabIndex = 1;
     this.groupMessagesEntry.Text = "MESSAGES";
     //
     // cbViewMemo
     //
     this.cbViewMemo.EditValue = "All";
     this.cbViewMemo.ImeMode = System.Windows.Forms.ImeMode.On;
     this.cbViewMemo.Location = new System.Drawing.Point(16, 32);
     this.cbViewMemo.Name = "cbViewMemo";
     this.cbViewMemo.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cbViewMemo.Properties.Items.AddRange(new object[] {
     "All",
     "Personal Email",
     "Branch Bulletin",
     "Sent Memo"});
     this.cbViewMemo.Properties.PopupSizeable = true;
     this.cbViewMemo.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
     this.cbViewMemo.Size = new System.Drawing.Size(136, 20);
     this.cbViewMemo.TabIndex = 0;
     this.cbViewMemo.SelectedIndexChanged += new System.EventHandler(this.cbViewMemo_SelectedIndexChanged);
     //
     // sbtnMemoUnpost
     //
     this.sbtnMemoUnpost.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.sbtnMemoUnpost.Appearance.Options.UseFont = true;
     this.sbtnMemoUnpost.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.sbtnMemoUnpost.Location = new System.Drawing.Point(320, 32);
     this.sbtnMemoUnpost.Name = "sbtnMemoUnpost";
     this.sbtnMemoUnpost.Size = new System.Drawing.Size(72, 20);
     this.sbtnMemoUnpost.TabIndex = 3;
     this.sbtnMemoUnpost.Text = "Unpost";
     this.sbtnMemoUnpost.Click += new System.EventHandler(this.sbtnMemoUnpost_Click);
     //
     // sbtnMemoPrint
     //
     this.sbtnMemoPrint.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.sbtnMemoPrint.Appearance.Options.UseFont = true;
     this.sbtnMemoPrint.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.sbtnMemoPrint.Location = new System.Drawing.Point(240, 32);
     this.sbtnMemoPrint.Name = "sbtnMemoPrint";
     this.sbtnMemoPrint.Size = new System.Drawing.Size(72, 20);
     this.sbtnMemoPrint.TabIndex = 2;
     this.sbtnMemoPrint.Text = "Print";
     this.sbtnMemoPrint.Click += new System.EventHandler(this.sbtnMemoPrint_Click);
     //
     // sbtnMemoNew
     //
     this.sbtnMemoNew.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.sbtnMemoNew.Appearance.Options.UseFont = true;
     this.sbtnMemoNew.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.sbtnMemoNew.Location = new System.Drawing.Point(160, 32);
     this.sbtnMemoNew.Name = "sbtnMemoNew";
     this.sbtnMemoNew.Size = new System.Drawing.Size(72, 20);
     this.sbtnMemoNew.TabIndex = 1;
     this.sbtnMemoNew.Text = "New";
     this.sbtnMemoNew.Click += new System.EventHandler(this.sbtnMemoNew_Click);
     //
     // gctrMemo
     //
     this.gctrMemo.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.gctrMemo.Location = new System.Drawing.Point(2, 62);
     this.gctrMemo.LookAndFeel.UseDefaultLookAndFeel = false;
     this.gctrMemo.MainView = this.gvMemo;
     this.gctrMemo.Name = "gctrMemo";
     this.gctrMemo.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemCheckEdit1});
     this.gctrMemo.Size = new System.Drawing.Size(988, 248);
     this.gctrMemo.TabIndex = 4;
     this.gctrMemo.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gvMemo});
     this.gctrMemo.Click += new System.EventHandler(this.gctrMemo_Click);
     //
     // gvMemo
     //
     this.gvMemo.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colnMemoID,
     this.colPostUpdateDateTime,
     this.colAuthorID,
     this.colAuthor,
     this.colTitle,
     this.colRead});
     this.gvMemo.GridControl = this.gctrMemo;
     this.gvMemo.Name = "gvMemo";
     this.gvMemo.OptionsBehavior.AllowIncrementalSearch = true;
     this.gvMemo.OptionsBehavior.Editable = false;
     this.gvMemo.OptionsCustomization.AllowFilter = false;
     this.gvMemo.OptionsView.ShowGroupPanel = false;
     this.gvMemo.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.colPostUpdateDateTime, DevExpress.Data.ColumnSortOrder.Descending)});
     this.gvMemo.FocusedRowChanged += new DevExpress.XtraGrid.Views.Base.FocusedRowChangedEventHandler(this.gvMemo_FocusedRowChanged);
     this.gvMemo.DataSourceChanged += new System.EventHandler(this.gvMemo_DataSourceChanged);
     //
     // colnMemoID
     //
     this.colnMemoID.Caption = "Memo ID";
     this.colnMemoID.FieldName = "nMemoID";
     this.colnMemoID.Name = "colnMemoID";
     this.colnMemoID.Visible = true;
     this.colnMemoID.VisibleIndex = 0;
     this.colnMemoID.Width = 115;
     //
     // colPostUpdateDateTime
     //
     this.colPostUpdateDateTime.Caption = "Post/Update Date Time";
     this.colPostUpdateDateTime.DisplayFormat.FormatString = "dd/MM/yyyy hh:mm tt";
     this.colPostUpdateDateTime.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.colPostUpdateDateTime.FieldName = "dtLastEditDate";
     this.colPostUpdateDateTime.Name = "colPostUpdateDateTime";
     this.colPostUpdateDateTime.Visible = true;
     this.colPostUpdateDateTime.VisibleIndex = 1;
     this.colPostUpdateDateTime.Width = 172;
     //
     // colAuthorID
     //
     this.colAuthorID.Caption = "Author ID";
     this.colAuthorID.FieldName = "nEmployeeID";
     this.colAuthorID.Name = "colAuthorID";
     this.colAuthorID.Width = 201;
     //
     // colAuthor
     //
     this.colAuthor.Caption = "Author";
     this.colAuthor.FieldName = "strEmployeeName";
     this.colAuthor.Name = "colAuthor";
     this.colAuthor.Visible = true;
     this.colAuthor.VisibleIndex = 2;
     this.colAuthor.Width = 229;
     //
     // colTitle
     //
     this.colTitle.Caption = "Subject";
     this.colTitle.FieldName = "strTitle";
     this.colTitle.Name = "colTitle";
     this.colTitle.Visible = true;
     this.colTitle.VisibleIndex = 3;
     this.colTitle.Width = 405;
     //
     // colRead
     //
     this.colRead.Caption = "Read";
     this.colRead.ColumnEdit = this.repositoryItemCheckEdit1;
     this.colRead.FieldName = "fRead";
     this.colRead.Name = "colRead";
     this.colRead.Visible = true;
     this.colRead.VisibleIndex = 4;
     this.colRead.Width = 46;
     //
     // repositoryItemCheckEdit1
     //
     this.repositoryItemCheckEdit1.AutoHeight = false;
     this.repositoryItemCheckEdit1.Name = "repositoryItemCheckEdit1";
     this.repositoryItemCheckEdit1.NullStyle = DevExpress.XtraEditors.Controls.StyleIndeterminate.Unchecked;
     //
     // groupMessagesMemoInfo
     //
     this.groupMessagesMemoInfo.Appearance.BackColor = System.Drawing.SystemColors.Control;
     this.groupMessagesMemoInfo.Appearance.Options.UseBackColor = true;
     this.groupMessagesMemoInfo.Controls.Add(this.GroupControl8);
     this.groupMessagesMemoInfo.Location = new System.Drawing.Point(7, 344);
     this.groupMessagesMemoInfo.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.groupMessagesMemoInfo.LookAndFeel.UseDefaultLookAndFeel = false;
     this.groupMessagesMemoInfo.Name = "groupMessagesMemoInfo";
     this.groupMessagesMemoInfo.Size = new System.Drawing.Size(992, 232);
     this.groupMessagesMemoInfo.TabIndex = 13;
     this.groupMessagesMemoInfo.Text = "MEMO INFO";
     this.groupMessagesMemoInfo.VisibleChanged += new System.EventHandler(this.groupMessagesMemoInfo_VisibleChanged);
     //
     // GroupControl8
     //
     this.GroupControl8.Controls.Add(this.panel1);
     this.GroupControl8.Controls.Add(this.pbF3Select);
     this.GroupControl8.Controls.Add(this.txtFilePath3);
     this.GroupControl8.Controls.Add(this.label39);
     this.GroupControl8.Controls.Add(this.pbF2Select);
     this.GroupControl8.Controls.Add(this.txtFilePath2);
     this.GroupControl8.Controls.Add(this.label38);
     this.GroupControl8.Controls.Add(this.pbF1Select);
     this.GroupControl8.Controls.Add(this.txtFilePath1);
     this.GroupControl8.Controls.Add(this.label28);
     this.GroupControl8.Controls.Add(this.pbPreview);
     this.GroupControl8.Controls.Add(this.pbFileSelect);
     this.GroupControl8.Controls.Add(this.txtImagePath);
     this.GroupControl8.Controls.Add(this.lblFileName);
     this.GroupControl8.Controls.Add(this.sbtnUpdate);
     this.GroupControl8.Controls.Add(this.memoedtMessage);
     this.GroupControl8.Controls.Add(this.Label37);
     this.GroupControl8.Dock = System.Windows.Forms.DockStyle.Fill;
     this.GroupControl8.Location = new System.Drawing.Point(2, 19);
     this.GroupControl8.Name = "GroupControl8";
     this.GroupControl8.ShowCaption = false;
     this.GroupControl8.Size = new System.Drawing.Size(988, 211);
     this.GroupControl8.TabIndex = 0;
     this.GroupControl8.Text = "GroupControl1";
     //
     // panel1
     //
     this.panel1.AutoScroll = true;
     this.panel1.Controls.Add(this.label40);
     this.panel1.Controls.Add(this.llFile3);
     this.panel1.Controls.Add(this.llFile2);
     this.panel1.Controls.Add(this.llFile1);
     this.panel1.Location = new System.Drawing.Point(810, 16);
     this.panel1.Name = "panel1";
     this.panel1.Size = new System.Drawing.Size(173, 135);
     this.panel1.TabIndex = 33;
     //
     // label40
     //
     this.label40.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label40.Location = new System.Drawing.Point(3, 3);
     this.label40.Name = "label40";
     this.label40.Size = new System.Drawing.Size(125, 18);
     this.label40.TabIndex = 36;
     this.label40.Text = "Attached Files:";
     //
     // llFile3
     //
     this.llFile3.AutoSize = true;
     this.llFile3.Cursor = System.Windows.Forms.Cursors.Hand;
     this.llFile3.Location = new System.Drawing.Point(3, 90);
     this.llFile3.Name = "llFile3";
     this.llFile3.Size = new System.Drawing.Size(29, 13);
     this.llFile3.TabIndex = 35;
     this.llFile3.TabStop = true;
     this.llFile3.Text = "File3";
     this.llFile3.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.llFile3_LinkClicked);
     //
     // llFile2
     //
     this.llFile2.AutoSize = true;
     this.llFile2.Cursor = System.Windows.Forms.Cursors.Hand;
     this.llFile2.Location = new System.Drawing.Point(3, 59);
     this.llFile2.Name = "llFile2";
     this.llFile2.Size = new System.Drawing.Size(29, 13);
     this.llFile2.TabIndex = 34;
     this.llFile2.TabStop = true;
     this.llFile2.Text = "File2";
     this.llFile2.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.llFile2_LinkClicked);
     //
     // llFile1
     //
     this.llFile1.AutoSize = true;
     this.llFile1.Cursor = System.Windows.Forms.Cursors.Hand;
     this.llFile1.Location = new System.Drawing.Point(3, 29);
     this.llFile1.Name = "llFile1";
     this.llFile1.Size = new System.Drawing.Size(29, 13);
     this.llFile1.TabIndex = 33;
     this.llFile1.TabStop = true;
     this.llFile1.Text = "File1";
     this.llFile1.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.llFile1_LinkClicked);
     //
     // pbF3Select
     //
     this.pbF3Select.Cursor = System.Windows.Forms.Cursors.Hand;
     this.pbF3Select.ErrorImage = global::ACMS.Properties.Resources.open_file_icon;
     this.pbF3Select.Image = global::ACMS.Properties.Resources.open_file_icon;
     this.pbF3Select.InitialImage = global::ACMS.Properties.Resources.open_file_icon;
     this.pbF3Select.Location = new System.Drawing.Point(811, 182);
     this.pbF3Select.Name = "pbF3Select";
     this.pbF3Select.Size = new System.Drawing.Size(20, 20);
     this.pbF3Select.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
     this.pbF3Select.TabIndex = 29;
     this.pbF3Select.TabStop = false;
     this.pbF3Select.Click += new System.EventHandler(this.pbF3Select_Click);
     //
     // txtFilePath3
     //
     this.txtFilePath3.EditValue = "";
     this.txtFilePath3.Location = new System.Drawing.Point(504, 183);
     this.txtFilePath3.Name = "txtFilePath3";
     this.txtFilePath3.Properties.MaxLength = 255;
     this.txtFilePath3.Properties.ReadOnly = true;
     this.txtFilePath3.Size = new System.Drawing.Size(301, 20);
     this.txtFilePath3.TabIndex = 27;
     //
     // label39
     //
     this.label39.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label39.Location = new System.Drawing.Point(451, 184);
     this.label39.Name = "label39";
     this.label39.Size = new System.Drawing.Size(91, 18);
     this.label39.TabIndex = 28;
     this.label39.Text = "File 3:";
     //
     // pbF2Select
     //
     this.pbF2Select.Cursor = System.Windows.Forms.Cursors.Hand;
     this.pbF2Select.ErrorImage = global::ACMS.Properties.Resources.open_file_icon;
     this.pbF2Select.Image = global::ACMS.Properties.Resources.open_file_icon;
     this.pbF2Select.InitialImage = global::ACMS.Properties.Resources.open_file_icon;
     this.pbF2Select.Location = new System.Drawing.Point(413, 181);
     this.pbF2Select.Name = "pbF2Select";
     this.pbF2Select.Size = new System.Drawing.Size(20, 20);
     this.pbF2Select.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
     this.pbF2Select.TabIndex = 26;
     this.pbF2Select.TabStop = false;
     this.pbF2Select.Click += new System.EventHandler(this.pbF2Select_Click);
     //
     // txtFilePath2
     //
     this.txtFilePath2.EditValue = "";
     this.txtFilePath2.Location = new System.Drawing.Point(106, 182);
     this.txtFilePath2.Name = "txtFilePath2";
     this.txtFilePath2.Properties.MaxLength = 255;
     this.txtFilePath2.Properties.ReadOnly = true;
     this.txtFilePath2.Size = new System.Drawing.Size(301, 20);
     this.txtFilePath2.TabIndex = 24;
     //
     // label38
     //
     this.label38.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label38.Location = new System.Drawing.Point(18, 183);
     this.label38.Name = "label38";
     this.label38.Size = new System.Drawing.Size(91, 18);
     this.label38.TabIndex = 25;
     this.label38.Text = "File 2:";
     //
     // pbF1Select
     //
     this.pbF1Select.Cursor = System.Windows.Forms.Cursors.Hand;
     this.pbF1Select.ErrorImage = global::ACMS.Properties.Resources.open_file_icon;
     this.pbF1Select.Image = global::ACMS.Properties.Resources.open_file_icon;
     this.pbF1Select.InitialImage = global::ACMS.Properties.Resources.open_file_icon;
     this.pbF1Select.Location = new System.Drawing.Point(811, 156);
     this.pbF1Select.Name = "pbF1Select";
     this.pbF1Select.Size = new System.Drawing.Size(20, 20);
     this.pbF1Select.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
     this.pbF1Select.TabIndex = 23;
     this.pbF1Select.TabStop = false;
     this.pbF1Select.Click += new System.EventHandler(this.pbF1Select_Click);
     //
     // txtFilePath1
     //
     this.txtFilePath1.EditValue = "";
     this.txtFilePath1.Location = new System.Drawing.Point(504, 157);
     this.txtFilePath1.Name = "txtFilePath1";
     this.txtFilePath1.Properties.MaxLength = 255;
     this.txtFilePath1.Properties.ReadOnly = true;
     this.txtFilePath1.Size = new System.Drawing.Size(301, 20);
     this.txtFilePath1.TabIndex = 21;
     //
     // label28
     //
     this.label28.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label28.Location = new System.Drawing.Point(451, 158);
     this.label28.Name = "label28";
     this.label28.Size = new System.Drawing.Size(91, 18);
     this.label28.TabIndex = 22;
     this.label28.Text = "File 1:";
     //
     // pbPreview
     //
     this.pbPreview.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.pbPreview.Cursor = System.Windows.Forms.Cursors.Hand;
     this.pbPreview.Location = new System.Drawing.Point(669, 16);
     this.pbPreview.Name = "pbPreview";
     this.pbPreview.Size = new System.Drawing.Size(135, 135);
     this.pbPreview.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
     this.pbPreview.TabIndex = 20;
     this.pbPreview.TabStop = false;
     this.pbPreview.Click += new System.EventHandler(this.pbPreview_Click);
     //
     // pbFileSelect
     //
     this.pbFileSelect.Cursor = System.Windows.Forms.Cursors.Hand;
     this.pbFileSelect.ErrorImage = global::ACMS.Properties.Resources.open_file_icon;
     this.pbFileSelect.Image = global::ACMS.Properties.Resources.open_file_icon;
     this.pbFileSelect.InitialImage = global::ACMS.Properties.Resources.open_file_icon;
     this.pbFileSelect.Location = new System.Drawing.Point(413, 156);
     this.pbFileSelect.Name = "pbFileSelect";
     this.pbFileSelect.Size = new System.Drawing.Size(20, 20);
     this.pbFileSelect.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
     this.pbFileSelect.TabIndex = 19;
     this.pbFileSelect.TabStop = false;
     this.pbFileSelect.Click += new System.EventHandler(this.pbFileSelect_Click);
     //
     // txtImagePath
     //
     this.txtImagePath.EditValue = "";
     this.txtImagePath.Location = new System.Drawing.Point(106, 157);
     this.txtImagePath.Name = "txtImagePath";
     this.txtImagePath.Properties.MaxLength = 255;
     this.txtImagePath.Properties.ReadOnly = true;
     this.txtImagePath.Size = new System.Drawing.Size(301, 20);
     this.txtImagePath.TabIndex = 17;
     //
     // lblFileName
     //
     this.lblFileName.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblFileName.Location = new System.Drawing.Point(18, 158);
     this.lblFileName.Name = "lblFileName";
     this.lblFileName.Size = new System.Drawing.Size(91, 18);
     this.lblFileName.TabIndex = 18;
     this.lblFileName.Text = "Picture File:";
     //
     // sbtnUpdate
     //
     this.sbtnUpdate.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.sbtnUpdate.Appearance.Options.UseFont = true;
     this.sbtnUpdate.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.sbtnUpdate.Location = new System.Drawing.Point(852, 181);
     this.sbtnUpdate.Name = "sbtnUpdate";
     this.sbtnUpdate.Size = new System.Drawing.Size(72, 20);
     this.sbtnUpdate.TabIndex = 1;
     this.sbtnUpdate.Text = "Update";
     this.sbtnUpdate.Click += new System.EventHandler(this.sbtnUpdate_Click);
     //
     // memoedtMessage
     //
     this.memoedtMessage.EditValue = "";
     this.memoedtMessage.Location = new System.Drawing.Point(106, 16);
     this.memoedtMessage.Name = "memoedtMessage";
     this.memoedtMessage.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.memoedtMessage.Properties.Appearance.Options.UseFont = true;
     this.memoedtMessage.Properties.MaxLength = 1000;
     this.memoedtMessage.Size = new System.Drawing.Size(560, 135);
     this.memoedtMessage.TabIndex = 0;
     //
     // Label37
     //
     this.Label37.AutoSize = true;
     this.Label37.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Label37.Location = new System.Drawing.Point(16, 16);
     this.Label37.Name = "Label37";
     this.Label37.Size = new System.Drawing.Size(72, 16);
     this.Label37.TabIndex = 16;
     this.Label37.Text = "Message";
     //
     // groupMessagesReceipient
     //
     this.groupMessagesReceipient.Appearance.BackColor = System.Drawing.SystemColors.Control;
     this.groupMessagesReceipient.Appearance.Options.UseBackColor = true;
     this.groupMessagesReceipient.Controls.Add(this.GroupControl6);
     this.groupMessagesReceipient.Location = new System.Drawing.Point(7, 344);
     this.groupMessagesReceipient.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.groupMessagesReceipient.LookAndFeel.UseDefaultLookAndFeel = false;
     this.groupMessagesReceipient.Name = "groupMessagesReceipient";
     this.groupMessagesReceipient.Size = new System.Drawing.Size(992, 232);
     this.groupMessagesReceipient.TabIndex = 14;
     this.groupMessagesReceipient.Text = "RECEIPIENT";
     //
     // GroupControl6
     //
     this.GroupControl6.Controls.Add(this.cbMemoReceipient);
     this.GroupControl6.Controls.Add(this.sbtnReceipientDelete);
     this.GroupControl6.Controls.Add(this.sbtnReceipientNew);
     this.GroupControl6.Controls.Add(this.gctrReceipient);
     this.GroupControl6.Dock = System.Windows.Forms.DockStyle.Fill;
     this.GroupControl6.Location = new System.Drawing.Point(2, 19);
     this.GroupControl6.Name = "GroupControl6";
     this.GroupControl6.ShowCaption = false;
     this.GroupControl6.Size = new System.Drawing.Size(988, 211);
     this.GroupControl6.TabIndex = 0;
     this.GroupControl6.Text = "GroupControl1";
     //
     // cbMemoReceipient
     //
     this.cbMemoReceipient.EditValue = "Branch Group";
     this.cbMemoReceipient.ImeMode = System.Windows.Forms.ImeMode.On;
     this.cbMemoReceipient.Location = new System.Drawing.Point(8, 16);
     this.cbMemoReceipient.Name = "cbMemoReceipient";
     this.cbMemoReceipient.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cbMemoReceipient.Properties.Items.AddRange(new object[] {
     "Branch Group",
     "Department Group",
     "Personal Group",
     "Employee"});
     this.cbMemoReceipient.Properties.PopupSizeable = true;
     this.cbMemoReceipient.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
     this.cbMemoReceipient.Size = new System.Drawing.Size(136, 20);
     this.cbMemoReceipient.TabIndex = 0;
     this.cbMemoReceipient.SelectedIndexChanged += new System.EventHandler(this.cbMemoReceipient_SelectedIndexChanged);
     //
     // sbtnReceipientDelete
     //
     this.sbtnReceipientDelete.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.sbtnReceipientDelete.Appearance.Options.UseFont = true;
     this.sbtnReceipientDelete.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.sbtnReceipientDelete.Location = new System.Drawing.Point(232, 16);
     this.sbtnReceipientDelete.Name = "sbtnReceipientDelete";
     this.sbtnReceipientDelete.Size = new System.Drawing.Size(72, 20);
     this.sbtnReceipientDelete.TabIndex = 2;
     this.sbtnReceipientDelete.Text = "Delete";
     this.sbtnReceipientDelete.Click += new System.EventHandler(this.sbtnReceipientDelete_Click);
     //
     // sbtnReceipientNew
     //
     this.sbtnReceipientNew.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.sbtnReceipientNew.Appearance.Options.UseFont = true;
     this.sbtnReceipientNew.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.sbtnReceipientNew.Location = new System.Drawing.Point(152, 16);
     this.sbtnReceipientNew.Name = "sbtnReceipientNew";
     this.sbtnReceipientNew.Size = new System.Drawing.Size(72, 20);
     this.sbtnReceipientNew.TabIndex = 1;
     this.sbtnReceipientNew.Text = "New";
     this.sbtnReceipientNew.Click += new System.EventHandler(this.sbtnReceipientNew_Click);
     //
     // gctrReceipient
     //
     this.gctrReceipient.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.gctrReceipient.Location = new System.Drawing.Point(2, 49);
     this.gctrReceipient.LookAndFeel.UseDefaultLookAndFeel = false;
     this.gctrReceipient.MainView = this.gvReceipient;
     this.gctrReceipient.Name = "gctrReceipient";
     this.gctrReceipient.Size = new System.Drawing.Size(984, 160);
     this.gctrReceipient.TabIndex = 3;
     this.gctrReceipient.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gvReceipient});
     //
     // gvReceipient
     //
     this.gvReceipient.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colRecipientType,
     this.colRecipient,
     this.colRecipientID});
     this.gvReceipient.GridControl = this.gctrReceipient;
     this.gvReceipient.Name = "gvReceipient";
     this.gvReceipient.OptionsBehavior.AllowIncrementalSearch = true;
     this.gvReceipient.OptionsBehavior.Editable = false;
     this.gvReceipient.OptionsCustomization.AllowFilter = false;
     this.gvReceipient.OptionsView.ShowGroupPanel = false;
     //
     // colRecipientType
     //
     this.colRecipientType.Caption = "Type";
     this.colRecipientType.FieldName = "Type";
     this.colRecipientType.Name = "colRecipientType";
     this.colRecipientType.Visible = true;
     this.colRecipientType.VisibleIndex = 0;
     this.colRecipientType.Width = 223;
     //
     // colRecipient
     //
     this.colRecipient.Caption = "Receipient";
     this.colRecipient.FieldName = "Receipient";
     this.colRecipient.Name = "colRecipient";
     this.colRecipient.Visible = true;
     this.colRecipient.VisibleIndex = 1;
     this.colRecipient.Width = 558;
     //
     // colRecipientID
     //
     this.colRecipientID.Caption = "Receipient ID";
     this.colRecipientID.FieldName = "nReceipientID";
     this.colRecipientID.Name = "colRecipientID";
     this.colRecipientID.Width = 178;
     //
     // groupMessagesFollowUpAction
     //
     this.groupMessagesFollowUpAction.Appearance.BackColor = System.Drawing.SystemColors.Control;
     this.groupMessagesFollowUpAction.Appearance.Options.UseBackColor = true;
     this.groupMessagesFollowUpAction.Controls.Add(this.GroupControl4);
     this.groupMessagesFollowUpAction.Location = new System.Drawing.Point(7, 344);
     this.groupMessagesFollowUpAction.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.groupMessagesFollowUpAction.LookAndFeel.UseDefaultLookAndFeel = false;
     this.groupMessagesFollowUpAction.Name = "groupMessagesFollowUpAction";
     this.groupMessagesFollowUpAction.Size = new System.Drawing.Size(992, 232);
     this.groupMessagesFollowUpAction.TabIndex = 12;
     this.groupMessagesFollowUpAction.Text = "Replies";
     //
     // GroupControl4
     //
     this.GroupControl4.Controls.Add(this.sbtnRepliesDelete);
     this.GroupControl4.Controls.Add(this.sbtnRepliesView);
     this.GroupControl4.Controls.Add(this.sbtnRepliesUpdate);
     this.GroupControl4.Controls.Add(this.sbtnRepliesAdd);
     this.GroupControl4.Controls.Add(this.gctrReplies);
     this.GroupControl4.Dock = System.Windows.Forms.DockStyle.Fill;
     this.GroupControl4.Location = new System.Drawing.Point(2, 19);
     this.GroupControl4.Name = "GroupControl4";
     this.GroupControl4.ShowCaption = false;
     this.GroupControl4.Size = new System.Drawing.Size(988, 211);
     this.GroupControl4.TabIndex = 0;
     this.GroupControl4.Text = "GroupControl1";
     //
     // sbtnRepliesDelete
     //
     this.sbtnRepliesDelete.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.sbtnRepliesDelete.Appearance.Options.UseFont = true;
     this.sbtnRepliesDelete.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.sbtnRepliesDelete.Location = new System.Drawing.Point(256, 16);
     this.sbtnRepliesDelete.Name = "sbtnRepliesDelete";
     this.sbtnRepliesDelete.Size = new System.Drawing.Size(72, 20);
     this.sbtnRepliesDelete.TabIndex = 3;
     this.sbtnRepliesDelete.Text = "Delete";
     this.sbtnRepliesDelete.Click += new System.EventHandler(this.sbtnRepliesDelete_Click);
     //
     // sbtnRepliesView
     //
     this.sbtnRepliesView.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.sbtnRepliesView.Appearance.Options.UseFont = true;
     this.sbtnRepliesView.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.sbtnRepliesView.Location = new System.Drawing.Point(96, 16);
     this.sbtnRepliesView.Name = "sbtnRepliesView";
     this.sbtnRepliesView.Size = new System.Drawing.Size(72, 20);
     this.sbtnRepliesView.TabIndex = 1;
     this.sbtnRepliesView.Text = "View";
     this.sbtnRepliesView.Click += new System.EventHandler(this.sbtnRepliesView_Click);
     //
     // sbtnRepliesUpdate
     //
     this.sbtnRepliesUpdate.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.sbtnRepliesUpdate.Appearance.Options.UseFont = true;
     this.sbtnRepliesUpdate.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.sbtnRepliesUpdate.Location = new System.Drawing.Point(176, 16);
     this.sbtnRepliesUpdate.Name = "sbtnRepliesUpdate";
     this.sbtnRepliesUpdate.Size = new System.Drawing.Size(72, 20);
     this.sbtnRepliesUpdate.TabIndex = 2;
     this.sbtnRepliesUpdate.Text = "Update";
     this.sbtnRepliesUpdate.Click += new System.EventHandler(this.sbtnRepliesUpdate_Click);
     //
     // sbtnRepliesAdd
     //
     this.sbtnRepliesAdd.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.sbtnRepliesAdd.Appearance.Options.UseFont = true;
     this.sbtnRepliesAdd.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.sbtnRepliesAdd.Location = new System.Drawing.Point(16, 16);
     this.sbtnRepliesAdd.Name = "sbtnRepliesAdd";
     this.sbtnRepliesAdd.Size = new System.Drawing.Size(72, 20);
     this.sbtnRepliesAdd.TabIndex = 0;
     this.sbtnRepliesAdd.Text = "Add";
     this.sbtnRepliesAdd.Click += new System.EventHandler(this.sbtnRepliesAdd_Click);
     //
     // gctrReplies
     //
     this.gctrReplies.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.gctrReplies.Location = new System.Drawing.Point(2, 49);
     this.gctrReplies.LookAndFeel.UseDefaultLookAndFeel = false;
     this.gctrReplies.MainView = this.gvReplies;
     this.gctrReplies.Name = "gctrReplies";
     this.gctrReplies.Size = new System.Drawing.Size(984, 160);
     this.gctrReplies.TabIndex = 4;
     this.gctrReplies.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gvReplies});
     //
     // gvReplies
     //
     this.gvReplies.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colReplyDate,
     this.colReplyEmployeeID,
     this.colReplyEmployeeName,
     this.colReplyMessage});
     this.gvReplies.GridControl = this.gctrReplies;
     this.gvReplies.Name = "gvReplies";
     this.gvReplies.OptionsBehavior.AllowIncrementalSearch = true;
     this.gvReplies.OptionsBehavior.Editable = false;
     this.gvReplies.OptionsCustomization.AllowFilter = false;
     this.gvReplies.OptionsView.ShowGroupPanel = false;
     this.gvReplies.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.colReplyDate, DevExpress.Data.ColumnSortOrder.Descending)});
     //
     // colReplyDate
     //
     this.colReplyDate.Caption = "Date";
     this.colReplyDate.DisplayFormat.FormatString = "dd/MM/yyyy";
     this.colReplyDate.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.colReplyDate.FieldName = "dtDate";
     this.colReplyDate.Name = "colReplyDate";
     this.colReplyDate.Visible = true;
     this.colReplyDate.VisibleIndex = 0;
     this.colReplyDate.Width = 143;
     //
     // colReplyEmployeeID
     //
     this.colReplyEmployeeID.Caption = "Employee ID";
     this.colReplyEmployeeID.FieldName = "nEmployeeID";
     this.colReplyEmployeeID.Name = "colReplyEmployeeID";
     this.colReplyEmployeeID.Width = 209;
     //
     // colReplyEmployeeName
     //
     this.colReplyEmployeeName.Caption = "Employee";
     this.colReplyEmployeeName.FieldName = "strEmployeeName";
     this.colReplyEmployeeName.Name = "colReplyEmployeeName";
     this.colReplyEmployeeName.Visible = true;
     this.colReplyEmployeeName.VisibleIndex = 1;
     this.colReplyEmployeeName.Width = 247;
     //
     // colReplyMessage
     //
     this.colReplyMessage.Caption = "Message";
     this.colReplyMessage.FieldName = "strMessage";
     this.colReplyMessage.Name = "colReplyMessage";
     this.colReplyMessage.Visible = true;
     this.colReplyMessage.VisibleIndex = 2;
     this.colReplyMessage.Width = 569;
     //
     // groupReceipientGroup
     //
     this.groupReceipientGroup.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.groupReceipientGroup.Controls.Add(this.groupReceipientGroupEntry);
     this.groupReceipientGroup.Controls.Add(this.groupReceipientGroupReceipientEntries);
     this.groupReceipientGroup.Location = new System.Drawing.Point(0, 34);
     this.groupReceipientGroup.Name = "groupReceipientGroup";
     this.groupReceipientGroup.ShowCaption = false;
     this.groupReceipientGroup.Size = new System.Drawing.Size(1007, 584);
     this.groupReceipientGroup.TabIndex = 14;
     this.groupReceipientGroup.Text = "GroupControl3";
     //
     // groupReceipientGroupEntry
     //
     this.groupReceipientGroupEntry.Appearance.BackColor = System.Drawing.SystemColors.Control;
     this.groupReceipientGroupEntry.Appearance.Options.UseBackColor = true;
     this.groupReceipientGroupEntry.Controls.Add(this.sbtnRecpGrpDelete);
     this.groupReceipientGroupEntry.Controls.Add(this.sbtnRecpGrpEdit);
     this.groupReceipientGroupEntry.Controls.Add(this.sbtnRecpGrpNew);
     this.groupReceipientGroupEntry.Controls.Add(this.gctrRecpGrp);
     this.groupReceipientGroupEntry.Location = new System.Drawing.Point(8, 0);
     this.groupReceipientGroupEntry.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.groupReceipientGroupEntry.LookAndFeel.UseDefaultLookAndFeel = false;
     this.groupReceipientGroupEntry.Name = "groupReceipientGroupEntry";
     this.groupReceipientGroupEntry.Size = new System.Drawing.Size(992, 312);
     this.groupReceipientGroupEntry.TabIndex = 1;
     this.groupReceipientGroupEntry.Text = "RECEIPIENT GROUP";
     //
     // sbtnRecpGrpDelete
     //
     this.sbtnRecpGrpDelete.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.sbtnRecpGrpDelete.Appearance.Options.UseFont = true;
     this.sbtnRecpGrpDelete.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.sbtnRecpGrpDelete.Location = new System.Drawing.Point(176, 32);
     this.sbtnRecpGrpDelete.Name = "sbtnRecpGrpDelete";
     this.sbtnRecpGrpDelete.Size = new System.Drawing.Size(72, 20);
     this.sbtnRecpGrpDelete.TabIndex = 2;
     this.sbtnRecpGrpDelete.Text = "Delete";
     this.sbtnRecpGrpDelete.Click += new System.EventHandler(this.sbtnRecpGrpDelete_Click);
     //
     // sbtnRecpGrpEdit
     //
     this.sbtnRecpGrpEdit.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.sbtnRecpGrpEdit.Appearance.Options.UseFont = true;
     this.sbtnRecpGrpEdit.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.sbtnRecpGrpEdit.Location = new System.Drawing.Point(96, 32);
     this.sbtnRecpGrpEdit.Name = "sbtnRecpGrpEdit";
     this.sbtnRecpGrpEdit.Size = new System.Drawing.Size(72, 20);
     this.sbtnRecpGrpEdit.TabIndex = 1;
     this.sbtnRecpGrpEdit.Text = "Edit";
     this.sbtnRecpGrpEdit.Click += new System.EventHandler(this.sbtnRecpGrpEdit_Click);
     //
     // sbtnRecpGrpNew
     //
     this.sbtnRecpGrpNew.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.sbtnRecpGrpNew.Appearance.Options.UseFont = true;
     this.sbtnRecpGrpNew.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.sbtnRecpGrpNew.Location = new System.Drawing.Point(16, 32);
     this.sbtnRecpGrpNew.Name = "sbtnRecpGrpNew";
     this.sbtnRecpGrpNew.Size = new System.Drawing.Size(72, 20);
     this.sbtnRecpGrpNew.TabIndex = 0;
     this.sbtnRecpGrpNew.Text = "New";
     this.sbtnRecpGrpNew.Click += new System.EventHandler(this.sbtnRecpGrpNew_Click);
     //
     // gctrRecpGrp
     //
     this.gctrRecpGrp.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.gctrRecpGrp.Location = new System.Drawing.Point(2, 62);
     this.gctrRecpGrp.LookAndFeel.UseDefaultLookAndFeel = false;
     this.gctrRecpGrp.MainView = this.gvRecpGrp;
     this.gctrRecpGrp.Name = "gctrRecpGrp";
     this.gctrRecpGrp.Size = new System.Drawing.Size(988, 248);
     this.gctrRecpGrp.TabIndex = 3;
     this.gctrRecpGrp.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gvRecpGrp});
     //
     // gvRecpGrp
     //
     this.gvRecpGrp.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colReceipientGroupID,
     this.colReceipientGroupCode,
     this.colDescription});
     this.gvRecpGrp.GridControl = this.gctrRecpGrp;
     this.gvRecpGrp.Name = "gvRecpGrp";
     this.gvRecpGrp.OptionsBehavior.AllowIncrementalSearch = true;
     this.gvRecpGrp.OptionsBehavior.Editable = false;
     this.gvRecpGrp.OptionsCustomization.AllowFilter = false;
     this.gvRecpGrp.OptionsView.ShowGroupPanel = false;
     this.gvRecpGrp.FocusedRowChanged += new DevExpress.XtraGrid.Views.Base.FocusedRowChangedEventHandler(this.gvRecpGrp_FocusedRowChanged);
     this.gvRecpGrp.DataSourceChanged += new System.EventHandler(this.gvRecpGrp_DataSourceChanged);
     //
     // colReceipientGroupID
     //
     this.colReceipientGroupID.Caption = "Group ID";
     this.colReceipientGroupID.FieldName = "nMemoGroupID";
     this.colReceipientGroupID.Name = "colReceipientGroupID";
     this.colReceipientGroupID.Visible = true;
     this.colReceipientGroupID.VisibleIndex = 0;
     this.colReceipientGroupID.Width = 110;
     //
     // colReceipientGroupCode
     //
     this.colReceipientGroupCode.Caption = "Receipient Group Code";
     this.colReceipientGroupCode.FieldName = "strMemoGroupCode";
     this.colReceipientGroupCode.Name = "colReceipientGroupCode";
     this.colReceipientGroupCode.Visible = true;
     this.colReceipientGroupCode.VisibleIndex = 1;
     this.colReceipientGroupCode.Width = 417;
     //
     // colDescription
     //
     this.colDescription.Caption = "Description";
     this.colDescription.FieldName = "strDescription";
     this.colDescription.Name = "colDescription";
     this.colDescription.Visible = true;
     this.colDescription.VisibleIndex = 2;
     this.colDescription.Width = 440;
     //
     // groupReceipientGroupReceipientEntries
     //
     this.groupReceipientGroupReceipientEntries.Appearance.BackColor = System.Drawing.SystemColors.Control;
     this.groupReceipientGroupReceipientEntries.Appearance.Options.UseBackColor = true;
     this.groupReceipientGroupReceipientEntries.Controls.Add(this.GroupControl10);
     this.groupReceipientGroupReceipientEntries.Location = new System.Drawing.Point(7, 320);
     this.groupReceipientGroupReceipientEntries.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.groupReceipientGroupReceipientEntries.LookAndFeel.UseDefaultLookAndFeel = false;
     this.groupReceipientGroupReceipientEntries.Name = "groupReceipientGroupReceipientEntries";
     this.groupReceipientGroupReceipientEntries.Size = new System.Drawing.Size(992, 256);
     this.groupReceipientGroupReceipientEntries.TabIndex = 14;
     this.groupReceipientGroupReceipientEntries.Text = "RECEIPIENT ENTRIES";
     //
     // GroupControl10
     //
     this.GroupControl10.Controls.Add(this.sbtnRecpEntryDelete);
     this.GroupControl10.Controls.Add(this.sbtnRecpEntryNew);
     this.GroupControl10.Controls.Add(this.gctrRecpEntry);
     this.GroupControl10.Dock = System.Windows.Forms.DockStyle.Fill;
     this.GroupControl10.Location = new System.Drawing.Point(2, 19);
     this.GroupControl10.Name = "GroupControl10";
     this.GroupControl10.ShowCaption = false;
     this.GroupControl10.Size = new System.Drawing.Size(988, 235);
     this.GroupControl10.TabIndex = 0;
     this.GroupControl10.Text = "GroupControl1";
     //
     // sbtnRecpEntryDelete
     //
     this.sbtnRecpEntryDelete.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.sbtnRecpEntryDelete.Appearance.Options.UseFont = true;
     this.sbtnRecpEntryDelete.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.sbtnRecpEntryDelete.Location = new System.Drawing.Point(96, 16);
     this.sbtnRecpEntryDelete.Name = "sbtnRecpEntryDelete";
     this.sbtnRecpEntryDelete.Size = new System.Drawing.Size(72, 20);
     this.sbtnRecpEntryDelete.TabIndex = 1;
     this.sbtnRecpEntryDelete.Text = "Delete";
     this.sbtnRecpEntryDelete.Click += new System.EventHandler(this.sbtnRecpEntryDelete_Click);
     //
     // sbtnRecpEntryNew
     //
     this.sbtnRecpEntryNew.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.sbtnRecpEntryNew.Appearance.Options.UseFont = true;
     this.sbtnRecpEntryNew.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.sbtnRecpEntryNew.Location = new System.Drawing.Point(16, 16);
     this.sbtnRecpEntryNew.Name = "sbtnRecpEntryNew";
     this.sbtnRecpEntryNew.Size = new System.Drawing.Size(72, 20);
     this.sbtnRecpEntryNew.TabIndex = 0;
     this.sbtnRecpEntryNew.Text = "New";
     this.sbtnRecpEntryNew.Click += new System.EventHandler(this.sbtnRecpEntryNew_Click);
     //
     // gctrRecpEntry
     //
     this.gctrRecpEntry.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.gctrRecpEntry.Location = new System.Drawing.Point(2, 49);
     this.gctrRecpEntry.LookAndFeel.UseDefaultLookAndFeel = false;
     this.gctrRecpEntry.MainView = this.gvRecpEntry;
     this.gctrRecpEntry.Name = "gctrRecpEntry";
     this.gctrRecpEntry.Size = new System.Drawing.Size(984, 184);
     this.gctrRecpEntry.TabIndex = 2;
     this.gctrRecpEntry.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gvRecpEntry});
     //
     // gvRecpEntry
     //
     this.gvRecpEntry.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colEmployeeID,
     this.colEmployeeName});
     this.gvRecpEntry.GridControl = this.gctrRecpEntry;
     this.gvRecpEntry.Name = "gvRecpEntry";
     this.gvRecpEntry.OptionsBehavior.AllowIncrementalSearch = true;
     this.gvRecpEntry.OptionsBehavior.Editable = false;
     this.gvRecpEntry.OptionsCustomization.AllowFilter = false;
     this.gvRecpEntry.OptionsView.ShowGroupPanel = false;
     //
     // colEmployeeID
     //
     this.colEmployeeID.Caption = "EmployeeID";
     this.colEmployeeID.FieldName = "nEmployeeID";
     this.colEmployeeID.Name = "colEmployeeID";
     this.colEmployeeID.Visible = true;
     this.colEmployeeID.VisibleIndex = 0;
     this.colEmployeeID.Width = 90;
     //
     // colEmployeeName
     //
     this.colEmployeeName.Caption = "Employee Name";
     this.colEmployeeName.FieldName = "strEmployeeName";
     this.colEmployeeName.Name = "colEmployeeName";
     this.colEmployeeName.Visible = true;
     this.colEmployeeName.VisibleIndex = 1;
     this.colEmployeeName.Width = 209;
     //
     // lblOne_1
     //
     this.lblOne_1.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.lblOne_1.Appearance.ForeColor = System.Drawing.Color.MediumBlue;
     this.lblOne_1.Appearance.Options.UseFont = true;
     this.lblOne_1.Appearance.Options.UseForeColor = true;
     this.lblOne_1.Location = new System.Drawing.Point(8, 8);
     this.lblOne_1.Name = "lblOne_1";
     this.lblOne_1.Size = new System.Drawing.Size(138, 23);
     this.lblOne_1.TabIndex = 141;
     this.lblOne_1.Text = "Messages";
     this.lblOne_1.Click += new System.EventHandler(this.lblOne_1_Click);
     //
     // tabStaffTwo
     //
     this.tabStaffTwo.Appearance.Header.Font = new System.Drawing.Font("Tahoma", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.tabStaffTwo.Appearance.Header.Options.UseFont = true;
     this.tabStaffTwo.Controls.Add(this.lblTwo_1);
     this.tabStaffTwo.Controls.Add(this.lblTwo_2);
     this.tabStaffTwo.Controls.Add(this.groupSales);
     this.tabStaffTwo.Controls.Add(this.groupService);
     this.tabStaffTwo.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.tabStaffTwo.Name = "tabStaffTwo";
     this.tabStaffTwo.PageVisible = false;
     this.tabStaffTwo.Size = new System.Drawing.Size(1007, 612);
     this.tabStaffTwo.Text = "Commission";
     this.tabStaffTwo.VisibleChanged += new System.EventHandler(this.tabStaffCommision_VisibleChanged);
     //
     // lblTwo_1
     //
     this.lblTwo_1.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.lblTwo_1.Appearance.ForeColor = System.Drawing.Color.MediumBlue;
     this.lblTwo_1.Appearance.Options.UseFont = true;
     this.lblTwo_1.Appearance.Options.UseForeColor = true;
     this.lblTwo_1.Location = new System.Drawing.Point(8, 8);
     this.lblTwo_1.Name = "lblTwo_1";
     this.lblTwo_1.Size = new System.Drawing.Size(138, 23);
     this.lblTwo_1.TabIndex = 142;
     this.lblTwo_1.Text = "Sales";
     this.lblTwo_1.Click += new System.EventHandler(this.lblTwo_1_Click);
     //
     // lblTwo_2
     //
     this.lblTwo_2.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.lblTwo_2.Appearance.ForeColor = System.Drawing.Color.MediumBlue;
     this.lblTwo_2.Appearance.Options.UseFont = true;
     this.lblTwo_2.Appearance.Options.UseForeColor = true;
     this.lblTwo_2.Location = new System.Drawing.Point(160, 8);
     this.lblTwo_2.Name = "lblTwo_2";
     this.lblTwo_2.Size = new System.Drawing.Size(138, 23);
     this.lblTwo_2.TabIndex = 143;
     this.lblTwo_2.Text = "Service";
     this.lblTwo_2.Click += new System.EventHandler(this.lblTwo_2_Click);
     //
     // groupSales
     //
     this.groupSales.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.groupSales.Controls.Add(this.groupSalesEntry);
     this.groupSales.Location = new System.Drawing.Point(0, 34);
     this.groupSales.Name = "groupSales";
     this.groupSales.ShowCaption = false;
     this.groupSales.Size = new System.Drawing.Size(1007, 584);
     this.groupSales.TabIndex = 14;
     this.groupSales.Text = "GroupControl3";
     //
     // groupSalesEntry
     //
     this.groupSalesEntry.Appearance.BackColor = System.Drawing.SystemColors.Control;
     this.groupSalesEntry.Appearance.Options.UseBackColor = true;
     this.groupSalesEntry.Controls.Add(this.groupControl7);
     this.groupSalesEntry.Controls.Add(this.gctrSales);
     this.groupSalesEntry.Location = new System.Drawing.Point(8, 0);
     this.groupSalesEntry.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.groupSalesEntry.LookAndFeel.UseDefaultLookAndFeel = false;
     this.groupSalesEntry.Name = "groupSalesEntry";
     this.groupSalesEntry.Size = new System.Drawing.Size(992, 576);
     this.groupSalesEntry.TabIndex = 1;
     this.groupSalesEntry.Text = "SALES";
     //
     // groupControl7
     //
     this.groupControl7.Controls.Add(this.luedtSalesBranchCode);
     this.groupControl7.Controls.Add(this.label16);
     this.groupControl7.Controls.Add(this.cbSalesYear);
     this.groupControl7.Controls.Add(this.label6);
     this.groupControl7.Controls.Add(this.label7);
     this.groupControl7.Controls.Add(this.label8);
     this.groupControl7.Controls.Add(this.cbSalesMonth);
     this.groupControl7.Controls.Add(this.sbtnSalesInquiry);
     this.groupControl7.Controls.Add(this.cbSalesType);
     this.groupControl7.Location = new System.Drawing.Point(6, 24);
     this.groupControl7.Name = "groupControl7";
     this.groupControl7.Size = new System.Drawing.Size(772, 52);
     this.groupControl7.TabIndex = 0;
     this.groupControl7.Text = "Inquiry";
     //
     // luedtSalesBranchCode
     //
     this.luedtSalesBranchCode.Location = new System.Drawing.Point(304, 24);
     this.luedtSalesBranchCode.Name = "luedtSalesBranchCode";
     this.luedtSalesBranchCode.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.luedtSalesBranchCode.Size = new System.Drawing.Size(150, 20);
     this.luedtSalesBranchCode.TabIndex = 1;
     //
     // label16
     //
     this.label16.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label16.Location = new System.Drawing.Point(252, 24);
     this.label16.Name = "label16";
     this.label16.Size = new System.Drawing.Size(50, 20);
     this.label16.TabIndex = 16;
     this.label16.Text = "Branch:";
     //
     // cbSalesYear
     //
     this.cbSalesYear.EditValue = "";
     this.cbSalesYear.ImeMode = System.Windows.Forms.ImeMode.On;
     this.cbSalesYear.Location = new System.Drawing.Point(624, 24);
     this.cbSalesYear.Name = "cbSalesYear";
     this.cbSalesYear.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cbSalesYear.Properties.PopupSizeable = true;
     this.cbSalesYear.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
     this.cbSalesYear.Size = new System.Drawing.Size(64, 20);
     this.cbSalesYear.TabIndex = 3;
     //
     // label6
     //
     this.label6.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label6.Location = new System.Drawing.Point(586, 24);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(34, 20);
     this.label6.TabIndex = 15;
     this.label6.Text = "Year:";
     //
     // label7
     //
     this.label7.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label7.Location = new System.Drawing.Point(458, 24);
     this.label7.Name = "label7";
     this.label7.Size = new System.Drawing.Size(42, 20);
     this.label7.TabIndex = 14;
     this.label7.Text = "Month:";
     //
     // label8
     //
     this.label8.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label8.Location = new System.Drawing.Point(8, 24);
     this.label8.Name = "label8";
     this.label8.Size = new System.Drawing.Size(70, 20);
     this.label8.TabIndex = 13;
     this.label8.Text = "Sales Type:";
     //
     // cbSalesMonth
     //
     this.cbSalesMonth.EditValue = "January";
     this.cbSalesMonth.ImeMode = System.Windows.Forms.ImeMode.On;
     this.cbSalesMonth.Location = new System.Drawing.Point(502, 24);
     this.cbSalesMonth.Name = "cbSalesMonth";
     this.cbSalesMonth.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cbSalesMonth.Properties.Items.AddRange(new object[] {
     "January",
     "February",
     "March",
     "April",
     "May",
     "June",
     "July",
     "August",
     "September",
     "October",
     "November",
     "December"});
     this.cbSalesMonth.Properties.PopupSizeable = true;
     this.cbSalesMonth.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
     this.cbSalesMonth.Size = new System.Drawing.Size(80, 20);
     this.cbSalesMonth.TabIndex = 2;
     //
     // sbtnSalesInquiry
     //
     this.sbtnSalesInquiry.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.sbtnSalesInquiry.Appearance.Options.UseFont = true;
     this.sbtnSalesInquiry.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.sbtnSalesInquiry.Location = new System.Drawing.Point(692, 24);
     this.sbtnSalesInquiry.Name = "sbtnSalesInquiry";
     this.sbtnSalesInquiry.Size = new System.Drawing.Size(72, 20);
     this.sbtnSalesInquiry.TabIndex = 4;
     this.sbtnSalesInquiry.Text = "Inquiry";
     this.sbtnSalesInquiry.Click += new System.EventHandler(this.sbtnSalesInquiry_Click);
     //
     // cbSalesType
     //
     this.cbSalesType.EditValue = "Fitness Package Sales";
     this.cbSalesType.ImeMode = System.Windows.Forms.ImeMode.On;
     this.cbSalesType.Location = new System.Drawing.Point(80, 24);
     this.cbSalesType.Name = "cbSalesType";
     this.cbSalesType.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cbSalesType.Properties.Items.AddRange(new object[] {
     "Fitness Product Sales",
     "Fitness Package Sales",
     "Spa Product Sales",
     "Spa Package Sales",
     "Personal Trainer Package Sales",
     "IPL Package Sales",
     "Holistic Fitness",
     "Holistic Spa"});
     this.cbSalesType.Properties.PopupSizeable = true;
     this.cbSalesType.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
     this.cbSalesType.Size = new System.Drawing.Size(168, 20);
     this.cbSalesType.TabIndex = 0;
     //
     // gctrSales
     //
     this.gctrSales.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.gctrSales.Location = new System.Drawing.Point(2, 80);
     this.gctrSales.LookAndFeel.UseDefaultLookAndFeel = false;
     this.gctrSales.MainView = this.gvSales;
     this.gctrSales.Name = "gctrSales";
     this.gctrSales.Size = new System.Drawing.Size(988, 494);
     this.gctrSales.TabIndex = 5;
     this.gctrSales.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gvSales});
     //
     // gvSales
     //
     this.gvSales.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colSalesDate,
     this.colSalesReceipt,
     this.colSalesMembershipID,
     this.colSalesNettAmount});
     this.gvSales.GridControl = this.gctrSales;
     this.gvSales.Name = "gvSales";
     this.gvSales.OptionsBehavior.AllowIncrementalSearch = true;
     this.gvSales.OptionsBehavior.Editable = false;
     this.gvSales.OptionsCustomization.AllowFilter = false;
     this.gvSales.OptionsView.ShowFooter = true;
     this.gvSales.OptionsView.ShowGroupPanel = false;
     this.gvSales.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.colSalesDate, DevExpress.Data.ColumnSortOrder.Ascending)});
     //
     // colSalesDate
     //
     this.colSalesDate.Caption = "Date";
     this.colSalesDate.DisplayFormat.FormatString = "dd/MM/yyyy";
     this.colSalesDate.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.colSalesDate.FieldName = "dtDate";
     this.colSalesDate.Name = "colSalesDate";
     this.colSalesDate.Visible = true;
     this.colSalesDate.VisibleIndex = 0;
     this.colSalesDate.Width = 99;
     //
     // colSalesReceipt
     //
     this.colSalesReceipt.Caption = "Receipt No";
     this.colSalesReceipt.FieldName = "strReceiptNo";
     this.colSalesReceipt.Name = "colSalesReceipt";
     this.colSalesReceipt.Visible = true;
     this.colSalesReceipt.VisibleIndex = 1;
     this.colSalesReceipt.Width = 166;
     //
     // colSalesMembershipID
     //
     this.colSalesMembershipID.Caption = "Membership ID";
     this.colSalesMembershipID.FieldName = "strMembershipID";
     this.colSalesMembershipID.Name = "colSalesMembershipID";
     this.colSalesMembershipID.Visible = true;
     this.colSalesMembershipID.VisibleIndex = 2;
     this.colSalesMembershipID.Width = 294;
     //
     // colSalesNettAmount
     //
     this.colSalesNettAmount.Caption = "Nett Amount";
     this.colSalesNettAmount.FieldName = "mNettAmount";
     this.colSalesNettAmount.Name = "colSalesNettAmount";
     this.colSalesNettAmount.SummaryItem.SummaryType = DevExpress.Data.SummaryItemType.Sum;
     this.colSalesNettAmount.Visible = true;
     this.colSalesNettAmount.VisibleIndex = 3;
     this.colSalesNettAmount.Width = 107;
     //
     // groupService
     //
     this.groupService.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.groupService.Controls.Add(this.groupServiceEntry);
     this.groupService.Location = new System.Drawing.Point(0, 34);
     this.groupService.Name = "groupService";
     this.groupService.ShowCaption = false;
     this.groupService.Size = new System.Drawing.Size(1007, 584);
     this.groupService.TabIndex = 15;
     this.groupService.Text = "GroupControl3";
     //
     // groupServiceEntry
     //
     this.groupServiceEntry.Appearance.BackColor = System.Drawing.SystemColors.Control;
     this.groupServiceEntry.Appearance.Options.UseBackColor = true;
     this.groupServiceEntry.Controls.Add(this.groupControl3);
     this.groupServiceEntry.Controls.Add(this.gctrService);
     this.groupServiceEntry.Location = new System.Drawing.Point(8, 0);
     this.groupServiceEntry.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.groupServiceEntry.LookAndFeel.UseDefaultLookAndFeel = false;
     this.groupServiceEntry.Name = "groupServiceEntry";
     this.groupServiceEntry.Size = new System.Drawing.Size(992, 576);
     this.groupServiceEntry.TabIndex = 1;
     this.groupServiceEntry.Text = "SERVICE";
     //
     // groupControl3
     //
     this.groupControl3.Controls.Add(this.luedtCommissionServiceBranch);
     this.groupControl3.Controls.Add(this.label30);
     this.groupControl3.Controls.Add(this.cbServiceYear);
     this.groupControl3.Controls.Add(this.label5);
     this.groupControl3.Controls.Add(this.label3);
     this.groupControl3.Controls.Add(this.label2);
     this.groupControl3.Controls.Add(this.cbServiceMonth);
     this.groupControl3.Controls.Add(this.cbServiceServiceType);
     this.groupControl3.Controls.Add(this.sbtnServiceInquiry);
     this.groupControl3.Location = new System.Drawing.Point(6, 24);
     this.groupControl3.Name = "groupControl3";
     this.groupControl3.Size = new System.Drawing.Size(730, 52);
     this.groupControl3.TabIndex = 0;
     this.groupControl3.Text = "Inquiry";
     //
     // luedtCommissionServiceBranch
     //
     this.luedtCommissionServiceBranch.Location = new System.Drawing.Point(258, 24);
     this.luedtCommissionServiceBranch.Name = "luedtCommissionServiceBranch";
     this.luedtCommissionServiceBranch.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.luedtCommissionServiceBranch.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     this.luedtCommissionServiceBranch.Size = new System.Drawing.Size(150, 20);
     this.luedtCommissionServiceBranch.TabIndex = 1;
     //
     // label30
     //
     this.label30.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label30.Location = new System.Drawing.Point(206, 24);
     this.label30.Name = "label30";
     this.label30.Size = new System.Drawing.Size(50, 20);
     this.label30.TabIndex = 18;
     this.label30.Text = "Branch:";
     //
     // cbServiceYear
     //
     this.cbServiceYear.EditValue = "";
     this.cbServiceYear.ImeMode = System.Windows.Forms.ImeMode.On;
     this.cbServiceYear.Location = new System.Drawing.Point(580, 24);
     this.cbServiceYear.Name = "cbServiceYear";
     this.cbServiceYear.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cbServiceYear.Properties.PopupSizeable = true;
     this.cbServiceYear.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
     this.cbServiceYear.Size = new System.Drawing.Size(64, 20);
     this.cbServiceYear.TabIndex = 3;
     //
     // label5
     //
     this.label5.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label5.Location = new System.Drawing.Point(542, 24);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(34, 20);
     this.label5.TabIndex = 15;
     this.label5.Text = "Year:";
     //
     // label3
     //
     this.label3.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label3.Location = new System.Drawing.Point(414, 24);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(42, 20);
     this.label3.TabIndex = 14;
     this.label3.Text = "Month:";
     //
     // label2
     //
     this.label2.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label2.Location = new System.Drawing.Point(8, 24);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(78, 20);
     this.label2.TabIndex = 13;
     this.label2.Text = "Service Type:";
     //
     // cbServiceMonth
     //
     this.cbServiceMonth.EditValue = "January";
     this.cbServiceMonth.ImeMode = System.Windows.Forms.ImeMode.On;
     this.cbServiceMonth.Location = new System.Drawing.Point(458, 24);
     this.cbServiceMonth.Name = "cbServiceMonth";
     this.cbServiceMonth.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cbServiceMonth.Properties.Items.AddRange(new object[] {
     "January",
     "February",
     "March",
     "April",
     "May",
     "June",
     "July",
     "August",
     "September",
     "October",
     "November",
     "December"});
     this.cbServiceMonth.Properties.PopupSizeable = true;
     this.cbServiceMonth.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
     this.cbServiceMonth.Size = new System.Drawing.Size(80, 20);
     this.cbServiceMonth.TabIndex = 2;
     //
     // cbServiceServiceType
     //
     this.cbServiceServiceType.EditValue = "PT Service";
     this.cbServiceServiceType.ImeMode = System.Windows.Forms.ImeMode.On;
     this.cbServiceServiceType.Location = new System.Drawing.Point(88, 24);
     this.cbServiceServiceType.Name = "cbServiceServiceType";
     this.cbServiceServiceType.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cbServiceServiceType.Properties.Items.AddRange(new object[] {
     "PT Service",
     "Spa Service"});
     this.cbServiceServiceType.Properties.PopupSizeable = true;
     this.cbServiceServiceType.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
     this.cbServiceServiceType.Size = new System.Drawing.Size(112, 20);
     this.cbServiceServiceType.TabIndex = 0;
     //
     // sbtnServiceInquiry
     //
     this.sbtnServiceInquiry.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.sbtnServiceInquiry.Appearance.Options.UseFont = true;
     this.sbtnServiceInquiry.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.sbtnServiceInquiry.Location = new System.Drawing.Point(648, 24);
     this.sbtnServiceInquiry.Name = "sbtnServiceInquiry";
     this.sbtnServiceInquiry.Size = new System.Drawing.Size(72, 20);
     this.sbtnServiceInquiry.TabIndex = 4;
     this.sbtnServiceInquiry.Text = "Inquiry";
     this.sbtnServiceInquiry.Click += new System.EventHandler(this.sbtnServiceInquiry_Click);
     //
     // gctrService
     //
     this.gctrService.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.gctrService.Location = new System.Drawing.Point(2, 80);
     this.gctrService.LookAndFeel.UseDefaultLookAndFeel = false;
     this.gctrService.MainView = this.gvService;
     this.gctrService.Name = "gctrService";
     this.gctrService.Size = new System.Drawing.Size(988, 494);
     this.gctrService.TabIndex = 5;
     this.gctrService.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gvService});
     //
     // gvService
     //
     this.gvService.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colServicedtDate,
     this.colServicestrBranchCode,
     this.colServicestrMembershipID,
     this.colServicestrServiceCode,
     this.colServicestrCommission});
     this.gvService.GridControl = this.gctrService;
     this.gvService.Name = "gvService";
     this.gvService.OptionsBehavior.AllowIncrementalSearch = true;
     this.gvService.OptionsBehavior.Editable = false;
     this.gvService.OptionsCustomization.AllowFilter = false;
     this.gvService.OptionsView.ShowFooter = true;
     this.gvService.OptionsView.ShowGroupPanel = false;
     this.gvService.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.colServicedtDate, DevExpress.Data.ColumnSortOrder.Ascending)});
     //
     // colServicedtDate
     //
     this.colServicedtDate.Caption = "Date";
     this.colServicedtDate.DisplayFormat.FormatString = "dd/MM/yyyy";
     this.colServicedtDate.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.colServicedtDate.FieldName = "dtDate";
     this.colServicedtDate.Name = "colServicedtDate";
     this.colServicedtDate.Visible = true;
     this.colServicedtDate.VisibleIndex = 0;
     //
     // colServicestrBranchCode
     //
     this.colServicestrBranchCode.Caption = "Branch";
     this.colServicestrBranchCode.FieldName = "strBranchCode";
     this.colServicestrBranchCode.Name = "colServicestrBranchCode";
     this.colServicestrBranchCode.Visible = true;
     this.colServicestrBranchCode.VisibleIndex = 1;
     //
     // colServicestrMembershipID
     //
     this.colServicestrMembershipID.Caption = "Membership ID";
     this.colServicestrMembershipID.FieldName = "strMembershipID";
     this.colServicestrMembershipID.Name = "colServicestrMembershipID";
     this.colServicestrMembershipID.Visible = true;
     this.colServicestrMembershipID.VisibleIndex = 2;
     //
     // colServicestrServiceCode
     //
     this.colServicestrServiceCode.Caption = "Transaction Code";
     this.colServicestrServiceCode.FieldName = "strServiceCode";
     this.colServicestrServiceCode.Name = "colServicestrServiceCode";
     this.colServicestrServiceCode.Visible = true;
     this.colServicestrServiceCode.VisibleIndex = 3;
     //
     // colServicestrCommission
     //
     this.colServicestrCommission.Caption = "Commission";
     this.colServicestrCommission.FieldName = "mCommission";
     this.colServicestrCommission.Name = "colServicestrCommission";
     this.colServicestrCommission.SummaryItem.SummaryType = DevExpress.Data.SummaryItemType.Sum;
     this.colServicestrCommission.Visible = true;
     this.colServicestrCommission.VisibleIndex = 4;
     //
     // tabStaffFive
     //
     this.tabStaffFive.Appearance.Header.Font = new System.Drawing.Font("Tahoma", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.tabStaffFive.Appearance.Header.Options.UseFont = true;
     this.tabStaffFive.Controls.Add(this.groupCustomerVoice);
     this.tabStaffFive.Name = "tabStaffFive";
     this.tabStaffFive.PageVisible = false;
     this.tabStaffFive.Size = new System.Drawing.Size(1007, 612);
     this.tabStaffFive.Text = "Customer Voice";
     this.tabStaffFive.VisibleChanged += new System.EventHandler(this.tabStaffCustomerVoice_VisibleChanged);
     //
     // groupCustomerVoice
     //
     this.groupCustomerVoice.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.groupCustomerVoice.Controls.Add(this.lblmnuCustomerVoiceActionHistory);
     this.groupCustomerVoice.Controls.Add(this.lblmnuCustomerVoiceCVDetails);
     this.groupCustomerVoice.Controls.Add(this.GroupControl24);
     this.groupCustomerVoice.Controls.Add(this.groupCustomerVoiceActionHistory);
     this.groupCustomerVoice.Controls.Add(this.groupCustomerVoiceCVDetails);
     this.groupCustomerVoice.Location = new System.Drawing.Point(0, 8);
     this.groupCustomerVoice.Name = "groupCustomerVoice";
     this.groupCustomerVoice.ShowCaption = false;
     this.groupCustomerVoice.Size = new System.Drawing.Size(1007, 584);
     this.groupCustomerVoice.TabIndex = 11;
     this.groupCustomerVoice.Text = "GroupControl1";
     //
     // lblmnuCustomerVoiceActionHistory
     //
     this.lblmnuCustomerVoiceActionHistory.AutoSize = true;
     this.lblmnuCustomerVoiceActionHistory.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblmnuCustomerVoiceActionHistory.Location = new System.Drawing.Point(184, 320);
     this.lblmnuCustomerVoiceActionHistory.Name = "lblmnuCustomerVoiceActionHistory";
     this.lblmnuCustomerVoiceActionHistory.Size = new System.Drawing.Size(104, 16);
     this.lblmnuCustomerVoiceActionHistory.TabIndex = 10;
     this.lblmnuCustomerVoiceActionHistory.Text = "Action History";
     this.lblmnuCustomerVoiceActionHistory.Click += new System.EventHandler(this.lblmnuCustomerVoiceActionHistory_Click);
     //
     // lblmnuCustomerVoiceCVDetails
     //
     this.lblmnuCustomerVoiceCVDetails.AutoSize = true;
     this.lblmnuCustomerVoiceCVDetails.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblmnuCustomerVoiceCVDetails.Location = new System.Drawing.Point(24, 320);
     this.lblmnuCustomerVoiceCVDetails.Name = "lblmnuCustomerVoiceCVDetails";
     this.lblmnuCustomerVoiceCVDetails.Size = new System.Drawing.Size(170, 16);
     this.lblmnuCustomerVoiceCVDetails.TabIndex = 9;
     this.lblmnuCustomerVoiceCVDetails.Text = "Customer Voice Details";
     this.lblmnuCustomerVoiceCVDetails.Click += new System.EventHandler(this.lblmnuCustomerVoiceCVDetails_Click);
     //
     // GroupControl24
     //
     this.GroupControl24.Appearance.BackColor = System.Drawing.SystemColors.Control;
     this.GroupControl24.Appearance.Options.UseBackColor = true;
     this.GroupControl24.Controls.Add(this.luedtCVSubmitter);
     this.GroupControl24.Controls.Add(this.sbtnAssign);
     this.GroupControl24.Controls.Add(this.sbtnCVPrint);
     this.GroupControl24.Controls.Add(this.sbtnCVEdit);
     this.GroupControl24.Controls.Add(this.sbtnCVDelete);
     this.GroupControl24.Controls.Add(this.sbtnCVNew);
     this.GroupControl24.Controls.Add(this.cbListCV);
     this.GroupControl24.Controls.Add(this.gctrCV);
     this.GroupControl24.Controls.Add(this.label17);
     this.GroupControl24.Controls.Add(this.luedtCVAssignTo);
     this.GroupControl24.Controls.Add(this.lblCVSubmitter);
     this.GroupControl24.Location = new System.Drawing.Point(8, 0);
     this.GroupControl24.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.GroupControl24.LookAndFeel.UseDefaultLookAndFeel = false;
     this.GroupControl24.Name = "GroupControl24";
     this.GroupControl24.Size = new System.Drawing.Size(992, 312);
     this.GroupControl24.TabIndex = 0;
     this.GroupControl24.Text = "CUSTOMER VOICE";
     //
     // luedtCVSubmitter
     //
     this.luedtCVSubmitter.Location = new System.Drawing.Point(400, 32);
     this.luedtCVSubmitter.Name = "luedtCVSubmitter";
     this.luedtCVSubmitter.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.luedtCVSubmitter.Size = new System.Drawing.Size(176, 20);
     this.luedtCVSubmitter.TabIndex = 2;
     this.luedtCVSubmitter.EditValueChanged += new System.EventHandler(this.luedtCVSubmiter_EditValueChanged);
     //
     // sbtnAssign
     //
     this.sbtnAssign.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.sbtnAssign.Appearance.Options.UseFont = true;
     this.sbtnAssign.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.sbtnAssign.Location = new System.Drawing.Point(824, 32);
     this.sbtnAssign.Name = "sbtnAssign";
     this.sbtnAssign.Size = new System.Drawing.Size(80, 20);
     this.sbtnAssign.TabIndex = 6;
     this.sbtnAssign.Text = "Assign To";
     this.sbtnAssign.Click += new System.EventHandler(this.sbtnAssign_Click);
     //
     // sbtnCVPrint
     //
     this.sbtnCVPrint.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.sbtnCVPrint.Appearance.Options.UseFont = true;
     this.sbtnCVPrint.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.sbtnCVPrint.Location = new System.Drawing.Point(912, 32);
     this.sbtnCVPrint.Name = "sbtnCVPrint";
     this.sbtnCVPrint.Size = new System.Drawing.Size(72, 20);
     this.sbtnCVPrint.TabIndex = 7;
     this.sbtnCVPrint.Text = "Print";
     this.sbtnCVPrint.Click += new System.EventHandler(this.sbtnCVPrint_Click);
     //
     // sbtnCVEdit
     //
     this.sbtnCVEdit.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.sbtnCVEdit.Appearance.Options.UseFont = true;
     this.sbtnCVEdit.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.sbtnCVEdit.Location = new System.Drawing.Point(744, 32);
     this.sbtnCVEdit.Name = "sbtnCVEdit";
     this.sbtnCVEdit.Size = new System.Drawing.Size(72, 20);
     this.sbtnCVEdit.TabIndex = 5;
     this.sbtnCVEdit.Text = "Update";
     this.sbtnCVEdit.Click += new System.EventHandler(this.sbtnCVEdit_Click);
     //
     // sbtnCVDelete
     //
     this.sbtnCVDelete.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.sbtnCVDelete.Appearance.Options.UseFont = true;
     this.sbtnCVDelete.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.sbtnCVDelete.Location = new System.Drawing.Point(664, 32);
     this.sbtnCVDelete.Name = "sbtnCVDelete";
     this.sbtnCVDelete.Size = new System.Drawing.Size(72, 20);
     this.sbtnCVDelete.TabIndex = 4;
     this.sbtnCVDelete.Text = "Delete";
     this.sbtnCVDelete.Click += new System.EventHandler(this.sbtnCVDelete_Click);
     //
     // sbtnCVNew
     //
     this.sbtnCVNew.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.sbtnCVNew.Appearance.Options.UseFont = true;
     this.sbtnCVNew.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.sbtnCVNew.Location = new System.Drawing.Point(584, 32);
     this.sbtnCVNew.Name = "sbtnCVNew";
     this.sbtnCVNew.Size = new System.Drawing.Size(72, 20);
     this.sbtnCVNew.TabIndex = 3;
     this.sbtnCVNew.Text = "New";
     this.sbtnCVNew.Click += new System.EventHandler(this.sbtnCVNew_Click);
     //
     // cbListCV
     //
     this.cbListCV.EditValue = "All";
     this.cbListCV.Location = new System.Drawing.Point(8, 32);
     this.cbListCV.Name = "cbListCV";
     this.cbListCV.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cbListCV.Properties.Items.AddRange(new object[] {
     "All",
     "New",
     "Open",
     "Closed"});
     this.cbListCV.Properties.PopupSizeable = true;
     this.cbListCV.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
     this.cbListCV.Size = new System.Drawing.Size(88, 20);
     this.cbListCV.TabIndex = 0;
     this.cbListCV.SelectedIndexChanged += new System.EventHandler(this.cbListCV_SelectedIndexChanged);
     //
     // gctrCV
     //
     this.gctrCV.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.gctrCV.Location = new System.Drawing.Point(2, 62);
     this.gctrCV.LookAndFeel.UseDefaultLookAndFeel = false;
     this.gctrCV.MainView = this.gvCV;
     this.gctrCV.Name = "gctrCV";
     this.gctrCV.Size = new System.Drawing.Size(988, 248);
     this.gctrCV.TabIndex = 8;
     this.gctrCV.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gvCV});
     //
     // gvCV
     //
     this.gvCV.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colRefNo,
     this.colDtReceived,
     this.colBranch,
     this.colMembershipID,
     this.colMemberName,
     this.colDepartment,
     this.colType,
     this.colCategory,
     this.colSubject,
     this.colSubmittedBy,
     this.colStaffSubject,
     this.colDepartmentAssignedTo,
     this.colLastUpdatedDate,
     this.colStatus});
     this.gvCV.GridControl = this.gctrCV;
     this.gvCV.Name = "gvCV";
     this.gvCV.OptionsBehavior.AllowIncrementalSearch = true;
     this.gvCV.OptionsBehavior.Editable = false;
     this.gvCV.OptionsCustomization.AllowFilter = false;
     this.gvCV.OptionsView.ColumnAutoWidth = false;
     this.gvCV.OptionsView.ShowGroupPanel = false;
     this.gvCV.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.colDtReceived, DevExpress.Data.ColumnSortOrder.Descending)});
     this.gvCV.FocusedRowChanged += new DevExpress.XtraGrid.Views.Base.FocusedRowChangedEventHandler(this.gvCV_FocusedRowChanged);
     this.gvCV.DataSourceChanged += new System.EventHandler(this.gvCV_DataSourceChanged);
     //
     // colRefNo
     //
     this.colRefNo.Caption = "Ref No";
     this.colRefNo.FieldName = "nCaseID";
     this.colRefNo.Name = "colRefNo";
     this.colRefNo.Visible = true;
     this.colRefNo.VisibleIndex = 0;
     //
     // colDtReceived
     //
     this.colDtReceived.Caption = "Date Received";
     this.colDtReceived.DisplayFormat.FormatString = "dd/MM/yyyy";
     this.colDtReceived.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.colDtReceived.FieldName = "dtDate";
     this.colDtReceived.Name = "colDtReceived";
     this.colDtReceived.Visible = true;
     this.colDtReceived.VisibleIndex = 1;
     this.colDtReceived.Width = 100;
     //
     // colBranch
     //
     this.colBranch.Caption = "Branch";
     this.colBranch.FieldName = "strBranchCode";
     this.colBranch.Name = "colBranch";
     this.colBranch.Visible = true;
     this.colBranch.VisibleIndex = 2;
     //
     // colMembershipID
     //
     this.colMembershipID.Caption = "Membership Id";
     this.colMembershipID.FieldName = "strMembershipID";
     this.colMembershipID.Name = "colMembershipID";
     this.colMembershipID.Visible = true;
     this.colMembershipID.VisibleIndex = 6;
     this.colMembershipID.Width = 100;
     //
     // colMemberName
     //
     this.colMemberName.Caption = "Member Name";
     this.colMemberName.FieldName = "strMembershipName";
     this.colMemberName.Name = "colMemberName";
     this.colMemberName.Visible = true;
     this.colMemberName.VisibleIndex = 3;
     this.colMemberName.Width = 101;
     //
     // colDepartment
     //
     this.colDepartment.Caption = "Department";
     this.colDepartment.FieldName = "strDepartmentDescription";
     this.colDepartment.Name = "colDepartment";
     this.colDepartment.Visible = true;
     this.colDepartment.VisibleIndex = 7;
     this.colDepartment.Width = 89;
     //
     // colType
     //
     this.colType.Caption = "Type";
     this.colType.FieldName = "strCaseTypeDescription";
     this.colType.Name = "colType";
     this.colType.Visible = true;
     this.colType.VisibleIndex = 4;
     //
     // colCategory
     //
     this.colCategory.Caption = "Category";
     this.colCategory.FieldName = "strCaseCategoryDescription";
     this.colCategory.Name = "colCategory";
     this.colCategory.Visible = true;
     this.colCategory.VisibleIndex = 5;
     //
     // colSubject
     //
     this.colSubject.Caption = "Subject";
     this.colSubject.FieldName = "strSubject";
     this.colSubject.Name = "colSubject";
     //
     // colSubmittedBy
     //
     this.colSubmittedBy.Caption = "Submitted By";
     this.colSubmittedBy.FieldName = "strSubmittedBy";
     this.colSubmittedBy.Name = "colSubmittedBy";
     this.colSubmittedBy.Visible = true;
     this.colSubmittedBy.VisibleIndex = 8;
     this.colSubmittedBy.Width = 97;
     //
     // colStaffSubject
     //
     this.colStaffSubject.Caption = "Subject Staff ";
     this.colStaffSubject.FieldName = "strSubjectStaff";
     this.colStaffSubject.Name = "colStaffSubject";
     //
     // colDepartmentAssignedTo
     //
     this.colDepartmentAssignedTo.Caption = "Department Assigned To";
     this.colDepartmentAssignedTo.FieldName = "strDepartmentAssignedTo";
     this.colDepartmentAssignedTo.Name = "colDepartmentAssignedTo";
     this.colDepartmentAssignedTo.Visible = true;
     this.colDepartmentAssignedTo.VisibleIndex = 9;
     this.colDepartmentAssignedTo.Width = 130;
     //
     // colLastUpdatedDate
     //
     this.colLastUpdatedDate.Caption = "Last Updated Date";
     this.colLastUpdatedDate.DisplayFormat.FormatString = "dd/MM/yyyy";
     this.colLastUpdatedDate.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.colLastUpdatedDate.FieldName = "dtLastEditDate";
     this.colLastUpdatedDate.Name = "colLastUpdatedDate";
     this.colLastUpdatedDate.Visible = true;
     this.colLastUpdatedDate.VisibleIndex = 10;
     this.colLastUpdatedDate.Width = 100;
     //
     // colStatus
     //
     this.colStatus.Caption = "Status";
     this.colStatus.FieldName = "strStatus";
     this.colStatus.Name = "colStatus";
     this.colStatus.Visible = true;
     this.colStatus.VisibleIndex = 11;
     //
     // label17
     //
     this.label17.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label17.Location = new System.Drawing.Point(104, 32);
     this.label17.Name = "label17";
     this.label17.Size = new System.Drawing.Size(64, 20);
     this.label17.TabIndex = 19;
     this.label17.Text = "Assign To:";
     //
     // luedtCVAssignTo
     //
     this.luedtCVAssignTo.Location = new System.Drawing.Point(168, 32);
     this.luedtCVAssignTo.Name = "luedtCVAssignTo";
     this.luedtCVAssignTo.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.luedtCVAssignTo.Size = new System.Drawing.Size(160, 20);
     this.luedtCVAssignTo.TabIndex = 1;
     this.luedtCVAssignTo.EditValueChanged += new System.EventHandler(this.luedtCVAssignTo_EditValueChanged);
     //
     // lblCVSubmitter
     //
     this.lblCVSubmitter.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblCVSubmitter.Location = new System.Drawing.Point(336, 32);
     this.lblCVSubmitter.Name = "lblCVSubmitter";
     this.lblCVSubmitter.Size = new System.Drawing.Size(64, 20);
     this.lblCVSubmitter.TabIndex = 16;
     this.lblCVSubmitter.Text = "Submitter:";
     //
     // groupCustomerVoiceActionHistory
     //
     this.groupCustomerVoiceActionHistory.Appearance.BackColor = System.Drawing.SystemColors.Control;
     this.groupCustomerVoiceActionHistory.Appearance.Options.UseBackColor = true;
     this.groupCustomerVoiceActionHistory.Controls.Add(this.GroupControl26);
     this.groupCustomerVoiceActionHistory.Location = new System.Drawing.Point(7, 344);
     this.groupCustomerVoiceActionHistory.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.groupCustomerVoiceActionHistory.LookAndFeel.UseDefaultLookAndFeel = false;
     this.groupCustomerVoiceActionHistory.Name = "groupCustomerVoiceActionHistory";
     this.groupCustomerVoiceActionHistory.Size = new System.Drawing.Size(992, 232);
     this.groupCustomerVoiceActionHistory.TabIndex = 11;
     this.groupCustomerVoiceActionHistory.Text = "ACTION HISTORY";
     //
     // GroupControl26
     //
     this.GroupControl26.Controls.Add(this.sbtnNewCVAction);
     this.GroupControl26.Controls.Add(this.gctrCVAction);
     this.GroupControl26.Dock = System.Windows.Forms.DockStyle.Fill;
     this.GroupControl26.Location = new System.Drawing.Point(2, 19);
     this.GroupControl26.Name = "GroupControl26";
     this.GroupControl26.ShowCaption = false;
     this.GroupControl26.Size = new System.Drawing.Size(988, 211);
     this.GroupControl26.TabIndex = 0;
     this.GroupControl26.Text = "GroupControl1";
     //
     // sbtnNewCVAction
     //
     this.sbtnNewCVAction.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.sbtnNewCVAction.Appearance.Options.UseFont = true;
     this.sbtnNewCVAction.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.sbtnNewCVAction.Location = new System.Drawing.Point(16, 16);
     this.sbtnNewCVAction.Name = "sbtnNewCVAction";
     this.sbtnNewCVAction.Size = new System.Drawing.Size(72, 20);
     this.sbtnNewCVAction.TabIndex = 0;
     this.sbtnNewCVAction.Text = "New";
     this.sbtnNewCVAction.Click += new System.EventHandler(this.sbtnNewCVAction_Click);
     //
     // gctrCVAction
     //
     this.gctrCVAction.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.gctrCVAction.Location = new System.Drawing.Point(2, 49);
     this.gctrCVAction.LookAndFeel.UseDefaultLookAndFeel = false;
     this.gctrCVAction.MainView = this.gvCVAction;
     this.gctrCVAction.Name = "gctrCVAction";
     this.gctrCVAction.Size = new System.Drawing.Size(984, 160);
     this.gctrCVAction.TabIndex = 1;
     this.gctrCVAction.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gvCVAction});
     //
     // gvCVAction
     //
     this.gvCVAction.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colActionID,
     this.coldtDate,
     this.coldtTime,
     this.colMode,
     this.colActionDetail,
     this.colActionTakenBy,
     this.colActionTakenByID});
     this.gvCVAction.GridControl = this.gctrCVAction;
     this.gvCVAction.Name = "gvCVAction";
     this.gvCVAction.OptionsBehavior.AllowIncrementalSearch = true;
     this.gvCVAction.OptionsBehavior.Editable = false;
     this.gvCVAction.OptionsCustomization.AllowFilter = false;
     this.gvCVAction.OptionsView.ShowGroupPanel = false;
     this.gvCVAction.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.coldtDate, DevExpress.Data.ColumnSortOrder.Descending)});
     //
     // colActionID
     //
     this.colActionID.Caption = "ID";
     this.colActionID.FieldName = "nActionID";
     this.colActionID.Name = "colActionID";
     this.colActionID.Visible = true;
     this.colActionID.VisibleIndex = 0;
     this.colActionID.Width = 64;
     //
     // coldtDate
     //
     this.coldtDate.Caption = "Date";
     this.coldtDate.DisplayFormat.FormatString = "dd/MM/yyy";
     this.coldtDate.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.coldtDate.FieldName = "dtDate";
     this.coldtDate.Name = "coldtDate";
     this.coldtDate.Visible = true;
     this.coldtDate.VisibleIndex = 1;
     this.coldtDate.Width = 117;
     //
     // coldtTime
     //
     this.coldtTime.Caption = "Time";
     this.coldtTime.DisplayFormat.FormatString = "hh:mm tt";
     this.coldtTime.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.coldtTime.FieldName = "dtDate";
     this.coldtTime.GroupFormat.FormatString = "hh:mm tt";
     this.coldtTime.GroupFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.coldtTime.Name = "coldtTime";
     this.coldtTime.Visible = true;
     this.coldtTime.VisibleIndex = 2;
     this.coldtTime.Width = 78;
     //
     // colMode
     //
     this.colMode.Caption = "Mode";
     this.colMode.FieldName = "strMode";
     this.colMode.Name = "colMode";
     this.colMode.Visible = true;
     this.colMode.VisibleIndex = 3;
     this.colMode.Width = 207;
     //
     // colActionDetail
     //
     this.colActionDetail.Caption = "Action Taken";
     this.colActionDetail.FieldName = "strActionDetails";
     this.colActionDetail.Name = "colActionDetail";
     this.colActionDetail.Visible = true;
     this.colActionDetail.VisibleIndex = 4;
     this.colActionDetail.Width = 262;
     //
     // colActionTakenBy
     //
     this.colActionTakenBy.Caption = "Action Taken By";
     this.colActionTakenBy.FieldName = "strActionTakenBy";
     this.colActionTakenBy.Name = "colActionTakenBy";
     this.colActionTakenBy.Visible = true;
     this.colActionTakenBy.VisibleIndex = 5;
     this.colActionTakenBy.Width = 231;
     //
     // colActionTakenByID
     //
     this.colActionTakenByID.Caption = "Action Taken By ID";
     this.colActionTakenByID.FieldName = "nActionByID";
     this.colActionTakenByID.Name = "colActionTakenByID";
     this.colActionTakenByID.Visible = true;
     this.colActionTakenByID.VisibleIndex = 6;
     //
     // groupCustomerVoiceCVDetails
     //
     this.groupCustomerVoiceCVDetails.Appearance.BackColor = System.Drawing.SystemColors.Control;
     this.groupCustomerVoiceCVDetails.Appearance.Options.UseBackColor = true;
     this.groupCustomerVoiceCVDetails.Controls.Add(this.GroupControl28);
     this.groupCustomerVoiceCVDetails.Location = new System.Drawing.Point(7, 344);
     this.groupCustomerVoiceCVDetails.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.groupCustomerVoiceCVDetails.LookAndFeel.UseDefaultLookAndFeel = false;
     this.groupCustomerVoiceCVDetails.Name = "groupCustomerVoiceCVDetails";
     this.groupCustomerVoiceCVDetails.Size = new System.Drawing.Size(992, 232);
     this.groupCustomerVoiceCVDetails.TabIndex = 6;
     this.groupCustomerVoiceCVDetails.Text = "CUSTOMER VOICE DETAILS";
     //
     // GroupControl28
     //
     this.GroupControl28.Controls.Add(this.txtHomeNo);
     this.GroupControl28.Controls.Add(this.label31);
     this.GroupControl28.Controls.Add(this.txtEmail);
     this.GroupControl28.Controls.Add(this.label10);
     this.GroupControl28.Controls.Add(this.txtContactNo);
     this.GroupControl28.Controls.Add(this.label9);
     this.GroupControl28.Controls.Add(this.memoeditSummaryCV);
     this.GroupControl28.Controls.Add(this.Label32);
     this.GroupControl28.Dock = System.Windows.Forms.DockStyle.Fill;
     this.GroupControl28.Location = new System.Drawing.Point(2, 19);
     this.GroupControl28.Name = "GroupControl28";
     this.GroupControl28.ShowCaption = false;
     this.GroupControl28.Size = new System.Drawing.Size(988, 211);
     this.GroupControl28.TabIndex = 0;
     this.GroupControl28.Text = "GroupControl1";
     //
     // txtHomeNo
     //
     this.txtHomeNo.EditValue = "";
     this.txtHomeNo.Location = new System.Drawing.Point(360, 16);
     this.txtHomeNo.Name = "txtHomeNo";
     this.txtHomeNo.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold);
     this.txtHomeNo.Properties.Appearance.Options.UseFont = true;
     this.txtHomeNo.Properties.ReadOnly = true;
     this.txtHomeNo.Size = new System.Drawing.Size(152, 22);
     this.txtHomeNo.TabIndex = 18;
     //
     // label31
     //
     this.label31.AutoSize = true;
     this.label31.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label31.Location = new System.Drawing.Point(288, 16);
     this.label31.Name = "label31";
     this.label31.Size = new System.Drawing.Size(73, 16);
     this.label31.TabIndex = 19;
     this.label31.Text = "Home No";
     //
     // txtEmail
     //
     this.txtEmail.EditValue = "";
     this.txtEmail.Location = new System.Drawing.Point(640, 16);
     this.txtEmail.Name = "txtEmail";
     this.txtEmail.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold);
     this.txtEmail.Properties.Appearance.Options.UseFont = true;
     this.txtEmail.Properties.ReadOnly = true;
     this.txtEmail.Size = new System.Drawing.Size(280, 22);
     this.txtEmail.TabIndex = 1;
     //
     // label10
     //
     this.label10.AutoSize = true;
     this.label10.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label10.Location = new System.Drawing.Point(528, 16);
     this.label10.Name = "label10";
     this.label10.Size = new System.Drawing.Size(109, 16);
     this.label10.TabIndex = 17;
     this.label10.Text = "Email Address";
     //
     // txtContactNo
     //
     this.txtContactNo.EditValue = "";
     this.txtContactNo.Location = new System.Drawing.Point(120, 16);
     this.txtContactNo.Name = "txtContactNo";
     this.txtContactNo.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold);
     this.txtContactNo.Properties.Appearance.Options.UseFont = true;
     this.txtContactNo.Properties.ReadOnly = true;
     this.txtContactNo.Size = new System.Drawing.Size(152, 22);
     this.txtContactNo.TabIndex = 0;
     //
     // label9
     //
     this.label9.AutoSize = true;
     this.label9.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label9.Location = new System.Drawing.Point(8, 16);
     this.label9.Name = "label9";
     this.label9.Size = new System.Drawing.Size(79, 16);
     this.label9.TabIndex = 15;
     this.label9.Text = "Mobile No";
     //
     // memoeditSummaryCV
     //
     this.memoeditSummaryCV.EditValue = "";
     this.memoeditSummaryCV.Location = new System.Drawing.Point(120, 48);
     this.memoeditSummaryCV.Name = "memoeditSummaryCV";
     this.memoeditSummaryCV.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold);
     this.memoeditSummaryCV.Properties.Appearance.Options.UseFont = true;
     this.memoeditSummaryCV.Properties.ReadOnly = true;
     this.memoeditSummaryCV.Size = new System.Drawing.Size(800, 152);
     this.memoeditSummaryCV.TabIndex = 2;
     //
     // Label32
     //
     this.Label32.AutoSize = true;
     this.Label32.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Label32.Location = new System.Drawing.Point(8, 56);
     this.Label32.Name = "Label32";
     this.Label32.Size = new System.Drawing.Size(113, 16);
     this.Label32.TabIndex = 13;
     this.Label32.Text = "Summary of CV";
     //
     // tabStaffSeven
     //
     this.tabStaffSeven.Appearance.Header.Font = new System.Drawing.Font("Tahoma", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.tabStaffSeven.Appearance.Header.Options.UseFont = true;
     this.tabStaffSeven.Controls.Add(this.groupMobileApp);
     this.tabStaffSeven.Name = "tabStaffSeven";
     this.tabStaffSeven.PageVisible = false;
     this.tabStaffSeven.Size = new System.Drawing.Size(1007, 612);
     this.tabStaffSeven.Text = "Mobile App";
     this.tabStaffSeven.VisibleChanged += new System.EventHandler(this.tabStaffMobileApp_VisibleChanged);
     //
     // groupMobileApp
     //
     this.groupMobileApp.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.groupMobileApp.Location = new System.Drawing.Point(0, 8);
     this.groupMobileApp.LookAndFeel.UseDefaultLookAndFeel = false;
     this.groupMobileApp.Name = "groupMobileApp";
     this.groupMobileApp.Size = new System.Drawing.Size(1007, 584);
     this.groupMobileApp.TabIndex = 11;
     //
     // lblThree_3
     //
     this.lblThree_3.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.lblThree_3.Appearance.ForeColor = System.Drawing.Color.MediumBlue;
     this.lblThree_3.Appearance.Options.UseFont = true;
     this.lblThree_3.Appearance.Options.UseForeColor = true;
     this.lblThree_3.Location = new System.Drawing.Point(296, 8);
     this.lblThree_3.Name = "lblThree_3";
     this.lblThree_3.Size = new System.Drawing.Size(138, 23);
     this.lblThree_3.TabIndex = 146;
     this.lblThree_3.Text = "Lateness";
     this.lblThree_3.Click += new System.EventHandler(this.lblThree_3_Click);
     //
     // lblThree_1
     //
     this.lblThree_1.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.lblThree_1.Appearance.ForeColor = System.Drawing.Color.MediumBlue;
     this.lblThree_1.Appearance.Options.UseFont = true;
     this.lblThree_1.Appearance.Options.UseForeColor = true;
     this.lblThree_1.Location = new System.Drawing.Point(8, 8);
     this.lblThree_1.Name = "lblThree_1";
     this.lblThree_1.Size = new System.Drawing.Size(138, 23);
     this.lblThree_1.TabIndex = 144;
     this.lblThree_1.Text = "Timesheet";
     this.lblThree_1.Click += new System.EventHandler(this.lblThree_1_Click);
     //
     // lblThree_2
     //
     this.lblThree_2.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.lblThree_2.Appearance.ForeColor = System.Drawing.Color.MediumBlue;
     this.lblThree_2.Appearance.Options.UseFont = true;
     this.lblThree_2.Appearance.Options.UseForeColor = true;
     this.lblThree_2.Location = new System.Drawing.Point(152, 8);
     this.lblThree_2.Name = "lblThree_2";
     this.lblThree_2.Size = new System.Drawing.Size(138, 23);
     this.lblThree_2.TabIndex = 145;
     this.lblThree_2.Text = "Overtime";
     this.lblThree_2.Click += new System.EventHandler(this.lblThree_2_Click);
     //
     // colDNCExpiryDate
     //
     this.colDNCExpiryDate.Caption = "Exp.Date";
     this.colDNCExpiryDate.FieldName = "dtDNCExpiryDate";
     this.colDNCExpiryDate.Name = "colDNCExpiryDate";
     this.colDNCExpiryDate.Visible = true;
     this.colDNCExpiryDate.VisibleIndex = 5;
     this.colDNCExpiryDate.Width = 66;
     //
     // colEmail
     //
     this.colEmail.Caption = "Email";
     this.colEmail.FieldName = "fEmail";
     this.colEmail.Name = "colEmail";
     this.colEmail.Visible = true;
     this.colEmail.VisibleIndex = 3;
     this.colEmail.Width = 37;
     //
     // colDNCLog
     //
     this.colDNCLog.Caption = "Log";
     this.colDNCLog.FieldName = "DNCReplyStatus";
     this.colDNCLog.Name = "colDNCLog";
     this.colDNCLog.Visible = true;
     this.colDNCLog.VisibleIndex = 6;
     this.colDNCLog.Width = 35;
     //
     // ColGender
     //
     this.ColGender.Caption = "Sex";
     this.ColGender.FieldName = "Gender";
     this.ColGender.Name = "ColGender";
     this.ColGender.Visible = true;
     this.ColGender.VisibleIndex = 10;
     this.ColGender.Width = 32;
     //
     // colMediaSource
     //
     this.colMediaSource.Caption = "Media Source";
     this.colMediaSource.FieldName = "strMediaSource";
     this.colMediaSource.Name = "colMediaSource";
     this.colMediaSource.Visible = true;
     this.colMediaSource.VisibleIndex = 11;
     this.colMediaSource.Width = 125;
     //
     // colstrBranchCode
     //
     this.colstrBranchCode.Caption = "BranchCode";
     this.colstrBranchCode.FieldName = "strBranchCode";
     this.colstrBranchCode.Name = "colstrBranchCode";
     this.colstrBranchCode.Visible = true;
     this.colstrBranchCode.VisibleIndex = 5;
     //
     // colBranchCode
     //
     this.colBranchCode.Caption = "Br.";
     this.colBranchCode.FieldName = "strBranchCode";
     this.colBranchCode.Name = "colBranchCode";
     this.colBranchCode.Visible = true;
     this.colBranchCode.VisibleIndex = 11;
     this.colBranchCode.Width = 32;
     //
     // timer1
     //
     this.timer1.Tick += new System.EventHandler(this.timer1_Tick);
     //
     // frmStaff
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize = new System.Drawing.Size(1016, 693);
     this.Controls.Add(this.tabStaff);
     this.Controls.Add(this.barDockControlLeft);
     this.Controls.Add(this.barDockControlRight);
     this.Controls.Add(this.barDockControlBottom);
     this.Controls.Add(this.barDockControlTop);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Menu = this.MainMenu1;
     this.Name = "frmStaff";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "ACMS Staff";
     this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
     this.Load += new System.EventHandler(this.frmStaff_Load);
     this.Closing += new System.ComponentModel.CancelEventHandler(this.frmStaff_Closing);
     ((System.ComponentModel.ISupportInitialize)(this.BarManager1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.BarAndDockingController1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tabStaff)).EndInit();
     this.tabStaff.ResumeLayout(false);
     this.tabStaffFour.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupContact)).EndInit();
     this.groupContact.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupContactEntry)).EndInit();
     this.groupContactEntry.ResumeLayout(false);
     this.groupContactEntry.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cmbStatus.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridctrContact)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvContact)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupAppointment)).EndInit();
     this.groupAppointment.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupAppointmentEntry)).EndInit();
     this.groupAppointmentEntry.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl12)).EndInit();
     this.groupControl12.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.cbAppointmentYear.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbAppointmentMonth.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridctrAppointment)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvAppointment)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEditUtilizationSelection)).EndInit();
     this.tabStaffOne.ResumeLayout(false);
     this.tabStaffOne.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.luedtMemoEmployeeID.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupMessages)).EndInit();
     this.groupMessages.ResumeLayout(false);
     this.groupMessages.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupMessagesEntry)).EndInit();
     this.groupMessagesEntry.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.cbViewMemo.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gctrMemo)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvMemo)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupMessagesMemoInfo)).EndInit();
     this.groupMessagesMemoInfo.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.GroupControl8)).EndInit();
     this.GroupControl8.ResumeLayout(false);
     this.GroupControl8.PerformLayout();
     this.panel1.ResumeLayout(false);
     this.panel1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pbF3Select)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtFilePath3.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pbF2Select)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtFilePath2.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pbF1Select)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtFilePath1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pbPreview)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pbFileSelect)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtImagePath.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.memoedtMessage.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupMessagesReceipient)).EndInit();
     this.groupMessagesReceipient.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.GroupControl6)).EndInit();
     this.GroupControl6.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.cbMemoReceipient.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gctrReceipient)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvReceipient)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupMessagesFollowUpAction)).EndInit();
     this.groupMessagesFollowUpAction.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.GroupControl4)).EndInit();
     this.GroupControl4.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gctrReplies)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvReplies)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupReceipientGroup)).EndInit();
     this.groupReceipientGroup.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupReceipientGroupEntry)).EndInit();
     this.groupReceipientGroupEntry.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gctrRecpGrp)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvRecpGrp)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupReceipientGroupReceipientEntries)).EndInit();
     this.groupReceipientGroupReceipientEntries.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.GroupControl10)).EndInit();
     this.GroupControl10.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gctrRecpEntry)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvRecpEntry)).EndInit();
     this.tabStaffTwo.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupSales)).EndInit();
     this.groupSales.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupSalesEntry)).EndInit();
     this.groupSalesEntry.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl7)).EndInit();
     this.groupControl7.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.luedtSalesBranchCode.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbSalesYear.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbSalesMonth.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbSalesType.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gctrSales)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvSales)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupService)).EndInit();
     this.groupService.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupServiceEntry)).EndInit();
     this.groupServiceEntry.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl3)).EndInit();
     this.groupControl3.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.luedtCommissionServiceBranch.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbServiceYear.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbServiceMonth.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbServiceServiceType.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gctrService)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvService)).EndInit();
     this.tabStaffFive.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupCustomerVoice)).EndInit();
     this.groupCustomerVoice.ResumeLayout(false);
     this.groupCustomerVoice.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.GroupControl24)).EndInit();
     this.GroupControl24.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.luedtCVSubmitter.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbListCV.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gctrCV)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvCV)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.luedtCVAssignTo.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupCustomerVoiceActionHistory)).EndInit();
     this.groupCustomerVoiceActionHistory.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.GroupControl26)).EndInit();
     this.GroupControl26.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gctrCVAction)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvCVAction)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupCustomerVoiceCVDetails)).EndInit();
     this.groupCustomerVoiceCVDetails.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.GroupControl28)).EndInit();
     this.GroupControl28.ResumeLayout(false);
     this.GroupControl28.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtHomeNo.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtEmail.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtContactNo.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.memoeditSummaryCV.Properties)).EndInit();
     this.tabStaffSeven.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupMobileApp)).EndInit();
     this.ResumeLayout(false);
 }
示例#42
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.label6         = new System.Windows.Forms.Label();
     this.btnClose       = new DevExpress.XtraEditors.SimpleButton();
     this.label1         = new System.Windows.Forms.Label();
     this.btnSave        = new DevExpress.XtraEditors.SimpleButton();
     this.label4         = new System.Windows.Forms.Label();
     this.CreditCard     = new System.Windows.Forms.Label();
     this.dRewardsPoints = new DevExpress.XtraEditors.TextEdit();
     this.label2         = new System.Windows.Forms.Label();
     this.dtValidStart   = new DevExpress.XtraEditors.DateEdit();
     this.dtValidEnd     = new DevExpress.XtraEditors.DateEdit();
     this.cmb_Type       = new DevExpress.XtraEditors.ComboBoxEdit();
     this.luedtItem      = new DevExpress.XtraEditors.LookUpEdit();
     this.rewardDesc     = new DevExpress.XtraEditors.TextEdit();
     this.label3         = new System.Windows.Forms.Label();
     ((System.ComponentModel.ISupportInitialize)(this.dRewardsPoints.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtValidStart.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtValidEnd.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmb_Type.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.luedtItem.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.rewardDesc.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // label6
     //
     this.label6.Font     = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label6.Location = new System.Drawing.Point(24, 96);
     this.label6.Name     = "label6";
     this.label6.Size     = new System.Drawing.Size(112, 23);
     this.label6.TabIndex = 189;
     this.label6.Text     = "Points";
     //
     // btnClose
     //
     this.btnClose.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnClose.Location    = new System.Drawing.Point(216, 184);
     this.btnClose.Name        = "btnClose";
     this.btnClose.Size        = new System.Drawing.Size(72, 20);
     this.btnClose.TabIndex    = 188;
     this.btnClose.Text        = "Close";
     this.btnClose.Click      += new System.EventHandler(this.btnClose_Click);
     //
     // label1
     //
     this.label1.Font     = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label1.Location = new System.Drawing.Point(24, 48);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(120, 23);
     this.label1.TabIndex = 187;
     this.label1.Text     = "Item Code";
     //
     // btnSave
     //
     this.btnSave.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnSave.Location    = new System.Drawing.Point(96, 184);
     this.btnSave.Name        = "btnSave";
     this.btnSave.Size        = new System.Drawing.Size(72, 20);
     this.btnSave.TabIndex    = 186;
     this.btnSave.Text        = "Save";
     this.btnSave.Click      += new System.EventHandler(this.btnSave_Click);
     //
     // label4
     //
     this.label4.Font     = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label4.Location = new System.Drawing.Point(24, 120);
     this.label4.Name     = "label4";
     this.label4.TabIndex = 185;
     this.label4.Text     = "Start Date";
     //
     // CreditCard
     //
     this.CreditCard.Font     = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.CreditCard.Location = new System.Drawing.Point(24, 144);
     this.CreditCard.Name     = "CreditCard";
     this.CreditCard.Size     = new System.Drawing.Size(112, 23);
     this.CreditCard.TabIndex = 184;
     this.CreditCard.Text     = "Till";
     //
     // dRewardsPoints
     //
     this.dRewardsPoints.EditValue = "0";
     this.dRewardsPoints.Location  = new System.Drawing.Point(168, 96);
     this.dRewardsPoints.Name      = "dRewardsPoints";
     this.dRewardsPoints.Size      = new System.Drawing.Size(240, 20);
     this.dRewardsPoints.TabIndex  = 193;
     //
     // label2
     //
     this.label2.Font     = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label2.Location = new System.Drawing.Point(24, 24);
     this.label2.Name     = "label2";
     this.label2.Size     = new System.Drawing.Size(120, 23);
     this.label2.TabIndex = 194;
     this.label2.Text     = "Item Type";
     //
     // dtValidStart
     //
     this.dtValidStart.EditValue = null;
     this.dtValidStart.Location  = new System.Drawing.Point(168, 120);
     this.dtValidStart.Name      = "dtValidStart";
     //
     // dtValidStart.Properties
     //
     this.dtValidStart.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.dtValidStart.Size     = new System.Drawing.Size(240, 20);
     this.dtValidStart.TabIndex = 196;
     //
     // dtValidEnd
     //
     this.dtValidEnd.EditValue = null;
     this.dtValidEnd.Location  = new System.Drawing.Point(168, 144);
     this.dtValidEnd.Name      = "dtValidEnd";
     //
     // dtValidEnd.Properties
     //
     this.dtValidEnd.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.dtValidEnd.Size     = new System.Drawing.Size(240, 20);
     this.dtValidEnd.TabIndex = 197;
     //
     // cmb_Type
     //
     this.cmb_Type.EditValue = "";
     this.cmb_Type.Location  = new System.Drawing.Point(168, 24);
     this.cmb_Type.Name      = "cmb_Type";
     //
     // cmb_Type.Properties
     //
     this.cmb_Type.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.cmb_Type.Size                  = new System.Drawing.Size(240, 20);
     this.cmb_Type.TabIndex              = 198;
     this.cmb_Type.SelectedIndexChanged += new System.EventHandler(this.load_cmbType);
     //
     // luedtItem
     //
     this.luedtItem.Location = new System.Drawing.Point(168, 48);
     this.luedtItem.Name     = "luedtItem";
     //
     // luedtItem.Properties
     //
     this.luedtItem.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.luedtItem.Properties.NullText = "";
     this.luedtItem.Size     = new System.Drawing.Size(240, 20);
     this.luedtItem.TabIndex = 199;
     //
     // rewardDesc
     //
     this.rewardDesc.EditValue = "";
     this.rewardDesc.Location  = new System.Drawing.Point(168, 72);
     this.rewardDesc.Name      = "rewardDesc";
     this.rewardDesc.Size      = new System.Drawing.Size(240, 20);
     this.rewardDesc.TabIndex  = 200;
     //
     // label3
     //
     this.label3.Font     = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label3.Location = new System.Drawing.Point(24, 72);
     this.label3.Name     = "label3";
     this.label3.Size     = new System.Drawing.Size(120, 23);
     this.label3.TabIndex = 201;
     this.label3.Text     = "Description";
     //
     // frmReward_Add
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 14);
     this.ClientSize        = new System.Drawing.Size(432, 222);
     this.Controls.Add(this.label3);
     this.Controls.Add(this.rewardDesc);
     this.Controls.Add(this.luedtItem);
     this.Controls.Add(this.cmb_Type);
     this.Controls.Add(this.dtValidEnd);
     this.Controls.Add(this.dtValidStart);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.dRewardsPoints);
     this.Controls.Add(this.label6);
     this.Controls.Add(this.btnClose);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.btnSave);
     this.Controls.Add(this.label4);
     this.Controls.Add(this.CreditCard);
     this.Name  = "frmReward_Add";
     this.Text  = "Reward Catalogue New";
     this.Load += new System.EventHandler(this.frmReward_Add_Load);
     ((System.ComponentModel.ISupportInitialize)(this.dRewardsPoints.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtValidStart.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtValidEnd.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmb_Type.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.luedtItem.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.rewardDesc.Properties)).EndInit();
     this.ResumeLayout(false);
 }
示例#43
0
        //查看详细
        private void gvCLJBXX_MouseDoubleClick(object sender, MouseEventArgs e)
        {
            ColumnView  cv = (ColumnView)gcCLJBXX.FocusedView;
            DataRowView dr = (DataRowView)cv.GetFocusedRow();

            if (dr == null)
            {
                return;
            }
            string vin = (string)dr.Row.ItemArray[0];
            // 获取此VIN的详细信息,带入窗口
            string sql = String.Format(@"select * from FC_CLJBXX where vin = '{0}'", vin);
            // 获取燃料信息
            string    rlsql  = String.Format(@"select e.* from RLLX_PARAM_ENTITY e where e.vin = '{0}'", vin);
            DataTable dtJbxx = OracleHelper.ExecuteDataSet(OracleHelper.conn, sql, null).Tables[0];
            DataTable dtRlxx = OracleHelper.ExecuteDataSet(OracleHelper.conn, rlsql, null).Tables[0];
            // 弹出详细信息窗口,可修改
            JbxxViewForm jvf = new JbxxViewForm()
            {
                status = "2"
            };

            if (dtJbxx.Rows.Count > 0)
            {
                for (int i = 0; i < dtJbxx.Columns.Count; i++)
                {
                    DataColumn dc = dtJbxx.Columns[i];
                    Control[]  c  = jvf.Controls.Find("tb" + dc.ColumnName, true);
                    if (c.Length > 0)
                    {
                        if (c[0] is TextEdit)
                        {
                            c[0].Text = dtJbxx.Rows[0].ItemArray[i].ToString();
                            continue;
                        }
                        if (c[0] is DevExpress.XtraEditors.ComboBoxEdit)
                        {
                            DevExpress.XtraEditors.ComboBoxEdit cb = c[0] as DevExpress.XtraEditors.ComboBoxEdit;
                            cb.Text = dtJbxx.Rows[0].ItemArray[i].ToString();
                            if (cb.Text == "汽油" || cb.Text == "柴油" || cb.Text == "两用燃料" ||
                                cb.Text == "双燃料" || cb.Text == "纯电动" || cb.Text == "非插电式混合动力" || cb.Text == "插电式混合动力" || cb.Text == "燃料电池")
                            {
                                string rlval;
                                if (cb.Text == "汽油" || cb.Text == "柴油" || cb.Text == "两用燃料" || cb.Text == "双燃料")
                                {
                                    rlval = "传统能源";
                                }
                                else
                                {
                                    rlval = cb.Text;
                                }
                                // 构建燃料参数控件
                                jvf.getParamList(rlval, true);
                            }
                        }
                    }
                }
            }
            for (int i = 0; i < dtRlxx.Rows.Count; i++)
            {
                DataRow   drrlxx = dtRlxx.Rows[i];
                string    cName  = drrlxx.ItemArray[1].ToString();
                Control[] c      = jvf.Controls.Find(cName, true);
                if (c.Length > 0)
                {
                    if (c[0] is TextEdit)
                    {
                        c[0].Text = drrlxx.ItemArray[3].ToString();
                        continue;
                    }
                    if (c[0] is DevExpress.XtraEditors.ComboBoxEdit)
                    {
                        DevExpress.XtraEditors.ComboBoxEdit cb = c[0] as DevExpress.XtraEditors.ComboBoxEdit;
                        cb.Text = drrlxx.ItemArray[3].ToString();
                    }
                }
            }
            (jvf.Controls.Find("tc", true)[0] as XtraTabControl).SelectedTabPageIndex = 0;
            jvf.MaximizeBox = false;
            jvf.MinimizeBox = false;
            Utils.SetFormMid(jvf);
            jvf.setVisible("btnbaocun", true);
            jvf.setVisible("btnbaocunshangbao", false);
            jvf.setVisible("btnCancel", true);
            jvf.setVisible("btnPrint", false);
            jvf.ShowDialog();
            if (jvf.DialogResult == DialogResult.Cancel)
            {
                this.refrashCurrentPage();
            }
        }
示例#44
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.groupControl1              = new DevExpress.XtraEditors.GroupControl();
     this.textEdit_Send_StuName      = new DevExpress.XtraEditors.TextEdit();
     this.comboBoxEdit_Send_StuClass = new DevExpress.XtraEditors.ComboBoxEdit();
     this.comboBoxEdit_Send_StuGrade = new DevExpress.XtraEditors.ComboBoxEdit();
     this.textEdit_Send_StuNumber    = new DevExpress.XtraEditors.TextEdit();
     this.notePanel_Send_StuNumber   = new DevExpress.Utils.Frames.NotePanel();
     this.notePanel_Send_StuClass    = new DevExpress.Utils.Frames.NotePanel();
     this.notePanel_Send_StuGrade    = new DevExpress.Utils.Frames.NotePanel();
     this.notePanel_Send_StuName     = new DevExpress.Utils.Frames.NotePanel();
     this.groupControl2              = new DevExpress.XtraEditors.GroupControl();
     this.simpleButton_EditPhoneNum  = new DevExpress.XtraEditors.SimpleButton();
     this.gridControl2  = new DevExpress.XtraGrid.GridControl();
     this.gridView2     = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn1   = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn2   = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn3   = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn4   = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn5   = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn6   = new DevExpress.XtraGrid.Columns.GridColumn();
     this.simpleButton1 = new DevExpress.XtraEditors.SimpleButton();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
     this.groupControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit_Send_StuName.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_Send_StuClass.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_Send_StuGrade.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit_Send_StuNumber.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).BeginInit();
     this.groupControl2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControl2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView2)).BeginInit();
     this.SuspendLayout();
     //
     // groupControl1
     //
     this.groupControl1.Appearance.BackColor                   = System.Drawing.Color.WhiteSmoke;
     this.groupControl1.Appearance.Options.UseBackColor        = true;
     this.groupControl1.AppearanceCaption.Font                 = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
     this.groupControl1.AppearanceCaption.ForeColor            = System.Drawing.Color.DarkOrange;
     this.groupControl1.AppearanceCaption.Options.UseFont      = true;
     this.groupControl1.AppearanceCaption.Options.UseForeColor = true;
     this.groupControl1.Controls.Add(this.textEdit_Send_StuName);
     this.groupControl1.Controls.Add(this.comboBoxEdit_Send_StuClass);
     this.groupControl1.Controls.Add(this.comboBoxEdit_Send_StuGrade);
     this.groupControl1.Controls.Add(this.textEdit_Send_StuNumber);
     this.groupControl1.Controls.Add(this.notePanel_Send_StuNumber);
     this.groupControl1.Controls.Add(this.notePanel_Send_StuClass);
     this.groupControl1.Controls.Add(this.notePanel_Send_StuGrade);
     this.groupControl1.Controls.Add(this.notePanel_Send_StuName);
     this.groupControl1.Dock     = System.Windows.Forms.DockStyle.Top;
     this.groupControl1.Location = new System.Drawing.Point(0, 0);
     this.groupControl1.Name     = "groupControl1";
     this.groupControl1.Size     = new System.Drawing.Size(432, 100);
     this.groupControl1.TabIndex = 0;
     this.groupControl1.Text     = "请输入检索号码条件";
     //
     // textEdit_Send_StuName
     //
     this.textEdit_Send_StuName.Anchor            = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.textEdit_Send_StuName.EditValue         = "";
     this.textEdit_Send_StuName.Location          = new System.Drawing.Point(140, 23);
     this.textEdit_Send_StuName.Name              = "textEdit_Send_StuName";
     this.textEdit_Send_StuName.Size              = new System.Drawing.Size(64, 23);
     this.textEdit_Send_StuName.TabIndex          = 48;
     this.textEdit_Send_StuName.EditValueChanged += new System.EventHandler(this.textEdit_Send_StuName_EditValueChanged);
     //
     // comboBoxEdit_Send_StuClass
     //
     this.comboBoxEdit_Send_StuClass.Anchor    = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.comboBoxEdit_Send_StuClass.EditValue = "全部";
     this.comboBoxEdit_Send_StuClass.Location  = new System.Drawing.Point(300, 55);
     this.comboBoxEdit_Send_StuClass.Name      = "comboBoxEdit_Send_StuClass";
     //
     // comboBoxEdit_Send_StuClass.Properties
     //
     this.comboBoxEdit_Send_StuClass.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.comboBoxEdit_Send_StuClass.Properties.Items.AddRange(new object[] {
         "全部"
     });
     this.comboBoxEdit_Send_StuClass.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
     this.comboBoxEdit_Send_StuClass.Size                  = new System.Drawing.Size(64, 23);
     this.comboBoxEdit_Send_StuClass.TabIndex              = 47;
     this.comboBoxEdit_Send_StuClass.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit_Send_StuClass_SelectedIndexChanged);
     //
     // comboBoxEdit_Send_StuGrade
     //
     this.comboBoxEdit_Send_StuGrade.Anchor    = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.comboBoxEdit_Send_StuGrade.EditValue = "全部";
     this.comboBoxEdit_Send_StuGrade.Location  = new System.Drawing.Point(140, 55);
     this.comboBoxEdit_Send_StuGrade.Name      = "comboBoxEdit_Send_StuGrade";
     //
     // comboBoxEdit_Send_StuGrade.Properties
     //
     this.comboBoxEdit_Send_StuGrade.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.comboBoxEdit_Send_StuGrade.Properties.Items.AddRange(new object[] {
         "全部"
     });
     this.comboBoxEdit_Send_StuGrade.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
     this.comboBoxEdit_Send_StuGrade.Size                  = new System.Drawing.Size(64, 23);
     this.comboBoxEdit_Send_StuGrade.TabIndex              = 46;
     this.comboBoxEdit_Send_StuGrade.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit_Send_StuGrade_SelectedIndexChanged);
     //
     // textEdit_Send_StuNumber
     //
     this.textEdit_Send_StuNumber.Anchor    = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.textEdit_Send_StuNumber.EditValue = "";
     this.textEdit_Send_StuNumber.Location  = new System.Drawing.Point(300, 23);
     this.textEdit_Send_StuNumber.Name      = "textEdit_Send_StuNumber";
     //
     // textEdit_Send_StuNumber.Properties
     //
     this.textEdit_Send_StuNumber.Properties.Mask.EditMask = "d4";
     this.textEdit_Send_StuNumber.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.textEdit_Send_StuNumber.Size              = new System.Drawing.Size(64, 23);
     this.textEdit_Send_StuNumber.TabIndex          = 45;
     this.textEdit_Send_StuNumber.EditValueChanged += new System.EventHandler(this.textEdit_Send_StuNumber_EditValueChanged);
     //
     // notePanel_Send_StuNumber
     //
     this.notePanel_Send_StuNumber.Anchor           = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.notePanel_Send_StuNumber.BackColor        = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
     this.notePanel_Send_StuNumber.BackColor2       = System.Drawing.Color.DarkGray;
     this.notePanel_Send_StuNumber.Font             = new System.Drawing.Font("Tahoma", 8F);
     this.notePanel_Send_StuNumber.ForeColor        = System.Drawing.Color.Black;
     this.notePanel_Send_StuNumber.GradientMode     = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.notePanel_Send_StuNumber.Location         = new System.Drawing.Point(228, 23);
     this.notePanel_Send_StuNumber.MaxRows          = 5;
     this.notePanel_Send_StuNumber.Name             = "notePanel_Send_StuNumber";
     this.notePanel_Send_StuNumber.ParentAutoHeight = true;
     this.notePanel_Send_StuNumber.Size             = new System.Drawing.Size(64, 22);
     this.notePanel_Send_StuNumber.TabIndex         = 44;
     this.notePanel_Send_StuNumber.TabStop          = false;
     this.notePanel_Send_StuNumber.Text             = "学  号:";
     //
     // notePanel_Send_StuClass
     //
     this.notePanel_Send_StuClass.Anchor           = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.notePanel_Send_StuClass.BackColor        = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
     this.notePanel_Send_StuClass.BackColor2       = System.Drawing.Color.DarkGray;
     this.notePanel_Send_StuClass.Font             = new System.Drawing.Font("Tahoma", 8F);
     this.notePanel_Send_StuClass.ForeColor        = System.Drawing.Color.Black;
     this.notePanel_Send_StuClass.GradientMode     = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.notePanel_Send_StuClass.Location         = new System.Drawing.Point(228, 55);
     this.notePanel_Send_StuClass.MaxRows          = 5;
     this.notePanel_Send_StuClass.Name             = "notePanel_Send_StuClass";
     this.notePanel_Send_StuClass.ParentAutoHeight = true;
     this.notePanel_Send_StuClass.Size             = new System.Drawing.Size(64, 22);
     this.notePanel_Send_StuClass.TabIndex         = 43;
     this.notePanel_Send_StuClass.TabStop          = false;
     this.notePanel_Send_StuClass.Text             = "班  级:";
     //
     // notePanel_Send_StuGrade
     //
     this.notePanel_Send_StuGrade.Anchor           = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.notePanel_Send_StuGrade.BackColor        = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
     this.notePanel_Send_StuGrade.BackColor2       = System.Drawing.Color.DarkGray;
     this.notePanel_Send_StuGrade.Font             = new System.Drawing.Font("Tahoma", 8F);
     this.notePanel_Send_StuGrade.ForeColor        = System.Drawing.Color.Black;
     this.notePanel_Send_StuGrade.GradientMode     = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.notePanel_Send_StuGrade.Location         = new System.Drawing.Point(68, 55);
     this.notePanel_Send_StuGrade.MaxRows          = 5;
     this.notePanel_Send_StuGrade.Name             = "notePanel_Send_StuGrade";
     this.notePanel_Send_StuGrade.ParentAutoHeight = true;
     this.notePanel_Send_StuGrade.Size             = new System.Drawing.Size(64, 22);
     this.notePanel_Send_StuGrade.TabIndex         = 42;
     this.notePanel_Send_StuGrade.TabStop          = false;
     this.notePanel_Send_StuGrade.Text             = "年  级:";
     //
     // notePanel_Send_StuName
     //
     this.notePanel_Send_StuName.Anchor           = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.notePanel_Send_StuName.BackColor        = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
     this.notePanel_Send_StuName.BackColor2       = System.Drawing.Color.DarkGray;
     this.notePanel_Send_StuName.Font             = new System.Drawing.Font("Tahoma", 8F);
     this.notePanel_Send_StuName.ForeColor        = System.Drawing.Color.Black;
     this.notePanel_Send_StuName.GradientMode     = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.notePanel_Send_StuName.Location         = new System.Drawing.Point(68, 23);
     this.notePanel_Send_StuName.MaxRows          = 5;
     this.notePanel_Send_StuName.Name             = "notePanel_Send_StuName";
     this.notePanel_Send_StuName.ParentAutoHeight = true;
     this.notePanel_Send_StuName.Size             = new System.Drawing.Size(64, 22);
     this.notePanel_Send_StuName.TabIndex         = 41;
     this.notePanel_Send_StuName.TabStop          = false;
     this.notePanel_Send_StuName.Text             = "姓  名:";
     //
     // groupControl2
     //
     this.groupControl2.Appearance.BackColor                   = System.Drawing.Color.WhiteSmoke;
     this.groupControl2.Appearance.Options.UseBackColor        = true;
     this.groupControl2.AppearanceCaption.Font                 = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
     this.groupControl2.AppearanceCaption.ForeColor            = System.Drawing.Color.DarkOrange;
     this.groupControl2.AppearanceCaption.Options.UseFont      = true;
     this.groupControl2.AppearanceCaption.Options.UseForeColor = true;
     this.groupControl2.Controls.Add(this.simpleButton_EditPhoneNum);
     this.groupControl2.Controls.Add(this.gridControl2);
     this.groupControl2.Controls.Add(this.simpleButton1);
     this.groupControl2.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.groupControl2.Location = new System.Drawing.Point(0, 100);
     this.groupControl2.Name     = "groupControl2";
     this.groupControl2.Size     = new System.Drawing.Size(432, 193);
     this.groupControl2.TabIndex = 1;
     this.groupControl2.Text     = "选择要发送的号码";
     //
     // simpleButton_EditPhoneNum
     //
     this.simpleButton_EditPhoneNum.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.simpleButton_EditPhoneNum.Location = new System.Drawing.Point(128, 24);
     this.simpleButton_EditPhoneNum.Name     = "simpleButton_EditPhoneNum";
     this.simpleButton_EditPhoneNum.Size     = new System.Drawing.Size(72, 24);
     this.simpleButton_EditPhoneNum.TabIndex = 24;
     this.simpleButton_EditPhoneNum.Text     = "全选";
     this.simpleButton_EditPhoneNum.Click   += new System.EventHandler(this.simpleButton_EditPhoneNum_Click);
     //
     // gridControl2
     //
     this.gridControl2.Dock = System.Windows.Forms.DockStyle.Bottom;
     //
     // gridControl2.EmbeddedNavigator
     //
     this.gridControl2.EmbeddedNavigator.Name = "";
     this.gridControl2.Location = new System.Drawing.Point(3, 54);
     this.gridControl2.MainView = this.gridView2;
     this.gridControl2.Name     = "gridControl2";
     this.gridControl2.Size     = new System.Drawing.Size(426, 136);
     this.gridControl2.TabIndex = 23;
     this.gridControl2.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
         this.gridView2
     });
     //
     // gridView2
     //
     this.gridView2.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
         this.gridColumn1,
         this.gridColumn2,
         this.gridColumn3,
         this.gridColumn4,
         this.gridColumn5,
         this.gridColumn6
     });
     this.gridView2.GridControl = this.gridControl2;
     this.gridView2.Name        = "gridView2";
     this.gridView2.OptionsBehavior.Editable         = false;
     this.gridView2.OptionsCustomization.AllowFilter = false;
     this.gridView2.OptionsCustomization.AllowGroup  = false;
     this.gridView2.OptionsView.ShowFilterPanel      = false;
     this.gridView2.OptionsView.ShowFooter           = true;
     this.gridView2.OptionsView.ShowGroupPanel       = false;
     //
     // gridColumn1
     //
     this.gridColumn1.Caption      = "学号";
     this.gridColumn1.FieldName    = "info_stuNumber";
     this.gridColumn1.Name         = "gridColumn1";
     this.gridColumn1.Visible      = true;
     this.gridColumn1.VisibleIndex = 0;
     this.gridColumn1.Width        = 43;
     //
     // gridColumn2
     //
     this.gridColumn2.Caption      = "姓名";
     this.gridColumn2.FieldName    = "info_stuName";
     this.gridColumn2.Name         = "gridColumn2";
     this.gridColumn2.Visible      = true;
     this.gridColumn2.VisibleIndex = 1;
     this.gridColumn2.Width        = 44;
     //
     // gridColumn3
     //
     this.gridColumn3.Caption      = "年级";
     this.gridColumn3.FieldName    = "stu_grade";
     this.gridColumn3.Name         = "gridColumn3";
     this.gridColumn3.Visible      = true;
     this.gridColumn3.VisibleIndex = 2;
     this.gridColumn3.Width        = 42;
     //
     // gridColumn4
     //
     this.gridColumn4.Caption      = "班级";
     this.gridColumn4.FieldName    = "stu_class";
     this.gridColumn4.Name         = "gridColumn4";
     this.gridColumn4.Visible      = true;
     this.gridColumn4.VisibleIndex = 3;
     this.gridColumn4.Width        = 41;
     //
     // gridColumn5
     //
     this.gridColumn5.Caption      = "持有手机家长姓名";
     this.gridColumn5.FieldName    = "familial_name";
     this.gridColumn5.Name         = "gridColumn5";
     this.gridColumn5.Visible      = true;
     this.gridColumn5.VisibleIndex = 4;
     this.gridColumn5.Width        = 111;
     //
     // gridColumn6
     //
     this.gridColumn6.Caption      = "手机号码";
     this.gridColumn6.FieldName    = "mobilePhone_number";
     this.gridColumn6.Name         = "gridColumn6";
     this.gridColumn6.Visible      = true;
     this.gridColumn6.VisibleIndex = 5;
     this.gridColumn6.Width        = 128;
     //
     // simpleButton1
     //
     this.simpleButton1.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.simpleButton1.Location = new System.Drawing.Point(232, 24);
     this.simpleButton1.Name     = "simpleButton1";
     this.simpleButton1.Size     = new System.Drawing.Size(72, 24);
     this.simpleButton1.TabIndex = 24;
     this.simpleButton1.Text     = "单选";
     this.simpleButton1.Click   += new System.EventHandler(this.simpleButton1_Click);
     //
     // SMSPhoneNumChoose
     //
     this.Appearance.BackColor            = System.Drawing.Color.WhiteSmoke;
     this.Appearance.Options.UseBackColor = true;
     this.AutoScaleBaseSize = new System.Drawing.Size(6, 15);
     this.ClientSize        = new System.Drawing.Size(432, 293);
     this.Controls.Add(this.groupControl2);
     this.Controls.Add(this.groupControl1);
     this.Name          = "SMSPhoneNumChoose";
     this.ShowInTaskbar = false;
     this.Text          = "选择要发送短信的手机号码";
     this.Load         += new System.EventHandler(this.SMSPhoneNumChoose_Load);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
     this.groupControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.textEdit_Send_StuName.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_Send_StuClass.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_Send_StuGrade.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit_Send_StuNumber.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).EndInit();
     this.groupControl2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControl2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView2)).EndInit();
     this.ResumeLayout(false);
 }
示例#45
0
 private void InitializeComponent()
 {
     this.layoutControl1      = new DevExpress.XtraLayout.LayoutControl();
     this.btn_Cancel          = new DevExpress.XtraEditors.SimpleButton();
     this.btn_OK              = new DevExpress.XtraEditors.SimpleButton();
     this.te_Y                = new DevExpress.XtraEditors.TextEdit();
     this.te_X                = new DevExpress.XtraEditors.TextEdit();
     this.te_maptitle         = new DevExpress.XtraEditors.TextEdit();
     this.cb_scale            = new DevExpress.XtraEditors.ComboBoxEdit();
     this.cb_district         = new DevExpress.XtraEditors.ComboBoxEdit();
     this.layoutControlGroup1 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlGroup2 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlItem1  = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem2  = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem3  = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem4  = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem5  = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem6  = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem7  = new DevExpress.XtraLayout.LayoutControlItem();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl1)).BeginInit();
     this.layoutControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.te_Y.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.te_X.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.te_maptitle.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cb_scale.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cb_district.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem6)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem7)).BeginInit();
     this.SuspendLayout();
     //
     // layoutControl1
     //
     this.layoutControl1.Controls.Add(this.btn_Cancel);
     this.layoutControl1.Controls.Add(this.btn_OK);
     this.layoutControl1.Controls.Add(this.te_Y);
     this.layoutControl1.Controls.Add(this.te_X);
     this.layoutControl1.Controls.Add(this.te_maptitle);
     this.layoutControl1.Controls.Add(this.cb_scale);
     this.layoutControl1.Controls.Add(this.cb_district);
     this.layoutControl1.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.layoutControl1.Location = new System.Drawing.Point(0, 0);
     this.layoutControl1.Name     = "layoutControl1";
     this.layoutControl1.Root     = this.layoutControlGroup1;
     this.layoutControl1.Size     = new System.Drawing.Size(284, 164);
     this.layoutControl1.TabIndex = 0;
     this.layoutControl1.Text     = "layoutControl1";
     //
     // btn_Cancel
     //
     this.btn_Cancel.Location        = new System.Drawing.Point(143, 135);
     this.btn_Cancel.Name            = "btn_Cancel";
     this.btn_Cancel.Size            = new System.Drawing.Size(136, 24);
     this.btn_Cancel.StyleController = this.layoutControl1;
     this.btn_Cancel.TabIndex        = 10;
     this.btn_Cancel.Text            = "取消";
     //
     // btn_OK
     //
     this.btn_OK.Location        = new System.Drawing.Point(5, 135);
     this.btn_OK.Name            = "btn_OK";
     this.btn_OK.Size            = new System.Drawing.Size(134, 22);
     this.btn_OK.StyleController = this.layoutControl1;
     this.btn_OK.TabIndex        = 9;
     this.btn_OK.Text            = "确定";
     this.btn_OK.Click          += new System.EventHandler(this.btn_OK_Click);
     //
     // te_Y
     //
     this.te_Y.Location        = new System.Drawing.Point(68, 109);
     this.te_Y.Name            = "te_Y";
     this.te_Y.Size            = new System.Drawing.Size(211, 22);
     this.te_Y.StyleController = this.layoutControl1;
     this.te_Y.TabIndex        = 8;
     //
     // te_X
     //
     this.te_X.Location        = new System.Drawing.Point(68, 83);
     this.te_X.Name            = "te_X";
     this.te_X.Size            = new System.Drawing.Size(211, 22);
     this.te_X.StyleController = this.layoutControl1;
     this.te_X.TabIndex        = 7;
     //
     // te_maptitle
     //
     this.te_maptitle.Location        = new System.Drawing.Point(68, 57);
     this.te_maptitle.Name            = "te_maptitle";
     this.te_maptitle.Size            = new System.Drawing.Size(211, 22);
     this.te_maptitle.StyleController = this.layoutControl1;
     this.te_maptitle.TabIndex        = 6;
     //
     // cb_scale
     //
     this.cb_scale.Location = new System.Drawing.Point(68, 31);
     this.cb_scale.Name     = "cb_scale";
     this.cb_scale.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.cb_scale.Size            = new System.Drawing.Size(211, 22);
     this.cb_scale.StyleController = this.layoutControl1;
     this.cb_scale.TabIndex        = 5;
     //
     // cb_district
     //
     this.cb_district.Location = new System.Drawing.Point(68, 5);
     this.cb_district.Name     = "cb_district";
     this.cb_district.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.cb_district.Size            = new System.Drawing.Size(211, 22);
     this.cb_district.StyleController = this.layoutControl1;
     this.cb_district.TabIndex        = 4;
     //
     // layoutControlGroup1
     //
     this.layoutControlGroup1.CustomizationFormText       = "layoutControlGroup1";
     this.layoutControlGroup1.EnableIndentsWithoutBorders = DevExpress.Utils.DefaultBoolean.True;
     this.layoutControlGroup1.GroupBordersVisible         = false;
     this.layoutControlGroup1.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
         this.layoutControlGroup2
     });
     this.layoutControlGroup1.Location    = new System.Drawing.Point(0, 0);
     this.layoutControlGroup1.Name        = "layoutControlGroup1";
     this.layoutControlGroup1.Padding     = new DevExpress.XtraLayout.Utils.Padding(0, 0, 0, 0);
     this.layoutControlGroup1.Size        = new System.Drawing.Size(284, 164);
     this.layoutControlGroup1.Text        = "layoutControlGroup1";
     this.layoutControlGroup1.TextVisible = false;
     //
     // layoutControlGroup2
     //
     this.layoutControlGroup2.CustomizationFormText = "layoutControlGroup2";
     this.layoutControlGroup2.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
         this.layoutControlItem1,
         this.layoutControlItem2,
         this.layoutControlItem3,
         this.layoutControlItem4,
         this.layoutControlItem5,
         this.layoutControlItem6,
         this.layoutControlItem7
     });
     this.layoutControlGroup2.Location    = new System.Drawing.Point(0, 0);
     this.layoutControlGroup2.Name        = "layoutControlGroup2";
     this.layoutControlGroup2.Padding     = new DevExpress.XtraLayout.Utils.Padding(0, 0, 0, 0);
     this.layoutControlGroup2.Size        = new System.Drawing.Size(284, 164);
     this.layoutControlGroup2.Text        = "layoutControlGroup2";
     this.layoutControlGroup2.TextVisible = false;
     //
     // layoutControlItem1
     //
     this.layoutControlItem1.Control = this.cb_district;
     this.layoutControlItem1.CustomizationFormText = "测区名称:";
     this.layoutControlItem1.Location = new System.Drawing.Point(0, 0);
     this.layoutControlItem1.Name     = "layoutControlItem1";
     this.layoutControlItem1.Size     = new System.Drawing.Size(278, 26);
     this.layoutControlItem1.Text     = "测区名称:";
     this.layoutControlItem1.TextSize = new System.Drawing.Size(60, 14);
     //
     // layoutControlItem2
     //
     this.layoutControlItem2.Control = this.cb_scale;
     this.layoutControlItem2.CustomizationFormText = "比例尺:";
     this.layoutControlItem2.Location = new System.Drawing.Point(0, 26);
     this.layoutControlItem2.Name     = "layoutControlItem2";
     this.layoutControlItem2.Size     = new System.Drawing.Size(278, 26);
     this.layoutControlItem2.Text     = "比例尺:";
     this.layoutControlItem2.TextSize = new System.Drawing.Size(60, 14);
     //
     // layoutControlItem3
     //
     this.layoutControlItem3.Control = this.te_maptitle;
     this.layoutControlItem3.CustomizationFormText = "图幅名称:";
     this.layoutControlItem3.Location = new System.Drawing.Point(0, 52);
     this.layoutControlItem3.Name     = "layoutControlItem3";
     this.layoutControlItem3.Size     = new System.Drawing.Size(278, 26);
     this.layoutControlItem3.Text     = "图幅名称:";
     this.layoutControlItem3.TextSize = new System.Drawing.Size(60, 14);
     //
     // layoutControlItem4
     //
     this.layoutControlItem4.Control = this.te_X;
     this.layoutControlItem4.CustomizationFormText = "X前缀:";
     this.layoutControlItem4.Location = new System.Drawing.Point(0, 78);
     this.layoutControlItem4.Name     = "layoutControlItem4";
     this.layoutControlItem4.Size     = new System.Drawing.Size(278, 26);
     this.layoutControlItem4.Text     = "X前缀:";
     this.layoutControlItem4.TextSize = new System.Drawing.Size(60, 14);
     //
     // layoutControlItem5
     //
     this.layoutControlItem5.Control = this.te_Y;
     this.layoutControlItem5.CustomizationFormText = "Y前缀:";
     this.layoutControlItem5.Location = new System.Drawing.Point(0, 104);
     this.layoutControlItem5.Name     = "layoutControlItem5";
     this.layoutControlItem5.Size     = new System.Drawing.Size(278, 26);
     this.layoutControlItem5.Text     = "Y前缀:";
     this.layoutControlItem5.TextSize = new System.Drawing.Size(60, 14);
     //
     // layoutControlItem6
     //
     this.layoutControlItem6.Control = this.btn_OK;
     this.layoutControlItem6.CustomizationFormText = "layoutControlItem6";
     this.layoutControlItem6.Location = new System.Drawing.Point(0, 130);
     this.layoutControlItem6.Name     = "layoutControlItem6";
     this.layoutControlItem6.Size     = new System.Drawing.Size(138, 28);
     this.layoutControlItem6.Text     = "layoutControlItem6";
     this.layoutControlItem6.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem6.TextToControlDistance = 0;
     this.layoutControlItem6.TextVisible           = false;
     //
     // layoutControlItem7
     //
     this.layoutControlItem7.Control = this.btn_Cancel;
     this.layoutControlItem7.CustomizationFormText = "layoutControlItem7";
     this.layoutControlItem7.Location              = new System.Drawing.Point(138, 130);
     this.layoutControlItem7.MaxSize               = new System.Drawing.Size(140, 28);
     this.layoutControlItem7.MinSize               = new System.Drawing.Size(140, 28);
     this.layoutControlItem7.Name                  = "layoutControlItem7";
     this.layoutControlItem7.Size                  = new System.Drawing.Size(140, 28);
     this.layoutControlItem7.SizeConstraintsType   = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem7.Text                  = "layoutControlItem7";
     this.layoutControlItem7.TextSize              = new System.Drawing.Size(0, 0);
     this.layoutControlItem7.TextToControlDistance = 0;
     this.layoutControlItem7.TextVisible           = false;
     //
     // FrmAddSheet
     //
     this.ClientSize = new System.Drawing.Size(284, 164);
     this.Controls.Add(this.layoutControl1);
     this.Name          = "FrmAddSheet";
     this.ShowIcon      = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text          = "添加图幅";
     this.Load         += new System.EventHandler(this.FrmAddSheet_Load);
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl1)).EndInit();
     this.layoutControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.te_Y.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.te_X.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.te_maptitle.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cb_scale.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cb_district.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem6)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem7)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components      = new System.ComponentModel.Container();
     this.render          = new Prometheus.Core.Lightmap.Render(this.components);
     this.xtraTabControl1 = new DevExpress.XtraTab.XtraTabControl();
     this.rend            = new DevExpress.XtraTab.XtraTabPage();
     this.groupControl3   = new DevExpress.XtraEditors.GroupControl();
     this.simpleButton1   = new DevExpress.XtraEditors.SimpleButton();
     this.simpleButtonGenerateFullBright = new DevExpress.XtraEditors.SimpleButton();
     this.btn_Rnd   = new DevExpress.XtraEditors.SimpleButton();
     this.btn_RndTh = new DevExpress.XtraEditors.SimpleButton();
     this.grp_ps    = new DevExpress.XtraEditors.GroupControl();
     this.spinEditRenderPassCount = new DevExpress.XtraEditors.SpinEdit();
     this.label5                     = new System.Windows.Forms.Label();
     this.spin_bl                    = new DevExpress.XtraEditors.SpinEdit();
     this.spin_pr                    = new DevExpress.XtraEditors.SpinEdit();
     this.spin_pc                    = new DevExpress.XtraEditors.SpinEdit();
     this.lb_pr                      = new System.Windows.Forms.Label();
     this.lb_bl                      = new System.Windows.Forms.Label();
     this.lb_pc                      = new System.Windows.Forms.Label();
     this.lb_dDiff                   = new System.Windows.Forms.Label();
     this.def_Diffuse                = new DevExpress.XtraEditors.ColorEdit();
     this.pp                         = new DevExpress.XtraTab.XtraTabPage();
     this.groupControl4              = new DevExpress.XtraEditors.GroupControl();
     this.memoEditAvailableBackups   = new DevExpress.XtraEditors.MemoEdit();
     this.label6                     = new System.Windows.Forms.Label();
     this.label4                     = new System.Windows.Forms.Label();
     this.spinEditSaveHistoryDepth   = new DevExpress.XtraEditors.SpinEdit();
     this.label3                     = new System.Windows.Forms.Label();
     this.spinEditPassesBetweenSaves = new DevExpress.XtraEditors.SpinEdit();
     this.checkBoxUseAutoSave        = new System.Windows.Forms.CheckBox();
     this.groupControl2              = new DevExpress.XtraEditors.GroupControl();
     this.button1                    = new System.Windows.Forms.Button();
     this.label1                     = new System.Windows.Forms.Label();
     this.comboBoxEditFilterAlgo     = new DevExpress.XtraEditors.ComboBoxEdit();
     this.label2                     = new System.Windows.Forms.Label();
     this.comboBoxEditSaturationAlgo = new DevExpress.XtraEditors.ComboBoxEdit();
     this.groupControl1              = new DevExpress.XtraEditors.GroupControl();
     this.btn_Stp                    = new DevExpress.XtraEditors.SimpleButton();
     this.btn_Save                   = new DevExpress.XtraEditors.SimpleButton();
     this.btn_Res                    = new DevExpress.XtraEditors.SimpleButton();
     this.pb                         = new DevExpress.XtraEditors.ProgressBarControl();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl1)).BeginInit();
     this.xtraTabControl1.SuspendLayout();
     this.rend.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl3)).BeginInit();
     this.groupControl3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grp_ps)).BeginInit();
     this.grp_ps.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.spinEditRenderPassCount.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.spin_bl.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.spin_pr.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.spin_pc.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.def_Diffuse.Properties)).BeginInit();
     this.pp.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl4)).BeginInit();
     this.groupControl4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.memoEditAvailableBackups.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.spinEditSaveHistoryDepth.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.spinEditPassesBetweenSaves.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).BeginInit();
     this.groupControl2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.comboBoxEditFilterAlgo.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.comboBoxEditSaturationAlgo.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
     this.groupControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pb.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // render
     //
     this.render.MaxBounces      = 1;
     this.render.MaxPhotons      = 1000;
     this.render.ProgressUpdate += new Prometheus.Core.Lightmap.Render.ProgressChangeHandler(this.render_ProgressUpdate);
     //
     // xtraTabControl1
     //
     this.xtraTabControl1.Controls.Add(this.rend);
     this.xtraTabControl1.Controls.Add(this.pp);
     this.xtraTabControl1.Location        = new System.Drawing.Point(8, 8);
     this.xtraTabControl1.Name            = "xtraTabControl1";
     this.xtraTabControl1.SelectedTabPage = this.rend;
     this.xtraTabControl1.Size            = new System.Drawing.Size(512, 279);
     this.xtraTabControl1.TabIndex        = 0;
     this.xtraTabControl1.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
         this.rend,
         this.pp
     });
     this.xtraTabControl1.Text = "xtraTabControl1";
     //
     // rend
     //
     this.rend.Controls.Add(this.groupControl3);
     this.rend.Controls.Add(this.grp_ps);
     this.rend.Name = "rend";
     this.rend.Size = new System.Drawing.Size(506, 253);
     this.rend.Text = "Rendering";
     //
     // groupControl3
     //
     this.groupControl3.Controls.Add(this.simpleButton1);
     this.groupControl3.Controls.Add(this.simpleButtonGenerateFullBright);
     this.groupControl3.Controls.Add(this.btn_Rnd);
     this.groupControl3.Controls.Add(this.btn_RndTh);
     this.groupControl3.Location = new System.Drawing.Point(267, 7);
     this.groupControl3.Name     = "groupControl3";
     this.groupControl3.Size     = new System.Drawing.Size(226, 231);
     this.groupControl3.TabIndex = 4;
     this.groupControl3.Text     = "Lightmap Generation";
     //
     // simpleButton1
     //
     this.simpleButton1.Location = new System.Drawing.Point(13, 56);
     this.simpleButton1.Name     = "simpleButton1";
     this.simpleButton1.Size     = new System.Drawing.Size(134, 28);
     this.simpleButton1.TabIndex = 1;
     this.simpleButton1.Text     = "BSP Shadow Map";
     //
     // simpleButtonGenerateFullBright
     //
     this.simpleButtonGenerateFullBright.Location = new System.Drawing.Point(13, 21);
     this.simpleButtonGenerateFullBright.Name     = "simpleButtonGenerateFullBright";
     this.simpleButtonGenerateFullBright.Size     = new System.Drawing.Size(134, 28);
     this.simpleButtonGenerateFullBright.TabIndex = 0;
     this.simpleButtonGenerateFullBright.Text     = "Generate Full Bright";
     //
     // btn_Rnd
     //
     this.btn_Rnd.Location = new System.Drawing.Point(13, 91);
     this.btn_Rnd.Name     = "btn_Rnd";
     this.btn_Rnd.Size     = new System.Drawing.Size(194, 28);
     this.btn_Rnd.TabIndex = 2;
     this.btn_Rnd.Text     = "Create Photon Map (Silent Mode)";
     this.btn_Rnd.Click   += new System.EventHandler(this.btn_Rnd_Click);
     //
     // btn_RndTh
     //
     this.btn_RndTh.Location = new System.Drawing.Point(13, 126);
     this.btn_RndTh.Name     = "btn_RndTh";
     this.btn_RndTh.Size     = new System.Drawing.Size(194, 28);
     this.btn_RndTh.TabIndex = 3;
     this.btn_RndTh.Text     = "Create Photon Map (Preview Mode)";
     this.btn_RndTh.Click   += new System.EventHandler(this.btn_RndTh_Click);
     //
     // grp_ps
     //
     this.grp_ps.Controls.Add(this.spinEditRenderPassCount);
     this.grp_ps.Controls.Add(this.label5);
     this.grp_ps.Controls.Add(this.spin_bl);
     this.grp_ps.Controls.Add(this.spin_pr);
     this.grp_ps.Controls.Add(this.spin_pc);
     this.grp_ps.Controls.Add(this.lb_pr);
     this.grp_ps.Controls.Add(this.lb_bl);
     this.grp_ps.Controls.Add(this.lb_pc);
     this.grp_ps.Controls.Add(this.lb_dDiff);
     this.grp_ps.Controls.Add(this.def_Diffuse);
     this.grp_ps.Location = new System.Drawing.Point(7, 7);
     this.grp_ps.Name     = "grp_ps";
     this.grp_ps.Size     = new System.Drawing.Size(253, 231);
     this.grp_ps.TabIndex = 3;
     this.grp_ps.Text     = "Photon Mapping Settings";
     //
     // spinEditRenderPassCount
     //
     this.spinEditRenderPassCount.EditValue = new System.Decimal(new int[] {
         0,
         0,
         0,
         0
     });
     this.spinEditRenderPassCount.Location = new System.Drawing.Point(140, 106);
     this.spinEditRenderPassCount.Name     = "spinEditRenderPassCount";
     //
     // spinEditRenderPassCount.Properties
     //
     this.spinEditRenderPassCount.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton()
     });
     this.spinEditRenderPassCount.Properties.UseCtrlIncrement = false;
     this.spinEditRenderPassCount.Size     = new System.Drawing.Size(80, 20);
     this.spinEditRenderPassCount.TabIndex = 8;
     //
     // label5
     //
     this.label5.Location  = new System.Drawing.Point(53, 106);
     this.label5.Name      = "label5";
     this.label5.Size      = new System.Drawing.Size(87, 17);
     this.label5.TabIndex  = 7;
     this.label5.Text      = "Render Passes:";
     this.label5.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // spin_bl
     //
     this.spin_bl.EditValue = new System.Decimal(new int[] {
         0,
         0,
         0,
         0
     });
     this.spin_bl.Location = new System.Drawing.Point(140, 77);
     this.spin_bl.Name     = "spin_bl";
     //
     // spin_bl.Properties
     //
     this.spin_bl.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton()
     });
     this.spin_bl.Properties.UseCtrlIncrement = false;
     this.spin_bl.Size     = new System.Drawing.Size(80, 20);
     this.spin_bl.TabIndex = 6;
     //
     // spin_pr
     //
     this.spin_pr.EditValue = new System.Decimal(new int[] {
         0,
         0,
         0,
         0
     });
     this.spin_pr.Location = new System.Drawing.Point(140, 49);
     this.spin_pr.Name     = "spin_pr";
     //
     // spin_pr.Properties
     //
     this.spin_pr.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton()
     });
     this.spin_pr.Properties.UseCtrlIncrement = false;
     this.spin_pr.Size     = new System.Drawing.Size(80, 20);
     this.spin_pr.TabIndex = 5;
     //
     // spin_pc
     //
     this.spin_pc.EditValue = new System.Decimal(new int[] {
         0,
         0,
         0,
         0
     });
     this.spin_pc.Location = new System.Drawing.Point(140, 21);
     this.spin_pc.Name     = "spin_pc";
     //
     // spin_pc.Properties
     //
     this.spin_pc.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton()
     });
     this.spin_pc.Properties.UseCtrlIncrement = false;
     this.spin_pc.Size     = new System.Drawing.Size(80, 20);
     this.spin_pc.TabIndex = 4;
     //
     // lb_pr
     //
     this.lb_pr.Location  = new System.Drawing.Point(27, 49);
     this.lb_pr.Name      = "lb_pr";
     this.lb_pr.Size      = new System.Drawing.Size(111, 16);
     this.lb_pr.TabIndex  = 2;
     this.lb_pr.Text      = "Photon Texel Radius:";
     this.lb_pr.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // lb_bl
     //
     this.lb_bl.Location  = new System.Drawing.Point(64, 77);
     this.lb_bl.Name      = "lb_bl";
     this.lb_bl.Size      = new System.Drawing.Size(72, 17);
     this.lb_bl.TabIndex  = 1;
     this.lb_bl.Text      = "Bounce Limit:";
     this.lb_bl.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // lb_pc
     //
     this.lb_pc.Location  = new System.Drawing.Point(60, 21);
     this.lb_pc.Name      = "lb_pc";
     this.lb_pc.Size      = new System.Drawing.Size(80, 17);
     this.lb_pc.TabIndex  = 0;
     this.lb_pc.Text      = "Photon Count:";
     this.lb_pc.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // lb_dDiff
     //
     this.lb_dDiff.Location  = new System.Drawing.Point(20, 133);
     this.lb_dDiff.Name      = "lb_dDiff";
     this.lb_dDiff.Size      = new System.Drawing.Size(120, 17);
     this.lb_dDiff.TabIndex  = 2;
     this.lb_dDiff.Text      = "Default Diffuse Colour:";
     this.lb_dDiff.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.lb_dDiff.Click    += new System.EventHandler(this.lb_dDiff_Click);
     //
     // def_Diffuse
     //
     this.def_Diffuse.EditValue = System.Drawing.Color.White;
     this.def_Diffuse.Location  = new System.Drawing.Point(140, 133);
     this.def_Diffuse.Name      = "def_Diffuse";
     //
     // def_Diffuse.Properties
     //
     this.def_Diffuse.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.def_Diffuse.Size              = new System.Drawing.Size(80, 20);
     this.def_Diffuse.TabIndex          = 0;
     this.def_Diffuse.EditValueChanged += new System.EventHandler(this.def_Diffuse_EditValueChanged);
     //
     // pp
     //
     this.pp.Controls.Add(this.groupControl4);
     this.pp.Controls.Add(this.groupControl2);
     this.pp.Name = "pp";
     this.pp.Size = new System.Drawing.Size(506, 253);
     this.pp.Text = "Post Processing";
     //
     // groupControl4
     //
     this.groupControl4.Controls.Add(this.memoEditAvailableBackups);
     this.groupControl4.Controls.Add(this.label6);
     this.groupControl4.Controls.Add(this.label4);
     this.groupControl4.Controls.Add(this.spinEditSaveHistoryDepth);
     this.groupControl4.Controls.Add(this.label3);
     this.groupControl4.Controls.Add(this.spinEditPassesBetweenSaves);
     this.groupControl4.Controls.Add(this.checkBoxUseAutoSave);
     this.groupControl4.Location = new System.Drawing.Point(7, 105);
     this.groupControl4.Name     = "groupControl4";
     this.groupControl4.Size     = new System.Drawing.Size(486, 140);
     this.groupControl4.TabIndex = 6;
     this.groupControl4.Text     = "Auto Save Settings";
     //
     // memoEditAvailableBackups
     //
     this.memoEditAvailableBackups.EditValue = "";
     this.memoEditAvailableBackups.Location  = new System.Drawing.Point(207, 42);
     this.memoEditAvailableBackups.Name      = "memoEditAvailableBackups";
     //
     // memoEditAvailableBackups.Properties
     //
     this.memoEditAvailableBackups.Properties.ReadOnly = true;
     this.memoEditAvailableBackups.Size     = new System.Drawing.Size(273, 91);
     this.memoEditAvailableBackups.TabIndex = 7;
     //
     // label6
     //
     this.label6.Location = new System.Drawing.Point(207, 21);
     this.label6.Name     = "label6";
     this.label6.Size     = new System.Drawing.Size(120, 20);
     this.label6.TabIndex = 6;
     this.label6.Text     = "Available Backups:";
     //
     // label4
     //
     this.label4.Location  = new System.Drawing.Point(13, 84);
     this.label4.Name      = "label4";
     this.label4.Size      = new System.Drawing.Size(107, 20);
     this.label4.TabIndex  = 4;
     this.label4.Text      = "Save History Depth:";
     this.label4.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // spinEditSaveHistoryDepth
     //
     this.spinEditSaveHistoryDepth.EditValue = new System.Decimal(new int[] {
         0,
         0,
         0,
         0
     });
     this.spinEditSaveHistoryDepth.Location = new System.Drawing.Point(133, 84);
     this.spinEditSaveHistoryDepth.Name     = "spinEditSaveHistoryDepth";
     //
     // spinEditSaveHistoryDepth.Properties
     //
     this.spinEditSaveHistoryDepth.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton()
     });
     this.spinEditSaveHistoryDepth.Properties.UseCtrlIncrement = false;
     this.spinEditSaveHistoryDepth.Size     = new System.Drawing.Size(40, 20);
     this.spinEditSaveHistoryDepth.TabIndex = 3;
     //
     // label3
     //
     this.label3.Location  = new System.Drawing.Point(27, 49);
     this.label3.Name      = "label3";
     this.label3.Size      = new System.Drawing.Size(93, 28);
     this.label3.TabIndex  = 2;
     this.label3.Text      = "Number of Passes Between Saves:";
     this.label3.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // spinEditPassesBetweenSaves
     //
     this.spinEditPassesBetweenSaves.EditValue = new System.Decimal(new int[] {
         0,
         0,
         0,
         0
     });
     this.spinEditPassesBetweenSaves.Location = new System.Drawing.Point(133, 56);
     this.spinEditPassesBetweenSaves.Name     = "spinEditPassesBetweenSaves";
     //
     // spinEditPassesBetweenSaves.Properties
     //
     this.spinEditPassesBetweenSaves.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton()
     });
     this.spinEditPassesBetweenSaves.Properties.UseCtrlIncrement = false;
     this.spinEditPassesBetweenSaves.Size     = new System.Drawing.Size(40, 20);
     this.spinEditPassesBetweenSaves.TabIndex = 1;
     //
     // checkBoxUseAutoSave
     //
     this.checkBoxUseAutoSave.Location = new System.Drawing.Point(13, 21);
     this.checkBoxUseAutoSave.Name     = "checkBoxUseAutoSave";
     this.checkBoxUseAutoSave.Size     = new System.Drawing.Size(107, 21);
     this.checkBoxUseAutoSave.TabIndex = 0;
     this.checkBoxUseAutoSave.Text     = "Use Auto Save";
     //
     // groupControl2
     //
     this.groupControl2.Controls.Add(this.button1);
     this.groupControl2.Controls.Add(this.label1);
     this.groupControl2.Controls.Add(this.comboBoxEditFilterAlgo);
     this.groupControl2.Controls.Add(this.label2);
     this.groupControl2.Controls.Add(this.comboBoxEditSaturationAlgo);
     this.groupControl2.Location = new System.Drawing.Point(7, 14);
     this.groupControl2.Name     = "groupControl2";
     this.groupControl2.Size     = new System.Drawing.Size(486, 84);
     this.groupControl2.TabIndex = 0;
     this.groupControl2.Text     = "Texture Generation";
     //
     // button1
     //
     this.button1.Location = new System.Drawing.Point(280, 28);
     this.button1.Name     = "button1";
     this.button1.Size     = new System.Drawing.Size(187, 21);
     this.button1.TabIndex = 13;
     this.button1.Text     = "Update Lightmap Post Processing";
     //
     // label1
     //
     this.label1.Location  = new System.Drawing.Point(20, 56);
     this.label1.Name      = "label1";
     this.label1.Size      = new System.Drawing.Size(113, 20);
     this.label1.TabIndex  = 12;
     this.label1.Text      = "Filter Algorithm:";
     this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // comboBoxEditFilterAlgo
     //
     this.comboBoxEditFilterAlgo.EditValue = "No Filtering";
     this.comboBoxEditFilterAlgo.Location  = new System.Drawing.Point(133, 56);
     this.comboBoxEditFilterAlgo.Name      = "comboBoxEditFilterAlgo";
     //
     // comboBoxEditFilterAlgo.Properties
     //
     this.comboBoxEditFilterAlgo.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.comboBoxEditFilterAlgo.Properties.Items.AddRange(new object[] {
         "No Filtering",
         "3x3 Gaussian",
         "5x5 Gaussian"
     });
     this.comboBoxEditFilterAlgo.ShowToolTips = false;
     this.comboBoxEditFilterAlgo.Size         = new System.Drawing.Size(127, 20);
     this.comboBoxEditFilterAlgo.TabIndex     = 11;
     //
     // label2
     //
     this.label2.Location  = new System.Drawing.Point(20, 28);
     this.label2.Name      = "label2";
     this.label2.Size      = new System.Drawing.Size(113, 20);
     this.label2.TabIndex  = 10;
     this.label2.Text      = "Saturation Algorithm:";
     this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // comboBoxEditSaturationAlgo
     //
     this.comboBoxEditSaturationAlgo.EditValue = "Use Scene Maximum";
     this.comboBoxEditSaturationAlgo.Location  = new System.Drawing.Point(133, 28);
     this.comboBoxEditSaturationAlgo.Name      = "comboBoxEditSaturationAlgo";
     //
     // comboBoxEditSaturationAlgo.Properties
     //
     this.comboBoxEditSaturationAlgo.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.comboBoxEditSaturationAlgo.Properties.Items.AddRange(new object[] {
         "Use Scene Maximum",
         "Scene Mean + 3 StdDev",
         "Scene Mean + 2 StdDev",
         "Scene Mean + 1 StdDev"
     });
     this.comboBoxEditSaturationAlgo.Size     = new System.Drawing.Size(127, 20);
     this.comboBoxEditSaturationAlgo.TabIndex = 9;
     //
     // groupControl1
     //
     this.groupControl1.Controls.Add(this.btn_Stp);
     this.groupControl1.Controls.Add(this.btn_Save);
     this.groupControl1.Controls.Add(this.btn_Res);
     this.groupControl1.Controls.Add(this.pb);
     this.groupControl1.Location = new System.Drawing.Point(8, 294);
     this.groupControl1.Name     = "groupControl1";
     this.groupControl1.Size     = new System.Drawing.Size(512, 80);
     this.groupControl1.TabIndex = 1;
     this.groupControl1.Text     = "Progress";
     //
     // btn_Stp
     //
     this.btn_Stp.Enabled  = false;
     this.btn_Stp.Location = new System.Drawing.Point(93, 48);
     this.btn_Stp.Name     = "btn_Stp";
     this.btn_Stp.TabIndex = 3;
     this.btn_Stp.Text     = "Stop";
     this.btn_Stp.Click   += new System.EventHandler(this.btn_Stp_Click);
     //
     // btn_Save
     //
     this.btn_Save.Enabled  = false;
     this.btn_Save.Location = new System.Drawing.Point(180, 49);
     this.btn_Save.Name     = "btn_Save";
     this.btn_Save.Size     = new System.Drawing.Size(112, 23);
     this.btn_Save.TabIndex = 2;
     this.btn_Save.Text     = "Save Progress";
     this.btn_Save.Click   += new System.EventHandler(this.btn_Save_Click);
     //
     // btn_Res
     //
     this.btn_Res.Enabled  = false;
     this.btn_Res.Location = new System.Drawing.Point(8, 48);
     this.btn_Res.Name     = "btn_Res";
     this.btn_Res.TabIndex = 1;
     this.btn_Res.Text     = "Resume";
     //
     // pb
     //
     this.pb.Location = new System.Drawing.Point(7, 21);
     this.pb.Name     = "pb";
     this.pb.Size     = new System.Drawing.Size(500, 14);
     this.pb.TabIndex = 0;
     this.pb.TabStop  = false;
     //
     // LightMapDiaglog
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 14);
     this.ClientSize        = new System.Drawing.Size(528, 388);
     this.Controls.Add(this.groupControl1);
     this.Controls.Add(this.xtraTabControl1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
     this.Name            = "LightMapDiaglog";
     this.Text            = "Lightmapping Options";
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl1)).EndInit();
     this.xtraTabControl1.ResumeLayout(false);
     this.rend.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl3)).EndInit();
     this.groupControl3.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.grp_ps)).EndInit();
     this.grp_ps.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.spinEditRenderPassCount.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.spin_bl.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.spin_pr.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.spin_pc.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.def_Diffuse.Properties)).EndInit();
     this.pp.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl4)).EndInit();
     this.groupControl4.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.memoEditAvailableBackups.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.spinEditSaveHistoryDepth.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.spinEditPassesBetweenSaves.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).EndInit();
     this.groupControl2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.comboBoxEditFilterAlgo.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.comboBoxEditSaturationAlgo.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
     this.groupControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.pb.Properties)).EndInit();
     this.ResumeLayout(false);
 }
示例#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.components = new System.ComponentModel.Container();
     DevExpress.XtraGrid.GridLevelNode gridLevelNode1 = new DevExpress.XtraGrid.GridLevelNode();
     DevExpress.XtraGrid.GridLevelNode gridLevelNode2 = new DevExpress.XtraGrid.GridLevelNode();
     DevExpress.XtraGrid.GridLevelNode gridLevelNode3 = new DevExpress.XtraGrid.GridLevelNode();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmManager));
     this.MainMenu1 = new System.Windows.Forms.MainMenu(this.components);
     this.MenuItem1 = new System.Windows.Forms.MenuItem();
     this.MenuItem2 = new System.Windows.Forms.MenuItem();
     this.MenuItem4 = new System.Windows.Forms.MenuItem();
     this.MenuItem6 = new System.Windows.Forms.MenuItem();
     this.MenuItem7 = new System.Windows.Forms.MenuItem();
     this.MenuItem8 = new System.Windows.Forms.MenuItem();
     this.MenuItem9 = new System.Windows.Forms.MenuItem();
     this.MenuItem10 = new System.Windows.Forms.MenuItem();
     this.MenuItem5 = new System.Windows.Forms.MenuItem();
     this.tabControlManager = new DevExpress.XtraTab.XtraTabControl();
     this.tabManagerOne = new DevExpress.XtraTab.XtraTabPage();
     this.lblOne_2 = new DevExpress.XtraEditors.SimpleButton();
     this.lblOne_1 = new DevExpress.XtraEditors.SimpleButton();
     this.groupIPPMaster = new DevExpress.XtraEditors.GroupControl();
     this.groupIPP = new DevExpress.XtraEditors.GroupControl();
     this.ComboBoxIPP = new DevExpress.XtraEditors.ImageComboBoxEdit();
     this.grpIPP2 = new DevExpress.XtraEditors.GroupControl();
     this.btnReset = new DevExpress.XtraEditors.SimpleButton();
     this.lkBranch = new DevExpress.XtraEditors.LookUpEdit();
     this.lkBank = new DevExpress.XtraEditors.LookUpEdit();
     this.IPPdtTo = new DevExpress.XtraEditors.DateEdit();
     this.IPPdtStart = new DevExpress.XtraEditors.DateEdit();
     this.btnSearch = new DevExpress.XtraEditors.SimpleButton();
     this.txtCreditCardScr = new DevExpress.XtraEditors.TextEdit();
     this.label4 = new System.Windows.Forms.Label();
     this.label3 = new System.Windows.Forms.Label();
     this.label2 = new System.Windows.Forms.Label();
     this.IPPlblDtTo = new System.Windows.Forms.Label();
     this.IPPlblDtFrom = new System.Windows.Forms.Label();
     this.btnReceiveIPP = new DevExpress.XtraEditors.SimpleButton();
     this.btnSendIPP = new DevExpress.XtraEditors.SimpleButton();
     this.btnUpdateIPP = new DevExpress.XtraEditors.SimpleButton();
     this.btnDeleteIPP = new DevExpress.XtraEditors.SimpleButton();
     this.btnNewIPP = new DevExpress.XtraEditors.SimpleButton();
     this.IPPGrid = new DevExpress.XtraGrid.GridControl();
     this.IPPGridView = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn10 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn11 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn12 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn13 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn14 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn15 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn16 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn8 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.hypReceipts = new System.Windows.Forms.Label();
     this.hypIPPDetails = new System.Windows.Forms.Label();
     this.GroupIPPDetails = new DevExpress.XtraEditors.GroupControl();
     this.strReferenceNo = new DevExpress.XtraEditors.TextEdit();
     this.label7 = new System.Windows.Forms.Label();
     this.IPPBankCode = new DevExpress.XtraEditors.LookUpEdit();
     this.IPPNMonths = new DevExpress.XtraEditors.ImageComboBoxEdit();
     this.IPPCCNo = new DevExpress.XtraEditors.TextEdit();
     this.IPPStatus = new DevExpress.XtraEditors.TextEdit();
     this.IPPDateRcv = new DevExpress.XtraEditors.TextEdit();
     this.IPPDateSent = new DevExpress.XtraEditors.TextEdit();
     this.IPPBranchCode = new DevExpress.XtraEditors.TextEdit();
     this.IPPCreatedDate = new DevExpress.XtraEditors.TextEdit();
     this.IPPLBL1 = new System.Windows.Forms.Label();
     this.IPPLBL16 = new System.Windows.Forms.Label();
     this.IPPMerchantNo = new DevExpress.XtraEditors.TextEdit();
     this.IPPLBL8 = new System.Windows.Forms.Label();
     this.IPPLBL14 = new System.Windows.Forms.Label();
     this.IPPLBL12 = new System.Windows.Forms.Label();
     this.IPPLBL13 = new System.Windows.Forms.Label();
     this.IPPLBL11 = new System.Windows.Forms.Label();
     this.IPPLBL10 = new System.Windows.Forms.Label();
     this.IPPLBL9 = new System.Windows.Forms.Label();
     this.IPPLBL7 = new System.Windows.Forms.Label();
     this.IPPAmount = new DevExpress.XtraEditors.TextEdit();
     this.IPPInterest = new DevExpress.XtraEditors.TextEdit();
     this.IPPNettAmount = new DevExpress.XtraEditors.TextEdit();
     this.IPPLBL5 = new System.Windows.Forms.Label();
     this.IPPLBL6 = new System.Windows.Forms.Label();
     this.IPPLBL4 = new System.Windows.Forms.Label();
     this.IPPLBL3 = new System.Windows.Forms.Label();
     this.IPPLBL2 = new System.Windows.Forms.Label();
     this.IPPMemberId = new DevExpress.XtraEditors.TextEdit();
     this.IPPMemberName = new DevExpress.XtraEditors.TextEdit();
     this.IPPId = new DevExpress.XtraEditors.TextEdit();
     this.groupIPPReceipt = new DevExpress.XtraEditors.GroupControl();
     this.btnReceiptUnlink = new DevExpress.XtraEditors.SimpleButton();
     this.btnReceiptLink = new DevExpress.XtraEditors.SimpleButton();
     this.gridReceipt = new DevExpress.XtraGrid.GridControl();
     this.IPPReceiptView = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumnIPPR = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnIPPR1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnIPPR2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnIPPR3 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnIPPR4 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnIPPR5 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnIPPR6 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnIPPR7 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnIPPR8 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnIPPR9 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.label10 = new System.Windows.Forms.Label();
     this.IPPReceiptStatus = new DevExpress.XtraEditors.ImageComboBoxEdit();
     this.groupGIROMaster = new DevExpress.XtraEditors.GroupControl();
     this.xtraTabControl1 = new DevExpress.XtraTab.XtraTabControl();
     this.tabGiroDetails = new DevExpress.XtraTab.XtraTabPage();
     this.luedtBankBranch = new DevExpress.XtraEditors.LookUpEdit();
     this.luedtBank = new DevExpress.XtraEditors.LookUpEdit();
     this.luedtPackage = new DevExpress.XtraEditors.LookUpEdit();
     this.luedtBranch = new DevExpress.XtraEditors.LookUpEdit();
     this.label70 = new System.Windows.Forms.Label();
     this.txtPackageDesc = new DevExpress.XtraEditors.TextEdit();
     this.txtAccountNo = new DevExpress.XtraEditors.TextEdit();
     this.txtGIROId = new DevExpress.XtraEditors.TextEdit();
     this.txtRemark = new DevExpress.XtraEditors.MemoEdit();
     this.lblGiro_BankBranch = new System.Windows.Forms.Label();
     this.lblGiro_BankACNumber = new System.Windows.Forms.Label();
     this.lblGiro_BankCode = new System.Windows.Forms.Label();
     this.lblGiro_Remark = new System.Windows.Forms.Label();
     this.lblGiro_Package = new System.Windows.Forms.Label();
     this.lblGiro_Branch = new System.Windows.Forms.Label();
     this.lblGiro_MemberID = new System.Windows.Forms.Label();
     this.lblGiroID = new System.Windows.Forms.Label();
     this.tabGiroTrnsHistory = new DevExpress.XtraTab.XtraTabPage();
     this.GridTransaction = new DevExpress.XtraGrid.GridControl();
     this.gridView4 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.GroupGiro = new DevExpress.XtraEditors.GroupControl();
     this.comboBoxGiroStatus = new DevExpress.XtraEditors.ImageComboBoxEdit();
     this.label63 = new System.Windows.Forms.Label();
     this.btnImport = new DevExpress.XtraEditors.SimpleButton();
     this.btnGiroExport = new DevExpress.XtraEditors.SimpleButton();
     this.btnGiroUpdate = new DevExpress.XtraEditors.SimpleButton();
     this.btnGiroDelete = new DevExpress.XtraEditors.SimpleButton();
     this.btnGiroNew = new DevExpress.XtraEditors.SimpleButton();
     this.GiroGrid = new DevExpress.XtraGrid.GridControl();
     this.GIROGridView = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn3 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn4 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn5 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn6 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn7 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.tabManagerTwo = new DevExpress.XtraTab.XtraTabPage();
     this.GrpPayroll = new DevExpress.XtraEditors.GroupControl();
     this.progressBarControl1 = new DevExpress.XtraEditors.ProgressBarControl();
     this.cbJob = new DevExpress.XtraEditors.ImageComboBoxEdit();
     this.label8 = new System.Windows.Forms.Label();
     this.grpGridExcel = new DevExpress.XtraEditors.GroupControl();
     this.gridExcel = new DevExpress.XtraGrid.GridControl();
     this.gridViewExcel = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn19 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.FirstPayDate = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn24 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn25 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn26 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn27 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn28 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn29 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn30 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn31 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn32 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn33 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn34 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn35 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn36 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.SecondPayDate = new DevExpress.XtraGrid.Columns.GridColumn();
     this.btnPayrollExport = new DevExpress.XtraEditors.SimpleButton();
     this.btnPayrollGenerate = new DevExpress.XtraEditors.SimpleButton();
     this.btnPayrollDelete = new DevExpress.XtraEditors.SimpleButton();
     this.comboBoxEditMTH = new DevExpress.XtraEditors.ComboBoxEdit();
     this.comboBoxEditYR = new DevExpress.XtraEditors.ComboBoxEdit();
     this.lblYear = new System.Windows.Forms.Label();
     this.lblMonth = new System.Windows.Forms.Label();
     this.cmbxPayroll = new DevExpress.XtraEditors.ComboBoxEdit();
     this.gridPayroll = new DevExpress.XtraGrid.GridControl();
     this.gridViewPayroll = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.nEmployeeID = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn9 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn17 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn18 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.dtFirstRunDate = new DevExpress.XtraGrid.Columns.GridColumn();
     this.nNormalOT = new DevExpress.XtraGrid.Columns.GridColumn();
     this.nPublicHolidayOT = new DevExpress.XtraGrid.Columns.GridColumn();
     this.nOffDayOT = new DevExpress.XtraGrid.Columns.GridColumn();
     this.nPartTimeWorkHours = new DevExpress.XtraGrid.Columns.GridColumn();
     this.nALEntitlementHours = new DevExpress.XtraGrid.Columns.GridColumn();
     this.nPHEntitlementHours = new DevExpress.XtraGrid.Columns.GridColumn();
     this.mServiceReimbursements = new DevExpress.XtraGrid.Columns.GridColumn();
     this.nTotalLateness = new DevExpress.XtraGrid.Columns.GridColumn();
     this.nUnpaidAL = new DevExpress.XtraGrid.Columns.GridColumn();
     this.nUnpaidTO = new DevExpress.XtraGrid.Columns.GridColumn();
     this.nUnpaidMedical = new DevExpress.XtraGrid.Columns.GridColumn();
     this.mCommission = new DevExpress.XtraGrid.Columns.GridColumn();
     this.mCommissionLatenessPenalty = new DevExpress.XtraGrid.Columns.GridColumn();
     this.dtSecondRunDate = new DevExpress.XtraGrid.Columns.GridColumn();
     this.tabManagerThree = new DevExpress.XtraTab.XtraTabPage();
     this.lblThree_2 = new DevExpress.XtraEditors.SimpleButton();
     this.lblThree_1 = new DevExpress.XtraEditors.SimpleButton();
     this.lblThree_3 = new DevExpress.XtraEditors.SimpleButton();
     this.grpClassSchedule = new DevExpress.XtraEditors.GroupControl();
     this.comboBoxBranch = new DevExpress.XtraEditors.LookUpEdit();
     this.btnRefreshClassSchedule = new DevExpress.XtraEditors.SimpleButton();
     this.lblPQBranch = new System.Windows.Forms.Label();
     this.lblSUN = new System.Windows.Forms.Label();
     this.panelSun = new System.Windows.Forms.Panel();
     this.panelSat = new System.Windows.Forms.Panel();
     this.lblFRI = new System.Windows.Forms.Label();
     this.lblTHU = new System.Windows.Forms.Label();
     this.lblWED = new System.Windows.Forms.Label();
     this.lblTUE = new System.Windows.Forms.Label();
     this.panelFri = new System.Windows.Forms.Panel();
     this.panelThu = new System.Windows.Forms.Panel();
     this.panelWed = new System.Windows.Forms.Panel();
     this.panelTue = new System.Windows.Forms.Panel();
     this.panelMon = new System.Windows.Forms.Panel();
     this.lblMON = new System.Windows.Forms.Label();
     this.btnPrintClassSchedule = new DevExpress.XtraEditors.SimpleButton();
     this.btnNewClassSchedule = new DevExpress.XtraEditors.SimpleButton();
     this.lblSAT = new System.Windows.Forms.Label();
     this.groupMemCard = new DevExpress.XtraEditors.GroupControl();
     this.grpRoadShow = new DevExpress.XtraEditors.GroupControl();
     this.tabManagerFour = new DevExpress.XtraTab.XtraTabPage();
     this.lblFour_2 = new DevExpress.XtraEditors.SimpleButton();
     this.lblFour_1 = new DevExpress.XtraEditors.SimpleButton();
     this.lblFour_3 = new DevExpress.XtraEditors.SimpleButton();
     this.lblFour_4 = new DevExpress.XtraEditors.SimpleButton();
     this.lblFour_5 = new DevExpress.XtraEditors.SimpleButton();
     this.panel2 = new System.Windows.Forms.Panel();
     this.tabManagerFive = new DevExpress.XtraTab.XtraTabPage();
     this.label6 = new System.Windows.Forms.Label();
     this.ReportPanel = new DevExpress.XtraEditors.PanelControl();
     this.lk_ReportView = new DevExpress.XtraEditors.LookUpEdit();
     this.lblFive_9 = new DevExpress.XtraEditors.SimpleButton();
     this.lblFive_10 = new DevExpress.XtraEditors.SimpleButton();
     this.lblFive_4 = new DevExpress.XtraEditors.SimpleButton();
     this.lblFive_2 = new DevExpress.XtraEditors.SimpleButton();
     this.lblFive_8 = new DevExpress.XtraEditors.SimpleButton();
     this.lblFive_7 = new DevExpress.XtraEditors.SimpleButton();
     this.lblFive_3 = new DevExpress.XtraEditors.SimpleButton();
     this.lblFive_6 = new DevExpress.XtraEditors.SimpleButton();
     this.lblFive_1 = new DevExpress.XtraEditors.SimpleButton();
     this.lblFive_5 = new DevExpress.XtraEditors.SimpleButton();
     this.tabManagerSix = new DevExpress.XtraTab.XtraTabPage();
     this.lk_MasterData = new DevExpress.XtraEditors.LookUpEdit();
     this.panel1 = new System.Windows.Forms.Panel();
     this.label1 = new System.Windows.Forms.Label();
     this.printingSystem1 = new DevExpress.XtraPrinting.PrintingSystem(this.components);
     this.barManager1 = new DevExpress.XtraBars.BarManager(this.components);
     this.bar1 = new DevExpress.XtraBars.Bar();
     this.bbiManagerLoginOut = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem1 = new DevExpress.XtraBars.BarButtonItem();
     this.barstaticCurrentLogin = new DevExpress.XtraBars.BarButtonItem();
     this.barAndDockingController1 = new DevExpress.XtraBars.BarAndDockingController(this.components);
     this.barDockControlTop = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlBottom = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlLeft = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlRight = new DevExpress.XtraBars.BarDockControl();
     this.bbiManagerTimeCard = new DevExpress.XtraBars.BarButtonItem();
     this.printDocument1 = new System.Drawing.Printing.PrintDocument();
     this.openFileDialog1 = new System.Windows.Forms.OpenFileDialog();
     this.gridColumnPGE3 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnPGE2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnPGE1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.mdPGE_txtNQuantity = new DevExpress.XtraEditors.TextEdit();
     this.mdPGE_txtStrPackageCode = new DevExpress.XtraEditors.ImageComboBoxEdit();
     this.mdPGE_cdStrPackageGroupCode = new DevExpress.XtraEditors.ImageComboBoxEdit();
     this.mdPGE_lblNQuantity = new System.Windows.Forms.Label();
     this.mdPGE_lblStrPackageCode = new System.Windows.Forms.Label();
     this.mdPGE_lblStrPackageGroupCode = new System.Windows.Forms.Label();
     this.folderBrowserDialog1 = new System.Windows.Forms.FolderBrowserDialog();
     this.defaultLookAndFeel1 = new DevExpress.LookAndFeel.DefaultLookAndFeel(this.components);
     this.label5 = new System.Windows.Forms.Label();
     this.toolTipController1 = new DevExpress.Utils.ToolTipController(this.components);
     ((System.ComponentModel.ISupportInitialize)(this.tabControlManager)).BeginInit();
     this.tabControlManager.SuspendLayout();
     this.tabManagerOne.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupIPPMaster)).BeginInit();
     this.groupIPPMaster.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupIPP)).BeginInit();
     this.groupIPP.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ComboBoxIPP.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.grpIPP2)).BeginInit();
     this.grpIPP2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.lkBranch.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkBank.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.IPPdtTo.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.IPPdtTo.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.IPPdtStart.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.IPPdtStart.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtCreditCardScr.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.IPPGrid)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.IPPGridView)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.GroupIPPDetails)).BeginInit();
     this.GroupIPPDetails.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.strReferenceNo.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.IPPBankCode.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.IPPNMonths.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.IPPCCNo.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.IPPStatus.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.IPPDateRcv.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.IPPDateSent.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.IPPBranchCode.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.IPPCreatedDate.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.IPPMerchantNo.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.IPPAmount.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.IPPInterest.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.IPPNettAmount.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.IPPMemberId.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.IPPMemberName.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.IPPId.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupIPPReceipt)).BeginInit();
     this.groupIPPReceipt.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridReceipt)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.IPPReceiptView)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.IPPReceiptStatus.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupGIROMaster)).BeginInit();
     this.groupGIROMaster.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl1)).BeginInit();
     this.xtraTabControl1.SuspendLayout();
     this.tabGiroDetails.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.luedtBankBranch.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.luedtBank.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.luedtPackage.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.luedtBranch.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPackageDesc.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtAccountNo.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtGIROId.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtRemark.Properties)).BeginInit();
     this.tabGiroTrnsHistory.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.GridTransaction)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.GroupGiro)).BeginInit();
     this.GroupGiro.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.comboBoxGiroStatus.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.GiroGrid)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.GIROGridView)).BeginInit();
     this.tabManagerTwo.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.GrpPayroll)).BeginInit();
     this.GrpPayroll.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.progressBarControl1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbJob.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.grpGridExcel)).BeginInit();
     this.grpGridExcel.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridExcel)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewExcel)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.comboBoxEditMTH.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.comboBoxEditYR.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbxPayroll.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridPayroll)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewPayroll)).BeginInit();
     this.tabManagerThree.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grpClassSchedule)).BeginInit();
     this.grpClassSchedule.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.comboBoxBranch.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupMemCard)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.grpRoadShow)).BeginInit();
     this.tabManagerFour.SuspendLayout();
     this.tabManagerFive.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ReportPanel)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_ReportView.Properties)).BeginInit();
     this.tabManagerSix.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.lk_MasterData.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.printingSystem1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.barManager1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.barAndDockingController1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.mdPGE_txtNQuantity.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.mdPGE_txtStrPackageCode.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.mdPGE_cdStrPackageGroupCode.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // MainMenu1
     //
     this.MainMenu1.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
     this.MenuItem1,
     this.MenuItem4,
     this.MenuItem5});
     //
     // MenuItem1
     //
     this.MenuItem1.Index = 0;
     this.MenuItem1.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
     this.MenuItem2});
     this.MenuItem1.Text = "File";
     //
     // MenuItem2
     //
     this.MenuItem2.Index = 0;
     this.MenuItem2.Text = "Quit";
     //
     // MenuItem4
     //
     this.MenuItem4.Index = 1;
     this.MenuItem4.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
     this.MenuItem6,
     this.MenuItem7,
     this.MenuItem8,
     this.MenuItem9,
     this.MenuItem10});
     this.MenuItem4.Text = "Tools";
     //
     // MenuItem6
     //
     this.MenuItem6.Index = 0;
     this.MenuItem6.Text = "Change Password";
     //
     // MenuItem7
     //
     this.MenuItem7.Index = 1;
     this.MenuItem7.Text = "Block Membership ID";
     //
     // MenuItem8
     //
     this.MenuItem8.Index = 2;
     this.MenuItem8.Text = "Reset Membership ID";
     //
     // MenuItem9
     //
     this.MenuItem9.Index = 3;
     this.MenuItem9.Text = "Re-print receipt";
     //
     // MenuItem10
     //
     this.MenuItem10.Index = 4;
     this.MenuItem10.Text = "Open Carton";
     //
     // MenuItem5
     //
     this.MenuItem5.Index = 2;
     this.MenuItem5.Text = "Help";
     //
     // tabControlManager
     //
     this.tabControlManager.Appearance.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.tabControlManager.Appearance.ForeColor = System.Drawing.Color.Transparent;
     this.tabControlManager.Appearance.Options.UseFont = true;
     this.tabControlManager.Appearance.Options.UseForeColor = true;
     this.tabControlManager.AppearancePage.Header.Font = new System.Drawing.Font("Tahoma", 10.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.tabControlManager.AppearancePage.Header.Options.UseFont = true;
     this.tabControlManager.Cursor = System.Windows.Forms.Cursors.Arrow;
     this.tabControlManager.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.tabControlManager.ImeMode = System.Windows.Forms.ImeMode.On;
     this.tabControlManager.Location = new System.Drawing.Point(0, 40);
     this.tabControlManager.LookAndFeel.UseDefaultLookAndFeel = false;
     this.tabControlManager.Name = "tabControlManager";
     this.tabControlManager.PaintStyleName = "Skin";
     this.tabControlManager.SelectedTabPage = this.tabManagerOne;
     this.tabControlManager.Size = new System.Drawing.Size(1016, 672);
     this.tabControlManager.TabIndex = 5;
     this.tabControlManager.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
     this.tabManagerOne,
     this.tabManagerTwo,
     this.tabManagerThree,
     this.tabManagerFour,
     this.tabManagerFive,
     this.tabManagerSix});
     this.tabControlManager.Text = "tabAccount";
     this.tabControlManager.Click += new System.EventHandler(this.tabControlManager_Click);
     //
     // tabManagerOne
     //
     this.tabManagerOne.Appearance.Header.Font = new System.Drawing.Font("Tahoma", 10.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.tabManagerOne.Appearance.Header.Options.UseFont = true;
     this.tabManagerOne.Appearance.PageClient.BackColor = System.Drawing.Color.DimGray;
     this.tabManagerOne.Appearance.PageClient.Options.UseBackColor = true;
     this.tabManagerOne.Controls.Add(this.lblOne_2);
     this.tabManagerOne.Controls.Add(this.lblOne_1);
     this.tabManagerOne.Controls.Add(this.groupIPPMaster);
     this.tabManagerOne.Controls.Add(this.groupGIROMaster);
     this.tabManagerOne.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.tabManagerOne.Name = "tabManagerOne";
     this.tabManagerOne.PageVisible = false;
     this.tabManagerOne.Size = new System.Drawing.Size(1007, 637);
     this.tabManagerOne.Text = "Account";
     //
     // lblOne_2
     //
     this.lblOne_2.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.lblOne_2.Appearance.ForeColor = System.Drawing.Color.MediumBlue;
     this.lblOne_2.Appearance.Options.UseFont = true;
     this.lblOne_2.Appearance.Options.UseForeColor = true;
     this.lblOne_2.Location = new System.Drawing.Point(152, 0);
     this.lblOne_2.Name = "lblOne_2";
     this.lblOne_2.Size = new System.Drawing.Size(138, 23);
     this.lblOne_2.TabIndex = 144;
     this.lblOne_2.Text = "GIRO";
     this.lblOne_2.Click += new System.EventHandler(this.lblOne_2_Click);
     //
     // lblOne_1
     //
     this.lblOne_1.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.lblOne_1.Appearance.ForeColor = System.Drawing.Color.MediumBlue;
     this.lblOne_1.Appearance.Options.UseFont = true;
     this.lblOne_1.Appearance.Options.UseForeColor = true;
     this.lblOne_1.Location = new System.Drawing.Point(8, 0);
     this.lblOne_1.Name = "lblOne_1";
     this.lblOne_1.Size = new System.Drawing.Size(138, 23);
     this.lblOne_1.TabIndex = 143;
     this.lblOne_1.Text = "IPP";
     this.lblOne_1.Click += new System.EventHandler(this.lblOne_1_Click);
     //
     // groupIPPMaster
     //
     this.groupIPPMaster.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowOnly;
     this.groupIPPMaster.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.groupIPPMaster.Controls.Add(this.groupIPP);
     this.groupIPPMaster.Controls.Add(this.hypReceipts);
     this.groupIPPMaster.Controls.Add(this.hypIPPDetails);
     this.groupIPPMaster.Controls.Add(this.GroupIPPDetails);
     this.groupIPPMaster.Controls.Add(this.groupIPPReceipt);
     this.groupIPPMaster.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.groupIPPMaster.Location = new System.Drawing.Point(0, 29);
     this.groupIPPMaster.Name = "groupIPPMaster";
     this.groupIPPMaster.ShowCaption = false;
     this.groupIPPMaster.Size = new System.Drawing.Size(1007, 608);
     this.toolTipController1.SetSuperTip(this.groupIPPMaster, null);
     this.groupIPPMaster.TabIndex = 20;
     this.groupIPPMaster.Text = "GroupControl3";
     //
     // groupIPP
     //
     this.groupIPP.Appearance.BackColor = System.Drawing.SystemColors.Control;
     this.groupIPP.Appearance.Options.UseBackColor = true;
     this.groupIPP.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowOnly;
     this.groupIPP.Controls.Add(this.ComboBoxIPP);
     this.groupIPP.Controls.Add(this.grpIPP2);
     this.groupIPP.Controls.Add(this.btnReceiveIPP);
     this.groupIPP.Controls.Add(this.btnSendIPP);
     this.groupIPP.Controls.Add(this.btnUpdateIPP);
     this.groupIPP.Controls.Add(this.btnDeleteIPP);
     this.groupIPP.Controls.Add(this.btnNewIPP);
     this.groupIPP.Controls.Add(this.IPPGrid);
     this.groupIPP.Location = new System.Drawing.Point(4, 0);
     this.groupIPP.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.groupIPP.LookAndFeel.UseDefaultLookAndFeel = false;
     this.groupIPP.Name = "groupIPP";
     this.groupIPP.Size = new System.Drawing.Size(996, 290);
     this.toolTipController1.SetSuperTip(this.groupIPP, null);
     this.groupIPP.TabIndex = 16;
     this.groupIPP.Text = "IPP";
     //
     // ComboBoxIPP
     //
     this.ComboBoxIPP.Location = new System.Drawing.Point(8, 56);
     this.ComboBoxIPP.Name = "ComboBoxIPP";
     this.ComboBoxIPP.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.ComboBoxIPP.Properties.Items.AddRange(new DevExpress.XtraEditors.Controls.ImageComboBoxItem[] {
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Show All", null, -1),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Not Sent", 0, -1),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Sent, Not Received", 1, -1),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Success", 2, -1)});
     this.ComboBoxIPP.Size = new System.Drawing.Size(136, 20);
     this.ComboBoxIPP.TabIndex = 130;
     this.ComboBoxIPP.SelectedIndexChanged += new System.EventHandler(this.ComboBoxIPP_SelectedIndexChanged);
     //
     // grpIPP2
     //
     this.grpIPP2.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowOnly;
     this.grpIPP2.Controls.Add(this.btnReset);
     this.grpIPP2.Controls.Add(this.lkBranch);
     this.grpIPP2.Controls.Add(this.lkBank);
     this.grpIPP2.Controls.Add(this.IPPdtTo);
     this.grpIPP2.Controls.Add(this.IPPdtStart);
     this.grpIPP2.Controls.Add(this.btnSearch);
     this.grpIPP2.Controls.Add(this.txtCreditCardScr);
     this.grpIPP2.Controls.Add(this.label4);
     this.grpIPP2.Controls.Add(this.label3);
     this.grpIPP2.Controls.Add(this.label2);
     this.grpIPP2.Controls.Add(this.IPPlblDtTo);
     this.grpIPP2.Controls.Add(this.IPPlblDtFrom);
     this.grpIPP2.Location = new System.Drawing.Point(0, 16);
     this.grpIPP2.LookAndFeel.UseDefaultLookAndFeel = false;
     this.grpIPP2.Name = "grpIPP2";
     this.grpIPP2.ShowCaption = false;
     this.grpIPP2.Size = new System.Drawing.Size(1000, 34);
     this.toolTipController1.SetSuperTip(this.grpIPP2, null);
     this.grpIPP2.TabIndex = 128;
     this.grpIPP2.Text = "groupControl4";
     //
     // btnReset
     //
     this.btnReset.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.btnReset.Appearance.Options.UseFont = true;
     this.btnReset.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnReset.Location = new System.Drawing.Point(928, 8);
     this.btnReset.Name = "btnReset";
     this.btnReset.Size = new System.Drawing.Size(56, 20);
     this.btnReset.TabIndex = 148;
     this.btnReset.Text = "Reset";
     this.btnReset.Click += new System.EventHandler(this.btnReset_Click);
     //
     // lkBranch
     //
     this.lkBranch.Location = new System.Drawing.Point(608, 8);
     this.lkBranch.Name = "lkBranch";
     this.lkBranch.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Style3D;
     this.lkBranch.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lkBranch.Size = new System.Drawing.Size(64, 22);
     this.lkBranch.TabIndex = 147;
     //
     // lkBank
     //
     this.lkBank.Location = new System.Drawing.Point(336, 8);
     this.lkBank.Name = "lkBank";
     this.lkBank.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Style3D;
     this.lkBank.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lkBank.Size = new System.Drawing.Size(216, 22);
     this.lkBank.TabIndex = 146;
     //
     // IPPdtTo
     //
     this.IPPdtTo.EditValue = new System.DateTime(2006, 5, 19, 0, 0, 0, 0);
     this.IPPdtTo.Location = new System.Drawing.Point(200, 8);
     this.IPPdtTo.Name = "IPPdtTo";
     this.IPPdtTo.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Style3D;
     this.IPPdtTo.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.IPPdtTo.Properties.DisplayFormat.FormatString = "dd/MM/yyyy";
     this.IPPdtTo.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.IPPdtTo.Properties.EditFormat.FormatString = "dd/MM/yyyy";
     this.IPPdtTo.Properties.EditFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.IPPdtTo.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.IPPdtTo.Properties.Mask.EditMask = "dd/MM/yyyy";
     this.IPPdtTo.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.IPPdtTo.Size = new System.Drawing.Size(96, 22);
     this.IPPdtTo.TabIndex = 138;
     //
     // IPPdtStart
     //
     this.IPPdtStart.EditValue = new System.DateTime(2006, 5, 19, 0, 0, 0, 0);
     this.IPPdtStart.Location = new System.Drawing.Point(80, 8);
     this.IPPdtStart.Name = "IPPdtStart";
     this.IPPdtStart.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Style3D;
     this.IPPdtStart.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.IPPdtStart.Properties.DisplayFormat.FormatString = "dd/MM/yyyy";
     this.IPPdtStart.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.IPPdtStart.Properties.EditFormat.FormatString = "dd/MM/yyyy";
     this.IPPdtStart.Properties.EditFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.IPPdtStart.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.IPPdtStart.Properties.Mask.EditMask = "dd/MM/yyyy";
     this.IPPdtStart.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.IPPdtStart.Size = new System.Drawing.Size(96, 22);
     this.IPPdtStart.TabIndex = 137;
     //
     // btnSearch
     //
     this.btnSearch.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.btnSearch.Appearance.Options.UseFont = true;
     this.btnSearch.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnSearch.Location = new System.Drawing.Point(864, 8);
     this.btnSearch.Name = "btnSearch";
     this.btnSearch.Size = new System.Drawing.Size(56, 20);
     this.btnSearch.TabIndex = 135;
     this.btnSearch.Text = "Search";
     this.btnSearch.Click += new System.EventHandler(this.btnSearch_Click);
     //
     // txtCreditCardScr
     //
     this.txtCreditCardScr.EditValue = "";
     this.txtCreditCardScr.Location = new System.Drawing.Point(760, 8);
     this.txtCreditCardScr.Name = "txtCreditCardScr";
     this.txtCreditCardScr.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtCreditCardScr.Properties.Appearance.Options.UseFont = true;
     this.txtCreditCardScr.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Style3D;
     this.txtCreditCardScr.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.txtCreditCardScr.Size = new System.Drawing.Size(96, 22);
     this.txtCreditCardScr.TabIndex = 134;
     //
     // label4
     //
     this.label4.BackColor = System.Drawing.Color.Transparent;
     this.label4.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label4.Location = new System.Drawing.Point(680, 8);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(88, 16);
     this.toolTipController1.SetSuperTip(this.label4, null);
     this.label4.TabIndex = 132;
     this.label4.Text = "Credit Card";
     this.label4.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // label3
     //
     this.label3.BackColor = System.Drawing.Color.Transparent;
     this.label3.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label3.Location = new System.Drawing.Point(552, 8);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(56, 16);
     this.toolTipController1.SetSuperTip(this.label3, null);
     this.label3.TabIndex = 131;
     this.label3.Text = "Branch";
     this.label3.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // label2
     //
     this.label2.BackColor = System.Drawing.Color.Transparent;
     this.label2.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label2.Location = new System.Drawing.Point(296, 8);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(40, 16);
     this.toolTipController1.SetSuperTip(this.label2, null);
     this.label2.TabIndex = 130;
     this.label2.Text = "Bank";
     this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // IPPlblDtTo
     //
     this.IPPlblDtTo.BackColor = System.Drawing.Color.Transparent;
     this.IPPlblDtTo.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.IPPlblDtTo.Location = new System.Drawing.Point(176, 8);
     this.IPPlblDtTo.Name = "IPPlblDtTo";
     this.IPPlblDtTo.Size = new System.Drawing.Size(24, 16);
     this.toolTipController1.SetSuperTip(this.IPPlblDtTo, null);
     this.IPPlblDtTo.TabIndex = 125;
     this.IPPlblDtTo.Text = "To";
     this.IPPlblDtTo.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // IPPlblDtFrom
     //
     this.IPPlblDtFrom.BackColor = System.Drawing.Color.Transparent;
     this.IPPlblDtFrom.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.IPPlblDtFrom.Location = new System.Drawing.Point(8, 8);
     this.IPPlblDtFrom.Name = "IPPlblDtFrom";
     this.IPPlblDtFrom.Size = new System.Drawing.Size(72, 16);
     this.toolTipController1.SetSuperTip(this.IPPlblDtFrom, null);
     this.IPPlblDtFrom.TabIndex = 124;
     this.IPPlblDtFrom.Text = "Date From";
     this.IPPlblDtFrom.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // btnReceiveIPP
     //
     this.btnReceiveIPP.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.btnReceiveIPP.Appearance.Options.UseFont = true;
     this.btnReceiveIPP.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnReceiveIPP.Enabled = false;
     this.btnReceiveIPP.Location = new System.Drawing.Point(408, 56);
     this.btnReceiveIPP.Name = "btnReceiveIPP";
     this.btnReceiveIPP.Size = new System.Drawing.Size(62, 20);
     this.btnReceiveIPP.TabIndex = 13;
     this.btnReceiveIPP.Text = "Receive";
     this.btnReceiveIPP.Click += new System.EventHandler(this.btnReceiveIPP_Click);
     //
     // btnSendIPP
     //
     this.btnSendIPP.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.btnSendIPP.Appearance.Options.UseFont = true;
     this.btnSendIPP.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnSendIPP.Enabled = false;
     this.btnSendIPP.Location = new System.Drawing.Point(344, 56);
     this.btnSendIPP.Name = "btnSendIPP";
     this.btnSendIPP.Size = new System.Drawing.Size(62, 20);
     this.btnSendIPP.TabIndex = 12;
     this.btnSendIPP.Text = "Send";
     this.btnSendIPP.Click += new System.EventHandler(this.btnSendIPP_Click);
     //
     // btnUpdateIPP
     //
     this.btnUpdateIPP.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.btnUpdateIPP.Appearance.Options.UseFont = true;
     this.btnUpdateIPP.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnUpdateIPP.Location = new System.Drawing.Point(216, 56);
     this.btnUpdateIPP.Name = "btnUpdateIPP";
     this.btnUpdateIPP.Size = new System.Drawing.Size(62, 20);
     this.btnUpdateIPP.TabIndex = 10;
     this.btnUpdateIPP.Text = "Update";
     this.btnUpdateIPP.Click += new System.EventHandler(this.btnUpdateIPP_Click);
     //
     // btnDeleteIPP
     //
     this.btnDeleteIPP.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.btnDeleteIPP.Appearance.Options.UseFont = true;
     this.btnDeleteIPP.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnDeleteIPP.Location = new System.Drawing.Point(280, 56);
     this.btnDeleteIPP.Name = "btnDeleteIPP";
     this.btnDeleteIPP.Size = new System.Drawing.Size(62, 20);
     this.btnDeleteIPP.TabIndex = 5;
     this.btnDeleteIPP.Text = "Delete";
     this.btnDeleteIPP.Click += new System.EventHandler(this.btnDeleteIPP_Click);
     //
     // btnNewIPP
     //
     this.btnNewIPP.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.btnNewIPP.Appearance.Options.UseFont = true;
     this.btnNewIPP.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnNewIPP.Location = new System.Drawing.Point(152, 56);
     this.btnNewIPP.Name = "btnNewIPP";
     this.btnNewIPP.Size = new System.Drawing.Size(62, 20);
     this.btnNewIPP.TabIndex = 2;
     this.btnNewIPP.Text = "New";
     this.btnNewIPP.Click += new System.EventHandler(this.btnNewIPP_Click);
     //
     // IPPGrid
     //
     this.IPPGrid.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.IPPGrid.EmbeddedNavigator.Cursor = System.Windows.Forms.Cursors.Arrow;
     this.IPPGrid.EmbeddedNavigator.Name = "";
     gridLevelNode1.RelationName = "Level1";
     this.IPPGrid.LevelTree.Nodes.AddRange(new DevExpress.XtraGrid.GridLevelNode[] {
     gridLevelNode1});
     this.IPPGrid.Location = new System.Drawing.Point(2, 80);
     this.IPPGrid.LookAndFeel.UseDefaultLookAndFeel = false;
     this.IPPGrid.MainView = this.IPPGridView;
     this.IPPGrid.Name = "IPPGrid";
     this.IPPGrid.Size = new System.Drawing.Size(992, 208);
     this.IPPGrid.TabIndex = 0;
     this.IPPGrid.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.IPPGridView});
     //
     // IPPGridView
     //
     this.IPPGridView.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn10,
     this.gridColumn11,
     this.gridColumn12,
     this.gridColumn13,
     this.gridColumn14,
     this.gridColumn15,
     this.gridColumn16,
     this.gridColumn8});
     this.IPPGridView.GridControl = this.IPPGrid;
     this.IPPGridView.Name = "IPPGridView";
     this.IPPGridView.OptionsBehavior.Editable = false;
     this.IPPGridView.OptionsCustomization.AllowFilter = false;
     this.IPPGridView.OptionsFilter.AllowColumnMRUFilterList = false;
     this.IPPGridView.OptionsFilter.AllowMRUFilterList = false;
     this.IPPGridView.OptionsView.ShowGroupPanel = false;
     this.IPPGridView.FocusedRowChanged += new DevExpress.XtraGrid.Views.Base.FocusedRowChangedEventHandler(this.IPPGridView_FocusedRowChanged);
     this.IPPGridView.Click += new System.EventHandler(this.IPPGridView_Click);
     //
     // gridColumn10
     //
     this.gridColumn10.Caption = "ID";
     this.gridColumn10.FieldName = "nIPPID";
     this.gridColumn10.Name = "gridColumn10";
     this.gridColumn10.Visible = true;
     this.gridColumn10.VisibleIndex = 0;
     //
     // gridColumn11
     //
     this.gridColumn11.Caption = "Date Created";
     this.gridColumn11.FieldName = "dtDate";
     this.gridColumn11.Name = "gridColumn11";
     this.gridColumn11.Visible = true;
     this.gridColumn11.VisibleIndex = 6;
     //
     // gridColumn12
     //
     this.gridColumn12.Caption = "Member Id";
     this.gridColumn12.FieldName = "strMembershipID";
     this.gridColumn12.Name = "gridColumn12";
     this.gridColumn12.Visible = true;
     this.gridColumn12.VisibleIndex = 1;
     //
     // gridColumn13
     //
     this.gridColumn13.Caption = "Member Name";
     this.gridColumn13.FieldName = "strMemberName";
     this.gridColumn13.Name = "gridColumn13";
     this.gridColumn13.Visible = true;
     this.gridColumn13.VisibleIndex = 2;
     //
     // gridColumn14
     //
     this.gridColumn14.Caption = "Bank";
     this.gridColumn14.FieldName = "strBankDesc";
     this.gridColumn14.Name = "gridColumn14";
     this.gridColumn14.Visible = true;
     this.gridColumn14.VisibleIndex = 3;
     //
     // gridColumn15
     //
     this.gridColumn15.Caption = "Credit Card No.";
     this.gridColumn15.DisplayFormat.FormatString = "####-####-####-####";
     this.gridColumn15.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Custom;
     this.gridColumn15.FieldName = "strCreditCardNo";
     this.gridColumn15.GroupFormat.FormatString = "####-####-####-####";
     this.gridColumn15.GroupFormat.FormatType = DevExpress.Utils.FormatType.Custom;
     this.gridColumn15.MinWidth = 24;
     this.gridColumn15.Name = "gridColumn15";
     this.gridColumn15.Visible = true;
     this.gridColumn15.VisibleIndex = 4;
     //
     // gridColumn16
     //
     this.gridColumn16.Caption = "No. of Months";
     this.gridColumn16.FieldName = "nMonths";
     this.gridColumn16.Name = "gridColumn16";
     this.gridColumn16.Visible = true;
     this.gridColumn16.VisibleIndex = 5;
     //
     // gridColumn8
     //
     this.gridColumn8.Caption = "gridColumn8";
     this.gridColumn8.FieldName = "strIPP";
     this.gridColumn8.Name = "gridColumn8";
     //
     // hypReceipts
     //
     this.hypReceipts.AutoSize = true;
     this.hypReceipts.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.hypReceipts.Location = new System.Drawing.Point(128, 296);
     this.hypReceipts.Name = "hypReceipts";
     this.hypReceipts.Size = new System.Drawing.Size(83, 16);
     this.toolTipController1.SetSuperTip(this.hypReceipts, null);
     this.hypReceipts.TabIndex = 13;
     this.hypReceipts.Text = "RECEIPTS";
     this.hypReceipts.Click += new System.EventHandler(this.hypReceipts_Click);
     //
     // hypIPPDetails
     //
     this.hypIPPDetails.AutoSize = true;
     this.hypIPPDetails.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Underline))), System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.hypIPPDetails.Location = new System.Drawing.Point(16, 296);
     this.hypIPPDetails.Name = "hypIPPDetails";
     this.hypIPPDetails.Size = new System.Drawing.Size(99, 16);
     this.toolTipController1.SetSuperTip(this.hypIPPDetails, null);
     this.hypIPPDetails.TabIndex = 10;
     this.hypIPPDetails.Text = "IPP DETAILS";
     this.hypIPPDetails.Click += new System.EventHandler(this.hypIPPDetails_Click);
     //
     // GroupIPPDetails
     //
     this.GroupIPPDetails.Appearance.BackColor = System.Drawing.SystemColors.Control;
     this.GroupIPPDetails.Appearance.Options.UseBackColor = true;
     this.GroupIPPDetails.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowOnly;
     this.GroupIPPDetails.Controls.Add(this.strReferenceNo);
     this.GroupIPPDetails.Controls.Add(this.label7);
     this.GroupIPPDetails.Controls.Add(this.IPPBankCode);
     this.GroupIPPDetails.Controls.Add(this.IPPNMonths);
     this.GroupIPPDetails.Controls.Add(this.IPPCCNo);
     this.GroupIPPDetails.Controls.Add(this.IPPStatus);
     this.GroupIPPDetails.Controls.Add(this.IPPDateRcv);
     this.GroupIPPDetails.Controls.Add(this.IPPDateSent);
     this.GroupIPPDetails.Controls.Add(this.IPPBranchCode);
     this.GroupIPPDetails.Controls.Add(this.IPPCreatedDate);
     this.GroupIPPDetails.Controls.Add(this.IPPLBL1);
     this.GroupIPPDetails.Controls.Add(this.IPPLBL16);
     this.GroupIPPDetails.Controls.Add(this.IPPMerchantNo);
     this.GroupIPPDetails.Controls.Add(this.IPPLBL8);
     this.GroupIPPDetails.Controls.Add(this.IPPLBL14);
     this.GroupIPPDetails.Controls.Add(this.IPPLBL12);
     this.GroupIPPDetails.Controls.Add(this.IPPLBL13);
     this.GroupIPPDetails.Controls.Add(this.IPPLBL11);
     this.GroupIPPDetails.Controls.Add(this.IPPLBL10);
     this.GroupIPPDetails.Controls.Add(this.IPPLBL9);
     this.GroupIPPDetails.Controls.Add(this.IPPLBL7);
     this.GroupIPPDetails.Controls.Add(this.IPPAmount);
     this.GroupIPPDetails.Controls.Add(this.IPPInterest);
     this.GroupIPPDetails.Controls.Add(this.IPPNettAmount);
     this.GroupIPPDetails.Controls.Add(this.IPPLBL5);
     this.GroupIPPDetails.Controls.Add(this.IPPLBL6);
     this.GroupIPPDetails.Controls.Add(this.IPPLBL4);
     this.GroupIPPDetails.Controls.Add(this.IPPLBL3);
     this.GroupIPPDetails.Controls.Add(this.IPPLBL2);
     this.GroupIPPDetails.Controls.Add(this.IPPMemberId);
     this.GroupIPPDetails.Controls.Add(this.IPPMemberName);
     this.GroupIPPDetails.Controls.Add(this.IPPId);
     this.GroupIPPDetails.ImeMode = System.Windows.Forms.ImeMode.On;
     this.GroupIPPDetails.Location = new System.Drawing.Point(8, 320);
     this.GroupIPPDetails.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.GroupIPPDetails.LookAndFeel.UseDefaultLookAndFeel = false;
     this.GroupIPPDetails.Name = "GroupIPPDetails";
     this.GroupIPPDetails.Size = new System.Drawing.Size(992, 240);
     this.toolTipController1.SetSuperTip(this.GroupIPPDetails, null);
     this.GroupIPPDetails.TabIndex = 14;
     this.GroupIPPDetails.Text = "IPP Details";
     //
     // strReferenceNo
     //
     this.strReferenceNo.EditValue = "";
     this.strReferenceNo.Location = new System.Drawing.Point(600, 200);
     this.strReferenceNo.Name = "strReferenceNo";
     this.strReferenceNo.Size = new System.Drawing.Size(168, 20);
     this.strReferenceNo.TabIndex = 150;
     //
     // label7
     //
     this.label7.AutoSize = true;
     this.label7.BackColor = System.Drawing.Color.Transparent;
     this.label7.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label7.Location = new System.Drawing.Point(424, 200);
     this.label7.Name = "label7";
     this.label7.Size = new System.Drawing.Size(141, 16);
     this.toolTipController1.SetSuperTip(this.label7, null);
     this.label7.TabIndex = 149;
     this.label7.Text = "Reference Number  :";
     //
     // IPPBankCode
     //
     this.IPPBankCode.Location = new System.Drawing.Point(600, 128);
     this.IPPBankCode.Name = "IPPBankCode";
     this.IPPBankCode.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.IPPBankCode.Size = new System.Drawing.Size(168, 20);
     this.IPPBankCode.TabIndex = 145;
     this.IPPBankCode.EditValueChanged += new System.EventHandler(this.IPPBankCode_EditValueChanged);
     //
     // IPPNMonths
     //
     this.IPPNMonths.Location = new System.Drawing.Point(600, 176);
     this.IPPNMonths.Name = "IPPNMonths";
     this.IPPNMonths.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.IPPNMonths.Size = new System.Drawing.Size(168, 20);
     this.IPPNMonths.TabIndex = 144;
     //
     // IPPCCNo
     //
     this.IPPCCNo.AllowDrop = true;
     this.IPPCCNo.EditValue = "";
     this.IPPCCNo.Location = new System.Drawing.Point(600, 152);
     this.IPPCCNo.Name = "IPPCCNo";
     this.IPPCCNo.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.IPPCCNo.Properties.Appearance.Options.UseFont = true;
     this.IPPCCNo.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.IPPCCNo.Properties.Mask.BeepOnError = true;
     this.IPPCCNo.Properties.Mask.EditMask = "\\d{4}-\\d{4}-\\d{4}-\\d{4}";
     this.IPPCCNo.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Regular;
     this.IPPCCNo.Properties.Mask.SaveLiteral = false;
     this.IPPCCNo.Properties.Mask.UseMaskAsDisplayFormat = true;
     this.IPPCCNo.Properties.MaxLength = 19;
     this.IPPCCNo.Size = new System.Drawing.Size(168, 20);
     this.IPPCCNo.TabIndex = 143;
     //
     // IPPStatus
     //
     this.IPPStatus.EditValue = "";
     this.IPPStatus.Enabled = false;
     this.IPPStatus.Location = new System.Drawing.Point(600, 104);
     this.IPPStatus.Name = "IPPStatus";
     this.IPPStatus.Properties.Appearance.BackColor = System.Drawing.Color.Transparent;
     this.IPPStatus.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.IPPStatus.Properties.Appearance.ForeColor = System.Drawing.Color.Black;
     this.IPPStatus.Properties.Appearance.Options.UseBackColor = true;
     this.IPPStatus.Properties.Appearance.Options.UseFont = true;
     this.IPPStatus.Properties.Appearance.Options.UseForeColor = true;
     this.IPPStatus.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.IPPStatus.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.IPPStatus.Properties.ReadOnly = true;
     this.IPPStatus.ShowToolTips = false;
     this.IPPStatus.Size = new System.Drawing.Size(168, 18);
     this.IPPStatus.TabIndex = 141;
     //
     // IPPDateRcv
     //
     this.IPPDateRcv.EditValue = "";
     this.IPPDateRcv.Enabled = false;
     this.IPPDateRcv.Location = new System.Drawing.Point(600, 80);
     this.IPPDateRcv.Name = "IPPDateRcv";
     this.IPPDateRcv.Properties.Appearance.BackColor = System.Drawing.Color.Transparent;
     this.IPPDateRcv.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.IPPDateRcv.Properties.Appearance.ForeColor = System.Drawing.Color.Black;
     this.IPPDateRcv.Properties.Appearance.Options.UseBackColor = true;
     this.IPPDateRcv.Properties.Appearance.Options.UseFont = true;
     this.IPPDateRcv.Properties.Appearance.Options.UseForeColor = true;
     this.IPPDateRcv.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.IPPDateRcv.Properties.DisplayFormat.FormatString = "d";
     this.IPPDateRcv.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.IPPDateRcv.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.IPPDateRcv.Properties.Mask.EditMask = "dd/MM/yyyy";
     this.IPPDateRcv.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.DateTime;
     this.IPPDateRcv.Properties.ReadOnly = true;
     this.IPPDateRcv.ShowToolTips = false;
     this.IPPDateRcv.Size = new System.Drawing.Size(168, 18);
     this.IPPDateRcv.TabIndex = 140;
     //
     // IPPDateSent
     //
     this.IPPDateSent.EditValue = "";
     this.IPPDateSent.Enabled = false;
     this.IPPDateSent.Location = new System.Drawing.Point(600, 56);
     this.IPPDateSent.Name = "IPPDateSent";
     this.IPPDateSent.Properties.Appearance.BackColor = System.Drawing.Color.Transparent;
     this.IPPDateSent.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.IPPDateSent.Properties.Appearance.ForeColor = System.Drawing.Color.Black;
     this.IPPDateSent.Properties.Appearance.Options.UseBackColor = true;
     this.IPPDateSent.Properties.Appearance.Options.UseFont = true;
     this.IPPDateSent.Properties.Appearance.Options.UseForeColor = true;
     this.IPPDateSent.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.IPPDateSent.Properties.DisplayFormat.FormatString = "d";
     this.IPPDateSent.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.IPPDateSent.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.IPPDateSent.Properties.Mask.EditMask = "dd/MM/yyyy";
     this.IPPDateSent.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.DateTime;
     this.IPPDateSent.Properties.ReadOnly = true;
     this.IPPDateSent.ShowToolTips = false;
     this.IPPDateSent.Size = new System.Drawing.Size(168, 18);
     this.IPPDateSent.TabIndex = 139;
     //
     // IPPBranchCode
     //
     this.IPPBranchCode.EditValue = "";
     this.IPPBranchCode.Enabled = false;
     this.IPPBranchCode.Location = new System.Drawing.Point(184, 128);
     this.IPPBranchCode.Name = "IPPBranchCode";
     this.IPPBranchCode.Properties.Appearance.BackColor = System.Drawing.Color.Transparent;
     this.IPPBranchCode.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.IPPBranchCode.Properties.Appearance.ForeColor = System.Drawing.Color.Black;
     this.IPPBranchCode.Properties.Appearance.Options.UseBackColor = true;
     this.IPPBranchCode.Properties.Appearance.Options.UseFont = true;
     this.IPPBranchCode.Properties.Appearance.Options.UseForeColor = true;
     this.IPPBranchCode.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.IPPBranchCode.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.IPPBranchCode.Properties.ReadOnly = true;
     this.IPPBranchCode.Size = new System.Drawing.Size(168, 18);
     this.IPPBranchCode.TabIndex = 138;
     //
     // IPPCreatedDate
     //
     this.IPPCreatedDate.EditValue = "";
     this.IPPCreatedDate.Enabled = false;
     this.IPPCreatedDate.Location = new System.Drawing.Point(184, 56);
     this.IPPCreatedDate.Name = "IPPCreatedDate";
     this.IPPCreatedDate.Properties.Appearance.BackColor = System.Drawing.Color.Transparent;
     this.IPPCreatedDate.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.IPPCreatedDate.Properties.Appearance.ForeColor = System.Drawing.Color.Black;
     this.IPPCreatedDate.Properties.Appearance.Options.UseBackColor = true;
     this.IPPCreatedDate.Properties.Appearance.Options.UseFont = true;
     this.IPPCreatedDate.Properties.Appearance.Options.UseForeColor = true;
     this.IPPCreatedDate.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.IPPCreatedDate.Properties.DisplayFormat.FormatString = "d";
     this.IPPCreatedDate.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.IPPCreatedDate.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.IPPCreatedDate.Properties.Mask.EditMask = "dd/MM/yyyy";
     this.IPPCreatedDate.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.DateTime;
     this.IPPCreatedDate.Properties.ReadOnly = true;
     this.IPPCreatedDate.Size = new System.Drawing.Size(168, 18);
     this.IPPCreatedDate.TabIndex = 137;
     //
     // IPPLBL1
     //
     this.IPPLBL1.AutoSize = true;
     this.IPPLBL1.BackColor = System.Drawing.Color.Transparent;
     this.IPPLBL1.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.IPPLBL1.Location = new System.Drawing.Point(32, 32);
     this.IPPLBL1.Name = "IPPLBL1";
     this.IPPLBL1.Size = new System.Drawing.Size(55, 16);
     this.toolTipController1.SetSuperTip(this.IPPLBL1, null);
     this.IPPLBL1.TabIndex = 136;
     this.IPPLBL1.Text = "IPP Id :";
     //
     // IPPLBL16
     //
     this.IPPLBL16.AutoSize = true;
     this.IPPLBL16.BackColor = System.Drawing.Color.Transparent;
     this.IPPLBL16.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.IPPLBL16.Location = new System.Drawing.Point(32, 128);
     this.IPPLBL16.Name = "IPPLBL16";
     this.IPPLBL16.Size = new System.Drawing.Size(98, 16);
     this.toolTipController1.SetSuperTip(this.IPPLBL16, null);
     this.IPPLBL16.TabIndex = 135;
     this.IPPLBL16.Text = "Branch Code :";
     //
     // IPPMerchantNo
     //
     this.IPPMerchantNo.EditValue = "";
     this.IPPMerchantNo.Enabled = false;
     this.IPPMerchantNo.Location = new System.Drawing.Point(184, 152);
     this.IPPMerchantNo.Name = "IPPMerchantNo";
     this.IPPMerchantNo.Properties.Appearance.BackColor = System.Drawing.Color.Transparent;
     this.IPPMerchantNo.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.IPPMerchantNo.Properties.Appearance.ForeColor = System.Drawing.Color.Black;
     this.IPPMerchantNo.Properties.Appearance.Options.UseBackColor = true;
     this.IPPMerchantNo.Properties.Appearance.Options.UseFont = true;
     this.IPPMerchantNo.Properties.Appearance.Options.UseForeColor = true;
     this.IPPMerchantNo.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.IPPMerchantNo.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.IPPMerchantNo.Properties.ReadOnly = true;
     this.IPPMerchantNo.Size = new System.Drawing.Size(166, 18);
     this.IPPMerchantNo.TabIndex = 133;
     //
     // IPPLBL8
     //
     this.IPPLBL8.AutoSize = true;
     this.IPPLBL8.BackColor = System.Drawing.Color.Transparent;
     this.IPPLBL8.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.IPPLBL8.Location = new System.Drawing.Point(32, 152);
     this.IPPLBL8.Name = "IPPLBL8";
     this.IPPLBL8.Size = new System.Drawing.Size(99, 16);
     this.toolTipController1.SetSuperTip(this.IPPLBL8, null);
     this.IPPLBL8.TabIndex = 132;
     this.IPPLBL8.Text = "Merchant No :";
     //
     // IPPLBL14
     //
     this.IPPLBL14.AutoSize = true;
     this.IPPLBL14.BackColor = System.Drawing.Color.Transparent;
     this.IPPLBL14.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.IPPLBL14.Location = new System.Drawing.Point(424, 104);
     this.IPPLBL14.Name = "IPPLBL14";
     this.IPPLBL14.Size = new System.Drawing.Size(60, 16);
     this.toolTipController1.SetSuperTip(this.IPPLBL14, null);
     this.IPPLBL14.TabIndex = 131;
     this.IPPLBL14.Text = "Status :";
     //
     // IPPLBL12
     //
     this.IPPLBL12.AutoSize = true;
     this.IPPLBL12.BackColor = System.Drawing.Color.Transparent;
     this.IPPLBL12.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.IPPLBL12.Location = new System.Drawing.Point(424, 56);
     this.IPPLBL12.Name = "IPPLBL12";
     this.IPPLBL12.Size = new System.Drawing.Size(135, 16);
     this.toolTipController1.SetSuperTip(this.IPPLBL12, null);
     this.IPPLBL12.TabIndex = 130;
     this.IPPLBL12.Text = "Date Sent to Bank :";
     //
     // IPPLBL13
     //
     this.IPPLBL13.AutoSize = true;
     this.IPPLBL13.BackColor = System.Drawing.Color.Transparent;
     this.IPPLBL13.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.IPPLBL13.Location = new System.Drawing.Point(424, 80);
     this.IPPLBL13.Name = "IPPLBL13";
     this.IPPLBL13.Size = new System.Drawing.Size(151, 16);
     this.toolTipController1.SetSuperTip(this.IPPLBL13, null);
     this.IPPLBL13.TabIndex = 129;
     this.IPPLBL13.Text = "Date Received Reply :";
     //
     // IPPLBL11
     //
     this.IPPLBL11.AutoSize = true;
     this.IPPLBL11.BackColor = System.Drawing.Color.Transparent;
     this.IPPLBL11.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.IPPLBL11.Location = new System.Drawing.Point(424, 32);
     this.IPPLBL11.Name = "IPPLBL11";
     this.IPPLBL11.Size = new System.Drawing.Size(100, 16);
     this.toolTipController1.SetSuperTip(this.IPPLBL11, null);
     this.IPPLBL11.TabIndex = 128;
     this.IPPLBL11.Text = "Nett Amount :";
     //
     // IPPLBL10
     //
     this.IPPLBL10.AutoSize = true;
     this.IPPLBL10.BackColor = System.Drawing.Color.Transparent;
     this.IPPLBL10.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.IPPLBL10.Location = new System.Drawing.Point(32, 200);
     this.IPPLBL10.Name = "IPPLBL10";
     this.IPPLBL10.Size = new System.Drawing.Size(71, 16);
     this.toolTipController1.SetSuperTip(this.IPPLBL10, null);
     this.IPPLBL10.TabIndex = 127;
     this.IPPLBL10.Text = "Interest :";
     //
     // IPPLBL9
     //
     this.IPPLBL9.AutoSize = true;
     this.IPPLBL9.BackColor = System.Drawing.Color.Transparent;
     this.IPPLBL9.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.IPPLBL9.Location = new System.Drawing.Point(32, 176);
     this.IPPLBL9.Name = "IPPLBL9";
     this.IPPLBL9.Size = new System.Drawing.Size(68, 16);
     this.toolTipController1.SetSuperTip(this.IPPLBL9, null);
     this.IPPLBL9.TabIndex = 126;
     this.IPPLBL9.Text = "Amount :";
     this.IPPLBL9.TextAlign = System.Drawing.ContentAlignment.TopCenter;
     //
     // IPPLBL7
     //
     this.IPPLBL7.AutoSize = true;
     this.IPPLBL7.BackColor = System.Drawing.Color.Transparent;
     this.IPPLBL7.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.IPPLBL7.Location = new System.Drawing.Point(424, 176);
     this.IPPLBL7.Name = "IPPLBL7";
     this.IPPLBL7.Size = new System.Drawing.Size(139, 16);
     this.toolTipController1.SetSuperTip(this.IPPLBL7, null);
     this.IPPLBL7.TabIndex = 125;
     this.IPPLBL7.Text = "Number of Months  :";
     //
     // IPPAmount
     //
     this.IPPAmount.EditValue = "";
     this.IPPAmount.Enabled = false;
     this.IPPAmount.Location = new System.Drawing.Point(184, 176);
     this.IPPAmount.Name = "IPPAmount";
     this.IPPAmount.Properties.Appearance.BackColor = System.Drawing.Color.Transparent;
     this.IPPAmount.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.IPPAmount.Properties.Appearance.ForeColor = System.Drawing.Color.Black;
     this.IPPAmount.Properties.Appearance.Options.UseBackColor = true;
     this.IPPAmount.Properties.Appearance.Options.UseFont = true;
     this.IPPAmount.Properties.Appearance.Options.UseForeColor = true;
     this.IPPAmount.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.IPPAmount.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.IPPAmount.Properties.ReadOnly = true;
     this.IPPAmount.Size = new System.Drawing.Size(166, 18);
     this.IPPAmount.TabIndex = 124;
     //
     // IPPInterest
     //
     this.IPPInterest.EditValue = "";
     this.IPPInterest.Enabled = false;
     this.IPPInterest.Location = new System.Drawing.Point(184, 200);
     this.IPPInterest.Name = "IPPInterest";
     this.IPPInterest.Properties.Appearance.BackColor = System.Drawing.Color.Transparent;
     this.IPPInterest.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.IPPInterest.Properties.Appearance.ForeColor = System.Drawing.Color.Black;
     this.IPPInterest.Properties.Appearance.Options.UseBackColor = true;
     this.IPPInterest.Properties.Appearance.Options.UseFont = true;
     this.IPPInterest.Properties.Appearance.Options.UseForeColor = true;
     this.IPPInterest.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.IPPInterest.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.IPPInterest.Properties.ReadOnly = true;
     this.IPPInterest.Size = new System.Drawing.Size(166, 18);
     this.IPPInterest.TabIndex = 123;
     //
     // IPPNettAmount
     //
     this.IPPNettAmount.EditValue = "";
     this.IPPNettAmount.Enabled = false;
     this.IPPNettAmount.Location = new System.Drawing.Point(600, 32);
     this.IPPNettAmount.Name = "IPPNettAmount";
     this.IPPNettAmount.Properties.Appearance.BackColor = System.Drawing.Color.Transparent;
     this.IPPNettAmount.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.IPPNettAmount.Properties.Appearance.ForeColor = System.Drawing.Color.Black;
     this.IPPNettAmount.Properties.Appearance.Options.UseBackColor = true;
     this.IPPNettAmount.Properties.Appearance.Options.UseFont = true;
     this.IPPNettAmount.Properties.Appearance.Options.UseForeColor = true;
     this.IPPNettAmount.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.IPPNettAmount.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.IPPNettAmount.Properties.ReadOnly = true;
     this.IPPNettAmount.Size = new System.Drawing.Size(166, 18);
     this.IPPNettAmount.TabIndex = 122;
     //
     // IPPLBL5
     //
     this.IPPLBL5.AutoSize = true;
     this.IPPLBL5.BackColor = System.Drawing.Color.Transparent;
     this.IPPLBL5.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.IPPLBL5.Location = new System.Drawing.Point(424, 128);
     this.IPPLBL5.Name = "IPPLBL5";
     this.IPPLBL5.Size = new System.Drawing.Size(84, 16);
     this.toolTipController1.SetSuperTip(this.IPPLBL5, null);
     this.IPPLBL5.TabIndex = 121;
     this.IPPLBL5.Text = "Bank Code :";
     //
     // IPPLBL6
     //
     this.IPPLBL6.AutoSize = true;
     this.IPPLBL6.BackColor = System.Drawing.Color.Transparent;
     this.IPPLBL6.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.IPPLBL6.Location = new System.Drawing.Point(424, 152);
     this.IPPLBL6.Name = "IPPLBL6";
     this.IPPLBL6.Size = new System.Drawing.Size(114, 16);
     this.toolTipController1.SetSuperTip(this.IPPLBL6, null);
     this.IPPLBL6.TabIndex = 120;
     this.IPPLBL6.Text = "Credit Card No. :";
     //
     // IPPLBL4
     //
     this.IPPLBL4.AutoSize = true;
     this.IPPLBL4.BackColor = System.Drawing.Color.Transparent;
     this.IPPLBL4.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.IPPLBL4.Location = new System.Drawing.Point(32, 104);
     this.IPPLBL4.Name = "IPPLBL4";
     this.IPPLBL4.Size = new System.Drawing.Size(108, 16);
     this.toolTipController1.SetSuperTip(this.IPPLBL4, null);
     this.IPPLBL4.TabIndex = 119;
     this.IPPLBL4.Text = "Member Name :";
     //
     // IPPLBL3
     //
     this.IPPLBL3.AutoSize = true;
     this.IPPLBL3.BackColor = System.Drawing.Color.Transparent;
     this.IPPLBL3.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.IPPLBL3.Location = new System.Drawing.Point(32, 80);
     this.IPPLBL3.Name = "IPPLBL3";
     this.IPPLBL3.Size = new System.Drawing.Size(86, 16);
     this.toolTipController1.SetSuperTip(this.IPPLBL3, null);
     this.IPPLBL3.TabIndex = 118;
     this.IPPLBL3.Text = "Member Id :";
     //
     // IPPLBL2
     //
     this.IPPLBL2.AutoSize = true;
     this.IPPLBL2.BackColor = System.Drawing.Color.Transparent;
     this.IPPLBL2.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.IPPLBL2.Location = new System.Drawing.Point(32, 56);
     this.IPPLBL2.Name = "IPPLBL2";
     this.IPPLBL2.Size = new System.Drawing.Size(104, 16);
     this.toolTipController1.SetSuperTip(this.IPPLBL2, null);
     this.IPPLBL2.TabIndex = 117;
     this.IPPLBL2.Text = "Date Created :";
     this.IPPLBL2.TextAlign = System.Drawing.ContentAlignment.TopCenter;
     //
     // IPPMemberId
     //
     this.IPPMemberId.EditValue = "";
     this.IPPMemberId.Enabled = false;
     this.IPPMemberId.Location = new System.Drawing.Point(184, 80);
     this.IPPMemberId.Name = "IPPMemberId";
     this.IPPMemberId.Properties.Appearance.BackColor = System.Drawing.Color.Transparent;
     this.IPPMemberId.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.IPPMemberId.Properties.Appearance.ForeColor = System.Drawing.Color.Black;
     this.IPPMemberId.Properties.Appearance.Options.UseBackColor = true;
     this.IPPMemberId.Properties.Appearance.Options.UseFont = true;
     this.IPPMemberId.Properties.Appearance.Options.UseForeColor = true;
     this.IPPMemberId.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.IPPMemberId.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.IPPMemberId.Properties.ReadOnly = true;
     this.IPPMemberId.Size = new System.Drawing.Size(168, 18);
     this.IPPMemberId.TabIndex = 115;
     //
     // IPPMemberName
     //
     this.IPPMemberName.EditValue = "";
     this.IPPMemberName.Enabled = false;
     this.IPPMemberName.Location = new System.Drawing.Point(184, 104);
     this.IPPMemberName.Name = "IPPMemberName";
     this.IPPMemberName.Properties.Appearance.BackColor = System.Drawing.Color.Transparent;
     this.IPPMemberName.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.IPPMemberName.Properties.Appearance.ForeColor = System.Drawing.Color.Black;
     this.IPPMemberName.Properties.Appearance.Options.UseBackColor = true;
     this.IPPMemberName.Properties.Appearance.Options.UseFont = true;
     this.IPPMemberName.Properties.Appearance.Options.UseForeColor = true;
     this.IPPMemberName.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.IPPMemberName.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.IPPMemberName.Properties.ReadOnly = true;
     this.IPPMemberName.Size = new System.Drawing.Size(168, 18);
     this.IPPMemberName.TabIndex = 114;
     //
     // IPPId
     //
     this.IPPId.EditValue = "";
     this.IPPId.Enabled = false;
     this.IPPId.Location = new System.Drawing.Point(184, 32);
     this.IPPId.Name = "IPPId";
     this.IPPId.Properties.Appearance.BackColor = System.Drawing.Color.Transparent;
     this.IPPId.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.IPPId.Properties.Appearance.ForeColor = System.Drawing.Color.Black;
     this.IPPId.Properties.Appearance.Options.UseBackColor = true;
     this.IPPId.Properties.Appearance.Options.UseFont = true;
     this.IPPId.Properties.Appearance.Options.UseForeColor = true;
     this.IPPId.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.IPPId.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.IPPId.Properties.ReadOnly = true;
     this.IPPId.Size = new System.Drawing.Size(168, 18);
     this.IPPId.TabIndex = 113;
     //
     // groupIPPReceipt
     //
     this.groupIPPReceipt.Appearance.BackColor = System.Drawing.SystemColors.Control;
     this.groupIPPReceipt.Appearance.Options.UseBackColor = true;
     this.groupIPPReceipt.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowOnly;
     this.groupIPPReceipt.Controls.Add(this.btnReceiptUnlink);
     this.groupIPPReceipt.Controls.Add(this.btnReceiptLink);
     this.groupIPPReceipt.Controls.Add(this.gridReceipt);
     this.groupIPPReceipt.Controls.Add(this.label10);
     this.groupIPPReceipt.Controls.Add(this.IPPReceiptStatus);
     this.groupIPPReceipt.ImeMode = System.Windows.Forms.ImeMode.On;
     this.groupIPPReceipt.Location = new System.Drawing.Point(8, 320);
     this.groupIPPReceipt.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.groupIPPReceipt.LookAndFeel.UseDefaultLookAndFeel = false;
     this.groupIPPReceipt.Name = "groupIPPReceipt";
     this.groupIPPReceipt.Size = new System.Drawing.Size(992, 240);
     this.toolTipController1.SetSuperTip(this.groupIPPReceipt, null);
     this.groupIPPReceipt.TabIndex = 17;
     this.groupIPPReceipt.Text = "Receipt Entry";
     //
     // btnReceiptUnlink
     //
     this.btnReceiptUnlink.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.btnReceiptUnlink.Appearance.Options.UseFont = true;
     this.btnReceiptUnlink.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnReceiptUnlink.Location = new System.Drawing.Point(272, 24);
     this.btnReceiptUnlink.Name = "btnReceiptUnlink";
     this.btnReceiptUnlink.Size = new System.Drawing.Size(67, 20);
     this.btnReceiptUnlink.TabIndex = 128;
     this.btnReceiptUnlink.Text = "Unlink";
     this.btnReceiptUnlink.Click += new System.EventHandler(this.btnReceiptUnlink_Click);
     //
     // btnReceiptLink
     //
     this.btnReceiptLink.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.btnReceiptLink.Appearance.Options.UseFont = true;
     this.btnReceiptLink.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnReceiptLink.Enabled = false;
     this.btnReceiptLink.Location = new System.Drawing.Point(200, 24);
     this.btnReceiptLink.Name = "btnReceiptLink";
     this.btnReceiptLink.Size = new System.Drawing.Size(67, 20);
     this.btnReceiptLink.TabIndex = 127;
     this.btnReceiptLink.Text = "Link";
     this.btnReceiptLink.Click += new System.EventHandler(this.btnReceiptLink_Click);
     //
     // gridReceipt
     //
     this.gridReceipt.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.gridReceipt.EmbeddedNavigator.Name = "";
     gridLevelNode2.RelationName = "Level1";
     this.gridReceipt.LevelTree.Nodes.AddRange(new DevExpress.XtraGrid.GridLevelNode[] {
     gridLevelNode2});
     this.gridReceipt.Location = new System.Drawing.Point(2, 54);
     this.gridReceipt.LookAndFeel.UseDefaultLookAndFeel = false;
     this.gridReceipt.MainView = this.IPPReceiptView;
     this.gridReceipt.Name = "gridReceipt";
     this.gridReceipt.Size = new System.Drawing.Size(988, 184);
     this.gridReceipt.TabIndex = 126;
     this.gridReceipt.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.IPPReceiptView});
     //
     // IPPReceiptView
     //
     this.IPPReceiptView.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumnIPPR,
     this.gridColumnIPPR1,
     this.gridColumnIPPR2,
     this.gridColumnIPPR3,
     this.gridColumnIPPR4,
     this.gridColumnIPPR5,
     this.gridColumnIPPR6,
     this.gridColumnIPPR7,
     this.gridColumnIPPR8,
     this.gridColumnIPPR9});
     this.IPPReceiptView.GridControl = this.gridReceipt;
     this.IPPReceiptView.Name = "IPPReceiptView";
     this.IPPReceiptView.OptionsBehavior.Editable = false;
     this.IPPReceiptView.OptionsCustomization.AllowFilter = false;
     this.IPPReceiptView.OptionsCustomization.AllowSort = false;
     this.IPPReceiptView.OptionsView.ShowFilterPanelMode = DevExpress.XtraGrid.Views.Base.ShowFilterPanelMode.Never;
     this.IPPReceiptView.OptionsView.ShowGroupPanel = false;
     //
     // gridColumnIPPR
     //
     this.gridColumnIPPR.Caption = "IPP ID";
     this.gridColumnIPPR.FieldName = "nIPPID";
     this.gridColumnIPPR.Name = "gridColumnIPPR";
     //
     // gridColumnIPPR1
     //
     this.gridColumnIPPR1.Caption = "Date";
     this.gridColumnIPPR1.FieldName = "dtDate";
     this.gridColumnIPPR1.Name = "gridColumnIPPR1";
     this.gridColumnIPPR1.Visible = true;
     this.gridColumnIPPR1.VisibleIndex = 0;
     this.gridColumnIPPR1.Width = 109;
     //
     // gridColumnIPPR2
     //
     this.gridColumnIPPR2.Caption = "Receipt No";
     this.gridColumnIPPR2.FieldName = "strReceiptNo";
     this.gridColumnIPPR2.Name = "gridColumnIPPR2";
     this.gridColumnIPPR2.Visible = true;
     this.gridColumnIPPR2.VisibleIndex = 1;
     this.gridColumnIPPR2.Width = 109;
     //
     // gridColumnIPPR3
     //
     this.gridColumnIPPR3.Caption = "Category";
     this.gridColumnIPPR3.FieldName = "Category";
     this.gridColumnIPPR3.Name = "gridColumnIPPR3";
     this.gridColumnIPPR3.Visible = true;
     this.gridColumnIPPR3.VisibleIndex = 2;
     this.gridColumnIPPR3.Width = 109;
     //
     // gridColumnIPPR4
     //
     this.gridColumnIPPR4.Caption = "Nett";
     this.gridColumnIPPR4.FieldName = "mNettAmount";
     this.gridColumnIPPR4.Name = "gridColumnIPPR4";
     this.gridColumnIPPR4.Visible = true;
     this.gridColumnIPPR4.VisibleIndex = 3;
     this.gridColumnIPPR4.Width = 109;
     //
     // gridColumnIPPR5
     //
     this.gridColumnIPPR5.Caption = "GST";
     this.gridColumnIPPR5.FieldName = "mGSTAmount";
     this.gridColumnIPPR5.Name = "gridColumnIPPR5";
     this.gridColumnIPPR5.Visible = true;
     this.gridColumnIPPR5.VisibleIndex = 4;
     this.gridColumnIPPR5.Width = 64;
     //
     // gridColumnIPPR6
     //
     this.gridColumnIPPR6.Caption = "Total";
     this.gridColumnIPPR6.FieldName = "mTotalAmount";
     this.gridColumnIPPR6.Name = "gridColumnIPPR6";
     this.gridColumnIPPR6.Visible = true;
     this.gridColumnIPPR6.VisibleIndex = 5;
     this.gridColumnIPPR6.Width = 123;
     //
     // gridColumnIPPR7
     //
     this.gridColumnIPPR7.Caption = "O/S Amount";
     this.gridColumnIPPR7.FieldName = "mGSTAmount";
     this.gridColumnIPPR7.Name = "gridColumnIPPR7";
     this.gridColumnIPPR7.Visible = true;
     this.gridColumnIPPR7.VisibleIndex = 6;
     this.gridColumnIPPR7.Width = 85;
     //
     // gridColumnIPPR8
     //
     this.gridColumnIPPR8.Caption = "Member";
     this.gridColumnIPPR8.FieldName = "SalesPerson";
     this.gridColumnIPPR8.Name = "gridColumnIPPR8";
     this.gridColumnIPPR8.Visible = true;
     this.gridColumnIPPR8.VisibleIndex = 7;
     this.gridColumnIPPR8.Width = 167;
     //
     // gridColumnIPPR9
     //
     this.gridColumnIPPR9.Caption = "Payment ID";
     this.gridColumnIPPR9.FieldName = "nPaymentID";
     this.gridColumnIPPR9.Name = "gridColumnIPPR9";
     this.gridColumnIPPR9.Visible = true;
     this.gridColumnIPPR9.VisibleIndex = 8;
     //
     // label10
     //
     this.label10.BackColor = System.Drawing.Color.Transparent;
     this.label10.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label10.Location = new System.Drawing.Point(16, 24);
     this.label10.Name = "label10";
     this.label10.Size = new System.Drawing.Size(56, 16);
     this.toolTipController1.SetSuperTip(this.label10, null);
     this.label10.TabIndex = 125;
     this.label10.Text = "Status";
     this.label10.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // IPPReceiptStatus
     //
     this.IPPReceiptStatus.EditValue = 0;
     this.IPPReceiptStatus.Location = new System.Drawing.Point(80, 24);
     this.IPPReceiptStatus.Name = "IPPReceiptStatus";
     this.IPPReceiptStatus.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.IPPReceiptStatus.Properties.Items.AddRange(new DevExpress.XtraEditors.Controls.ImageComboBoxItem[] {
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Linked", 0, -1),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Unlink", 1, -1)});
     this.IPPReceiptStatus.Size = new System.Drawing.Size(100, 20);
     this.IPPReceiptStatus.TabIndex = 24;
     this.IPPReceiptStatus.SelectedIndexChanged += new System.EventHandler(this.IPPReceiptStatus_SelectedIndexChanged);
     //
     // groupGIROMaster
     //
     this.groupGIROMaster.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowOnly;
     this.groupGIROMaster.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.groupGIROMaster.Controls.Add(this.xtraTabControl1);
     this.groupGIROMaster.Controls.Add(this.GroupGiro);
     this.groupGIROMaster.ImeMode = System.Windows.Forms.ImeMode.On;
     this.groupGIROMaster.Location = new System.Drawing.Point(0, 32);
     this.groupGIROMaster.Name = "groupGIROMaster";
     this.groupGIROMaster.Size = new System.Drawing.Size(1007, 608);
     this.toolTipController1.SetSuperTip(this.groupGIROMaster, null);
     this.groupGIROMaster.TabIndex = 24;
     //
     // xtraTabControl1
     //
     this.xtraTabControl1.AppearancePage.Header.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xtraTabControl1.AppearancePage.Header.Options.UseFont = true;
     this.xtraTabControl1.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.xtraTabControl1.Location = new System.Drawing.Point(0, 344);
     this.xtraTabControl1.LookAndFeel.UseDefaultLookAndFeel = false;
     this.xtraTabControl1.Name = "xtraTabControl1";
     this.xtraTabControl1.SelectedTabPage = this.tabGiroDetails;
     this.xtraTabControl1.Size = new System.Drawing.Size(1007, 264);
     this.xtraTabControl1.TabIndex = 36;
     this.xtraTabControl1.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
     this.tabGiroDetails,
     this.tabGiroTrnsHistory});
     this.xtraTabControl1.Text = "xtraTabControl1";
     //
     // tabGiroDetails
     //
     this.tabGiroDetails.Controls.Add(this.luedtBankBranch);
     this.tabGiroDetails.Controls.Add(this.luedtBank);
     this.tabGiroDetails.Controls.Add(this.luedtPackage);
     this.tabGiroDetails.Controls.Add(this.luedtBranch);
     this.tabGiroDetails.Controls.Add(this.label70);
     this.tabGiroDetails.Controls.Add(this.txtPackageDesc);
     this.tabGiroDetails.Controls.Add(this.txtAccountNo);
     this.tabGiroDetails.Controls.Add(this.txtGIROId);
     this.tabGiroDetails.Controls.Add(this.txtRemark);
     this.tabGiroDetails.Controls.Add(this.lblGiro_BankBranch);
     this.tabGiroDetails.Controls.Add(this.lblGiro_BankACNumber);
     this.tabGiroDetails.Controls.Add(this.lblGiro_BankCode);
     this.tabGiroDetails.Controls.Add(this.lblGiro_Remark);
     this.tabGiroDetails.Controls.Add(this.lblGiro_Package);
     this.tabGiroDetails.Controls.Add(this.lblGiro_Branch);
     this.tabGiroDetails.Controls.Add(this.lblGiro_MemberID);
     this.tabGiroDetails.Controls.Add(this.lblGiroID);
     this.tabGiroDetails.Name = "tabGiroDetails";
     this.tabGiroDetails.Size = new System.Drawing.Size(998, 230);
     this.tabGiroDetails.Text = "Giro Details";
     //
     // luedtBankBranch
     //
     this.luedtBankBranch.Location = new System.Drawing.Point(520, 40);
     this.luedtBankBranch.Name = "luedtBankBranch";
     this.luedtBankBranch.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.luedtBankBranch.Size = new System.Drawing.Size(184, 20);
     this.luedtBankBranch.TabIndex = 142;
     //
     // luedtBank
     //
     this.luedtBank.Location = new System.Drawing.Point(520, 16);
     this.luedtBank.Name = "luedtBank";
     this.luedtBank.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.luedtBank.Size = new System.Drawing.Size(184, 20);
     this.luedtBank.TabIndex = 141;
     //
     // luedtPackage
     //
     this.luedtPackage.Location = new System.Drawing.Point(176, 88);
     this.luedtPackage.Name = "luedtPackage";
     this.luedtPackage.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.luedtPackage.Size = new System.Drawing.Size(184, 20);
     this.luedtPackage.TabIndex = 140;
     //
     // luedtBranch
     //
     this.luedtBranch.Location = new System.Drawing.Point(176, 64);
     this.luedtBranch.Name = "luedtBranch";
     this.luedtBranch.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.luedtBranch.Size = new System.Drawing.Size(184, 20);
     this.luedtBranch.TabIndex = 139;
     //
     // label70
     //
     this.label70.BackColor = System.Drawing.Color.Transparent;
     this.label70.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label70.Location = new System.Drawing.Point(32, 112);
     this.label70.Name = "label70";
     this.label70.Size = new System.Drawing.Size(144, 16);
     this.toolTipController1.SetSuperTip(this.label70, null);
     this.label70.TabIndex = 119;
     this.label70.Text = "Package Description";
     this.label70.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // txtPackageDesc
     //
     this.txtPackageDesc.EditValue = "";
     this.txtPackageDesc.ImeMode = System.Windows.Forms.ImeMode.On;
     this.txtPackageDesc.Location = new System.Drawing.Point(176, 112);
     this.txtPackageDesc.Name = "txtPackageDesc";
     this.txtPackageDesc.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtPackageDesc.Properties.Appearance.Options.UseFont = true;
     this.txtPackageDesc.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.txtPackageDesc.Size = new System.Drawing.Size(184, 20);
     this.txtPackageDesc.TabIndex = 117;
     //
     // txtAccountNo
     //
     this.txtAccountNo.EditValue = "";
     this.txtAccountNo.ImeMode = System.Windows.Forms.ImeMode.On;
     this.txtAccountNo.Location = new System.Drawing.Point(520, 64);
     this.txtAccountNo.Name = "txtAccountNo";
     this.txtAccountNo.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtAccountNo.Properties.Appearance.Options.UseFont = true;
     this.txtAccountNo.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.txtAccountNo.Size = new System.Drawing.Size(184, 20);
     this.txtAccountNo.TabIndex = 116;
     //
     // txtGIROId
     //
     this.txtGIROId.EditValue = "";
     this.txtGIROId.ImeMode = System.Windows.Forms.ImeMode.On;
     this.txtGIROId.Location = new System.Drawing.Point(176, 16);
     this.txtGIROId.Name = "txtGIROId";
     this.txtGIROId.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtGIROId.Properties.Appearance.Options.UseFont = true;
     this.txtGIROId.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.txtGIROId.Size = new System.Drawing.Size(184, 20);
     this.txtGIROId.TabIndex = 111;
     //
     // txtRemark
     //
     this.txtRemark.EditValue = "";
     this.txtRemark.Location = new System.Drawing.Point(176, 136);
     this.txtRemark.Name = "txtRemark";
     this.txtRemark.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtRemark.Properties.Appearance.Options.UseFont = true;
     this.txtRemark.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.txtRemark.Size = new System.Drawing.Size(528, 56);
     this.txtRemark.TabIndex = 110;
     //
     // lblGiro_BankBranch
     //
     this.lblGiro_BankBranch.BackColor = System.Drawing.Color.Transparent;
     this.lblGiro_BankBranch.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblGiro_BankBranch.Location = new System.Drawing.Point(392, 40);
     this.lblGiro_BankBranch.Name = "lblGiro_BankBranch";
     this.lblGiro_BankBranch.Size = new System.Drawing.Size(128, 16);
     this.toolTipController1.SetSuperTip(this.lblGiro_BankBranch, null);
     this.lblGiro_BankBranch.TabIndex = 101;
     this.lblGiro_BankBranch.Text = "Bank Branch";
     this.lblGiro_BankBranch.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // lblGiro_BankACNumber
     //
     this.lblGiro_BankACNumber.BackColor = System.Drawing.Color.Transparent;
     this.lblGiro_BankACNumber.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblGiro_BankACNumber.Location = new System.Drawing.Point(392, 64);
     this.lblGiro_BankACNumber.Name = "lblGiro_BankACNumber";
     this.lblGiro_BankACNumber.Size = new System.Drawing.Size(128, 16);
     this.toolTipController1.SetSuperTip(this.lblGiro_BankACNumber, null);
     this.lblGiro_BankACNumber.TabIndex = 100;
     this.lblGiro_BankACNumber.Text = "Account Number";
     this.lblGiro_BankACNumber.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // lblGiro_BankCode
     //
     this.lblGiro_BankCode.BackColor = System.Drawing.Color.Transparent;
     this.lblGiro_BankCode.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblGiro_BankCode.Location = new System.Drawing.Point(392, 16);
     this.lblGiro_BankCode.Name = "lblGiro_BankCode";
     this.lblGiro_BankCode.Size = new System.Drawing.Size(128, 16);
     this.toolTipController1.SetSuperTip(this.lblGiro_BankCode, null);
     this.lblGiro_BankCode.TabIndex = 99;
     this.lblGiro_BankCode.Text = "Bank Code/Name";
     this.lblGiro_BankCode.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // lblGiro_Remark
     //
     this.lblGiro_Remark.BackColor = System.Drawing.Color.Transparent;
     this.lblGiro_Remark.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblGiro_Remark.Location = new System.Drawing.Point(32, 144);
     this.lblGiro_Remark.Name = "lblGiro_Remark";
     this.lblGiro_Remark.Size = new System.Drawing.Size(128, 16);
     this.toolTipController1.SetSuperTip(this.lblGiro_Remark, null);
     this.lblGiro_Remark.TabIndex = 98;
     this.lblGiro_Remark.Text = "Remark";
     this.lblGiro_Remark.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // lblGiro_Package
     //
     this.lblGiro_Package.BackColor = System.Drawing.Color.Transparent;
     this.lblGiro_Package.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblGiro_Package.Location = new System.Drawing.Point(32, 88);
     this.lblGiro_Package.Name = "lblGiro_Package";
     this.lblGiro_Package.Size = new System.Drawing.Size(144, 16);
     this.toolTipController1.SetSuperTip(this.lblGiro_Package, null);
     this.lblGiro_Package.TabIndex = 97;
     this.lblGiro_Package.Text = "Package";
     this.lblGiro_Package.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // lblGiro_Branch
     //
     this.lblGiro_Branch.BackColor = System.Drawing.Color.Transparent;
     this.lblGiro_Branch.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblGiro_Branch.Location = new System.Drawing.Point(32, 64);
     this.lblGiro_Branch.Name = "lblGiro_Branch";
     this.lblGiro_Branch.Size = new System.Drawing.Size(144, 16);
     this.toolTipController1.SetSuperTip(this.lblGiro_Branch, null);
     this.lblGiro_Branch.TabIndex = 96;
     this.lblGiro_Branch.Text = "Branch";
     this.lblGiro_Branch.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // lblGiro_MemberID
     //
     this.lblGiro_MemberID.BackColor = System.Drawing.Color.Transparent;
     this.lblGiro_MemberID.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblGiro_MemberID.Location = new System.Drawing.Point(32, 40);
     this.lblGiro_MemberID.Name = "lblGiro_MemberID";
     this.lblGiro_MemberID.Size = new System.Drawing.Size(144, 16);
     this.toolTipController1.SetSuperTip(this.lblGiro_MemberID, null);
     this.lblGiro_MemberID.TabIndex = 95;
     this.lblGiro_MemberID.Text = "Member ID /Name";
     this.lblGiro_MemberID.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // lblGiroID
     //
     this.lblGiroID.BackColor = System.Drawing.Color.Transparent;
     this.lblGiroID.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblGiroID.Location = new System.Drawing.Point(32, 16);
     this.lblGiroID.Name = "lblGiroID";
     this.lblGiroID.Size = new System.Drawing.Size(144, 16);
     this.toolTipController1.SetSuperTip(this.lblGiroID, null);
     this.lblGiroID.TabIndex = 93;
     this.lblGiroID.Text = "Giro ID";
     this.lblGiroID.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // tabGiroTrnsHistory
     //
     this.tabGiroTrnsHistory.Controls.Add(this.GridTransaction);
     this.tabGiroTrnsHistory.Name = "tabGiroTrnsHistory";
     this.tabGiroTrnsHistory.Size = new System.Drawing.Size(998, 230);
     this.tabGiroTrnsHistory.Text = "Transaction History";
     //
     // GridTransaction
     //
     this.GridTransaction.Dock = System.Windows.Forms.DockStyle.Fill;
     this.GridTransaction.EmbeddedNavigator.Name = "";
     this.GridTransaction.Location = new System.Drawing.Point(0, 0);
     this.GridTransaction.LookAndFeel.UseDefaultLookAndFeel = false;
     this.GridTransaction.MainView = this.gridView4;
     this.GridTransaction.Name = "GridTransaction";
     this.GridTransaction.Size = new System.Drawing.Size(998, 230);
     this.GridTransaction.TabIndex = 0;
     this.GridTransaction.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridView4});
     //
     // gridView4
     //
     this.gridView4.GridControl = this.GridTransaction;
     this.gridView4.Name = "gridView4";
     this.gridView4.OptionsBehavior.Editable = false;
     this.gridView4.OptionsCustomization.AllowFilter = false;
     this.gridView4.OptionsCustomization.AllowSort = false;
     //
     // GroupGiro
     //
     this.GroupGiro.Appearance.BackColor = System.Drawing.SystemColors.Control;
     this.GroupGiro.Appearance.Options.UseBackColor = true;
     this.GroupGiro.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowOnly;
     this.GroupGiro.Controls.Add(this.comboBoxGiroStatus);
     this.GroupGiro.Controls.Add(this.label63);
     this.GroupGiro.Controls.Add(this.btnImport);
     this.GroupGiro.Controls.Add(this.btnGiroExport);
     this.GroupGiro.Controls.Add(this.btnGiroUpdate);
     this.GroupGiro.Controls.Add(this.btnGiroDelete);
     this.GroupGiro.Controls.Add(this.btnGiroNew);
     this.GroupGiro.Controls.Add(this.GiroGrid);
     this.GroupGiro.ImeMode = System.Windows.Forms.ImeMode.On;
     this.GroupGiro.Location = new System.Drawing.Point(4, 0);
     this.GroupGiro.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.GroupGiro.LookAndFeel.UseDefaultLookAndFeel = false;
     this.GroupGiro.Name = "GroupGiro";
     this.GroupGiro.Size = new System.Drawing.Size(996, 336);
     this.toolTipController1.SetSuperTip(this.GroupGiro, null);
     this.GroupGiro.TabIndex = 19;
     this.GroupGiro.Text = "GIRO";
     //
     // comboBoxGiroStatus
     //
     this.comboBoxGiroStatus.EditValue = 1;
     this.comboBoxGiroStatus.Location = new System.Drawing.Point(8, 40);
     this.comboBoxGiroStatus.Name = "comboBoxGiroStatus";
     this.comboBoxGiroStatus.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.comboBoxGiroStatus.Properties.Items.AddRange(new DevExpress.XtraEditors.Controls.ImageComboBoxItem[] {
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Pending Approval", 1, -1),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Active", 2, -1),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Rejected", 3, -1),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Deleted", 4, -1)});
     this.comboBoxGiroStatus.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.comboBoxGiroStatus.Size = new System.Drawing.Size(128, 20);
     this.comboBoxGiroStatus.TabIndex = 35;
     this.comboBoxGiroStatus.SelectedIndexChanged += new System.EventHandler(this.comboBoxGiroStatus_SelectedIndexChanged);
     //
     // label63
     //
     this.label63.BackColor = System.Drawing.Color.Transparent;
     this.label63.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label63.Location = new System.Drawing.Point(8, 24);
     this.label63.Name = "label63";
     this.label63.Size = new System.Drawing.Size(100, 16);
     this.toolTipController1.SetSuperTip(this.label63, null);
     this.label63.TabIndex = 34;
     this.label63.Text = "Filter by Status";
     //
     // btnImport
     //
     this.btnImport.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.btnImport.Appearance.Options.UseFont = true;
     this.btnImport.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnImport.Location = new System.Drawing.Point(264, 48);
     this.btnImport.Name = "btnImport";
     this.btnImport.Size = new System.Drawing.Size(72, 18);
     this.btnImport.TabIndex = 12;
     this.btnImport.Text = "Import";
     this.btnImport.Click += new System.EventHandler(this.btnImport_Click);
     //
     // btnGiroExport
     //
     this.btnGiroExport.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.btnGiroExport.Appearance.Options.UseFont = true;
     this.btnGiroExport.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnGiroExport.Location = new System.Drawing.Point(192, 48);
     this.btnGiroExport.Name = "btnGiroExport";
     this.btnGiroExport.Size = new System.Drawing.Size(64, 18);
     this.btnGiroExport.TabIndex = 11;
     this.btnGiroExport.Text = "Export";
     this.btnGiroExport.Click += new System.EventHandler(this.btnGiroExport_Click);
     //
     // btnGiroUpdate
     //
     this.btnGiroUpdate.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.btnGiroUpdate.Appearance.Options.UseFont = true;
     this.btnGiroUpdate.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnGiroUpdate.Location = new System.Drawing.Point(344, 24);
     this.btnGiroUpdate.Name = "btnGiroUpdate";
     this.btnGiroUpdate.Size = new System.Drawing.Size(64, 18);
     this.btnGiroUpdate.TabIndex = 10;
     this.btnGiroUpdate.Text = "Update";
     this.btnGiroUpdate.Click += new System.EventHandler(this.btnGiroUpdate_Click);
     //
     // btnGiroDelete
     //
     this.btnGiroDelete.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.btnGiroDelete.Appearance.Options.UseFont = true;
     this.btnGiroDelete.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnGiroDelete.Location = new System.Drawing.Point(264, 24);
     this.btnGiroDelete.Name = "btnGiroDelete";
     this.btnGiroDelete.Size = new System.Drawing.Size(72, 18);
     this.btnGiroDelete.TabIndex = 5;
     this.btnGiroDelete.Text = "Delete";
     this.btnGiroDelete.Click += new System.EventHandler(this.btnGiroDelete_Click);
     //
     // btnGiroNew
     //
     this.btnGiroNew.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.btnGiroNew.Appearance.Options.UseFont = true;
     this.btnGiroNew.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnGiroNew.Location = new System.Drawing.Point(192, 24);
     this.btnGiroNew.Name = "btnGiroNew";
     this.btnGiroNew.Size = new System.Drawing.Size(64, 18);
     this.btnGiroNew.TabIndex = 2;
     this.btnGiroNew.Text = "New";
     this.btnGiroNew.Click += new System.EventHandler(this.btnGiroNew_Click);
     //
     // GiroGrid
     //
     this.GiroGrid.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.GiroGrid.EmbeddedNavigator.Name = "";
     gridLevelNode3.RelationName = "Level1";
     this.GiroGrid.LevelTree.Nodes.AddRange(new DevExpress.XtraGrid.GridLevelNode[] {
     gridLevelNode3});
     this.GiroGrid.Location = new System.Drawing.Point(2, 78);
     this.GiroGrid.LookAndFeel.UseDefaultLookAndFeel = false;
     this.GiroGrid.MainView = this.GIROGridView;
     this.GiroGrid.Name = "GiroGrid";
     this.GiroGrid.Size = new System.Drawing.Size(992, 256);
     this.GiroGrid.TabIndex = 0;
     this.GiroGrid.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.GIROGridView});
     //
     // GIROGridView
     //
     this.GIROGridView.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn1,
     this.gridColumn2,
     this.gridColumn3,
     this.gridColumn4,
     this.gridColumn5,
     this.gridColumn6,
     this.gridColumn7});
     this.GIROGridView.GridControl = this.GiroGrid;
     this.GIROGridView.Name = "GIROGridView";
     this.GIROGridView.OptionsBehavior.Editable = false;
     this.GIROGridView.OptionsCustomization.AllowFilter = false;
     this.GIROGridView.OptionsSelection.MultiSelect = true;
     this.GIROGridView.OptionsView.ShowGroupPanel = false;
     //
     // gridColumn1
     //
     this.gridColumn1.Caption = "Giro Id";
     this.gridColumn1.FieldName = "nGIRORefID";
     this.gridColumn1.Name = "gridColumn1";
     this.gridColumn1.Visible = true;
     this.gridColumn1.VisibleIndex = 0;
     //
     // gridColumn2
     //
     this.gridColumn2.Caption = "Date";
     this.gridColumn2.FieldName = "dtDate";
     this.gridColumn2.Name = "gridColumn2";
     this.gridColumn2.Visible = true;
     this.gridColumn2.VisibleIndex = 1;
     //
     // gridColumn3
     //
     this.gridColumn3.Caption = "Member ID";
     this.gridColumn3.FieldName = "strMembershipID";
     this.gridColumn3.Name = "gridColumn3";
     this.gridColumn3.Visible = true;
     this.gridColumn3.VisibleIndex = 2;
     //
     // gridColumn4
     //
     this.gridColumn4.Caption = "Member Name";
     this.gridColumn4.FieldName = "strMemberName";
     this.gridColumn4.Name = "gridColumn4";
     this.gridColumn4.Visible = true;
     this.gridColumn4.VisibleIndex = 3;
     //
     // gridColumn5
     //
     this.gridColumn5.Caption = "Branch";
     this.gridColumn5.FieldName = "strBranchCode";
     this.gridColumn5.Name = "gridColumn5";
     this.gridColumn5.Visible = true;
     this.gridColumn5.VisibleIndex = 4;
     //
     // gridColumn6
     //
     this.gridColumn6.Caption = "Package Code";
     this.gridColumn6.FieldName = "strPackageCode";
     this.gridColumn6.Name = "gridColumn6";
     this.gridColumn6.Visible = true;
     this.gridColumn6.VisibleIndex = 5;
     //
     // gridColumn7
     //
     this.gridColumn7.Caption = "Package Description";
     this.gridColumn7.FieldName = "strDescription";
     this.gridColumn7.Name = "gridColumn7";
     this.gridColumn7.Visible = true;
     this.gridColumn7.VisibleIndex = 6;
     //
     // tabManagerTwo
     //
     this.tabManagerTwo.Controls.Add(this.GrpPayroll);
     this.tabManagerTwo.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.tabManagerTwo.Name = "tabManagerTwo";
     this.tabManagerTwo.PageVisible = false;
     this.tabManagerTwo.Size = new System.Drawing.Size(1007, 637);
     this.tabManagerTwo.Text = "Payroll";
     //
     // GrpPayroll
     //
     this.GrpPayroll.Appearance.BackColor = System.Drawing.SystemColors.Control;
     this.GrpPayroll.Appearance.Options.UseBackColor = true;
     this.GrpPayroll.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowOnly;
     this.GrpPayroll.Controls.Add(this.progressBarControl1);
     this.GrpPayroll.Controls.Add(this.cbJob);
     this.GrpPayroll.Controls.Add(this.label8);
     this.GrpPayroll.Controls.Add(this.grpGridExcel);
     this.GrpPayroll.Controls.Add(this.btnPayrollExport);
     this.GrpPayroll.Controls.Add(this.btnPayrollGenerate);
     this.GrpPayroll.Controls.Add(this.btnPayrollDelete);
     this.GrpPayroll.Controls.Add(this.comboBoxEditMTH);
     this.GrpPayroll.Controls.Add(this.comboBoxEditYR);
     this.GrpPayroll.Controls.Add(this.lblYear);
     this.GrpPayroll.Controls.Add(this.lblMonth);
     this.GrpPayroll.Controls.Add(this.cmbxPayroll);
     this.GrpPayroll.Controls.Add(this.gridPayroll);
     this.GrpPayroll.Location = new System.Drawing.Point(0, 0);
     this.GrpPayroll.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.GrpPayroll.LookAndFeel.UseDefaultLookAndFeel = false;
     this.GrpPayroll.Name = "GrpPayroll";
     this.GrpPayroll.Size = new System.Drawing.Size(994, 616);
     this.toolTipController1.SetSuperTip(this.GrpPayroll, null);
     this.GrpPayroll.TabIndex = 0;
     this.GrpPayroll.Text = "PAYROLL";
     //
     // progressBarControl1
     //
     this.progressBarControl1.Location = new System.Drawing.Point(784, 24);
     this.progressBarControl1.Name = "progressBarControl1";
     this.progressBarControl1.Properties.ShowTitle = true;
     this.progressBarControl1.Size = new System.Drawing.Size(200, 16);
     this.progressBarControl1.TabIndex = 17;
     this.progressBarControl1.Visible = false;
     //
     // cbJob
     //
     this.cbJob.Location = new System.Drawing.Point(432, 24);
     this.cbJob.Name = "cbJob";
     this.cbJob.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Style3D;
     this.cbJob.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cbJob.Size = new System.Drawing.Size(128, 22);
     this.cbJob.TabIndex = 16;
     this.cbJob.SelectedIndexChanged += new System.EventHandler(this.cbJob_SelectedIndexChanged);
     //
     // label8
     //
     this.label8.BackColor = System.Drawing.Color.Transparent;
     this.label8.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label8.ForeColor = System.Drawing.Color.Black;
     this.label8.Location = new System.Drawing.Point(344, 24);
     this.label8.Name = "label8";
     this.label8.Size = new System.Drawing.Size(72, 16);
     this.toolTipController1.SetSuperTip(this.label8, null);
     this.label8.TabIndex = 15;
     this.label8.Text = "Job Position";
     //
     // grpGridExcel
     //
     this.grpGridExcel.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowOnly;
     this.grpGridExcel.Controls.Add(this.gridExcel);
     this.grpGridExcel.Location = new System.Drawing.Point(72, 144);
     this.grpGridExcel.Name = "grpGridExcel";
     this.grpGridExcel.Size = new System.Drawing.Size(544, 176);
     this.toolTipController1.SetSuperTip(this.grpGridExcel, null);
     this.grpGridExcel.TabIndex = 13;
     this.grpGridExcel.Text = "groupControl1";
     this.grpGridExcel.Visible = false;
     //
     // gridExcel
     //
     this.gridExcel.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.gridExcel.EmbeddedNavigator.Name = "";
     this.gridExcel.Location = new System.Drawing.Point(2, 30);
     this.gridExcel.MainView = this.gridViewExcel;
     this.gridExcel.Name = "gridExcel";
     this.gridExcel.Size = new System.Drawing.Size(540, 144);
     this.gridExcel.TabIndex = 12;
     this.gridExcel.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewExcel});
     this.gridExcel.Visible = false;
     //
     // gridViewExcel
     //
     this.gridViewExcel.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn19,
     this.FirstPayDate,
     this.gridColumn24,
     this.gridColumn25,
     this.gridColumn26,
     this.gridColumn27,
     this.gridColumn28,
     this.gridColumn29,
     this.gridColumn30,
     this.gridColumn31,
     this.gridColumn32,
     this.gridColumn33,
     this.gridColumn34,
     this.gridColumn35,
     this.gridColumn36,
     this.SecondPayDate});
     this.gridViewExcel.GridControl = this.gridExcel;
     this.gridViewExcel.Name = "gridViewExcel";
     this.gridViewExcel.OptionsBehavior.Editable = false;
     this.gridViewExcel.OptionsCustomization.AllowFilter = false;
     this.gridViewExcel.OptionsView.ColumnAutoWidth = false;
     this.gridViewExcel.OptionsView.ShowGroupPanel = false;
     //
     // gridColumn19
     //
     this.gridColumn19.Caption = "Emp ID";
     this.gridColumn19.FieldName = "nEmployeeID";
     this.gridColumn19.Name = "gridColumn19";
     this.gridColumn19.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
     this.gridColumn19.Visible = true;
     this.gridColumn19.VisibleIndex = 0;
     this.gridColumn19.Width = 68;
     //
     // FirstPayDate
     //
     this.FirstPayDate.Caption = "Payroll Date";
     this.FirstPayDate.FieldName = "dtFirstRunDate";
     this.FirstPayDate.Name = "FirstPayDate";
     this.FirstPayDate.Visible = true;
     this.FirstPayDate.VisibleIndex = 1;
     this.FirstPayDate.Width = 76;
     //
     // gridColumn24
     //
     this.gridColumn24.Caption = "OT-1.5 (HRS)";
     this.gridColumn24.FieldName = "nNormalOT";
     this.gridColumn24.Name = "gridColumn24";
     this.gridColumn24.Visible = true;
     this.gridColumn24.VisibleIndex = 2;
     this.gridColumn24.Width = 77;
     //
     // gridColumn25
     //
     this.gridColumn25.Caption = "OT-1.0 (DAYS)";
     this.gridColumn25.FieldName = "nPublicHolidayOT";
     this.gridColumn25.Name = "gridColumn25";
     this.gridColumn25.Visible = true;
     this.gridColumn25.VisibleIndex = 3;
     this.gridColumn25.Width = 83;
     //
     // gridColumn26
     //
     this.gridColumn26.Caption = "OT-2.0 (DAYS)";
     this.gridColumn26.FieldName = "nOffDayOT";
     this.gridColumn26.Name = "gridColumn26";
     this.gridColumn26.Visible = true;
     this.gridColumn26.VisibleIndex = 4;
     this.gridColumn26.Width = 82;
     //
     // gridColumn27
     //
     this.gridColumn27.Caption = "Part-Time Salary (HRS)";
     this.gridColumn27.FieldName = "nPartTimeWorkHours";
     this.gridColumn27.Name = "gridColumn27";
     this.gridColumn27.Visible = true;
     this.gridColumn27.VisibleIndex = 5;
     this.gridColumn27.Width = 85;
     //
     // gridColumn28
     //
     this.gridColumn28.Caption = "AL Entitlement (HRS)";
     this.gridColumn28.FieldName = "nALEntitlementHours";
     this.gridColumn28.Name = "gridColumn28";
     this.gridColumn28.Visible = true;
     this.gridColumn28.VisibleIndex = 6;
     this.gridColumn28.Width = 77;
     //
     // gridColumn29
     //
     this.gridColumn29.Caption = "PH Entitlement (HRS)";
     this.gridColumn29.FieldName = "nPHEntitlementHours";
     this.gridColumn29.Name = "gridColumn29";
     this.gridColumn29.Visible = true;
     this.gridColumn29.VisibleIndex = 7;
     this.gridColumn29.Width = 64;
     //
     // gridColumn30
     //
     this.gridColumn30.Caption = "Service Reimbursement (AMT)";
     this.gridColumn30.FieldName = "mServiceReimbursements";
     this.gridColumn30.Name = "gridColumn30";
     this.gridColumn30.Visible = true;
     this.gridColumn30.VisibleIndex = 8;
     this.gridColumn30.Width = 74;
     //
     // gridColumn31
     //
     this.gridColumn31.Caption = "Lateness (HRS)";
     this.gridColumn31.FieldName = "nTotalLateness";
     this.gridColumn31.Name = "gridColumn31";
     this.gridColumn31.Visible = true;
     this.gridColumn31.VisibleIndex = 9;
     this.gridColumn31.Width = 61;
     //
     // gridColumn32
     //
     this.gridColumn32.Caption = "Unpaid AL (DAYS)";
     this.gridColumn32.FieldName = "nUnpaidAL";
     this.gridColumn32.Name = "gridColumn32";
     this.gridColumn32.Visible = true;
     this.gridColumn32.VisibleIndex = 10;
     this.gridColumn32.Width = 78;
     //
     // gridColumn33
     //
     this.gridColumn33.Caption = "Unpaid T/O (HRS)";
     this.gridColumn33.FieldName = "nUnpaidTO";
     this.gridColumn33.Name = "gridColumn33";
     this.gridColumn33.Visible = true;
     this.gridColumn33.VisibleIndex = 11;
     this.gridColumn33.Width = 74;
     //
     // gridColumn34
     //
     this.gridColumn34.Caption = "Unpaid Medical Absent (DAYS)";
     this.gridColumn34.FieldName = "nUnpaidMedical";
     this.gridColumn34.Name = "gridColumn34";
     this.gridColumn34.Visible = true;
     this.gridColumn34.VisibleIndex = 12;
     this.gridColumn34.Width = 83;
     //
     // gridColumn35
     //
     this.gridColumn35.Caption = "Commision (AMT)";
     this.gridColumn35.FieldName = "mCommission";
     this.gridColumn35.Name = "gridColumn35";
     this.gridColumn35.Width = 50;
     //
     // gridColumn36
     //
     this.gridColumn36.Caption = "Commission Lateness Penalty (AMT)";
     this.gridColumn36.FieldName = "nTotalLateness";
     this.gridColumn36.Name = "gridColumn36";
     this.gridColumn36.Width = 109;
     //
     // SecondPayDate
     //
     this.SecondPayDate.Caption = "Payroll Date";
     this.SecondPayDate.FieldName = "dtSecondRunDate";
     this.SecondPayDate.Name = "SecondPayDate";
     //
     // btnPayrollExport
     //
     this.btnPayrollExport.Appearance.BackColor = System.Drawing.Color.Transparent;
     this.btnPayrollExport.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.btnPayrollExport.Appearance.Options.UseBackColor = true;
     this.btnPayrollExport.Appearance.Options.UseFont = true;
     this.btnPayrollExport.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnPayrollExport.Location = new System.Drawing.Point(648, 24);
     this.btnPayrollExport.Name = "btnPayrollExport";
     this.btnPayrollExport.Size = new System.Drawing.Size(56, 20);
     this.btnPayrollExport.TabIndex = 9;
     this.btnPayrollExport.Text = "Export";
     this.btnPayrollExport.Click += new System.EventHandler(this.btnPayrollExport_Click);
     //
     // btnPayrollGenerate
     //
     this.btnPayrollGenerate.Appearance.BackColor = System.Drawing.Color.Transparent;
     this.btnPayrollGenerate.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.btnPayrollGenerate.Appearance.Options.UseBackColor = true;
     this.btnPayrollGenerate.Appearance.Options.UseFont = true;
     this.btnPayrollGenerate.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnPayrollGenerate.Location = new System.Drawing.Point(568, 24);
     this.btnPayrollGenerate.Name = "btnPayrollGenerate";
     this.btnPayrollGenerate.Size = new System.Drawing.Size(64, 20);
     this.btnPayrollGenerate.TabIndex = 8;
     this.btnPayrollGenerate.Text = "Generate";
     this.btnPayrollGenerate.Click += new System.EventHandler(this.btnPayrollGenerate_Click);
     //
     // btnPayrollDelete
     //
     this.btnPayrollDelete.Appearance.BackColor = System.Drawing.Color.Transparent;
     this.btnPayrollDelete.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.btnPayrollDelete.Appearance.Options.UseBackColor = true;
     this.btnPayrollDelete.Appearance.Options.UseFont = true;
     this.btnPayrollDelete.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnPayrollDelete.ImeMode = System.Windows.Forms.ImeMode.On;
     this.btnPayrollDelete.Location = new System.Drawing.Point(720, 24);
     this.btnPayrollDelete.Name = "btnPayrollDelete";
     this.btnPayrollDelete.Size = new System.Drawing.Size(56, 20);
     this.btnPayrollDelete.TabIndex = 7;
     this.btnPayrollDelete.Text = "Delete";
     this.btnPayrollDelete.Click += new System.EventHandler(this.btnPayrollDelete_Click);
     //
     // comboBoxEditMTH
     //
     this.comboBoxEditMTH.EditValue = "1";
     this.comboBoxEditMTH.Location = new System.Drawing.Point(288, 24);
     this.comboBoxEditMTH.Name = "comboBoxEditMTH";
     this.comboBoxEditMTH.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Style3D;
     this.comboBoxEditMTH.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.comboBoxEditMTH.Properties.Items.AddRange(new object[] {
     "1",
     "2",
     "3",
     "4",
     "5",
     "6",
     "7",
     "8",
     "9",
     "10",
     "11",
     "12"});
     this.comboBoxEditMTH.Properties.PopupSizeable = true;
     this.comboBoxEditMTH.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
     this.comboBoxEditMTH.Size = new System.Drawing.Size(48, 22);
     this.comboBoxEditMTH.TabIndex = 6;
     this.comboBoxEditMTH.SelectedIndexChanged += new System.EventHandler(this.comboBoxEditMTH_SelectedIndexChanged);
     //
     // comboBoxEditYR
     //
     this.comboBoxEditYR.EditValue = "2006";
     this.comboBoxEditYR.Location = new System.Drawing.Point(176, 24);
     this.comboBoxEditYR.Name = "comboBoxEditYR";
     this.comboBoxEditYR.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Style3D;
     this.comboBoxEditYR.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.comboBoxEditYR.Properties.Items.AddRange(new object[] {
     "1990",
     "1991",
     "1992",
     "1993",
     "1994",
     "1995",
     "1996",
     "1997",
     "1998",
     "1999",
     "2000",
     "2001",
     "2002",
     "2003",
     "2004",
     "2005",
     "2006",
     "2007",
     "2008",
     "2009",
     "2010",
     "2011",
     "2012",
     "2013",
     "2014",
     "2015",
     "2016",
     "2017",
     "2018",
     "2019",
     "2020",
     "2021",
     "2022",
     "2023",
     "2024",
     "2025",
     "2026",
     "2027",
     "2028",
     "2029",
     "2030"});
     this.comboBoxEditYR.Properties.PopupSizeable = true;
     this.comboBoxEditYR.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
     this.comboBoxEditYR.Size = new System.Drawing.Size(64, 22);
     this.comboBoxEditYR.TabIndex = 5;
     this.comboBoxEditYR.SelectedValueChanged += new System.EventHandler(this.comboBoxEditYR_SelectedValueChanged);
     //
     // lblYear
     //
     this.lblYear.BackColor = System.Drawing.Color.Transparent;
     this.lblYear.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblYear.ForeColor = System.Drawing.Color.Black;
     this.lblYear.Location = new System.Drawing.Point(136, 24);
     this.lblYear.Name = "lblYear";
     this.lblYear.Size = new System.Drawing.Size(56, 16);
     this.toolTipController1.SetSuperTip(this.lblYear, null);
     this.lblYear.TabIndex = 4;
     this.lblYear.Text = "Year";
     //
     // lblMonth
     //
     this.lblMonth.BackColor = System.Drawing.Color.Transparent;
     this.lblMonth.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblMonth.Location = new System.Drawing.Point(248, 24);
     this.lblMonth.Name = "lblMonth";
     this.lblMonth.Size = new System.Drawing.Size(48, 16);
     this.toolTipController1.SetSuperTip(this.lblMonth, null);
     this.lblMonth.TabIndex = 3;
     this.lblMonth.Text = "Month";
     //
     // cmbxPayroll
     //
     this.cmbxPayroll.EditValue = "First Run";
     this.cmbxPayroll.Location = new System.Drawing.Point(8, 24);
     this.cmbxPayroll.Name = "cmbxPayroll";
     this.cmbxPayroll.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Style3D;
     this.cmbxPayroll.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cmbxPayroll.Properties.Items.AddRange(new object[] {
     "First Run",
     "Second Run"});
     this.cmbxPayroll.Properties.PopupSizeable = true;
     this.cmbxPayroll.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
     this.cmbxPayroll.Size = new System.Drawing.Size(120, 22);
     this.cmbxPayroll.TabIndex = 2;
     this.cmbxPayroll.SelectedValueChanged += new System.EventHandler(this.cmbxPayroll_SelectedValueChanged);
     //
     // gridPayroll
     //
     this.gridPayroll.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.gridPayroll.EmbeddedNavigator.Name = "";
     this.gridPayroll.Location = new System.Drawing.Point(2, 62);
     this.gridPayroll.MainView = this.gridViewPayroll;
     this.gridPayroll.Name = "gridPayroll";
     this.gridPayroll.Size = new System.Drawing.Size(990, 552);
     this.gridPayroll.TabIndex = 11;
     this.gridPayroll.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewPayroll});
     //
     // gridViewPayroll
     //
     this.gridViewPayroll.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.nEmployeeID,
     this.gridColumn9,
     this.gridColumn17,
     this.gridColumn18,
     this.dtFirstRunDate,
     this.nNormalOT,
     this.nPublicHolidayOT,
     this.nOffDayOT,
     this.nPartTimeWorkHours,
     this.nALEntitlementHours,
     this.nPHEntitlementHours,
     this.mServiceReimbursements,
     this.nTotalLateness,
     this.nUnpaidAL,
     this.nUnpaidTO,
     this.nUnpaidMedical,
     this.mCommission,
     this.mCommissionLatenessPenalty,
     this.dtSecondRunDate});
     this.gridViewPayroll.GridControl = this.gridPayroll;
     this.gridViewPayroll.HorzScrollVisibility = DevExpress.XtraGrid.Views.Base.ScrollVisibility.Always;
     this.gridViewPayroll.Name = "gridViewPayroll";
     this.gridViewPayroll.OptionsBehavior.Editable = false;
     this.gridViewPayroll.OptionsCustomization.AllowFilter = false;
     this.gridViewPayroll.OptionsView.ColumnAutoWidth = false;
     this.gridViewPayroll.OptionsView.ShowGroupPanel = false;
     this.gridViewPayroll.VertScrollVisibility = DevExpress.XtraGrid.Views.Base.ScrollVisibility.Always;
     this.gridViewPayroll.Click += new System.EventHandler(this.gridViewPayroll_Click);
     //
     // nEmployeeID
     //
     this.nEmployeeID.Caption = "Emp ID";
     this.nEmployeeID.FieldName = "nEmployeeID";
     this.nEmployeeID.Name = "nEmployeeID";
     this.nEmployeeID.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
     this.nEmployeeID.Visible = true;
     this.nEmployeeID.VisibleIndex = 0;
     this.nEmployeeID.Width = 68;
     //
     // gridColumn9
     //
     this.gridColumn9.Caption = "Name";
     this.gridColumn9.FieldName = "strEmployeeName";
     this.gridColumn9.Name = "gridColumn9";
     this.gridColumn9.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
     this.gridColumn9.Visible = true;
     this.gridColumn9.VisibleIndex = 1;
     //
     // gridColumn17
     //
     this.gridColumn17.Caption = "Job Title";
     this.gridColumn17.FieldName = "strJobPosition";
     this.gridColumn17.Name = "gridColumn17";
     this.gridColumn17.Visible = true;
     this.gridColumn17.VisibleIndex = 2;
     //
     // gridColumn18
     //
     this.gridColumn18.Caption = "Branch";
     this.gridColumn18.FieldName = "strBranchCode";
     this.gridColumn18.Name = "gridColumn18";
     this.gridColumn18.Visible = true;
     this.gridColumn18.VisibleIndex = 3;
     //
     // dtFirstRunDate
     //
     this.dtFirstRunDate.Caption = "Payroll Date";
     this.dtFirstRunDate.FieldName = "dtFirstRunDate";
     this.dtFirstRunDate.Name = "dtFirstRunDate";
     this.dtFirstRunDate.Width = 76;
     //
     // nNormalOT
     //
     this.nNormalOT.Caption = "OT-1.5 (HRS)";
     this.nNormalOT.FieldName = "nNormalOT";
     this.nNormalOT.Name = "nNormalOT";
     this.nNormalOT.Visible = true;
     this.nNormalOT.VisibleIndex = 4;
     this.nNormalOT.Width = 77;
     //
     // nPublicHolidayOT
     //
     this.nPublicHolidayOT.Caption = "OT-1.0 (DAYS)";
     this.nPublicHolidayOT.FieldName = "nPublicHolidayOT";
     this.nPublicHolidayOT.Name = "nPublicHolidayOT";
     this.nPublicHolidayOT.Visible = true;
     this.nPublicHolidayOT.VisibleIndex = 5;
     this.nPublicHolidayOT.Width = 83;
     //
     // nOffDayOT
     //
     this.nOffDayOT.Caption = "OT-2.0 (DAYS)";
     this.nOffDayOT.FieldName = "nOffDayOT";
     this.nOffDayOT.Name = "nOffDayOT";
     this.nOffDayOT.Visible = true;
     this.nOffDayOT.VisibleIndex = 6;
     this.nOffDayOT.Width = 82;
     //
     // nPartTimeWorkHours
     //
     this.nPartTimeWorkHours.Caption = "Part-Time Salary (HRS)";
     this.nPartTimeWorkHours.FieldName = "nPartTimeWorkHours";
     this.nPartTimeWorkHours.Name = "nPartTimeWorkHours";
     this.nPartTimeWorkHours.Visible = true;
     this.nPartTimeWorkHours.VisibleIndex = 7;
     this.nPartTimeWorkHours.Width = 85;
     //
     // nALEntitlementHours
     //
     this.nALEntitlementHours.Caption = "AL Entitlement (HRS)";
     this.nALEntitlementHours.FieldName = "nALEntitlementHours";
     this.nALEntitlementHours.Name = "nALEntitlementHours";
     this.nALEntitlementHours.Visible = true;
     this.nALEntitlementHours.VisibleIndex = 8;
     this.nALEntitlementHours.Width = 77;
     //
     // nPHEntitlementHours
     //
     this.nPHEntitlementHours.Caption = "PH Entitlement (HRS)";
     this.nPHEntitlementHours.FieldName = "nPHEntitlementHours";
     this.nPHEntitlementHours.Name = "nPHEntitlementHours";
     this.nPHEntitlementHours.Visible = true;
     this.nPHEntitlementHours.VisibleIndex = 9;
     this.nPHEntitlementHours.Width = 64;
     //
     // mServiceReimbursements
     //
     this.mServiceReimbursements.Caption = "Service Reimbursement (AMT)";
     this.mServiceReimbursements.FieldName = "mServiceReimbursements";
     this.mServiceReimbursements.Name = "mServiceReimbursements";
     this.mServiceReimbursements.Visible = true;
     this.mServiceReimbursements.VisibleIndex = 10;
     this.mServiceReimbursements.Width = 74;
     //
     // nTotalLateness
     //
     this.nTotalLateness.Caption = "Lateness (HRS)";
     this.nTotalLateness.FieldName = "nTotalLateness";
     this.nTotalLateness.Name = "nTotalLateness";
     this.nTotalLateness.Visible = true;
     this.nTotalLateness.VisibleIndex = 11;
     this.nTotalLateness.Width = 61;
     //
     // nUnpaidAL
     //
     this.nUnpaidAL.Caption = "Unpaid AL (DAYS)";
     this.nUnpaidAL.FieldName = "nUnpaidAL";
     this.nUnpaidAL.Name = "nUnpaidAL";
     this.nUnpaidAL.Visible = true;
     this.nUnpaidAL.VisibleIndex = 12;
     this.nUnpaidAL.Width = 78;
     //
     // nUnpaidTO
     //
     this.nUnpaidTO.Caption = "Unpaid T/O (HRS)";
     this.nUnpaidTO.FieldName = "nUnpaidTO";
     this.nUnpaidTO.Name = "nUnpaidTO";
     this.nUnpaidTO.Visible = true;
     this.nUnpaidTO.VisibleIndex = 13;
     this.nUnpaidTO.Width = 74;
     //
     // nUnpaidMedical
     //
     this.nUnpaidMedical.Caption = "Unpaid Medical Absent (DAYS)";
     this.nUnpaidMedical.FieldName = "nUnpaidMedical";
     this.nUnpaidMedical.Name = "nUnpaidMedical";
     this.nUnpaidMedical.Visible = true;
     this.nUnpaidMedical.VisibleIndex = 14;
     this.nUnpaidMedical.Width = 83;
     //
     // mCommission
     //
     this.mCommission.Caption = "Commision (AMT)";
     this.mCommission.FieldName = "mCommission";
     this.mCommission.Name = "mCommission";
     this.mCommission.Width = 50;
     //
     // mCommissionLatenessPenalty
     //
     this.mCommissionLatenessPenalty.Caption = "Commission Lateness Penalty (AMT)";
     this.mCommissionLatenessPenalty.FieldName = "nTotalLateness";
     this.mCommissionLatenessPenalty.Name = "mCommissionLatenessPenalty";
     this.mCommissionLatenessPenalty.Width = 109;
     //
     // dtSecondRunDate
     //
     this.dtSecondRunDate.Caption = "Payroll Date";
     this.dtSecondRunDate.FieldName = "dtSecondRunDate";
     this.dtSecondRunDate.Name = "dtSecondRunDate";
     //
     // tabManagerThree
     //
     this.tabManagerThree.Appearance.PageClient.BackColor = System.Drawing.Color.DimGray;
     this.tabManagerThree.Appearance.PageClient.Options.UseBackColor = true;
     this.tabManagerThree.Controls.Add(this.lblThree_2);
     this.tabManagerThree.Controls.Add(this.lblThree_1);
     this.tabManagerThree.Controls.Add(this.lblThree_3);
     this.tabManagerThree.Controls.Add(this.grpClassSchedule);
     this.tabManagerThree.Controls.Add(this.groupMemCard);
     this.tabManagerThree.Controls.Add(this.grpRoadShow);
     this.tabManagerThree.Name = "tabManagerThree";
     this.tabManagerThree.PageVisible = false;
     this.tabManagerThree.Size = new System.Drawing.Size(1007, 637);
     this.tabManagerThree.Text = "Operation";
     //
     // lblThree_2
     //
     this.lblThree_2.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.lblThree_2.Appearance.ForeColor = System.Drawing.Color.MediumBlue;
     this.lblThree_2.Appearance.Options.UseFont = true;
     this.lblThree_2.Appearance.Options.UseForeColor = true;
     this.lblThree_2.Location = new System.Drawing.Point(152, 0);
     this.lblThree_2.Name = "lblThree_2";
     this.lblThree_2.Size = new System.Drawing.Size(138, 23);
     this.lblThree_2.TabIndex = 144;
     this.lblThree_2.Text = "Member Card";
     this.lblThree_2.Click += new System.EventHandler(this.lblThree_2_Click);
     //
     // lblThree_1
     //
     this.lblThree_1.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.lblThree_1.Appearance.ForeColor = System.Drawing.Color.MediumBlue;
     this.lblThree_1.Appearance.Options.UseFont = true;
     this.lblThree_1.Appearance.Options.UseForeColor = true;
     this.lblThree_1.Location = new System.Drawing.Point(8, 0);
     this.lblThree_1.Name = "lblThree_1";
     this.lblThree_1.Size = new System.Drawing.Size(138, 23);
     this.lblThree_1.TabIndex = 143;
     this.lblThree_1.Text = "Class Schedule";
     this.lblThree_1.Click += new System.EventHandler(this.lblThree_1_Click);
     //
     // lblThree_3
     //
     this.lblThree_3.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.lblThree_3.Appearance.ForeColor = System.Drawing.Color.MediumBlue;
     this.lblThree_3.Appearance.Options.UseFont = true;
     this.lblThree_3.Appearance.Options.UseForeColor = true;
     this.lblThree_3.Location = new System.Drawing.Point(296, 0);
     this.lblThree_3.Name = "lblThree_3";
     this.lblThree_3.Size = new System.Drawing.Size(138, 23);
     this.lblThree_3.TabIndex = 145;
     this.lblThree_3.Text = "Admin Operation";
     this.lblThree_3.Click += new System.EventHandler(this.lblThree_3_Click);
     //
     // grpClassSchedule
     //
     this.grpClassSchedule.Appearance.BackColor = System.Drawing.SystemColors.Control;
     this.grpClassSchedule.Appearance.ForeColor = System.Drawing.Color.Black;
     this.grpClassSchedule.Appearance.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.grpClassSchedule.Appearance.Options.UseBackColor = true;
     this.grpClassSchedule.Appearance.Options.UseForeColor = true;
     this.grpClassSchedule.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.grpClassSchedule.AppearanceCaption.Options.UseFont = true;
     this.grpClassSchedule.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowOnly;
     this.grpClassSchedule.Controls.Add(this.comboBoxBranch);
     this.grpClassSchedule.Controls.Add(this.btnRefreshClassSchedule);
     this.grpClassSchedule.Controls.Add(this.lblPQBranch);
     this.grpClassSchedule.Controls.Add(this.lblSUN);
     this.grpClassSchedule.Controls.Add(this.panelSun);
     this.grpClassSchedule.Controls.Add(this.panelSat);
     this.grpClassSchedule.Controls.Add(this.lblFRI);
     this.grpClassSchedule.Controls.Add(this.lblTHU);
     this.grpClassSchedule.Controls.Add(this.lblWED);
     this.grpClassSchedule.Controls.Add(this.lblTUE);
     this.grpClassSchedule.Controls.Add(this.panelFri);
     this.grpClassSchedule.Controls.Add(this.panelThu);
     this.grpClassSchedule.Controls.Add(this.panelWed);
     this.grpClassSchedule.Controls.Add(this.panelTue);
     this.grpClassSchedule.Controls.Add(this.panelMon);
     this.grpClassSchedule.Controls.Add(this.lblMON);
     this.grpClassSchedule.Controls.Add(this.btnPrintClassSchedule);
     this.grpClassSchedule.Controls.Add(this.btnNewClassSchedule);
     this.grpClassSchedule.Controls.Add(this.lblSAT);
     this.grpClassSchedule.Location = new System.Drawing.Point(16, 32);
     this.grpClassSchedule.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.grpClassSchedule.LookAndFeel.UseDefaultLookAndFeel = false;
     this.grpClassSchedule.Name = "grpClassSchedule";
     this.grpClassSchedule.Size = new System.Drawing.Size(996, 592);
     this.toolTipController1.SetSuperTip(this.grpClassSchedule, null);
     this.grpClassSchedule.TabIndex = 5;
     this.grpClassSchedule.Text = "Class Schedule";
     //
     // comboBoxBranch
     //
     this.comboBoxBranch.Location = new System.Drawing.Point(16, 40);
     this.comboBoxBranch.Name = "comboBoxBranch";
     this.comboBoxBranch.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.comboBoxBranch.Size = new System.Drawing.Size(104, 20);
     this.comboBoxBranch.TabIndex = 122;
     this.comboBoxBranch.EditValueChanged += new System.EventHandler(this.comboBoxBranch_SelectedValueChanged);
     //
     // btnRefreshClassSchedule
     //
     this.btnRefreshClassSchedule.Appearance.BackColor = System.Drawing.SystemColors.Control;
     this.btnRefreshClassSchedule.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnRefreshClassSchedule.Appearance.ForeColor = System.Drawing.Color.Black;
     this.btnRefreshClassSchedule.Appearance.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.btnRefreshClassSchedule.Appearance.Options.UseBackColor = true;
     this.btnRefreshClassSchedule.Appearance.Options.UseFont = true;
     this.btnRefreshClassSchedule.Appearance.Options.UseForeColor = true;
     this.btnRefreshClassSchedule.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnRefreshClassSchedule.Location = new System.Drawing.Point(16, 112);
     this.btnRefreshClassSchedule.LookAndFeel.UseDefaultLookAndFeel = false;
     this.btnRefreshClassSchedule.Name = "btnRefreshClassSchedule";
     this.btnRefreshClassSchedule.Size = new System.Drawing.Size(104, 20);
     this.btnRefreshClassSchedule.TabIndex = 121;
     this.btnRefreshClassSchedule.Text = "Refresh";
     this.btnRefreshClassSchedule.Click += new System.EventHandler(this.btnRefreshClassSchedule_Click);
     //
     // lblPQBranch
     //
     this.lblPQBranch.BackColor = System.Drawing.Color.Transparent;
     this.lblPQBranch.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblPQBranch.Location = new System.Drawing.Point(16, 24);
     this.lblPQBranch.Name = "lblPQBranch";
     this.lblPQBranch.Size = new System.Drawing.Size(100, 16);
     this.toolTipController1.SetSuperTip(this.lblPQBranch, null);
     this.lblPQBranch.TabIndex = 33;
     this.lblPQBranch.Text = "Filter by Branch";
     //
     // lblSUN
     //
     this.lblSUN.BackColor = System.Drawing.Color.PowderBlue;
     this.lblSUN.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.lblSUN.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblSUN.Location = new System.Drawing.Point(760, 24);
     this.lblSUN.Name = "lblSUN";
     this.lblSUN.Size = new System.Drawing.Size(104, 16);
     this.toolTipController1.SetSuperTip(this.lblSUN, null);
     this.lblSUN.TabIndex = 30;
     this.lblSUN.Text = "SUN";
     //
     // panelSun
     //
     this.panelSun.BackColor = System.Drawing.Color.White;
     this.panelSun.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.panelSun.Location = new System.Drawing.Point(760, 40);
     this.panelSun.Name = "panelSun";
     this.panelSun.Size = new System.Drawing.Size(104, 512);
     this.toolTipController1.SetSuperTip(this.panelSun, null);
     this.panelSun.TabIndex = 28;
     //
     // panelSat
     //
     this.panelSat.BackColor = System.Drawing.Color.White;
     this.panelSat.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.panelSat.Location = new System.Drawing.Point(656, 40);
     this.panelSat.Name = "panelSat";
     this.panelSat.Size = new System.Drawing.Size(104, 512);
     this.toolTipController1.SetSuperTip(this.panelSat, null);
     this.panelSat.TabIndex = 27;
     //
     // lblFRI
     //
     this.lblFRI.BackColor = System.Drawing.Color.PowderBlue;
     this.lblFRI.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.lblFRI.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblFRI.Location = new System.Drawing.Point(552, 24);
     this.lblFRI.Name = "lblFRI";
     this.lblFRI.Size = new System.Drawing.Size(104, 16);
     this.toolTipController1.SetSuperTip(this.lblFRI, null);
     this.lblFRI.TabIndex = 26;
     this.lblFRI.Text = "FRI";
     //
     // lblTHU
     //
     this.lblTHU.BackColor = System.Drawing.Color.PowderBlue;
     this.lblTHU.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.lblTHU.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblTHU.Location = new System.Drawing.Point(448, 24);
     this.lblTHU.Name = "lblTHU";
     this.lblTHU.Size = new System.Drawing.Size(104, 16);
     this.toolTipController1.SetSuperTip(this.lblTHU, null);
     this.lblTHU.TabIndex = 25;
     this.lblTHU.Text = "THU";
     //
     // lblWED
     //
     this.lblWED.BackColor = System.Drawing.Color.PowderBlue;
     this.lblWED.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.lblWED.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblWED.Location = new System.Drawing.Point(344, 24);
     this.lblWED.Name = "lblWED";
     this.lblWED.Size = new System.Drawing.Size(104, 16);
     this.toolTipController1.SetSuperTip(this.lblWED, null);
     this.lblWED.TabIndex = 24;
     this.lblWED.Text = "WED";
     //
     // lblTUE
     //
     this.lblTUE.BackColor = System.Drawing.Color.PowderBlue;
     this.lblTUE.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.lblTUE.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblTUE.Location = new System.Drawing.Point(240, 24);
     this.lblTUE.Name = "lblTUE";
     this.lblTUE.Size = new System.Drawing.Size(104, 16);
     this.toolTipController1.SetSuperTip(this.lblTUE, null);
     this.lblTUE.TabIndex = 23;
     this.lblTUE.Text = "TUE";
     //
     // panelFri
     //
     this.panelFri.BackColor = System.Drawing.Color.White;
     this.panelFri.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.panelFri.Location = new System.Drawing.Point(552, 40);
     this.panelFri.Name = "panelFri";
     this.panelFri.Size = new System.Drawing.Size(104, 512);
     this.toolTipController1.SetSuperTip(this.panelFri, null);
     this.panelFri.TabIndex = 18;
     //
     // panelThu
     //
     this.panelThu.BackColor = System.Drawing.Color.White;
     this.panelThu.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.panelThu.Location = new System.Drawing.Point(448, 40);
     this.panelThu.Name = "panelThu";
     this.panelThu.Size = new System.Drawing.Size(104, 512);
     this.toolTipController1.SetSuperTip(this.panelThu, null);
     this.panelThu.TabIndex = 17;
     //
     // panelWed
     //
     this.panelWed.BackColor = System.Drawing.Color.White;
     this.panelWed.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.panelWed.Location = new System.Drawing.Point(344, 40);
     this.panelWed.Name = "panelWed";
     this.panelWed.Size = new System.Drawing.Size(104, 512);
     this.toolTipController1.SetSuperTip(this.panelWed, null);
     this.panelWed.TabIndex = 16;
     //
     // panelTue
     //
     this.panelTue.BackColor = System.Drawing.Color.White;
     this.panelTue.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.panelTue.Location = new System.Drawing.Point(240, 40);
     this.panelTue.Name = "panelTue";
     this.panelTue.Size = new System.Drawing.Size(104, 512);
     this.toolTipController1.SetSuperTip(this.panelTue, null);
     this.panelTue.TabIndex = 15;
     //
     // panelMon
     //
     this.panelMon.BackColor = System.Drawing.Color.White;
     this.panelMon.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.panelMon.Location = new System.Drawing.Point(136, 40);
     this.panelMon.Name = "panelMon";
     this.panelMon.Size = new System.Drawing.Size(104, 512);
     this.toolTipController1.SetSuperTip(this.panelMon, null);
     this.panelMon.TabIndex = 14;
     //
     // lblMON
     //
     this.lblMON.BackColor = System.Drawing.Color.PowderBlue;
     this.lblMON.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.lblMON.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblMON.Location = new System.Drawing.Point(136, 24);
     this.lblMON.Name = "lblMON";
     this.lblMON.Size = new System.Drawing.Size(104, 16);
     this.toolTipController1.SetSuperTip(this.lblMON, null);
     this.lblMON.TabIndex = 12;
     this.lblMON.Text = "MON";
     //
     // btnPrintClassSchedule
     //
     this.btnPrintClassSchedule.Appearance.BackColor = System.Drawing.SystemColors.Control;
     this.btnPrintClassSchedule.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnPrintClassSchedule.Appearance.ForeColor = System.Drawing.Color.Black;
     this.btnPrintClassSchedule.Appearance.Options.UseBackColor = true;
     this.btnPrintClassSchedule.Appearance.Options.UseFont = true;
     this.btnPrintClassSchedule.Appearance.Options.UseForeColor = true;
     this.btnPrintClassSchedule.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnPrintClassSchedule.Location = new System.Drawing.Point(16, 88);
     this.btnPrintClassSchedule.Name = "btnPrintClassSchedule";
     this.btnPrintClassSchedule.Size = new System.Drawing.Size(104, 20);
     this.btnPrintClassSchedule.TabIndex = 11;
     this.btnPrintClassSchedule.Text = "Print";
     this.btnPrintClassSchedule.Click += new System.EventHandler(this.btnPrintClassSchedule_Click);
     //
     // btnNewClassSchedule
     //
     this.btnNewClassSchedule.Appearance.BackColor = System.Drawing.SystemColors.Control;
     this.btnNewClassSchedule.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnNewClassSchedule.Appearance.ForeColor = System.Drawing.Color.Black;
     this.btnNewClassSchedule.Appearance.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.btnNewClassSchedule.Appearance.Options.UseBackColor = true;
     this.btnNewClassSchedule.Appearance.Options.UseFont = true;
     this.btnNewClassSchedule.Appearance.Options.UseForeColor = true;
     this.btnNewClassSchedule.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnNewClassSchedule.Location = new System.Drawing.Point(16, 64);
     this.btnNewClassSchedule.LookAndFeel.UseDefaultLookAndFeel = false;
     this.btnNewClassSchedule.Name = "btnNewClassSchedule";
     this.btnNewClassSchedule.Size = new System.Drawing.Size(104, 20);
     this.btnNewClassSchedule.TabIndex = 8;
     this.btnNewClassSchedule.Text = "New";
     this.btnNewClassSchedule.Click += new System.EventHandler(this.btnNewClassSchedule_Click);
     //
     // lblSAT
     //
     this.lblSAT.BackColor = System.Drawing.Color.PowderBlue;
     this.lblSAT.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.lblSAT.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblSAT.Location = new System.Drawing.Point(656, 24);
     this.lblSAT.Name = "lblSAT";
     this.lblSAT.Size = new System.Drawing.Size(104, 16);
     this.toolTipController1.SetSuperTip(this.lblSAT, null);
     this.lblSAT.TabIndex = 29;
     this.lblSAT.Text = "SAT";
     //
     // groupMemCard
     //
     this.groupMemCard.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowOnly;
     this.groupMemCard.Location = new System.Drawing.Point(16, 32);
     this.groupMemCard.Name = "groupMemCard";
     this.groupMemCard.Size = new System.Drawing.Size(1000, 592);
     this.toolTipController1.SetSuperTip(this.groupMemCard, null);
     this.groupMemCard.TabIndex = 127;
     //
     // grpRoadShow
     //
     this.grpRoadShow.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowOnly;
     this.grpRoadShow.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.grpRoadShow.Location = new System.Drawing.Point(16, 32);
     this.grpRoadShow.LookAndFeel.UseDefaultLookAndFeel = false;
     this.grpRoadShow.Name = "grpRoadShow";
     this.grpRoadShow.Size = new System.Drawing.Size(984, 592);
     this.toolTipController1.SetSuperTip(this.grpRoadShow, null);
     this.grpRoadShow.TabIndex = 129;
     //
     // tabManagerFour
     //
     this.tabManagerFour.Controls.Add(this.lblFour_2);
     this.tabManagerFour.Controls.Add(this.lblFour_1);
     this.tabManagerFour.Controls.Add(this.lblFour_3);
     this.tabManagerFour.Controls.Add(this.lblFour_4);
     this.tabManagerFour.Controls.Add(this.lblFour_5);
     this.tabManagerFour.Controls.Add(this.panel2);
     this.tabManagerFour.Name = "tabManagerFour";
     this.tabManagerFour.PageVisible = false;
     this.tabManagerFour.Size = new System.Drawing.Size(1007, 637);
     this.tabManagerFour.Text = "Human Resource";
     //
     // lblFour_2
     //
     this.lblFour_2.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.lblFour_2.Appearance.ForeColor = System.Drawing.Color.MediumBlue;
     this.lblFour_2.Appearance.Options.UseFont = true;
     this.lblFour_2.Appearance.Options.UseForeColor = true;
     this.lblFour_2.Location = new System.Drawing.Point(152, 0);
     this.lblFour_2.Name = "lblFour_2";
     this.lblFour_2.Size = new System.Drawing.Size(138, 23);
     this.lblFour_2.TabIndex = 144;
     this.lblFour_2.Text = "TimeSheet";
     this.lblFour_2.Click += new System.EventHandler(this.lblFour_2_Click);
     //
     // lblFour_1
     //
     this.lblFour_1.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.lblFour_1.Appearance.ForeColor = System.Drawing.Color.MediumBlue;
     this.lblFour_1.Appearance.Options.UseFont = true;
     this.lblFour_1.Appearance.Options.UseForeColor = true;
     this.lblFour_1.Location = new System.Drawing.Point(8, 0);
     this.lblFour_1.Name = "lblFour_1";
     this.lblFour_1.Size = new System.Drawing.Size(138, 23);
     this.lblFour_1.TabIndex = 143;
     this.lblFour_1.Text = "Roster";
     this.lblFour_1.Click += new System.EventHandler(this.lblFour_1_Click);
     //
     // lblFour_3
     //
     this.lblFour_3.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.lblFour_3.Appearance.ForeColor = System.Drawing.Color.MediumBlue;
     this.lblFour_3.Appearance.Options.UseFont = true;
     this.lblFour_3.Appearance.Options.UseForeColor = true;
     this.lblFour_3.Location = new System.Drawing.Point(296, 0);
     this.lblFour_3.Name = "lblFour_3";
     this.lblFour_3.Size = new System.Drawing.Size(138, 23);
     this.lblFour_3.TabIndex = 145;
     this.lblFour_3.Text = "OverTime";
     this.lblFour_3.Click += new System.EventHandler(this.lblFour_3_Click);
     //
     // lblFour_4
     //
     this.lblFour_4.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.lblFour_4.Appearance.ForeColor = System.Drawing.Color.MediumBlue;
     this.lblFour_4.Appearance.Options.UseFont = true;
     this.lblFour_4.Appearance.Options.UseForeColor = true;
     this.lblFour_4.Location = new System.Drawing.Point(440, 0);
     this.lblFour_4.Name = "lblFour_4";
     this.lblFour_4.Size = new System.Drawing.Size(138, 23);
     this.lblFour_4.TabIndex = 146;
     this.lblFour_4.Text = "Leave";
     this.lblFour_4.Click += new System.EventHandler(this.lblFour_4_Click);
     //
     // lblFour_5
     //
     this.lblFour_5.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.lblFour_5.Appearance.ForeColor = System.Drawing.Color.MediumBlue;
     this.lblFour_5.Appearance.Options.UseFont = true;
     this.lblFour_5.Appearance.Options.UseForeColor = true;
     this.lblFour_5.Location = new System.Drawing.Point(584, 0);
     this.lblFour_5.Name = "lblFour_5";
     this.lblFour_5.Size = new System.Drawing.Size(138, 23);
     this.lblFour_5.TabIndex = 147;
     this.lblFour_5.Text = "Appointment";
     this.lblFour_5.Click += new System.EventHandler(this.lblFour_5_Click);
     //
     // panel2
     //
     this.panel2.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("panel2.BackgroundImage")));
     this.panel2.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.panel2.Location = new System.Drawing.Point(0, 32);
     this.panel2.Name = "panel2";
     this.panel2.Size = new System.Drawing.Size(1000, 600);
     this.toolTipController1.SetSuperTip(this.panel2, null);
     this.panel2.TabIndex = 125;
     //
     // tabManagerFive
     //
     this.tabManagerFive.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("tabManagerFive.BackgroundImage")));
     this.tabManagerFive.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.tabManagerFive.Controls.Add(this.label6);
     this.tabManagerFive.Controls.Add(this.ReportPanel);
     this.tabManagerFive.Controls.Add(this.lk_ReportView);
     this.tabManagerFive.Controls.Add(this.lblFive_9);
     this.tabManagerFive.Controls.Add(this.lblFive_10);
     this.tabManagerFive.Controls.Add(this.lblFive_4);
     this.tabManagerFive.Controls.Add(this.lblFive_2);
     this.tabManagerFive.Controls.Add(this.lblFive_8);
     this.tabManagerFive.Controls.Add(this.lblFive_7);
     this.tabManagerFive.Controls.Add(this.lblFive_3);
     this.tabManagerFive.Controls.Add(this.lblFive_6);
     this.tabManagerFive.Controls.Add(this.lblFive_1);
     this.tabManagerFive.Controls.Add(this.lblFive_5);
     this.tabManagerFive.Name = "tabManagerFive";
     this.tabManagerFive.PageVisible = false;
     this.tabManagerFive.Size = new System.Drawing.Size(1007, 637);
     this.tabManagerFive.Text = "Report";
     //
     // label6
     //
     this.label6.Font = new System.Drawing.Font("Monotype Corsiva", 9F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))), System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label6.ForeColor = System.Drawing.SystemColors.Desktop;
     this.label6.Location = new System.Drawing.Point(16, 32);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(61, 16);
     this.toolTipController1.SetSuperTip(this.label6, null);
     this.label6.TabIndex = 57;
     this.label6.Text = "Option >>";
     //
     // ReportPanel
     //
     this.ReportPanel.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowOnly;
     this.ReportPanel.Location = new System.Drawing.Point(8, 56);
     this.ReportPanel.Name = "ReportPanel";
     this.ReportPanel.Size = new System.Drawing.Size(984, 560);
     this.toolTipController1.SetSuperTip(this.ReportPanel, null);
     this.ReportPanel.TabIndex = 28;
     //
     // lk_ReportView
     //
     this.lk_ReportView.Location = new System.Drawing.Point(88, 32);
     this.lk_ReportView.Name = "lk_ReportView";
     this.lk_ReportView.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lk_ReportView.Properties.Appearance.Options.UseFont = true;
     this.lk_ReportView.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Style3D;
     this.lk_ReportView.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lk_ReportView.Properties.NullText = "";
     this.lk_ReportView.Size = new System.Drawing.Size(272, 22);
     this.lk_ReportView.TabIndex = 53;
     this.lk_ReportView.EditValueChanged += new System.EventHandler(this.lk_ReportView_EditValueChanged);
     this.lk_ReportView.DoubleClick += new System.EventHandler(this.lk_ReportView_EditValueChanged);
     //
     // lblFive_9
     //
     this.lblFive_9.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.lblFive_9.Appearance.ForeColor = System.Drawing.Color.MediumBlue;
     this.lblFive_9.Appearance.Options.UseFont = true;
     this.lblFive_9.Appearance.Options.UseForeColor = true;
     this.lblFive_9.Location = new System.Drawing.Point(712, 0);
     this.lblFive_9.Name = "lblFive_9";
     this.lblFive_9.Size = new System.Drawing.Size(80, 23);
     this.lblFive_9.TabIndex = 152;
     this.lblFive_9.Text = "Leave";
     this.lblFive_9.Click += new System.EventHandler(this.lblFive_9_Click);
     //
     // lblFive_10
     //
     this.lblFive_10.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.lblFive_10.Appearance.ForeColor = System.Drawing.Color.MediumBlue;
     this.lblFive_10.Appearance.Options.UseFont = true;
     this.lblFive_10.Appearance.Options.UseForeColor = true;
     this.lblFive_10.Location = new System.Drawing.Point(800, 0);
     this.lblFive_10.Name = "lblFive_10";
     this.lblFive_10.Size = new System.Drawing.Size(80, 23);
     this.lblFive_10.TabIndex = 153;
     this.lblFive_10.Text = "Member";
     this.lblFive_10.Click += new System.EventHandler(this.lblFive_10_Click);
     //
     // lblFive_4
     //
     this.lblFive_4.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.lblFive_4.Appearance.ForeColor = System.Drawing.Color.MediumBlue;
     this.lblFive_4.Appearance.Options.UseFont = true;
     this.lblFive_4.Appearance.Options.UseForeColor = true;
     this.lblFive_4.Location = new System.Drawing.Point(272, 0);
     this.lblFive_4.Name = "lblFive_4";
     this.lblFive_4.Size = new System.Drawing.Size(80, 23);
     this.lblFive_4.TabIndex = 147;
     this.lblFive_4.Text = "Promotion";
     this.lblFive_4.Click += new System.EventHandler(this.lblFive_4_Click);
     //
     // lblFive_2
     //
     this.lblFive_2.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.lblFive_2.Appearance.ForeColor = System.Drawing.Color.MediumBlue;
     this.lblFive_2.Appearance.Options.UseFont = true;
     this.lblFive_2.Appearance.Options.UseForeColor = true;
     this.lblFive_2.Location = new System.Drawing.Point(96, 0);
     this.lblFive_2.Name = "lblFive_2";
     this.lblFive_2.Size = new System.Drawing.Size(80, 23);
     this.lblFive_2.TabIndex = 145;
     this.lblFive_2.Text = "Attendance";
     this.lblFive_2.Click += new System.EventHandler(this.lblFive_2_Click);
     //
     // lblFive_8
     //
     this.lblFive_8.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.lblFive_8.Appearance.ForeColor = System.Drawing.Color.MediumBlue;
     this.lblFive_8.Appearance.Options.UseFont = true;
     this.lblFive_8.Appearance.Options.UseForeColor = true;
     this.lblFive_8.Location = new System.Drawing.Point(624, 0);
     this.lblFive_8.Name = "lblFive_8";
     this.lblFive_8.Size = new System.Drawing.Size(80, 23);
     this.lblFive_8.TabIndex = 151;
     this.lblFive_8.Text = "Stock";
     this.lblFive_8.Click += new System.EventHandler(this.lblFive_8_Click);
     //
     // lblFive_7
     //
     this.lblFive_7.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.lblFive_7.Appearance.ForeColor = System.Drawing.Color.MediumBlue;
     this.lblFive_7.Appearance.Options.UseFont = true;
     this.lblFive_7.Appearance.Options.UseForeColor = true;
     this.lblFive_7.Location = new System.Drawing.Point(536, 0);
     this.lblFive_7.Name = "lblFive_7";
     this.lblFive_7.Size = new System.Drawing.Size(80, 23);
     this.lblFive_7.TabIndex = 150;
     this.lblFive_7.Text = "Voice";
     this.lblFive_7.Click += new System.EventHandler(this.lblFive_7_Click);
     //
     // lblFive_3
     //
     this.lblFive_3.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.lblFive_3.Appearance.ForeColor = System.Drawing.Color.MediumBlue;
     this.lblFive_3.Appearance.Options.UseFont = true;
     this.lblFive_3.Appearance.Options.UseForeColor = true;
     this.lblFive_3.Location = new System.Drawing.Point(184, 0);
     this.lblFive_3.Name = "lblFive_3";
     this.lblFive_3.Size = new System.Drawing.Size(80, 23);
     this.lblFive_3.TabIndex = 146;
     this.lblFive_3.Text = "Operation";
     this.lblFive_3.Click += new System.EventHandler(this.lblFive_3_Click);
     //
     // lblFive_6
     //
     this.lblFive_6.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.lblFive_6.Appearance.ForeColor = System.Drawing.Color.MediumBlue;
     this.lblFive_6.Appearance.Options.UseFont = true;
     this.lblFive_6.Appearance.Options.UseForeColor = true;
     this.lblFive_6.Location = new System.Drawing.Point(448, 0);
     this.lblFive_6.Name = "lblFive_6";
     this.lblFive_6.Size = new System.Drawing.Size(80, 23);
     this.lblFive_6.TabIndex = 149;
     this.lblFive_6.Text = "Staff";
     this.lblFive_6.Click += new System.EventHandler(this.lblFive_6_Click);
     //
     // lblFive_1
     //
     this.lblFive_1.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.lblFive_1.Appearance.ForeColor = System.Drawing.Color.MediumBlue;
     this.lblFive_1.Appearance.Options.UseFont = true;
     this.lblFive_1.Appearance.Options.UseForeColor = true;
     this.lblFive_1.Location = new System.Drawing.Point(8, 0);
     this.lblFive_1.Name = "lblFive_1";
     this.lblFive_1.Size = new System.Drawing.Size(80, 23);
     this.lblFive_1.TabIndex = 144;
     this.lblFive_1.Text = "Sales";
     this.lblFive_1.Click += new System.EventHandler(this.lblFive_1_Click);
     //
     // lblFive_5
     //
     this.lblFive_5.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.lblFive_5.Appearance.ForeColor = System.Drawing.Color.MediumBlue;
     this.lblFive_5.Appearance.Options.UseFont = true;
     this.lblFive_5.Appearance.Options.UseForeColor = true;
     this.lblFive_5.Location = new System.Drawing.Point(360, 0);
     this.lblFive_5.Name = "lblFive_5";
     this.lblFive_5.Size = new System.Drawing.Size(80, 23);
     this.lblFive_5.TabIndex = 148;
     this.lblFive_5.Text = "Account";
     this.lblFive_5.Click += new System.EventHandler(this.lblFive_5_Click);
     //
     // tabManagerSix
     //
     this.tabManagerSix.Appearance.PageClient.BackColor = System.Drawing.Color.Gray;
     this.tabManagerSix.Appearance.PageClient.Options.UseBackColor = true;
     this.tabManagerSix.Controls.Add(this.lk_MasterData);
     this.tabManagerSix.Controls.Add(this.panel1);
     this.tabManagerSix.Controls.Add(this.label1);
     this.tabManagerSix.Name = "tabManagerSix";
     this.tabManagerSix.PageVisible = false;
     this.tabManagerSix.Size = new System.Drawing.Size(1007, 637);
     this.tabManagerSix.Text = "Master Data";
     //
     // lk_MasterData
     //
     this.lk_MasterData.Location = new System.Drawing.Point(88, 7);
     this.lk_MasterData.Name = "lk_MasterData";
     this.lk_MasterData.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lk_MasterData.Properties.Appearance.Options.UseFont = true;
     this.lk_MasterData.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Style3D;
     this.lk_MasterData.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lk_MasterData.Size = new System.Drawing.Size(160, 22);
     this.lk_MasterData.TabIndex = 52;
     this.lk_MasterData.EditValueChanged += new System.EventHandler(this.lk_MasterData_EditValueChanged);
     //
     // panel1
     //
     this.panel1.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("panel1.BackgroundImage")));
     this.panel1.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.panel1.Location = new System.Drawing.Point(3, 32);
     this.panel1.Name = "panel1";
     this.panel1.Size = new System.Drawing.Size(1000, 592);
     this.toolTipController1.SetSuperTip(this.panel1, null);
     this.panel1.TabIndex = 45;
     //
     // label1
     //
     this.label1.Font = new System.Drawing.Font("Monotype Corsiva", 9F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))), System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label1.ForeColor = System.Drawing.SystemColors.Desktop;
     this.label1.Location = new System.Drawing.Point(19, 7);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(61, 16);
     this.toolTipController1.SetSuperTip(this.label1, null);
     this.label1.TabIndex = 40;
     this.label1.Text = "Option >>";
     //
     // barManager1
     //
     this.barManager1.Bars.AddRange(new DevExpress.XtraBars.Bar[] {
     this.bar1});
     this.barManager1.Controller = this.barAndDockingController1;
     this.barManager1.DockControls.Add(this.barDockControlTop);
     this.barManager1.DockControls.Add(this.barDockControlBottom);
     this.barManager1.DockControls.Add(this.barDockControlLeft);
     this.barManager1.DockControls.Add(this.barDockControlRight);
     this.barManager1.Form = this;
     this.barManager1.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
     this.bbiManagerLoginOut,
     this.bbiManagerTimeCard,
     this.barButtonItem1,
     this.barstaticCurrentLogin});
     this.barManager1.MainMenu = this.bar1;
     this.barManager1.MaxItemId = 5;
     //
     // bar1
     //
     this.bar1.Appearance.BackColor = System.Drawing.SystemColors.Control;
     this.bar1.Appearance.Options.UseBackColor = true;
     this.bar1.BarName = "Custom 1";
     this.bar1.DockCol = 0;
     this.bar1.DockRow = 0;
     this.bar1.DockStyle = DevExpress.XtraBars.BarDockStyle.Top;
     this.bar1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.PaintStyle, this.bbiManagerLoginOut, DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph),
     new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.PaintStyle, this.barButtonItem1, DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph),
     new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.PaintStyle, this.barstaticCurrentLogin, "", true, true, true, 0, null, DevExpress.XtraBars.BarItemPaintStyle.Caption)});
     this.bar1.OptionsBar.AllowQuickCustomization = false;
     this.bar1.OptionsBar.DrawDragBorder = false;
     this.bar1.OptionsBar.UseWholeRow = true;
     this.bar1.Text = "Custom 1";
     //
     // bbiManagerLoginOut
     //
     this.bbiManagerLoginOut.Caption = "Close";
     this.bbiManagerLoginOut.Glyph = ((System.Drawing.Image)(resources.GetObject("bbiManagerLoginOut.Glyph")));
     this.bbiManagerLoginOut.Id = 0;
     this.bbiManagerLoginOut.Name = "bbiManagerLoginOut";
     this.bbiManagerLoginOut.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbiManagerLoginOut_ItemClick);
     //
     // barButtonItem1
     //
     this.barButtonItem1.Caption = "Time Card";
     this.barButtonItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("barButtonItem1.Glyph")));
     this.barButtonItem1.Id = 3;
     this.barButtonItem1.Name = "barButtonItem1";
     this.barButtonItem1.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barbtnTimeCard_ItemClick);
     //
     // barstaticCurrentLogin
     //
     this.barstaticCurrentLogin.Caption = "Current Login: {0}, {1}";
     this.barstaticCurrentLogin.Id = 4;
     this.barstaticCurrentLogin.Name = "barstaticCurrentLogin";
     this.barstaticCurrentLogin.OwnFont = new System.Drawing.Font("Tahoma", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.World);
     this.barstaticCurrentLogin.UseOwnFont = true;
     //
     // barAndDockingController1
     //
     this.barAndDockingController1.AppearancesBar.ItemsFont = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.barAndDockingController1.PaintStyleName = "WindowsXP";
     //
     // barDockControlTop
     //
     this.toolTipController1.SetSuperTip(this.barDockControlTop, null);
     //
     // barDockControlBottom
     //
     this.toolTipController1.SetSuperTip(this.barDockControlBottom, null);
     //
     // barDockControlLeft
     //
     this.toolTipController1.SetSuperTip(this.barDockControlLeft, null);
     //
     // barDockControlRight
     //
     this.toolTipController1.SetSuperTip(this.barDockControlRight, null);
     //
     // bbiManagerTimeCard
     //
     this.bbiManagerTimeCard.Caption = "Time Card";
     this.bbiManagerTimeCard.Id = 2;
     this.bbiManagerTimeCard.Name = "bbiManagerTimeCard";
     this.bbiManagerTimeCard.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbiManagerTimeCard_ItemClick);
     //
     // printDocument1
     //
     this.printDocument1.PrintPage += new System.Drawing.Printing.PrintPageEventHandler(this.printDocument1_PrintPage);
     //
     // gridColumnPGE3
     //
     this.gridColumnPGE3.Caption = "Quantity";
     this.gridColumnPGE3.FieldName = "nQuantity";
     this.gridColumnPGE3.Name = "gridColumnPGE3";
     this.gridColumnPGE3.Visible = true;
     this.gridColumnPGE3.VisibleIndex = 2;
     //
     // gridColumnPGE2
     //
     this.gridColumnPGE2.Caption = "Package Code";
     this.gridColumnPGE2.FieldName = "strPackageCode";
     this.gridColumnPGE2.Name = "gridColumnPGE2";
     this.gridColumnPGE2.Visible = true;
     this.gridColumnPGE2.VisibleIndex = 1;
     //
     // gridColumnPGE1
     //
     this.gridColumnPGE1.Caption = "Package Group Code";
     this.gridColumnPGE1.FieldName = "strPackageGroupCode";
     this.gridColumnPGE1.Name = "gridColumnPGE1";
     this.gridColumnPGE1.Visible = true;
     this.gridColumnPGE1.VisibleIndex = 0;
     //
     // mdPGE_txtNQuantity
     //
     this.mdPGE_txtNQuantity.EditValue = "";
     this.mdPGE_txtNQuantity.Location = new System.Drawing.Point(32, 152);
     this.mdPGE_txtNQuantity.Name = "mdPGE_txtNQuantity";
     this.mdPGE_txtNQuantity.Properties.Mask.EditMask = "######0";
     this.mdPGE_txtNQuantity.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.mdPGE_txtNQuantity.Size = new System.Drawing.Size(144, 20);
     this.mdPGE_txtNQuantity.TabIndex = 122;
     //
     // mdPGE_txtStrPackageCode
     //
     this.mdPGE_txtStrPackageCode.EditValue = "imageComboBoxEdit2";
     this.mdPGE_txtStrPackageCode.Location = new System.Drawing.Point(32, 96);
     this.mdPGE_txtStrPackageCode.Name = "mdPGE_txtStrPackageCode";
     this.mdPGE_txtStrPackageCode.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.mdPGE_txtStrPackageCode.Size = new System.Drawing.Size(144, 20);
     this.mdPGE_txtStrPackageCode.TabIndex = 121;
     //
     // mdPGE_cdStrPackageGroupCode
     //
     this.mdPGE_cdStrPackageGroupCode.EditValue = "imageComboBoxEdit1";
     this.mdPGE_cdStrPackageGroupCode.Location = new System.Drawing.Point(32, 48);
     this.mdPGE_cdStrPackageGroupCode.Name = "mdPGE_cdStrPackageGroupCode";
     this.mdPGE_cdStrPackageGroupCode.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.mdPGE_cdStrPackageGroupCode.Size = new System.Drawing.Size(144, 20);
     this.mdPGE_cdStrPackageGroupCode.TabIndex = 120;
     //
     // mdPGE_lblNQuantity
     //
     this.mdPGE_lblNQuantity.BackColor = System.Drawing.Color.Transparent;
     this.mdPGE_lblNQuantity.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.mdPGE_lblNQuantity.ForeColor = System.Drawing.Color.Black;
     this.mdPGE_lblNQuantity.Location = new System.Drawing.Point(32, 136);
     this.mdPGE_lblNQuantity.Name = "mdPGE_lblNQuantity";
     this.mdPGE_lblNQuantity.Size = new System.Drawing.Size(120, 16);
     this.toolTipController1.SetSuperTip(this.mdPGE_lblNQuantity, null);
     this.mdPGE_lblNQuantity.TabIndex = 119;
     this.mdPGE_lblNQuantity.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // mdPGE_lblStrPackageCode
     //
     this.mdPGE_lblStrPackageCode.BackColor = System.Drawing.Color.Transparent;
     this.mdPGE_lblStrPackageCode.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.mdPGE_lblStrPackageCode.ForeColor = System.Drawing.Color.Black;
     this.mdPGE_lblStrPackageCode.Location = new System.Drawing.Point(32, 80);
     this.mdPGE_lblStrPackageCode.Name = "mdPGE_lblStrPackageCode";
     this.mdPGE_lblStrPackageCode.Size = new System.Drawing.Size(120, 16);
     this.toolTipController1.SetSuperTip(this.mdPGE_lblStrPackageCode, null);
     this.mdPGE_lblStrPackageCode.TabIndex = 118;
     this.mdPGE_lblStrPackageCode.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // mdPGE_lblStrPackageGroupCode
     //
     this.mdPGE_lblStrPackageGroupCode.BackColor = System.Drawing.Color.Transparent;
     this.mdPGE_lblStrPackageGroupCode.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.mdPGE_lblStrPackageGroupCode.ForeColor = System.Drawing.Color.Black;
     this.mdPGE_lblStrPackageGroupCode.Location = new System.Drawing.Point(32, 32);
     this.mdPGE_lblStrPackageGroupCode.Name = "mdPGE_lblStrPackageGroupCode";
     this.mdPGE_lblStrPackageGroupCode.Size = new System.Drawing.Size(120, 16);
     this.toolTipController1.SetSuperTip(this.mdPGE_lblStrPackageGroupCode, null);
     this.mdPGE_lblStrPackageGroupCode.TabIndex = 117;
     this.mdPGE_lblStrPackageGroupCode.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // label5
     //
     this.label5.Font = new System.Drawing.Font("Georgia", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label5.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(153)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.label5.Location = new System.Drawing.Point(888, 8);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(120, 24);
     this.toolTipController1.SetSuperTip(this.label5, null);
     this.label5.TabIndex = 25;
     this.label5.Text = "HeadStart";
     //
     // frmManager
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize = new System.Drawing.Size(1012, 691);
     this.Controls.Add(this.label5);
     this.Controls.Add(this.tabControlManager);
     this.Controls.Add(this.barDockControlLeft);
     this.Controls.Add(this.barDockControlRight);
     this.Controls.Add(this.barDockControlBottom);
     this.Controls.Add(this.barDockControlTop);
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Menu = this.MainMenu1;
     this.Name = "frmManager";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.toolTipController1.SetSuperTip(this, null);
     this.Text = "ACMS Manager";
     this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
     this.Load += new System.EventHandler(this.frmManager_Load);
     ((System.ComponentModel.ISupportInitialize)(this.tabControlManager)).EndInit();
     this.tabControlManager.ResumeLayout(false);
     this.tabManagerOne.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupIPPMaster)).EndInit();
     this.groupIPPMaster.ResumeLayout(false);
     this.groupIPPMaster.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupIPP)).EndInit();
     this.groupIPP.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ComboBoxIPP.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.grpIPP2)).EndInit();
     this.grpIPP2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.lkBranch.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkBank.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.IPPdtTo.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.IPPdtTo.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.IPPdtStart.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.IPPdtStart.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtCreditCardScr.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.IPPGrid)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.IPPGridView)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.GroupIPPDetails)).EndInit();
     this.GroupIPPDetails.ResumeLayout(false);
     this.GroupIPPDetails.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.strReferenceNo.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.IPPBankCode.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.IPPNMonths.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.IPPCCNo.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.IPPStatus.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.IPPDateRcv.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.IPPDateSent.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.IPPBranchCode.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.IPPCreatedDate.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.IPPMerchantNo.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.IPPAmount.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.IPPInterest.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.IPPNettAmount.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.IPPMemberId.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.IPPMemberName.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.IPPId.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupIPPReceipt)).EndInit();
     this.groupIPPReceipt.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridReceipt)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.IPPReceiptView)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.IPPReceiptStatus.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupGIROMaster)).EndInit();
     this.groupGIROMaster.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl1)).EndInit();
     this.xtraTabControl1.ResumeLayout(false);
     this.tabGiroDetails.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.luedtBankBranch.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.luedtBank.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.luedtPackage.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.luedtBranch.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPackageDesc.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtAccountNo.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtGIROId.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtRemark.Properties)).EndInit();
     this.tabGiroTrnsHistory.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.GridTransaction)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.GroupGiro)).EndInit();
     this.GroupGiro.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.comboBoxGiroStatus.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.GiroGrid)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.GIROGridView)).EndInit();
     this.tabManagerTwo.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.GrpPayroll)).EndInit();
     this.GrpPayroll.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.progressBarControl1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbJob.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.grpGridExcel)).EndInit();
     this.grpGridExcel.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridExcel)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewExcel)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.comboBoxEditMTH.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.comboBoxEditYR.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbxPayroll.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridPayroll)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewPayroll)).EndInit();
     this.tabManagerThree.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.grpClassSchedule)).EndInit();
     this.grpClassSchedule.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.comboBoxBranch.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupMemCard)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.grpRoadShow)).EndInit();
     this.tabManagerFour.ResumeLayout(false);
     this.tabManagerFive.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ReportPanel)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_ReportView.Properties)).EndInit();
     this.tabManagerSix.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.lk_MasterData.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.printingSystem1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.barManager1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.barAndDockingController1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.mdPGE_txtNQuantity.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.mdPGE_txtStrPackageCode.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.mdPGE_cdStrPackageGroupCode.Properties)).EndInit();
     this.ResumeLayout(false);
 }
示例#48
0
		/// <summary> 
		/// Required method for Designer support - do not modify 
		/// the contents of this method with the code editor.
		/// </summary>
		private void InitializeComponent()
		{
			System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(RealtimeInfo));
			this.xtraTabControl1 = new DevExpress.XtraTab.XtraTabControl();
			this.xtraTabPage1 = new DevExpress.XtraTab.XtraTabPage();
			this.splitContainerControl2 = new DevExpress.XtraEditors.SplitContainerControl();
			this.groupControl1_Realtime_Graphic = new DevExpress.XtraEditors.GroupControl();
			this.groupControl_RealtimeStat_Graphic = new DevExpress.XtraEditors.GroupControl();
			this.comboBoxEdit_Realtime_GraphicState = new DevExpress.XtraEditors.ComboBoxEdit();
			this.notePanel_Realtime_GraphicState = new DevExpress.Utils.Frames.NotePanel();
			this.comboBoxEdit_Realtime_GraphicClass = new DevExpress.XtraEditors.ComboBoxEdit();
			this.comboBoxEdit_Realtime_GraphicGrade = new DevExpress.XtraEditors.ComboBoxEdit();
			this.notePanel_Realtime_GraphicGrade = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_Realtime_GraphicClass = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_Realtime_Graphic = new DevExpress.Utils.Frames.NotePanel();
			this.groupControl_Realtime_GraphicShow = new DevExpress.XtraEditors.GroupControl();
			this.panelControl_Realtime_GraphicShow = new DevExpress.XtraEditors.PanelControl();
			this.panelControl2 = new DevExpress.XtraEditors.PanelControl();
			this.simpleButton_RealTimeQuery_Graphic = new DevExpress.XtraEditors.SimpleButton();
			this.simpleButton_Realtime_GraphicPrint = new DevExpress.XtraEditors.SimpleButton();
			this.xtraTabPage2 = new DevExpress.XtraTab.XtraTabPage();
			this.splitContainerControl1 = new DevExpress.XtraEditors.SplitContainerControl();
			this.groupControl_RealTime = new DevExpress.XtraEditors.GroupControl();
			this.groupControl_RealTimeStat = new DevExpress.XtraEditors.GroupControl();
			this.comboBoxEdit_RealTimeOption = new DevExpress.XtraEditors.ComboBoxEdit();
			this.notePanel_RealTimeOption = new DevExpress.Utils.Frames.NotePanel();
			this.comboBoxEdit_RealTimeClass = new DevExpress.XtraEditors.ComboBoxEdit();
			this.comboBoxEdit_RealTimeGrade = new DevExpress.XtraEditors.ComboBoxEdit();
			this.notePanel1_RealTimeGrade = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel1_RealTimeClass = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_RealTime = new DevExpress.Utils.Frames.NotePanel();
			this.gridControl_RealTimeMorning = new DevExpress.XtraGrid.GridControl();
			this.gridView1 = new DevExpress.XtraGrid.Views.Grid.GridView();
			this.gridColumn1 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn2 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn3 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn4 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn5 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn13 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn6 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn7 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridControl_RealTimeBack = new DevExpress.XtraGrid.GridControl();
			this.gridView2 = new DevExpress.XtraGrid.Views.Grid.GridView();
			this.gridColumn8 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn9 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn10 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn11 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn12 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.panelControl1 = new DevExpress.XtraEditors.PanelControl();
			this.simpleButton_RealTimeQuery = new DevExpress.XtraEditors.SimpleButton();
			this.simpleButton_RealTimePrint = new DevExpress.XtraEditors.SimpleButton();
			this.saveFileDialog_Report = new System.Windows.Forms.SaveFileDialog();
			this.helpProvider_RealtimeInfo_Student = new System.Windows.Forms.HelpProvider();
			((System.ComponentModel.ISupportInitialize)(this.xtraTabControl1)).BeginInit();
			this.xtraTabControl1.SuspendLayout();
			this.xtraTabPage1.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.splitContainerControl2)).BeginInit();
			this.splitContainerControl2.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.groupControl1_Realtime_Graphic)).BeginInit();
			this.groupControl1_Realtime_Graphic.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_RealtimeStat_Graphic)).BeginInit();
			this.groupControl_RealtimeStat_Graphic.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_Realtime_GraphicState.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_Realtime_GraphicClass.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_Realtime_GraphicGrade.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_Realtime_GraphicShow)).BeginInit();
			this.groupControl_Realtime_GraphicShow.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.panelControl_Realtime_GraphicShow)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.panelControl2)).BeginInit();
			this.panelControl2.SuspendLayout();
			this.xtraTabPage2.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.splitContainerControl1)).BeginInit();
			this.splitContainerControl1.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_RealTime)).BeginInit();
			this.groupControl_RealTime.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_RealTimeStat)).BeginInit();
			this.groupControl_RealTimeStat.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_RealTimeOption.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_RealTimeClass.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_RealTimeGrade.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.gridControl_RealTimeMorning)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.gridControl_RealTimeBack)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.gridView2)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
			this.panelControl1.SuspendLayout();
			this.SuspendLayout();
			// 
			// xtraTabControl1
			// 
			this.xtraTabControl1.Appearance.BackColor = System.Drawing.Color.WhiteSmoke;
			this.xtraTabControl1.Appearance.Options.UseBackColor = true;
			this.xtraTabControl1.AppearancePage.HeaderActive.ForeColor = System.Drawing.Color.DarkOrange;
			this.xtraTabControl1.AppearancePage.HeaderActive.Options.UseForeColor = true;
			this.xtraTabControl1.Controls.Add(this.xtraTabPage1);
			this.xtraTabControl1.Controls.Add(this.xtraTabPage2);
			this.xtraTabControl1.Dock = System.Windows.Forms.DockStyle.Fill;
			this.xtraTabControl1.Location = new System.Drawing.Point(0, 0);
			this.xtraTabControl1.Name = "xtraTabControl1";
			this.xtraTabControl1.SelectedTabPage = this.xtraTabPage2;
			this.xtraTabControl1.Size = new System.Drawing.Size(772, 540);
			this.xtraTabControl1.TabIndex = 0;
			this.xtraTabControl1.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
																							this.xtraTabPage1,
																							this.xtraTabPage2});
			// 
			// xtraTabPage1
			// 
			this.xtraTabPage1.Appearance.PageClient.BackColor = System.Drawing.Color.WhiteSmoke;
			this.xtraTabPage1.Appearance.PageClient.Options.UseBackColor = true;
			this.xtraTabPage1.Controls.Add(this.splitContainerControl2);
			this.xtraTabPage1.Name = "xtraTabPage1";
			this.xtraTabPage1.Size = new System.Drawing.Size(768, 515);
			this.xtraTabPage1.Text = "图形统计";
			// 
			// splitContainerControl2
			// 
			this.splitContainerControl2.Dock = System.Windows.Forms.DockStyle.Fill;
			this.splitContainerControl2.Location = new System.Drawing.Point(0, 0);
			this.splitContainerControl2.Name = "splitContainerControl2";
			this.splitContainerControl2.Panel1.Controls.Add(this.groupControl1_Realtime_Graphic);
			this.splitContainerControl2.Panel1.Text = "splitContainerControl2_Panel1";
			this.splitContainerControl2.Panel2.Controls.Add(this.groupControl_Realtime_GraphicShow);
			this.splitContainerControl2.Panel2.Controls.Add(this.panelControl2);
			this.splitContainerControl2.Panel2.Text = "splitContainerControl2_Panel2";
			this.splitContainerControl2.Size = new System.Drawing.Size(768, 515);
			this.splitContainerControl2.SplitterPosition = 207;
			this.splitContainerControl2.TabIndex = 0;
			this.splitContainerControl2.Text = "splitContainerControl2";
			this.splitContainerControl2.SizeChanged += new System.EventHandler(this.splitContainerControl2_SizeChanged);
			// 
			// groupControl1_Realtime_Graphic
			// 
			this.groupControl1_Realtime_Graphic.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.groupControl1_Realtime_Graphic.Appearance.Options.UseFont = true;
			this.groupControl1_Realtime_Graphic.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.groupControl1_Realtime_Graphic.AppearanceCaption.Options.UseFont = true;
			this.groupControl1_Realtime_Graphic.Controls.Add(this.groupControl_RealtimeStat_Graphic);
			this.groupControl1_Realtime_Graphic.Controls.Add(this.notePanel_Realtime_Graphic);
			this.groupControl1_Realtime_Graphic.Dock = System.Windows.Forms.DockStyle.Fill;
			this.groupControl1_Realtime_Graphic.Location = new System.Drawing.Point(0, 0);
			this.groupControl1_Realtime_Graphic.Name = "groupControl1_Realtime_Graphic";
			this.groupControl1_Realtime_Graphic.Size = new System.Drawing.Size(201, 509);
			this.groupControl1_Realtime_Graphic.TabIndex = 1;
			this.groupControl1_Realtime_Graphic.Text = "实时窗口统计";
			// 
			// groupControl_RealtimeStat_Graphic
			// 
			this.groupControl_RealtimeStat_Graphic.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.groupControl_RealtimeStat_Graphic.AppearanceCaption.Options.UseFont = true;
			this.groupControl_RealtimeStat_Graphic.Controls.Add(this.comboBoxEdit_Realtime_GraphicState);
			this.groupControl_RealtimeStat_Graphic.Controls.Add(this.notePanel_Realtime_GraphicState);
			this.groupControl_RealtimeStat_Graphic.Controls.Add(this.comboBoxEdit_Realtime_GraphicClass);
			this.groupControl_RealtimeStat_Graphic.Controls.Add(this.comboBoxEdit_Realtime_GraphicGrade);
			this.groupControl_RealtimeStat_Graphic.Controls.Add(this.notePanel_Realtime_GraphicGrade);
			this.groupControl_RealtimeStat_Graphic.Controls.Add(this.notePanel_Realtime_GraphicClass);
			this.groupControl_RealtimeStat_Graphic.Dock = System.Windows.Forms.DockStyle.Top;
			this.groupControl_RealtimeStat_Graphic.Location = new System.Drawing.Point(3, 41);
			this.groupControl_RealtimeStat_Graphic.Name = "groupControl_RealtimeStat_Graphic";
			this.groupControl_RealtimeStat_Graphic.Size = new System.Drawing.Size(195, 143);
			this.groupControl_RealtimeStat_Graphic.TabIndex = 7;
			this.groupControl_RealtimeStat_Graphic.Text = "统计状态和班级信息";
			// 
			// comboBoxEdit_Realtime_GraphicState
			// 
			this.comboBoxEdit_Realtime_GraphicState.EditValue = "晨检";
			this.comboBoxEdit_Realtime_GraphicState.Location = new System.Drawing.Point(88, 96);
			this.comboBoxEdit_Realtime_GraphicState.Name = "comboBoxEdit_Realtime_GraphicState";
			// 
			// comboBoxEdit_Realtime_GraphicState.Properties
			// 
			this.comboBoxEdit_Realtime_GraphicState.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																																	   new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.comboBoxEdit_Realtime_GraphicState.Properties.Items.AddRange(new object[] {
																							   "晨检",
																							   "晚接"});
			this.comboBoxEdit_Realtime_GraphicState.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
			this.comboBoxEdit_Realtime_GraphicState.Size = new System.Drawing.Size(88, 23);
			this.comboBoxEdit_Realtime_GraphicState.TabIndex = 24;
			this.comboBoxEdit_Realtime_GraphicState.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit_Realtime_GraphicState_SelectedIndexChanged);
			// 
			// notePanel_Realtime_GraphicState
			// 
			this.notePanel_Realtime_GraphicState.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_Realtime_GraphicState.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_Realtime_GraphicState.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_Realtime_GraphicState.ForeColor = System.Drawing.Color.Black;
			this.notePanel_Realtime_GraphicState.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_Realtime_GraphicState.Location = new System.Drawing.Point(16, 96);
			this.notePanel_Realtime_GraphicState.MaxRows = 5;
			this.notePanel_Realtime_GraphicState.Name = "notePanel_Realtime_GraphicState";
			this.notePanel_Realtime_GraphicState.ParentAutoHeight = true;
			this.notePanel_Realtime_GraphicState.Size = new System.Drawing.Size(64, 22);
			this.notePanel_Realtime_GraphicState.TabIndex = 23;
			this.notePanel_Realtime_GraphicState.TabStop = false;
			this.notePanel_Realtime_GraphicState.Text = "类  型:";
			// 
			// comboBoxEdit_Realtime_GraphicClass
			// 
			this.comboBoxEdit_Realtime_GraphicClass.EditValue = "全部";
			this.comboBoxEdit_Realtime_GraphicClass.Location = new System.Drawing.Point(88, 64);
			this.comboBoxEdit_Realtime_GraphicClass.Name = "comboBoxEdit_Realtime_GraphicClass";
			// 
			// comboBoxEdit_Realtime_GraphicClass.Properties
			// 
			this.comboBoxEdit_Realtime_GraphicClass.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																																	   new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.comboBoxEdit_Realtime_GraphicClass.Properties.Items.AddRange(new object[] {
																							   "全部"});
			this.comboBoxEdit_Realtime_GraphicClass.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
			this.comboBoxEdit_Realtime_GraphicClass.Size = new System.Drawing.Size(88, 23);
			this.comboBoxEdit_Realtime_GraphicClass.TabIndex = 22;
			this.comboBoxEdit_Realtime_GraphicClass.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit_Realtime_GraphicClass_SelectedIndexChanged);
			// 
			// comboBoxEdit_Realtime_GraphicGrade
			// 
			this.comboBoxEdit_Realtime_GraphicGrade.EditValue = "全部";
			this.comboBoxEdit_Realtime_GraphicGrade.Location = new System.Drawing.Point(88, 32);
			this.comboBoxEdit_Realtime_GraphicGrade.Name = "comboBoxEdit_Realtime_GraphicGrade";
			// 
			// comboBoxEdit_Realtime_GraphicGrade.Properties
			// 
			this.comboBoxEdit_Realtime_GraphicGrade.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																																	   new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.comboBoxEdit_Realtime_GraphicGrade.Properties.Items.AddRange(new object[] {
																							   "全部"});
			this.comboBoxEdit_Realtime_GraphicGrade.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
			this.comboBoxEdit_Realtime_GraphicGrade.Size = new System.Drawing.Size(88, 23);
			this.comboBoxEdit_Realtime_GraphicGrade.TabIndex = 21;
			this.comboBoxEdit_Realtime_GraphicGrade.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit_Realtime_GraphicGrade_SelectedIndexChanged);
			// 
			// notePanel_Realtime_GraphicGrade
			// 
			this.notePanel_Realtime_GraphicGrade.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_Realtime_GraphicGrade.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_Realtime_GraphicGrade.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_Realtime_GraphicGrade.ForeColor = System.Drawing.Color.Black;
			this.notePanel_Realtime_GraphicGrade.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_Realtime_GraphicGrade.Location = new System.Drawing.Point(16, 32);
			this.notePanel_Realtime_GraphicGrade.MaxRows = 5;
			this.notePanel_Realtime_GraphicGrade.Name = "notePanel_Realtime_GraphicGrade";
			this.notePanel_Realtime_GraphicGrade.ParentAutoHeight = true;
			this.notePanel_Realtime_GraphicGrade.Size = new System.Drawing.Size(64, 22);
			this.notePanel_Realtime_GraphicGrade.TabIndex = 19;
			this.notePanel_Realtime_GraphicGrade.TabStop = false;
			this.notePanel_Realtime_GraphicGrade.Text = "年  级:";
			// 
			// notePanel_Realtime_GraphicClass
			// 
			this.notePanel_Realtime_GraphicClass.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_Realtime_GraphicClass.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_Realtime_GraphicClass.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_Realtime_GraphicClass.ForeColor = System.Drawing.Color.Black;
			this.notePanel_Realtime_GraphicClass.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_Realtime_GraphicClass.Location = new System.Drawing.Point(16, 64);
			this.notePanel_Realtime_GraphicClass.MaxRows = 5;
			this.notePanel_Realtime_GraphicClass.Name = "notePanel_Realtime_GraphicClass";
			this.notePanel_Realtime_GraphicClass.ParentAutoHeight = true;
			this.notePanel_Realtime_GraphicClass.Size = new System.Drawing.Size(64, 22);
			this.notePanel_Realtime_GraphicClass.TabIndex = 20;
			this.notePanel_Realtime_GraphicClass.TabStop = false;
			this.notePanel_Realtime_GraphicClass.Text = "班  级:";
			// 
			// notePanel_Realtime_Graphic
			// 
			this.notePanel_Realtime_Graphic.BackColor = System.Drawing.Color.LightGoldenrodYellow;
			this.notePanel_Realtime_Graphic.Dock = System.Windows.Forms.DockStyle.Top;
			this.notePanel_Realtime_Graphic.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.notePanel_Realtime_Graphic.ForeColor = System.Drawing.Color.OrangeRed;
			this.notePanel_Realtime_Graphic.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_Realtime_Graphic.Location = new System.Drawing.Point(3, 18);
			this.notePanel_Realtime_Graphic.MaxRows = 5;
			this.notePanel_Realtime_Graphic.Name = "notePanel_Realtime_Graphic";
			this.notePanel_Realtime_Graphic.ParentAutoHeight = true;
			this.notePanel_Realtime_Graphic.Size = new System.Drawing.Size(195, 23);
			this.notePanel_Realtime_Graphic.TabIndex = 6;
			this.notePanel_Realtime_Graphic.TabStop = false;
			this.notePanel_Realtime_Graphic.Text = "搜索条件";
			// 
			// groupControl_Realtime_GraphicShow
			// 
			this.groupControl_Realtime_GraphicShow.Appearance.BackColor = System.Drawing.Color.WhiteSmoke;
			this.groupControl_Realtime_GraphicShow.Appearance.Options.UseBackColor = true;
			this.groupControl_Realtime_GraphicShow.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.groupControl_Realtime_GraphicShow.AppearanceCaption.Options.UseFont = true;
			this.groupControl_Realtime_GraphicShow.Controls.Add(this.panelControl_Realtime_GraphicShow);
			this.groupControl_Realtime_GraphicShow.Dock = System.Windows.Forms.DockStyle.Fill;
			this.groupControl_Realtime_GraphicShow.Location = new System.Drawing.Point(0, 48);
			this.groupControl_Realtime_GraphicShow.Name = "groupControl_Realtime_GraphicShow";
			this.groupControl_Realtime_GraphicShow.Size = new System.Drawing.Size(551, 461);
			this.groupControl_Realtime_GraphicShow.TabIndex = 1;
			this.groupControl_Realtime_GraphicShow.Text = "图形预览";
			// 
			// panelControl_Realtime_GraphicShow
			// 
			this.panelControl_Realtime_GraphicShow.Appearance.BackColor = System.Drawing.Color.Transparent;
			this.panelControl_Realtime_GraphicShow.Appearance.Options.UseBackColor = true;
			this.panelControl_Realtime_GraphicShow.Dock = System.Windows.Forms.DockStyle.Fill;
			this.panelControl_Realtime_GraphicShow.Location = new System.Drawing.Point(3, 18);
			this.panelControl_Realtime_GraphicShow.Name = "panelControl_Realtime_GraphicShow";
			this.panelControl_Realtime_GraphicShow.Size = new System.Drawing.Size(545, 440);
			this.panelControl_Realtime_GraphicShow.TabIndex = 0;
			this.panelControl_Realtime_GraphicShow.Text = "panelControl3";
			this.panelControl_Realtime_GraphicShow.Resize += new System.EventHandler(this.panelControl_Realtime_GraphicShow_Resize);
			// 
			// panelControl2
			// 
			this.panelControl2.Controls.Add(this.simpleButton_RealTimeQuery_Graphic);
			this.panelControl2.Controls.Add(this.simpleButton_Realtime_GraphicPrint);
			this.panelControl2.Dock = System.Windows.Forms.DockStyle.Top;
			this.panelControl2.Location = new System.Drawing.Point(0, 0);
			this.panelControl2.Name = "panelControl2";
			this.panelControl2.Size = new System.Drawing.Size(551, 48);
			this.panelControl2.TabIndex = 0;
			this.panelControl2.Text = "panelControl2";
			// 
			// simpleButton_RealTimeQuery_Graphic
			// 
			this.simpleButton_RealTimeQuery_Graphic.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.simpleButton_RealTimeQuery_Graphic.Appearance.ForeColor = System.Drawing.Color.DarkMagenta;
			this.simpleButton_RealTimeQuery_Graphic.Appearance.Options.UseFont = true;
			this.simpleButton_RealTimeQuery_Graphic.Appearance.Options.UseForeColor = true;
			this.simpleButton_RealTimeQuery_Graphic.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton_RealTimeQuery_Graphic.Image")));
			this.simpleButton_RealTimeQuery_Graphic.Location = new System.Drawing.Point(16, 11);
			this.simpleButton_RealTimeQuery_Graphic.Name = "simpleButton_RealTimeQuery_Graphic";
			this.simpleButton_RealTimeQuery_Graphic.Size = new System.Drawing.Size(88, 26);
			this.simpleButton_RealTimeQuery_Graphic.TabIndex = 13;
			this.simpleButton_RealTimeQuery_Graphic.Tag = 4;
			this.simpleButton_RealTimeQuery_Graphic.Text = "搜  索";
			this.simpleButton_RealTimeQuery_Graphic.Click += new System.EventHandler(this.simpleButton_RealTimeQuery_Graphic_Click);
			// 
			// simpleButton_Realtime_GraphicPrint
			// 
			this.simpleButton_Realtime_GraphicPrint.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.simpleButton_Realtime_GraphicPrint.Appearance.ForeColor = System.Drawing.Color.DarkMagenta;
			this.simpleButton_Realtime_GraphicPrint.Appearance.Options.UseFont = true;
			this.simpleButton_Realtime_GraphicPrint.Appearance.Options.UseForeColor = true;
			this.simpleButton_Realtime_GraphicPrint.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton_Realtime_GraphicPrint.Image")));
			this.simpleButton_Realtime_GraphicPrint.Location = new System.Drawing.Point(112, 12);
			this.simpleButton_Realtime_GraphicPrint.Name = "simpleButton_Realtime_GraphicPrint";
			this.simpleButton_Realtime_GraphicPrint.Size = new System.Drawing.Size(104, 26);
			this.simpleButton_Realtime_GraphicPrint.TabIndex = 11;
			this.simpleButton_Realtime_GraphicPrint.Tag = 4;
			this.simpleButton_Realtime_GraphicPrint.Text = "图形打印";
			this.simpleButton_Realtime_GraphicPrint.Click += new System.EventHandler(this.simpleButton_Realtime_GraphicPrint_Click);
			// 
			// xtraTabPage2
			// 
			this.xtraTabPage2.Appearance.PageClient.BackColor = System.Drawing.Color.WhiteSmoke;
			this.xtraTabPage2.Appearance.PageClient.Options.UseBackColor = true;
			this.xtraTabPage2.Controls.Add(this.splitContainerControl1);
			this.xtraTabPage2.Name = "xtraTabPage2";
			this.xtraTabPage2.Size = new System.Drawing.Size(768, 515);
			this.xtraTabPage2.Text = "数据统计";
			// 
			// splitContainerControl1
			// 
			this.splitContainerControl1.Dock = System.Windows.Forms.DockStyle.Fill;
			this.splitContainerControl1.Location = new System.Drawing.Point(0, 0);
			this.splitContainerControl1.Name = "splitContainerControl1";
			this.splitContainerControl1.Panel1.Controls.Add(this.groupControl_RealTime);
			this.splitContainerControl1.Panel1.Text = "splitContainerControl1_Panel1";
			this.splitContainerControl1.Panel2.Controls.Add(this.gridControl_RealTimeMorning);
			this.splitContainerControl1.Panel2.Controls.Add(this.gridControl_RealTimeBack);
			this.splitContainerControl1.Panel2.Controls.Add(this.panelControl1);
			this.splitContainerControl1.Panel2.Text = "splitContainerControl1_Panel2";
			this.splitContainerControl1.Size = new System.Drawing.Size(768, 515);
			this.splitContainerControl1.SplitterPosition = 201;
			this.splitContainerControl1.TabIndex = 2;
			this.splitContainerControl1.Text = "splitContainerControl1";
			// 
			// groupControl_RealTime
			// 
			this.groupControl_RealTime.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.groupControl_RealTime.Appearance.Options.UseFont = true;
			this.groupControl_RealTime.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.groupControl_RealTime.AppearanceCaption.Options.UseFont = true;
			this.groupControl_RealTime.Controls.Add(this.groupControl_RealTimeStat);
			this.groupControl_RealTime.Controls.Add(this.notePanel_RealTime);
			this.groupControl_RealTime.Dock = System.Windows.Forms.DockStyle.Fill;
			this.groupControl_RealTime.Location = new System.Drawing.Point(0, 0);
			this.groupControl_RealTime.Name = "groupControl_RealTime";
			this.groupControl_RealTime.Size = new System.Drawing.Size(195, 509);
			this.groupControl_RealTime.TabIndex = 0;
			this.groupControl_RealTime.Text = "实时窗口统计";
			// 
			// groupControl_RealTimeStat
			// 
			this.groupControl_RealTimeStat.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.groupControl_RealTimeStat.AppearanceCaption.Options.UseFont = true;
			this.groupControl_RealTimeStat.Controls.Add(this.comboBoxEdit_RealTimeOption);
			this.groupControl_RealTimeStat.Controls.Add(this.notePanel_RealTimeOption);
			this.groupControl_RealTimeStat.Controls.Add(this.comboBoxEdit_RealTimeClass);
			this.groupControl_RealTimeStat.Controls.Add(this.comboBoxEdit_RealTimeGrade);
			this.groupControl_RealTimeStat.Controls.Add(this.notePanel1_RealTimeGrade);
			this.groupControl_RealTimeStat.Controls.Add(this.notePanel1_RealTimeClass);
			this.groupControl_RealTimeStat.Dock = System.Windows.Forms.DockStyle.Top;
			this.groupControl_RealTimeStat.Location = new System.Drawing.Point(3, 41);
			this.groupControl_RealTimeStat.Name = "groupControl_RealTimeStat";
			this.groupControl_RealTimeStat.Size = new System.Drawing.Size(189, 150);
			this.groupControl_RealTimeStat.TabIndex = 7;
			this.groupControl_RealTimeStat.Text = "统计状态和班级信息";
			// 
			// comboBoxEdit_RealTimeOption
			// 
			this.comboBoxEdit_RealTimeOption.EditValue = "晨检";
			this.comboBoxEdit_RealTimeOption.Location = new System.Drawing.Point(88, 96);
			this.comboBoxEdit_RealTimeOption.Name = "comboBoxEdit_RealTimeOption";
			// 
			// comboBoxEdit_RealTimeOption.Properties
			// 
			this.comboBoxEdit_RealTimeOption.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																																new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.comboBoxEdit_RealTimeOption.Properties.Items.AddRange(new object[] {
																						"晨检",
																						"晚接"});
			this.comboBoxEdit_RealTimeOption.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
			this.comboBoxEdit_RealTimeOption.Size = new System.Drawing.Size(88, 23);
			this.comboBoxEdit_RealTimeOption.TabIndex = 24;
			this.comboBoxEdit_RealTimeOption.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit_RealTimeOption_SelectedIndexChanged);
			// 
			// notePanel_RealTimeOption
			// 
			this.notePanel_RealTimeOption.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_RealTimeOption.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_RealTimeOption.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_RealTimeOption.ForeColor = System.Drawing.Color.Black;
			this.notePanel_RealTimeOption.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_RealTimeOption.Location = new System.Drawing.Point(16, 96);
			this.notePanel_RealTimeOption.MaxRows = 5;
			this.notePanel_RealTimeOption.Name = "notePanel_RealTimeOption";
			this.notePanel_RealTimeOption.ParentAutoHeight = true;
			this.notePanel_RealTimeOption.Size = new System.Drawing.Size(64, 22);
			this.notePanel_RealTimeOption.TabIndex = 23;
			this.notePanel_RealTimeOption.TabStop = false;
			this.notePanel_RealTimeOption.Text = "类  型:";
			// 
			// comboBoxEdit_RealTimeClass
			// 
			this.comboBoxEdit_RealTimeClass.EditValue = "全部";
			this.comboBoxEdit_RealTimeClass.Location = new System.Drawing.Point(88, 64);
			this.comboBoxEdit_RealTimeClass.Name = "comboBoxEdit_RealTimeClass";
			// 
			// comboBoxEdit_RealTimeClass.Properties
			// 
			this.comboBoxEdit_RealTimeClass.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																															   new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.comboBoxEdit_RealTimeClass.Properties.Items.AddRange(new object[] {
																					   "全部"});
			this.comboBoxEdit_RealTimeClass.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
			this.comboBoxEdit_RealTimeClass.Size = new System.Drawing.Size(88, 23);
			this.comboBoxEdit_RealTimeClass.TabIndex = 22;
			this.comboBoxEdit_RealTimeClass.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit_RealTimeClass_SelectedIndexChanged);
			// 
			// comboBoxEdit_RealTimeGrade
			// 
			this.comboBoxEdit_RealTimeGrade.EditValue = "全部";
			this.comboBoxEdit_RealTimeGrade.Location = new System.Drawing.Point(88, 32);
			this.comboBoxEdit_RealTimeGrade.Name = "comboBoxEdit_RealTimeGrade";
			// 
			// comboBoxEdit_RealTimeGrade.Properties
			// 
			this.comboBoxEdit_RealTimeGrade.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																															   new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.comboBoxEdit_RealTimeGrade.Properties.Items.AddRange(new object[] {
																					   "全部"});
			this.comboBoxEdit_RealTimeGrade.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
			this.comboBoxEdit_RealTimeGrade.Size = new System.Drawing.Size(88, 23);
			this.comboBoxEdit_RealTimeGrade.TabIndex = 21;
			this.comboBoxEdit_RealTimeGrade.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit_RealTimeGrade_SelectedIndexChanged);
			// 
			// notePanel1_RealTimeGrade
			// 
			this.notePanel1_RealTimeGrade.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel1_RealTimeGrade.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel1_RealTimeGrade.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel1_RealTimeGrade.ForeColor = System.Drawing.Color.Black;
			this.notePanel1_RealTimeGrade.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel1_RealTimeGrade.Location = new System.Drawing.Point(16, 32);
			this.notePanel1_RealTimeGrade.MaxRows = 5;
			this.notePanel1_RealTimeGrade.Name = "notePanel1_RealTimeGrade";
			this.notePanel1_RealTimeGrade.ParentAutoHeight = true;
			this.notePanel1_RealTimeGrade.Size = new System.Drawing.Size(64, 22);
			this.notePanel1_RealTimeGrade.TabIndex = 19;
			this.notePanel1_RealTimeGrade.TabStop = false;
			this.notePanel1_RealTimeGrade.Text = "年  级:";
			// 
			// notePanel1_RealTimeClass
			// 
			this.notePanel1_RealTimeClass.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel1_RealTimeClass.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel1_RealTimeClass.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel1_RealTimeClass.ForeColor = System.Drawing.Color.Black;
			this.notePanel1_RealTimeClass.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel1_RealTimeClass.Location = new System.Drawing.Point(16, 64);
			this.notePanel1_RealTimeClass.MaxRows = 5;
			this.notePanel1_RealTimeClass.Name = "notePanel1_RealTimeClass";
			this.notePanel1_RealTimeClass.ParentAutoHeight = true;
			this.notePanel1_RealTimeClass.Size = new System.Drawing.Size(64, 22);
			this.notePanel1_RealTimeClass.TabIndex = 20;
			this.notePanel1_RealTimeClass.TabStop = false;
			this.notePanel1_RealTimeClass.Text = "班  级:";
			// 
			// notePanel_RealTime
			// 
			this.notePanel_RealTime.BackColor = System.Drawing.Color.LightGoldenrodYellow;
			this.notePanel_RealTime.Dock = System.Windows.Forms.DockStyle.Top;
			this.notePanel_RealTime.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.notePanel_RealTime.ForeColor = System.Drawing.Color.OrangeRed;
			this.notePanel_RealTime.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_RealTime.Location = new System.Drawing.Point(3, 18);
			this.notePanel_RealTime.MaxRows = 5;
			this.notePanel_RealTime.Name = "notePanel_RealTime";
			this.notePanel_RealTime.ParentAutoHeight = true;
			this.notePanel_RealTime.Size = new System.Drawing.Size(189, 23);
			this.notePanel_RealTime.TabIndex = 6;
			this.notePanel_RealTime.TabStop = false;
			this.notePanel_RealTime.Text = "搜索条件";
			// 
			// gridControl_RealTimeMorning
			// 
			this.gridControl_RealTimeMorning.Dock = System.Windows.Forms.DockStyle.Fill;
			// 
			// gridControl_RealTimeMorning.EmbeddedNavigator
			// 
			this.gridControl_RealTimeMorning.EmbeddedNavigator.Name = "";
			this.gridControl_RealTimeMorning.Location = new System.Drawing.Point(0, 40);
			this.gridControl_RealTimeMorning.MainView = this.gridView1;
			this.gridControl_RealTimeMorning.Name = "gridControl_RealTimeMorning";
			this.gridControl_RealTimeMorning.Size = new System.Drawing.Size(557, 469);
			this.gridControl_RealTimeMorning.TabIndex = 1;
			this.gridControl_RealTimeMorning.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
																													   this.gridView1});
			// 
			// gridView1
			// 
			this.gridView1.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
																							 this.gridColumn1,
																							 this.gridColumn2,
																							 this.gridColumn3,
																							 this.gridColumn4,
																							 this.gridColumn5,
																							 this.gridColumn13,
																							 this.gridColumn6,
																							 this.gridColumn7});
			this.gridView1.GridControl = this.gridControl_RealTimeMorning;
			this.gridView1.Name = "gridView1";
			this.gridView1.OptionsCustomization.AllowFilter = false;
			this.gridView1.OptionsView.ShowFilterPanel = false;
			this.gridView1.OptionsView.ShowGroupPanel = false;
			// 
			// gridColumn1
			// 
			this.gridColumn1.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn1.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn1.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn1.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn1.Caption = "班级";
			this.gridColumn1.FieldName = "info_className";
			this.gridColumn1.Name = "gridColumn1";
			this.gridColumn1.OptionsColumn.AllowEdit = false;
			this.gridColumn1.OptionsColumn.AllowFocus = false;
			this.gridColumn1.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn1.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn1.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn1.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn1.OptionsColumn.ReadOnly = true;
			this.gridColumn1.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn1.Visible = true;
			this.gridColumn1.VisibleIndex = 0;
			this.gridColumn1.Width = 50;
			// 
			// gridColumn2
			// 
			this.gridColumn2.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn2.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn2.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn2.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn2.Caption = "健康";
			this.gridColumn2.FieldName = "info_health";
			this.gridColumn2.Name = "gridColumn2";
			this.gridColumn2.OptionsColumn.AllowEdit = false;
			this.gridColumn2.OptionsColumn.AllowFocus = false;
			this.gridColumn2.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn2.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn2.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn2.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn2.OptionsColumn.ReadOnly = true;
			this.gridColumn2.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn2.Visible = true;
			this.gridColumn2.VisibleIndex = 1;
			this.gridColumn2.Width = 97;
			// 
			// gridColumn3
			// 
			this.gridColumn3.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn3.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn3.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn3.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn3.Caption = "观察";
			this.gridColumn3.FieldName = "info_watch";
			this.gridColumn3.Name = "gridColumn3";
			this.gridColumn3.OptionsColumn.AllowEdit = false;
			this.gridColumn3.OptionsColumn.AllowFocus = false;
			this.gridColumn3.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn3.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn3.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn3.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn3.OptionsColumn.ReadOnly = true;
			this.gridColumn3.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn3.Visible = true;
			this.gridColumn3.VisibleIndex = 2;
			this.gridColumn3.Width = 67;
			// 
			// gridColumn4
			// 
			this.gridColumn4.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn4.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn4.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn4.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn4.Caption = "服药";
			this.gridColumn4.FieldName = "info_ill";
			this.gridColumn4.Name = "gridColumn4";
			this.gridColumn4.OptionsColumn.AllowEdit = false;
			this.gridColumn4.OptionsColumn.AllowFocus = false;
			this.gridColumn4.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn4.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn4.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn4.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn4.OptionsColumn.ReadOnly = true;
			this.gridColumn4.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn4.Visible = true;
			this.gridColumn4.VisibleIndex = 3;
			this.gridColumn4.Width = 72;
			// 
			// gridColumn5
			// 
			this.gridColumn5.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn5.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn5.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn5.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn5.Caption = "应出勤";
			this.gridColumn5.FieldName = "info_shouldAtt";
			this.gridColumn5.Name = "gridColumn5";
			this.gridColumn5.OptionsColumn.AllowEdit = false;
			this.gridColumn5.OptionsColumn.AllowFocus = false;
			this.gridColumn5.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn5.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn5.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn5.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn5.OptionsColumn.ReadOnly = true;
			this.gridColumn5.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn5.Visible = true;
			this.gridColumn5.VisibleIndex = 4;
			this.gridColumn5.Width = 55;
			// 
			// gridColumn13
			// 
			this.gridColumn13.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn13.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn13.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn13.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn13.Caption = "已出勤";
			this.gridColumn13.FieldName = "info_haveAtt";
			this.gridColumn13.Name = "gridColumn13";
			this.gridColumn13.OptionsColumn.AllowEdit = false;
			this.gridColumn13.OptionsColumn.AllowFocus = false;
			this.gridColumn13.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn13.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn13.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn13.OptionsColumn.AllowMove = false;
			this.gridColumn13.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn13.OptionsColumn.ReadOnly = true;
			this.gridColumn13.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn13.Visible = true;
			this.gridColumn13.VisibleIndex = 5;
			this.gridColumn13.Width = 50;
			// 
			// gridColumn6
			// 
			this.gridColumn6.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn6.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn6.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn6.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn6.Caption = "缺席";
			this.gridColumn6.FieldName = "info_absence";
			this.gridColumn6.Name = "gridColumn6";
			this.gridColumn6.OptionsColumn.AllowEdit = false;
			this.gridColumn6.OptionsColumn.AllowFocus = false;
			this.gridColumn6.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn6.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn6.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn6.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn6.OptionsColumn.ReadOnly = true;
			this.gridColumn6.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn6.Visible = true;
			this.gridColumn6.VisibleIndex = 6;
			this.gridColumn6.Width = 87;
			// 
			// gridColumn7
			// 
			this.gridColumn7.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn7.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn7.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn7.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn7.Caption = "出勤率";
			this.gridColumn7.FieldName = "info_attPer";
			this.gridColumn7.Name = "gridColumn7";
			this.gridColumn7.OptionsColumn.AllowEdit = false;
			this.gridColumn7.OptionsColumn.AllowFocus = false;
			this.gridColumn7.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn7.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn7.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn7.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn7.OptionsColumn.ReadOnly = true;
			this.gridColumn7.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn7.Visible = true;
			this.gridColumn7.VisibleIndex = 7;
			this.gridColumn7.Width = 66;
			// 
			// gridControl_RealTimeBack
			// 
			this.gridControl_RealTimeBack.Dock = System.Windows.Forms.DockStyle.Fill;
			// 
			// gridControl_RealTimeBack.EmbeddedNavigator
			// 
			this.gridControl_RealTimeBack.EmbeddedNavigator.Name = "";
			this.gridControl_RealTimeBack.Location = new System.Drawing.Point(0, 40);
			this.gridControl_RealTimeBack.MainView = this.gridView2;
			this.gridControl_RealTimeBack.Name = "gridControl_RealTimeBack";
			this.gridControl_RealTimeBack.Size = new System.Drawing.Size(557, 469);
			this.gridControl_RealTimeBack.TabIndex = 2;
			this.gridControl_RealTimeBack.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
																													this.gridView2});
			this.gridControl_RealTimeBack.Visible = false;
			// 
			// gridView2
			// 
			this.gridView2.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
																							 this.gridColumn8,
																							 this.gridColumn9,
																							 this.gridColumn10,
																							 this.gridColumn11,
																							 this.gridColumn12});
			this.gridView2.GridControl = this.gridControl_RealTimeBack;
			this.gridView2.Name = "gridView2";
			this.gridView2.OptionsCustomization.AllowFilter = false;
			this.gridView2.OptionsView.ShowFilterPanel = false;
			this.gridView2.OptionsView.ShowGroupPanel = false;
			// 
			// gridColumn8
			// 
			this.gridColumn8.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn8.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn8.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn8.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn8.Caption = "班级";
			this.gridColumn8.FieldName = "info_className";
			this.gridColumn8.Name = "gridColumn8";
			this.gridColumn8.OptionsColumn.AllowEdit = false;
			this.gridColumn8.OptionsColumn.AllowFocus = false;
			this.gridColumn8.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn8.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn8.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn8.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn8.OptionsColumn.FixedWidth = true;
			this.gridColumn8.OptionsColumn.ReadOnly = true;
			this.gridColumn8.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn8.Visible = true;
			this.gridColumn8.VisibleIndex = 0;
			this.gridColumn8.Width = 71;
			// 
			// gridColumn9
			// 
			this.gridColumn9.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn9.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn9.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn9.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn9.Caption = "已接走";
			this.gridColumn9.FieldName = "info_hasGone";
			this.gridColumn9.Name = "gridColumn9";
			this.gridColumn9.OptionsColumn.AllowEdit = false;
			this.gridColumn9.OptionsColumn.AllowFocus = false;
			this.gridColumn9.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn9.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn9.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn9.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn9.OptionsColumn.FixedWidth = true;
			this.gridColumn9.OptionsColumn.ReadOnly = true;
			this.gridColumn9.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn9.Visible = true;
			this.gridColumn9.VisibleIndex = 1;
			// 
			// gridColumn10
			// 
			this.gridColumn10.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn10.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn10.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn10.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn10.Caption = "应接走";
			this.gridColumn10.FieldName = "info_shouldGo";
			this.gridColumn10.Name = "gridColumn10";
			this.gridColumn10.OptionsColumn.AllowEdit = false;
			this.gridColumn10.OptionsColumn.AllowFocus = false;
			this.gridColumn10.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn10.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn10.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn10.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn10.OptionsColumn.FixedWidth = true;
			this.gridColumn10.OptionsColumn.ReadOnly = true;
			this.gridColumn10.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn10.Visible = true;
			this.gridColumn10.VisibleIndex = 2;
			// 
			// gridColumn11
			// 
			this.gridColumn11.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn11.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn11.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn11.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn11.Caption = "未接走";
			this.gridColumn11.FieldName = "info_notGone";
			this.gridColumn11.Name = "gridColumn11";
			this.gridColumn11.OptionsColumn.AllowEdit = false;
			this.gridColumn11.OptionsColumn.AllowFocus = false;
			this.gridColumn11.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn11.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn11.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn11.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn11.OptionsColumn.FixedWidth = true;
			this.gridColumn11.OptionsColumn.ReadOnly = true;
			this.gridColumn11.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn11.Visible = true;
			this.gridColumn11.VisibleIndex = 3;
			// 
			// gridColumn12
			// 
			this.gridColumn12.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn12.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn12.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn12.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn12.Caption = "接走率";
			this.gridColumn12.FieldName = "info_goPer";
			this.gridColumn12.Name = "gridColumn12";
			this.gridColumn12.OptionsColumn.AllowEdit = false;
			this.gridColumn12.OptionsColumn.AllowFocus = false;
			this.gridColumn12.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn12.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn12.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn12.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn12.OptionsColumn.FixedWidth = true;
			this.gridColumn12.OptionsColumn.ReadOnly = true;
			this.gridColumn12.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn12.Visible = true;
			this.gridColumn12.VisibleIndex = 4;
			// 
			// panelControl1
			// 
			this.panelControl1.Controls.Add(this.simpleButton_RealTimeQuery);
			this.panelControl1.Controls.Add(this.simpleButton_RealTimePrint);
			this.panelControl1.Dock = System.Windows.Forms.DockStyle.Top;
			this.panelControl1.Location = new System.Drawing.Point(0, 0);
			this.panelControl1.Name = "panelControl1";
			this.panelControl1.Size = new System.Drawing.Size(557, 40);
			this.panelControl1.TabIndex = 0;
			this.panelControl1.Text = "panelControl1";
			// 
			// simpleButton_RealTimeQuery
			// 
			this.simpleButton_RealTimeQuery.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.simpleButton_RealTimeQuery.Appearance.ForeColor = System.Drawing.Color.DarkMagenta;
			this.simpleButton_RealTimeQuery.Appearance.Options.UseFont = true;
			this.simpleButton_RealTimeQuery.Appearance.Options.UseForeColor = true;
			this.simpleButton_RealTimeQuery.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton_RealTimeQuery.Image")));
			this.simpleButton_RealTimeQuery.Location = new System.Drawing.Point(16, 8);
			this.simpleButton_RealTimeQuery.Name = "simpleButton_RealTimeQuery";
			this.simpleButton_RealTimeQuery.Size = new System.Drawing.Size(88, 26);
			this.simpleButton_RealTimeQuery.TabIndex = 7;
			this.simpleButton_RealTimeQuery.Tag = 4;
			this.simpleButton_RealTimeQuery.Text = "搜  索";
			this.simpleButton_RealTimeQuery.Click += new System.EventHandler(this.simpleButton_RealTimeQuery_Click);
			// 
			// simpleButton_RealTimePrint
			// 
			this.simpleButton_RealTimePrint.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.simpleButton_RealTimePrint.Appearance.ForeColor = System.Drawing.Color.DarkMagenta;
			this.simpleButton_RealTimePrint.Appearance.Options.UseFont = true;
			this.simpleButton_RealTimePrint.Appearance.Options.UseForeColor = true;
			this.simpleButton_RealTimePrint.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton_RealTimePrint.Image")));
			this.simpleButton_RealTimePrint.Location = new System.Drawing.Point(120, 8);
			this.simpleButton_RealTimePrint.Name = "simpleButton_RealTimePrint";
			this.simpleButton_RealTimePrint.Size = new System.Drawing.Size(88, 26);
			this.simpleButton_RealTimePrint.TabIndex = 8;
			this.simpleButton_RealTimePrint.Tag = 4;
			this.simpleButton_RealTimePrint.Text = "报  表";
			this.simpleButton_RealTimePrint.Click += new System.EventHandler(this.simpleButton_RealTimePrint_Click);
			// 
			// RealtimeInfo
			// 
			this.Appearance.BackColor = System.Drawing.Color.WhiteSmoke;
			this.Appearance.Options.UseBackColor = true;
			this.Controls.Add(this.xtraTabControl1);
			this.Name = "RealtimeInfo";
			this.Size = new System.Drawing.Size(772, 540);
			this.Load += new System.EventHandler(this.RealtimeInfo_Load);
			((System.ComponentModel.ISupportInitialize)(this.xtraTabControl1)).EndInit();
			this.xtraTabControl1.ResumeLayout(false);
			this.xtraTabPage1.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.splitContainerControl2)).EndInit();
			this.splitContainerControl2.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.groupControl1_Realtime_Graphic)).EndInit();
			this.groupControl1_Realtime_Graphic.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.groupControl_RealtimeStat_Graphic)).EndInit();
			this.groupControl_RealtimeStat_Graphic.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_Realtime_GraphicState.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_Realtime_GraphicClass.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_Realtime_GraphicGrade.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_Realtime_GraphicShow)).EndInit();
			this.groupControl_Realtime_GraphicShow.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.panelControl_Realtime_GraphicShow)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.panelControl2)).EndInit();
			this.panelControl2.ResumeLayout(false);
			this.xtraTabPage2.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.splitContainerControl1)).EndInit();
			this.splitContainerControl1.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.groupControl_RealTime)).EndInit();
			this.groupControl_RealTime.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.groupControl_RealTimeStat)).EndInit();
			this.groupControl_RealTimeStat.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_RealTimeOption.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_RealTimeClass.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_RealTimeGrade.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.gridControl_RealTimeMorning)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.gridControl_RealTimeBack)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.gridView2)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
			this.panelControl1.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()
 {
     this.notePanel_DutyDetailsTitle = new DevExpress.Utils.Frames.NotePanel();
     this.groupControl2              = new DevExpress.XtraEditors.GroupControl();
     this.textEdit_Send_StuName      = new DevExpress.XtraEditors.TextEdit();
     this.comboBoxEdit_Send_StuClass = new DevExpress.XtraEditors.ComboBoxEdit();
     this.comboBoxEdit_Send_StuGrade = new DevExpress.XtraEditors.ComboBoxEdit();
     this.textEdit_Send_StuNumber    = new DevExpress.XtraEditors.TextEdit();
     this.notePanel_Send_StuNumber   = new DevExpress.Utils.Frames.NotePanel();
     this.notePanel_Send_StuClass    = new DevExpress.Utils.Frames.NotePanel();
     this.notePanel_Send_StuGrade    = new DevExpress.Utils.Frames.NotePanel();
     this.notePanel_Send_StuName     = new DevExpress.Utils.Frames.NotePanel();
     this.groupControl1              = new DevExpress.XtraEditors.GroupControl();
     this.groupControl3              = new DevExpress.XtraEditors.GroupControl();
     this.simpleButton_EditPhoneNum  = new DevExpress.XtraEditors.SimpleButton();
     this.notePanel1    = new DevExpress.Utils.Frames.NotePanel();
     this.notePanel2    = new DevExpress.Utils.Frames.NotePanel();
     this.textEdit1     = new DevExpress.XtraEditors.TextEdit();
     this.textEdit2     = new DevExpress.XtraEditors.TextEdit();
     this.gridControl1  = new DevExpress.XtraGrid.GridControl();
     this.gridView1     = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn1   = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn2   = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn3   = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn4   = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn5   = new DevExpress.XtraGrid.Columns.GridColumn();
     this.groupControl4 = new DevExpress.XtraEditors.GroupControl();
     this.gridControl2  = new DevExpress.XtraGrid.GridControl();
     this.gridView2     = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn6   = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn7   = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn8   = new DevExpress.XtraGrid.Columns.GridColumn();
     this.simpleButton2 = new DevExpress.XtraEditors.SimpleButton();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).BeginInit();
     this.groupControl2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit_Send_StuName.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_Send_StuClass.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_Send_StuGrade.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit_Send_StuNumber.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
     this.groupControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl3)).BeginInit();
     this.groupControl3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit2.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridControl1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl4)).BeginInit();
     this.groupControl4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControl2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView2)).BeginInit();
     this.SuspendLayout();
     //
     // notePanel_DutyDetailsTitle
     //
     this.notePanel_DutyDetailsTitle.BackColor        = System.Drawing.Color.LightGoldenrodYellow;
     this.notePanel_DutyDetailsTitle.Dock             = System.Windows.Forms.DockStyle.Top;
     this.notePanel_DutyDetailsTitle.ForeColor        = System.Drawing.Color.Gray;
     this.notePanel_DutyDetailsTitle.GradientMode     = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.notePanel_DutyDetailsTitle.Location         = new System.Drawing.Point(0, 0);
     this.notePanel_DutyDetailsTitle.MaxRows          = 5;
     this.notePanel_DutyDetailsTitle.Name             = "notePanel_DutyDetailsTitle";
     this.notePanel_DutyDetailsTitle.ParentAutoHeight = true;
     this.notePanel_DutyDetailsTitle.Size             = new System.Drawing.Size(584, 23);
     this.notePanel_DutyDetailsTitle.TabIndex         = 14;
     this.notePanel_DutyDetailsTitle.TabStop          = false;
     this.notePanel_DutyDetailsTitle.Text             = "查看编辑号码簿";
     //
     // groupControl2
     //
     this.groupControl2.AppearanceCaption.Font                 = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
     this.groupControl2.AppearanceCaption.ForeColor            = System.Drawing.Color.DarkOrange;
     this.groupControl2.AppearanceCaption.Options.UseFont      = true;
     this.groupControl2.AppearanceCaption.Options.UseForeColor = true;
     this.groupControl2.Controls.Add(this.textEdit_Send_StuName);
     this.groupControl2.Controls.Add(this.comboBoxEdit_Send_StuClass);
     this.groupControl2.Controls.Add(this.comboBoxEdit_Send_StuGrade);
     this.groupControl2.Controls.Add(this.textEdit_Send_StuNumber);
     this.groupControl2.Controls.Add(this.notePanel_Send_StuNumber);
     this.groupControl2.Controls.Add(this.notePanel_Send_StuClass);
     this.groupControl2.Controls.Add(this.notePanel_Send_StuGrade);
     this.groupControl2.Controls.Add(this.notePanel_Send_StuName);
     this.groupControl2.Dock     = System.Windows.Forms.DockStyle.Top;
     this.groupControl2.Location = new System.Drawing.Point(0, 23);
     this.groupControl2.Name     = "groupControl2";
     this.groupControl2.Size     = new System.Drawing.Size(584, 81);
     this.groupControl2.TabIndex = 22;
     this.groupControl2.Text     = "查找条件";
     //
     // textEdit_Send_StuName
     //
     this.textEdit_Send_StuName.Anchor            = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.textEdit_Send_StuName.EditValue         = "";
     this.textEdit_Send_StuName.Location          = new System.Drawing.Point(96, 32);
     this.textEdit_Send_StuName.Name              = "textEdit_Send_StuName";
     this.textEdit_Send_StuName.Size              = new System.Drawing.Size(56, 23);
     this.textEdit_Send_StuName.TabIndex          = 40;
     this.textEdit_Send_StuName.EditValueChanged += new System.EventHandler(this.textEdit_Send_StuName_EditValueChanged);
     //
     // comboBoxEdit_Send_StuClass
     //
     this.comboBoxEdit_Send_StuClass.Anchor    = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.comboBoxEdit_Send_StuClass.EditValue = "全部";
     this.comboBoxEdit_Send_StuClass.Location  = new System.Drawing.Point(494, 32);
     this.comboBoxEdit_Send_StuClass.Name      = "comboBoxEdit_Send_StuClass";
     //
     // comboBoxEdit_Send_StuClass.Properties
     //
     this.comboBoxEdit_Send_StuClass.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.comboBoxEdit_Send_StuClass.Properties.Items.AddRange(new object[] {
         "全部"
     });
     this.comboBoxEdit_Send_StuClass.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
     this.comboBoxEdit_Send_StuClass.Size                  = new System.Drawing.Size(64, 23);
     this.comboBoxEdit_Send_StuClass.TabIndex              = 39;
     this.comboBoxEdit_Send_StuClass.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit_Send_StuClass_SelectedIndexChanged);
     //
     // comboBoxEdit_Send_StuGrade
     //
     this.comboBoxEdit_Send_StuGrade.Anchor    = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.comboBoxEdit_Send_StuGrade.EditValue = "全部";
     this.comboBoxEdit_Send_StuGrade.Location  = new System.Drawing.Point(356, 32);
     this.comboBoxEdit_Send_StuGrade.Name      = "comboBoxEdit_Send_StuGrade";
     //
     // comboBoxEdit_Send_StuGrade.Properties
     //
     this.comboBoxEdit_Send_StuGrade.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.comboBoxEdit_Send_StuGrade.Properties.Items.AddRange(new object[] {
         "全部"
     });
     this.comboBoxEdit_Send_StuGrade.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
     this.comboBoxEdit_Send_StuGrade.Size                  = new System.Drawing.Size(64, 23);
     this.comboBoxEdit_Send_StuGrade.TabIndex              = 38;
     this.comboBoxEdit_Send_StuGrade.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit_Send_StuGrade_SelectedIndexChanged);
     //
     // textEdit_Send_StuNumber
     //
     this.textEdit_Send_StuNumber.Anchor    = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.textEdit_Send_StuNumber.EditValue = "";
     this.textEdit_Send_StuNumber.Location  = new System.Drawing.Point(226, 32);
     this.textEdit_Send_StuNumber.Name      = "textEdit_Send_StuNumber";
     //
     // textEdit_Send_StuNumber.Properties
     //
     this.textEdit_Send_StuNumber.Properties.Mask.EditMask = "d4";
     this.textEdit_Send_StuNumber.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.textEdit_Send_StuNumber.Size              = new System.Drawing.Size(56, 23);
     this.textEdit_Send_StuNumber.TabIndex          = 37;
     this.textEdit_Send_StuNumber.EditValueChanged += new System.EventHandler(this.textEdit_Send_StuNumber_EditValueChanged);
     //
     // notePanel_Send_StuNumber
     //
     this.notePanel_Send_StuNumber.Anchor           = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.notePanel_Send_StuNumber.BackColor        = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
     this.notePanel_Send_StuNumber.BackColor2       = System.Drawing.Color.DarkGray;
     this.notePanel_Send_StuNumber.Font             = new System.Drawing.Font("Tahoma", 8F);
     this.notePanel_Send_StuNumber.ForeColor        = System.Drawing.Color.Black;
     this.notePanel_Send_StuNumber.GradientMode     = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.notePanel_Send_StuNumber.Location         = new System.Drawing.Point(157, 32);
     this.notePanel_Send_StuNumber.MaxRows          = 5;
     this.notePanel_Send_StuNumber.Name             = "notePanel_Send_StuNumber";
     this.notePanel_Send_StuNumber.ParentAutoHeight = true;
     this.notePanel_Send_StuNumber.Size             = new System.Drawing.Size(64, 22);
     this.notePanel_Send_StuNumber.TabIndex         = 36;
     this.notePanel_Send_StuNumber.TabStop          = false;
     this.notePanel_Send_StuNumber.Text             = "学  号:";
     //
     // notePanel_Send_StuClass
     //
     this.notePanel_Send_StuClass.Anchor           = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.notePanel_Send_StuClass.BackColor        = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
     this.notePanel_Send_StuClass.BackColor2       = System.Drawing.Color.DarkGray;
     this.notePanel_Send_StuClass.Font             = new System.Drawing.Font("Tahoma", 8F);
     this.notePanel_Send_StuClass.ForeColor        = System.Drawing.Color.Black;
     this.notePanel_Send_StuClass.GradientMode     = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.notePanel_Send_StuClass.Location         = new System.Drawing.Point(425, 32);
     this.notePanel_Send_StuClass.MaxRows          = 5;
     this.notePanel_Send_StuClass.Name             = "notePanel_Send_StuClass";
     this.notePanel_Send_StuClass.ParentAutoHeight = true;
     this.notePanel_Send_StuClass.Size             = new System.Drawing.Size(64, 22);
     this.notePanel_Send_StuClass.TabIndex         = 35;
     this.notePanel_Send_StuClass.TabStop          = false;
     this.notePanel_Send_StuClass.Text             = "班  级:";
     //
     // notePanel_Send_StuGrade
     //
     this.notePanel_Send_StuGrade.Anchor           = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.notePanel_Send_StuGrade.BackColor        = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
     this.notePanel_Send_StuGrade.BackColor2       = System.Drawing.Color.DarkGray;
     this.notePanel_Send_StuGrade.Font             = new System.Drawing.Font("Tahoma", 8F);
     this.notePanel_Send_StuGrade.ForeColor        = System.Drawing.Color.Black;
     this.notePanel_Send_StuGrade.GradientMode     = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.notePanel_Send_StuGrade.Location         = new System.Drawing.Point(287, 32);
     this.notePanel_Send_StuGrade.MaxRows          = 5;
     this.notePanel_Send_StuGrade.Name             = "notePanel_Send_StuGrade";
     this.notePanel_Send_StuGrade.ParentAutoHeight = true;
     this.notePanel_Send_StuGrade.Size             = new System.Drawing.Size(64, 22);
     this.notePanel_Send_StuGrade.TabIndex         = 34;
     this.notePanel_Send_StuGrade.TabStop          = false;
     this.notePanel_Send_StuGrade.Text             = "年  级:";
     //
     // notePanel_Send_StuName
     //
     this.notePanel_Send_StuName.Anchor           = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.notePanel_Send_StuName.BackColor        = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
     this.notePanel_Send_StuName.BackColor2       = System.Drawing.Color.DarkGray;
     this.notePanel_Send_StuName.Font             = new System.Drawing.Font("Tahoma", 8F);
     this.notePanel_Send_StuName.ForeColor        = System.Drawing.Color.Black;
     this.notePanel_Send_StuName.GradientMode     = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.notePanel_Send_StuName.Location         = new System.Drawing.Point(27, 32);
     this.notePanel_Send_StuName.MaxRows          = 5;
     this.notePanel_Send_StuName.Name             = "notePanel_Send_StuName";
     this.notePanel_Send_StuName.ParentAutoHeight = true;
     this.notePanel_Send_StuName.Size             = new System.Drawing.Size(64, 22);
     this.notePanel_Send_StuName.TabIndex         = 33;
     this.notePanel_Send_StuName.TabStop          = false;
     this.notePanel_Send_StuName.Text             = "姓  名:";
     //
     // groupControl1
     //
     this.groupControl1.AppearanceCaption.Font                 = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
     this.groupControl1.AppearanceCaption.ForeColor            = System.Drawing.Color.DarkOrange;
     this.groupControl1.AppearanceCaption.Options.UseFont      = true;
     this.groupControl1.AppearanceCaption.Options.UseForeColor = true;
     this.groupControl1.Controls.Add(this.groupControl3);
     this.groupControl1.Controls.Add(this.gridControl1);
     this.groupControl1.Controls.Add(this.groupControl4);
     this.groupControl1.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.groupControl1.Location = new System.Drawing.Point(0, 104);
     this.groupControl1.Name     = "groupControl1";
     this.groupControl1.Size     = new System.Drawing.Size(584, 384);
     this.groupControl1.TabIndex = 23;
     this.groupControl1.Text     = "编辑号码簿";
     //
     // groupControl3
     //
     this.groupControl3.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                       | System.Windows.Forms.AnchorStyles.Right)));
     this.groupControl3.Controls.Add(this.simpleButton_EditPhoneNum);
     this.groupControl3.Controls.Add(this.notePanel1);
     this.groupControl3.Controls.Add(this.notePanel2);
     this.groupControl3.Controls.Add(this.textEdit1);
     this.groupControl3.Controls.Add(this.textEdit2);
     this.groupControl3.Location = new System.Drawing.Point(232, 24);
     this.groupControl3.Name     = "groupControl3";
     this.groupControl3.Size     = new System.Drawing.Size(336, 160);
     this.groupControl3.TabIndex = 24;
     this.groupControl3.Text     = "对选定学生新增号码";
     //
     // simpleButton_EditPhoneNum
     //
     this.simpleButton_EditPhoneNum.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.simpleButton_EditPhoneNum.Location = new System.Drawing.Point(240, 120);
     this.simpleButton_EditPhoneNum.Name     = "simpleButton_EditPhoneNum";
     this.simpleButton_EditPhoneNum.Size     = new System.Drawing.Size(72, 24);
     this.simpleButton_EditPhoneNum.TabIndex = 22;
     this.simpleButton_EditPhoneNum.Text     = "新增";
     this.simpleButton_EditPhoneNum.Click   += new System.EventHandler(this.simpleButton_EditPhoneNum_Click);
     //
     // notePanel1
     //
     this.notePanel1.Anchor           = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.notePanel1.BackColor        = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
     this.notePanel1.BackColor2       = System.Drawing.Color.DarkGray;
     this.notePanel1.Font             = new System.Drawing.Font("Tahoma", 8F);
     this.notePanel1.ForeColor        = System.Drawing.Color.Black;
     this.notePanel1.GradientMode     = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.notePanel1.Location         = new System.Drawing.Point(32, 40);
     this.notePanel1.MaxRows          = 5;
     this.notePanel1.Name             = "notePanel1";
     this.notePanel1.ParentAutoHeight = true;
     this.notePanel1.Size             = new System.Drawing.Size(128, 22);
     this.notePanel1.TabIndex         = 34;
     this.notePanel1.TabStop          = false;
     this.notePanel1.Text             = "持有手机家长姓名:";
     //
     // notePanel2
     //
     this.notePanel2.Anchor           = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.notePanel2.BackColor        = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
     this.notePanel2.BackColor2       = System.Drawing.Color.DarkGray;
     this.notePanel2.Font             = new System.Drawing.Font("Tahoma", 8F);
     this.notePanel2.ForeColor        = System.Drawing.Color.Black;
     this.notePanel2.GradientMode     = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.notePanel2.Location         = new System.Drawing.Point(32, 80);
     this.notePanel2.MaxRows          = 5;
     this.notePanel2.Name             = "notePanel2";
     this.notePanel2.ParentAutoHeight = true;
     this.notePanel2.Size             = new System.Drawing.Size(128, 22);
     this.notePanel2.TabIndex         = 34;
     this.notePanel2.TabStop          = false;
     this.notePanel2.Text             = "注册服务手机号码:";
     //
     // textEdit1
     //
     this.textEdit1.Anchor    = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.textEdit1.EditValue = "";
     this.textEdit1.Location  = new System.Drawing.Point(168, 40);
     this.textEdit1.Name      = "textEdit1";
     this.textEdit1.Size      = new System.Drawing.Size(136, 23);
     this.textEdit1.TabIndex  = 37;
     //
     // textEdit2
     //
     this.textEdit2.Anchor    = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.textEdit2.EditValue = "";
     this.textEdit2.Location  = new System.Drawing.Point(168, 80);
     this.textEdit2.Name      = "textEdit2";
     this.textEdit2.Size      = new System.Drawing.Size(136, 23);
     this.textEdit2.TabIndex  = 37;
     this.textEdit2.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.textEdit2_KeyPress);
     //
     // gridControl1
     //
     this.gridControl1.Dock = System.Windows.Forms.DockStyle.Left;
     //
     // gridControl1.EmbeddedNavigator
     //
     this.gridControl1.EmbeddedNavigator.Name = "";
     this.gridControl1.Location = new System.Drawing.Point(3, 18);
     this.gridControl1.MainView = this.gridView1;
     this.gridControl1.Name     = "gridControl1";
     this.gridControl1.Size     = new System.Drawing.Size(221, 363);
     this.gridControl1.TabIndex = 23;
     this.gridControl1.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
         this.gridView1
     });
     //
     // gridView1
     //
     this.gridView1.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
         this.gridColumn1,
         this.gridColumn2,
         this.gridColumn3,
         this.gridColumn4,
         this.gridColumn5
     });
     this.gridView1.GridControl = this.gridControl1;
     this.gridView1.Name        = "gridView1";
     this.gridView1.OptionsBehavior.Editable         = false;
     this.gridView1.OptionsCustomization.AllowFilter = false;
     this.gridView1.OptionsCustomization.AllowGroup  = false;
     this.gridView1.OptionsView.ShowFilterPanel      = false;
     this.gridView1.OptionsView.ShowFooter           = true;
     this.gridView1.OptionsView.ShowGroupPanel       = false;
     this.gridView1.FocusedRowChanged += new DevExpress.XtraGrid.Views.Base.FocusedRowChangedEventHandler(this.gridView1_FocusedRowChanged);
     //
     // gridColumn1
     //
     this.gridColumn1.Caption      = "学号";
     this.gridColumn1.FieldName    = "info_stuNumber";
     this.gridColumn1.Name         = "gridColumn1";
     this.gridColumn1.Visible      = true;
     this.gridColumn1.VisibleIndex = 0;
     //
     // gridColumn2
     //
     this.gridColumn2.Caption      = "姓名";
     this.gridColumn2.FieldName    = "info_stuName";
     this.gridColumn2.Name         = "gridColumn2";
     this.gridColumn2.Visible      = true;
     this.gridColumn2.VisibleIndex = 1;
     //
     // gridColumn3
     //
     this.gridColumn3.Caption      = "年级";
     this.gridColumn3.FieldName    = "info_gradeName";
     this.gridColumn3.Name         = "gridColumn3";
     this.gridColumn3.Visible      = true;
     this.gridColumn3.VisibleIndex = 2;
     //
     // gridColumn4
     //
     this.gridColumn4.Caption      = "班级";
     this.gridColumn4.FieldName    = "info_className";
     this.gridColumn4.Name         = "gridColumn4";
     this.gridColumn4.Visible      = true;
     this.gridColumn4.VisibleIndex = 3;
     //
     // gridColumn5
     //
     this.gridColumn5.Caption   = "gridColumn5";
     this.gridColumn5.FieldName = "info_stuID";
     this.gridColumn5.Name      = "gridColumn5";
     //
     // groupControl4
     //
     this.groupControl4.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.groupControl4.Controls.Add(this.gridControl2);
     this.groupControl4.Controls.Add(this.simpleButton2);
     this.groupControl4.Location = new System.Drawing.Point(232, 192);
     this.groupControl4.Name     = "groupControl4";
     this.groupControl4.Size     = new System.Drawing.Size(336, 184);
     this.groupControl4.TabIndex = 24;
     this.groupControl4.Text     = "显示选定学生已添加号码";
     //
     // gridControl2
     //
     this.gridControl2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                      | System.Windows.Forms.AnchorStyles.Left)));
     //
     // gridControl2.EmbeddedNavigator
     //
     this.gridControl2.EmbeddedNavigator.Name = "";
     this.gridControl2.Location = new System.Drawing.Point(3, 56);
     this.gridControl2.MainView = this.gridView2;
     this.gridControl2.Name     = "gridControl2";
     this.gridControl2.Size     = new System.Drawing.Size(346, 128);
     this.gridControl2.TabIndex = 22;
     this.gridControl2.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
         this.gridView2
     });
     //
     // gridView2
     //
     this.gridView2.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
         this.gridColumn6,
         this.gridColumn7,
         this.gridColumn8
     });
     this.gridView2.GridControl = this.gridControl2;
     this.gridView2.Name        = "gridView2";
     this.gridView2.OptionsBehavior.Editable         = false;
     this.gridView2.OptionsCustomization.AllowFilter = false;
     this.gridView2.OptionsCustomization.AllowGroup  = false;
     this.gridView2.OptionsView.ShowFilterPanel      = false;
     this.gridView2.OptionsView.ShowFooter           = true;
     this.gridView2.OptionsView.ShowGroupPanel       = false;
     //
     // gridColumn6
     //
     this.gridColumn6.Caption      = "持有手机家长姓名";
     this.gridColumn6.FieldName    = "familial_name";
     this.gridColumn6.Name         = "gridColumn6";
     this.gridColumn6.Visible      = true;
     this.gridColumn6.VisibleIndex = 0;
     //
     // gridColumn7
     //
     this.gridColumn7.Caption      = "注册手机号码";
     this.gridColumn7.FieldName    = "mobilePhone_number";
     this.gridColumn7.Name         = "gridColumn7";
     this.gridColumn7.Visible      = true;
     this.gridColumn7.VisibleIndex = 1;
     //
     // gridColumn8
     //
     this.gridColumn8.Caption   = "gridColumn8";
     this.gridColumn8.FieldName = "smsInfo_id";
     this.gridColumn8.Name      = "gridColumn8";
     //
     // simpleButton2
     //
     this.simpleButton2.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.simpleButton2.Location = new System.Drawing.Point(240, 16);
     this.simpleButton2.Name     = "simpleButton2";
     this.simpleButton2.Size     = new System.Drawing.Size(72, 24);
     this.simpleButton2.TabIndex = 21;
     this.simpleButton2.Text     = "删除";
     this.simpleButton2.Click   += new System.EventHandler(this.simpleButton2_Click);
     //
     // PhoneNum
     //
     this.Appearance.BackColor            = System.Drawing.Color.WhiteSmoke;
     this.Appearance.Options.UseBackColor = true;
     this.Controls.Add(this.groupControl1);
     this.Controls.Add(this.groupControl2);
     this.Controls.Add(this.notePanel_DutyDetailsTitle);
     this.Name = "PhoneNum";
     this.Size = new System.Drawing.Size(584, 488);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).EndInit();
     this.groupControl2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.textEdit_Send_StuName.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_Send_StuClass.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_Send_StuGrade.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit_Send_StuNumber.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
     this.groupControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl3)).EndInit();
     this.groupControl3.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.textEdit1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit2.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridControl1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl4)).EndInit();
     this.groupControl4.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControl2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView2)).EndInit();
     this.ResumeLayout(false);
 }
示例#50
0
        // 查看详细
        private void dgvCljbxx_MouseDoubleClick(object sender, MouseEventArgs e)
        {
            ColumnView  cv = (ColumnView)dgvCljbxx.FocusedView;
            DataRowView dr = (DataRowView)cv.GetFocusedRow();

            if (dr == null)
            {
                return;
            }
            string vin = (string)dr.Row.ItemArray[0];

            // 获取此VIN的详细信息,带入窗口
            string sql = @"select * from FC_CLJBXX where vin = @vin";

            OleDbParameter[] param =
            {
                new OleDbParameter("@vin", vin)
            };
            DataSet   ds = AccessHelper.ExecuteDataSet(AccessHelper.conn, sql, param);
            DataTable dt = ds.Tables[0];

            // 弹出详细信息窗口,可修改
            JbxxViewForm jvf = new JbxxViewForm();

            jvf.status = "1";
            if (dt.Rows.Count > 0)
            {
                for (int i = 0; i < dt.Columns.Count; i++)
                {
                    DataColumn dc = dt.Columns[i];
                    Control[]  c  = jvf.Controls.Find("tb" + dc.ColumnName, true);
                    if (c.Length > 0)
                    {
                        if (c[0] is TextEdit)
                        {
                            c[0].Text = dt.Rows[0].ItemArray[i].ToString();
                            continue;
                        }
                        if (c[0] is DevExpress.XtraEditors.ComboBoxEdit)
                        {
                            DevExpress.XtraEditors.ComboBoxEdit cb = c[0] as DevExpress.XtraEditors.ComboBoxEdit;
                            cb.Text = dt.Rows[0].ItemArray[i].ToString();
                            if (cb.Text == "汽油" || cb.Text == "柴油" || cb.Text == "两用燃料" ||
                                cb.Text == "双燃料" || cb.Text == "纯电动" || cb.Text == "非插电式混合动力" || cb.Text == "插电式混合动力" || cb.Text == "燃料电池")
                            {
                                string rlval = cb.Text;
                                if (cb.Text == "汽油" || cb.Text == "柴油" || cb.Text == "两用燃料" ||
                                    cb.Text == "双燃料")
                                {
                                    rlval = "传统能源";
                                }

                                // 构建燃料参数控件
                                jvf.getParamList(rlval, true);
                            }
                        }
                    }
                }
            }

            // 获取燃料信息
            string rlsql = @"select e.* from RLLX_PARAM_ENTITY e where e.vin = @vin";

            ds = AccessHelper.ExecuteDataSet(AccessHelper.conn, rlsql, param);
            dt = ds.Tables[0];

            for (int i = 0; i < dt.Rows.Count; i++)
            {
                DataRow   drrlxx = dt.Rows[i];
                string    cName  = drrlxx.ItemArray[1].ToString();
                Control[] c      = jvf.Controls.Find(cName, true);
                if (c.Length > 0)
                {
                    if (c[0] is TextEdit)
                    {
                        c[0].Text = drrlxx.ItemArray[3].ToString();
                        continue;
                    }
                    if (c[0] is DevExpress.XtraEditors.ComboBoxEdit)
                    {
                        DevExpress.XtraEditors.ComboBoxEdit cb = c[0] as DevExpress.XtraEditors.ComboBoxEdit;
                        cb.Text = drrlxx.ItemArray[3].ToString();
                    }
                }
            }

            (jvf.Controls.Find("tc", true)[0] as XtraTabControl).SelectedTabPageIndex = 0;
            jvf.MaximizeBox = false;
            jvf.MinimizeBox = false;
            jvf.setVisible("btnbaocun", false);
            jvf.setVisible("btnbaocunshangbao", false);
            Utils.SetFormMid(jvf);
            jvf.formClosingEventHandel += new FormClosingEventHandler(refrashBySubForm);
            jvf.ShowDialog();
        }
示例#51
0
 private void InitializeComponent()
 {
     DevExpress.XtraCharts.XYDiagram xyDiagram1 = new DevExpress.XtraCharts.XYDiagram();
     DevExpress.XtraCharts.Series    series1    = new DevExpress.XtraCharts.Series();
     DevExpress.XtraCharts.Series    series2    = new DevExpress.XtraCharts.Series();
     this.layoutControl1      = new DevExpress.XtraLayout.LayoutControl();
     this.chartControl1       = new DevExpress.XtraCharts.ChartControl();
     this.btn_Stats           = new DevExpress.XtraEditors.SimpleButton();
     this.clbx_disList        = new DevExpress.XtraEditors.CheckedListBoxControl();
     this.btn_chartOutput     = new DevExpress.XtraEditors.SimpleButton();
     this.labelControl1       = new DevExpress.XtraEditors.LabelControl();
     this.cbx_prop            = new DevExpress.XtraEditors.ComboBoxEdit();
     this.layoutControlGroup1 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlGroup3 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlItem3  = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem4  = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem5  = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem2  = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem7  = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlGroup2 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlItem1  = new DevExpress.XtraLayout.LayoutControlItem();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl1)).BeginInit();
     this.layoutControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.chartControl1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(xyDiagram1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(series1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(series2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.clbx_disList)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbx_prop.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem7)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).BeginInit();
     this.SuspendLayout();
     //
     // layoutControl1
     //
     this.layoutControl1.Controls.Add(this.chartControl1);
     this.layoutControl1.Controls.Add(this.btn_Stats);
     this.layoutControl1.Controls.Add(this.clbx_disList);
     this.layoutControl1.Controls.Add(this.btn_chartOutput);
     this.layoutControl1.Controls.Add(this.labelControl1);
     this.layoutControl1.Controls.Add(this.cbx_prop);
     this.layoutControl1.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.layoutControl1.Location = new System.Drawing.Point(0, 0);
     this.layoutControl1.Name     = "layoutControl1";
     this.layoutControl1.Root     = this.layoutControlGroup1;
     this.layoutControl1.Size     = new System.Drawing.Size(574, 357);
     this.layoutControl1.TabIndex = 0;
     this.layoutControl1.Text     = "layoutControl1";
     //
     // chartControl1
     //
     xyDiagram1.AxisX.VisibleInPanesSerializable = "-1";
     xyDiagram1.AxisY.VisibleInPanesSerializable = "-1";
     this.chartControl1.Diagram  = xyDiagram1;
     this.chartControl1.Location = new System.Drawing.Point(158, 25);
     this.chartControl1.Name     = "chartControl1";
     series1.Name = "Series 1";
     series2.Name = "Series 2";
     this.chartControl1.SeriesSerializable = new DevExpress.XtraCharts.Series[] {
         series1,
         series2
     };
     this.chartControl1.Size     = new System.Drawing.Size(411, 327);
     this.chartControl1.TabIndex = 12;
     //
     // btn_Stats
     //
     this.btn_Stats.Location        = new System.Drawing.Point(5, 304);
     this.btn_Stats.Name            = "btn_Stats";
     this.btn_Stats.Size            = new System.Drawing.Size(143, 22);
     this.btn_Stats.StyleController = this.layoutControl1;
     this.btn_Stats.TabIndex        = 11;
     this.btn_Stats.Text            = "生成统计";
     this.btn_Stats.Click          += new System.EventHandler(this.btn_Stats_Click);
     //
     // clbx_disList
     //
     this.clbx_disList.Location        = new System.Drawing.Point(5, 25);
     this.clbx_disList.Name            = "clbx_disList";
     this.clbx_disList.Size            = new System.Drawing.Size(143, 249);
     this.clbx_disList.StyleController = this.layoutControl1;
     this.clbx_disList.TabIndex        = 9;
     //
     // btn_chartOutput
     //
     this.btn_chartOutput.Location        = new System.Drawing.Point(5, 330);
     this.btn_chartOutput.Name            = "btn_chartOutput";
     this.btn_chartOutput.Size            = new System.Drawing.Size(143, 22);
     this.btn_chartOutput.StyleController = this.layoutControl1;
     this.btn_chartOutput.TabIndex        = 8;
     this.btn_chartOutput.Text            = "图表输出";
     //
     // labelControl1
     //
     this.labelControl1.Location        = new System.Drawing.Point(5, 278);
     this.labelControl1.Name            = "labelControl1";
     this.labelControl1.Size            = new System.Drawing.Size(60, 14);
     this.labelControl1.StyleController = this.layoutControl1;
     this.labelControl1.TabIndex        = 7;
     this.labelControl1.Text            = "属性字段:";
     //
     // cbx_prop
     //
     this.cbx_prop.Location = new System.Drawing.Point(69, 278);
     this.cbx_prop.Name     = "cbx_prop";
     this.cbx_prop.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.cbx_prop.Size            = new System.Drawing.Size(79, 22);
     this.cbx_prop.StyleController = this.layoutControl1;
     this.cbx_prop.TabIndex        = 6;
     //
     // layoutControlGroup1
     //
     this.layoutControlGroup1.CustomizationFormText       = "layoutControlGroup1";
     this.layoutControlGroup1.EnableIndentsWithoutBorders = DevExpress.Utils.DefaultBoolean.True;
     this.layoutControlGroup1.GroupBordersVisible         = false;
     this.layoutControlGroup1.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
         this.layoutControlGroup3,
         this.layoutControlGroup2
     });
     this.layoutControlGroup1.Location    = new System.Drawing.Point(0, 0);
     this.layoutControlGroup1.Name        = "layoutControlGroup1";
     this.layoutControlGroup1.Padding     = new DevExpress.XtraLayout.Utils.Padding(0, 0, 0, 0);
     this.layoutControlGroup1.Size        = new System.Drawing.Size(574, 357);
     this.layoutControlGroup1.Text        = "layoutControlGroup1";
     this.layoutControlGroup1.TextVisible = false;
     //
     // layoutControlGroup3
     //
     this.layoutControlGroup3.CustomizationFormText = "参数设置";
     this.layoutControlGroup3.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
         this.layoutControlItem3,
         this.layoutControlItem4,
         this.layoutControlItem5,
         this.layoutControlItem2,
         this.layoutControlItem7
     });
     this.layoutControlGroup3.Location = new System.Drawing.Point(0, 0);
     this.layoutControlGroup3.Name     = "layoutControlGroup3";
     this.layoutControlGroup3.Padding  = new DevExpress.XtraLayout.Utils.Padding(0, 0, 0, 0);
     this.layoutControlGroup3.Size     = new System.Drawing.Size(153, 357);
     this.layoutControlGroup3.Text     = "参数设置";
     //
     // layoutControlItem3
     //
     this.layoutControlItem3.Control = this.cbx_prop;
     this.layoutControlItem3.CustomizationFormText = "layoutControlItem3";
     this.layoutControlItem3.Location = new System.Drawing.Point(64, 253);
     this.layoutControlItem3.Name     = "layoutControlItem3";
     this.layoutControlItem3.Size     = new System.Drawing.Size(83, 26);
     this.layoutControlItem3.Text     = "layoutControlItem3";
     this.layoutControlItem3.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem3.TextToControlDistance = 0;
     this.layoutControlItem3.TextVisible           = false;
     //
     // layoutControlItem4
     //
     this.layoutControlItem4.Control = this.labelControl1;
     this.layoutControlItem4.CustomizationFormText = "layoutControlItem4";
     this.layoutControlItem4.Location = new System.Drawing.Point(0, 253);
     this.layoutControlItem4.Name     = "layoutControlItem4";
     this.layoutControlItem4.Size     = new System.Drawing.Size(64, 26);
     this.layoutControlItem4.Text     = "layoutControlItem4";
     this.layoutControlItem4.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem4.TextToControlDistance = 0;
     this.layoutControlItem4.TextVisible           = false;
     //
     // layoutControlItem5
     //
     this.layoutControlItem5.Control = this.btn_chartOutput;
     this.layoutControlItem5.CustomizationFormText = "layoutControlItem5";
     this.layoutControlItem5.Location = new System.Drawing.Point(0, 305);
     this.layoutControlItem5.Name     = "layoutControlItem5";
     this.layoutControlItem5.Size     = new System.Drawing.Size(147, 26);
     this.layoutControlItem5.Text     = "layoutControlItem5";
     this.layoutControlItem5.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem5.TextToControlDistance = 0;
     this.layoutControlItem5.TextVisible           = false;
     //
     // layoutControlItem2
     //
     this.layoutControlItem2.Control = this.clbx_disList;
     this.layoutControlItem2.CustomizationFormText = "layoutControlItem2";
     this.layoutControlItem2.Location = new System.Drawing.Point(0, 0);
     this.layoutControlItem2.Name     = "layoutControlItem2";
     this.layoutControlItem2.Size     = new System.Drawing.Size(147, 253);
     this.layoutControlItem2.Text     = "layoutControlItem2";
     this.layoutControlItem2.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem2.TextToControlDistance = 0;
     this.layoutControlItem2.TextVisible           = false;
     //
     // layoutControlItem7
     //
     this.layoutControlItem7.Control = this.btn_Stats;
     this.layoutControlItem7.CustomizationFormText = "layoutControlItem7";
     this.layoutControlItem7.Location = new System.Drawing.Point(0, 279);
     this.layoutControlItem7.Name     = "layoutControlItem7";
     this.layoutControlItem7.Size     = new System.Drawing.Size(147, 26);
     this.layoutControlItem7.Text     = "layoutControlItem7";
     this.layoutControlItem7.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem7.TextToControlDistance = 0;
     this.layoutControlItem7.TextVisible           = false;
     //
     // layoutControlGroup2
     //
     this.layoutControlGroup2.CustomizationFormText = "柱状图";
     this.layoutControlGroup2.ExpandButtonMode      = DevExpress.Utils.Controls.ExpandButtonMode.Inverted;
     this.layoutControlGroup2.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
         this.layoutControlItem1
     });
     this.layoutControlGroup2.Location = new System.Drawing.Point(153, 0);
     this.layoutControlGroup2.Name     = "layoutControlGroup2";
     this.layoutControlGroup2.Padding  = new DevExpress.XtraLayout.Utils.Padding(0, 0, 0, 0);
     this.layoutControlGroup2.Size     = new System.Drawing.Size(421, 357);
     this.layoutControlGroup2.Text     = "柱状图";
     //
     // layoutControlItem1
     //
     this.layoutControlItem1.Control = this.chartControl1;
     this.layoutControlItem1.CustomizationFormText = "layoutControlItem1";
     this.layoutControlItem1.Location = new System.Drawing.Point(0, 0);
     this.layoutControlItem1.Name     = "layoutControlItem1";
     this.layoutControlItem1.Size     = new System.Drawing.Size(415, 331);
     this.layoutControlItem1.Text     = "layoutControlItem1";
     this.layoutControlItem1.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem1.TextToControlDistance = 0;
     this.layoutControlItem1.TextVisible           = false;
     //
     // UCEconomyStatsChartOutput2D
     //
     this.Controls.Add(this.layoutControl1);
     this.Name = "UCEconomyStatsChartOutput2D";
     this.Size = new System.Drawing.Size(574, 357);
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl1)).EndInit();
     this.layoutControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(xyDiagram1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(series1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(series2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chartControl1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.clbx_disList)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbx_prop.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem7)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).EndInit();
     this.ResumeLayout(false);
 }