/// <summary> 
 /// Required method for Designer support - do not modify 
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.cCB_Edit = new DevExpress.XtraEditors.CheckedComboBoxEdit();
     ((System.ComponentModel.ISupportInitialize)(this.cCB_Edit.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // cCB_Edit
     //
     this.cCB_Edit.Dock = System.Windows.Forms.DockStyle.Fill;
     this.cCB_Edit.Location = new System.Drawing.Point(0, 0);
     this.cCB_Edit.Name = "cCB_Edit";
     this.cCB_Edit.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cCB_Edit.Size = new System.Drawing.Size(199, 20);
     this.cCB_Edit.TabIndex = 5;
     //
     // PLCheckedComboBox
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.cCB_Edit);
     this.Name = "PLCheckedComboBox";
     this.Size = new System.Drawing.Size(199, 20);
     ((System.ComponentModel.ISupportInitialize)(this.cCB_Edit.Properties)).EndInit();
     this.ResumeLayout(false);
 }
Пример #2
0
    //加载CheckedComboBoxEdit
    public static void CheckedComboBoxEditDataBind(DevExpress.XtraEditors.CheckedComboBoxEdit checkedComboBoxEdit1, string strSql, string sValueMember, string sDisplayMember)
    {
        string sError = "";
        //strSql = "SELECT DeptID as TypeID,DeptName as TypeName  FROM TQx_Dept WHERE State='使用' Order by SortID ";
        DataTable dt = SqlHelper.RunQuery(CommandType.Text, strSql, null, out sError);

        checkedComboBoxEdit1.Properties.DisplayMember = sDisplayMember;
        checkedComboBoxEdit1.Properties.ValueMember   = sValueMember;
        checkedComboBoxEdit1.Properties.DataSource    = dt;
    }
Пример #3
0
 private void InitionData(DevExpress.XtraEditors.CheckedComboBoxEdit comboBox, string displayMember, string valueMember, string nullTest, string cnStr, object post)
 {
     comboBox.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
     comboBox.Properties.DataSource    = post;
     comboBox.Properties.DisplayMember = displayMember;
     comboBox.Properties.ValueMember   = valueMember;
     comboBox.Properties.NullText      = nullTest;
     comboBox.Properties.Items.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
         new DevExpress.XtraEditors.Controls.LookUpColumnInfo(valueMember, "ID", 15, DevExpress.Utils.FormatType.None, "", false, DevExpress.Utils.HorzAlignment.Default),
         new DevExpress.XtraEditors.Controls.LookUpColumnInfo(displayMember, cnStr)
     });
 }
Пример #4
0
 public void CheckedComboBoxEdit_ClearItems(DevExpress.XtraEditors.CheckedComboBoxEdit control)
 {
     if (control.InvokeRequired)
     {
         control.Invoke(new Action(() =>
         {
             control.Properties.Items.Clear();
         }));
     }
     else
     {
         control.Properties.Items.Clear();
     }
 }
Пример #5
0
 public void CheckedComboBoxEdit_AddItems(DevExpress.XtraEditors.CheckedComboBoxEdit control,
                                          object value, string description, CheckState checkState, bool enabled)
 {
     if (control.InvokeRequired)
     {
         control.Invoke(new Action(() =>
         {
             control.Properties.Items.Add(value, description, checkState, enabled);
         }));
     }
     else
     {
         control.Properties.Items.Add(value, description, checkState, enabled);
     }
 }
Пример #6
0
    //获取CheckedComboBoxEdit的值
    public static string CheckedComboBoxEditGetCheckedValues(DevExpress.XtraEditors.CheckedComboBoxEdit checkedComboBoxEdit1)
    {
        string strReturn = "";

        for (int i = 0; i < checkedComboBoxEdit1.Properties.Items.GetCheckedValues().Count; i++)
        {
            string sTemp = checkedComboBoxEdit1.Properties.Items.GetCheckedValues()[i].ToString();
            strReturn += ",'" + sTemp + "'";
        }
        if (strReturn.Trim().Length > 0)
        {
            strReturn = strReturn.Substring(1);
        }
        return(strReturn);
    }
Пример #7
0
        public LocalizedItem(DevExpress.XtraEditors.CheckedComboBoxEdit checkedCombo, string[] resourceIds)
        {
            this.resourceIds = new string[resourceIds.Length];
            for (int index = 0; index < resourceIds.Length; index++)
            {
                this.resourceIds[index] = resourceIds[index];
            }
            this.obj           = (object)checkedCombo;
            this.type          = ItemType.CheckedComboBoxEdit;
            this.defaultValues = new string[resourceIds.Length];

            for (int index = 0; index < resourceIds.Length; index++)
            {
                this.defaultValues[index] = (string)checkedCombo.Properties.Items[index].Description;
            }
        }
Пример #8
0
        public static string[] GetCheckedComboxCheckedItemsText(DevExpress.XtraEditors.CheckedComboBoxEdit checkedComboBoxEdit, char split = ',')
        {
            string        items  = checkedComboBoxEdit.Properties.GetCheckedItems().ToString();
            List <string> result = new List <string>();

            if (items.Contains(split))
            {
                foreach (string i in items.Split(split))
                {
                    result.Add(i);
                }
            }
            else
            {
                result.Add(items);
            }
            return(result.ToArray());
        }
Пример #9
0
        public static void setCheckEdit(DevExpress.XtraEditors.CheckedComboBoxEdit sCheckEdit, DataTable Dt, string sFieldValue, string sFieldName)
        {
            try
            {
                sCheckEdit.Properties.DataSource = null;

                sCheckEdit.Properties.Items.Clear();

                if (Dt != null && Dt.Rows.Count > 0)
                {
                    sCheckEdit.Properties.DataSource = Dt.DefaultView;

                    sCheckEdit.Properties.DisplayMember = sFieldName;

                    sCheckEdit.Properties.ValueMember = sFieldValue;
                }
            }
            catch { sCheckEdit.Properties.DataSource = null; }
        }
Пример #10
0
 private void InitializeComponent()
 {
     this.cmbBoxTasks   = new DevExpress.XtraEditors.CheckedComboBoxEdit();
     this.labelControl2 = new DevExpress.XtraEditors.LabelControl();
     ((System.ComponentModel.ISupportInitialize)(this.cmbBoxTasks.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // cmbBoxTasks
     //
     this.cmbBoxTasks.Anchor    = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.cmbBoxTasks.EditValue = "";
     this.cmbBoxTasks.Location  = new System.Drawing.Point(55, 3);
     this.cmbBoxTasks.Name      = "cmbBoxTasks";
     this.cmbBoxTasks.Properties.AppearanceFocused.Options.UseBackColor = true;
     this.cmbBoxTasks.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.cmbBoxTasks.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.cmbBoxTasks.Properties.LookAndFeel.SkinName = "DevExpress Dark Style";
     this.cmbBoxTasks.Properties.NullText             = "[EditValue is null]";
     this.cmbBoxTasks.Properties.PopupFormMinSize     = new System.Drawing.Size(190, 20);
     this.cmbBoxTasks.Size              = new System.Drawing.Size(141, 20);
     this.cmbBoxTasks.TabIndex          = 103;
     this.cmbBoxTasks.EditValueChanged += new System.EventHandler(this.cmbBoxTasks_EditValueChanged);
     //
     // labelControl2
     //
     this.labelControl2.Location = new System.Drawing.Point(2, 5);
     this.labelControl2.Name     = "labelControl2";
     this.labelControl2.Size     = new System.Drawing.Size(24, 14);
     this.labelControl2.TabIndex = 102;
     this.labelControl2.Text     = "任务";
     //
     // ucSearchPara_Task
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 14F);
     this.Controls.Add(this.cmbBoxTasks);
     this.Controls.Add(this.labelControl2);
     this.Name = "ucSearchPara_Task";
     ((System.ComponentModel.ISupportInitialize)(this.cmbBoxTasks.Properties)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Пример #11
0
 private void InitializeComponent()
 {
     this.labelControl2        = new DevExpress.XtraEditors.LabelControl();
     this.checkedComboBoxEdit1 = new DevExpress.XtraEditors.CheckedComboBoxEdit();
     ((System.ComponentModel.ISupportInitialize)(this.checkedComboBoxEdit1.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // labelControl2
     //
     this.labelControl2.Location = new System.Drawing.Point(2, 5);
     this.labelControl2.Name     = "labelControl2";
     this.labelControl2.Size     = new System.Drawing.Size(24, 14);
     this.labelControl2.TabIndex = 102;
     this.labelControl2.Text     = "相机";
     //
     // checkedComboBoxEdit1
     //
     this.checkedComboBoxEdit1.Anchor    = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.checkedComboBoxEdit1.EditValue = "";
     this.checkedComboBoxEdit1.Location  = new System.Drawing.Point(54, 3);
     this.checkedComboBoxEdit1.Name      = "checkedComboBoxEdit1";
     this.checkedComboBoxEdit1.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.checkedComboBoxEdit1.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.checkedComboBoxEdit1.Properties.LookAndFeel.SkinName = "DevExpress Dark Style";
     this.checkedComboBoxEdit1.Size              = new System.Drawing.Size(141, 20);
     this.checkedComboBoxEdit1.TabIndex          = 103;
     this.checkedComboBoxEdit1.EditValueChanged += new System.EventHandler(this.checkedComboBoxEdit1_EditValueChanged);
     //
     // ucSearchPara_Camera
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 14F);
     this.Controls.Add(this.checkedComboBoxEdit1);
     this.Controls.Add(this.labelControl2);
     this.Name = "ucSearchPara_Camera";
     ((System.ComponentModel.ISupportInitialize)(this.checkedComboBoxEdit1.Properties)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.gridControlData = new DevExpress.XtraGrid.GridControl();
     this.gridViewData = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemGridLookUpEditEmpID = new DevExpress.XtraEditors.Repository.RepositoryItemGridLookUpEdit();
     this.gridView2 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn13 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn15 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemGridLookUpEditdaycode = new DevExpress.XtraEditors.Repository.RepositoryItemGridLookUpEdit();
     this.gridView4 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn16 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn17 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn14 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemGridLookUpEdithasa_code = new DevExpress.XtraEditors.Repository.RepositoryItemGridLookUpEdit();
     this.gridView5 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn18 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn19 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemGridLookUpEditalsofof_code = new DevExpress.XtraEditors.Repository.RepositoryItemGridLookUpEdit();
     this.repositoryItemGridLookUpEdit1View = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn7 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn8 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn5 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemGridLookUpEditfasl_code = new DevExpress.XtraEditors.Repository.RepositoryItemGridLookUpEdit();
     this.gridView1 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn6 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn9 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn10 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemGridLookUpEditSubjectId = new DevExpress.XtraEditors.Repository.RepositoryItemGridLookUpEdit();
     this.gridView3 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn11 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn12 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn20 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemGridLookUpEditplacecd = new DevExpress.XtraEditors.Repository.RepositoryItemGridLookUpEdit();
     this.gridView6 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn21 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn3 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemButtonEditSave = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
     this.gridColumn4 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemButtonEditDel = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
     this.gcControls = new DevExpress.XtraEditors.GroupControl();
     this.LuePlace = new DevExpress.XtraEditors.LookUpEdit();
     this.btnAdd = new DevExpress.XtraEditors.SimpleButton();
     this.labelControl2 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
     this.LUEEmp = new DevExpress.XtraEditors.CheckedComboBoxEdit();
     this.pb = new DevExpress.XtraEditors.ProgressBarControl();
     this.XtraTabControl1 = new DevExpress.XtraTab.XtraTabControl();
     this.xtraTabPage1 = new DevExpress.XtraTab.XtraTabPage();
     this.xtraTabPage2 = new DevExpress.XtraTab.XtraTabPage();
     this.LuePlaceShare = new DevExpress.XtraEditors.LookUpEdit();
     this.btnAddShare = new DevExpress.XtraEditors.SimpleButton();
     this.labelControl3 = new DevExpress.XtraEditors.LabelControl();
     this.btnPrint = new DevExpress.XtraEditors.SimpleButton();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlData)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewData)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemGridLookUpEditEmpID)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemGridLookUpEditdaycode)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemGridLookUpEdithasa_code)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemGridLookUpEditalsofof_code)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemGridLookUpEdit1View)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemGridLookUpEditfasl_code)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemGridLookUpEditSubjectId)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemGridLookUpEditplacecd)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView6)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEditSave)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEditDel)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gcControls)).BeginInit();
     this.gcControls.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.LuePlace.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.LUEEmp.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pb.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.XtraTabControl1)).BeginInit();
     this.XtraTabControl1.SuspendLayout();
     this.xtraTabPage1.SuspendLayout();
     this.xtraTabPage2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.LuePlaceShare.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // gridControlData
     //
     this.gridControlData.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.gridControlData.EmbeddedNavigator.Buttons.CancelEdit.Visible = false;
     this.gridControlData.EmbeddedNavigator.Buttons.Edit.Visible = false;
     this.gridControlData.EmbeddedNavigator.Buttons.EndEdit.Visible = false;
     this.gridControlData.EmbeddedNavigator.Buttons.Remove.Visible = false;
     this.gridControlData.Location = new System.Drawing.Point(0, 176);
     this.gridControlData.MainView = this.gridViewData;
     this.gridControlData.Name = "gridControlData";
     this.gridControlData.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemButtonEditSave,
     this.repositoryItemButtonEditDel,
     this.repositoryItemGridLookUpEditEmpID,
     this.repositoryItemGridLookUpEditalsofof_code,
     this.repositoryItemGridLookUpEditfasl_code,
     this.repositoryItemGridLookUpEditSubjectId,
     this.repositoryItemGridLookUpEditdaycode,
     this.repositoryItemGridLookUpEdithasa_code,
     this.repositoryItemGridLookUpEditplacecd});
     this.gridControlData.Size = new System.Drawing.Size(784, 386);
     this.gridControlData.TabIndex = 1;
     this.gridControlData.UseEmbeddedNavigator = true;
     this.gridControlData.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewData});
     this.gridControlData.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ActiveKeyDownEvent);
     //
     // gridViewData
     //
     this.gridViewData.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn1,
     this.gridColumn15,
     this.gridColumn14,
     this.gridColumn2,
     this.gridColumn5,
     this.gridColumn10,
     this.gridColumn20,
     this.gridColumn3,
     this.gridColumn4});
     this.gridViewData.GridControl = this.gridControlData;
     this.gridViewData.Name = "gridViewData";
     this.gridViewData.OptionsView.ColumnAutoWidth = 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.ColumnEdit = this.repositoryItemGridLookUpEditEmpID;
     this.gridColumn1.FieldName = "EmpID";
     this.gridColumn1.Name = "gridColumn1";
     this.gridColumn1.Visible = true;
     this.gridColumn1.VisibleIndex = 0;
     this.gridColumn1.Width = 189;
     //
     // repositoryItemGridLookUpEditEmpID
     //
     this.repositoryItemGridLookUpEditEmpID.AutoHeight = false;
     this.repositoryItemGridLookUpEditEmpID.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemGridLookUpEditEmpID.Name = "repositoryItemGridLookUpEditEmpID";
     this.repositoryItemGridLookUpEditEmpID.NullText = "";
     this.repositoryItemGridLookUpEditEmpID.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     this.repositoryItemGridLookUpEditEmpID.View = this.gridView2;
     //
     // gridView2
     //
     this.gridView2.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn13});
     this.gridView2.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
     this.gridView2.Name = "gridView2";
     this.gridView2.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gridView2.OptionsView.ShowGroupPanel = false;
     //
     // 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 = "emp_name";
     this.gridColumn13.Name = "gridColumn13";
     this.gridColumn13.Visible = true;
     this.gridColumn13.VisibleIndex = 0;
     //
     // 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.ColumnEdit = this.repositoryItemGridLookUpEditdaycode;
     this.gridColumn15.FieldName = "daycode";
     this.gridColumn15.Name = "gridColumn15";
     this.gridColumn15.Visible = true;
     this.gridColumn15.VisibleIndex = 2;
     this.gridColumn15.Width = 87;
     //
     // repositoryItemGridLookUpEditdaycode
     //
     this.repositoryItemGridLookUpEditdaycode.AutoHeight = false;
     this.repositoryItemGridLookUpEditdaycode.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo),
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Plus)});
     this.repositoryItemGridLookUpEditdaycode.DisplayMember = "dayname";
     this.repositoryItemGridLookUpEditdaycode.Name = "repositoryItemGridLookUpEditdaycode";
     this.repositoryItemGridLookUpEditdaycode.NullText = "";
     this.repositoryItemGridLookUpEditdaycode.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     this.repositoryItemGridLookUpEditdaycode.ValueMember = "daycode";
     this.repositoryItemGridLookUpEditdaycode.View = this.gridView4;
     this.repositoryItemGridLookUpEditdaycode.ButtonClick += new DevExpress.XtraEditors.Controls.ButtonPressedEventHandler(this.repositoryItemGridLookUpEditdaycode_ButtonClick);
     //
     // gridView4
     //
     this.gridView4.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn16,
     this.gridColumn17});
     this.gridView4.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
     this.gridView4.Name = "gridView4";
     this.gridView4.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gridView4.OptionsView.ShowGroupPanel = false;
     //
     // 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 = "dayname";
     this.gridColumn16.Name = "gridColumn16";
     this.gridColumn16.Visible = true;
     this.gridColumn16.VisibleIndex = 0;
     //
     // 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 = "dayname_e";
     this.gridColumn17.Name = "gridColumn17";
     this.gridColumn17.Visible = true;
     this.gridColumn17.VisibleIndex = 1;
     //
     // 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.ColumnEdit = this.repositoryItemGridLookUpEdithasa_code;
     this.gridColumn14.FieldName = "hasa_code";
     this.gridColumn14.Name = "gridColumn14";
     this.gridColumn14.Visible = true;
     this.gridColumn14.VisibleIndex = 1;
     this.gridColumn14.Width = 85;
     //
     // repositoryItemGridLookUpEdithasa_code
     //
     this.repositoryItemGridLookUpEdithasa_code.AutoHeight = false;
     this.repositoryItemGridLookUpEdithasa_code.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo),
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Plus)});
     this.repositoryItemGridLookUpEdithasa_code.DisplayMember = "hasa_name";
     this.repositoryItemGridLookUpEdithasa_code.Name = "repositoryItemGridLookUpEdithasa_code";
     this.repositoryItemGridLookUpEdithasa_code.NullText = "";
     this.repositoryItemGridLookUpEdithasa_code.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     this.repositoryItemGridLookUpEdithasa_code.ValueMember = "hasa_code";
     this.repositoryItemGridLookUpEdithasa_code.View = this.gridView5;
     this.repositoryItemGridLookUpEdithasa_code.ButtonClick += new DevExpress.XtraEditors.Controls.ButtonPressedEventHandler(this.repositoryItemGridLookUpEdithasa_code_ButtonClick);
     //
     // gridView5
     //
     this.gridView5.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn18,
     this.gridColumn19});
     this.gridView5.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
     this.gridView5.Name = "gridView5";
     this.gridView5.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gridView5.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 = "hasa_name";
     this.gridColumn18.Name = "gridColumn18";
     this.gridColumn18.Visible = true;
     this.gridColumn18.VisibleIndex = 0;
     //
     // 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 = "hasa_name_e";
     this.gridColumn19.Name = "gridColumn19";
     this.gridColumn19.Visible = true;
     this.gridColumn19.VisibleIndex = 1;
     //
     // 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.ColumnEdit = this.repositoryItemGridLookUpEditalsofof_code;
     this.gridColumn2.FieldName = "alsofof_code";
     this.gridColumn2.Name = "gridColumn2";
     this.gridColumn2.Visible = true;
     this.gridColumn2.VisibleIndex = 3;
     this.gridColumn2.Width = 90;
     //
     // repositoryItemGridLookUpEditalsofof_code
     //
     this.repositoryItemGridLookUpEditalsofof_code.AutoHeight = false;
     this.repositoryItemGridLookUpEditalsofof_code.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo),
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Plus)});
     this.repositoryItemGridLookUpEditalsofof_code.DisplayMember = "alsofof_name";
     this.repositoryItemGridLookUpEditalsofof_code.Name = "repositoryItemGridLookUpEditalsofof_code";
     this.repositoryItemGridLookUpEditalsofof_code.NullText = "";
     this.repositoryItemGridLookUpEditalsofof_code.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     this.repositoryItemGridLookUpEditalsofof_code.ValueMember = "alsofof_code";
     this.repositoryItemGridLookUpEditalsofof_code.View = this.repositoryItemGridLookUpEdit1View;
     this.repositoryItemGridLookUpEditalsofof_code.ButtonClick += new DevExpress.XtraEditors.Controls.ButtonPressedEventHandler(this.repositoryItemGridLookUpEditalsofof_code_ButtonClick);
     //
     // repositoryItemGridLookUpEdit1View
     //
     this.repositoryItemGridLookUpEdit1View.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn7,
     this.gridColumn8});
     this.repositoryItemGridLookUpEdit1View.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
     this.repositoryItemGridLookUpEdit1View.Name = "repositoryItemGridLookUpEdit1View";
     this.repositoryItemGridLookUpEdit1View.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.repositoryItemGridLookUpEdit1View.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 = "alsofof_name";
     this.gridColumn7.Name = "gridColumn7";
     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 = "alsofof_name_e";
     this.gridColumn8.Name = "gridColumn8";
     this.gridColumn8.Visible = true;
     this.gridColumn8.VisibleIndex = 1;
     //
     // 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.ColumnEdit = this.repositoryItemGridLookUpEditfasl_code;
     this.gridColumn5.FieldName = "fasl_code";
     this.gridColumn5.Name = "gridColumn5";
     this.gridColumn5.Visible = true;
     this.gridColumn5.VisibleIndex = 4;
     this.gridColumn5.Width = 77;
     //
     // repositoryItemGridLookUpEditfasl_code
     //
     this.repositoryItemGridLookUpEditfasl_code.AutoHeight = false;
     this.repositoryItemGridLookUpEditfasl_code.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo),
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Plus)});
     this.repositoryItemGridLookUpEditfasl_code.DisplayMember = "fasl_name";
     this.repositoryItemGridLookUpEditfasl_code.Name = "repositoryItemGridLookUpEditfasl_code";
     this.repositoryItemGridLookUpEditfasl_code.NullText = "";
     this.repositoryItemGridLookUpEditfasl_code.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     this.repositoryItemGridLookUpEditfasl_code.ValueMember = "fasl_code";
     this.repositoryItemGridLookUpEditfasl_code.View = this.gridView1;
     this.repositoryItemGridLookUpEditfasl_code.ButtonClick += new DevExpress.XtraEditors.Controls.ButtonPressedEventHandler(this.repositoryItemGridLookUpEditfasl_code_ButtonClick);
     //
     // gridView1
     //
     this.gridView1.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn6,
     this.gridColumn9});
     this.gridView1.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
     this.gridView1.Name = "gridView1";
     this.gridView1.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gridView1.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 = "fasl_name";
     this.gridColumn6.Name = "gridColumn6";
     this.gridColumn6.Visible = true;
     this.gridColumn6.VisibleIndex = 0;
     //
     // 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 = "fasl_name_e";
     this.gridColumn9.Name = "gridColumn9";
     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.ColumnEdit = this.repositoryItemGridLookUpEditSubjectId;
     this.gridColumn10.FieldName = "SubjectId";
     this.gridColumn10.Name = "gridColumn10";
     this.gridColumn10.Visible = true;
     this.gridColumn10.VisibleIndex = 5;
     this.gridColumn10.Width = 103;
     //
     // repositoryItemGridLookUpEditSubjectId
     //
     this.repositoryItemGridLookUpEditSubjectId.AutoHeight = false;
     this.repositoryItemGridLookUpEditSubjectId.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemGridLookUpEditSubjectId.DisplayMember = "Subject";
     this.repositoryItemGridLookUpEditSubjectId.Name = "repositoryItemGridLookUpEditSubjectId";
     this.repositoryItemGridLookUpEditSubjectId.NullText = "";
     this.repositoryItemGridLookUpEditSubjectId.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     this.repositoryItemGridLookUpEditSubjectId.ValueMember = "SubjectId";
     this.repositoryItemGridLookUpEditSubjectId.View = this.gridView3;
     //
     // gridView3
     //
     this.gridView3.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn11,
     this.gridColumn12});
     this.gridView3.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
     this.gridView3.Name = "gridView3";
     this.gridView3.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gridView3.OptionsView.ShowGroupPanel = false;
     //
     // 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 = "Subject";
     this.gridColumn11.Name = "gridColumn11";
     this.gridColumn11.Visible = true;
     this.gridColumn11.VisibleIndex = 0;
     //
     // 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 = "Subject_e";
     this.gridColumn12.Name = "gridColumn12";
     this.gridColumn12.Visible = true;
     this.gridColumn12.VisibleIndex = 1;
     //
     // 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.ColumnEdit = this.repositoryItemGridLookUpEditplacecd;
     this.gridColumn20.FieldName = "placecd";
     this.gridColumn20.Name = "gridColumn20";
     this.gridColumn20.Visible = true;
     this.gridColumn20.VisibleIndex = 6;
     this.gridColumn20.Width = 88;
     //
     // repositoryItemGridLookUpEditplacecd
     //
     this.repositoryItemGridLookUpEditplacecd.AutoHeight = false;
     this.repositoryItemGridLookUpEditplacecd.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemGridLookUpEditplacecd.DisplayMember = "place";
     this.repositoryItemGridLookUpEditplacecd.Name = "repositoryItemGridLookUpEditplacecd";
     this.repositoryItemGridLookUpEditplacecd.NullText = "";
     this.repositoryItemGridLookUpEditplacecd.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     this.repositoryItemGridLookUpEditplacecd.ValueMember = "placecd";
     this.repositoryItemGridLookUpEditplacecd.View = this.gridView6;
     //
     // gridView6
     //
     this.gridView6.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn21});
     this.gridView6.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
     this.gridView6.Name = "gridView6";
     this.gridView6.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gridView6.OptionsView.ShowGroupPanel = false;
     //
     // 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 = "place";
     this.gridColumn21.Name = "gridColumn21";
     this.gridColumn21.Visible = true;
     this.gridColumn21.VisibleIndex = 0;
     //
     // 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.ColumnEdit = this.repositoryItemButtonEditSave;
     this.gridColumn3.Name = "gridColumn3";
     this.gridColumn3.Visible = true;
     this.gridColumn3.VisibleIndex = 7;
     this.gridColumn3.Width = 71;
     //
     // repositoryItemButtonEditSave
     //
     this.repositoryItemButtonEditSave.AutoHeight = false;
     this.repositoryItemButtonEditSave.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.OK)});
     this.repositoryItemButtonEditSave.Name = "repositoryItemButtonEditSave";
     this.repositoryItemButtonEditSave.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.HideTextEditor;
     this.repositoryItemButtonEditSave.ButtonClick += new DevExpress.XtraEditors.Controls.ButtonPressedEventHandler(this.repositoryItemButtonEditSave_ButtonClick);
     //
     // 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.ColumnEdit = this.repositoryItemButtonEditDel;
     this.gridColumn4.Name = "gridColumn4";
     this.gridColumn4.Visible = true;
     this.gridColumn4.VisibleIndex = 8;
     this.gridColumn4.Width = 70;
     //
     // repositoryItemButtonEditDel
     //
     this.repositoryItemButtonEditDel.AutoHeight = false;
     this.repositoryItemButtonEditDel.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Delete)});
     this.repositoryItemButtonEditDel.Name = "repositoryItemButtonEditDel";
     this.repositoryItemButtonEditDel.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.HideTextEditor;
     this.repositoryItemButtonEditDel.ButtonClick += new DevExpress.XtraEditors.Controls.ButtonPressedEventHandler(this.repositoryItemButtonEditDel_ButtonClick);
     //
     // gcControls
     //
     this.gcControls.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.gcControls.AppearanceCaption.Options.UseTextOptions = true;
     this.gcControls.AppearanceCaption.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gcControls.Controls.Add(this.LuePlace);
     this.gcControls.Controls.Add(this.btnAdd);
     this.gcControls.Controls.Add(this.labelControl2);
     this.gcControls.Controls.Add(this.labelControl1);
     this.gcControls.Controls.Add(this.LUEEmp);
     this.gcControls.Location = new System.Drawing.Point(11, 3);
     this.gcControls.Name = "gcControls";
     this.gcControls.Size = new System.Drawing.Size(760, 93);
     this.gcControls.TabIndex = 0;
     this.gcControls.Text = "خيارات الاضافه";
     //
     // LuePlace
     //
     this.LuePlace.Anchor = System.Windows.Forms.AnchorStyles.Top;
     this.LuePlace.Location = new System.Drawing.Point(131, 34);
     this.LuePlace.Name = "LuePlace";
     this.LuePlace.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.LuePlace.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("place", "المكان", 40, DevExpress.Utils.FormatType.None, "", true, DevExpress.Utils.HorzAlignment.Center)});
     this.LuePlace.Properties.DisplayMember = "place";
     this.LuePlace.Properties.NullText = "";
     this.LuePlace.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     this.LuePlace.Properties.ValueMember = "placecd";
     this.LuePlace.Size = new System.Drawing.Size(200, 20);
     this.LuePlace.TabIndex = 1;
     //
     // btnAdd
     //
     this.btnAdd.Anchor = System.Windows.Forms.AnchorStyles.Top;
     this.btnAdd.Location = new System.Drawing.Point(280, 60);
     this.btnAdd.Name = "btnAdd";
     this.btnAdd.Size = new System.Drawing.Size(200, 23);
     this.btnAdd.TabIndex = 2;
     this.btnAdd.Text = "اضافه";
     this.btnAdd.Click += new System.EventHandler(this.btnAdd_Click);
     //
     // labelControl2
     //
     this.labelControl2.Anchor = System.Windows.Forms.AnchorStyles.Top;
     this.labelControl2.Location = new System.Drawing.Point(337, 37);
     this.labelControl2.Name = "labelControl2";
     this.labelControl2.Size = new System.Drawing.Size(29, 13);
     this.labelControl2.TabIndex = 0;
     this.labelControl2.Text = "المكان";
     //
     // labelControl1
     //
     this.labelControl1.Anchor = System.Windows.Forms.AnchorStyles.Top;
     this.labelControl1.Location = new System.Drawing.Point(584, 37);
     this.labelControl1.Name = "labelControl1";
     this.labelControl1.Size = new System.Drawing.Size(46, 13);
     this.labelControl1.TabIndex = 0;
     this.labelControl1.Text = "المدرسين";
     //
     // LUEEmp
     //
     this.LUEEmp.Anchor = System.Windows.Forms.AnchorStyles.Top;
     this.LUEEmp.EditValue = "";
     this.LUEEmp.Location = new System.Drawing.Point(378, 34);
     this.LUEEmp.Name = "LUEEmp";
     this.LUEEmp.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo),
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Delete)});
     this.LUEEmp.Properties.DisplayMember = "emp_name";
     this.LUEEmp.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     this.LUEEmp.Properties.ValueMember = "EmpID";
     this.LUEEmp.Size = new System.Drawing.Size(200, 20);
     this.LUEEmp.TabIndex = 0;
     this.LUEEmp.ButtonClick += new DevExpress.XtraEditors.Controls.ButtonPressedEventHandler(this.LUEEmp_ButtonClick);
     this.LUEEmp.EditValueChanged += new System.EventHandler(this.LUEEmp_EditValueChanged);
     //
     // pb
     //
     this.pb.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.pb.Location = new System.Drawing.Point(292, 265);
     this.pb.Name = "pb";
     this.pb.Properties.NullText = "تحميــــــــــــل";
     this.pb.Properties.ShowTitle = true;
     this.pb.Properties.Step = 1;
     this.pb.Size = new System.Drawing.Size(200, 32);
     this.pb.TabIndex = 3;
     this.pb.Visible = false;
     //
     // XtraTabControl1
     //
     this.XtraTabControl1.Location = new System.Drawing.Point(0, 5);
     this.XtraTabControl1.Name = "XtraTabControl1";
     this.XtraTabControl1.SelectedTabPage = this.xtraTabPage1;
     this.XtraTabControl1.Size = new System.Drawing.Size(784, 142);
     this.XtraTabControl1.TabIndex = 4;
     this.XtraTabControl1.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
     this.xtraTabPage1,
     this.xtraTabPage2});
     //
     // xtraTabPage1
     //
     this.xtraTabPage1.Controls.Add(this.gcControls);
     this.xtraTabPage1.Name = "xtraTabPage1";
     this.xtraTabPage1.Size = new System.Drawing.Size(778, 114);
     this.xtraTabPage1.Text = "اضافة مدرس";
     //
     // xtraTabPage2
     //
     this.xtraTabPage2.Controls.Add(this.LuePlaceShare);
     this.xtraTabPage2.Controls.Add(this.btnAddShare);
     this.xtraTabPage2.Controls.Add(this.labelControl3);
     this.xtraTabPage2.Name = "xtraTabPage2";
     this.xtraTabPage2.Size = new System.Drawing.Size(778, 114);
     this.xtraTabPage2.Text = "اضافة الانشطه";
     //
     // LuePlaceShare
     //
     this.LuePlaceShare.Anchor = System.Windows.Forms.AnchorStyles.Top;
     this.LuePlaceShare.Location = new System.Drawing.Point(272, 33);
     this.LuePlaceShare.Name = "LuePlaceShare";
     this.LuePlaceShare.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.LuePlaceShare.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("place", "المكان", 40, DevExpress.Utils.FormatType.None, "", true, DevExpress.Utils.HorzAlignment.Center)});
     this.LuePlaceShare.Properties.DisplayMember = "place";
     this.LuePlaceShare.Properties.NullText = "";
     this.LuePlaceShare.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     this.LuePlaceShare.Properties.ValueMember = "placecd";
     this.LuePlaceShare.Size = new System.Drawing.Size(200, 20);
     this.LuePlaceShare.TabIndex = 4;
     //
     // btnAddShare
     //
     this.btnAddShare.Anchor = System.Windows.Forms.AnchorStyles.Top;
     this.btnAddShare.Location = new System.Drawing.Point(289, 69);
     this.btnAddShare.Name = "btnAddShare";
     this.btnAddShare.Size = new System.Drawing.Size(200, 23);
     this.btnAddShare.TabIndex = 5;
     this.btnAddShare.Text = "اضافه";
     this.btnAddShare.Click += new System.EventHandler(this.btnAddShare_Click);
     //
     // labelControl3
     //
     this.labelControl3.Anchor = System.Windows.Forms.AnchorStyles.Top;
     this.labelControl3.Location = new System.Drawing.Point(478, 36);
     this.labelControl3.Name = "labelControl3";
     this.labelControl3.Size = new System.Drawing.Size(29, 13);
     this.labelControl3.TabIndex = 3;
     this.labelControl3.Text = "المكان";
     //
     // btnPrint
     //
     this.btnPrint.Location = new System.Drawing.Point(682, 147);
     this.btnPrint.Name = "btnPrint";
     this.btnPrint.Size = new System.Drawing.Size(97, 23);
     this.btnPrint.TabIndex = 5;
     this.btnPrint.Text = "طباعة و تصدير";
     this.btnPrint.Click += new System.EventHandler(this.btnPrint_Click);
     //
     // TBLTimeTableFrm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(784, 562);
     this.Controls.Add(this.btnPrint);
     this.Controls.Add(this.XtraTabControl1);
     this.Controls.Add(this.pb);
     this.Controls.Add(this.gridControlData);
     this.Name = "TBLTimeTableFrm";
     this.Text = "جدول الحصص";
     this.Load += new System.EventHandler(this.stu_nashatFrm_Load);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlData)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewData)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemGridLookUpEditEmpID)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemGridLookUpEditdaycode)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemGridLookUpEdithasa_code)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemGridLookUpEditalsofof_code)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemGridLookUpEdit1View)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemGridLookUpEditfasl_code)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemGridLookUpEditSubjectId)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemGridLookUpEditplacecd)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView6)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEditSave)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEditDel)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gcControls)).EndInit();
     this.gcControls.ResumeLayout(false);
     this.gcControls.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.LuePlace.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.LUEEmp.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pb.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.XtraTabControl1)).EndInit();
     this.XtraTabControl1.ResumeLayout(false);
     this.xtraTabPage1.ResumeLayout(false);
     this.xtraTabPage2.ResumeLayout(false);
     this.xtraTabPage2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.LuePlaceShare.Properties)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// 设计器支持所需的方法 - 不要
 /// 使用代码编辑器修改此方法的内容。
 /// </summary>
 private void InitializeComponent()
 {
     this.simpleButton1 = new DevExpress.XtraEditors.SimpleButton();
     this.simpleButton2 = new DevExpress.XtraEditors.SimpleButton();
     this.checkEdit1 = new DevExpress.XtraEditors.CheckEdit();
     this.panelControl1 = new DevExpress.XtraEditors.PanelControl();
     this.comboBox1 = new DevExpress.XtraEditors.LookUpEdit();
     this.labelControl2 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
     this.comboBoxEdit4 = new DevExpress.XtraEditors.CheckedComboBoxEdit();
     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.repositoryItemCheckEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.simpleButton3 = new DevExpress.XtraEditors.SimpleButton();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
     this.panelControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.comboBox1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit4.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridControl1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit1)).BeginInit();
     this.SuspendLayout();
     //
     // simpleButton1
     //
     this.simpleButton1.Location = new System.Drawing.Point(371, 294);
     this.simpleButton1.Name = "simpleButton1";
     this.simpleButton1.Size = new System.Drawing.Size(77, 27);
     this.simpleButton1.TabIndex = 1;
     this.simpleButton1.Text = "确定";
     this.simpleButton1.Click += new System.EventHandler(this.simpleButton1_Click);
     //
     // simpleButton2
     //
     this.simpleButton2.Location = new System.Drawing.Point(490, 294);
     this.simpleButton2.Name = "simpleButton2";
     this.simpleButton2.Size = new System.Drawing.Size(77, 27);
     this.simpleButton2.TabIndex = 1;
     this.simpleButton2.Text = "取消";
     this.simpleButton2.Click += new System.EventHandler(this.simpleButton2_Click);
     //
     // checkEdit1
     //
     this.checkEdit1.Location = new System.Drawing.Point(40, 302);
     this.checkEdit1.Name = "checkEdit1";
     this.checkEdit1.Properties.Caption = "全选";
     this.checkEdit1.Size = new System.Drawing.Size(74, 19);
     this.checkEdit1.TabIndex = 2;
     this.checkEdit1.CheckedChanged += new System.EventHandler(this.checkEdit1_CheckedChanged);
     //
     // panelControl1
     //
     this.panelControl1.Controls.Add(this.comboBox1);
     this.panelControl1.Controls.Add(this.labelControl2);
     this.panelControl1.Controls.Add(this.labelControl1);
     this.panelControl1.Controls.Add(this.comboBoxEdit4);
     this.panelControl1.Controls.Add(this.gridControl1);
     this.panelControl1.Controls.Add(this.simpleButton3);
     this.panelControl1.Controls.Add(this.checkEdit1);
     this.panelControl1.Controls.Add(this.simpleButton2);
     this.panelControl1.Controls.Add(this.simpleButton1);
     this.panelControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panelControl1.Location = new System.Drawing.Point(0, 0);
     this.panelControl1.Name = "panelControl1";
     this.panelControl1.Size = new System.Drawing.Size(579, 333);
     this.panelControl1.TabIndex = 0;
     this.panelControl1.Paint += new System.Windows.Forms.PaintEventHandler(this.panelControl1_Paint);
     //
     // comboBox1
     //
     this.comboBox1.EnterMoveNextControl = true;
     this.comboBox1.Location = new System.Drawing.Point(363, 8);
     this.comboBox1.Name = "comboBox1";
     this.comboBox1.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.comboBox1.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("id", "id", 50, DevExpress.Utils.FormatType.None, "", false, DevExpress.Utils.HorzAlignment.Near),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("name", "类型名", 41, DevExpress.Utils.FormatType.None, "", true, DevExpress.Utils.HorzAlignment.Near)});
     this.comboBox1.Properties.DisplayMember = "name";
     this.comboBox1.Properties.NullText = "";
     this.comboBox1.Properties.ValueMember = "id";
     this.comboBox1.Size = new System.Drawing.Size(204, 21);
     this.comboBox1.TabIndex = 115;
     this.comboBox1.EditValueChanged += new System.EventHandler(this.comboBox1_EditValueChanged);
     //
     // labelControl2
     //
     this.labelControl2.Location = new System.Drawing.Point(23, 15);
     this.labelControl2.Name = "labelControl2";
     this.labelControl2.Size = new System.Drawing.Size(60, 14);
     this.labelControl2.TabIndex = 112;
     this.labelControl2.Text = "选择变电站";
     //
     // labelControl1
     //
     this.labelControl1.Location = new System.Drawing.Point(309, 13);
     this.labelControl1.Name = "labelControl1";
     this.labelControl1.Size = new System.Drawing.Size(48, 14);
     this.labelControl1.TabIndex = 112;
     this.labelControl1.Text = "设备类型";
     //
     // comboBoxEdit4
     //
     this.comboBoxEdit4.EditValue = "";
     this.comboBoxEdit4.Location = new System.Drawing.Point(89, 10);
     this.comboBoxEdit4.Name = "comboBoxEdit4";
     this.comboBoxEdit4.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.comboBoxEdit4.Size = new System.Drawing.Size(193, 21);
     this.comboBoxEdit4.TabIndex = 111;
     //
     // gridControl1
     //
     this.gridControl1.Location = new System.Drawing.Point(5, 40);
     this.gridControl1.MainView = this.gridView1;
     this.gridControl1.Name = "gridControl1";
     this.gridControl1.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemCheckEdit1});
     this.gridControl1.Size = new System.Drawing.Size(562, 248);
     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.GroupPanelText = "设备";
     this.gridView1.Name = "gridView1";
     //
     // gridColumn1
     //
     this.gridColumn1.Caption = "设备ID";
     this.gridColumn1.FieldName = "A";
     this.gridColumn1.Name = "gridColumn1";
     this.gridColumn1.OptionsColumn.AllowEdit = false;
     //
     // gridColumn2
     //
     this.gridColumn2.Caption = "设备名称";
     this.gridColumn2.FieldName = "B";
     this.gridColumn2.Name = "gridColumn2";
     this.gridColumn2.OptionsColumn.AllowEdit = false;
     this.gridColumn2.Visible = true;
     this.gridColumn2.VisibleIndex = 0;
     //
     // gridColumn3
     //
     this.gridColumn3.Caption = "是否选择";
     this.gridColumn3.ColumnEdit = this.repositoryItemCheckEdit1;
     this.gridColumn3.FieldName = "C";
     this.gridColumn3.Name = "gridColumn3";
     this.gridColumn3.Visible = true;
     this.gridColumn3.VisibleIndex = 1;
     //
     // repositoryItemCheckEdit1
     //
     this.repositoryItemCheckEdit1.AutoHeight = false;
     this.repositoryItemCheckEdit1.Name = "repositoryItemCheckEdit1";
     //
     // simpleButton3
     //
     this.simpleButton3.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.simpleButton3.Location = new System.Drawing.Point(196, 295);
     this.simpleButton3.Name = "simpleButton3";
     this.simpleButton3.Size = new System.Drawing.Size(86, 27);
     this.simpleButton3.TabIndex = 6;
     this.simpleButton3.Text = "检索选择设备";
     this.simpleButton3.Click += new System.EventHandler(this.simpleButton3_Click);
     //
     // frmDeviceList_sh
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 14F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(579, 333);
     this.Controls.Add(this.panelControl1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name = "frmDeviceList_sh";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "选择设备";
     this.Load += new System.EventHandler(this.frmDeviceList_Load);
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
     this.panelControl1.ResumeLayout(false);
     this.panelControl1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.comboBox1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit4.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridControl1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit1)).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()
 {
     DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit repositoryItemCheckEdit2;
     System.ComponentModel.ComponentResourceManager            resources = new System.ComponentModel.ComponentResourceManager(typeof(FormNewMemberCreditPackageUsage));
     DevExpress.XtraEditors.Repository.RepositoryItemTextEdit  repositoryItemTextEdit1;
     this.lkpEdtPackageCode       = new DevExpress.XtraEditors.LookUpEdit();
     this.label1                  = new System.Windows.Forms.Label();
     this.simpleButtonCancel      = new DevExpress.XtraEditors.SimpleButton();
     this.simpleButtonOK          = new DevExpress.XtraEditors.SimpleButton();
     this.label3                  = new System.Windows.Forms.Label();
     this.gridControl1            = new DevExpress.XtraGrid.GridControl();
     this.gridView1               = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn4             = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn1             = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Quantity                = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemSpinEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemSpinEdit();
     this.gridColumn2             = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn3             = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridView2               = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.checkedComboBoxEdit1    = new DevExpress.XtraEditors.CheckedComboBoxEdit();
     repositoryItemCheckEdit2     = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     repositoryItemTextEdit1      = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     ((System.ComponentModel.ISupportInitialize)(repositoryItemCheckEdit2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(repositoryItemTextEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkpEdtPackageCode.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridControl1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemSpinEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkedComboBoxEdit1.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // repositoryItemCheckEdit2
     //
     resources.ApplyResources(repositoryItemCheckEdit2, "repositoryItemCheckEdit2");
     repositoryItemCheckEdit2.Name = "repositoryItemCheckEdit2";
     //
     // repositoryItemTextEdit1
     //
     resources.ApplyResources(repositoryItemTextEdit1, "repositoryItemTextEdit1");
     repositoryItemTextEdit1.Name = "repositoryItemTextEdit1";
     //
     // lkpEdtPackageCode
     //
     resources.ApplyResources(this.lkpEdtPackageCode, "lkpEdtPackageCode");
     this.lkpEdtPackageCode.Name = "lkpEdtPackageCode";
     this.lkpEdtPackageCode.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(((DevExpress.XtraEditors.Controls.ButtonPredefines)(resources.GetObject("lkpEdtPackageCode.Properties.Buttons"))))
     });
     this.lkpEdtPackageCode.EditValueChanged += new System.EventHandler(this.lkpEdtPackageCode_EditValueChanged);
     //
     // label1
     //
     resources.ApplyResources(this.label1, "label1");
     this.label1.Name = "label1";
     //
     // simpleButtonCancel
     //
     this.simpleButtonCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     resources.ApplyResources(this.simpleButtonCancel, "simpleButtonCancel");
     this.simpleButtonCancel.Name = "simpleButtonCancel";
     //
     // simpleButtonOK
     //
     this.simpleButtonOK.DialogResult = System.Windows.Forms.DialogResult.OK;
     resources.ApplyResources(this.simpleButtonOK, "simpleButtonOK");
     this.simpleButtonOK.Name   = "simpleButtonOK";
     this.simpleButtonOK.Click += new System.EventHandler(this.simpleButtonOK_Click);
     //
     // label3
     //
     resources.ApplyResources(this.label3, "label3");
     this.label3.Name = "label3";
     //
     // gridControl1
     //
     resources.ApplyResources(this.gridControl1, "gridControl1");
     this.gridControl1.MainView = this.gridView1;
     this.gridControl1.Name     = "gridControl1";
     this.gridControl1.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
         repositoryItemCheckEdit2,
         repositoryItemTextEdit1,
         this.repositoryItemSpinEdit1
     });
     this.gridControl1.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
         this.gridView1,
         this.gridView2
     });
     //
     // gridView1
     //
     this.gridView1.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
         this.gridColumn4,
         this.gridColumn1,
         this.Quantity,
         this.gridColumn2,
         this.gridColumn3
     });
     this.gridView1.GridControl        = this.gridControl1;
     this.gridView1.Name               = "gridView1";
     this.gridView1.FocusedRowChanged += new DevExpress.XtraGrid.Views.Base.FocusedRowChangedEventHandler(this.gridView1_FocusedRowChanged);
     //
     // gridColumn4
     //
     resources.ApplyResources(this.gridColumn4, "gridColumn4");
     this.gridColumn4.ColumnEdit = repositoryItemCheckEdit2;
     this.gridColumn4.FieldName  = "Tick";
     this.gridColumn4.Name       = "gridColumn4";
     //
     // gridColumn1
     //
     resources.ApplyResources(this.gridColumn1, "gridColumn1");
     this.gridColumn1.FieldName = "strPackageCode";
     this.gridColumn1.Name      = "gridColumn1";
     this.gridColumn1.OptionsColumn.AllowEdit = false;
     //
     // Quantity
     //
     resources.ApplyResources(this.Quantity, "Quantity");
     this.Quantity.ColumnEdit = this.repositoryItemSpinEdit1;
     this.Quantity.FieldName  = "nQuantity";
     this.Quantity.Name       = "Quantity";
     //
     // repositoryItemSpinEdit1
     //
     this.repositoryItemSpinEdit1.AllowNullInput = DevExpress.Utils.DefaultBoolean.False;
     resources.ApplyResources(this.repositoryItemSpinEdit1, "repositoryItemSpinEdit1");
     this.repositoryItemSpinEdit1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton()
     });
     this.repositoryItemSpinEdit1.IsFloatValue  = false;
     this.repositoryItemSpinEdit1.Mask.EditMask = resources.GetString("repositoryItemSpinEdit1.Mask.EditMask");
     this.repositoryItemSpinEdit1.MaxValue      = new decimal(new int[] {
         100,
         0,
         0,
         0
     });
     this.repositoryItemSpinEdit1.MinValue = new decimal(new int[] {
         1,
         0,
         0,
         0
     });
     this.repositoryItemSpinEdit1.Name = "repositoryItemSpinEdit1";
     //
     // gridColumn2
     //
     resources.ApplyResources(this.gridColumn2, "gridColumn2");
     this.gridColumn2.FieldName = "strDescription";
     this.gridColumn2.Name      = "gridColumn2";
     this.gridColumn2.OptionsColumn.AllowEdit = false;
     //
     // gridColumn3
     //
     resources.ApplyResources(this.gridColumn3, "gridColumn3");
     this.gridColumn3.FieldName = "dtValidEnd";
     this.gridColumn3.Name      = "gridColumn3";
     this.gridColumn3.OptionsColumn.AllowEdit = false;
     //
     // gridView2
     //
     this.gridView2.GridControl = this.gridControl1;
     this.gridView2.Name        = "gridView2";
     //
     // checkedComboBoxEdit1
     //
     resources.ApplyResources(this.checkedComboBoxEdit1, "checkedComboBoxEdit1");
     this.checkedComboBoxEdit1.Name = "checkedComboBoxEdit1";
     this.checkedComboBoxEdit1.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(((DevExpress.XtraEditors.Controls.ButtonPredefines)(resources.GetObject("checkedComboBoxEdit1.Properties.Buttons"))))
     });
     //
     // FormNewMemberCreditPackageUsage
     //
     this.AcceptButton = this.simpleButtonOK;
     resources.ApplyResources(this, "$this");
     this.CancelButton = this.simpleButtonCancel;
     this.Controls.Add(this.checkedComboBoxEdit1);
     this.Controls.Add(this.gridControl1);
     this.Controls.Add(this.label3);
     this.Controls.Add(this.simpleButtonCancel);
     this.Controls.Add(this.simpleButtonOK);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.lkpEdtPackageCode);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.Name            = "FormNewMemberCreditPackageUsage";
     this.ShowInTaskbar   = false;
     ((System.ComponentModel.ISupportInitialize)(repositoryItemCheckEdit2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(repositoryItemTextEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkpEdtPackageCode.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridControl1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemSpinEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkedComboBoxEdit1.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.labelControl3 = new DevExpress.XtraEditors.LabelControl();
     this.groupControl1 = new DevExpress.XtraEditors.GroupControl();
     this.lbDisFS = new DevExpress.XtraEditors.ListBoxControl();
     this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
     this.lbConFS = new DevExpress.XtraEditors.ListBoxControl();
     this.labelControl6 = new DevExpress.XtraEditors.LabelControl();
     this.groupControl2 = new DevExpress.XtraEditors.GroupControl();
     this.cboConFS = new DevExpress.XtraEditors.CheckedComboBoxEdit();
     this.cboDisFS = new DevExpress.XtraEditors.CheckedComboBoxEdit();
     this.btnOK = new DevExpress.XtraEditors.SimpleButton();
     this.txtValues = new DevExpress.XtraEditors.TextEdit();
     this.labelControl5 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl2 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl7 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl4 = new DevExpress.XtraEditors.LabelControl();
     this.btnCancel = new DevExpress.XtraEditors.SimpleButton();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
     this.groupControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.lbDisFS)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lbConFS)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).BeginInit();
     this.groupControl2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cboConFS.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cboDisFS.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtValues.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // labelControl3
     //
     this.labelControl3.Appearance.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelControl3.Location = new System.Drawing.Point(141, 15);
     this.labelControl3.Name = "labelControl3";
     this.labelControl3.Size = new System.Drawing.Size(143, 19);
     this.labelControl3.TabIndex = 9;
     this.labelControl3.Text = "Fuzzy Sets Action";
     //
     // groupControl1
     //
     this.groupControl1.Controls.Add(this.lbDisFS);
     this.groupControl1.Controls.Add(this.labelControl1);
     this.groupControl1.Controls.Add(this.lbConFS);
     this.groupControl1.Controls.Add(this.labelControl6);
     this.groupControl1.Location = new System.Drawing.Point(12, 169);
     this.groupControl1.Name = "groupControl1";
     this.groupControl1.Size = new System.Drawing.Size(407, 271);
     this.groupControl1.TabIndex = 13;
     this.groupControl1.Text = "Result";
     //
     // lbDisFS
     //
     this.lbDisFS.Location = new System.Drawing.Point(5, 44);
     this.lbDisFS.Name = "lbDisFS";
     this.lbDisFS.Size = new System.Drawing.Size(178, 222);
     this.lbDisFS.TabIndex = 0;
     //
     // labelControl1
     //
     this.labelControl1.Location = new System.Drawing.Point(19, 25);
     this.labelControl1.Name = "labelControl1";
     this.labelControl1.Size = new System.Drawing.Size(58, 13);
     this.labelControl1.TabIndex = 12;
     this.labelControl1.Text = "Discrete FS:";
     //
     // lbConFS
     //
     this.lbConFS.Location = new System.Drawing.Point(224, 41);
     this.lbConFS.Name = "lbConFS";
     this.lbConFS.Size = new System.Drawing.Size(178, 225);
     this.lbConFS.TabIndex = 0;
     //
     // labelControl6
     //
     this.labelControl6.Location = new System.Drawing.Point(247, 25);
     this.labelControl6.Name = "labelControl6";
     this.labelControl6.Size = new System.Drawing.Size(73, 13);
     this.labelControl6.TabIndex = 12;
     this.labelControl6.Text = "Continuous FS:";
     //
     // groupControl2
     //
     this.groupControl2.Controls.Add(this.cboConFS);
     this.groupControl2.Controls.Add(this.cboDisFS);
     this.groupControl2.Controls.Add(this.btnOK);
     this.groupControl2.Controls.Add(this.txtValues);
     this.groupControl2.Controls.Add(this.labelControl5);
     this.groupControl2.Controls.Add(this.labelControl2);
     this.groupControl2.Controls.Add(this.labelControl7);
     this.groupControl2.Controls.Add(this.labelControl4);
     this.groupControl2.Location = new System.Drawing.Point(12, 49);
     this.groupControl2.Name = "groupControl2";
     this.groupControl2.Size = new System.Drawing.Size(407, 114);
     this.groupControl2.TabIndex = 14;
     this.groupControl2.Text = "Action";
     //
     // cboConFS
     //
     this.cboConFS.Location = new System.Drawing.Point(278, 40);
     this.cboConFS.Name = "cboConFS";
     this.cboConFS.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cboConFS.Size = new System.Drawing.Size(124, 20);
     this.cboConFS.TabIndex = 22;
     //
     // cboDisFS
     //
     this.cboDisFS.Location = new System.Drawing.Point(78, 40);
     this.cboDisFS.Name = "cboDisFS";
     this.cboDisFS.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cboDisFS.Size = new System.Drawing.Size(100, 20);
     this.cboDisFS.TabIndex = 23;
     //
     // btnOK
     //
     this.btnOK.Image = global::FRDB_SQLite.Properties.Resources.small_OK;
     this.btnOK.Location = new System.Drawing.Point(327, 75);
     this.btnOK.Name = "btnOK";
     this.btnOK.Size = new System.Drawing.Size(75, 34);
     this.btnOK.TabIndex = 21;
     this.btnOK.Text = "OK";
     this.btnOK.Click += new System.EventHandler(this.btnOK_Click_1);
     //
     // txtValues
     //
     this.txtValues.Location = new System.Drawing.Point(78, 89);
     this.txtValues.Name = "txtValues";
     this.txtValues.Size = new System.Drawing.Size(237, 20);
     this.txtValues.TabIndex = 20;
     //
     // labelControl5
     //
     this.labelControl5.Location = new System.Drawing.Point(10, 43);
     this.labelControl5.Name = "labelControl5";
     this.labelControl5.Size = new System.Drawing.Size(58, 13);
     this.labelControl5.TabIndex = 17;
     this.labelControl5.Text = "Discrete FS:";
     //
     // labelControl2
     //
     this.labelControl2.Location = new System.Drawing.Point(199, 43);
     this.labelControl2.Name = "labelControl2";
     this.labelControl2.Size = new System.Drawing.Size(73, 13);
     this.labelControl2.TabIndex = 18;
     this.labelControl2.Text = "Continuous FS:";
     //
     // labelControl7
     //
     this.labelControl7.Location = new System.Drawing.Point(78, 70);
     this.labelControl7.Name = "labelControl7";
     this.labelControl7.Size = new System.Drawing.Size(237, 13);
     this.labelControl7.TabIndex = 19;
     this.labelControl7.Text = "(You can enter more than one,  seperated by \",\")";
     //
     // labelControl4
     //
     this.labelControl4.Location = new System.Drawing.Point(18, 92);
     this.labelControl4.Name = "labelControl4";
     this.labelControl4.Size = new System.Drawing.Size(54, 13);
     this.labelControl4.TabIndex = 19;
     this.labelControl4.Text = "List Values:";
     //
     // btnCancel
     //
     this.btnCancel.Image = global::FRDB_SQLite.Properties.Resources.small_cancel;
     this.btnCancel.Location = new System.Drawing.Point(329, 446);
     this.btnCancel.Name = "btnCancel";
     this.btnCancel.Size = new System.Drawing.Size(90, 35);
     this.btnCancel.TabIndex = 15;
     this.btnCancel.Text = "Cancel";
     this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
     //
     // frmFuzzySetAction
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(431, 493);
     this.Controls.Add(this.btnCancel);
     this.Controls.Add(this.groupControl2);
     this.Controls.Add(this.groupControl1);
     this.Controls.Add(this.labelControl3);
     this.MaximizeBox = false;
     this.Name = "frmFuzzySetAction";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text = "Fuzzy Sets Action";
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
     this.groupControl1.ResumeLayout(false);
     this.groupControl1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.lbDisFS)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lbConFS)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).EndInit();
     this.groupControl2.ResumeLayout(false);
     this.groupControl2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cboConFS.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cboDisFS.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtValues.Properties)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Пример #16
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(xfStockValued));
     this.gdcReport = new DevExpress.XtraGrid.GridControl();
     this.gdvReport = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gcALF_CODI_ARTI = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcALF_ARTI = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcNUM_STOC = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcNUM_COST_UNIT = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcNUM_COST_VALO = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcNUM_VENT_UNIT = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcNUM_VENT_VALO = new DevExpress.XtraGrid.Columns.GridColumn();
     this.panelControl1 = new DevExpress.XtraEditors.PanelControl();
     this.ccbCOD_ALMA = new DevExpress.XtraEditors.CheckedComboBoxEdit();
     this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
     this.sbtSearch = new DevExpress.XtraEditors.SimpleButton();
     ((System.ComponentModel.ISupportInitialize)(this.gdcReport)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gdvReport)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
     this.panelControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ccbCOD_ALMA.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // gdcReport
     //
     this.gdcReport.Cursor = System.Windows.Forms.Cursors.Default;
     this.gdcReport.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gdcReport.Location = new System.Drawing.Point(0, 42);
     this.gdcReport.MainView = this.gdvReport;
     this.gdcReport.Name = "gdcReport";
     this.gdcReport.Size = new System.Drawing.Size(607, 339);
     this.gdcReport.TabIndex = 1;
     this.gdcReport.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gdvReport});
     //
     // gdvReport
     //
     this.gdvReport.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gcALF_CODI_ARTI,
     this.gcALF_ARTI,
     this.gcNUM_STOC,
     this.gcNUM_COST_UNIT,
     this.gcNUM_COST_VALO,
     this.gcNUM_VENT_UNIT,
     this.gcNUM_VENT_VALO});
     this.gdvReport.GridControl = this.gdcReport;
     this.gdvReport.GroupPanelText = "Lista de Artículos";
     this.gdvReport.Name = "gdvReport";
     this.gdvReport.OptionsBehavior.ReadOnly = true;
     this.gdvReport.OptionsSelection.EnableAppearanceFocusedRow = false;
     this.gdvReport.OptionsView.ShowFooter = true;
     this.gdvReport.RowCellStyle += new DevExpress.XtraGrid.Views.Grid.RowCellStyleEventHandler(this.gdvKardex_RowCellStyle);
     //
     // gcALF_CODI_ARTI
     //
     this.gcALF_CODI_ARTI.Caption = "Código de Artículo";
     this.gcALF_CODI_ARTI.FieldName = "ALF_CODI_ARTI";
     this.gcALF_CODI_ARTI.Name = "gcALF_CODI_ARTI";
     this.gcALF_CODI_ARTI.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] {
     new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Count)});
     this.gcALF_CODI_ARTI.Visible = true;
     this.gcALF_CODI_ARTI.VisibleIndex = 0;
     //
     // gcALF_ARTI
     //
     this.gcALF_ARTI.Caption = "Descripción Artículo";
     this.gcALF_ARTI.FieldName = "ALF_ARTI";
     this.gcALF_ARTI.Name = "gcALF_ARTI";
     this.gcALF_ARTI.Visible = true;
     this.gcALF_ARTI.VisibleIndex = 1;
     //
     // gcNUM_STOC
     //
     this.gcNUM_STOC.Caption = "Stock";
     this.gcNUM_STOC.FieldName = "NUM_STOC";
     this.gcNUM_STOC.Name = "gcNUM_STOC";
     this.gcNUM_STOC.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] {
     new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Sum)});
     this.gcNUM_STOC.Visible = true;
     this.gcNUM_STOC.VisibleIndex = 2;
     //
     // gcNUM_COST_UNIT
     //
     this.gcNUM_COST_UNIT.Caption = "Precio Costo Unitario";
     this.gcNUM_COST_UNIT.DisplayFormat.FormatString = "n2";
     this.gcNUM_COST_UNIT.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gcNUM_COST_UNIT.FieldName = "NUM_COST_UNIT";
     this.gcNUM_COST_UNIT.Name = "gcNUM_COST_UNIT";
     this.gcNUM_COST_UNIT.Visible = true;
     this.gcNUM_COST_UNIT.VisibleIndex = 3;
     //
     // gcNUM_COST_VALO
     //
     this.gcNUM_COST_VALO.Caption = "Precio Costo Valorizado";
     this.gcNUM_COST_VALO.DisplayFormat.FormatString = "n2";
     this.gcNUM_COST_VALO.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gcNUM_COST_VALO.FieldName = "NUM_COST_VALO";
     this.gcNUM_COST_VALO.Name = "gcNUM_COST_VALO";
     this.gcNUM_COST_VALO.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] {
     new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Sum, "NUM_COST_VALO", "{0:n2}")});
     this.gcNUM_COST_VALO.Visible = true;
     this.gcNUM_COST_VALO.VisibleIndex = 4;
     //
     // gcNUM_VENT_UNIT
     //
     this.gcNUM_VENT_UNIT.Caption = "Precio Venta Unitario";
     this.gcNUM_VENT_UNIT.DisplayFormat.FormatString = "n2";
     this.gcNUM_VENT_UNIT.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gcNUM_VENT_UNIT.FieldName = "NUM_VENT_UNIT";
     this.gcNUM_VENT_UNIT.Name = "gcNUM_VENT_UNIT";
     this.gcNUM_VENT_UNIT.Visible = true;
     this.gcNUM_VENT_UNIT.VisibleIndex = 5;
     //
     // gcNUM_VENT_VALO
     //
     this.gcNUM_VENT_VALO.Caption = "Precio Venta Valorizado";
     this.gcNUM_VENT_VALO.DisplayFormat.FormatString = "n2";
     this.gcNUM_VENT_VALO.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gcNUM_VENT_VALO.FieldName = "NUM_VENT_VALO";
     this.gcNUM_VENT_VALO.Name = "gcNUM_VENT_VALO";
     this.gcNUM_VENT_VALO.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] {
     new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Sum, "NUM_VENT_VALO", "{0:n2}")});
     this.gcNUM_VENT_VALO.Visible = true;
     this.gcNUM_VENT_VALO.VisibleIndex = 6;
     //
     // panelControl1
     //
     this.panelControl1.Controls.Add(this.ccbCOD_ALMA);
     this.panelControl1.Controls.Add(this.labelControl1);
     this.panelControl1.Controls.Add(this.sbtSearch);
     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(607, 42);
     this.panelControl1.TabIndex = 0;
     //
     // ccbCOD_ALMA
     //
     this.ccbCOD_ALMA.Location = new System.Drawing.Point(56, 12);
     this.ccbCOD_ALMA.Name = "ccbCOD_ALMA";
     this.ccbCOD_ALMA.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.ccbCOD_ALMA.Properties.HighlightedItemStyle = DevExpress.XtraEditors.HighlightStyle.Skinned;
     this.ccbCOD_ALMA.Size = new System.Drawing.Size(218, 20);
     this.ccbCOD_ALMA.TabIndex = 1;
     //
     // labelControl1
     //
     this.labelControl1.Location = new System.Drawing.Point(6, 15);
     this.labelControl1.Name = "labelControl1";
     this.labelControl1.Size = new System.Drawing.Size(44, 13);
     this.labelControl1.TabIndex = 0;
     this.labelControl1.Text = "Almacén:";
     //
     // sbtSearch
     //
     this.sbtSearch.Image = ((System.Drawing.Image)(resources.GetObject("sbtSearch.Image")));
     this.sbtSearch.Location = new System.Drawing.Point(280, 10);
     this.sbtSearch.Name = "sbtSearch";
     this.sbtSearch.Size = new System.Drawing.Size(75, 23);
     this.sbtSearch.TabIndex = 2;
     this.sbtSearch.Text = "&Refrescar";
     this.sbtSearch.Click += new System.EventHandler(this.sbtSearch_Click);
     //
     // xfStockValued
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(607, 381);
     this.Controls.Add(this.gdcReport);
     this.Controls.Add(this.panelControl1);
     this.Name = "xfStockValued";
     this.Text = "Stock Valorizado";
     this.Activated += new System.EventHandler(this.xfStockValued_Activated);
     this.Deactivate += new System.EventHandler(this.xfStockValued_Deactivate);
     this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.xfStockValued_FormClosing);
     this.Load += new System.EventHandler(this.xfStockValued_Load);
     ((System.ComponentModel.ISupportInitialize)(this.gdcReport)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gdvReport)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
     this.panelControl1.ResumeLayout(false);
     this.panelControl1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ccbCOD_ALMA.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()
 {
     DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit repositoryItemCheckEdit2;
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormNewMemberCreditPackageUsage));
     DevExpress.XtraEditors.Repository.RepositoryItemTextEdit repositoryItemTextEdit1;
     this.lkpEdtPackageCode = new DevExpress.XtraEditors.LookUpEdit();
     this.label1 = new System.Windows.Forms.Label();
     this.simpleButtonCancel = new DevExpress.XtraEditors.SimpleButton();
     this.simpleButtonOK = new DevExpress.XtraEditors.SimpleButton();
     this.label3 = new System.Windows.Forms.Label();
     this.gridControl1 = new DevExpress.XtraGrid.GridControl();
     this.gridView1 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn4 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Quantity = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemSpinEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemSpinEdit();
     this.gridColumn2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn3 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridView2 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.checkedComboBoxEdit1 = new DevExpress.XtraEditors.CheckedComboBoxEdit();
     repositoryItemCheckEdit2 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     repositoryItemTextEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     ((System.ComponentModel.ISupportInitialize)(repositoryItemCheckEdit2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(repositoryItemTextEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkpEdtPackageCode.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridControl1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemSpinEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkedComboBoxEdit1.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // repositoryItemCheckEdit2
     //
     resources.ApplyResources(repositoryItemCheckEdit2, "repositoryItemCheckEdit2");
     repositoryItemCheckEdit2.Name = "repositoryItemCheckEdit2";
     //
     // repositoryItemTextEdit1
     //
     resources.ApplyResources(repositoryItemTextEdit1, "repositoryItemTextEdit1");
     repositoryItemTextEdit1.Name = "repositoryItemTextEdit1";
     //
     // lkpEdtPackageCode
     //
     resources.ApplyResources(this.lkpEdtPackageCode, "lkpEdtPackageCode");
     this.lkpEdtPackageCode.Name = "lkpEdtPackageCode";
     this.lkpEdtPackageCode.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(((DevExpress.XtraEditors.Controls.ButtonPredefines)(resources.GetObject("lkpEdtPackageCode.Properties.Buttons"))))});
     this.lkpEdtPackageCode.EditValueChanged += new System.EventHandler(this.lkpEdtPackageCode_EditValueChanged);
     //
     // label1
     //
     resources.ApplyResources(this.label1, "label1");
     this.label1.Name = "label1";
     //
     // simpleButtonCancel
     //
     this.simpleButtonCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     resources.ApplyResources(this.simpleButtonCancel, "simpleButtonCancel");
     this.simpleButtonCancel.Name = "simpleButtonCancel";
     //
     // simpleButtonOK
     //
     this.simpleButtonOK.DialogResult = System.Windows.Forms.DialogResult.OK;
     resources.ApplyResources(this.simpleButtonOK, "simpleButtonOK");
     this.simpleButtonOK.Name = "simpleButtonOK";
     this.simpleButtonOK.Click += new System.EventHandler(this.simpleButtonOK_Click);
     //
     // label3
     //
     resources.ApplyResources(this.label3, "label3");
     this.label3.Name = "label3";
     //
     // gridControl1
     //
     resources.ApplyResources(this.gridControl1, "gridControl1");
     this.gridControl1.MainView = this.gridView1;
     this.gridControl1.Name = "gridControl1";
     this.gridControl1.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     repositoryItemCheckEdit2,
     repositoryItemTextEdit1,
     this.repositoryItemSpinEdit1});
     this.gridControl1.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridView1,
     this.gridView2});
     //
     // gridView1
     //
     this.gridView1.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn4,
     this.gridColumn1,
     this.Quantity,
     this.gridColumn2,
     this.gridColumn3});
     this.gridView1.GridControl = this.gridControl1;
     this.gridView1.Name = "gridView1";
     this.gridView1.FocusedRowChanged += new DevExpress.XtraGrid.Views.Base.FocusedRowChangedEventHandler(this.gridView1_FocusedRowChanged);
     //
     // gridColumn4
     //
     resources.ApplyResources(this.gridColumn4, "gridColumn4");
     this.gridColumn4.ColumnEdit = repositoryItemCheckEdit2;
     this.gridColumn4.FieldName = "Tick";
     this.gridColumn4.Name = "gridColumn4";
     //
     // gridColumn1
     //
     resources.ApplyResources(this.gridColumn1, "gridColumn1");
     this.gridColumn1.FieldName = "strPackageCode";
     this.gridColumn1.Name = "gridColumn1";
     this.gridColumn1.OptionsColumn.AllowEdit = false;
     //
     // Quantity
     //
     resources.ApplyResources(this.Quantity, "Quantity");
     this.Quantity.ColumnEdit = this.repositoryItemSpinEdit1;
     this.Quantity.FieldName = "nQuantity";
     this.Quantity.Name = "Quantity";
     //
     // repositoryItemSpinEdit1
     //
     this.repositoryItemSpinEdit1.AllowNullInput = DevExpress.Utils.DefaultBoolean.False;
     resources.ApplyResources(this.repositoryItemSpinEdit1, "repositoryItemSpinEdit1");
     this.repositoryItemSpinEdit1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.repositoryItemSpinEdit1.IsFloatValue = false;
     this.repositoryItemSpinEdit1.Mask.EditMask = resources.GetString("repositoryItemSpinEdit1.Mask.EditMask");
     this.repositoryItemSpinEdit1.MaxValue = new decimal(new int[] {
     100,
     0,
     0,
     0});
     this.repositoryItemSpinEdit1.MinValue = new decimal(new int[] {
     1,
     0,
     0,
     0});
     this.repositoryItemSpinEdit1.Name = "repositoryItemSpinEdit1";
     //
     // gridColumn2
     //
     resources.ApplyResources(this.gridColumn2, "gridColumn2");
     this.gridColumn2.FieldName = "strDescription";
     this.gridColumn2.Name = "gridColumn2";
     this.gridColumn2.OptionsColumn.AllowEdit = false;
     //
     // gridColumn3
     //
     resources.ApplyResources(this.gridColumn3, "gridColumn3");
     this.gridColumn3.FieldName = "dtValidEnd";
     this.gridColumn3.Name = "gridColumn3";
     this.gridColumn3.OptionsColumn.AllowEdit = false;
     //
     // gridView2
     //
     this.gridView2.GridControl = this.gridControl1;
     this.gridView2.Name = "gridView2";
     //
     // checkedComboBoxEdit1
     //
     resources.ApplyResources(this.checkedComboBoxEdit1, "checkedComboBoxEdit1");
     this.checkedComboBoxEdit1.Name = "checkedComboBoxEdit1";
     this.checkedComboBoxEdit1.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(((DevExpress.XtraEditors.Controls.ButtonPredefines)(resources.GetObject("checkedComboBoxEdit1.Properties.Buttons"))))});
     //
     // FormNewMemberCreditPackageUsage
     //
     this.AcceptButton = this.simpleButtonOK;
     resources.ApplyResources(this, "$this");
     this.CancelButton = this.simpleButtonCancel;
     this.Controls.Add(this.checkedComboBoxEdit1);
     this.Controls.Add(this.gridControl1);
     this.Controls.Add(this.label3);
     this.Controls.Add(this.simpleButtonCancel);
     this.Controls.Add(this.simpleButtonOK);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.lkpEdtPackageCode);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name = "FormNewMemberCreditPackageUsage";
     this.ShowInTaskbar = false;
     ((System.ComponentModel.ISupportInitialize)(repositoryItemCheckEdit2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(repositoryItemTextEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkpEdtPackageCode.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridControl1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemSpinEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkedComboBoxEdit1.Properties)).EndInit();
     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.components = new System.ComponentModel.Container();
     this.patientDocBgWorker = new System.ComponentModel.BackgroundWorker();
     this.searchTimer = new System.Windows.Forms.Timer(this.components);
     this.postCodeTimer = new System.Windows.Forms.Timer(this.components);
     this.postCodeBgWorker = new System.ComponentModel.BackgroundWorker();
     this.loadBarTimer = new System.Windows.Forms.Timer(this.components);
     this.groupBox4 = new System.Windows.Forms.GroupBox();
     this.commentTextBox = new System.Windows.Forms.TextBox();
     this.groupBox3 = new System.Windows.Forms.GroupBox();
     this.removeClaimantBtn = new DevExpress.XtraEditors.SimpleButton();
     this.addClaimantBtn = new DevExpress.XtraEditors.SimpleButton();
     this.claimantListBox = new System.Windows.Forms.ListBox();
     this.groupBox2 = new System.Windows.Forms.GroupBox();
     this.MedicalConditionsComboBoxEdit = new DevExpress.XtraEditors.CheckedComboBoxEdit();
     this.labelControl14 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl13 = new DevExpress.XtraEditors.LabelControl();
     this.SmokerNoCheckEdit = new DevExpress.XtraEditors.CheckEdit();
     this.SmokerYesCheckEdit = new DevExpress.XtraEditors.CheckEdit();
     this.patientDetailsGroupBox = new System.Windows.Forms.GroupBox();
     this.claimNoTextEdit = new DevExpress.XtraEditors.TextEdit();
     this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
     this.physioComboBox = new System.Windows.Forms.ComboBox();
     this.labelControl12 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl11 = new DevExpress.XtraEditors.LabelControl();
     this.dvaTextBox = new DevExpress.XtraEditors.TextEdit();
     this.findPostCodeBtn = new DevExpress.XtraEditors.SimpleButton();
     this.labelControl19 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl18 = new DevExpress.XtraEditors.LabelControl();
     this.TitleComboBox = new System.Windows.Forms.ComboBox();
     this.postCodeTextBox = new DevExpress.XtraEditors.TextEdit();
     this.labelControl2 = new DevExpress.XtraEditors.LabelControl();
     this.stateTextBox = new DevExpress.XtraEditors.TextEdit();
     this.genderFemaleTickBox = new DevExpress.XtraEditors.CheckEdit();
     this.genderMaleTickBox = new DevExpress.XtraEditors.CheckEdit();
     this.suburbComboBox = new System.Windows.Forms.ComboBox();
     this.addressTextEdit = new DevExpress.XtraEditors.TextEdit();
     this.labelControl10 = new DevExpress.XtraEditors.LabelControl();
     this.doBDateEdit = new DevExpress.XtraEditors.DateEdit();
     this.labelControl6 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl5 = new DevExpress.XtraEditors.LabelControl();
     this.givenNameTextEdit = new DevExpress.XtraEditors.TextEdit();
     this.labelControl4 = new DevExpress.XtraEditors.LabelControl();
     this.surnameTextEdit = new DevExpress.XtraEditors.TextEdit();
     this.labelControl3 = new DevExpress.XtraEditors.LabelControl();
     this.applyBtn = new DevExpress.XtraEditors.SimpleButton();
     this.searchResultProgressBar = new System.Windows.Forms.ProgressBar();
     this.newPatientBtn = new DevExpress.XtraEditors.SimpleButton();
     this.cancelBtn = new DevExpress.XtraEditors.SimpleButton();
     this.okBtn = new DevExpress.XtraEditors.SimpleButton();
     this.groupBox5 = new System.Windows.Forms.GroupBox();
     this.displayGridControl = new DevExpress.XtraGrid.GridControl();
     this.displayGridView = 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.goBtn = new DevExpress.XtraEditors.SimpleButton();
     this.searchFieldTextBox = new System.Windows.Forms.TextBox();
     this.label1 = new System.Windows.Forms.Label();
     this.labelControl7 = new DevExpress.XtraEditors.LabelControl();
     this.homePhoneTextEdit = new DevExpress.XtraEditors.TextEdit();
     this.labelControl8 = new DevExpress.XtraEditors.LabelControl();
     this.mobileTextEdit = new DevExpress.XtraEditors.TextEdit();
     this.labelControl9 = new DevExpress.XtraEditors.LabelControl();
     this.workPhoneTextEdit = new DevExpress.XtraEditors.TextEdit();
     this.emailTextEdit = new DevExpress.XtraEditors.TextEdit();
     this.labelControl17 = new DevExpress.XtraEditors.LabelControl();
     this.groupBox4.SuspendLayout();
     this.groupBox3.SuspendLayout();
     this.groupBox2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.MedicalConditionsComboBoxEdit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.SmokerNoCheckEdit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.SmokerYesCheckEdit.Properties)).BeginInit();
     this.patientDetailsGroupBox.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.claimNoTextEdit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dvaTextBox.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.postCodeTextBox.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.stateTextBox.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.genderFemaleTickBox.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.genderMaleTickBox.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.addressTextEdit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.doBDateEdit.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.doBDateEdit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.givenNameTextEdit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.surnameTextEdit.Properties)).BeginInit();
     this.groupBox5.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.displayGridControl)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.displayGridView)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.homePhoneTextEdit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.mobileTextEdit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.workPhoneTextEdit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.emailTextEdit.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // patientDocBgWorker
     //
     this.patientDocBgWorker.DoWork += new System.ComponentModel.DoWorkEventHandler(this.PatientBgWorkerDoWork);
     this.patientDocBgWorker.RunWorkerCompleted += new System.ComponentModel.RunWorkerCompletedEventHandler(this.PatientBgWorkerRunWorkerCompleted);
     //
     // searchTimer
     //
     this.searchTimer.Interval = 1500;
     this.searchTimer.Tick += new System.EventHandler(this.SearchTimerTick);
     //
     // postCodeTimer
     //
     this.postCodeTimer.Interval = 1500;
     this.postCodeTimer.Tick += new System.EventHandler(this.PostCodeTimerTick);
     //
     // postCodeBgWorker
     //
     this.postCodeBgWorker.DoWork += new System.ComponentModel.DoWorkEventHandler(this.PostCodeBgWorkerDoWork);
     this.postCodeBgWorker.RunWorkerCompleted += new System.ComponentModel.RunWorkerCompletedEventHandler(this.PostCodeBgWorkerRunWorkerCompleted);
     //
     // loadBarTimer
     //
     this.loadBarTimer.Interval = 300;
     this.loadBarTimer.Tick += new System.EventHandler(this.LoadTimerTick);
     //
     // groupBox4
     //
     this.groupBox4.Controls.Add(this.commentTextBox);
     this.groupBox4.Location = new System.Drawing.Point(2, 498);
     this.groupBox4.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.groupBox4.Name = "groupBox4";
     this.groupBox4.Padding = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.groupBox4.Size = new System.Drawing.Size(326, 81);
     this.groupBox4.TabIndex = 65;
     this.groupBox4.TabStop = false;
     this.groupBox4.Text = "Comments";
     //
     // commentTextBox
     //
     this.commentTextBox.Location = new System.Drawing.Point(9, 18);
     this.commentTextBox.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.commentTextBox.Multiline = true;
     this.commentTextBox.Name = "commentTextBox";
     this.commentTextBox.Size = new System.Drawing.Size(310, 59);
     this.commentTextBox.TabIndex = 21;
     this.commentTextBox.TextChanged += new System.EventHandler(this.CommentTextBoxTextChanged);
     //
     // groupBox3
     //
     this.groupBox3.Controls.Add(this.removeClaimantBtn);
     this.groupBox3.Controls.Add(this.addClaimantBtn);
     this.groupBox3.Controls.Add(this.claimantListBox);
     this.groupBox3.Location = new System.Drawing.Point(341, 404);
     this.groupBox3.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.groupBox3.Name = "groupBox3";
     this.groupBox3.Padding = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.groupBox3.Size = new System.Drawing.Size(228, 176);
     this.groupBox3.TabIndex = 64;
     this.groupBox3.TabStop = false;
     this.groupBox3.Text = "Claimants";
     //
     // removeClaimantBtn
     //
     this.removeClaimantBtn.Location = new System.Drawing.Point(150, 152);
     this.removeClaimantBtn.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.removeClaimantBtn.Name = "removeClaimantBtn";
     this.removeClaimantBtn.Size = new System.Drawing.Size(64, 19);
     this.removeClaimantBtn.TabIndex = 40;
     this.removeClaimantBtn.TabStop = false;
     this.removeClaimantBtn.Text = "Remove";
     this.removeClaimantBtn.Click += new System.EventHandler(this.RemoveClaimantBtnClick);
     //
     // addClaimantBtn
     //
     this.addClaimantBtn.Location = new System.Drawing.Point(81, 152);
     this.addClaimantBtn.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.addClaimantBtn.Name = "addClaimantBtn";
     this.addClaimantBtn.Size = new System.Drawing.Size(64, 19);
     this.addClaimantBtn.TabIndex = 39;
     this.addClaimantBtn.TabStop = false;
     this.addClaimantBtn.Text = "Add";
     this.addClaimantBtn.Click += new System.EventHandler(this.AddClaimantBtnClick);
     //
     // claimantListBox
     //
     this.claimantListBox.DisplayMember = "LastName";
     this.claimantListBox.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawVariable;
     this.claimantListBox.FormattingEnabled = true;
     this.claimantListBox.Location = new System.Drawing.Point(5, 18);
     this.claimantListBox.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.claimantListBox.Name = "claimantListBox";
     this.claimantListBox.Size = new System.Drawing.Size(210, 134);
     this.claimantListBox.TabIndex = 38;
     this.claimantListBox.TabStop = false;
     this.claimantListBox.ValueMember = "ClaimantID";
     this.claimantListBox.DrawItem += new System.Windows.Forms.DrawItemEventHandler(this.ClaimantListBoxDrawItem);
     //
     // groupBox2
     //
     this.groupBox2.Controls.Add(this.MedicalConditionsComboBoxEdit);
     this.groupBox2.Controls.Add(this.labelControl14);
     this.groupBox2.Controls.Add(this.labelControl13);
     this.groupBox2.Controls.Add(this.SmokerNoCheckEdit);
     this.groupBox2.Controls.Add(this.SmokerYesCheckEdit);
     this.groupBox2.Location = new System.Drawing.Point(2, 404);
     this.groupBox2.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.groupBox2.Name = "groupBox2";
     this.groupBox2.Padding = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.groupBox2.Size = new System.Drawing.Size(326, 89);
     this.groupBox2.TabIndex = 63;
     this.groupBox2.TabStop = false;
     this.groupBox2.Text = "Patient Medical Details";
     //
     // MedicalConditionsComboBoxEdit
     //
     this.MedicalConditionsComboBoxEdit.EditValue = "";
     this.MedicalConditionsComboBoxEdit.Location = new System.Drawing.Point(154, 20);
     this.MedicalConditionsComboBoxEdit.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.MedicalConditionsComboBoxEdit.Name = "MedicalConditionsComboBoxEdit";
     this.MedicalConditionsComboBoxEdit.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.MedicalConditionsComboBoxEdit.Properties.Items.AddRange(new DevExpress.XtraEditors.Controls.CheckedListBoxItem[] {
     new DevExpress.XtraEditors.Controls.CheckedListBoxItem(null, "Cardiac Pacemaker"),
     new DevExpress.XtraEditors.Controls.CheckedListBoxItem(null, "Loss of Weight"),
     new DevExpress.XtraEditors.Controls.CheckedListBoxItem(null, "Heart Condition"),
     new DevExpress.XtraEditors.Controls.CheckedListBoxItem(null, "Dizziness"),
     new DevExpress.XtraEditors.Controls.CheckedListBoxItem(null, "Artificial joint"),
     new DevExpress.XtraEditors.Controls.CheckedListBoxItem(null, "Epilepsy"),
     new DevExpress.XtraEditors.Controls.CheckedListBoxItem(null, "Surgery in the past 3 months")});
     this.MedicalConditionsComboBoxEdit.Size = new System.Drawing.Size(165, 20);
     this.MedicalConditionsComboBoxEdit.TabIndex = 19;
     //
     // labelControl14
     //
     this.labelControl14.Location = new System.Drawing.Point(11, 25);
     this.labelControl14.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.labelControl14.Name = "labelControl14";
     this.labelControl14.Size = new System.Drawing.Size(88, 13);
     this.labelControl14.TabIndex = 30;
     this.labelControl14.Text = "Medical Conditions";
     //
     // labelControl13
     //
     this.labelControl13.Location = new System.Drawing.Point(9, 67);
     this.labelControl13.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.labelControl13.Name = "labelControl13";
     this.labelControl13.Size = new System.Drawing.Size(117, 13);
     this.labelControl13.TabIndex = 29;
     this.labelControl13.Text = "Is the Patient a Smoker?";
     //
     // SmokerNoCheckEdit
     //
     this.SmokerNoCheckEdit.Location = new System.Drawing.Point(199, 66);
     this.SmokerNoCheckEdit.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.SmokerNoCheckEdit.Name = "SmokerNoCheckEdit";
     this.SmokerNoCheckEdit.Properties.Caption = "no";
     this.SmokerNoCheckEdit.Size = new System.Drawing.Size(38, 19);
     this.SmokerNoCheckEdit.TabIndex = 16;
     //
     // SmokerYesCheckEdit
     //
     this.SmokerYesCheckEdit.Location = new System.Drawing.Point(153, 66);
     this.SmokerYesCheckEdit.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.SmokerYesCheckEdit.Name = "SmokerYesCheckEdit";
     this.SmokerYesCheckEdit.Properties.Caption = "Yes";
     this.SmokerYesCheckEdit.Size = new System.Drawing.Size(41, 19);
     this.SmokerYesCheckEdit.TabIndex = 15;
     //
     // patientDetailsGroupBox
     //
     this.patientDetailsGroupBox.Controls.Add(this.claimNoTextEdit);
     this.patientDetailsGroupBox.Controls.Add(this.labelControl1);
     this.patientDetailsGroupBox.Controls.Add(this.physioComboBox);
     this.patientDetailsGroupBox.Controls.Add(this.labelControl12);
     this.patientDetailsGroupBox.Controls.Add(this.labelControl11);
     this.patientDetailsGroupBox.Controls.Add(this.dvaTextBox);
     this.patientDetailsGroupBox.Controls.Add(this.findPostCodeBtn);
     this.patientDetailsGroupBox.Controls.Add(this.labelControl17);
     this.patientDetailsGroupBox.Controls.Add(this.labelControl19);
     this.patientDetailsGroupBox.Controls.Add(this.emailTextEdit);
     this.patientDetailsGroupBox.Controls.Add(this.labelControl18);
     this.patientDetailsGroupBox.Controls.Add(this.TitleComboBox);
     this.patientDetailsGroupBox.Controls.Add(this.postCodeTextBox);
     this.patientDetailsGroupBox.Controls.Add(this.labelControl2);
     this.patientDetailsGroupBox.Controls.Add(this.stateTextBox);
     this.patientDetailsGroupBox.Controls.Add(this.genderFemaleTickBox);
     this.patientDetailsGroupBox.Controls.Add(this.genderMaleTickBox);
     this.patientDetailsGroupBox.Controls.Add(this.suburbComboBox);
     this.patientDetailsGroupBox.Controls.Add(this.addressTextEdit);
     this.patientDetailsGroupBox.Controls.Add(this.labelControl10);
     this.patientDetailsGroupBox.Controls.Add(this.workPhoneTextEdit);
     this.patientDetailsGroupBox.Controls.Add(this.labelControl9);
     this.patientDetailsGroupBox.Controls.Add(this.mobileTextEdit);
     this.patientDetailsGroupBox.Controls.Add(this.labelControl8);
     this.patientDetailsGroupBox.Controls.Add(this.homePhoneTextEdit);
     this.patientDetailsGroupBox.Controls.Add(this.labelControl7);
     this.patientDetailsGroupBox.Controls.Add(this.doBDateEdit);
     this.patientDetailsGroupBox.Controls.Add(this.labelControl6);
     this.patientDetailsGroupBox.Controls.Add(this.labelControl5);
     this.patientDetailsGroupBox.Controls.Add(this.givenNameTextEdit);
     this.patientDetailsGroupBox.Controls.Add(this.labelControl4);
     this.patientDetailsGroupBox.Controls.Add(this.surnameTextEdit);
     this.patientDetailsGroupBox.Controls.Add(this.labelControl3);
     this.patientDetailsGroupBox.Location = new System.Drawing.Point(2, 205);
     this.patientDetailsGroupBox.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.patientDetailsGroupBox.Name = "patientDetailsGroupBox";
     this.patientDetailsGroupBox.Padding = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.patientDetailsGroupBox.Size = new System.Drawing.Size(567, 194);
     this.patientDetailsGroupBox.TabIndex = 3;
     this.patientDetailsGroupBox.TabStop = false;
     this.patientDetailsGroupBox.Text = "Enter new Patient";
     //
     // claimNoTextEdit
     //
     this.claimNoTextEdit.Location = new System.Drawing.Point(449, 160);
     this.claimNoTextEdit.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.claimNoTextEdit.Name = "claimNoTextEdit";
     this.claimNoTextEdit.Properties.Mask.AutoComplete = DevExpress.XtraEditors.Mask.AutoCompleteType.None;
     this.claimNoTextEdit.Properties.Mask.EditMask = "04\\d\\d\\d\\d\\d\\d\\d\\d";
     this.claimNoTextEdit.Properties.Mask.PlaceHolder = '*';
     this.claimNoTextEdit.Size = new System.Drawing.Size(104, 20);
     this.claimNoTextEdit.TabIndex = 67;
     //
     // labelControl1
     //
     this.labelControl1.Location = new System.Drawing.Point(387, 163);
     this.labelControl1.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.labelControl1.Name = "labelControl1";
     this.labelControl1.Size = new System.Drawing.Size(36, 13);
     this.labelControl1.TabIndex = 66;
     this.labelControl1.Text = "Claim #";
     //
     // physioComboBox
     //
     this.physioComboBox.DisplayMember = "PhysioID";
     this.physioComboBox.FormattingEnabled = true;
     this.physioComboBox.Location = new System.Drawing.Point(433, 51);
     this.physioComboBox.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.physioComboBox.Name = "physioComboBox";
     this.physioComboBox.Size = new System.Drawing.Size(86, 21);
     this.physioComboBox.TabIndex = 14;
     this.physioComboBox.ValueMember = "PhysioID";
     this.physioComboBox.TextChanged += new System.EventHandler(this.PhysioComboBoxTextChanged);
     //
     // labelControl12
     //
     this.labelControl12.Location = new System.Drawing.Point(391, 56);
     this.labelControl12.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.labelControl12.Name = "labelControl12";
     this.labelControl12.Size = new System.Drawing.Size(31, 13);
     this.labelControl12.TabIndex = 65;
     this.labelControl12.Text = "Physio";
     //
     // labelControl11
     //
     this.labelControl11.Location = new System.Drawing.Point(243, 163);
     this.labelControl11.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.labelControl11.Name = "labelControl11";
     this.labelControl11.Size = new System.Drawing.Size(28, 13);
     this.labelControl11.TabIndex = 64;
     this.labelControl11.Text = "DVA#";
     //
     // dvaTextBox
     //
     this.dvaTextBox.Location = new System.Drawing.Point(285, 158);
     this.dvaTextBox.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.dvaTextBox.Name = "dvaTextBox";
     this.dvaTextBox.Properties.Mask.AutoComplete = DevExpress.XtraEditors.Mask.AutoCompleteType.None;
     this.dvaTextBox.Properties.Mask.EditMask = "04\\d\\d\\d\\d\\d\\d\\d\\d";
     this.dvaTextBox.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.RegEx;
     this.dvaTextBox.Properties.Mask.PlaceHolder = '*';
     this.dvaTextBox.Size = new System.Drawing.Size(86, 20);
     this.dvaTextBox.TabIndex = 18;
     this.dvaTextBox.EditValueChanged += new System.EventHandler(this.DvaTextBoxEditValueChanged);
     //
     // findPostCodeBtn
     //
     this.findPostCodeBtn.Appearance.Font = new System.Drawing.Font("Tahoma", 6F);
     this.findPostCodeBtn.Appearance.Options.UseFont = true;
     this.findPostCodeBtn.Location = new System.Drawing.Point(475, 104);
     this.findPostCodeBtn.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.findPostCodeBtn.Name = "findPostCodeBtn";
     this.findPostCodeBtn.Size = new System.Drawing.Size(79, 19);
     this.findPostCodeBtn.TabIndex = 17;
     this.findPostCodeBtn.Text = "Find Post Code";
     this.findPostCodeBtn.Click += new System.EventHandler(this.FindPostCodeBtnClick);
     //
     // labelControl19
     //
     this.labelControl19.Location = new System.Drawing.Point(185, 136);
     this.labelControl19.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.labelControl19.Name = "labelControl19";
     this.labelControl19.Size = new System.Drawing.Size(85, 13);
     this.labelControl19.TabIndex = 62;
     this.labelControl19.Text = "State / Post Code";
     //
     // labelControl18
     //
     this.labelControl18.Location = new System.Drawing.Point(235, 110);
     this.labelControl18.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.labelControl18.Name = "labelControl18";
     this.labelControl18.Size = new System.Drawing.Size(34, 13);
     this.labelControl18.TabIndex = 60;
     this.labelControl18.Text = "Suburb";
     //
     // TitleComboBox
     //
     this.TitleComboBox.FormattingEnabled = true;
     this.TitleComboBox.Items.AddRange(new object[] {
     "Mr",
     "Ms",
     "Miss",
     "Mrs",
     "Doctor"});
     this.TitleComboBox.Location = new System.Drawing.Point(285, 25);
     this.TitleComboBox.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.TitleComboBox.Name = "TitleComboBox";
     this.TitleComboBox.Size = new System.Drawing.Size(86, 21);
     this.TitleComboBox.TabIndex = 10;
     this.TitleComboBox.TextChanged += new System.EventHandler(this.TitleComboBoxTextChanged);
     //
     // postCodeTextBox
     //
     this.postCodeTextBox.Location = new System.Drawing.Point(387, 132);
     this.postCodeTextBox.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.postCodeTextBox.Name = "postCodeTextBox";
     this.postCodeTextBox.Size = new System.Drawing.Size(86, 20);
     this.postCodeTextBox.TabIndex = 61;
     this.postCodeTextBox.TabStop = false;
     this.postCodeTextBox.EditValueChanged += new System.EventHandler(this.PostCodeTextBoxEditValueChanged);
     //
     // labelControl2
     //
     this.labelControl2.Location = new System.Drawing.Point(391, 29);
     this.labelControl2.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.labelControl2.Name = "labelControl2";
     this.labelControl2.Size = new System.Drawing.Size(35, 13);
     this.labelControl2.TabIndex = 56;
     this.labelControl2.Text = "Gender";
     //
     // stateTextBox
     //
     this.stateTextBox.EditValue = "";
     this.stateTextBox.Location = new System.Drawing.Point(285, 132);
     this.stateTextBox.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.stateTextBox.Name = "stateTextBox";
     this.stateTextBox.Size = new System.Drawing.Size(86, 20);
     this.stateTextBox.TabIndex = 60;
     this.stateTextBox.TabStop = false;
     this.stateTextBox.EditValueChanged += new System.EventHandler(this.StateTextBoxEditValueChanged);
     //
     // genderFemaleTickBox
     //
     this.genderFemaleTickBox.Location = new System.Drawing.Point(477, 28);
     this.genderFemaleTickBox.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.genderFemaleTickBox.Name = "genderFemaleTickBox";
     this.genderFemaleTickBox.Properties.Caption = "Female";
     this.genderFemaleTickBox.Size = new System.Drawing.Size(57, 19);
     this.genderFemaleTickBox.TabIndex = 12;
     this.genderFemaleTickBox.CheckedChanged += new System.EventHandler(this.GenderFemaleTickBoxCheckedChanged);
     //
     // genderMaleTickBox
     //
     this.genderMaleTickBox.Location = new System.Drawing.Point(431, 28);
     this.genderMaleTickBox.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.genderMaleTickBox.Name = "genderMaleTickBox";
     this.genderMaleTickBox.Properties.Caption = "Male";
     this.genderMaleTickBox.Size = new System.Drawing.Size(41, 19);
     this.genderMaleTickBox.TabIndex = 11;
     this.genderMaleTickBox.CheckedChanged += new System.EventHandler(this.GenderMaleTickBoxCheckedChanged);
     //
     // suburbComboBox
     //
     this.suburbComboBox.DisplayMember = "Location";
     this.suburbComboBox.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawVariable;
     this.suburbComboBox.FormattingEnabled = true;
     this.suburbComboBox.Location = new System.Drawing.Point(285, 104);
     this.suburbComboBox.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.suburbComboBox.Name = "suburbComboBox";
     this.suburbComboBox.Size = new System.Drawing.Size(187, 22);
     this.suburbComboBox.TabIndex = 16;
     this.suburbComboBox.ValueMember = "PostCodeID";
     this.suburbComboBox.DrawItem += new System.Windows.Forms.DrawItemEventHandler(this.SuburbComboBoxDrawItem);
     this.suburbComboBox.TextChanged += new System.EventHandler(this.SuburbComboBoxTextChanged);
     this.suburbComboBox.Leave += new System.EventHandler(this.SuburbComboBoxLeave);
     //
     // addressTextEdit
     //
     this.addressTextEdit.Location = new System.Drawing.Point(285, 79);
     this.addressTextEdit.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.addressTextEdit.Name = "addressTextEdit";
     this.addressTextEdit.Size = new System.Drawing.Size(268, 20);
     this.addressTextEdit.TabIndex = 15;
     this.addressTextEdit.EditValueChanged += new System.EventHandler(this.AddressTextEditEditValueChanged);
     //
     // labelControl10
     //
     this.labelControl10.Location = new System.Drawing.Point(231, 81);
     this.labelControl10.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.labelControl10.Name = "labelControl10";
     this.labelControl10.Size = new System.Drawing.Size(39, 13);
     this.labelControl10.TabIndex = 48;
     this.labelControl10.Text = "Address";
     //
     // doBDateEdit
     //
     this.doBDateEdit.EditValue = null;
     this.doBDateEdit.Location = new System.Drawing.Point(285, 51);
     this.doBDateEdit.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.doBDateEdit.Name = "doBDateEdit";
     this.doBDateEdit.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.doBDateEdit.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.doBDateEdit.Size = new System.Drawing.Size(86, 20);
     this.doBDateEdit.TabIndex = 13;
     this.doBDateEdit.EditValueChanged += new System.EventHandler(this.DoBDateEditEditValueChanged);
     //
     // labelControl6
     //
     this.labelControl6.Location = new System.Drawing.Point(210, 56);
     this.labelControl6.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.labelControl6.Name = "labelControl6";
     this.labelControl6.Size = new System.Drawing.Size(61, 13);
     this.labelControl6.TabIndex = 40;
     this.labelControl6.Text = "Date of Birth";
     //
     // labelControl5
     //
     this.labelControl5.Location = new System.Drawing.Point(249, 30);
     this.labelControl5.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.labelControl5.Name = "labelControl5";
     this.labelControl5.Size = new System.Drawing.Size(20, 13);
     this.labelControl5.TabIndex = 39;
     this.labelControl5.Text = "Title";
     //
     // givenNameTextEdit
     //
     this.givenNameTextEdit.Location = new System.Drawing.Point(89, 51);
     this.givenNameTextEdit.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.givenNameTextEdit.Name = "givenNameTextEdit";
     this.givenNameTextEdit.Size = new System.Drawing.Size(86, 20);
     this.givenNameTextEdit.TabIndex = 5;
     this.givenNameTextEdit.EditValueChanged += new System.EventHandler(this.GivenNameTextEditEditValueChanged);
     //
     // labelControl4
     //
     this.labelControl4.Location = new System.Drawing.Point(9, 54);
     this.labelControl4.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.labelControl4.Name = "labelControl4";
     this.labelControl4.Size = new System.Drawing.Size(62, 13);
     this.labelControl4.TabIndex = 37;
     this.labelControl4.Text = "Given Names";
     //
     // surnameTextEdit
     //
     this.surnameTextEdit.Location = new System.Drawing.Point(89, 25);
     this.surnameTextEdit.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.surnameTextEdit.Name = "surnameTextEdit";
     this.surnameTextEdit.Size = new System.Drawing.Size(86, 20);
     this.surnameTextEdit.TabIndex = 4;
     this.surnameTextEdit.EditValueChanged += new System.EventHandler(this.SurnameTextEditEditValueChanged);
     //
     // labelControl3
     //
     this.labelControl3.Location = new System.Drawing.Point(27, 30);
     this.labelControl3.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.labelControl3.Name = "labelControl3";
     this.labelControl3.Size = new System.Drawing.Size(42, 13);
     this.labelControl3.TabIndex = 35;
     this.labelControl3.Text = "Surname";
     //
     // applyBtn
     //
     this.applyBtn.Appearance.Font = new System.Drawing.Font("Tahoma", 6F);
     this.applyBtn.Appearance.Options.UseFont = true;
     this.applyBtn.Location = new System.Drawing.Point(407, 586);
     this.applyBtn.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.applyBtn.Name = "applyBtn";
     this.applyBtn.Size = new System.Drawing.Size(79, 19);
     this.applyBtn.TabIndex = 75;
     this.applyBtn.Text = "Apply(F12)";
     this.applyBtn.Click += new System.EventHandler(this.ApplyBtnClick);
     //
     // searchResultProgressBar
     //
     this.searchResultProgressBar.Location = new System.Drawing.Point(91, 586);
     this.searchResultProgressBar.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.searchResultProgressBar.Name = "searchResultProgressBar";
     this.searchResultProgressBar.Size = new System.Drawing.Size(198, 19);
     this.searchResultProgressBar.TabIndex = 74;
     //
     // newPatientBtn
     //
     this.newPatientBtn.Appearance.Font = new System.Drawing.Font("Tahoma", 6F);
     this.newPatientBtn.Appearance.Options.UseFont = true;
     this.newPatientBtn.Location = new System.Drawing.Point(2, 586);
     this.newPatientBtn.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.newPatientBtn.Name = "newPatientBtn";
     this.newPatientBtn.Size = new System.Drawing.Size(80, 19);
     this.newPatientBtn.TabIndex = 73;
     this.newPatientBtn.TabStop = false;
     this.newPatientBtn.Text = "NEW(CTRL+N)";
     this.newPatientBtn.Click += new System.EventHandler(this.NewPatientBtnClick);
     //
     // cancelBtn
     //
     this.cancelBtn.Appearance.Font = new System.Drawing.Font("Tahoma", 6F);
     this.cancelBtn.Appearance.Options.UseFont = true;
     this.cancelBtn.Location = new System.Drawing.Point(491, 586);
     this.cancelBtn.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.cancelBtn.Name = "cancelBtn";
     this.cancelBtn.Size = new System.Drawing.Size(79, 19);
     this.cancelBtn.TabIndex = 72;
     this.cancelBtn.TabStop = false;
     this.cancelBtn.Text = "Cancel(ESC)";
     this.cancelBtn.Click += new System.EventHandler(this.BtnCancelClick);
     //
     // okBtn
     //
     this.okBtn.Appearance.Font = new System.Drawing.Font("Tahoma", 6F);
     this.okBtn.Appearance.Options.UseFont = true;
     this.okBtn.Location = new System.Drawing.Point(323, 586);
     this.okBtn.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.okBtn.Name = "okBtn";
     this.okBtn.Size = new System.Drawing.Size(79, 19);
     this.okBtn.TabIndex = 71;
     this.okBtn.Text = "OK(F2)";
     this.okBtn.Click += new System.EventHandler(this.BtnOkClick);
     //
     // groupBox5
     //
     this.groupBox5.Controls.Add(this.displayGridControl);
     this.groupBox5.Controls.Add(this.goBtn);
     this.groupBox5.Controls.Add(this.searchFieldTextBox);
     this.groupBox5.Controls.Add(this.label1);
     this.groupBox5.Location = new System.Drawing.Point(2, 2);
     this.groupBox5.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.groupBox5.Name = "groupBox5";
     this.groupBox5.Padding = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.groupBox5.Size = new System.Drawing.Size(567, 198);
     this.groupBox5.TabIndex = 0;
     this.groupBox5.TabStop = false;
     this.groupBox5.Text = "Select a Doctor";
     //
     // displayGridControl
     //
     this.displayGridControl.Location = new System.Drawing.Point(0, 33);
     this.displayGridControl.MainView = this.displayGridView;
     this.displayGridControl.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.displayGridControl.Name = "displayGridControl";
     this.displayGridControl.Size = new System.Drawing.Size(562, 162);
     this.displayGridControl.TabIndex = 2;
     this.displayGridControl.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.displayGridView});
     this.displayGridControl.Click += new System.EventHandler(this.DisplayGridControlClick);
     //
     // displayGridView
     //
     this.displayGridView.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn1,
     this.gridColumn2,
     this.gridColumn3,
     this.gridColumn4});
     this.displayGridView.GridControl = this.displayGridControl;
     this.displayGridView.Name = "displayGridView";
     this.displayGridView.OptionsBehavior.Editable = false;
     this.displayGridView.OptionsBehavior.FocusLeaveOnTab = true;
     this.displayGridView.OptionsBehavior.ReadOnly = true;
     this.displayGridView.OptionsNavigation.UseTabKey = false;
     this.displayGridView.OptionsView.ShowGroupPanel = false;
     this.displayGridView.ViewCaption = "Results:";
     this.displayGridView.RowCellClick += new DevExpress.XtraGrid.Views.Grid.RowCellClickEventHandler(this.DisplayGridViewRowCellClick);
     this.displayGridView.KeyDown += new System.Windows.Forms.KeyEventHandler(this.DisplayGridViewKeyDown);
     //
     // gridColumn1
     //
     this.gridColumn1.Caption = "First Name";
     this.gridColumn1.FieldName = "FirstNames";
     this.gridColumn1.Name = "gridColumn1";
     this.gridColumn1.Visible = true;
     this.gridColumn1.VisibleIndex = 0;
     //
     // gridColumn2
     //
     this.gridColumn2.Caption = "Last Name";
     this.gridColumn2.FieldName = "LastName";
     this.gridColumn2.Name = "gridColumn2";
     this.gridColumn2.Visible = true;
     this.gridColumn2.VisibleIndex = 1;
     //
     // gridColumn3
     //
     this.gridColumn3.Caption = "Gender";
     this.gridColumn3.FieldName = "Sex";
     this.gridColumn3.Name = "gridColumn3";
     this.gridColumn3.Visible = true;
     this.gridColumn3.VisibleIndex = 2;
     //
     // gridColumn4
     //
     this.gridColumn4.Caption = "DVA #";
     this.gridColumn4.FieldName = "DVANumber";
     this.gridColumn4.Name = "gridColumn4";
     this.gridColumn4.Visible = true;
     this.gridColumn4.VisibleIndex = 3;
     //
     // goBtn
     //
     this.goBtn.Appearance.Font = new System.Drawing.Font("Tahoma", 6F);
     this.goBtn.Appearance.Options.UseFont = true;
     this.goBtn.Location = new System.Drawing.Point(539, 9);
     this.goBtn.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.goBtn.Name = "goBtn";
     this.goBtn.Size = new System.Drawing.Size(23, 19);
     this.goBtn.TabIndex = 0;
     this.goBtn.TabStop = false;
     this.goBtn.Text = "go";
     this.goBtn.Click += new System.EventHandler(this.GoBtnClick);
     //
     // searchFieldTextBox
     //
     this.searchFieldTextBox.Location = new System.Drawing.Point(279, 10);
     this.searchFieldTextBox.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.searchFieldTextBox.Name = "searchFieldTextBox";
     this.searchFieldTextBox.Size = new System.Drawing.Size(256, 21);
     this.searchFieldTextBox.TabIndex = 1;
     this.searchFieldTextBox.TextChanged += new System.EventHandler(this.SearchFieldTextBoxTextChanged);
     this.searchFieldTextBox.KeyDown += new System.Windows.Forms.KeyEventHandler(this.SearchFieldTextBoxKeyDown);
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(228, 12);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(40, 13);
     this.label1.TabIndex = 7;
     this.label1.Text = "Search";
     //
     // labelControl7
     //
     this.labelControl7.Location = new System.Drawing.Point(11, 81);
     this.labelControl7.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.labelControl7.Name = "labelControl7";
     this.labelControl7.Size = new System.Drawing.Size(60, 13);
     this.labelControl7.TabIndex = 42;
     this.labelControl7.Text = "Home Phone";
     //
     // homePhoneTextEdit
     //
     this.homePhoneTextEdit.Location = new System.Drawing.Point(89, 79);
     this.homePhoneTextEdit.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.homePhoneTextEdit.Name = "homePhoneTextEdit";
     this.homePhoneTextEdit.Properties.Mask.EditMask = "(0[2|3|4|7|8]-)?[1-9]\\d\\d\\d\\d\\d\\d\\d";
     this.homePhoneTextEdit.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.RegEx;
     this.homePhoneTextEdit.Properties.Mask.PlaceHolder = '*';
     this.homePhoneTextEdit.Size = new System.Drawing.Size(86, 20);
     this.homePhoneTextEdit.TabIndex = 6;
     this.homePhoneTextEdit.EditValueChanged += new System.EventHandler(this.HomePhoneTextEditEditValueChanged);
     //
     // labelControl8
     //
     this.labelControl8.Location = new System.Drawing.Point(41, 134);
     this.labelControl8.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.labelControl8.Name = "labelControl8";
     this.labelControl8.Size = new System.Drawing.Size(30, 13);
     this.labelControl8.TabIndex = 44;
     this.labelControl8.Text = "Mobile";
     //
     // mobileTextEdit
     //
     this.mobileTextEdit.Location = new System.Drawing.Point(89, 129);
     this.mobileTextEdit.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.mobileTextEdit.Name = "mobileTextEdit";
     this.mobileTextEdit.Properties.Mask.AutoComplete = DevExpress.XtraEditors.Mask.AutoCompleteType.None;
     this.mobileTextEdit.Properties.Mask.EditMask = "04\\d\\d\\d\\d\\d\\d\\d\\d";
     this.mobileTextEdit.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.RegEx;
     this.mobileTextEdit.Properties.Mask.PlaceHolder = '*';
     this.mobileTextEdit.Size = new System.Drawing.Size(86, 20);
     this.mobileTextEdit.TabIndex = 8;
     this.mobileTextEdit.EditValueChanged += new System.EventHandler(this.MobileTextEditEditValueChanged);
     //
     // labelControl9
     //
     this.labelControl9.Location = new System.Drawing.Point(14, 106);
     this.labelControl9.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.labelControl9.Name = "labelControl9";
     this.labelControl9.Size = new System.Drawing.Size(58, 13);
     this.labelControl9.TabIndex = 46;
     this.labelControl9.Text = "Work Phone";
     //
     // workPhoneTextEdit
     //
     this.workPhoneTextEdit.Location = new System.Drawing.Point(89, 104);
     this.workPhoneTextEdit.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.workPhoneTextEdit.Name = "workPhoneTextEdit";
     this.workPhoneTextEdit.Properties.Mask.EditMask = "(0[2|3|4|7|8]-)?[1-9]\\d\\d\\d\\d\\d\\d\\d";
     this.workPhoneTextEdit.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.RegEx;
     this.workPhoneTextEdit.Properties.Mask.PlaceHolder = '*';
     this.workPhoneTextEdit.Size = new System.Drawing.Size(86, 20);
     this.workPhoneTextEdit.TabIndex = 7;
     this.workPhoneTextEdit.EditValueChanged += new System.EventHandler(this.WorkPhoneTextEditEditValueChanged);
     //
     // emailTextEdit
     //
     this.emailTextEdit.Location = new System.Drawing.Point(89, 156);
     this.emailTextEdit.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.emailTextEdit.Name = "emailTextEdit";
     this.emailTextEdit.Properties.Mask.AutoComplete = DevExpress.XtraEditors.Mask.AutoCompleteType.None;
     this.emailTextEdit.Properties.Mask.EditMask = "04\\d\\d\\d\\d\\d\\d\\d\\d";
     this.emailTextEdit.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.RegEx;
     this.emailTextEdit.Properties.Mask.PlaceHolder = '*';
     this.emailTextEdit.Size = new System.Drawing.Size(86, 20);
     this.emailTextEdit.TabIndex = 9;
     this.emailTextEdit.EditValueChanged += new System.EventHandler(this.EmailTextEditEditValueChanged);
     //
     // labelControl17
     //
     this.labelControl17.Location = new System.Drawing.Point(46, 161);
     this.labelControl17.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.labelControl17.Name = "labelControl17";
     this.labelControl17.Size = new System.Drawing.Size(24, 13);
     this.labelControl17.TabIndex = 59;
     this.labelControl17.Text = "Email";
     //
     // patientViewForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(571, 607);
     this.Controls.Add(this.groupBox5);
     this.Controls.Add(this.applyBtn);
     this.Controls.Add(this.searchResultProgressBar);
     this.Controls.Add(this.newPatientBtn);
     this.Controls.Add(this.cancelBtn);
     this.Controls.Add(this.okBtn);
     this.Controls.Add(this.groupBox4);
     this.Controls.Add(this.groupBox3);
     this.Controls.Add(this.groupBox2);
     this.Controls.Add(this.patientDetailsGroupBox);
     this.KeyPreview = true;
     this.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.Name = "patientViewForm";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "NewPatientViewForm";
     this.Load += new System.EventHandler(this.PatientViewFormLoad);
     this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.PatientViewFormKeyDown);
     this.groupBox4.ResumeLayout(false);
     this.groupBox4.PerformLayout();
     this.groupBox3.ResumeLayout(false);
     this.groupBox2.ResumeLayout(false);
     this.groupBox2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.MedicalConditionsComboBoxEdit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.SmokerNoCheckEdit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.SmokerYesCheckEdit.Properties)).EndInit();
     this.patientDetailsGroupBox.ResumeLayout(false);
     this.patientDetailsGroupBox.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.claimNoTextEdit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dvaTextBox.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.postCodeTextBox.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.stateTextBox.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.genderFemaleTickBox.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.genderMaleTickBox.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.addressTextEdit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.doBDateEdit.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.doBDateEdit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.givenNameTextEdit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.surnameTextEdit.Properties)).EndInit();
     this.groupBox5.ResumeLayout(false);
     this.groupBox5.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.displayGridControl)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.displayGridView)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.homePhoneTextEdit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.mobileTextEdit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.workPhoneTextEdit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.emailTextEdit.Properties)).EndInit();
     this.ResumeLayout(false);
 }
Пример #19
0
		/// <summary> 
		/// 设计器支持所需的方法 - 不要使用代码编辑器 
		/// 修改此方法的内容。
		/// </summary>
		private void InitializeComponent()
		{
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(StudentMorningCheckInfo));
            this.xtraTabControl_CheckInfo = new DevExpress.XtraTab.XtraTabControl();
            this.xtraTabPage_MorningCheck = new DevExpress.XtraTab.XtraTabPage();
            this.splitContainerControl1 = new DevExpress.XtraEditors.SplitContainerControl();
            this.groupControl_InfoStaticMornig = new DevExpress.XtraEditors.GroupControl();
            this.textEdit_HaveArr = new DevExpress.XtraEditors.TextEdit();
            this.notePanel_HaveArr = new DevExpress.Utils.Frames.NotePanel();
            this.textEdit_DayAmount = new DevExpress.XtraEditors.TextEdit();
            this.textEdit_ShouldArr = new DevExpress.XtraEditors.TextEdit();
            this.textEdit_Watch = new DevExpress.XtraEditors.TextEdit();
            this.textEdit_Ill = new DevExpress.XtraEditors.TextEdit();
            this.textEdit_Absence = new DevExpress.XtraEditors.TextEdit();
            this.textEdit_Health = new DevExpress.XtraEditors.TextEdit();
            this.notePanel_DayAmount = new DevExpress.Utils.Frames.NotePanel();
            this.notePanel_ShouldArr = new DevExpress.Utils.Frames.NotePanel();
            this.notePanel_Absence = new DevExpress.Utils.Frames.NotePanel();
            this.notePanel_Watch = new DevExpress.Utils.Frames.NotePanel();
            this.notePanel_Ill = new DevExpress.Utils.Frames.NotePanel();
            this.notePanel_Health = new DevExpress.Utils.Frames.NotePanel();
            this.textEdit_CurRecTimeBinding = new DevExpress.XtraEditors.TextEdit();
            this.textEdit_OrigStateBinding = new DevExpress.XtraEditors.TextEdit();
            this.groupControl_FastSerMorning = new DevExpress.XtraEditors.GroupControl();
            this.groupControl_TimeStatusMorning = new DevExpress.XtraEditors.GroupControl();
            this.dateEdit_SpecificDateMorning = new DevExpress.XtraEditors.DateEdit();
            this.notePanel_SpecificDateMorning = new DevExpress.Utils.Frames.NotePanel();
            this.textEdit_EndTimeMorning = new DevExpress.XtraEditors.TextEdit();
            this.textEdit_BegTimeMorning = new DevExpress.XtraEditors.TextEdit();
            this.comboBoxEdit_TimeModeMorning = new DevExpress.XtraEditors.ComboBoxEdit();
            this.notePanel_TimeModeMorning = new DevExpress.Utils.Frames.NotePanel();
            this.comboBoxEdit_Status = new DevExpress.XtraEditors.ComboBoxEdit();
            this.notePanel_Status = new DevExpress.Utils.Frames.NotePanel();
            this.notePanel_BegTimeMorning = new DevExpress.Utils.Frames.NotePanel();
            this.notePanel_EndTimeMorning = new DevExpress.Utils.Frames.NotePanel();
            this.groupControl_NumberNameMorning = new DevExpress.XtraEditors.GroupControl();
            this.textEdit_NumberMorning = new DevExpress.XtraEditors.TextEdit();
            this.textEdit_NameMorning = new DevExpress.XtraEditors.TextEdit();
            this.notePanel_NumberMorning = new DevExpress.Utils.Frames.NotePanel();
            this.notePanel_NameMorning = new DevExpress.Utils.Frames.NotePanel();
            this.groupControl_GradeClassMorning = new DevExpress.XtraEditors.GroupControl();
            this.comboBoxEdit_ClassMorning = new DevExpress.XtraEditors.ComboBoxEdit();
            this.comboBoxEdit_GradeMorning = new DevExpress.XtraEditors.ComboBoxEdit();
            this.notePanel1_GradeMorning = new DevExpress.Utils.Frames.NotePanel();
            this.notePanel1_ClassMorning = new DevExpress.Utils.Frames.NotePanel();
            this.notePanel_GradeClassMorning = new DevExpress.Utils.Frames.NotePanel();
            this.notePanel_TimeStatusMorning = new DevExpress.Utils.Frames.NotePanel();
            this.notePanel_NumberNameMorning = new DevExpress.Utils.Frames.NotePanel();
            this.notePanel1_SerCondMorning = new DevExpress.Utils.Frames.NotePanel();
            this.gridControl_MorningInfo = 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.repositoryItemComboBox_Status = new DevExpress.XtraEditors.Repository.RepositoryItemComboBox();
            this.panelControl1 = new DevExpress.XtraEditors.PanelControl();
            this.simpleButton_PrintMorning = new DevExpress.XtraEditors.SimpleButton();
            this.simpleButton_SearchMorning = new DevExpress.XtraEditors.SimpleButton();
            this.xtraTabPage_BackHomeCheck = new DevExpress.XtraTab.XtraTabPage();
            this.splitContainerControl2 = new DevExpress.XtraEditors.SplitContainerControl();
            this.groupControl1 = new DevExpress.XtraEditors.GroupControl();
            this.textEdit_ShouldGo = new DevExpress.XtraEditors.TextEdit();
            this.notePanel_ShouldGo = new DevExpress.Utils.Frames.NotePanel();
            this.textEdit_HasnotGone = new DevExpress.XtraEditors.TextEdit();
            this.notePanel_HasnotGone = new DevExpress.Utils.Frames.NotePanel();
            this.textEdit_HasGone = new DevExpress.XtraEditors.TextEdit();
            this.notePanel_HasGone = new DevExpress.Utils.Frames.NotePanel();
            this.groupControl_FastSerBack = new DevExpress.XtraEditors.GroupControl();
            this.groupControl_TimeCondBack = new DevExpress.XtraEditors.GroupControl();
            this.dateEdit_SpecificDateBack = new DevExpress.XtraEditors.DateEdit();
            this.notePanel_SpecificDateBack = new DevExpress.Utils.Frames.NotePanel();
            this.comboBoxEdit_TimeModeBack = new DevExpress.XtraEditors.ComboBoxEdit();
            this.notePanel_TimeModeBack = new DevExpress.Utils.Frames.NotePanel();
            this.textEdit_EndTimeBack = new DevExpress.XtraEditors.TextEdit();
            this.textEdit_BegTimeBack = new DevExpress.XtraEditors.TextEdit();
            this.comboBoxEdit_BackCond = new DevExpress.XtraEditors.ComboBoxEdit();
            this.notePanel_BackCond = new DevExpress.Utils.Frames.NotePanel();
            this.notePanel_BegTimeBack = new DevExpress.Utils.Frames.NotePanel();
            this.notePanel_EndTimeBack = new DevExpress.Utils.Frames.NotePanel();
            this.groupControl_NumberNameBack = new DevExpress.XtraEditors.GroupControl();
            this.textEdit_NameBack = new DevExpress.XtraEditors.TextEdit();
            this.textEdit_NumberBack = new DevExpress.XtraEditors.TextEdit();
            this.notePanel_NumberBack = new DevExpress.Utils.Frames.NotePanel();
            this.notePanel1_NameBack = new DevExpress.Utils.Frames.NotePanel();
            this.groupControl_GradeClassBack = new DevExpress.XtraEditors.GroupControl();
            this.comboBoxEdit_ClassBack = new DevExpress.XtraEditors.ComboBoxEdit();
            this.comboBoxEdit_GradeBack = new DevExpress.XtraEditors.ComboBoxEdit();
            this.notePanel1_GradeBack = new DevExpress.Utils.Frames.NotePanel();
            this.notePanel1_ClassBack = new DevExpress.Utils.Frames.NotePanel();
            this.notePanel_GradeClassBack = new DevExpress.Utils.Frames.NotePanel();
            this.notePanel_TimeConBack = new DevExpress.Utils.Frames.NotePanel();
            this.notePanel_NumberNameBack = new DevExpress.Utils.Frames.NotePanel();
            this.notePanel_SerCondBack = new DevExpress.Utils.Frames.NotePanel();
            this.gridControl_BackInfo = new DevExpress.XtraGrid.GridControl();
            this.gridView2 = 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.panelControl2 = new DevExpress.XtraEditors.PanelControl();
            this.simpleButton_PrintBack = new DevExpress.XtraEditors.SimpleButton();
            this.simpleButton_SearchBack = new DevExpress.XtraEditors.SimpleButton();
            this.xtraTabPage_FreeDefinition = new DevExpress.XtraTab.XtraTabPage();
            this.splitContainerControl3 = new DevExpress.XtraEditors.SplitContainerControl();
            this.groupControl_FastSerFreeDef = new DevExpress.XtraEditors.GroupControl();
            this.groupControl_TimeStatusFreeDef = new DevExpress.XtraEditors.GroupControl();
            this.dateEdit_SpecificDateFreeDef = new DevExpress.XtraEditors.DateEdit();
            this.notePanel_SpecificDateFreeDef = new DevExpress.Utils.Frames.NotePanel();
            this.comboBoxEdit_TimeModeFreeDef = new DevExpress.XtraEditors.ComboBoxEdit();
            this.textEdit_EndTimeFreeDef = new DevExpress.XtraEditors.TextEdit();
            this.textEdit_BegTimeFreeDef = new DevExpress.XtraEditors.TextEdit();
            this.notePanel_TimeMode_FreeDef = new DevExpress.Utils.Frames.NotePanel();
            this.comboBoxEdit_CustomStatusDef = new DevExpress.XtraEditors.ComboBoxEdit();
            this.notePanel_FreeDef = new DevExpress.Utils.Frames.NotePanel();
            this.notePanel_BegTimeFreeDef = new DevExpress.Utils.Frames.NotePanel();
            this.notePanel_EndTimeFreeDef = new DevExpress.Utils.Frames.NotePanel();
            this.groupControl_NumberNameFreeDef = new DevExpress.XtraEditors.GroupControl();
            this.textEdit_NameFreeDef = new DevExpress.XtraEditors.TextEdit();
            this.textEdit_NumberFreeDef = new DevExpress.XtraEditors.TextEdit();
            this.notePanel_NumberFreeDef = new DevExpress.Utils.Frames.NotePanel();
            this.notePanel_NameFreeDef = new DevExpress.Utils.Frames.NotePanel();
            this.groupControl_GradeClassFreeDef = new DevExpress.XtraEditors.GroupControl();
            this.comboBoxEdit_ClassFreeDef = new DevExpress.XtraEditors.ComboBoxEdit();
            this.comboBoxEdit_GradeFreeDef = new DevExpress.XtraEditors.ComboBoxEdit();
            this.notePanel_GradeFreeDef = new DevExpress.Utils.Frames.NotePanel();
            this.notePanel_ClassFreeDef = new DevExpress.Utils.Frames.NotePanel();
            this.notePanel_GradeClassFreeDef = new DevExpress.Utils.Frames.NotePanel();
            this.notePanel_TimeStatusFreeDef = new DevExpress.Utils.Frames.NotePanel();
            this.notePanel_NumberNameFreeDef = new DevExpress.Utils.Frames.NotePanel();
            this.notePanel1_SerCondFreeDef = new DevExpress.Utils.Frames.NotePanel();
            this.gridControl_FreeDef = new DevExpress.XtraGrid.GridControl();
            this.gridView3 = new DevExpress.XtraGrid.Views.Grid.GridView();
            this.gridColumn14 = new DevExpress.XtraGrid.Columns.GridColumn();
            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.repositoryItemComboBox_CustomState = new DevExpress.XtraEditors.Repository.RepositoryItemComboBox();
            this.repositoryItemComboBox1 = new DevExpress.XtraEditors.Repository.RepositoryItemComboBox();
            this.panelControl3 = new DevExpress.XtraEditors.PanelControl();
            this.simpleButton_SearchFreeDef = new DevExpress.XtraEditors.SimpleButton();
            this.xtraTabPage_MoreReport = new DevExpress.XtraTab.XtraTabPage();
            this.splitContainerControl4 = new DevExpress.XtraEditors.SplitContainerControl();
            this.groupControl_FastSerReport = new DevExpress.XtraEditors.GroupControl();
            this.textEdit_EndDateReport = new DevExpress.XtraEditors.TextEdit();
            this.textEdit_BegDateReport = new DevExpress.XtraEditors.TextEdit();
            this.textEdit_NumberReport = new DevExpress.XtraEditors.TextEdit();
            this.textEdit_NameReport = new DevExpress.XtraEditors.TextEdit();
            this.notePanel_NumberReport = new DevExpress.Utils.Frames.NotePanel();
            this.notePanel_NameReport = new DevExpress.Utils.Frames.NotePanel();
            this.comboBoxEdit_PrintType = new DevExpress.XtraEditors.ComboBoxEdit();
            this.notePanel_PrintType = new DevExpress.Utils.Frames.NotePanel();
            this.notePanel_EndDateReport = new DevExpress.Utils.Frames.NotePanel();
            this.notePanel_BegDateReport = new DevExpress.Utils.Frames.NotePanel();
            this.comboBoxEdit_ClassReport = new DevExpress.XtraEditors.ComboBoxEdit();
            this.notePanel_ClassReport = new DevExpress.Utils.Frames.NotePanel();
            this.comboBoxEdit_GradeReport = new DevExpress.XtraEditors.ComboBoxEdit();
            this.notePanel_GradeReport = new DevExpress.Utils.Frames.NotePanel();
            this.notePanel_SerCondReport = new DevExpress.Utils.Frames.NotePanel();
            this.groupControl_PreviewReport = new DevExpress.XtraEditors.GroupControl();
            this.panelControl4 = new DevExpress.XtraEditors.PanelControl();
            this.simpleButton_PrintReport = new DevExpress.XtraEditors.SimpleButton();
            this.simpleButton_PreviewReport = new DevExpress.XtraEditors.SimpleButton();
            this.xtraTabPage1 = new DevExpress.XtraTab.XtraTabPage();
            this.panel1 = new System.Windows.Forms.Panel();
            this.treeView1 = new System.Windows.Forms.TreeView();
            this.panel2 = new System.Windows.Forms.Panel();
            this.simpleButton1 = new DevExpress.XtraEditors.SimpleButton();
            this.checkedComboBoxEdit1 = new DevExpress.XtraEditors.CheckedComboBoxEdit();
            this.comboBox1 = new System.Windows.Forms.ComboBox();
            this.label1 = new System.Windows.Forms.Label();
            this.progressBar1 = new System.Windows.Forms.ProgressBar();
            this.saveFileDialog_Report = new System.Windows.Forms.SaveFileDialog();
            this.helpProvider_StuMorningCheckInfo = new System.Windows.Forms.HelpProvider();
            ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl_CheckInfo)).BeginInit();
            this.xtraTabControl_CheckInfo.SuspendLayout();
            this.xtraTabPage_MorningCheck.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl1)).BeginInit();
            this.splitContainerControl1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.groupControl_InfoStaticMornig)).BeginInit();
            this.groupControl_InfoStaticMornig.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_HaveArr.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_DayAmount.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_ShouldArr.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_Watch.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_Ill.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_Absence.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_Health.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_CurRecTimeBinding.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_OrigStateBinding.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.groupControl_FastSerMorning)).BeginInit();
            this.groupControl_FastSerMorning.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.groupControl_TimeStatusMorning)).BeginInit();
            this.groupControl_TimeStatusMorning.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.dateEdit_SpecificDateMorning.Properties.VistaTimeProperties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.dateEdit_SpecificDateMorning.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_EndTimeMorning.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_BegTimeMorning.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_TimeModeMorning.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_Status.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.groupControl_NumberNameMorning)).BeginInit();
            this.groupControl_NumberNameMorning.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_NumberMorning.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_NameMorning.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.groupControl_GradeClassMorning)).BeginInit();
            this.groupControl_GradeClassMorning.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_ClassMorning.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_GradeMorning.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridControl_MorningInfo)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemComboBox_Status)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
            this.panelControl1.SuspendLayout();
            this.xtraTabPage_BackHomeCheck.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl2)).BeginInit();
            this.splitContainerControl2.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
            this.groupControl1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_ShouldGo.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_HasnotGone.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_HasGone.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.groupControl_FastSerBack)).BeginInit();
            this.groupControl_FastSerBack.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.groupControl_TimeCondBack)).BeginInit();
            this.groupControl_TimeCondBack.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.dateEdit_SpecificDateBack.Properties.VistaTimeProperties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.dateEdit_SpecificDateBack.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_TimeModeBack.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_EndTimeBack.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_BegTimeBack.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_BackCond.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.groupControl_NumberNameBack)).BeginInit();
            this.groupControl_NumberNameBack.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_NameBack.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_NumberBack.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.groupControl_GradeClassBack)).BeginInit();
            this.groupControl_GradeClassBack.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_ClassBack.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_GradeBack.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridControl_BackInfo)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridView2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).BeginInit();
            this.panelControl2.SuspendLayout();
            this.xtraTabPage_FreeDefinition.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl3)).BeginInit();
            this.splitContainerControl3.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.groupControl_FastSerFreeDef)).BeginInit();
            this.groupControl_FastSerFreeDef.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.groupControl_TimeStatusFreeDef)).BeginInit();
            this.groupControl_TimeStatusFreeDef.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.dateEdit_SpecificDateFreeDef.Properties.VistaTimeProperties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.dateEdit_SpecificDateFreeDef.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_TimeModeFreeDef.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_EndTimeFreeDef.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_BegTimeFreeDef.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_CustomStatusDef.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.groupControl_NumberNameFreeDef)).BeginInit();
            this.groupControl_NumberNameFreeDef.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_NameFreeDef.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_NumberFreeDef.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.groupControl_GradeClassFreeDef)).BeginInit();
            this.groupControl_GradeClassFreeDef.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_ClassFreeDef.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_GradeFreeDef.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridControl_FreeDef)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridView3)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemComboBox_CustomState)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemComboBox1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.panelControl3)).BeginInit();
            this.panelControl3.SuspendLayout();
            this.xtraTabPage_MoreReport.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl4)).BeginInit();
            this.splitContainerControl4.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.groupControl_FastSerReport)).BeginInit();
            this.groupControl_FastSerReport.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_EndDateReport.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_BegDateReport.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_NumberReport.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_NameReport.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_PrintType.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_ClassReport.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_GradeReport.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.groupControl_PreviewReport)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.panelControl4)).BeginInit();
            this.panelControl4.SuspendLayout();
            this.xtraTabPage1.SuspendLayout();
            this.panel1.SuspendLayout();
            this.panel2.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.checkedComboBoxEdit1.Properties)).BeginInit();
            this.SuspendLayout();
            // 
            // xtraTabControl_CheckInfo
            // 
            this.xtraTabControl_CheckInfo.Appearance.BackColor = System.Drawing.Color.WhiteSmoke;
            this.xtraTabControl_CheckInfo.Appearance.Options.UseBackColor = true;
            this.xtraTabControl_CheckInfo.AppearancePage.HeaderActive.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.xtraTabControl_CheckInfo.AppearancePage.HeaderActive.ForeColor = System.Drawing.Color.DarkOrange;
            this.xtraTabControl_CheckInfo.AppearancePage.HeaderActive.Options.UseFont = true;
            this.xtraTabControl_CheckInfo.AppearancePage.HeaderActive.Options.UseForeColor = true;
            this.xtraTabControl_CheckInfo.Dock = System.Windows.Forms.DockStyle.Fill;
            this.xtraTabControl_CheckInfo.Location = new System.Drawing.Point(0, 0);
            this.xtraTabControl_CheckInfo.Name = "xtraTabControl_CheckInfo";
            this.xtraTabControl_CheckInfo.SelectedTabPage = this.xtraTabPage_MorningCheck;
            this.xtraTabControl_CheckInfo.Size = new System.Drawing.Size(772, 540);
            this.xtraTabControl_CheckInfo.TabIndex = 0;
            this.xtraTabControl_CheckInfo.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
            this.xtraTabPage_MorningCheck,
            this.xtraTabPage_BackHomeCheck,
            this.xtraTabPage_FreeDefinition,
            this.xtraTabPage_MoreReport,
            this.xtraTabPage1});
            // 
            // xtraTabPage_MorningCheck
            // 
            this.xtraTabPage_MorningCheck.Appearance.PageClient.BackColor = System.Drawing.Color.WhiteSmoke;
            this.xtraTabPage_MorningCheck.Appearance.PageClient.Options.UseBackColor = true;
            this.xtraTabPage_MorningCheck.Controls.Add(this.splitContainerControl1);
            this.xtraTabPage_MorningCheck.Name = "xtraTabPage_MorningCheck";
            this.xtraTabPage_MorningCheck.Size = new System.Drawing.Size(766, 511);
            this.xtraTabPage_MorningCheck.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_InfoStaticMornig);
            this.splitContainerControl1.Panel1.Controls.Add(this.groupControl_FastSerMorning);
            this.splitContainerControl1.Panel1.Text = "splitContainerControl1_Panel1";
            this.splitContainerControl1.Panel2.Controls.Add(this.gridControl_MorningInfo);
            this.splitContainerControl1.Panel2.Controls.Add(this.panelControl1);
            this.splitContainerControl1.Panel2.Text = "splitContainerControl1_Panel2";
            this.splitContainerControl1.Size = new System.Drawing.Size(766, 511);
            this.splitContainerControl1.SplitterPosition = 239;
            this.splitContainerControl1.TabIndex = 0;
            this.splitContainerControl1.Text = "splitContainerControl1";
            // 
            // groupControl_InfoStaticMornig
            // 
            this.groupControl_InfoStaticMornig.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.groupControl_InfoStaticMornig.AppearanceCaption.Options.UseFont = true;
            this.groupControl_InfoStaticMornig.Controls.Add(this.textEdit_HaveArr);
            this.groupControl_InfoStaticMornig.Controls.Add(this.notePanel_HaveArr);
            this.groupControl_InfoStaticMornig.Controls.Add(this.textEdit_DayAmount);
            this.groupControl_InfoStaticMornig.Controls.Add(this.textEdit_ShouldArr);
            this.groupControl_InfoStaticMornig.Controls.Add(this.textEdit_Watch);
            this.groupControl_InfoStaticMornig.Controls.Add(this.textEdit_Ill);
            this.groupControl_InfoStaticMornig.Controls.Add(this.textEdit_Absence);
            this.groupControl_InfoStaticMornig.Controls.Add(this.textEdit_Health);
            this.groupControl_InfoStaticMornig.Controls.Add(this.notePanel_DayAmount);
            this.groupControl_InfoStaticMornig.Controls.Add(this.notePanel_ShouldArr);
            this.groupControl_InfoStaticMornig.Controls.Add(this.notePanel_Absence);
            this.groupControl_InfoStaticMornig.Controls.Add(this.notePanel_Watch);
            this.groupControl_InfoStaticMornig.Controls.Add(this.notePanel_Ill);
            this.groupControl_InfoStaticMornig.Controls.Add(this.notePanel_Health);
            this.groupControl_InfoStaticMornig.Controls.Add(this.textEdit_CurRecTimeBinding);
            this.groupControl_InfoStaticMornig.Controls.Add(this.textEdit_OrigStateBinding);
            this.groupControl_InfoStaticMornig.Dock = System.Windows.Forms.DockStyle.Top;
            this.groupControl_InfoStaticMornig.Location = new System.Drawing.Point(0, 312);
            this.groupControl_InfoStaticMornig.Name = "groupControl_InfoStaticMornig";
            this.groupControl_InfoStaticMornig.Size = new System.Drawing.Size(239, 256);
            this.groupControl_InfoStaticMornig.TabIndex = 8;
            this.groupControl_InfoStaticMornig.Text = "晨检信息统计";
            // 
            // textEdit_HaveArr
            // 
            this.textEdit_HaveArr.EditValue = "";
            this.textEdit_HaveArr.Location = new System.Drawing.Point(88, 128);
            this.textEdit_HaveArr.Name = "textEdit_HaveArr";
            this.textEdit_HaveArr.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 10.5F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.textEdit_HaveArr.Properties.Appearance.ForeColor = System.Drawing.Color.Navy;
            this.textEdit_HaveArr.Properties.Appearance.Options.UseFont = true;
            this.textEdit_HaveArr.Properties.Appearance.Options.UseForeColor = true;
            this.textEdit_HaveArr.Properties.Appearance.Options.UseTextOptions = true;
            this.textEdit_HaveArr.Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.textEdit_HaveArr.Properties.AppearanceDisabled.BackColor = System.Drawing.Color.AntiqueWhite;
            this.textEdit_HaveArr.Properties.AppearanceDisabled.Options.UseBackColor = true;
            this.textEdit_HaveArr.Size = new System.Drawing.Size(128, 24);
            this.textEdit_HaveArr.TabIndex = 27;
            // 
            // notePanel_HaveArr
            // 
            this.notePanel_HaveArr.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel_HaveArr.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel_HaveArr.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel_HaveArr.ForeColor = System.Drawing.Color.Black;
            this.notePanel_HaveArr.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_HaveArr.Location = new System.Drawing.Point(16, 128);
            this.notePanel_HaveArr.MaxRows = 5;
            this.notePanel_HaveArr.Name = "notePanel_HaveArr";
            this.notePanel_HaveArr.ParentAutoHeight = true;
            this.notePanel_HaveArr.Size = new System.Drawing.Size(64, 22);
            this.notePanel_HaveArr.TabIndex = 26;
            this.notePanel_HaveArr.TabStop = false;
            this.notePanel_HaveArr.Text = "实出勤:";
            // 
            // textEdit_DayAmount
            // 
            this.textEdit_DayAmount.EditValue = "";
            this.textEdit_DayAmount.Location = new System.Drawing.Point(128, 224);
            this.textEdit_DayAmount.Name = "textEdit_DayAmount";
            this.textEdit_DayAmount.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 10.5F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.textEdit_DayAmount.Properties.Appearance.ForeColor = System.Drawing.Color.Navy;
            this.textEdit_DayAmount.Properties.Appearance.Options.UseFont = true;
            this.textEdit_DayAmount.Properties.Appearance.Options.UseForeColor = true;
            this.textEdit_DayAmount.Properties.Appearance.Options.UseTextOptions = true;
            this.textEdit_DayAmount.Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.textEdit_DayAmount.Properties.AppearanceDisabled.BackColor = System.Drawing.Color.AntiqueWhite;
            this.textEdit_DayAmount.Properties.AppearanceDisabled.Options.UseBackColor = true;
            this.textEdit_DayAmount.Size = new System.Drawing.Size(88, 24);
            this.textEdit_DayAmount.TabIndex = 25;
            // 
            // textEdit_ShouldArr
            // 
            this.textEdit_ShouldArr.EditValue = "";
            this.textEdit_ShouldArr.Location = new System.Drawing.Point(128, 192);
            this.textEdit_ShouldArr.Name = "textEdit_ShouldArr";
            this.textEdit_ShouldArr.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 10.5F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.textEdit_ShouldArr.Properties.Appearance.ForeColor = System.Drawing.Color.Navy;
            this.textEdit_ShouldArr.Properties.Appearance.Options.UseFont = true;
            this.textEdit_ShouldArr.Properties.Appearance.Options.UseForeColor = true;
            this.textEdit_ShouldArr.Properties.Appearance.Options.UseTextOptions = true;
            this.textEdit_ShouldArr.Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.textEdit_ShouldArr.Properties.AppearanceDisabled.BackColor = System.Drawing.Color.AntiqueWhite;
            this.textEdit_ShouldArr.Properties.AppearanceDisabled.Options.UseBackColor = true;
            this.textEdit_ShouldArr.Size = new System.Drawing.Size(88, 24);
            this.textEdit_ShouldArr.TabIndex = 24;
            // 
            // textEdit_Watch
            // 
            this.textEdit_Watch.EditValue = "";
            this.textEdit_Watch.Location = new System.Drawing.Point(88, 96);
            this.textEdit_Watch.Name = "textEdit_Watch";
            this.textEdit_Watch.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 10.5F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.textEdit_Watch.Properties.Appearance.ForeColor = System.Drawing.Color.Navy;
            this.textEdit_Watch.Properties.Appearance.Options.UseFont = true;
            this.textEdit_Watch.Properties.Appearance.Options.UseForeColor = true;
            this.textEdit_Watch.Properties.Appearance.Options.UseTextOptions = true;
            this.textEdit_Watch.Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.textEdit_Watch.Properties.AppearanceDisabled.BackColor = System.Drawing.Color.AntiqueWhite;
            this.textEdit_Watch.Properties.AppearanceDisabled.Options.UseBackColor = true;
            this.textEdit_Watch.Size = new System.Drawing.Size(128, 24);
            this.textEdit_Watch.TabIndex = 23;
            // 
            // textEdit_Ill
            // 
            this.textEdit_Ill.EditValue = "";
            this.textEdit_Ill.Location = new System.Drawing.Point(88, 64);
            this.textEdit_Ill.Name = "textEdit_Ill";
            this.textEdit_Ill.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 10.5F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.textEdit_Ill.Properties.Appearance.ForeColor = System.Drawing.Color.Navy;
            this.textEdit_Ill.Properties.Appearance.Options.UseFont = true;
            this.textEdit_Ill.Properties.Appearance.Options.UseForeColor = true;
            this.textEdit_Ill.Properties.Appearance.Options.UseTextOptions = true;
            this.textEdit_Ill.Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.textEdit_Ill.Properties.AppearanceDisabled.BackColor = System.Drawing.Color.AntiqueWhite;
            this.textEdit_Ill.Properties.AppearanceDisabled.Options.UseBackColor = true;
            this.textEdit_Ill.Size = new System.Drawing.Size(128, 24);
            this.textEdit_Ill.TabIndex = 22;
            // 
            // textEdit_Absence
            // 
            this.textEdit_Absence.EditValue = "";
            this.textEdit_Absence.Location = new System.Drawing.Point(88, 160);
            this.textEdit_Absence.Name = "textEdit_Absence";
            this.textEdit_Absence.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 10.5F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.textEdit_Absence.Properties.Appearance.ForeColor = System.Drawing.Color.Navy;
            this.textEdit_Absence.Properties.Appearance.Options.UseFont = true;
            this.textEdit_Absence.Properties.Appearance.Options.UseForeColor = true;
            this.textEdit_Absence.Properties.Appearance.Options.UseTextOptions = true;
            this.textEdit_Absence.Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.textEdit_Absence.Properties.AppearanceDisabled.BackColor = System.Drawing.Color.AntiqueWhite;
            this.textEdit_Absence.Properties.AppearanceDisabled.Options.UseBackColor = true;
            this.textEdit_Absence.Size = new System.Drawing.Size(128, 24);
            this.textEdit_Absence.TabIndex = 21;
            // 
            // textEdit_Health
            // 
            this.textEdit_Health.EditValue = "";
            this.textEdit_Health.Location = new System.Drawing.Point(88, 32);
            this.textEdit_Health.Name = "textEdit_Health";
            this.textEdit_Health.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 10.5F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.textEdit_Health.Properties.Appearance.ForeColor = System.Drawing.Color.Navy;
            this.textEdit_Health.Properties.Appearance.Options.UseFont = true;
            this.textEdit_Health.Properties.Appearance.Options.UseForeColor = true;
            this.textEdit_Health.Properties.Appearance.Options.UseTextOptions = true;
            this.textEdit_Health.Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.textEdit_Health.Properties.AppearanceDisabled.BackColor = System.Drawing.Color.AntiqueWhite;
            this.textEdit_Health.Properties.AppearanceDisabled.Options.UseBackColor = true;
            this.textEdit_Health.Size = new System.Drawing.Size(128, 24);
            this.textEdit_Health.TabIndex = 20;
            // 
            // notePanel_DayAmount
            // 
            this.notePanel_DayAmount.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel_DayAmount.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel_DayAmount.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel_DayAmount.ForeColor = System.Drawing.Color.Black;
            this.notePanel_DayAmount.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_DayAmount.Location = new System.Drawing.Point(16, 224);
            this.notePanel_DayAmount.MaxRows = 5;
            this.notePanel_DayAmount.Name = "notePanel_DayAmount";
            this.notePanel_DayAmount.ParentAutoHeight = true;
            this.notePanel_DayAmount.Size = new System.Drawing.Size(104, 22);
            this.notePanel_DayAmount.TabIndex = 10;
            this.notePanel_DayAmount.TabStop = false;
            this.notePanel_DayAmount.Text = "应到天数总和:";
            // 
            // notePanel_ShouldArr
            // 
            this.notePanel_ShouldArr.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel_ShouldArr.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel_ShouldArr.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel_ShouldArr.ForeColor = System.Drawing.Color.Black;
            this.notePanel_ShouldArr.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_ShouldArr.Location = new System.Drawing.Point(16, 192);
            this.notePanel_ShouldArr.MaxRows = 5;
            this.notePanel_ShouldArr.Name = "notePanel_ShouldArr";
            this.notePanel_ShouldArr.ParentAutoHeight = true;
            this.notePanel_ShouldArr.Size = new System.Drawing.Size(104, 22);
            this.notePanel_ShouldArr.TabIndex = 9;
            this.notePanel_ShouldArr.TabStop = false;
            this.notePanel_ShouldArr.Text = "应到人数总和:";
            // 
            // notePanel_Absence
            // 
            this.notePanel_Absence.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel_Absence.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel_Absence.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel_Absence.ForeColor = System.Drawing.Color.Black;
            this.notePanel_Absence.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_Absence.Location = new System.Drawing.Point(16, 160);
            this.notePanel_Absence.MaxRows = 5;
            this.notePanel_Absence.Name = "notePanel_Absence";
            this.notePanel_Absence.ParentAutoHeight = true;
            this.notePanel_Absence.Size = new System.Drawing.Size(64, 22);
            this.notePanel_Absence.TabIndex = 8;
            this.notePanel_Absence.TabStop = false;
            this.notePanel_Absence.Text = "缺  席:";
            // 
            // notePanel_Watch
            // 
            this.notePanel_Watch.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel_Watch.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel_Watch.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel_Watch.ForeColor = System.Drawing.Color.Black;
            this.notePanel_Watch.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_Watch.Location = new System.Drawing.Point(16, 96);
            this.notePanel_Watch.MaxRows = 5;
            this.notePanel_Watch.Name = "notePanel_Watch";
            this.notePanel_Watch.ParentAutoHeight = true;
            this.notePanel_Watch.Size = new System.Drawing.Size(64, 22);
            this.notePanel_Watch.TabIndex = 7;
            this.notePanel_Watch.TabStop = false;
            this.notePanel_Watch.Text = "观  察:";
            // 
            // notePanel_Ill
            // 
            this.notePanel_Ill.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel_Ill.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel_Ill.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel_Ill.ForeColor = System.Drawing.Color.Black;
            this.notePanel_Ill.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_Ill.Location = new System.Drawing.Point(16, 64);
            this.notePanel_Ill.MaxRows = 5;
            this.notePanel_Ill.Name = "notePanel_Ill";
            this.notePanel_Ill.ParentAutoHeight = true;
            this.notePanel_Ill.Size = new System.Drawing.Size(64, 22);
            this.notePanel_Ill.TabIndex = 6;
            this.notePanel_Ill.TabStop = false;
            this.notePanel_Ill.Text = "服  药:";
            // 
            // notePanel_Health
            // 
            this.notePanel_Health.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel_Health.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel_Health.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel_Health.ForeColor = System.Drawing.Color.Black;
            this.notePanel_Health.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_Health.Location = new System.Drawing.Point(16, 32);
            this.notePanel_Health.MaxRows = 5;
            this.notePanel_Health.Name = "notePanel_Health";
            this.notePanel_Health.ParentAutoHeight = true;
            this.notePanel_Health.Size = new System.Drawing.Size(64, 22);
            this.notePanel_Health.TabIndex = 5;
            this.notePanel_Health.TabStop = false;
            this.notePanel_Health.Text = "健  康:";
            // 
            // textEdit_CurRecTimeBinding
            // 
            this.textEdit_CurRecTimeBinding.EditValue = "";
            this.textEdit_CurRecTimeBinding.Location = new System.Drawing.Point(136, 40);
            this.textEdit_CurRecTimeBinding.Name = "textEdit_CurRecTimeBinding";
            this.textEdit_CurRecTimeBinding.Properties.AutoHeight = false;
            this.textEdit_CurRecTimeBinding.Size = new System.Drawing.Size(16, 8);
            this.textEdit_CurRecTimeBinding.TabIndex = 12;
            // 
            // textEdit_OrigStateBinding
            // 
            this.textEdit_OrigStateBinding.EditValue = "";
            this.textEdit_OrigStateBinding.Location = new System.Drawing.Point(136, 72);
            this.textEdit_OrigStateBinding.Name = "textEdit_OrigStateBinding";
            this.textEdit_OrigStateBinding.Properties.AutoHeight = false;
            this.textEdit_OrigStateBinding.Size = new System.Drawing.Size(8, 8);
            this.textEdit_OrigStateBinding.TabIndex = 11;
            // 
            // groupControl_FastSerMorning
            // 
            this.groupControl_FastSerMorning.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.groupControl_FastSerMorning.AppearanceCaption.Options.UseFont = true;
            this.groupControl_FastSerMorning.Controls.Add(this.groupControl_TimeStatusMorning);
            this.groupControl_FastSerMorning.Controls.Add(this.groupControl_NumberNameMorning);
            this.groupControl_FastSerMorning.Controls.Add(this.groupControl_GradeClassMorning);
            this.groupControl_FastSerMorning.Controls.Add(this.notePanel_GradeClassMorning);
            this.groupControl_FastSerMorning.Controls.Add(this.notePanel_TimeStatusMorning);
            this.groupControl_FastSerMorning.Controls.Add(this.notePanel_NumberNameMorning);
            this.groupControl_FastSerMorning.Controls.Add(this.notePanel1_SerCondMorning);
            this.groupControl_FastSerMorning.Dock = System.Windows.Forms.DockStyle.Top;
            this.groupControl_FastSerMorning.Location = new System.Drawing.Point(0, 0);
            this.groupControl_FastSerMorning.Name = "groupControl_FastSerMorning";
            this.groupControl_FastSerMorning.Size = new System.Drawing.Size(239, 312);
            this.groupControl_FastSerMorning.TabIndex = 7;
            this.groupControl_FastSerMorning.Text = "快速搜索";
            // 
            // groupControl_TimeStatusMorning
            // 
            this.groupControl_TimeStatusMorning.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.groupControl_TimeStatusMorning.AppearanceCaption.ForeColor = System.Drawing.Color.Black;
            this.groupControl_TimeStatusMorning.AppearanceCaption.Options.UseFont = true;
            this.groupControl_TimeStatusMorning.AppearanceCaption.Options.UseForeColor = true;
            this.groupControl_TimeStatusMorning.Controls.Add(this.dateEdit_SpecificDateMorning);
            this.groupControl_TimeStatusMorning.Controls.Add(this.notePanel_SpecificDateMorning);
            this.groupControl_TimeStatusMorning.Controls.Add(this.textEdit_EndTimeMorning);
            this.groupControl_TimeStatusMorning.Controls.Add(this.textEdit_BegTimeMorning);
            this.groupControl_TimeStatusMorning.Controls.Add(this.comboBoxEdit_TimeModeMorning);
            this.groupControl_TimeStatusMorning.Controls.Add(this.notePanel_TimeModeMorning);
            this.groupControl_TimeStatusMorning.Controls.Add(this.comboBoxEdit_Status);
            this.groupControl_TimeStatusMorning.Controls.Add(this.notePanel_Status);
            this.groupControl_TimeStatusMorning.Controls.Add(this.notePanel_BegTimeMorning);
            this.groupControl_TimeStatusMorning.Controls.Add(this.notePanel_EndTimeMorning);
            this.groupControl_TimeStatusMorning.Dock = System.Windows.Forms.DockStyle.Bottom;
            this.groupControl_TimeStatusMorning.Location = new System.Drawing.Point(2, -114);
            this.groupControl_TimeStatusMorning.Name = "groupControl_TimeStatusMorning";
            this.groupControl_TimeStatusMorning.Size = new System.Drawing.Size(235, 184);
            this.groupControl_TimeStatusMorning.TabIndex = 22;
            this.groupControl_TimeStatusMorning.Text = "指定搜索的时间和晨检状态";
            this.groupControl_TimeStatusMorning.Visible = false;
            // 
            // dateEdit_SpecificDateMorning
            // 
            this.dateEdit_SpecificDateMorning.EditValue = new System.DateTime(2005, 1, 31, 0, 0, 0, 0);
            this.dateEdit_SpecificDateMorning.Location = new System.Drawing.Point(104, 24);
            this.dateEdit_SpecificDateMorning.Name = "dateEdit_SpecificDateMorning";
            this.dateEdit_SpecificDateMorning.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.dateEdit_SpecificDateMorning.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton()});
            this.dateEdit_SpecificDateMorning.Size = new System.Drawing.Size(112, 20);
            this.dateEdit_SpecificDateMorning.TabIndex = 24;
            // 
            // notePanel_SpecificDateMorning
            // 
            this.notePanel_SpecificDateMorning.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel_SpecificDateMorning.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel_SpecificDateMorning.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel_SpecificDateMorning.ForeColor = System.Drawing.Color.Black;
            this.notePanel_SpecificDateMorning.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_SpecificDateMorning.Location = new System.Drawing.Point(16, 24);
            this.notePanel_SpecificDateMorning.MaxRows = 5;
            this.notePanel_SpecificDateMorning.Name = "notePanel_SpecificDateMorning";
            this.notePanel_SpecificDateMorning.ParentAutoHeight = true;
            this.notePanel_SpecificDateMorning.Size = new System.Drawing.Size(80, 22);
            this.notePanel_SpecificDateMorning.TabIndex = 23;
            this.notePanel_SpecificDateMorning.TabStop = false;
            this.notePanel_SpecificDateMorning.Text = "指定日期:";
            // 
            // textEdit_EndTimeMorning
            // 
            this.textEdit_EndTimeMorning.EditValue = "";
            this.textEdit_EndTimeMorning.Location = new System.Drawing.Point(104, 88);
            this.textEdit_EndTimeMorning.Name = "textEdit_EndTimeMorning";
            this.textEdit_EndTimeMorning.Properties.DisplayFormat.FormatString = "d";
            this.textEdit_EndTimeMorning.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
            this.textEdit_EndTimeMorning.Properties.EditValueChangedFiringMode = DevExpress.XtraEditors.Controls.EditValueChangedFiringMode.Buffered;
            this.textEdit_EndTimeMorning.Properties.Mask.EditMask = "yyyy-MM-dd";
            this.textEdit_EndTimeMorning.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.DateTime;
            this.textEdit_EndTimeMorning.Size = new System.Drawing.Size(112, 20);
            this.textEdit_EndTimeMorning.TabIndex = 22;
            // 
            // textEdit_BegTimeMorning
            // 
            this.textEdit_BegTimeMorning.EditValue = "";
            this.textEdit_BegTimeMorning.Location = new System.Drawing.Point(104, 56);
            this.textEdit_BegTimeMorning.Name = "textEdit_BegTimeMorning";
            this.textEdit_BegTimeMorning.Properties.DisplayFormat.FormatString = "d";
            this.textEdit_BegTimeMorning.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
            this.textEdit_BegTimeMorning.Properties.EditValueChangedFiringMode = DevExpress.XtraEditors.Controls.EditValueChangedFiringMode.Buffered;
            this.textEdit_BegTimeMorning.Properties.Mask.EditMask = "yyyy-MM-dd";
            this.textEdit_BegTimeMorning.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.DateTime;
            this.textEdit_BegTimeMorning.Size = new System.Drawing.Size(112, 20);
            this.textEdit_BegTimeMorning.TabIndex = 21;
            // 
            // comboBoxEdit_TimeModeMorning
            // 
            this.comboBoxEdit_TimeModeMorning.EditValue = "模糊时间";
            this.comboBoxEdit_TimeModeMorning.Location = new System.Drawing.Point(104, 120);
            this.comboBoxEdit_TimeModeMorning.Name = "comboBoxEdit_TimeModeMorning";
            this.comboBoxEdit_TimeModeMorning.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.comboBoxEdit_TimeModeMorning.Properties.Items.AddRange(new object[] {
            "模糊时间",
            "精确时间"});
            this.comboBoxEdit_TimeModeMorning.Size = new System.Drawing.Size(112, 20);
            this.comboBoxEdit_TimeModeMorning.TabIndex = 20;
            this.comboBoxEdit_TimeModeMorning.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit_TimeModeMorning_SelectedIndexChanged);
            // 
            // notePanel_TimeModeMorning
            // 
            this.notePanel_TimeModeMorning.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel_TimeModeMorning.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel_TimeModeMorning.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel_TimeModeMorning.ForeColor = System.Drawing.Color.Black;
            this.notePanel_TimeModeMorning.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_TimeModeMorning.Location = new System.Drawing.Point(16, 120);
            this.notePanel_TimeModeMorning.MaxRows = 5;
            this.notePanel_TimeModeMorning.Name = "notePanel_TimeModeMorning";
            this.notePanel_TimeModeMorning.ParentAutoHeight = true;
            this.notePanel_TimeModeMorning.Size = new System.Drawing.Size(80, 22);
            this.notePanel_TimeModeMorning.TabIndex = 19;
            this.notePanel_TimeModeMorning.TabStop = false;
            this.notePanel_TimeModeMorning.Text = "时间模式:";
            // 
            // comboBoxEdit_Status
            // 
            this.comboBoxEdit_Status.EditValue = "全部";
            this.comboBoxEdit_Status.Location = new System.Drawing.Point(104, 152);
            this.comboBoxEdit_Status.Name = "comboBoxEdit_Status";
            this.comboBoxEdit_Status.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.comboBoxEdit_Status.Properties.Items.AddRange(new object[] {
            "全部"});
            this.comboBoxEdit_Status.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
            this.comboBoxEdit_Status.Size = new System.Drawing.Size(112, 20);
            this.comboBoxEdit_Status.TabIndex = 18;
            this.comboBoxEdit_Status.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit_Status_SelectedIndexChanged);
            // 
            // notePanel_Status
            // 
            this.notePanel_Status.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel_Status.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel_Status.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel_Status.ForeColor = System.Drawing.Color.Black;
            this.notePanel_Status.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_Status.Location = new System.Drawing.Point(16, 152);
            this.notePanel_Status.MaxRows = 5;
            this.notePanel_Status.Name = "notePanel_Status";
            this.notePanel_Status.ParentAutoHeight = true;
            this.notePanel_Status.Size = new System.Drawing.Size(80, 22);
            this.notePanel_Status.TabIndex = 17;
            this.notePanel_Status.TabStop = false;
            this.notePanel_Status.Text = "晨检状态:";
            // 
            // notePanel_BegTimeMorning
            // 
            this.notePanel_BegTimeMorning.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel_BegTimeMorning.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel_BegTimeMorning.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel_BegTimeMorning.ForeColor = System.Drawing.Color.Black;
            this.notePanel_BegTimeMorning.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_BegTimeMorning.Location = new System.Drawing.Point(16, 56);
            this.notePanel_BegTimeMorning.MaxRows = 5;
            this.notePanel_BegTimeMorning.Name = "notePanel_BegTimeMorning";
            this.notePanel_BegTimeMorning.ParentAutoHeight = true;
            this.notePanel_BegTimeMorning.Size = new System.Drawing.Size(80, 22);
            this.notePanel_BegTimeMorning.TabIndex = 14;
            this.notePanel_BegTimeMorning.TabStop = false;
            this.notePanel_BegTimeMorning.Text = "起始时间:";
            // 
            // notePanel_EndTimeMorning
            // 
            this.notePanel_EndTimeMorning.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel_EndTimeMorning.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel_EndTimeMorning.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel_EndTimeMorning.ForeColor = System.Drawing.Color.Black;
            this.notePanel_EndTimeMorning.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_EndTimeMorning.Location = new System.Drawing.Point(16, 88);
            this.notePanel_EndTimeMorning.MaxRows = 5;
            this.notePanel_EndTimeMorning.Name = "notePanel_EndTimeMorning";
            this.notePanel_EndTimeMorning.ParentAutoHeight = true;
            this.notePanel_EndTimeMorning.Size = new System.Drawing.Size(80, 22);
            this.notePanel_EndTimeMorning.TabIndex = 13;
            this.notePanel_EndTimeMorning.TabStop = false;
            this.notePanel_EndTimeMorning.Text = "结束时间:";
            // 
            // groupControl_NumberNameMorning
            // 
            this.groupControl_NumberNameMorning.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.groupControl_NumberNameMorning.AppearanceCaption.ForeColor = System.Drawing.Color.Black;
            this.groupControl_NumberNameMorning.AppearanceCaption.Options.UseFont = true;
            this.groupControl_NumberNameMorning.AppearanceCaption.Options.UseForeColor = true;
            this.groupControl_NumberNameMorning.Controls.Add(this.textEdit_NumberMorning);
            this.groupControl_NumberNameMorning.Controls.Add(this.textEdit_NameMorning);
            this.groupControl_NumberNameMorning.Controls.Add(this.notePanel_NumberMorning);
            this.groupControl_NumberNameMorning.Controls.Add(this.notePanel_NameMorning);
            this.groupControl_NumberNameMorning.Dock = System.Windows.Forms.DockStyle.Bottom;
            this.groupControl_NumberNameMorning.Location = new System.Drawing.Point(2, 70);
            this.groupControl_NumberNameMorning.Name = "groupControl_NumberNameMorning";
            this.groupControl_NumberNameMorning.Size = new System.Drawing.Size(235, 120);
            this.groupControl_NumberNameMorning.TabIndex = 21;
            this.groupControl_NumberNameMorning.Text = "指定搜索的学号和姓名";
            this.groupControl_NumberNameMorning.Visible = false;
            // 
            // textEdit_NumberMorning
            // 
            this.textEdit_NumberMorning.EditValue = "";
            this.textEdit_NumberMorning.Location = new System.Drawing.Point(104, 72);
            this.textEdit_NumberMorning.Name = "textEdit_NumberMorning";
            this.textEdit_NumberMorning.Size = new System.Drawing.Size(112, 20);
            this.textEdit_NumberMorning.TabIndex = 14;
            // 
            // textEdit_NameMorning
            // 
            this.textEdit_NameMorning.EditValue = "";
            this.textEdit_NameMorning.Location = new System.Drawing.Point(104, 32);
            this.textEdit_NameMorning.Name = "textEdit_NameMorning";
            this.textEdit_NameMorning.Size = new System.Drawing.Size(112, 20);
            this.textEdit_NameMorning.TabIndex = 13;
            // 
            // notePanel_NumberMorning
            // 
            this.notePanel_NumberMorning.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel_NumberMorning.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel_NumberMorning.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel_NumberMorning.ForeColor = System.Drawing.Color.Black;
            this.notePanel_NumberMorning.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_NumberMorning.Location = new System.Drawing.Point(16, 72);
            this.notePanel_NumberMorning.MaxRows = 5;
            this.notePanel_NumberMorning.Name = "notePanel_NumberMorning";
            this.notePanel_NumberMorning.ParentAutoHeight = true;
            this.notePanel_NumberMorning.Size = new System.Drawing.Size(80, 22);
            this.notePanel_NumberMorning.TabIndex = 10;
            this.notePanel_NumberMorning.TabStop = false;
            this.notePanel_NumberMorning.Text = "  学  号:";
            // 
            // notePanel_NameMorning
            // 
            this.notePanel_NameMorning.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel_NameMorning.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel_NameMorning.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel_NameMorning.ForeColor = System.Drawing.Color.Black;
            this.notePanel_NameMorning.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_NameMorning.Location = new System.Drawing.Point(16, 32);
            this.notePanel_NameMorning.MaxRows = 5;
            this.notePanel_NameMorning.Name = "notePanel_NameMorning";
            this.notePanel_NameMorning.ParentAutoHeight = true;
            this.notePanel_NameMorning.Size = new System.Drawing.Size(80, 22);
            this.notePanel_NameMorning.TabIndex = 9;
            this.notePanel_NameMorning.TabStop = false;
            this.notePanel_NameMorning.Text = "  姓  名:";
            // 
            // groupControl_GradeClassMorning
            // 
            this.groupControl_GradeClassMorning.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.groupControl_GradeClassMorning.AppearanceCaption.Options.UseFont = true;
            this.groupControl_GradeClassMorning.Controls.Add(this.comboBoxEdit_ClassMorning);
            this.groupControl_GradeClassMorning.Controls.Add(this.comboBoxEdit_GradeMorning);
            this.groupControl_GradeClassMorning.Controls.Add(this.notePanel1_GradeMorning);
            this.groupControl_GradeClassMorning.Controls.Add(this.notePanel1_ClassMorning);
            this.groupControl_GradeClassMorning.Dock = System.Windows.Forms.DockStyle.Bottom;
            this.groupControl_GradeClassMorning.Location = new System.Drawing.Point(2, 190);
            this.groupControl_GradeClassMorning.Name = "groupControl_GradeClassMorning";
            this.groupControl_GradeClassMorning.Size = new System.Drawing.Size(235, 120);
            this.groupControl_GradeClassMorning.TabIndex = 20;
            this.groupControl_GradeClassMorning.Text = "指定搜索的年级和班级";
            this.groupControl_GradeClassMorning.Visible = false;
            // 
            // comboBoxEdit_ClassMorning
            // 
            this.comboBoxEdit_ClassMorning.EditValue = "全部";
            this.comboBoxEdit_ClassMorning.Location = new System.Drawing.Point(104, 72);
            this.comboBoxEdit_ClassMorning.Name = "comboBoxEdit_ClassMorning";
            this.comboBoxEdit_ClassMorning.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.comboBoxEdit_ClassMorning.Properties.Items.AddRange(new object[] {
            "全部"});
            this.comboBoxEdit_ClassMorning.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
            this.comboBoxEdit_ClassMorning.Size = new System.Drawing.Size(112, 20);
            this.comboBoxEdit_ClassMorning.TabIndex = 18;
            this.comboBoxEdit_ClassMorning.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit_ClassMorning_SelectedIndexChanged);
            // 
            // comboBoxEdit_GradeMorning
            // 
            this.comboBoxEdit_GradeMorning.EditValue = "全部";
            this.comboBoxEdit_GradeMorning.Location = new System.Drawing.Point(104, 32);
            this.comboBoxEdit_GradeMorning.Name = "comboBoxEdit_GradeMorning";
            this.comboBoxEdit_GradeMorning.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.comboBoxEdit_GradeMorning.Properties.Items.AddRange(new object[] {
            "全部"});
            this.comboBoxEdit_GradeMorning.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
            this.comboBoxEdit_GradeMorning.Size = new System.Drawing.Size(112, 20);
            this.comboBoxEdit_GradeMorning.TabIndex = 17;
            this.comboBoxEdit_GradeMorning.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit_GradeMorning_SelectedIndexChanged);
            // 
            // notePanel1_GradeMorning
            // 
            this.notePanel1_GradeMorning.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel1_GradeMorning.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel1_GradeMorning.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel1_GradeMorning.ForeColor = System.Drawing.Color.Black;
            this.notePanel1_GradeMorning.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel1_GradeMorning.Location = new System.Drawing.Point(16, 32);
            this.notePanel1_GradeMorning.MaxRows = 5;
            this.notePanel1_GradeMorning.Name = "notePanel1_GradeMorning";
            this.notePanel1_GradeMorning.ParentAutoHeight = true;
            this.notePanel1_GradeMorning.Size = new System.Drawing.Size(80, 22);
            this.notePanel1_GradeMorning.TabIndex = 4;
            this.notePanel1_GradeMorning.TabStop = false;
            this.notePanel1_GradeMorning.Text = "  年  级:";
            // 
            // notePanel1_ClassMorning
            // 
            this.notePanel1_ClassMorning.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel1_ClassMorning.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel1_ClassMorning.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel1_ClassMorning.ForeColor = System.Drawing.Color.Black;
            this.notePanel1_ClassMorning.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel1_ClassMorning.Location = new System.Drawing.Point(16, 72);
            this.notePanel1_ClassMorning.MaxRows = 5;
            this.notePanel1_ClassMorning.Name = "notePanel1_ClassMorning";
            this.notePanel1_ClassMorning.ParentAutoHeight = true;
            this.notePanel1_ClassMorning.Size = new System.Drawing.Size(80, 22);
            this.notePanel1_ClassMorning.TabIndex = 16;
            this.notePanel1_ClassMorning.TabStop = false;
            this.notePanel1_ClassMorning.Text = "  班  级:";
            // 
            // notePanel_GradeClassMorning
            // 
            this.notePanel_GradeClassMorning.BackColor = System.Drawing.Color.LawnGreen;
            this.notePanel_GradeClassMorning.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel_GradeClassMorning.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel_GradeClassMorning.ForeColor = System.Drawing.Color.Black;
            this.notePanel_GradeClassMorning.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_GradeClassMorning.Location = new System.Drawing.Point(16, 48);
            this.notePanel_GradeClassMorning.MaxRows = 5;
            this.notePanel_GradeClassMorning.Name = "notePanel_GradeClassMorning";
            this.notePanel_GradeClassMorning.ParentAutoHeight = true;
            this.notePanel_GradeClassMorning.Size = new System.Drawing.Size(200, 22);
            this.notePanel_GradeClassMorning.TabIndex = 19;
            this.notePanel_GradeClassMorning.TabStop = false;
            this.notePanel_GradeClassMorning.Text = "年级和班级:";
            this.notePanel_GradeClassMorning.Click += new System.EventHandler(this.notePanel_GradeClass_Click_1);
            // 
            // notePanel_TimeStatusMorning
            // 
            this.notePanel_TimeStatusMorning.BackColor = System.Drawing.Color.LawnGreen;
            this.notePanel_TimeStatusMorning.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel_TimeStatusMorning.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel_TimeStatusMorning.ForeColor = System.Drawing.Color.Black;
            this.notePanel_TimeStatusMorning.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_TimeStatusMorning.Location = new System.Drawing.Point(16, 98);
            this.notePanel_TimeStatusMorning.MaxRows = 5;
            this.notePanel_TimeStatusMorning.Name = "notePanel_TimeStatusMorning";
            this.notePanel_TimeStatusMorning.ParentAutoHeight = true;
            this.notePanel_TimeStatusMorning.Size = new System.Drawing.Size(200, 22);
            this.notePanel_TimeStatusMorning.TabIndex = 18;
            this.notePanel_TimeStatusMorning.TabStop = false;
            this.notePanel_TimeStatusMorning.Text = "时间和状态:";
            this.notePanel_TimeStatusMorning.Click += new System.EventHandler(this.notePanel_TimeStatus_Click_1);
            // 
            // notePanel_NumberNameMorning
            // 
            this.notePanel_NumberNameMorning.BackColor = System.Drawing.Color.LawnGreen;
            this.notePanel_NumberNameMorning.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel_NumberNameMorning.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel_NumberNameMorning.ForeColor = System.Drawing.Color.Black;
            this.notePanel_NumberNameMorning.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_NumberNameMorning.Location = new System.Drawing.Point(16, 74);
            this.notePanel_NumberNameMorning.MaxRows = 5;
            this.notePanel_NumberNameMorning.Name = "notePanel_NumberNameMorning";
            this.notePanel_NumberNameMorning.ParentAutoHeight = true;
            this.notePanel_NumberNameMorning.Size = new System.Drawing.Size(200, 22);
            this.notePanel_NumberNameMorning.TabIndex = 17;
            this.notePanel_NumberNameMorning.TabStop = false;
            this.notePanel_NumberNameMorning.Text = "学号和姓名:";
            this.notePanel_NumberNameMorning.Click += new System.EventHandler(this.notePanel_NumberName_Click_1);
            // 
            // notePanel1_SerCondMorning
            // 
            this.notePanel1_SerCondMorning.BackColor = System.Drawing.Color.LightGoldenrodYellow;
            this.notePanel1_SerCondMorning.Dock = System.Windows.Forms.DockStyle.Top;
            this.notePanel1_SerCondMorning.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.notePanel1_SerCondMorning.ForeColor = System.Drawing.Color.OrangeRed;
            this.notePanel1_SerCondMorning.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel1_SerCondMorning.Location = new System.Drawing.Point(2, 22);
            this.notePanel1_SerCondMorning.MaxRows = 5;
            this.notePanel1_SerCondMorning.Name = "notePanel1_SerCondMorning";
            this.notePanel1_SerCondMorning.ParentAutoHeight = true;
            this.notePanel1_SerCondMorning.Size = new System.Drawing.Size(235, 23);
            this.notePanel1_SerCondMorning.TabIndex = 5;
            this.notePanel1_SerCondMorning.TabStop = false;
            this.notePanel1_SerCondMorning.Text = "您要搜索的条件?";
            // 
            // gridControl_MorningInfo
            // 
            this.gridControl_MorningInfo.Dock = System.Windows.Forms.DockStyle.Fill;
            this.gridControl_MorningInfo.Location = new System.Drawing.Point(0, 40);
            this.gridControl_MorningInfo.MainView = this.gridView1;
            this.gridControl_MorningInfo.Name = "gridControl_MorningInfo";
            this.gridControl_MorningInfo.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
            this.repositoryItemComboBox_Status});
            this.gridControl_MorningInfo.Size = new System.Drawing.Size(522, 471);
            this.gridControl_MorningInfo.TabIndex = 7;
            this.gridControl_MorningInfo.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_MorningInfo;
            this.gridView1.GroupFooterShowMode = DevExpress.XtraGrid.Views.Grid.GroupFooterShowMode.VisibleAlways;
            this.gridView1.Name = "gridView1";
            this.gridView1.OptionsCustomization.AllowFilter = false;
            this.gridView1.OptionsView.ShowFilterPanelMode = DevExpress.XtraGrid.Views.Base.ShowFilterPanelMode.Never;
            this.gridView1.OptionsView.ShowGroupPanel = false;
            this.gridView1.RowCellStyle += new DevExpress.XtraGrid.Views.Grid.RowCellStyleEventHandler(this.gridView1_RowCellStyle);
            this.gridView1.FocusedRowChanged += new DevExpress.XtraGrid.Views.Base.FocusedRowChangedEventHandler(this.gridView1_FocusedRowChanged);
            this.gridView1.CellValueChanged += new DevExpress.XtraGrid.Views.Base.CellValueChangedEventHandler(this.gridView1_CellValueChanged);
            // 
            // 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.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
            this.gridColumn1.FieldName = "info_stuOrderNumber";
            this.gridColumn1.Name = "gridColumn1";
            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.OptionsFilter.AllowAutoFilter = false;
            this.gridColumn1.OptionsFilter.AllowFilter = false;
            this.gridColumn1.OptionsFilter.ImmediateUpdateAutoFilter = false;
            this.gridColumn1.SortMode = DevExpress.XtraGrid.ColumnSortMode.Value;
            this.gridColumn1.Visible = true;
            this.gridColumn1.VisibleIndex = 0;
            this.gridColumn1.Width = 76;
            // 
            // 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_className";
            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.OptionsFilter.AllowAutoFilter = false;
            this.gridColumn2.OptionsFilter.ImmediateUpdateAutoFilter = false;
            this.gridColumn2.Visible = true;
            this.gridColumn2.VisibleIndex = 1;
            this.gridColumn2.Width = 65;
            // 
            // 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_stuNumber";
            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.OptionsFilter.AllowAutoFilter = false;
            this.gridColumn3.OptionsFilter.ImmediateUpdateAutoFilter = false;
            this.gridColumn3.Visible = true;
            this.gridColumn3.VisibleIndex = 2;
            this.gridColumn3.Width = 65;
            // 
            // 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_stuName";
            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.OptionsFilter.AllowAutoFilter = false;
            this.gridColumn4.OptionsFilter.ImmediateUpdateAutoFilter = false;
            this.gridColumn4.Visible = true;
            this.gridColumn4.VisibleIndex = 3;
            this.gridColumn4.Width = 66;
            // 
            // 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.DisplayFormat.FormatString = "yyyy-MM-dd HH:mm:ss";
            this.gridColumn5.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
            this.gridColumn5.FieldName = "flow_stuFlowEnterDate";
            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.OptionsFilter.AllowAutoFilter = false;
            this.gridColumn5.OptionsFilter.ImmediateUpdateAutoFilter = false;
            this.gridColumn5.Visible = true;
            this.gridColumn5.VisibleIndex = 4;
            this.gridColumn5.Width = 162;
            // 
            // 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.ColumnEdit = this.repositoryItemComboBox_Status;
            this.gridColumn6.FieldName = "state_flowStateName";
            this.gridColumn6.Name = "gridColumn6";
            this.gridColumn6.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn6.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
            this.gridColumn6.OptionsColumn.FixedWidth = true;
            this.gridColumn6.OptionsColumn.ShowInCustomizationForm = false;
            this.gridColumn6.OptionsFilter.AllowAutoFilter = false;
            this.gridColumn6.OptionsFilter.ImmediateUpdateAutoFilter = false;
            this.gridColumn6.Visible = true;
            this.gridColumn6.VisibleIndex = 5;
            // 
            // repositoryItemComboBox_Status
            // 
            this.repositoryItemComboBox_Status.AutoHeight = false;
            this.repositoryItemComboBox_Status.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.repositoryItemComboBox_Status.Items.AddRange(new object[] {
            "健康",
            "服药",
            "观察",
            "缺席"});
            this.repositoryItemComboBox_Status.Name = "repositoryItemComboBox_Status";
            this.repositoryItemComboBox_Status.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
            // 
            // panelControl1
            // 
            this.panelControl1.Controls.Add(this.simpleButton_PrintMorning);
            this.panelControl1.Controls.Add(this.simpleButton_SearchMorning);
            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(522, 40);
            this.panelControl1.TabIndex = 6;
            // 
            // simpleButton_PrintMorning
            // 
            this.simpleButton_PrintMorning.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.simpleButton_PrintMorning.Appearance.ForeColor = System.Drawing.Color.DarkMagenta;
            this.simpleButton_PrintMorning.Appearance.Options.UseFont = true;
            this.simpleButton_PrintMorning.Appearance.Options.UseForeColor = true;
            this.simpleButton_PrintMorning.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton_PrintMorning.Image")));
            this.simpleButton_PrintMorning.Location = new System.Drawing.Point(120, 8);
            this.simpleButton_PrintMorning.Name = "simpleButton_PrintMorning";
            this.simpleButton_PrintMorning.Size = new System.Drawing.Size(92, 26);
            this.simpleButton_PrintMorning.TabIndex = 5;
            this.simpleButton_PrintMorning.Tag = 4;
            this.simpleButton_PrintMorning.Text = "报  表";
            this.simpleButton_PrintMorning.Click += new System.EventHandler(this.simpleButton_PrintMorning_Click);
            // 
            // simpleButton_SearchMorning
            // 
            this.simpleButton_SearchMorning.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.simpleButton_SearchMorning.Appearance.ForeColor = System.Drawing.Color.DarkMagenta;
            this.simpleButton_SearchMorning.Appearance.Options.UseFont = true;
            this.simpleButton_SearchMorning.Appearance.Options.UseForeColor = true;
            this.simpleButton_SearchMorning.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton_SearchMorning.Image")));
            this.simpleButton_SearchMorning.Location = new System.Drawing.Point(16, 8);
            this.simpleButton_SearchMorning.Name = "simpleButton_SearchMorning";
            this.simpleButton_SearchMorning.Size = new System.Drawing.Size(92, 26);
            this.simpleButton_SearchMorning.TabIndex = 2;
            this.simpleButton_SearchMorning.Tag = 4;
            this.simpleButton_SearchMorning.Text = "搜  索";
            this.simpleButton_SearchMorning.Click += new System.EventHandler(this.simpleButton_SearchMorning_Click);
            // 
            // xtraTabPage_BackHomeCheck
            // 
            this.xtraTabPage_BackHomeCheck.Appearance.PageClient.BackColor = System.Drawing.Color.WhiteSmoke;
            this.xtraTabPage_BackHomeCheck.Appearance.PageClient.Options.UseBackColor = true;
            this.xtraTabPage_BackHomeCheck.Controls.Add(this.splitContainerControl2);
            this.xtraTabPage_BackHomeCheck.Name = "xtraTabPage_BackHomeCheck";
            this.xtraTabPage_BackHomeCheck.Size = new System.Drawing.Size(766, 511);
            this.xtraTabPage_BackHomeCheck.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);
            this.splitContainerControl2.Panel1.Controls.Add(this.groupControl_FastSerBack);
            this.splitContainerControl2.Panel1.Text = "splitContainerControl2_Panel1";
            this.splitContainerControl2.Panel2.Controls.Add(this.gridControl_BackInfo);
            this.splitContainerControl2.Panel2.Controls.Add(this.panelControl2);
            this.splitContainerControl2.Panel2.Text = "splitContainerControl2_Panel2";
            this.splitContainerControl2.Size = new System.Drawing.Size(766, 511);
            this.splitContainerControl2.SplitterPosition = 238;
            this.splitContainerControl2.TabIndex = 0;
            this.splitContainerControl2.Text = "splitContainerControl2";
            // 
            // groupControl1
            // 
            this.groupControl1.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.groupControl1.AppearanceCaption.Options.UseFont = true;
            this.groupControl1.Controls.Add(this.textEdit_ShouldGo);
            this.groupControl1.Controls.Add(this.notePanel_ShouldGo);
            this.groupControl1.Controls.Add(this.textEdit_HasnotGone);
            this.groupControl1.Controls.Add(this.notePanel_HasnotGone);
            this.groupControl1.Controls.Add(this.textEdit_HasGone);
            this.groupControl1.Controls.Add(this.notePanel_HasGone);
            this.groupControl1.Dock = System.Windows.Forms.DockStyle.Top;
            this.groupControl1.Location = new System.Drawing.Point(0, 320);
            this.groupControl1.Name = "groupControl1";
            this.groupControl1.Size = new System.Drawing.Size(238, 136);
            this.groupControl1.TabIndex = 9;
            this.groupControl1.Text = "晚接信息统计";
            // 
            // textEdit_ShouldGo
            // 
            this.textEdit_ShouldGo.EditValue = "";
            this.textEdit_ShouldGo.Location = new System.Drawing.Point(104, 96);
            this.textEdit_ShouldGo.Name = "textEdit_ShouldGo";
            this.textEdit_ShouldGo.Properties.Appearance.ForeColor = System.Drawing.Color.Navy;
            this.textEdit_ShouldGo.Properties.Appearance.Options.UseForeColor = true;
            this.textEdit_ShouldGo.Size = new System.Drawing.Size(120, 20);
            this.textEdit_ShouldGo.TabIndex = 10;
            // 
            // notePanel_ShouldGo
            // 
            this.notePanel_ShouldGo.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel_ShouldGo.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel_ShouldGo.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel_ShouldGo.ForeColor = System.Drawing.Color.Black;
            this.notePanel_ShouldGo.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_ShouldGo.Location = new System.Drawing.Point(16, 96);
            this.notePanel_ShouldGo.MaxRows = 5;
            this.notePanel_ShouldGo.Name = "notePanel_ShouldGo";
            this.notePanel_ShouldGo.ParentAutoHeight = true;
            this.notePanel_ShouldGo.Size = new System.Drawing.Size(80, 22);
            this.notePanel_ShouldGo.TabIndex = 9;
            this.notePanel_ShouldGo.TabStop = false;
            this.notePanel_ShouldGo.Text = " 应接走:";
            // 
            // textEdit_HasnotGone
            // 
            this.textEdit_HasnotGone.EditValue = "";
            this.textEdit_HasnotGone.Location = new System.Drawing.Point(104, 64);
            this.textEdit_HasnotGone.Name = "textEdit_HasnotGone";
            this.textEdit_HasnotGone.Properties.Appearance.ForeColor = System.Drawing.Color.Navy;
            this.textEdit_HasnotGone.Properties.Appearance.Options.UseForeColor = true;
            this.textEdit_HasnotGone.Size = new System.Drawing.Size(120, 20);
            this.textEdit_HasnotGone.TabIndex = 8;
            // 
            // notePanel_HasnotGone
            // 
            this.notePanel_HasnotGone.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel_HasnotGone.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel_HasnotGone.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel_HasnotGone.ForeColor = System.Drawing.Color.Black;
            this.notePanel_HasnotGone.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_HasnotGone.Location = new System.Drawing.Point(16, 64);
            this.notePanel_HasnotGone.MaxRows = 5;
            this.notePanel_HasnotGone.Name = "notePanel_HasnotGone";
            this.notePanel_HasnotGone.ParentAutoHeight = true;
            this.notePanel_HasnotGone.Size = new System.Drawing.Size(80, 22);
            this.notePanel_HasnotGone.TabIndex = 7;
            this.notePanel_HasnotGone.TabStop = false;
            this.notePanel_HasnotGone.Text = " 未接走:";
            // 
            // textEdit_HasGone
            // 
            this.textEdit_HasGone.EditValue = "";
            this.textEdit_HasGone.Location = new System.Drawing.Point(104, 32);
            this.textEdit_HasGone.Name = "textEdit_HasGone";
            this.textEdit_HasGone.Properties.Appearance.ForeColor = System.Drawing.Color.Navy;
            this.textEdit_HasGone.Properties.Appearance.Options.UseForeColor = true;
            this.textEdit_HasGone.Size = new System.Drawing.Size(120, 20);
            this.textEdit_HasGone.TabIndex = 6;
            // 
            // notePanel_HasGone
            // 
            this.notePanel_HasGone.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel_HasGone.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel_HasGone.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel_HasGone.ForeColor = System.Drawing.Color.Black;
            this.notePanel_HasGone.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_HasGone.Location = new System.Drawing.Point(16, 32);
            this.notePanel_HasGone.MaxRows = 5;
            this.notePanel_HasGone.Name = "notePanel_HasGone";
            this.notePanel_HasGone.ParentAutoHeight = true;
            this.notePanel_HasGone.Size = new System.Drawing.Size(80, 22);
            this.notePanel_HasGone.TabIndex = 5;
            this.notePanel_HasGone.TabStop = false;
            this.notePanel_HasGone.Text = " 已接走:";
            // 
            // groupControl_FastSerBack
            // 
            this.groupControl_FastSerBack.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.groupControl_FastSerBack.AppearanceCaption.Options.UseFont = true;
            this.groupControl_FastSerBack.Controls.Add(this.groupControl_TimeCondBack);
            this.groupControl_FastSerBack.Controls.Add(this.groupControl_NumberNameBack);
            this.groupControl_FastSerBack.Controls.Add(this.groupControl_GradeClassBack);
            this.groupControl_FastSerBack.Controls.Add(this.notePanel_GradeClassBack);
            this.groupControl_FastSerBack.Controls.Add(this.notePanel_TimeConBack);
            this.groupControl_FastSerBack.Controls.Add(this.notePanel_NumberNameBack);
            this.groupControl_FastSerBack.Controls.Add(this.notePanel_SerCondBack);
            this.groupControl_FastSerBack.Dock = System.Windows.Forms.DockStyle.Top;
            this.groupControl_FastSerBack.Location = new System.Drawing.Point(0, 0);
            this.groupControl_FastSerBack.Name = "groupControl_FastSerBack";
            this.groupControl_FastSerBack.Size = new System.Drawing.Size(238, 320);
            this.groupControl_FastSerBack.TabIndex = 8;
            this.groupControl_FastSerBack.Text = "快速搜索";
            // 
            // groupControl_TimeCondBack
            // 
            this.groupControl_TimeCondBack.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.groupControl_TimeCondBack.AppearanceCaption.ForeColor = System.Drawing.Color.Black;
            this.groupControl_TimeCondBack.AppearanceCaption.Options.UseFont = true;
            this.groupControl_TimeCondBack.AppearanceCaption.Options.UseForeColor = true;
            this.groupControl_TimeCondBack.Controls.Add(this.dateEdit_SpecificDateBack);
            this.groupControl_TimeCondBack.Controls.Add(this.notePanel_SpecificDateBack);
            this.groupControl_TimeCondBack.Controls.Add(this.comboBoxEdit_TimeModeBack);
            this.groupControl_TimeCondBack.Controls.Add(this.notePanel_TimeModeBack);
            this.groupControl_TimeCondBack.Controls.Add(this.textEdit_EndTimeBack);
            this.groupControl_TimeCondBack.Controls.Add(this.textEdit_BegTimeBack);
            this.groupControl_TimeCondBack.Controls.Add(this.comboBoxEdit_BackCond);
            this.groupControl_TimeCondBack.Controls.Add(this.notePanel_BackCond);
            this.groupControl_TimeCondBack.Controls.Add(this.notePanel_BegTimeBack);
            this.groupControl_TimeCondBack.Controls.Add(this.notePanel_EndTimeBack);
            this.groupControl_TimeCondBack.Dock = System.Windows.Forms.DockStyle.Bottom;
            this.groupControl_TimeCondBack.Location = new System.Drawing.Point(2, -106);
            this.groupControl_TimeCondBack.Name = "groupControl_TimeCondBack";
            this.groupControl_TimeCondBack.Size = new System.Drawing.Size(234, 184);
            this.groupControl_TimeCondBack.TabIndex = 22;
            this.groupControl_TimeCondBack.Text = "指定搜索的时间和晚接情况";
            this.groupControl_TimeCondBack.Visible = false;
            // 
            // dateEdit_SpecificDateBack
            // 
            this.dateEdit_SpecificDateBack.EditValue = new System.DateTime(2005, 1, 31, 0, 0, 0, 0);
            this.dateEdit_SpecificDateBack.Location = new System.Drawing.Point(104, 24);
            this.dateEdit_SpecificDateBack.Name = "dateEdit_SpecificDateBack";
            this.dateEdit_SpecificDateBack.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.dateEdit_SpecificDateBack.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton()});
            this.dateEdit_SpecificDateBack.Size = new System.Drawing.Size(112, 20);
            this.dateEdit_SpecificDateBack.TabIndex = 24;
            // 
            // notePanel_SpecificDateBack
            // 
            this.notePanel_SpecificDateBack.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel_SpecificDateBack.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel_SpecificDateBack.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel_SpecificDateBack.ForeColor = System.Drawing.Color.Black;
            this.notePanel_SpecificDateBack.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_SpecificDateBack.Location = new System.Drawing.Point(16, 24);
            this.notePanel_SpecificDateBack.MaxRows = 5;
            this.notePanel_SpecificDateBack.Name = "notePanel_SpecificDateBack";
            this.notePanel_SpecificDateBack.ParentAutoHeight = true;
            this.notePanel_SpecificDateBack.Size = new System.Drawing.Size(80, 22);
            this.notePanel_SpecificDateBack.TabIndex = 23;
            this.notePanel_SpecificDateBack.TabStop = false;
            this.notePanel_SpecificDateBack.Text = "指定日期:";
            // 
            // comboBoxEdit_TimeModeBack
            // 
            this.comboBoxEdit_TimeModeBack.EditValue = "模糊时间";
            this.comboBoxEdit_TimeModeBack.Location = new System.Drawing.Point(104, 120);
            this.comboBoxEdit_TimeModeBack.Name = "comboBoxEdit_TimeModeBack";
            this.comboBoxEdit_TimeModeBack.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.comboBoxEdit_TimeModeBack.Properties.Items.AddRange(new object[] {
            "模糊时间",
            "精确时间"});
            this.comboBoxEdit_TimeModeBack.Size = new System.Drawing.Size(112, 20);
            this.comboBoxEdit_TimeModeBack.TabIndex = 22;
            this.comboBoxEdit_TimeModeBack.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit_TimeModeBack_SelectedIndexChanged);
            // 
            // notePanel_TimeModeBack
            // 
            this.notePanel_TimeModeBack.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel_TimeModeBack.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel_TimeModeBack.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel_TimeModeBack.ForeColor = System.Drawing.Color.Black;
            this.notePanel_TimeModeBack.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_TimeModeBack.Location = new System.Drawing.Point(16, 120);
            this.notePanel_TimeModeBack.MaxRows = 5;
            this.notePanel_TimeModeBack.Name = "notePanel_TimeModeBack";
            this.notePanel_TimeModeBack.ParentAutoHeight = true;
            this.notePanel_TimeModeBack.Size = new System.Drawing.Size(80, 22);
            this.notePanel_TimeModeBack.TabIndex = 21;
            this.notePanel_TimeModeBack.TabStop = false;
            this.notePanel_TimeModeBack.Text = "时间模式";
            // 
            // textEdit_EndTimeBack
            // 
            this.textEdit_EndTimeBack.EditValue = "";
            this.textEdit_EndTimeBack.Location = new System.Drawing.Point(104, 88);
            this.textEdit_EndTimeBack.Name = "textEdit_EndTimeBack";
            this.textEdit_EndTimeBack.Properties.DisplayFormat.FormatString = "d";
            this.textEdit_EndTimeBack.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
            this.textEdit_EndTimeBack.Properties.EditValueChangedFiringMode = DevExpress.XtraEditors.Controls.EditValueChangedFiringMode.Buffered;
            this.textEdit_EndTimeBack.Properties.Mask.EditMask = "d";
            this.textEdit_EndTimeBack.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.DateTime;
            this.textEdit_EndTimeBack.Size = new System.Drawing.Size(112, 20);
            this.textEdit_EndTimeBack.TabIndex = 20;
            // 
            // textEdit_BegTimeBack
            // 
            this.textEdit_BegTimeBack.EditValue = "";
            this.textEdit_BegTimeBack.Location = new System.Drawing.Point(104, 56);
            this.textEdit_BegTimeBack.Name = "textEdit_BegTimeBack";
            this.textEdit_BegTimeBack.Properties.DisplayFormat.FormatString = "d";
            this.textEdit_BegTimeBack.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
            this.textEdit_BegTimeBack.Properties.EditValueChangedFiringMode = DevExpress.XtraEditors.Controls.EditValueChangedFiringMode.Buffered;
            this.textEdit_BegTimeBack.Properties.Mask.EditMask = "d";
            this.textEdit_BegTimeBack.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.DateTime;
            this.textEdit_BegTimeBack.Size = new System.Drawing.Size(112, 20);
            this.textEdit_BegTimeBack.TabIndex = 19;
            // 
            // comboBoxEdit_BackCond
            // 
            this.comboBoxEdit_BackCond.EditValue = "已接走";
            this.comboBoxEdit_BackCond.Location = new System.Drawing.Point(104, 152);
            this.comboBoxEdit_BackCond.Name = "comboBoxEdit_BackCond";
            this.comboBoxEdit_BackCond.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.comboBoxEdit_BackCond.Properties.Items.AddRange(new object[] {
            "已接走",
            "未接走"});
            this.comboBoxEdit_BackCond.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
            this.comboBoxEdit_BackCond.Size = new System.Drawing.Size(112, 20);
            this.comboBoxEdit_BackCond.TabIndex = 18;
            this.comboBoxEdit_BackCond.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit_BackCond_SelectedIndexChanged);
            // 
            // notePanel_BackCond
            // 
            this.notePanel_BackCond.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel_BackCond.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel_BackCond.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel_BackCond.ForeColor = System.Drawing.Color.Black;
            this.notePanel_BackCond.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_BackCond.Location = new System.Drawing.Point(16, 152);
            this.notePanel_BackCond.MaxRows = 5;
            this.notePanel_BackCond.Name = "notePanel_BackCond";
            this.notePanel_BackCond.ParentAutoHeight = true;
            this.notePanel_BackCond.Size = new System.Drawing.Size(80, 22);
            this.notePanel_BackCond.TabIndex = 17;
            this.notePanel_BackCond.TabStop = false;
            this.notePanel_BackCond.Text = "晚接情况:";
            // 
            // notePanel_BegTimeBack
            // 
            this.notePanel_BegTimeBack.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel_BegTimeBack.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel_BegTimeBack.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel_BegTimeBack.ForeColor = System.Drawing.Color.Black;
            this.notePanel_BegTimeBack.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_BegTimeBack.Location = new System.Drawing.Point(16, 56);
            this.notePanel_BegTimeBack.MaxRows = 5;
            this.notePanel_BegTimeBack.Name = "notePanel_BegTimeBack";
            this.notePanel_BegTimeBack.ParentAutoHeight = true;
            this.notePanel_BegTimeBack.Size = new System.Drawing.Size(80, 22);
            this.notePanel_BegTimeBack.TabIndex = 14;
            this.notePanel_BegTimeBack.TabStop = false;
            this.notePanel_BegTimeBack.Text = "起始时间";
            // 
            // notePanel_EndTimeBack
            // 
            this.notePanel_EndTimeBack.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel_EndTimeBack.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel_EndTimeBack.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel_EndTimeBack.ForeColor = System.Drawing.Color.Black;
            this.notePanel_EndTimeBack.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_EndTimeBack.Location = new System.Drawing.Point(16, 88);
            this.notePanel_EndTimeBack.MaxRows = 5;
            this.notePanel_EndTimeBack.Name = "notePanel_EndTimeBack";
            this.notePanel_EndTimeBack.ParentAutoHeight = true;
            this.notePanel_EndTimeBack.Size = new System.Drawing.Size(80, 22);
            this.notePanel_EndTimeBack.TabIndex = 13;
            this.notePanel_EndTimeBack.TabStop = false;
            this.notePanel_EndTimeBack.Text = "结束时间";
            // 
            // groupControl_NumberNameBack
            // 
            this.groupControl_NumberNameBack.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.groupControl_NumberNameBack.AppearanceCaption.ForeColor = System.Drawing.Color.Black;
            this.groupControl_NumberNameBack.AppearanceCaption.Options.UseFont = true;
            this.groupControl_NumberNameBack.AppearanceCaption.Options.UseForeColor = true;
            this.groupControl_NumberNameBack.Controls.Add(this.textEdit_NameBack);
            this.groupControl_NumberNameBack.Controls.Add(this.textEdit_NumberBack);
            this.groupControl_NumberNameBack.Controls.Add(this.notePanel_NumberBack);
            this.groupControl_NumberNameBack.Controls.Add(this.notePanel1_NameBack);
            this.groupControl_NumberNameBack.Dock = System.Windows.Forms.DockStyle.Bottom;
            this.groupControl_NumberNameBack.Location = new System.Drawing.Point(2, 78);
            this.groupControl_NumberNameBack.Name = "groupControl_NumberNameBack";
            this.groupControl_NumberNameBack.Size = new System.Drawing.Size(234, 120);
            this.groupControl_NumberNameBack.TabIndex = 21;
            this.groupControl_NumberNameBack.Text = "指定搜索的学号和姓名";
            this.groupControl_NumberNameBack.Visible = false;
            // 
            // textEdit_NameBack
            // 
            this.textEdit_NameBack.EditValue = "";
            this.textEdit_NameBack.Location = new System.Drawing.Point(104, 32);
            this.textEdit_NameBack.Name = "textEdit_NameBack";
            this.textEdit_NameBack.Size = new System.Drawing.Size(112, 20);
            this.textEdit_NameBack.TabIndex = 12;
            // 
            // textEdit_NumberBack
            // 
            this.textEdit_NumberBack.EditValue = "";
            this.textEdit_NumberBack.Location = new System.Drawing.Point(104, 72);
            this.textEdit_NumberBack.Name = "textEdit_NumberBack";
            this.textEdit_NumberBack.Size = new System.Drawing.Size(112, 20);
            this.textEdit_NumberBack.TabIndex = 11;
            // 
            // notePanel_NumberBack
            // 
            this.notePanel_NumberBack.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel_NumberBack.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel_NumberBack.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel_NumberBack.ForeColor = System.Drawing.Color.Black;
            this.notePanel_NumberBack.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_NumberBack.Location = new System.Drawing.Point(16, 72);
            this.notePanel_NumberBack.MaxRows = 5;
            this.notePanel_NumberBack.Name = "notePanel_NumberBack";
            this.notePanel_NumberBack.ParentAutoHeight = true;
            this.notePanel_NumberBack.Size = new System.Drawing.Size(80, 22);
            this.notePanel_NumberBack.TabIndex = 10;
            this.notePanel_NumberBack.TabStop = false;
            this.notePanel_NumberBack.Text = "  学  号:";
            // 
            // notePanel1_NameBack
            // 
            this.notePanel1_NameBack.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel1_NameBack.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel1_NameBack.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel1_NameBack.ForeColor = System.Drawing.Color.Black;
            this.notePanel1_NameBack.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel1_NameBack.Location = new System.Drawing.Point(16, 32);
            this.notePanel1_NameBack.MaxRows = 5;
            this.notePanel1_NameBack.Name = "notePanel1_NameBack";
            this.notePanel1_NameBack.ParentAutoHeight = true;
            this.notePanel1_NameBack.Size = new System.Drawing.Size(80, 22);
            this.notePanel1_NameBack.TabIndex = 9;
            this.notePanel1_NameBack.TabStop = false;
            this.notePanel1_NameBack.Text = "  姓  名:";
            // 
            // groupControl_GradeClassBack
            // 
            this.groupControl_GradeClassBack.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.groupControl_GradeClassBack.AppearanceCaption.Options.UseFont = true;
            this.groupControl_GradeClassBack.Controls.Add(this.comboBoxEdit_ClassBack);
            this.groupControl_GradeClassBack.Controls.Add(this.comboBoxEdit_GradeBack);
            this.groupControl_GradeClassBack.Controls.Add(this.notePanel1_GradeBack);
            this.groupControl_GradeClassBack.Controls.Add(this.notePanel1_ClassBack);
            this.groupControl_GradeClassBack.Dock = System.Windows.Forms.DockStyle.Bottom;
            this.groupControl_GradeClassBack.Location = new System.Drawing.Point(2, 198);
            this.groupControl_GradeClassBack.Name = "groupControl_GradeClassBack";
            this.groupControl_GradeClassBack.Size = new System.Drawing.Size(234, 120);
            this.groupControl_GradeClassBack.TabIndex = 20;
            this.groupControl_GradeClassBack.Text = "指定搜索的年级和班级";
            this.groupControl_GradeClassBack.Visible = false;
            // 
            // comboBoxEdit_ClassBack
            // 
            this.comboBoxEdit_ClassBack.EditValue = "全部";
            this.comboBoxEdit_ClassBack.Location = new System.Drawing.Point(104, 72);
            this.comboBoxEdit_ClassBack.Name = "comboBoxEdit_ClassBack";
            this.comboBoxEdit_ClassBack.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.comboBoxEdit_ClassBack.Properties.Items.AddRange(new object[] {
            "全部"});
            this.comboBoxEdit_ClassBack.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
            this.comboBoxEdit_ClassBack.Size = new System.Drawing.Size(112, 20);
            this.comboBoxEdit_ClassBack.TabIndex = 18;
            this.comboBoxEdit_ClassBack.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit_ClassBack_SelectedIndexChanged);
            // 
            // comboBoxEdit_GradeBack
            // 
            this.comboBoxEdit_GradeBack.EditValue = "全部";
            this.comboBoxEdit_GradeBack.Location = new System.Drawing.Point(104, 32);
            this.comboBoxEdit_GradeBack.Name = "comboBoxEdit_GradeBack";
            this.comboBoxEdit_GradeBack.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.comboBoxEdit_GradeBack.Properties.Items.AddRange(new object[] {
            "全部"});
            this.comboBoxEdit_GradeBack.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
            this.comboBoxEdit_GradeBack.Size = new System.Drawing.Size(112, 20);
            this.comboBoxEdit_GradeBack.TabIndex = 17;
            this.comboBoxEdit_GradeBack.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit_GradeBack_SelectedIndexChanged);
            // 
            // notePanel1_GradeBack
            // 
            this.notePanel1_GradeBack.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel1_GradeBack.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel1_GradeBack.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel1_GradeBack.ForeColor = System.Drawing.Color.Black;
            this.notePanel1_GradeBack.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel1_GradeBack.Location = new System.Drawing.Point(16, 32);
            this.notePanel1_GradeBack.MaxRows = 5;
            this.notePanel1_GradeBack.Name = "notePanel1_GradeBack";
            this.notePanel1_GradeBack.ParentAutoHeight = true;
            this.notePanel1_GradeBack.Size = new System.Drawing.Size(80, 22);
            this.notePanel1_GradeBack.TabIndex = 4;
            this.notePanel1_GradeBack.TabStop = false;
            this.notePanel1_GradeBack.Text = "  年  级:";
            // 
            // notePanel1_ClassBack
            // 
            this.notePanel1_ClassBack.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel1_ClassBack.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel1_ClassBack.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel1_ClassBack.ForeColor = System.Drawing.Color.Black;
            this.notePanel1_ClassBack.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel1_ClassBack.Location = new System.Drawing.Point(16, 72);
            this.notePanel1_ClassBack.MaxRows = 5;
            this.notePanel1_ClassBack.Name = "notePanel1_ClassBack";
            this.notePanel1_ClassBack.ParentAutoHeight = true;
            this.notePanel1_ClassBack.Size = new System.Drawing.Size(80, 22);
            this.notePanel1_ClassBack.TabIndex = 16;
            this.notePanel1_ClassBack.TabStop = false;
            this.notePanel1_ClassBack.Text = "  班  级:";
            // 
            // notePanel_GradeClassBack
            // 
            this.notePanel_GradeClassBack.BackColor = System.Drawing.Color.Yellow;
            this.notePanel_GradeClassBack.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel_GradeClassBack.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.notePanel_GradeClassBack.ForeColor = System.Drawing.Color.Black;
            this.notePanel_GradeClassBack.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_GradeClassBack.Location = new System.Drawing.Point(16, 50);
            this.notePanel_GradeClassBack.MaxRows = 5;
            this.notePanel_GradeClassBack.Name = "notePanel_GradeClassBack";
            this.notePanel_GradeClassBack.ParentAutoHeight = true;
            this.notePanel_GradeClassBack.Size = new System.Drawing.Size(200, 22);
            this.notePanel_GradeClassBack.TabIndex = 19;
            this.notePanel_GradeClassBack.TabStop = false;
            this.notePanel_GradeClassBack.Text = "年级和班级:";
            this.notePanel_GradeClassBack.Click += new System.EventHandler(this.notePanel_GradeClassBack_Click);
            // 
            // notePanel_TimeConBack
            // 
            this.notePanel_TimeConBack.BackColor = System.Drawing.Color.Yellow;
            this.notePanel_TimeConBack.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel_TimeConBack.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel_TimeConBack.ForeColor = System.Drawing.Color.Black;
            this.notePanel_TimeConBack.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_TimeConBack.Location = new System.Drawing.Point(16, 98);
            this.notePanel_TimeConBack.MaxRows = 5;
            this.notePanel_TimeConBack.Name = "notePanel_TimeConBack";
            this.notePanel_TimeConBack.ParentAutoHeight = true;
            this.notePanel_TimeConBack.Size = new System.Drawing.Size(200, 22);
            this.notePanel_TimeConBack.TabIndex = 18;
            this.notePanel_TimeConBack.TabStop = false;
            this.notePanel_TimeConBack.Text = "时间和情况:";
            this.notePanel_TimeConBack.Click += new System.EventHandler(this.notePanel_TimeConBack_Click);
            // 
            // notePanel_NumberNameBack
            // 
            this.notePanel_NumberNameBack.BackColor = System.Drawing.Color.Yellow;
            this.notePanel_NumberNameBack.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel_NumberNameBack.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel_NumberNameBack.ForeColor = System.Drawing.Color.Black;
            this.notePanel_NumberNameBack.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_NumberNameBack.Location = new System.Drawing.Point(16, 74);
            this.notePanel_NumberNameBack.MaxRows = 5;
            this.notePanel_NumberNameBack.Name = "notePanel_NumberNameBack";
            this.notePanel_NumberNameBack.ParentAutoHeight = true;
            this.notePanel_NumberNameBack.Size = new System.Drawing.Size(200, 22);
            this.notePanel_NumberNameBack.TabIndex = 17;
            this.notePanel_NumberNameBack.TabStop = false;
            this.notePanel_NumberNameBack.Text = "学号和姓名:";
            this.notePanel_NumberNameBack.Click += new System.EventHandler(this.notePanel_NumberNameBack_Click);
            // 
            // notePanel_SerCondBack
            // 
            this.notePanel_SerCondBack.BackColor = System.Drawing.Color.LightGoldenrodYellow;
            this.notePanel_SerCondBack.Dock = System.Windows.Forms.DockStyle.Top;
            this.notePanel_SerCondBack.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.notePanel_SerCondBack.ForeColor = System.Drawing.Color.OrangeRed;
            this.notePanel_SerCondBack.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_SerCondBack.Location = new System.Drawing.Point(2, 22);
            this.notePanel_SerCondBack.MaxRows = 5;
            this.notePanel_SerCondBack.Name = "notePanel_SerCondBack";
            this.notePanel_SerCondBack.ParentAutoHeight = true;
            this.notePanel_SerCondBack.Size = new System.Drawing.Size(234, 23);
            this.notePanel_SerCondBack.TabIndex = 5;
            this.notePanel_SerCondBack.TabStop = false;
            this.notePanel_SerCondBack.Text = "您要搜索的条件?";
            // 
            // gridControl_BackInfo
            // 
            this.gridControl_BackInfo.Dock = System.Windows.Forms.DockStyle.Fill;
            this.gridControl_BackInfo.Location = new System.Drawing.Point(0, 40);
            this.gridControl_BackInfo.MainView = this.gridView2;
            this.gridControl_BackInfo.Name = "gridControl_BackInfo";
            this.gridControl_BackInfo.Size = new System.Drawing.Size(523, 471);
            this.gridControl_BackInfo.TabIndex = 9;
            this.gridControl_BackInfo.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
            this.gridView2});
            // 
            // gridView2
            // 
            this.gridView2.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
            this.gridColumn7,
            this.gridColumn8,
            this.gridColumn9,
            this.gridColumn10,
            this.gridColumn11,
            this.gridColumn12,
            this.gridColumn13});
            this.gridView2.GridControl = this.gridControl_BackInfo;
            this.gridView2.Name = "gridView2";
            this.gridView2.OptionsCustomization.AllowFilter = false;
            this.gridView2.OptionsView.ShowFilterPanelMode = DevExpress.XtraGrid.Views.Base.ShowFilterPanelMode.Never;
            this.gridView2.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 = "info_stuOrderNumber";
            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 = 0;
            this.gridColumn7.Width = 62;
            // 
            // 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.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 = 1;
            this.gridColumn8.Width = 62;
            // 
            // 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.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 = 2;
            this.gridColumn9.Width = 57;
            // 
            // 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.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 = 3;
            this.gridColumn10.Width = 59;
            // 
            // 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.DisplayFormat.FormatString = "yyyy-MM-dd HH:mm:ss";
            this.gridColumn11.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
            this.gridColumn11.FieldName = "flow_stuFlowBackDate";
            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 = 4;
            this.gridColumn11.Width = 165;
            // 
            // 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 = "state_flowStateName";
            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 = 5;
            this.gridColumn12.Width = 81;
            // 
            // 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_stuCardHolder";
            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 = 6;
            // 
            // panelControl2
            // 
            this.panelControl2.Controls.Add(this.simpleButton_PrintBack);
            this.panelControl2.Controls.Add(this.simpleButton_SearchBack);
            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(523, 40);
            this.panelControl2.TabIndex = 8;
            // 
            // simpleButton_PrintBack
            // 
            this.simpleButton_PrintBack.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.simpleButton_PrintBack.Appearance.ForeColor = System.Drawing.Color.DarkMagenta;
            this.simpleButton_PrintBack.Appearance.Options.UseFont = true;
            this.simpleButton_PrintBack.Appearance.Options.UseForeColor = true;
            this.simpleButton_PrintBack.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton_PrintBack.Image")));
            this.simpleButton_PrintBack.Location = new System.Drawing.Point(112, 8);
            this.simpleButton_PrintBack.Name = "simpleButton_PrintBack";
            this.simpleButton_PrintBack.Size = new System.Drawing.Size(92, 26);
            this.simpleButton_PrintBack.TabIndex = 8;
            this.simpleButton_PrintBack.Tag = 4;
            this.simpleButton_PrintBack.Text = "报  表";
            this.simpleButton_PrintBack.Click += new System.EventHandler(this.simpleButton_PrintBack_Click);
            // 
            // simpleButton_SearchBack
            // 
            this.simpleButton_SearchBack.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.simpleButton_SearchBack.Appearance.ForeColor = System.Drawing.Color.DarkMagenta;
            this.simpleButton_SearchBack.Appearance.Options.UseFont = true;
            this.simpleButton_SearchBack.Appearance.Options.UseForeColor = true;
            this.simpleButton_SearchBack.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton_SearchBack.Image")));
            this.simpleButton_SearchBack.Location = new System.Drawing.Point(8, 8);
            this.simpleButton_SearchBack.Name = "simpleButton_SearchBack";
            this.simpleButton_SearchBack.Size = new System.Drawing.Size(92, 26);
            this.simpleButton_SearchBack.TabIndex = 5;
            this.simpleButton_SearchBack.Tag = 4;
            this.simpleButton_SearchBack.Text = "搜  索";
            this.simpleButton_SearchBack.Click += new System.EventHandler(this.simpleButton_SearchBack_Click);
            // 
            // xtraTabPage_FreeDefinition
            // 
            this.xtraTabPage_FreeDefinition.Appearance.PageClient.BackColor = System.Drawing.Color.WhiteSmoke;
            this.xtraTabPage_FreeDefinition.Appearance.PageClient.Options.UseBackColor = true;
            this.xtraTabPage_FreeDefinition.Controls.Add(this.splitContainerControl3);
            this.xtraTabPage_FreeDefinition.Name = "xtraTabPage_FreeDefinition";
            this.xtraTabPage_FreeDefinition.Size = new System.Drawing.Size(766, 511);
            this.xtraTabPage_FreeDefinition.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_FastSerFreeDef);
            this.splitContainerControl3.Panel1.Text = "splitContainerControl3_Panel1";
            this.splitContainerControl3.Panel2.Controls.Add(this.gridControl_FreeDef);
            this.splitContainerControl3.Panel2.Controls.Add(this.panelControl3);
            this.splitContainerControl3.Panel2.Text = "splitContainerControl3_Panel2";
            this.splitContainerControl3.Size = new System.Drawing.Size(766, 511);
            this.splitContainerControl3.SplitterPosition = 253;
            this.splitContainerControl3.TabIndex = 0;
            this.splitContainerControl3.Text = "splitContainerControl3";
            // 
            // groupControl_FastSerFreeDef
            // 
            this.groupControl_FastSerFreeDef.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.groupControl_FastSerFreeDef.AppearanceCaption.Options.UseFont = true;
            this.groupControl_FastSerFreeDef.Controls.Add(this.groupControl_TimeStatusFreeDef);
            this.groupControl_FastSerFreeDef.Controls.Add(this.groupControl_NumberNameFreeDef);
            this.groupControl_FastSerFreeDef.Controls.Add(this.groupControl_GradeClassFreeDef);
            this.groupControl_FastSerFreeDef.Controls.Add(this.notePanel_GradeClassFreeDef);
            this.groupControl_FastSerFreeDef.Controls.Add(this.notePanel_TimeStatusFreeDef);
            this.groupControl_FastSerFreeDef.Controls.Add(this.notePanel_NumberNameFreeDef);
            this.groupControl_FastSerFreeDef.Controls.Add(this.notePanel1_SerCondFreeDef);
            this.groupControl_FastSerFreeDef.Dock = System.Windows.Forms.DockStyle.Top;
            this.groupControl_FastSerFreeDef.Location = new System.Drawing.Point(0, 0);
            this.groupControl_FastSerFreeDef.Name = "groupControl_FastSerFreeDef";
            this.groupControl_FastSerFreeDef.Size = new System.Drawing.Size(253, 336);
            this.groupControl_FastSerFreeDef.TabIndex = 9;
            this.groupControl_FastSerFreeDef.Text = "快速搜索";
            // 
            // groupControl_TimeStatusFreeDef
            // 
            this.groupControl_TimeStatusFreeDef.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.groupControl_TimeStatusFreeDef.AppearanceCaption.ForeColor = System.Drawing.Color.Black;
            this.groupControl_TimeStatusFreeDef.AppearanceCaption.Options.UseFont = true;
            this.groupControl_TimeStatusFreeDef.AppearanceCaption.Options.UseForeColor = true;
            this.groupControl_TimeStatusFreeDef.Controls.Add(this.dateEdit_SpecificDateFreeDef);
            this.groupControl_TimeStatusFreeDef.Controls.Add(this.notePanel_SpecificDateFreeDef);
            this.groupControl_TimeStatusFreeDef.Controls.Add(this.comboBoxEdit_TimeModeFreeDef);
            this.groupControl_TimeStatusFreeDef.Controls.Add(this.textEdit_EndTimeFreeDef);
            this.groupControl_TimeStatusFreeDef.Controls.Add(this.textEdit_BegTimeFreeDef);
            this.groupControl_TimeStatusFreeDef.Controls.Add(this.notePanel_TimeMode_FreeDef);
            this.groupControl_TimeStatusFreeDef.Controls.Add(this.comboBoxEdit_CustomStatusDef);
            this.groupControl_TimeStatusFreeDef.Controls.Add(this.notePanel_FreeDef);
            this.groupControl_TimeStatusFreeDef.Controls.Add(this.notePanel_BegTimeFreeDef);
            this.groupControl_TimeStatusFreeDef.Controls.Add(this.notePanel_EndTimeFreeDef);
            this.groupControl_TimeStatusFreeDef.Dock = System.Windows.Forms.DockStyle.Bottom;
            this.groupControl_TimeStatusFreeDef.Location = new System.Drawing.Point(2, -98);
            this.groupControl_TimeStatusFreeDef.Name = "groupControl_TimeStatusFreeDef";
            this.groupControl_TimeStatusFreeDef.Size = new System.Drawing.Size(249, 192);
            this.groupControl_TimeStatusFreeDef.TabIndex = 22;
            this.groupControl_TimeStatusFreeDef.Text = "指定搜索的时间和自定义状态";
            this.groupControl_TimeStatusFreeDef.Visible = false;
            // 
            // dateEdit_SpecificDateFreeDef
            // 
            this.dateEdit_SpecificDateFreeDef.EditValue = new System.DateTime(2005, 1, 31, 0, 0, 0, 0);
            this.dateEdit_SpecificDateFreeDef.Location = new System.Drawing.Point(104, 32);
            this.dateEdit_SpecificDateFreeDef.Name = "dateEdit_SpecificDateFreeDef";
            this.dateEdit_SpecificDateFreeDef.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.dateEdit_SpecificDateFreeDef.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton()});
            this.dateEdit_SpecificDateFreeDef.Size = new System.Drawing.Size(120, 20);
            this.dateEdit_SpecificDateFreeDef.TabIndex = 24;
            // 
            // notePanel_SpecificDateFreeDef
            // 
            this.notePanel_SpecificDateFreeDef.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel_SpecificDateFreeDef.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel_SpecificDateFreeDef.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel_SpecificDateFreeDef.ForeColor = System.Drawing.Color.Black;
            this.notePanel_SpecificDateFreeDef.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_SpecificDateFreeDef.Location = new System.Drawing.Point(16, 32);
            this.notePanel_SpecificDateFreeDef.MaxRows = 5;
            this.notePanel_SpecificDateFreeDef.Name = "notePanel_SpecificDateFreeDef";
            this.notePanel_SpecificDateFreeDef.ParentAutoHeight = true;
            this.notePanel_SpecificDateFreeDef.Size = new System.Drawing.Size(80, 22);
            this.notePanel_SpecificDateFreeDef.TabIndex = 23;
            this.notePanel_SpecificDateFreeDef.TabStop = false;
            this.notePanel_SpecificDateFreeDef.Text = "起始时间";
            // 
            // comboBoxEdit_TimeModeFreeDef
            // 
            this.comboBoxEdit_TimeModeFreeDef.EditValue = "模糊时间";
            this.comboBoxEdit_TimeModeFreeDef.Location = new System.Drawing.Point(104, 128);
            this.comboBoxEdit_TimeModeFreeDef.Name = "comboBoxEdit_TimeModeFreeDef";
            this.comboBoxEdit_TimeModeFreeDef.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.comboBoxEdit_TimeModeFreeDef.Properties.Items.AddRange(new object[] {
            "模糊时间",
            "精确时间"});
            this.comboBoxEdit_TimeModeFreeDef.Size = new System.Drawing.Size(120, 20);
            this.comboBoxEdit_TimeModeFreeDef.TabIndex = 22;
            this.comboBoxEdit_TimeModeFreeDef.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit_TimeModeFreeDef_SelectedIndexChanged);
            // 
            // textEdit_EndTimeFreeDef
            // 
            this.textEdit_EndTimeFreeDef.EditValue = "";
            this.textEdit_EndTimeFreeDef.Location = new System.Drawing.Point(104, 96);
            this.textEdit_EndTimeFreeDef.Name = "textEdit_EndTimeFreeDef";
            this.textEdit_EndTimeFreeDef.Properties.DisplayFormat.FormatString = "d";
            this.textEdit_EndTimeFreeDef.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
            this.textEdit_EndTimeFreeDef.Properties.EditValueChangedFiringMode = DevExpress.XtraEditors.Controls.EditValueChangedFiringMode.Buffered;
            this.textEdit_EndTimeFreeDef.Properties.Mask.EditMask = "d";
            this.textEdit_EndTimeFreeDef.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.DateTime;
            this.textEdit_EndTimeFreeDef.Size = new System.Drawing.Size(120, 20);
            this.textEdit_EndTimeFreeDef.TabIndex = 21;
            // 
            // textEdit_BegTimeFreeDef
            // 
            this.textEdit_BegTimeFreeDef.EditValue = "";
            this.textEdit_BegTimeFreeDef.Location = new System.Drawing.Point(104, 64);
            this.textEdit_BegTimeFreeDef.Name = "textEdit_BegTimeFreeDef";
            this.textEdit_BegTimeFreeDef.Properties.DisplayFormat.FormatString = "d";
            this.textEdit_BegTimeFreeDef.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
            this.textEdit_BegTimeFreeDef.Properties.EditValueChangedFiringMode = DevExpress.XtraEditors.Controls.EditValueChangedFiringMode.Buffered;
            this.textEdit_BegTimeFreeDef.Properties.Mask.EditMask = "d";
            this.textEdit_BegTimeFreeDef.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.DateTime;
            this.textEdit_BegTimeFreeDef.Size = new System.Drawing.Size(120, 20);
            this.textEdit_BegTimeFreeDef.TabIndex = 20;
            // 
            // notePanel_TimeMode_FreeDef
            // 
            this.notePanel_TimeMode_FreeDef.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel_TimeMode_FreeDef.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel_TimeMode_FreeDef.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel_TimeMode_FreeDef.ForeColor = System.Drawing.Color.Black;
            this.notePanel_TimeMode_FreeDef.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_TimeMode_FreeDef.Location = new System.Drawing.Point(16, 128);
            this.notePanel_TimeMode_FreeDef.MaxRows = 5;
            this.notePanel_TimeMode_FreeDef.Name = "notePanel_TimeMode_FreeDef";
            this.notePanel_TimeMode_FreeDef.ParentAutoHeight = true;
            this.notePanel_TimeMode_FreeDef.Size = new System.Drawing.Size(80, 22);
            this.notePanel_TimeMode_FreeDef.TabIndex = 19;
            this.notePanel_TimeMode_FreeDef.TabStop = false;
            this.notePanel_TimeMode_FreeDef.Text = "结束时间";
            // 
            // comboBoxEdit_CustomStatusDef
            // 
            this.comboBoxEdit_CustomStatusDef.EditValue = "全部";
            this.comboBoxEdit_CustomStatusDef.Location = new System.Drawing.Point(104, 160);
            this.comboBoxEdit_CustomStatusDef.Name = "comboBoxEdit_CustomStatusDef";
            this.comboBoxEdit_CustomStatusDef.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.comboBoxEdit_CustomStatusDef.Properties.Items.AddRange(new object[] {
            "全部"});
            this.comboBoxEdit_CustomStatusDef.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
            this.comboBoxEdit_CustomStatusDef.Size = new System.Drawing.Size(120, 20);
            this.comboBoxEdit_CustomStatusDef.TabIndex = 18;
            this.comboBoxEdit_CustomStatusDef.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit_CustomStatusDef_SelectedIndexChanged);
            // 
            // notePanel_FreeDef
            // 
            this.notePanel_FreeDef.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel_FreeDef.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel_FreeDef.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel_FreeDef.ForeColor = System.Drawing.Color.Black;
            this.notePanel_FreeDef.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_FreeDef.Location = new System.Drawing.Point(16, 160);
            this.notePanel_FreeDef.MaxRows = 5;
            this.notePanel_FreeDef.Name = "notePanel_FreeDef";
            this.notePanel_FreeDef.ParentAutoHeight = true;
            this.notePanel_FreeDef.Size = new System.Drawing.Size(80, 22);
            this.notePanel_FreeDef.TabIndex = 17;
            this.notePanel_FreeDef.TabStop = false;
            this.notePanel_FreeDef.Text = "定义状态:";
            // 
            // notePanel_BegTimeFreeDef
            // 
            this.notePanel_BegTimeFreeDef.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel_BegTimeFreeDef.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel_BegTimeFreeDef.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel_BegTimeFreeDef.ForeColor = System.Drawing.Color.Black;
            this.notePanel_BegTimeFreeDef.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_BegTimeFreeDef.Location = new System.Drawing.Point(16, 64);
            this.notePanel_BegTimeFreeDef.MaxRows = 5;
            this.notePanel_BegTimeFreeDef.Name = "notePanel_BegTimeFreeDef";
            this.notePanel_BegTimeFreeDef.ParentAutoHeight = true;
            this.notePanel_BegTimeFreeDef.Size = new System.Drawing.Size(80, 22);
            this.notePanel_BegTimeFreeDef.TabIndex = 14;
            this.notePanel_BegTimeFreeDef.TabStop = false;
            this.notePanel_BegTimeFreeDef.Text = "起始时间";
            // 
            // notePanel_EndTimeFreeDef
            // 
            this.notePanel_EndTimeFreeDef.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel_EndTimeFreeDef.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel_EndTimeFreeDef.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel_EndTimeFreeDef.ForeColor = System.Drawing.Color.Black;
            this.notePanel_EndTimeFreeDef.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_EndTimeFreeDef.Location = new System.Drawing.Point(16, 96);
            this.notePanel_EndTimeFreeDef.MaxRows = 5;
            this.notePanel_EndTimeFreeDef.Name = "notePanel_EndTimeFreeDef";
            this.notePanel_EndTimeFreeDef.ParentAutoHeight = true;
            this.notePanel_EndTimeFreeDef.Size = new System.Drawing.Size(80, 22);
            this.notePanel_EndTimeFreeDef.TabIndex = 13;
            this.notePanel_EndTimeFreeDef.TabStop = false;
            this.notePanel_EndTimeFreeDef.Text = "结束时间";
            // 
            // groupControl_NumberNameFreeDef
            // 
            this.groupControl_NumberNameFreeDef.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.groupControl_NumberNameFreeDef.AppearanceCaption.ForeColor = System.Drawing.Color.Black;
            this.groupControl_NumberNameFreeDef.AppearanceCaption.Options.UseFont = true;
            this.groupControl_NumberNameFreeDef.AppearanceCaption.Options.UseForeColor = true;
            this.groupControl_NumberNameFreeDef.Controls.Add(this.textEdit_NameFreeDef);
            this.groupControl_NumberNameFreeDef.Controls.Add(this.textEdit_NumberFreeDef);
            this.groupControl_NumberNameFreeDef.Controls.Add(this.notePanel_NumberFreeDef);
            this.groupControl_NumberNameFreeDef.Controls.Add(this.notePanel_NameFreeDef);
            this.groupControl_NumberNameFreeDef.Dock = System.Windows.Forms.DockStyle.Bottom;
            this.groupControl_NumberNameFreeDef.Location = new System.Drawing.Point(2, 94);
            this.groupControl_NumberNameFreeDef.Name = "groupControl_NumberNameFreeDef";
            this.groupControl_NumberNameFreeDef.Size = new System.Drawing.Size(249, 120);
            this.groupControl_NumberNameFreeDef.TabIndex = 21;
            this.groupControl_NumberNameFreeDef.Text = "指定搜索的学号和姓名";
            this.groupControl_NumberNameFreeDef.Visible = false;
            // 
            // textEdit_NameFreeDef
            // 
            this.textEdit_NameFreeDef.EditValue = "";
            this.textEdit_NameFreeDef.Location = new System.Drawing.Point(104, 32);
            this.textEdit_NameFreeDef.Name = "textEdit_NameFreeDef";
            this.textEdit_NameFreeDef.Size = new System.Drawing.Size(120, 20);
            this.textEdit_NameFreeDef.TabIndex = 12;
            // 
            // textEdit_NumberFreeDef
            // 
            this.textEdit_NumberFreeDef.EditValue = "";
            this.textEdit_NumberFreeDef.Location = new System.Drawing.Point(104, 72);
            this.textEdit_NumberFreeDef.Name = "textEdit_NumberFreeDef";
            this.textEdit_NumberFreeDef.Size = new System.Drawing.Size(120, 20);
            this.textEdit_NumberFreeDef.TabIndex = 11;
            // 
            // notePanel_NumberFreeDef
            // 
            this.notePanel_NumberFreeDef.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel_NumberFreeDef.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel_NumberFreeDef.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel_NumberFreeDef.ForeColor = System.Drawing.Color.Black;
            this.notePanel_NumberFreeDef.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_NumberFreeDef.Location = new System.Drawing.Point(16, 72);
            this.notePanel_NumberFreeDef.MaxRows = 5;
            this.notePanel_NumberFreeDef.Name = "notePanel_NumberFreeDef";
            this.notePanel_NumberFreeDef.ParentAutoHeight = true;
            this.notePanel_NumberFreeDef.Size = new System.Drawing.Size(80, 22);
            this.notePanel_NumberFreeDef.TabIndex = 10;
            this.notePanel_NumberFreeDef.TabStop = false;
            this.notePanel_NumberFreeDef.Text = "  学  号:";
            // 
            // notePanel_NameFreeDef
            // 
            this.notePanel_NameFreeDef.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel_NameFreeDef.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel_NameFreeDef.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel_NameFreeDef.ForeColor = System.Drawing.Color.Black;
            this.notePanel_NameFreeDef.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_NameFreeDef.Location = new System.Drawing.Point(16, 32);
            this.notePanel_NameFreeDef.MaxRows = 5;
            this.notePanel_NameFreeDef.Name = "notePanel_NameFreeDef";
            this.notePanel_NameFreeDef.ParentAutoHeight = true;
            this.notePanel_NameFreeDef.Size = new System.Drawing.Size(80, 22);
            this.notePanel_NameFreeDef.TabIndex = 9;
            this.notePanel_NameFreeDef.TabStop = false;
            this.notePanel_NameFreeDef.Text = "  姓  名:";
            // 
            // groupControl_GradeClassFreeDef
            // 
            this.groupControl_GradeClassFreeDef.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.groupControl_GradeClassFreeDef.AppearanceCaption.Options.UseFont = true;
            this.groupControl_GradeClassFreeDef.Controls.Add(this.comboBoxEdit_ClassFreeDef);
            this.groupControl_GradeClassFreeDef.Controls.Add(this.comboBoxEdit_GradeFreeDef);
            this.groupControl_GradeClassFreeDef.Controls.Add(this.notePanel_GradeFreeDef);
            this.groupControl_GradeClassFreeDef.Controls.Add(this.notePanel_ClassFreeDef);
            this.groupControl_GradeClassFreeDef.Dock = System.Windows.Forms.DockStyle.Bottom;
            this.groupControl_GradeClassFreeDef.Location = new System.Drawing.Point(2, 214);
            this.groupControl_GradeClassFreeDef.Name = "groupControl_GradeClassFreeDef";
            this.groupControl_GradeClassFreeDef.Size = new System.Drawing.Size(249, 120);
            this.groupControl_GradeClassFreeDef.TabIndex = 20;
            this.groupControl_GradeClassFreeDef.Text = "指定搜索的年级和班级";
            this.groupControl_GradeClassFreeDef.Visible = false;
            // 
            // comboBoxEdit_ClassFreeDef
            // 
            this.comboBoxEdit_ClassFreeDef.EditValue = "全部";
            this.comboBoxEdit_ClassFreeDef.Location = new System.Drawing.Point(104, 72);
            this.comboBoxEdit_ClassFreeDef.Name = "comboBoxEdit_ClassFreeDef";
            this.comboBoxEdit_ClassFreeDef.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.comboBoxEdit_ClassFreeDef.Properties.Items.AddRange(new object[] {
            "全部"});
            this.comboBoxEdit_ClassFreeDef.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
            this.comboBoxEdit_ClassFreeDef.Size = new System.Drawing.Size(120, 20);
            this.comboBoxEdit_ClassFreeDef.TabIndex = 18;
            this.comboBoxEdit_ClassFreeDef.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit_ClassFreeDef_SelectedIndexChanged);
            // 
            // comboBoxEdit_GradeFreeDef
            // 
            this.comboBoxEdit_GradeFreeDef.EditValue = "全部";
            this.comboBoxEdit_GradeFreeDef.Location = new System.Drawing.Point(104, 32);
            this.comboBoxEdit_GradeFreeDef.Name = "comboBoxEdit_GradeFreeDef";
            this.comboBoxEdit_GradeFreeDef.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.comboBoxEdit_GradeFreeDef.Properties.Items.AddRange(new object[] {
            "全部"});
            this.comboBoxEdit_GradeFreeDef.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
            this.comboBoxEdit_GradeFreeDef.Size = new System.Drawing.Size(120, 20);
            this.comboBoxEdit_GradeFreeDef.TabIndex = 17;
            this.comboBoxEdit_GradeFreeDef.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit_GradeFreeDef_SelectedIndexChanged);
            // 
            // notePanel_GradeFreeDef
            // 
            this.notePanel_GradeFreeDef.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel_GradeFreeDef.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel_GradeFreeDef.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel_GradeFreeDef.ForeColor = System.Drawing.Color.Black;
            this.notePanel_GradeFreeDef.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_GradeFreeDef.Location = new System.Drawing.Point(16, 32);
            this.notePanel_GradeFreeDef.MaxRows = 5;
            this.notePanel_GradeFreeDef.Name = "notePanel_GradeFreeDef";
            this.notePanel_GradeFreeDef.ParentAutoHeight = true;
            this.notePanel_GradeFreeDef.Size = new System.Drawing.Size(80, 22);
            this.notePanel_GradeFreeDef.TabIndex = 4;
            this.notePanel_GradeFreeDef.TabStop = false;
            this.notePanel_GradeFreeDef.Text = "  年  级:";
            // 
            // notePanel_ClassFreeDef
            // 
            this.notePanel_ClassFreeDef.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel_ClassFreeDef.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel_ClassFreeDef.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel_ClassFreeDef.ForeColor = System.Drawing.Color.Black;
            this.notePanel_ClassFreeDef.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_ClassFreeDef.Location = new System.Drawing.Point(16, 72);
            this.notePanel_ClassFreeDef.MaxRows = 5;
            this.notePanel_ClassFreeDef.Name = "notePanel_ClassFreeDef";
            this.notePanel_ClassFreeDef.ParentAutoHeight = true;
            this.notePanel_ClassFreeDef.Size = new System.Drawing.Size(80, 22);
            this.notePanel_ClassFreeDef.TabIndex = 16;
            this.notePanel_ClassFreeDef.TabStop = false;
            this.notePanel_ClassFreeDef.Text = "  班  级:";
            // 
            // notePanel_GradeClassFreeDef
            // 
            this.notePanel_GradeClassFreeDef.BackColor = System.Drawing.Color.LightGray;
            this.notePanel_GradeClassFreeDef.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel_GradeClassFreeDef.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.notePanel_GradeClassFreeDef.ForeColor = System.Drawing.Color.Black;
            this.notePanel_GradeClassFreeDef.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_GradeClassFreeDef.Location = new System.Drawing.Point(16, 50);
            this.notePanel_GradeClassFreeDef.MaxRows = 5;
            this.notePanel_GradeClassFreeDef.Name = "notePanel_GradeClassFreeDef";
            this.notePanel_GradeClassFreeDef.ParentAutoHeight = true;
            this.notePanel_GradeClassFreeDef.Size = new System.Drawing.Size(208, 22);
            this.notePanel_GradeClassFreeDef.TabIndex = 19;
            this.notePanel_GradeClassFreeDef.TabStop = false;
            this.notePanel_GradeClassFreeDef.Text = "年级和班级:";
            this.notePanel_GradeClassFreeDef.Click += new System.EventHandler(this.notePanel_GradeClassFreeDef_Click);
            // 
            // notePanel_TimeStatusFreeDef
            // 
            this.notePanel_TimeStatusFreeDef.BackColor = System.Drawing.Color.LightGray;
            this.notePanel_TimeStatusFreeDef.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel_TimeStatusFreeDef.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel_TimeStatusFreeDef.ForeColor = System.Drawing.Color.Black;
            this.notePanel_TimeStatusFreeDef.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_TimeStatusFreeDef.Location = new System.Drawing.Point(16, 98);
            this.notePanel_TimeStatusFreeDef.MaxRows = 5;
            this.notePanel_TimeStatusFreeDef.Name = "notePanel_TimeStatusFreeDef";
            this.notePanel_TimeStatusFreeDef.ParentAutoHeight = true;
            this.notePanel_TimeStatusFreeDef.Size = new System.Drawing.Size(208, 22);
            this.notePanel_TimeStatusFreeDef.TabIndex = 18;
            this.notePanel_TimeStatusFreeDef.TabStop = false;
            this.notePanel_TimeStatusFreeDef.Text = "时间和状态:";
            this.notePanel_TimeStatusFreeDef.Click += new System.EventHandler(this.notePanel_TimeStatusFreeDef_Click);
            // 
            // notePanel_NumberNameFreeDef
            // 
            this.notePanel_NumberNameFreeDef.BackColor = System.Drawing.Color.LightGray;
            this.notePanel_NumberNameFreeDef.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel_NumberNameFreeDef.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel_NumberNameFreeDef.ForeColor = System.Drawing.Color.Black;
            this.notePanel_NumberNameFreeDef.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_NumberNameFreeDef.Location = new System.Drawing.Point(16, 74);
            this.notePanel_NumberNameFreeDef.MaxRows = 5;
            this.notePanel_NumberNameFreeDef.Name = "notePanel_NumberNameFreeDef";
            this.notePanel_NumberNameFreeDef.ParentAutoHeight = true;
            this.notePanel_NumberNameFreeDef.Size = new System.Drawing.Size(208, 22);
            this.notePanel_NumberNameFreeDef.TabIndex = 17;
            this.notePanel_NumberNameFreeDef.TabStop = false;
            this.notePanel_NumberNameFreeDef.Text = "学号和姓名:";
            this.notePanel_NumberNameFreeDef.Click += new System.EventHandler(this.notePanel_NumberNameFreeDef_Click);
            // 
            // notePanel1_SerCondFreeDef
            // 
            this.notePanel1_SerCondFreeDef.BackColor = System.Drawing.Color.LightGoldenrodYellow;
            this.notePanel1_SerCondFreeDef.Dock = System.Windows.Forms.DockStyle.Top;
            this.notePanel1_SerCondFreeDef.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.notePanel1_SerCondFreeDef.ForeColor = System.Drawing.Color.OrangeRed;
            this.notePanel1_SerCondFreeDef.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel1_SerCondFreeDef.Location = new System.Drawing.Point(2, 22);
            this.notePanel1_SerCondFreeDef.MaxRows = 5;
            this.notePanel1_SerCondFreeDef.Name = "notePanel1_SerCondFreeDef";
            this.notePanel1_SerCondFreeDef.ParentAutoHeight = true;
            this.notePanel1_SerCondFreeDef.Size = new System.Drawing.Size(249, 23);
            this.notePanel1_SerCondFreeDef.TabIndex = 5;
            this.notePanel1_SerCondFreeDef.TabStop = false;
            this.notePanel1_SerCondFreeDef.Text = "您要搜索的条件?";
            // 
            // gridControl_FreeDef
            // 
            this.gridControl_FreeDef.Dock = System.Windows.Forms.DockStyle.Fill;
            this.gridControl_FreeDef.Location = new System.Drawing.Point(0, 40);
            this.gridControl_FreeDef.MainView = this.gridView3;
            this.gridControl_FreeDef.Name = "gridControl_FreeDef";
            this.gridControl_FreeDef.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
            this.repositoryItemComboBox_CustomState,
            this.repositoryItemComboBox1});
            this.gridControl_FreeDef.Size = new System.Drawing.Size(508, 471);
            this.gridControl_FreeDef.TabIndex = 12;
            this.gridControl_FreeDef.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
            this.gridView3});
            // 
            // gridView3
            // 
            this.gridView3.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
            this.gridColumn14,
            this.gridColumn15,
            this.gridColumn16,
            this.gridColumn17,
            this.gridColumn18,
            this.gridColumn19});
            this.gridView3.GridControl = this.gridControl_FreeDef;
            this.gridView3.Name = "gridView3";
            this.gridView3.OptionsCustomization.AllowFilter = false;
            this.gridView3.OptionsView.ShowFilterPanelMode = DevExpress.XtraGrid.Views.Base.ShowFilterPanelMode.Never;
            this.gridView3.OptionsView.ShowGroupPanel = false;
            this.gridView3.RowCellStyle += new DevExpress.XtraGrid.Views.Grid.RowCellStyleEventHandler(this.gridView3_RowCellStyle);
            this.gridView3.FocusedRowChanged += new DevExpress.XtraGrid.Views.Base.FocusedRowChangedEventHandler(this.gridView3_FocusedRowChanged);
            this.gridView3.CellValueChanged += new DevExpress.XtraGrid.Views.Base.CellValueChangedEventHandler(this.gridView3_CellValueChanged);
            // 
            // 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_stuOrderNumber";
            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 = 0;
            this.gridColumn14.Width = 63;
            // 
            // 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_className";
            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 = 1;
            this.gridColumn15.Width = 64;
            // 
            // 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_stuNumber";
            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.AllowMove = false;
            this.gridColumn16.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
            this.gridColumn16.OptionsColumn.FixedWidth = true;
            this.gridColumn16.OptionsColumn.ReadOnly = true;
            this.gridColumn16.OptionsColumn.ShowInCustomizationForm = false;
            this.gridColumn16.Visible = true;
            this.gridColumn16.VisibleIndex = 2;
            this.gridColumn16.Width = 63;
            // 
            // 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 = "info_stuName";
            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.True;
            this.gridColumn17.OptionsColumn.FixedWidth = true;
            this.gridColumn17.OptionsColumn.ReadOnly = true;
            this.gridColumn17.OptionsColumn.ShowInCustomizationForm = false;
            this.gridColumn17.Visible = true;
            this.gridColumn17.VisibleIndex = 3;
            this.gridColumn17.Width = 58;
            // 
            // 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 = "yyyy-MM-dd HH:mm:ss";
            this.gridColumn18.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
            this.gridColumn18.FieldName = "flow_stuFlowEnterDate";
            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.True;
            this.gridColumn18.OptionsColumn.FixedWidth = true;
            this.gridColumn18.OptionsColumn.ReadOnly = true;
            this.gridColumn18.OptionsColumn.ShowInCustomizationForm = false;
            this.gridColumn18.Visible = true;
            this.gridColumn18.VisibleIndex = 4;
            this.gridColumn18.Width = 117;
            // 
            // 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.ColumnEdit = this.repositoryItemComboBox_CustomState;
            this.gridColumn19.FieldName = "state_flowStateName";
            this.gridColumn19.Name = "gridColumn19";
            this.gridColumn19.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.True;
            this.gridColumn19.OptionsColumn.AllowIncrementalSearch = false;
            this.gridColumn19.OptionsColumn.AllowMove = false;
            this.gridColumn19.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
            this.gridColumn19.OptionsColumn.FixedWidth = true;
            this.gridColumn19.OptionsColumn.ShowInCustomizationForm = false;
            this.gridColumn19.Visible = true;
            this.gridColumn19.VisibleIndex = 5;
            // 
            // repositoryItemComboBox_CustomState
            // 
            this.repositoryItemComboBox_CustomState.AutoHeight = false;
            this.repositoryItemComboBox_CustomState.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.repositoryItemComboBox_CustomState.Name = "repositoryItemComboBox_CustomState";
            // 
            // repositoryItemComboBox1
            // 
            this.repositoryItemComboBox1.AutoHeight = false;
            this.repositoryItemComboBox1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.repositoryItemComboBox1.Name = "repositoryItemComboBox1";
            // 
            // panelControl3
            // 
            this.panelControl3.Controls.Add(this.simpleButton_SearchFreeDef);
            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(508, 40);
            this.panelControl3.TabIndex = 11;
            // 
            // simpleButton_SearchFreeDef
            // 
            this.simpleButton_SearchFreeDef.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.simpleButton_SearchFreeDef.Appearance.ForeColor = System.Drawing.Color.DarkMagenta;
            this.simpleButton_SearchFreeDef.Appearance.Options.UseFont = true;
            this.simpleButton_SearchFreeDef.Appearance.Options.UseForeColor = true;
            this.simpleButton_SearchFreeDef.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton_SearchFreeDef.Image")));
            this.simpleButton_SearchFreeDef.Location = new System.Drawing.Point(16, 8);
            this.simpleButton_SearchFreeDef.Name = "simpleButton_SearchFreeDef";
            this.simpleButton_SearchFreeDef.Size = new System.Drawing.Size(92, 26);
            this.simpleButton_SearchFreeDef.TabIndex = 8;
            this.simpleButton_SearchFreeDef.Tag = 4;
            this.simpleButton_SearchFreeDef.Text = "搜  索";
            this.simpleButton_SearchFreeDef.Click += new System.EventHandler(this.simpleButton_SearchFreeDef_Click);
            // 
            // xtraTabPage_MoreReport
            // 
            this.xtraTabPage_MoreReport.Appearance.PageClient.BackColor = System.Drawing.Color.WhiteSmoke;
            this.xtraTabPage_MoreReport.Appearance.PageClient.Options.UseBackColor = true;
            this.xtraTabPage_MoreReport.Controls.Add(this.splitContainerControl4);
            this.xtraTabPage_MoreReport.Name = "xtraTabPage_MoreReport";
            this.xtraTabPage_MoreReport.Size = new System.Drawing.Size(766, 511);
            this.xtraTabPage_MoreReport.Text = "晨检信息综合统计报表";
            // 
            // splitContainerControl4
            // 
            this.splitContainerControl4.Dock = System.Windows.Forms.DockStyle.Fill;
            this.splitContainerControl4.Location = new System.Drawing.Point(0, 0);
            this.splitContainerControl4.Name = "splitContainerControl4";
            this.splitContainerControl4.Panel1.Controls.Add(this.groupControl_FastSerReport);
            this.splitContainerControl4.Panel1.Text = "splitContainerControl4_Panel1";
            this.splitContainerControl4.Panel2.Controls.Add(this.groupControl_PreviewReport);
            this.splitContainerControl4.Panel2.Controls.Add(this.panelControl4);
            this.splitContainerControl4.Panel2.Text = "splitContainerControl4_Panel2";
            this.splitContainerControl4.Size = new System.Drawing.Size(766, 511);
            this.splitContainerControl4.SplitterPosition = 233;
            this.splitContainerControl4.TabIndex = 0;
            this.splitContainerControl4.Text = "splitContainerControl4";
            // 
            // groupControl_FastSerReport
            // 
            this.groupControl_FastSerReport.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.groupControl_FastSerReport.AppearanceCaption.Options.UseFont = true;
            this.groupControl_FastSerReport.Controls.Add(this.textEdit_EndDateReport);
            this.groupControl_FastSerReport.Controls.Add(this.textEdit_BegDateReport);
            this.groupControl_FastSerReport.Controls.Add(this.textEdit_NumberReport);
            this.groupControl_FastSerReport.Controls.Add(this.textEdit_NameReport);
            this.groupControl_FastSerReport.Controls.Add(this.notePanel_NumberReport);
            this.groupControl_FastSerReport.Controls.Add(this.notePanel_NameReport);
            this.groupControl_FastSerReport.Controls.Add(this.comboBoxEdit_PrintType);
            this.groupControl_FastSerReport.Controls.Add(this.notePanel_PrintType);
            this.groupControl_FastSerReport.Controls.Add(this.notePanel_EndDateReport);
            this.groupControl_FastSerReport.Controls.Add(this.notePanel_BegDateReport);
            this.groupControl_FastSerReport.Controls.Add(this.comboBoxEdit_ClassReport);
            this.groupControl_FastSerReport.Controls.Add(this.notePanel_ClassReport);
            this.groupControl_FastSerReport.Controls.Add(this.comboBoxEdit_GradeReport);
            this.groupControl_FastSerReport.Controls.Add(this.notePanel_GradeReport);
            this.groupControl_FastSerReport.Controls.Add(this.notePanel_SerCondReport);
            this.groupControl_FastSerReport.Dock = System.Windows.Forms.DockStyle.Top;
            this.groupControl_FastSerReport.Location = new System.Drawing.Point(0, 0);
            this.groupControl_FastSerReport.Name = "groupControl_FastSerReport";
            this.groupControl_FastSerReport.Size = new System.Drawing.Size(233, 304);
            this.groupControl_FastSerReport.TabIndex = 8;
            this.groupControl_FastSerReport.Text = "快速搜索";
            // 
            // textEdit_EndDateReport
            // 
            this.textEdit_EndDateReport.EditValue = "";
            this.textEdit_EndDateReport.Location = new System.Drawing.Point(104, 224);
            this.textEdit_EndDateReport.Name = "textEdit_EndDateReport";
            this.textEdit_EndDateReport.Properties.DisplayFormat.FormatString = "d";
            this.textEdit_EndDateReport.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
            this.textEdit_EndDateReport.Properties.Mask.EditMask = "yyyy-MM-dd";
            this.textEdit_EndDateReport.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.DateTime;
            this.textEdit_EndDateReport.Size = new System.Drawing.Size(88, 20);
            this.textEdit_EndDateReport.TabIndex = 21;
            // 
            // textEdit_BegDateReport
            // 
            this.textEdit_BegDateReport.EditValue = "";
            this.textEdit_BegDateReport.Location = new System.Drawing.Point(104, 192);
            this.textEdit_BegDateReport.Name = "textEdit_BegDateReport";
            this.textEdit_BegDateReport.Properties.DisplayFormat.FormatString = "d";
            this.textEdit_BegDateReport.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
            this.textEdit_BegDateReport.Properties.EditValueChangedFiringMode = DevExpress.XtraEditors.Controls.EditValueChangedFiringMode.Buffered;
            this.textEdit_BegDateReport.Properties.Mask.EditMask = "yyyy-MM-dd";
            this.textEdit_BegDateReport.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.DateTime;
            this.textEdit_BegDateReport.Size = new System.Drawing.Size(88, 20);
            this.textEdit_BegDateReport.TabIndex = 20;
            // 
            // textEdit_NumberReport
            // 
            this.textEdit_NumberReport.EditValue = "";
            this.textEdit_NumberReport.Location = new System.Drawing.Point(104, 160);
            this.textEdit_NumberReport.Name = "textEdit_NumberReport";
            this.textEdit_NumberReport.Size = new System.Drawing.Size(88, 20);
            this.textEdit_NumberReport.TabIndex = 19;
            // 
            // textEdit_NameReport
            // 
            this.textEdit_NameReport.EditValue = "";
            this.textEdit_NameReport.Location = new System.Drawing.Point(104, 128);
            this.textEdit_NameReport.Name = "textEdit_NameReport";
            this.textEdit_NameReport.Size = new System.Drawing.Size(88, 20);
            this.textEdit_NameReport.TabIndex = 18;
            // 
            // notePanel_NumberReport
            // 
            this.notePanel_NumberReport.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel_NumberReport.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel_NumberReport.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel_NumberReport.ForeColor = System.Drawing.Color.Black;
            this.notePanel_NumberReport.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_NumberReport.Location = new System.Drawing.Point(16, 160);
            this.notePanel_NumberReport.MaxRows = 5;
            this.notePanel_NumberReport.Name = "notePanel_NumberReport";
            this.notePanel_NumberReport.ParentAutoHeight = true;
            this.notePanel_NumberReport.Size = new System.Drawing.Size(80, 22);
            this.notePanel_NumberReport.TabIndex = 17;
            this.notePanel_NumberReport.TabStop = false;
            this.notePanel_NumberReport.Text = "  学  号:    ";
            // 
            // notePanel_NameReport
            // 
            this.notePanel_NameReport.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel_NameReport.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel_NameReport.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel_NameReport.ForeColor = System.Drawing.Color.Black;
            this.notePanel_NameReport.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_NameReport.Location = new System.Drawing.Point(16, 128);
            this.notePanel_NameReport.MaxRows = 5;
            this.notePanel_NameReport.Name = "notePanel_NameReport";
            this.notePanel_NameReport.ParentAutoHeight = true;
            this.notePanel_NameReport.Size = new System.Drawing.Size(80, 22);
            this.notePanel_NameReport.TabIndex = 16;
            this.notePanel_NameReport.TabStop = false;
            this.notePanel_NameReport.Text = "  姓  名:    ";
            // 
            // comboBoxEdit_PrintType
            // 
            this.comboBoxEdit_PrintType.EditValue = "年班统计表";
            this.comboBoxEdit_PrintType.Location = new System.Drawing.Point(104, 256);
            this.comboBoxEdit_PrintType.Name = "comboBoxEdit_PrintType";
            this.comboBoxEdit_PrintType.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.comboBoxEdit_PrintType.Properties.Items.AddRange(new object[] {
            "年班统计表",
            "年班柱图表",
            "年班饼图表",
            "个人统计表",
            "个人详细表"});
            this.comboBoxEdit_PrintType.Size = new System.Drawing.Size(88, 20);
            this.comboBoxEdit_PrintType.TabIndex = 15;
            // 
            // notePanel_PrintType
            // 
            this.notePanel_PrintType.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel_PrintType.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel_PrintType.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel_PrintType.ForeColor = System.Drawing.Color.Black;
            this.notePanel_PrintType.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_PrintType.Location = new System.Drawing.Point(16, 256);
            this.notePanel_PrintType.MaxRows = 5;
            this.notePanel_PrintType.Name = "notePanel_PrintType";
            this.notePanel_PrintType.ParentAutoHeight = true;
            this.notePanel_PrintType.Size = new System.Drawing.Size(80, 22);
            this.notePanel_PrintType.TabIndex = 14;
            this.notePanel_PrintType.TabStop = false;
            this.notePanel_PrintType.Text = "报表类型:    ";
            // 
            // notePanel_EndDateReport
            // 
            this.notePanel_EndDateReport.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel_EndDateReport.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel_EndDateReport.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel_EndDateReport.ForeColor = System.Drawing.Color.Black;
            this.notePanel_EndDateReport.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_EndDateReport.Location = new System.Drawing.Point(16, 224);
            this.notePanel_EndDateReport.MaxRows = 5;
            this.notePanel_EndDateReport.Name = "notePanel_EndDateReport";
            this.notePanel_EndDateReport.ParentAutoHeight = true;
            this.notePanel_EndDateReport.Size = new System.Drawing.Size(80, 22);
            this.notePanel_EndDateReport.TabIndex = 11;
            this.notePanel_EndDateReport.TabStop = false;
            this.notePanel_EndDateReport.Text = "结束时间:    ";
            // 
            // notePanel_BegDateReport
            // 
            this.notePanel_BegDateReport.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel_BegDateReport.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel_BegDateReport.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel_BegDateReport.ForeColor = System.Drawing.Color.Black;
            this.notePanel_BegDateReport.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_BegDateReport.Location = new System.Drawing.Point(16, 192);
            this.notePanel_BegDateReport.MaxRows = 5;
            this.notePanel_BegDateReport.Name = "notePanel_BegDateReport";
            this.notePanel_BegDateReport.ParentAutoHeight = true;
            this.notePanel_BegDateReport.Size = new System.Drawing.Size(80, 22);
            this.notePanel_BegDateReport.TabIndex = 10;
            this.notePanel_BegDateReport.TabStop = false;
            this.notePanel_BegDateReport.Text = "开始时间:    ";
            // 
            // comboBoxEdit_ClassReport
            // 
            this.comboBoxEdit_ClassReport.EditValue = "全部";
            this.comboBoxEdit_ClassReport.Location = new System.Drawing.Point(104, 96);
            this.comboBoxEdit_ClassReport.Name = "comboBoxEdit_ClassReport";
            this.comboBoxEdit_ClassReport.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.comboBoxEdit_ClassReport.Properties.Items.AddRange(new object[] {
            "全部"});
            this.comboBoxEdit_ClassReport.Size = new System.Drawing.Size(88, 20);
            this.comboBoxEdit_ClassReport.TabIndex = 9;
            this.comboBoxEdit_ClassReport.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit_ClassReport_SelectedIndexChanged);
            // 
            // notePanel_ClassReport
            // 
            this.notePanel_ClassReport.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel_ClassReport.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel_ClassReport.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel_ClassReport.ForeColor = System.Drawing.Color.Black;
            this.notePanel_ClassReport.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_ClassReport.Location = new System.Drawing.Point(16, 97);
            this.notePanel_ClassReport.MaxRows = 5;
            this.notePanel_ClassReport.Name = "notePanel_ClassReport";
            this.notePanel_ClassReport.ParentAutoHeight = true;
            this.notePanel_ClassReport.Size = new System.Drawing.Size(80, 22);
            this.notePanel_ClassReport.TabIndex = 8;
            this.notePanel_ClassReport.TabStop = false;
            this.notePanel_ClassReport.Text = "  班  级:    ";
            // 
            // comboBoxEdit_GradeReport
            // 
            this.comboBoxEdit_GradeReport.EditValue = "全部";
            this.comboBoxEdit_GradeReport.Location = new System.Drawing.Point(104, 64);
            this.comboBoxEdit_GradeReport.Name = "comboBoxEdit_GradeReport";
            this.comboBoxEdit_GradeReport.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.comboBoxEdit_GradeReport.Properties.Items.AddRange(new object[] {
            "全部"});
            this.comboBoxEdit_GradeReport.Size = new System.Drawing.Size(88, 20);
            this.comboBoxEdit_GradeReport.TabIndex = 7;
            this.comboBoxEdit_GradeReport.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit_GradeReport_SelectedIndexChanged);
            // 
            // notePanel_GradeReport
            // 
            this.notePanel_GradeReport.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel_GradeReport.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel_GradeReport.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel_GradeReport.ForeColor = System.Drawing.Color.Black;
            this.notePanel_GradeReport.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_GradeReport.Location = new System.Drawing.Point(16, 64);
            this.notePanel_GradeReport.MaxRows = 5;
            this.notePanel_GradeReport.Name = "notePanel_GradeReport";
            this.notePanel_GradeReport.ParentAutoHeight = true;
            this.notePanel_GradeReport.Size = new System.Drawing.Size(80, 22);
            this.notePanel_GradeReport.TabIndex = 6;
            this.notePanel_GradeReport.TabStop = false;
            this.notePanel_GradeReport.Text = "  年  级:    ";
            // 
            // notePanel_SerCondReport
            // 
            this.notePanel_SerCondReport.BackColor = System.Drawing.Color.LightGoldenrodYellow;
            this.notePanel_SerCondReport.Dock = System.Windows.Forms.DockStyle.Top;
            this.notePanel_SerCondReport.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.notePanel_SerCondReport.ForeColor = System.Drawing.Color.OrangeRed;
            this.notePanel_SerCondReport.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_SerCondReport.Location = new System.Drawing.Point(2, 22);
            this.notePanel_SerCondReport.MaxRows = 5;
            this.notePanel_SerCondReport.Name = "notePanel_SerCondReport";
            this.notePanel_SerCondReport.ParentAutoHeight = true;
            this.notePanel_SerCondReport.Size = new System.Drawing.Size(229, 23);
            this.notePanel_SerCondReport.TabIndex = 5;
            this.notePanel_SerCondReport.TabStop = false;
            this.notePanel_SerCondReport.Text = "您要搜索的条件?";
            // 
            // groupControl_PreviewReport
            // 
            this.groupControl_PreviewReport.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.groupControl_PreviewReport.Appearance.Options.UseFont = true;
            this.groupControl_PreviewReport.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.groupControl_PreviewReport.AppearanceCaption.Options.UseFont = true;
            this.groupControl_PreviewReport.Dock = System.Windows.Forms.DockStyle.Fill;
            this.groupControl_PreviewReport.Location = new System.Drawing.Point(0, 48);
            this.groupControl_PreviewReport.Name = "groupControl_PreviewReport";
            this.groupControl_PreviewReport.Size = new System.Drawing.Size(528, 463);
            this.groupControl_PreviewReport.TabIndex = 1;
            this.groupControl_PreviewReport.Text = "图形报表预览";
            this.groupControl_PreviewReport.Resize += new System.EventHandler(this.groupControl_PreviewReport_Resize);
            // 
            // panelControl4
            // 
            this.panelControl4.Controls.Add(this.simpleButton_PrintReport);
            this.panelControl4.Controls.Add(this.simpleButton_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(528, 48);
            this.panelControl4.TabIndex = 0;
            // 
            // simpleButton_PrintReport
            // 
            this.simpleButton_PrintReport.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.simpleButton_PrintReport.Appearance.ForeColor = System.Drawing.Color.DarkMagenta;
            this.simpleButton_PrintReport.Appearance.Options.UseFont = true;
            this.simpleButton_PrintReport.Appearance.Options.UseForeColor = true;
            this.simpleButton_PrintReport.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton_PrintReport.Image")));
            this.simpleButton_PrintReport.Location = new System.Drawing.Point(112, 8);
            this.simpleButton_PrintReport.Name = "simpleButton_PrintReport";
            this.simpleButton_PrintReport.Size = new System.Drawing.Size(120, 26);
            this.simpleButton_PrintReport.TabIndex = 4;
            this.simpleButton_PrintReport.Tag = 4;
            this.simpleButton_PrintReport.Text = "图形报表打印";
            this.simpleButton_PrintReport.Click += new System.EventHandler(this.simpleButton_PrintReport_Click);
            // 
            // simpleButton_PreviewReport
            // 
            this.simpleButton_PreviewReport.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.simpleButton_PreviewReport.Appearance.ForeColor = System.Drawing.Color.DarkMagenta;
            this.simpleButton_PreviewReport.Appearance.Options.UseFont = true;
            this.simpleButton_PreviewReport.Appearance.Options.UseForeColor = true;
            this.simpleButton_PreviewReport.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton_PreviewReport.Image")));
            this.simpleButton_PreviewReport.Location = new System.Drawing.Point(8, 8);
            this.simpleButton_PreviewReport.Name = "simpleButton_PreviewReport";
            this.simpleButton_PreviewReport.Size = new System.Drawing.Size(96, 26);
            this.simpleButton_PreviewReport.TabIndex = 3;
            this.simpleButton_PreviewReport.Tag = 4;
            this.simpleButton_PreviewReport.Text = "报表预览";
            this.simpleButton_PreviewReport.Click += new System.EventHandler(this.simpleButton_PreviewReport_Click);
            // 
            // xtraTabPage1
            // 
            this.xtraTabPage1.Controls.Add(this.panel1);
            this.xtraTabPage1.Name = "xtraTabPage1";
            this.xtraTabPage1.Size = new System.Drawing.Size(766, 511);
            this.xtraTabPage1.Text = "成长记录报表";
            // 
            // panel1
            // 
            this.panel1.Controls.Add(this.treeView1);
            this.panel1.Controls.Add(this.panel2);
            this.panel1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.panel1.Location = new System.Drawing.Point(0, 0);
            this.panel1.Name = "panel1";
            this.panel1.Size = new System.Drawing.Size(766, 511);
            this.panel1.TabIndex = 0;
            // 
            // treeView1
            // 
            this.treeView1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.treeView1.Location = new System.Drawing.Point(0, 31);
            this.treeView1.Name = "treeView1";
            this.treeView1.Size = new System.Drawing.Size(766, 480);
            this.treeView1.TabIndex = 1;
            this.treeView1.NodeMouseDoubleClick += new System.Windows.Forms.TreeNodeMouseClickEventHandler(this.treeView1_NodeMouseDoubleClick);
            // 
            // panel2
            // 
            this.panel2.Controls.Add(this.simpleButton1);
            this.panel2.Controls.Add(this.checkedComboBoxEdit1);
            this.panel2.Controls.Add(this.comboBox1);
            this.panel2.Controls.Add(this.label1);
            this.panel2.Controls.Add(this.progressBar1);
            this.panel2.Dock = System.Windows.Forms.DockStyle.Top;
            this.panel2.Location = new System.Drawing.Point(0, 0);
            this.panel2.Name = "panel2";
            this.panel2.Size = new System.Drawing.Size(766, 31);
            this.panel2.TabIndex = 0;
            // 
            // simpleButton1
            // 
            this.simpleButton1.Location = new System.Drawing.Point(547, 6);
            this.simpleButton1.Name = "simpleButton1";
            this.simpleButton1.Size = new System.Drawing.Size(75, 23);
            this.simpleButton1.TabIndex = 4;
            this.simpleButton1.Text = "生成报表";
            this.simpleButton1.Click += new System.EventHandler(this.simpleButton1_Click);
            // 
            // checkedComboBoxEdit1
            // 
            this.checkedComboBoxEdit1.EditValue = "";
            this.checkedComboBoxEdit1.Location = new System.Drawing.Point(470, 6);
            this.checkedComboBoxEdit1.Name = "checkedComboBoxEdit1";
            this.checkedComboBoxEdit1.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.checkedComboBoxEdit1.Properties.Items.AddRange(new DevExpress.XtraEditors.Controls.CheckedListBoxItem[] {
            new DevExpress.XtraEditors.Controls.CheckedListBoxItem("1月"),
            new DevExpress.XtraEditors.Controls.CheckedListBoxItem("2月"),
            new DevExpress.XtraEditors.Controls.CheckedListBoxItem("3月"),
            new DevExpress.XtraEditors.Controls.CheckedListBoxItem("4月"),
            new DevExpress.XtraEditors.Controls.CheckedListBoxItem("5月"),
            new DevExpress.XtraEditors.Controls.CheckedListBoxItem("6月"),
            new DevExpress.XtraEditors.Controls.CheckedListBoxItem("7月"),
            new DevExpress.XtraEditors.Controls.CheckedListBoxItem("8月"),
            new DevExpress.XtraEditors.Controls.CheckedListBoxItem("9月"),
            new DevExpress.XtraEditors.Controls.CheckedListBoxItem("10月"),
            new DevExpress.XtraEditors.Controls.CheckedListBoxItem("11月"),
            new DevExpress.XtraEditors.Controls.CheckedListBoxItem("12月")});
            this.checkedComboBoxEdit1.Size = new System.Drawing.Size(71, 20);
            this.checkedComboBoxEdit1.TabIndex = 3;
            // 
            // comboBox1
            // 
            this.comboBox1.FormattingEnabled = true;
            this.comboBox1.Items.AddRange(new object[] {
            "2014年",
            "2015年",
            "2016年",
            "2017年",
            "2018年",
            "2019年",
            "2020年"});
            this.comboBox1.Location = new System.Drawing.Point(325, 6);
            this.comboBox1.Name = "comboBox1";
            this.comboBox1.Size = new System.Drawing.Size(139, 20);
            this.comboBox1.TabIndex = 2;
            // 
            // label1
            // 
            this.label1.AutoSize = true;
            this.label1.Location = new System.Drawing.Point(628, 16);
            this.label1.Name = "label1";
            this.label1.Size = new System.Drawing.Size(41, 12);
            this.label1.TabIndex = 1;
            this.label1.Text = "label1";
            // 
            // progressBar1
            // 
            this.progressBar1.Location = new System.Drawing.Point(3, 3);
            this.progressBar1.Name = "progressBar1";
            this.progressBar1.Size = new System.Drawing.Size(316, 23);
            this.progressBar1.TabIndex = 0;
            // 
            // StudentMorningCheckInfo
            // 
            this.BackColor = System.Drawing.Color.WhiteSmoke;
            this.Controls.Add(this.xtraTabControl_CheckInfo);
            this.Name = "StudentMorningCheckInfo";
            this.Size = new System.Drawing.Size(772, 540);
            this.Load += new System.EventHandler(this.StudentMorningCheckInfo_Load);
            ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl_CheckInfo)).EndInit();
            this.xtraTabControl_CheckInfo.ResumeLayout(false);
            this.xtraTabPage_MorningCheck.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl1)).EndInit();
            this.splitContainerControl1.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.groupControl_InfoStaticMornig)).EndInit();
            this.groupControl_InfoStaticMornig.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_HaveArr.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_DayAmount.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_ShouldArr.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_Watch.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_Ill.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_Absence.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_Health.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_CurRecTimeBinding.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_OrigStateBinding.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.groupControl_FastSerMorning)).EndInit();
            this.groupControl_FastSerMorning.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.groupControl_TimeStatusMorning)).EndInit();
            this.groupControl_TimeStatusMorning.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.dateEdit_SpecificDateMorning.Properties.VistaTimeProperties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.dateEdit_SpecificDateMorning.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_EndTimeMorning.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_BegTimeMorning.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_TimeModeMorning.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_Status.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.groupControl_NumberNameMorning)).EndInit();
            this.groupControl_NumberNameMorning.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_NumberMorning.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_NameMorning.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.groupControl_GradeClassMorning)).EndInit();
            this.groupControl_GradeClassMorning.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_ClassMorning.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_GradeMorning.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridControl_MorningInfo)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemComboBox_Status)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
            this.panelControl1.ResumeLayout(false);
            this.xtraTabPage_BackHomeCheck.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl2)).EndInit();
            this.splitContainerControl2.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
            this.groupControl1.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_ShouldGo.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_HasnotGone.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_HasGone.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.groupControl_FastSerBack)).EndInit();
            this.groupControl_FastSerBack.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.groupControl_TimeCondBack)).EndInit();
            this.groupControl_TimeCondBack.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.dateEdit_SpecificDateBack.Properties.VistaTimeProperties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.dateEdit_SpecificDateBack.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_TimeModeBack.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_EndTimeBack.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_BegTimeBack.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_BackCond.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.groupControl_NumberNameBack)).EndInit();
            this.groupControl_NumberNameBack.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_NameBack.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_NumberBack.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.groupControl_GradeClassBack)).EndInit();
            this.groupControl_GradeClassBack.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_ClassBack.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_GradeBack.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridControl_BackInfo)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridView2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).EndInit();
            this.panelControl2.ResumeLayout(false);
            this.xtraTabPage_FreeDefinition.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl3)).EndInit();
            this.splitContainerControl3.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.groupControl_FastSerFreeDef)).EndInit();
            this.groupControl_FastSerFreeDef.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.groupControl_TimeStatusFreeDef)).EndInit();
            this.groupControl_TimeStatusFreeDef.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.dateEdit_SpecificDateFreeDef.Properties.VistaTimeProperties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.dateEdit_SpecificDateFreeDef.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_TimeModeFreeDef.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_EndTimeFreeDef.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_BegTimeFreeDef.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_CustomStatusDef.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.groupControl_NumberNameFreeDef)).EndInit();
            this.groupControl_NumberNameFreeDef.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_NameFreeDef.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_NumberFreeDef.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.groupControl_GradeClassFreeDef)).EndInit();
            this.groupControl_GradeClassFreeDef.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_ClassFreeDef.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_GradeFreeDef.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridControl_FreeDef)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridView3)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemComboBox_CustomState)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemComboBox1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.panelControl3)).EndInit();
            this.panelControl3.ResumeLayout(false);
            this.xtraTabPage_MoreReport.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl4)).EndInit();
            this.splitContainerControl4.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.groupControl_FastSerReport)).EndInit();
            this.groupControl_FastSerReport.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_EndDateReport.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_BegDateReport.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_NumberReport.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_NameReport.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_PrintType.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_ClassReport.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_GradeReport.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.groupControl_PreviewReport)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.panelControl4)).EndInit();
            this.panelControl4.ResumeLayout(false);
            this.xtraTabPage1.ResumeLayout(false);
            this.panel1.ResumeLayout(false);
            this.panel2.ResumeLayout(false);
            this.panel2.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.checkedComboBoxEdit1.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.components = new System.ComponentModel.Container();
     DevExpress.XtraEditors.DXErrorProvider.ConditionValidationRule conditionValidationRule1 = new DevExpress.XtraEditors.DXErrorProvider.ConditionValidationRule();
     DevExpress.XtraEditors.DXErrorProvider.ConditionValidationRule conditionValidationRule2 = new DevExpress.XtraEditors.DXErrorProvider.ConditionValidationRule();
     this.gridControlData = new DevExpress.XtraGrid.GridControl();
     this.sp001BindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.dsQueries = new RetirementCenter.DataSources.dsQueries();
     this.gridViewData = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colTotal = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemTextEditn2 = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.colBankMoney = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colAmantaMoney = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colMMashatId = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colpersonName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colSyndicate = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colSubCommitte = new DevExpress.XtraGrid.Columns.GridColumn();
     this.btnSearch = new DevExpress.XtraEditors.SimpleButton();
     this.layoutControl1 = new DevExpress.XtraLayout.LayoutControl();
     this.ccbeSarfType = new DevExpress.XtraEditors.CheckedComboBoxEdit();
     this.cDSarfTypeedadBindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.ccbeDof = new DevExpress.XtraEditors.CheckedComboBoxEdit();
     this.tBLDofatSarfBindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.btnPrintExport = new DevExpress.XtraEditors.SimpleButton();
     this.layoutControlGroup1 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlItem2 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem3 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem4 = new DevExpress.XtraLayout.LayoutControlItem();
     this.emptySpaceItem1 = new DevExpress.XtraLayout.EmptySpaceItem();
     this.layoutControlItem5 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem1 = new DevExpress.XtraLayout.LayoutControlItem();
     this.tBLDofatSarfTableAdapter = new RetirementCenter.DataSources.dsQueriesTableAdapters.TBLDofatSarfTableAdapter();
     this.dxvp = new DevExpress.XtraEditors.DXErrorProvider.DXValidationProvider(this.components);
     this.sp_001TableAdapter = new RetirementCenter.DataSources.dsQueriesTableAdapters.sp_001TableAdapter();
     this.cDSarfTypeedadTableAdapter = new RetirementCenter.DataSources.dsQueriesTableAdapters.CDSarfTypeedadTableAdapter();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlData)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.sp001BindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dsQueries)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewData)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEditn2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl1)).BeginInit();
     this.layoutControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ccbeSarfType.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cDSarfTypeedadBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ccbeDof.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tBLDofatSarfBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dxvp)).BeginInit();
     this.SuspendLayout();
     //
     // gridControlData
     //
     this.gridControlData.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.gridControlData.DataSource = this.sp001BindingSource;
     this.gridControlData.EmbeddedNavigator.Buttons.CancelEdit.Visible = false;
     this.gridControlData.EmbeddedNavigator.Buttons.Edit.Visible = false;
     this.gridControlData.EmbeddedNavigator.Buttons.EndEdit.Visible = false;
     this.gridControlData.EmbeddedNavigator.Buttons.Remove.Visible = false;
     this.gridControlData.EmbeddedNavigator.TextStringFormat = "صف {0} من {1}";
     this.gridControlData.Location = new System.Drawing.Point(12, 38);
     this.gridControlData.MainView = this.gridViewData;
     this.gridControlData.Name = "gridControlData";
     this.gridControlData.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemTextEditn2});
     this.gridControlData.Size = new System.Drawing.Size(914, 523);
     this.gridControlData.TabIndex = 1;
     this.gridControlData.UseEmbeddedNavigator = true;
     this.gridControlData.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewData});
     //
     // sp001BindingSource
     //
     this.sp001BindingSource.DataMember = "sp_001";
     this.sp001BindingSource.DataSource = this.dsQueries;
     //
     // dsQueries
     //
     this.dsQueries.DataSetName = "dsQueries";
     this.dsQueries.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
     //
     // gridViewData
     //
     this.gridViewData.Appearance.ColumnFilterButton.BackColor = System.Drawing.Color.DarkGray;
     this.gridViewData.Appearance.ColumnFilterButton.BorderColor = System.Drawing.Color.DarkGray;
     this.gridViewData.Appearance.ColumnFilterButton.ForeColor = System.Drawing.Color.DimGray;
     this.gridViewData.Appearance.ColumnFilterButton.Options.UseBackColor = true;
     this.gridViewData.Appearance.ColumnFilterButton.Options.UseBorderColor = true;
     this.gridViewData.Appearance.ColumnFilterButton.Options.UseForeColor = true;
     this.gridViewData.Appearance.ColumnFilterButtonActive.BackColor = System.Drawing.Color.DarkGray;
     this.gridViewData.Appearance.ColumnFilterButtonActive.BorderColor = System.Drawing.Color.DarkGray;
     this.gridViewData.Appearance.ColumnFilterButtonActive.ForeColor = System.Drawing.Color.Gainsboro;
     this.gridViewData.Appearance.ColumnFilterButtonActive.Options.UseBackColor = true;
     this.gridViewData.Appearance.ColumnFilterButtonActive.Options.UseBorderColor = true;
     this.gridViewData.Appearance.ColumnFilterButtonActive.Options.UseForeColor = true;
     this.gridViewData.Appearance.Empty.BackColor = System.Drawing.Color.DimGray;
     this.gridViewData.Appearance.Empty.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.BackwardDiagonal;
     this.gridViewData.Appearance.Empty.Options.UseBackColor = true;
     this.gridViewData.Appearance.EvenRow.BackColor = System.Drawing.Color.White;
     this.gridViewData.Appearance.EvenRow.Options.UseBackColor = true;
     this.gridViewData.Appearance.FilterCloseButton.BackColor = System.Drawing.Color.Gray;
     this.gridViewData.Appearance.FilterCloseButton.BorderColor = System.Drawing.Color.Gray;
     this.gridViewData.Appearance.FilterCloseButton.Options.UseBackColor = true;
     this.gridViewData.Appearance.FilterCloseButton.Options.UseBorderColor = true;
     this.gridViewData.Appearance.FilterPanel.BackColor = System.Drawing.Color.Gray;
     this.gridViewData.Appearance.FilterPanel.ForeColor = System.Drawing.Color.Black;
     this.gridViewData.Appearance.FilterPanel.Options.UseBackColor = true;
     this.gridViewData.Appearance.FilterPanel.Options.UseForeColor = true;
     this.gridViewData.Appearance.FocusedRow.BackColor = System.Drawing.Color.Black;
     this.gridViewData.Appearance.FocusedRow.ForeColor = System.Drawing.Color.White;
     this.gridViewData.Appearance.FocusedRow.Options.UseBackColor = true;
     this.gridViewData.Appearance.FocusedRow.Options.UseForeColor = true;
     this.gridViewData.Appearance.FooterPanel.BackColor = System.Drawing.Color.DarkGray;
     this.gridViewData.Appearance.FooterPanel.BorderColor = System.Drawing.Color.DarkGray;
     this.gridViewData.Appearance.FooterPanel.Options.UseBackColor = true;
     this.gridViewData.Appearance.FooterPanel.Options.UseBorderColor = true;
     this.gridViewData.Appearance.FooterPanel.Options.UseTextOptions = true;
     this.gridViewData.Appearance.FooterPanel.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridViewData.Appearance.GroupButton.BackColor = System.Drawing.Color.Silver;
     this.gridViewData.Appearance.GroupButton.BorderColor = System.Drawing.Color.Silver;
     this.gridViewData.Appearance.GroupButton.Options.UseBackColor = true;
     this.gridViewData.Appearance.GroupButton.Options.UseBorderColor = true;
     this.gridViewData.Appearance.GroupFooter.BackColor = System.Drawing.Color.Silver;
     this.gridViewData.Appearance.GroupFooter.BorderColor = System.Drawing.Color.Silver;
     this.gridViewData.Appearance.GroupFooter.Options.UseBackColor = true;
     this.gridViewData.Appearance.GroupFooter.Options.UseBorderColor = true;
     this.gridViewData.Appearance.GroupPanel.BackColor = System.Drawing.Color.DimGray;
     this.gridViewData.Appearance.GroupPanel.ForeColor = System.Drawing.Color.Gray;
     this.gridViewData.Appearance.GroupPanel.Options.UseBackColor = true;
     this.gridViewData.Appearance.GroupPanel.Options.UseForeColor = true;
     this.gridViewData.Appearance.GroupRow.BackColor = System.Drawing.Color.Silver;
     this.gridViewData.Appearance.GroupRow.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
     this.gridViewData.Appearance.GroupRow.Options.UseBackColor = true;
     this.gridViewData.Appearance.GroupRow.Options.UseFont = true;
     this.gridViewData.Appearance.HeaderPanel.BackColor = System.Drawing.Color.DarkGray;
     this.gridViewData.Appearance.HeaderPanel.BorderColor = System.Drawing.Color.DarkGray;
     this.gridViewData.Appearance.HeaderPanel.Options.UseBackColor = true;
     this.gridViewData.Appearance.HeaderPanel.Options.UseBorderColor = true;
     this.gridViewData.Appearance.HideSelectionRow.BackColor = System.Drawing.Color.LightSlateGray;
     this.gridViewData.Appearance.HideSelectionRow.Options.UseBackColor = true;
     this.gridViewData.Appearance.HorzLine.BackColor = System.Drawing.Color.LightGray;
     this.gridViewData.Appearance.HorzLine.Options.UseBackColor = true;
     this.gridViewData.Appearance.OddRow.BackColor = System.Drawing.Color.WhiteSmoke;
     this.gridViewData.Appearance.OddRow.Options.UseBackColor = true;
     this.gridViewData.Appearance.Preview.BackColor = System.Drawing.Color.Gainsboro;
     this.gridViewData.Appearance.Preview.ForeColor = System.Drawing.Color.DimGray;
     this.gridViewData.Appearance.Preview.Options.UseBackColor = true;
     this.gridViewData.Appearance.Preview.Options.UseForeColor = true;
     this.gridViewData.Appearance.Row.BackColor = System.Drawing.Color.White;
     this.gridViewData.Appearance.Row.Options.UseBackColor = true;
     this.gridViewData.Appearance.RowSeparator.BackColor = System.Drawing.Color.DimGray;
     this.gridViewData.Appearance.RowSeparator.Options.UseBackColor = true;
     this.gridViewData.Appearance.SelectedRow.BackColor = System.Drawing.Color.DimGray;
     this.gridViewData.Appearance.SelectedRow.Options.UseBackColor = true;
     this.gridViewData.Appearance.VertLine.BackColor = System.Drawing.Color.LightGray;
     this.gridViewData.Appearance.VertLine.Options.UseBackColor = true;
     this.gridViewData.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colTotal,
     this.colBankMoney,
     this.colAmantaMoney,
     this.colMMashatId,
     this.colpersonName,
     this.colSyndicate,
     this.colSubCommitte});
     this.gridViewData.GridControl = this.gridControlData;
     this.gridViewData.Name = "gridViewData";
     this.gridViewData.OptionsBehavior.ReadOnly = true;
     this.gridViewData.OptionsCustomization.AllowRowSizing = true;
     this.gridViewData.OptionsFind.AlwaysVisible = true;
     this.gridViewData.OptionsPrint.EnableAppearanceEvenRow = true;
     this.gridViewData.OptionsPrint.EnableAppearanceOddRow = true;
     this.gridViewData.OptionsView.ColumnAutoWidth = false;
     this.gridViewData.OptionsView.EnableAppearanceEvenRow = true;
     this.gridViewData.OptionsView.EnableAppearanceOddRow = true;
     this.gridViewData.OptionsView.ShowAutoFilterRow = true;
     this.gridViewData.OptionsView.ShowDetailButtons = false;
     this.gridViewData.OptionsView.ShowFooter = true;
     //
     // colTotal
     //
     this.colTotal.AppearanceCell.Options.UseTextOptions = true;
     this.colTotal.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colTotal.AppearanceHeader.Options.UseTextOptions = true;
     this.colTotal.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colTotal.Caption = "اجمالي الدفعات";
     this.colTotal.ColumnEdit = this.repositoryItemTextEditn2;
     this.colTotal.FieldName = "Total";
     this.colTotal.Name = "colTotal";
     this.colTotal.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] {
     new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Sum, "Total", "{0:0.##}")});
     this.colTotal.Visible = true;
     this.colTotal.VisibleIndex = 4;
     this.colTotal.Width = 91;
     //
     // repositoryItemTextEditn2
     //
     this.repositoryItemTextEditn2.AutoHeight = false;
     this.repositoryItemTextEditn2.DisplayFormat.FormatString = "n2";
     this.repositoryItemTextEditn2.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemTextEditn2.EditFormat.FormatString = "n2";
     this.repositoryItemTextEditn2.EditFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemTextEditn2.Mask.EditMask = "n2";
     this.repositoryItemTextEditn2.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.repositoryItemTextEditn2.Name = "repositoryItemTextEditn2";
     //
     // colBankMoney
     //
     this.colBankMoney.AppearanceCell.Options.UseTextOptions = true;
     this.colBankMoney.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colBankMoney.AppearanceHeader.Options.UseTextOptions = true;
     this.colBankMoney.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colBankMoney.Caption = "اجمالي البنك";
     this.colBankMoney.ColumnEdit = this.repositoryItemTextEditn2;
     this.colBankMoney.FieldName = "BankMoney";
     this.colBankMoney.Name = "colBankMoney";
     this.colBankMoney.OptionsColumn.ReadOnly = true;
     this.colBankMoney.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] {
     new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Sum, "BankMoney", "{0:0.##}")});
     this.colBankMoney.Visible = true;
     this.colBankMoney.VisibleIndex = 5;
     this.colBankMoney.Width = 79;
     //
     // colAmantaMoney
     //
     this.colAmantaMoney.AppearanceCell.Options.UseTextOptions = true;
     this.colAmantaMoney.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colAmantaMoney.AppearanceHeader.Options.UseTextOptions = true;
     this.colAmantaMoney.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colAmantaMoney.Caption = "اجمالي الامانات";
     this.colAmantaMoney.ColumnEdit = this.repositoryItemTextEditn2;
     this.colAmantaMoney.FieldName = "AmantaMoney";
     this.colAmantaMoney.Name = "colAmantaMoney";
     this.colAmantaMoney.OptionsColumn.ReadOnly = true;
     this.colAmantaMoney.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] {
     new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Sum, "AmantaMoney", "{0:0.##}")});
     this.colAmantaMoney.Visible = true;
     this.colAmantaMoney.VisibleIndex = 6;
     this.colAmantaMoney.Width = 90;
     //
     // colMMashatId
     //
     this.colMMashatId.AppearanceCell.Options.UseTextOptions = true;
     this.colMMashatId.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colMMashatId.AppearanceHeader.Options.UseTextOptions = true;
     this.colMMashatId.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colMMashatId.Caption = "كود";
     this.colMMashatId.FieldName = "MMashatId";
     this.colMMashatId.Name = "colMMashatId";
     this.colMMashatId.Visible = true;
     this.colMMashatId.VisibleIndex = 0;
     //
     // colpersonName
     //
     this.colpersonName.AppearanceCell.Options.UseTextOptions = true;
     this.colpersonName.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colpersonName.AppearanceHeader.Options.UseTextOptions = true;
     this.colpersonName.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colpersonName.Caption = "الاسم";
     this.colpersonName.FieldName = "MMashatName";
     this.colpersonName.Name = "colpersonName";
     this.colpersonName.Visible = true;
     this.colpersonName.VisibleIndex = 1;
     //
     // colSyndicate
     //
     this.colSyndicate.AppearanceCell.Options.UseTextOptions = true;
     this.colSyndicate.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSyndicate.AppearanceHeader.Options.UseTextOptions = true;
     this.colSyndicate.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSyndicate.Caption = "الفرعية";
     this.colSyndicate.FieldName = "Syndicate";
     this.colSyndicate.Name = "colSyndicate";
     this.colSyndicate.Visible = true;
     this.colSyndicate.VisibleIndex = 2;
     //
     // colSubCommitte
     //
     this.colSubCommitte.AppearanceCell.Options.UseTextOptions = true;
     this.colSubCommitte.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSubCommitte.AppearanceHeader.Options.UseTextOptions = true;
     this.colSubCommitte.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSubCommitte.Caption = "اللجنة";
     this.colSubCommitte.FieldName = "SubCommitte";
     this.colSubCommitte.Name = "colSubCommitte";
     this.colSubCommitte.Visible = true;
     this.colSubCommitte.VisibleIndex = 3;
     //
     // btnSearch
     //
     this.btnSearch.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.btnSearch.Image = global::RetirementCenter.Properties.Resources.apply_16x16;
     this.btnSearch.Location = new System.Drawing.Point(252, 12);
     this.btnSearch.Name = "btnSearch";
     this.btnSearch.Size = new System.Drawing.Size(114, 22);
     this.btnSearch.StyleController = this.layoutControl1;
     this.btnSearch.TabIndex = 4;
     this.btnSearch.Text = "تنفيذ";
     this.btnSearch.Click += new System.EventHandler(this.btnSearch_Click);
     //
     // layoutControl1
     //
     this.layoutControl1.Controls.Add(this.ccbeSarfType);
     this.layoutControl1.Controls.Add(this.ccbeDof);
     this.layoutControl1.Controls.Add(this.btnSearch);
     this.layoutControl1.Controls.Add(this.btnPrintExport);
     this.layoutControl1.Controls.Add(this.gridControlData);
     this.layoutControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.layoutControl1.Location = new System.Drawing.Point(0, 0);
     this.layoutControl1.Name = "layoutControl1";
     this.layoutControl1.OptionsCustomizationForm.DesignTimeCustomizationFormPositionAndSize = new System.Drawing.Rectangle(982, 382, 250, 350);
     this.layoutControl1.Root = this.layoutControlGroup1;
     this.layoutControl1.Size = new System.Drawing.Size(938, 573);
     this.layoutControl1.TabIndex = 5;
     this.layoutControl1.Text = "layoutControl1";
     //
     // ccbeSarfType
     //
     this.ccbeSarfType.Location = new System.Drawing.Point(370, 12);
     this.ccbeSarfType.Name = "ccbeSarfType";
     this.ccbeSarfType.Properties.AllowMultiSelect = true;
     this.ccbeSarfType.Properties.AllowNullInput = DevExpress.Utils.DefaultBoolean.False;
     this.ccbeSarfType.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.ccbeSarfType.Properties.DataSource = this.cDSarfTypeedadBindingSource;
     this.ccbeSarfType.Properties.DisplayMember = "SarfTypeedad";
     this.ccbeSarfType.Properties.ValueMember = "SarfTypeedadId";
     this.ccbeSarfType.Size = new System.Drawing.Size(205, 20);
     this.ccbeSarfType.StyleController = this.layoutControl1;
     this.ccbeSarfType.TabIndex = 5;
     conditionValidationRule1.ConditionOperator = DevExpress.XtraEditors.DXErrorProvider.ConditionOperator.IsNotBlank;
     conditionValidationRule1.ErrorText = "This value is not valid";
     this.dxvp.SetValidationRule(this.ccbeSarfType, conditionValidationRule1);
     this.ccbeSarfType.EditValueChanged += new System.EventHandler(this.ccbeDof_EditValueChanged);
     //
     // cDSarfTypeedadBindingSource
     //
     this.cDSarfTypeedadBindingSource.DataMember = "CDSarfTypeedad";
     this.cDSarfTypeedadBindingSource.DataSource = this.dsQueries;
     //
     // ccbeDof
     //
     this.ccbeDof.Location = new System.Drawing.Point(611, 12);
     this.ccbeDof.Name = "ccbeDof";
     this.ccbeDof.Properties.AllowMultiSelect = true;
     this.ccbeDof.Properties.AllowNullInput = DevExpress.Utils.DefaultBoolean.False;
     this.ccbeDof.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.ccbeDof.Properties.DataSource = this.tBLDofatSarfBindingSource;
     this.ccbeDof.Properties.DisplayMember = "DofatSarf";
     this.ccbeDof.Properties.ValueMember = "DofatSarfId";
     this.ccbeDof.Size = new System.Drawing.Size(283, 20);
     this.ccbeDof.StyleController = this.layoutControl1;
     this.ccbeDof.TabIndex = 5;
     conditionValidationRule2.ConditionOperator = DevExpress.XtraEditors.DXErrorProvider.ConditionOperator.IsNotBlank;
     conditionValidationRule2.ErrorText = "This value is not valid";
     this.dxvp.SetValidationRule(this.ccbeDof, conditionValidationRule2);
     this.ccbeDof.EditValueChanged += new System.EventHandler(this.ccbeDof_EditValueChanged);
     //
     // tBLDofatSarfBindingSource
     //
     this.tBLDofatSarfBindingSource.DataMember = "TBLDofatSarf";
     this.tBLDofatSarfBindingSource.DataSource = this.dsQueries;
     //
     // btnPrintExport
     //
     this.btnPrintExport.Image = global::RetirementCenter.Properties.Resources.Print;
     this.btnPrintExport.Location = new System.Drawing.Point(12, 12);
     this.btnPrintExport.Name = "btnPrintExport";
     this.btnPrintExport.Size = new System.Drawing.Size(94, 22);
     this.btnPrintExport.StyleController = this.layoutControl1;
     this.btnPrintExport.TabIndex = 0;
     this.btnPrintExport.Text = "طباعه و تصدير";
     this.btnPrintExport.Click += new System.EventHandler(this.btnPrintExport_Click);
     //
     // layoutControlGroup1
     //
     this.layoutControlGroup1.CustomizationFormText = "Root";
     this.layoutControlGroup1.EnableIndentsWithoutBorders = DevExpress.Utils.DefaultBoolean.True;
     this.layoutControlGroup1.GroupBordersVisible = false;
     this.layoutControlGroup1.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.layoutControlItem2,
     this.layoutControlItem3,
     this.layoutControlItem4,
     this.emptySpaceItem1,
     this.layoutControlItem5,
     this.layoutControlItem1});
     this.layoutControlGroup1.Location = new System.Drawing.Point(0, 0);
     this.layoutControlGroup1.Name = "Root";
     this.layoutControlGroup1.Size = new System.Drawing.Size(938, 573);
     this.layoutControlGroup1.Text = "Root";
     this.layoutControlGroup1.TextVisible = false;
     //
     // layoutControlItem2
     //
     this.layoutControlItem2.Control = this.btnSearch;
     this.layoutControlItem2.CustomizationFormText = "layoutControlItem2";
     this.layoutControlItem2.Location = new System.Drawing.Point(240, 0);
     this.layoutControlItem2.Name = "layoutControlItem2";
     this.layoutControlItem2.Size = new System.Drawing.Size(118, 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.btnPrintExport;
     this.layoutControlItem3.CustomizationFormText = "layoutControlItem3";
     this.layoutControlItem3.Location = new System.Drawing.Point(0, 0);
     this.layoutControlItem3.Name = "layoutControlItem3";
     this.layoutControlItem3.Size = new System.Drawing.Size(98, 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.gridControlData;
     this.layoutControlItem4.CustomizationFormText = "layoutControlItem4";
     this.layoutControlItem4.Location = new System.Drawing.Point(0, 26);
     this.layoutControlItem4.Name = "layoutControlItem4";
     this.layoutControlItem4.Size = new System.Drawing.Size(918, 527);
     this.layoutControlItem4.Text = "layoutControlItem4";
     this.layoutControlItem4.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem4.TextToControlDistance = 0;
     this.layoutControlItem4.TextVisible = false;
     //
     // emptySpaceItem1
     //
     this.emptySpaceItem1.AllowHotTrack = false;
     this.emptySpaceItem1.CustomizationFormText = "emptySpaceItem1";
     this.emptySpaceItem1.Location = new System.Drawing.Point(98, 0);
     this.emptySpaceItem1.Name = "emptySpaceItem1";
     this.emptySpaceItem1.Size = new System.Drawing.Size(142, 26);
     this.emptySpaceItem1.Text = "emptySpaceItem1";
     this.emptySpaceItem1.TextSize = new System.Drawing.Size(0, 0);
     //
     // layoutControlItem5
     //
     this.layoutControlItem5.AppearanceItemCaption.Options.UseTextOptions = true;
     this.layoutControlItem5.AppearanceItemCaption.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.layoutControlItem5.Control = this.ccbeDof;
     this.layoutControlItem5.CustomizationFormText = "الدفعة";
     this.layoutControlItem5.Location = new System.Drawing.Point(599, 0);
     this.layoutControlItem5.Name = "layoutControlItem5";
     this.layoutControlItem5.Size = new System.Drawing.Size(319, 26);
     this.layoutControlItem5.Text = "الدفعة";
     this.layoutControlItem5.TextLocation = DevExpress.Utils.Locations.Right;
     this.layoutControlItem5.TextSize = new System.Drawing.Size(29, 13);
     //
     // layoutControlItem1
     //
     this.layoutControlItem1.AppearanceItemCaption.Options.UseTextOptions = true;
     this.layoutControlItem1.AppearanceItemCaption.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.layoutControlItem1.Control = this.ccbeSarfType;
     this.layoutControlItem1.CustomizationFormText = "layoutControlItem1";
     this.layoutControlItem1.Location = new System.Drawing.Point(358, 0);
     this.layoutControlItem1.Name = "layoutControlItem1";
     this.layoutControlItem1.Size = new System.Drawing.Size(241, 26);
     this.layoutControlItem1.Text = "النوع";
     this.layoutControlItem1.TextLocation = DevExpress.Utils.Locations.Right;
     this.layoutControlItem1.TextSize = new System.Drawing.Size(29, 13);
     //
     // tBLDofatSarfTableAdapter
     //
     this.tBLDofatSarfTableAdapter.ClearBeforeFill = true;
     //
     // sp_001TableAdapter
     //
     this.sp_001TableAdapter.ClearBeforeFill = true;
     //
     // cDSarfTypeedadTableAdapter
     //
     this.cDSarfTypeedadTableAdapter.ClearBeforeFill = true;
     //
     // Qry101Frm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(938, 573);
     this.Controls.Add(this.layoutControl1);
     this.Name = "Qry101Frm";
     this.Text = "اجمالي الدفعات و الامانات و البنك - ورثة";
     this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
     this.Load += new System.EventHandler(this.Qry06Frm_Load);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlData)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.sp001BindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dsQueries)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewData)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEditn2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl1)).EndInit();
     this.layoutControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ccbeSarfType.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cDSarfTypeedadBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ccbeDof.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tBLDofatSarfBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dxvp)).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.panelControl1 = new DevExpress.XtraEditors.PanelControl();
     this.btnGridLayout = new System.Windows.Forms.Button();
     this.btnThemNV = new System.Windows.Forms.Button();
     this.lblChucVu = new System.Windows.Forms.Label();
     this.cbmChucVu = new DevExpress.XtraEditors.CheckedComboBoxEdit();
     this.txtTimKiem = new System.Windows.Forms.TextBox();
     this.lblTimKiem = new System.Windows.Forms.Label();
     this.splitContainerControl1 = new DevExpress.XtraEditors.SplitContainerControl();
     this.panelControl2 = new DevExpress.XtraEditors.PanelControl();
     this.panelControl3 = new DevExpress.XtraEditors.PanelControl();
     this.btnTimKiem = new System.Windows.Forms.Button();
     this.filterControl = new DevExpress.XtraEditors.FilterControl();
     this.flpNhanVien = new System.Windows.Forms.FlowLayoutPanel();
     this.grdNhanVien = new DevExpress.XtraGrid.GridControl();
     this.gridViewNhanVien = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colMANV = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colMaCV = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colTenNV = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colGioiTinh = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colCMND = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colDiaChi = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colDienThoai = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colNgayVaoLam = new DevExpress.XtraGrid.Columns.GridColumn();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
     this.panelControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cbmChucVu.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl1)).BeginInit();
     this.splitContainerControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).BeginInit();
     this.panelControl2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl3)).BeginInit();
     this.panelControl3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grdNhanVien)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewNhanVien)).BeginInit();
     this.SuspendLayout();
     //
     // panelControl1
     //
     this.panelControl1.Controls.Add(this.btnGridLayout);
     this.panelControl1.Controls.Add(this.btnThemNV);
     this.panelControl1.Controls.Add(this.lblChucVu);
     this.panelControl1.Controls.Add(this.cbmChucVu);
     this.panelControl1.Controls.Add(this.txtTimKiem);
     this.panelControl1.Controls.Add(this.lblTimKiem);
     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(1282, 50);
     this.panelControl1.TabIndex = 0;
     //
     // btnGridLayout
     //
     this.btnGridLayout.Location = new System.Drawing.Point(5, 15);
     this.btnGridLayout.Name = "btnGridLayout";
     this.btnGridLayout.Size = new System.Drawing.Size(98, 28);
     this.btnGridLayout.TabIndex = 103;
     this.btnGridLayout.Text = "Hiển thị lưới";
     this.btnGridLayout.UseVisualStyleBackColor = true;
     this.btnGridLayout.Click += new System.EventHandler(this.btnGridLayout_Click);
     //
     // btnThemNV
     //
     this.btnThemNV.Location = new System.Drawing.Point(109, 15);
     this.btnThemNV.Name = "btnThemNV";
     this.btnThemNV.Size = new System.Drawing.Size(98, 28);
     this.btnThemNV.TabIndex = 101;
     this.btnThemNV.Text = "Thêm nhân viên";
     this.btnThemNV.UseVisualStyleBackColor = true;
     this.btnThemNV.Click += new System.EventHandler(this.btnThemNV_Click);
     //
     // lblChucVu
     //
     this.lblChucVu.AutoSize = true;
     this.lblChucVu.Location = new System.Drawing.Point(335, 27);
     this.lblChucVu.Name = "lblChucVu";
     this.lblChucVu.Size = new System.Drawing.Size(47, 13);
     this.lblChucVu.TabIndex = 100;
     this.lblChucVu.Text = "Chức vụ";
     //
     // cbmChucVu
     //
     this.cbmChucVu.EditValue = "";
     this.cbmChucVu.Location = new System.Drawing.Point(388, 20);
     this.cbmChucVu.Name = "cbmChucVu";
     this.cbmChucVu.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cbmChucVu.Size = new System.Drawing.Size(255, 20);
     this.cbmChucVu.TabIndex = 2;
     this.cbmChucVu.EditValueChanged += new System.EventHandler(this.cbmcmbChucVu_EditValueChanged);
     //
     // txtTimKiem
     //
     this.txtTimKiem.Location = new System.Drawing.Point(702, 20);
     this.txtTimKiem.Name = "txtTimKiem";
     this.txtTimKiem.Size = new System.Drawing.Size(254, 21);
     this.txtTimKiem.TabIndex = 1;
     this.txtTimKiem.TextChanged += new System.EventHandler(this.txtTimKiem_TextChanged);
     //
     // lblTimKiem
     //
     this.lblTimKiem.AutoSize = true;
     this.lblTimKiem.Location = new System.Drawing.Point(649, 27);
     this.lblTimKiem.Name = "lblTimKiem";
     this.lblTimKiem.Size = new System.Drawing.Size(47, 13);
     this.lblTimKiem.TabIndex = 0;
     this.lblTimKiem.Text = "Tìm kiếm";
     //
     // splitContainerControl1
     //
     this.splitContainerControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.splitContainerControl1.Location = new System.Drawing.Point(0, 50);
     this.splitContainerControl1.Name = "splitContainerControl1";
     this.splitContainerControl1.Panel1.Controls.Add(this.panelControl2);
     this.splitContainerControl1.Panel1.Text = "Panel1";
     this.splitContainerControl1.Panel2.Controls.Add(this.flpNhanVien);
     this.splitContainerControl1.Panel2.Controls.Add(this.grdNhanVien);
     this.splitContainerControl1.Panel2.Text = "Panel2";
     this.splitContainerControl1.Size = new System.Drawing.Size(1282, 541);
     this.splitContainerControl1.SplitterPosition = 332;
     this.splitContainerControl1.TabIndex = 1;
     this.splitContainerControl1.Text = "splitContainerControl1";
     //
     // panelControl2
     //
     this.panelControl2.Controls.Add(this.panelControl3);
     this.panelControl2.Controls.Add(this.filterControl);
     this.panelControl2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panelControl2.Location = new System.Drawing.Point(0, 0);
     this.panelControl2.Name = "panelControl2";
     this.panelControl2.Size = new System.Drawing.Size(332, 541);
     this.panelControl2.TabIndex = 0;
     //
     // panelControl3
     //
     this.panelControl3.Controls.Add(this.btnTimKiem);
     this.panelControl3.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panelControl3.Location = new System.Drawing.Point(2, 486);
     this.panelControl3.Name = "panelControl3";
     this.panelControl3.Size = new System.Drawing.Size(328, 53);
     this.panelControl3.TabIndex = 1;
     //
     // btnTimKiem
     //
     this.btnTimKiem.Location = new System.Drawing.Point(9, 5);
     this.btnTimKiem.Name = "btnTimKiem";
     this.btnTimKiem.Size = new System.Drawing.Size(112, 31);
     this.btnTimKiem.TabIndex = 0;
     this.btnTimKiem.Text = "Tìm kiếm";
     this.btnTimKiem.UseVisualStyleBackColor = true;
     this.btnTimKiem.Click += new System.EventHandler(this.btnTimKiem_Click);
     //
     // filterControl
     //
     this.filterControl.Cursor = System.Windows.Forms.Cursors.Arrow;
     this.filterControl.Dock = System.Windows.Forms.DockStyle.Top;
     this.filterControl.Location = new System.Drawing.Point(2, 2);
     this.filterControl.Name = "filterControl";
     this.filterControl.Size = new System.Drawing.Size(328, 484);
     this.filterControl.TabIndex = 0;
     this.filterControl.Text = "filterControl1";
     //
     // flpNhanVien
     //
     this.flpNhanVien.AutoScroll = true;
     this.flpNhanVien.BackColor = System.Drawing.Color.White;
     this.flpNhanVien.Dock = System.Windows.Forms.DockStyle.Fill;
     this.flpNhanVien.Location = new System.Drawing.Point(0, 0);
     this.flpNhanVien.Name = "flpNhanVien";
     this.flpNhanVien.Size = new System.Drawing.Size(945, 541);
     this.flpNhanVien.TabIndex = 2;
     this.flpNhanVien.Visible = false;
     //
     // grdNhanVien
     //
     this.grdNhanVien.Dock = System.Windows.Forms.DockStyle.Fill;
     this.grdNhanVien.Location = new System.Drawing.Point(0, 0);
     this.grdNhanVien.MainView = this.gridViewNhanVien;
     this.grdNhanVien.Name = "grdNhanVien";
     this.grdNhanVien.Size = new System.Drawing.Size(945, 541);
     this.grdNhanVien.TabIndex = 1;
     this.grdNhanVien.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewNhanVien});
     //
     // gridViewNhanVien
     //
     this.gridViewNhanVien.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colMANV,
     this.colMaCV,
     this.colTenNV,
     this.colGioiTinh,
     this.colCMND,
     this.colDiaChi,
     this.colDienThoai,
     this.colNgayVaoLam});
     this.gridViewNhanVien.GridControl = this.grdNhanVien;
     this.gridViewNhanVien.Name = "gridViewNhanVien";
     this.gridViewNhanVien.OptionsBehavior.Editable = false;
     this.gridViewNhanVien.OptionsBehavior.ReadOnly = true;
     this.gridViewNhanVien.OptionsFilter.AllowFilterEditor = false;
     this.gridViewNhanVien.OptionsView.ShowGroupPanel = false;
     this.gridViewNhanVien.RowCountChanged += new System.EventHandler(this.gridViewNhanVien_RowCountChanged);
     //
     // colMANV
     //
     this.colMANV.AppearanceCell.Options.UseTextOptions = true;
     this.colMANV.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colMANV.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.colMANV.AppearanceHeader.Options.UseFont = true;
     this.colMANV.AppearanceHeader.Options.UseTextOptions = true;
     this.colMANV.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colMANV.Caption = "Mã nhân viên";
     this.colMANV.FieldName = "MANV";
     this.colMANV.Name = "colMANV";
     this.colMANV.Visible = true;
     this.colMANV.VisibleIndex = 0;
     this.colMANV.Width = 84;
     //
     // colMaCV
     //
     this.colMaCV.AppearanceCell.Options.UseTextOptions = true;
     this.colMaCV.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colMaCV.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.colMaCV.AppearanceHeader.Options.UseFont = true;
     this.colMaCV.AppearanceHeader.Options.UseTextOptions = true;
     this.colMaCV.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colMaCV.Caption = "Mã chức vụ";
     this.colMaCV.FieldName = "MACV";
     this.colMaCV.Name = "colMaCV";
     this.colMaCV.Visible = true;
     this.colMaCV.VisibleIndex = 2;
     this.colMaCV.Width = 100;
     //
     // colTenNV
     //
     this.colTenNV.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.colTenNV.AppearanceHeader.Options.UseFont = true;
     this.colTenNV.AppearanceHeader.Options.UseTextOptions = true;
     this.colTenNV.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colTenNV.Caption = "Tên nhân viên";
     this.colTenNV.FieldName = "TENNV";
     this.colTenNV.Name = "colTenNV";
     this.colTenNV.Visible = true;
     this.colTenNV.VisibleIndex = 1;
     this.colTenNV.Width = 151;
     //
     // colGioiTinh
     //
     this.colGioiTinh.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.colGioiTinh.AppearanceHeader.Options.UseFont = true;
     this.colGioiTinh.AppearanceHeader.Options.UseTextOptions = true;
     this.colGioiTinh.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colGioiTinh.Caption = "Giới tính";
     this.colGioiTinh.FieldName = "GIOITINHNV";
     this.colGioiTinh.Name = "colGioiTinh";
     this.colGioiTinh.Visible = true;
     this.colGioiTinh.VisibleIndex = 3;
     this.colGioiTinh.Width = 89;
     //
     // colCMND
     //
     this.colCMND.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.colCMND.AppearanceHeader.Options.UseFont = true;
     this.colCMND.AppearanceHeader.Options.UseTextOptions = true;
     this.colCMND.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colCMND.Caption = "CMND";
     this.colCMND.FieldName = "CMND_NV";
     this.colCMND.Name = "colCMND";
     this.colCMND.Visible = true;
     this.colCMND.VisibleIndex = 4;
     this.colCMND.Width = 98;
     //
     // colDiaChi
     //
     this.colDiaChi.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.colDiaChi.AppearanceHeader.Options.UseFont = true;
     this.colDiaChi.AppearanceHeader.Options.UseTextOptions = true;
     this.colDiaChi.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colDiaChi.Caption = "Địa chỉ";
     this.colDiaChi.FieldName = "DIACHI";
     this.colDiaChi.Name = "colDiaChi";
     this.colDiaChi.Visible = true;
     this.colDiaChi.VisibleIndex = 5;
     this.colDiaChi.Width = 159;
     //
     // colDienThoai
     //
     this.colDienThoai.AppearanceCell.Options.UseTextOptions = true;
     this.colDienThoai.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.colDienThoai.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.colDienThoai.AppearanceHeader.Options.UseFont = true;
     this.colDienThoai.AppearanceHeader.Options.UseTextOptions = true;
     this.colDienThoai.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colDienThoai.Caption = "Điện thoại";
     this.colDienThoai.FieldName = "DIENTHOAI";
     this.colDienThoai.Name = "colDienThoai";
     this.colDienThoai.Visible = true;
     this.colDienThoai.VisibleIndex = 6;
     this.colDienThoai.Width = 107;
     //
     // colNgayVaoLam
     //
     this.colNgayVaoLam.AppearanceCell.Options.UseTextOptions = true;
     this.colNgayVaoLam.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colNgayVaoLam.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.colNgayVaoLam.AppearanceHeader.Options.UseFont = true;
     this.colNgayVaoLam.AppearanceHeader.Options.UseTextOptions = true;
     this.colNgayVaoLam.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colNgayVaoLam.Caption = "Ngày vào làm";
     this.colNgayVaoLam.FieldName = "NGAYVAOLAM";
     this.colNgayVaoLam.Name = "colNgayVaoLam";
     this.colNgayVaoLam.Visible = true;
     this.colNgayVaoLam.VisibleIndex = 7;
     this.colNgayVaoLam.Width = 139;
     //
     // usrNhanVien
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.splitContainerControl1);
     this.Controls.Add(this.panelControl1);
     this.Name = "usrNhanVien";
     this.Size = new System.Drawing.Size(1282, 591);
     this.Load += new System.EventHandler(this.usrDanhSachNhanVien_Load);
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
     this.panelControl1.ResumeLayout(false);
     this.panelControl1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cbmChucVu.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl1)).EndInit();
     this.splitContainerControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).EndInit();
     this.panelControl2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.panelControl3)).EndInit();
     this.panelControl3.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.grdNhanVien)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewNhanVien)).EndInit();
     this.ResumeLayout(false);
 }