Example #1
0
        protected virtual void InitPopupForm()
        {
            popupContainerControl      = new DevExpress.XtraEditors.PopupContainerControl();
            popupContainerControl.Size = new Size(336, 208);

            flowLayoutPanel      = new System.Windows.Forms.FlowLayoutPanel();
            flowLayoutPanel.Dock = DockStyle.Fill;

            popupContainerControl.Controls.Add(flowLayoutPanel);

            flowLayoutPanel.AutoScroll = true;

            this.Properties.PopupControl = popupContainerControl;
        }
        /// <summary>
        /// 构造函数...
        /// </summary>
        /// <param name="editInfo"></param>
        public XtraRepositoryItemPopupContainerEdit(MB.WinBase.Common.ColumnEditCfgInfo editInfo, bool allowEdit)
        {
            _AllowEdit                 = allowEdit;
            this.gridView1Popup        = new DevExpress.XtraGrid.Views.Grid.GridView();
            this.popupContainerControl = new DevExpress.XtraEditors.PopupContainerControl();
            this.gridPopup             = new DevExpress.XtraGrid.GridControl();
            //gridPopup
            this.gridPopup.EmbeddedNavigator.Name = "";
            this.gridPopup.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
                this.gridView1Popup
            });
            this.gridPopup.MainView = this.gridView1Popup;
            this.gridPopup.BindingContextChanged += new EventHandler(gridPopup_BindingContextChanged);
            //this.gridPopup.BindingContextChanged += new System.EventHandler(this.gridPopup_BindingContextChanged);
            this.gridPopup.Dock = System.Windows.Forms.DockStyle.Fill;

            this.gridView1Popup.GridControl = this.gridPopup;
            this.gridView1Popup.OptionsBehavior.AllowIncrementalSearch = true;
            this.gridView1Popup.OptionsBehavior.Editable         = false;
            this.gridView1Popup.OptionsSelection.InvertSelection = true;
            this.gridView1Popup.OptionsSelection.EnableAppearanceHideSelection = true;
            setdatasource(gridView1Popup, editInfo);

            this.gridView1Popup.MouseMove   += new MouseEventHandler(gridView1Popup_MouseMove);
            this.gridView1Popup.DoubleClick += new EventHandler(gridView1Popup_DoubleClick);
            this.gridView1Popup.KeyDown     += new KeyEventHandler(gridView1Popup_KeyDown);


            // popupContainerControl
            //
            this.popupContainerControl.Controls.Add(this.gridPopup);



            this.AutoHeight  = false;
            this.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
            //			this.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            //																														  new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.CloseOnOuterMouseClick = false;
            this.Name         = "xtraRepositoryItemPopupContainerEdit";
            this.PopupControl = this.popupContainerControl;

            this.QueryPopUp       += new CancelEventHandler(XtraRepositoryItemPopupContainerEdit_QueryPopUp);
            this.QueryCloseUp     += new CancelEventHandler(XtraRepositoryItemPopupContainerEdit_QueryCloseUp);
            this.QueryDisplayText += new DevExpress.XtraEditors.Controls.QueryDisplayTextEventHandler(XtraRepositoryItemPopupContainerEdit_QueryDisplayText);
            this.QueryResultValue += new DevExpress.XtraEditors.Controls.QueryResultValueEventHandler(XtraRepositoryItemPopupContainerEdit_QueryResultValue);
        }
        //- Cách sử dụng còn phức tạp có thể hỗ trợ nhiều hơn để việc khai
        //báo sử dụng de hon
        //- Giải pháp không hiệu quả lắm chỗ mảng DataTable
        /// <summary>
        /// Thay đổi đối tượng trên cột thứ nhất sẽ load tất cả giá trị liên quan đến đối tượng đó trên cột thứ 2 
        /// </summary>
        /// <param name="gridView">GridView chứa 2 cột đối tượng và giá trị tương ứng của đối tượng</param>
        /// <param name="colObject">Cột đối tượng</param>
        /// <param name="valueOfObj">Cột thay đổi giá trị khi đối tượng thay đổi</param>
        /// <param name="fieldNames">Lần lượt là fieldName của cột đối tượng và giá trị liên quan đến đối tượng</param>
        /// <param name="DisplayMember">Giá trị Field hiện lên trên cột giá trị của đối tượng</param>
        /// <param name="ValueMember">Giá trị cần lấy trên cột giá trị của đối tượng</param>
        /// <param name="srcObj">Có bao nhiêu đối tượng thì truyền vào bấy nhiều datasource cho nó</param>
        /// 
        public static void ObjectChange(GridView gridView, GridColumn colObject, GridColumn valueOfObj, string[] fieldNames, string fieldForeignKey, string tableNameObj, string IdField, string tableNameValObj, string DisplayMember, string ValueMember)
        {
            DataTable srcValueObj = HelpDB.getDatabase().LoadTable(tableNameValObj).Tables[0];
            DataTable srcObj = DABase.getDatabase().LoadTable(tableNameObj).Tables[0];
            DataTable srcNew = new DataTable();
            srcNew.Columns.Add(new DataColumn("OBJVALUE"));
            srcNew.Columns.Add(new DataColumn(ValueMember));
            srcNew.Columns.Add(new DataColumn(DisplayMember));
            RepositoryItemImageComboBox resCombo = (RepositoryItemImageComboBox)colObject.ColumnEdit;
            for (int i = 0; i < resCombo.Items.Count; i++)
            {
                string objId = resCombo.Items[i].Value.ToString();
                DataRow[] selRow = srcObj.Select(IdField + "=" + objId);
                string typeObj = "";
                if (selRow.Length > 0)
                    typeObj = selRow[0][fieldForeignKey].ToString();

                DataRow[] srcRowObj = srcValueObj.Select(fieldForeignKey + "=" + typeObj);

                foreach (DataRow dr in srcRowObj)
                {
                    DataRow newRow = srcNew.NewRow();
                    newRow["OBJVALUE"] = objId;
                    newRow[ValueMember] = dr[ValueMember];
                    newRow[DisplayMember] = dr[DisplayMember];
                    srcNew.Rows.Add(newRow);
                }

            }
            string cotAo = fieldNames[1] + "_PLV";
            // colObject.FieldName = fieldNames[0];
            //Tao cot ao trong GridView
            try
            {
                DataTable source = (DataTable)gridView.GridControl.DataSource;
                if (source != null)
                    source.Columns.Add(new DataColumn(cotAo));
                else
                {
                    gridView.GridControl.DataSourceChanged += delegate(object sender, EventArgs e)
                    {
                        // gridView.SetFocusedRowCellValue(valueOfObj, "");
                        DataTable src = (DataTable)(gridView.GridControl.DataSource);
                        if (!src.Columns.Contains(cotAo))
                            src.Columns.Add(new DataColumn(cotAo));
                        SetValueTable(ref src, srcNew, fieldNames, cotAo, DisplayMember, ValueMember);
                    };
                }
            }
            catch { }
            valueOfObj.FieldName = cotAo;

            //Tao datasource moi

            int isUpdateLookup = 0;
            //Khoi tao doi tuong GridControl va GridView
            DevExpress.XtraGrid.Views.Grid.GridView gridViewLookup = new GridView();
            DevExpress.XtraGrid.GridControl gridLookup = new DevExpress.XtraGrid.GridControl();

            //Thiet lap cac thuoc tinh cho doi tuong GridControl va GridView
            gridLookup.Dock = System.Windows.Forms.DockStyle.Fill;
            gridLookup.EmbeddedNavigator.Name = "";
            gridLookup.FormsUseDefaultLookAndFeel = false;
            gridLookup.Location = new System.Drawing.Point(0, 0);
            gridLookup.MainView = gridViewLookup;
            gridLookup.Name = "gridLookup";
            gridLookup.Size = new System.Drawing.Size(200, 100);
            gridLookup.TabIndex = 2;
            gridLookup.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] { gridViewLookup });
            gridLookup.MouseMove += delegate(object sender, MouseEventArgs e)
            {
                DevExpress.XtraGrid.Views.Grid.ViewInfo.GridHitInfo hi = gridViewLookup.CalcHitInfo(new System.Drawing.Point(e.X, e.Y));
                if (hi.RowHandle >= 0)
                    gridViewLookup.FocusedRowHandle = hi.RowHandle;
            };
            gridLookup.Click += delegate(object sender, EventArgs e)
            {
                isUpdateLookup = 1;
                gridView.Focus();
            };
            gridLookup.DataSource = srcNew;
            //Tao gridView

            gridViewLookup.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
            gridViewLookup.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
            gridViewLookup.GridControl = gridLookup;
            gridViewLookup.Name = "gridViewLookup";
            gridViewLookup.OptionsBehavior.Editable = false;
            gridViewLookup.OptionsSelection.EnableAppearanceFocusedCell = false;
            gridViewLookup.OptionsView.ShowColumnHeaders = false;
            gridViewLookup.OptionsView.ShowDetailButtons = false;
            gridViewLookup.OptionsView.ShowGroupPanel = false;
            gridViewLookup.OptionsView.ShowIndicator = false;
            DevExpress.XtraGrid.Columns.GridColumn gridColumnNameObject = new DevExpress.XtraGrid.Columns.GridColumn();
            gridColumnNameObject.Caption = "NAME";
            gridColumnNameObject.FieldName = "NAME";
            gridColumnNameObject.Name = "gridColumnNameObject";
            gridColumnNameObject.Visible = true;
            gridColumnNameObject.VisibleIndex = 0;
            gridViewLookup.Columns.Add(gridColumnNameObject);

            gridViewLookup.KeyDown += delegate(object sender, KeyEventArgs e)
            {
                if (e.KeyCode == Keys.Enter)
                {
                    isUpdateLookup = 1;
                    gridView.Focus();
                }
            };
            //Tao Grid Control

            DevExpress.XtraEditors.PopupContainerControl popupContainer = new DevExpress.XtraEditors.PopupContainerControl();
            popupContainer.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowOnly;
            popupContainer.AutoSize = true;
            popupContainer.Controls.Add(gridLookup);
            popupContainer.Location = new System.Drawing.Point(617, 242);
            popupContainer.Name = "popupContainer";
            popupContainer.Size = new System.Drawing.Size(200, 100);
            popupContainer.TabIndex = 1;

            //
            //containEdit
            //
            DevExpress.XtraEditors.Repository.RepositoryItemPopupContainerEdit containEdit = new DevExpress.XtraEditors.Repository.RepositoryItemPopupContainerEdit();
            valueOfObj.ColumnEdit = containEdit;
            containEdit.AutoHeight = true;
            containEdit.Name = "containEdit";
            containEdit.PopupControl = popupContainer;
            containEdit.PopupSizeable = false;
            containEdit.ShowPopupCloseButton = false;
            containEdit.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
            containEdit.QueryResultValue += delegate(object sender, DevExpress.XtraEditors.Controls.QueryResultValueEventArgs e)
            {
                try
                {
                    if (isUpdateLookup == 1)
                    {
                        DataRow rowGridLookup = (gridLookup.MainView as GridView).GetDataRow((gridLookup.MainView as GridView).FocusedRowHandle);
                        DataRow rowGridView = gridView.GetDataRow(gridView.FocusedRowHandle);
                        rowGridView[cotAo] = rowGridLookup[DisplayMember];
                        e.Value = rowGridLookup[DisplayMember];
                        rowGridView[fieldNames[1]] = rowGridLookup[ValueMember];
                    }
                }
                catch { }
            };
            containEdit.Popup += delegate(object sender, EventArgs e)
            {
                if ((DataTable)gridView.GridControl.DataSource != null)
                {
                    DataTable dt = (DataTable)gridLookup.DataSource;
                    if (dt != null)
                    {
                        DataRow dr = gridView.GetDataRow(gridView.FocusedRowHandle);
                        if (dr != null)
                        {
                            string objName = dr[fieldNames[0]].ToString();
                            dt.DefaultView.RowFilter = "OBJVALUE='" + objName + "'";
                        }
                        else
                            dt.DefaultView.RowFilter = "OBJVALUE=''";
                    }
                }
            };

            if (colObject.ColumnEdit is DevExpress.XtraEditors.Repository.RepositoryItemImageComboBox)
            {
                DevExpress.XtraEditors.Repository.RepositoryItemImageComboBox imgComboBoxLoai = colObject.ColumnEdit as DevExpress.XtraEditors.Repository.RepositoryItemImageComboBox;
                imgComboBoxLoai.SelectedIndexChanged += delegate(object sender, EventArgs e)
                {
                    gridView.SetFocusedRowCellValue(valueOfObj, "");
                    DataTable dt = (DataTable)gridLookup.DataSource;
                    if (dt != null)
                    {
                        dt.DefaultView.RowFilter = "OBJVALUE='" + ((DevExpress.XtraEditors.ImageComboBoxEdit)sender).EditValue.ToString() + "'";
                    }
                };
            }
        }
Example #4
0
		/// <summary> 
		/// Required method for Designer support - do not modify 
		/// the contents of this method with the code editor.
		/// </summary>
		private void InitializeComponent()
		{
			this.components = new System.ComponentModel.Container();
			this.advBandedGridView1 = new DevExpress.XtraGrid.Views.BandedGrid.AdvBandedGridView();
			this.gridBand1 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
			this.gridControl_TeaDutyAsign = new DevExpress.XtraGrid.GridControl();
			this.gridView1 = new DevExpress.XtraGrid.Views.Grid.GridView();
			this.gridColumn2 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn3 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn11 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn12 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn4 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.repositoryItemPopupContainerEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemPopupContainerEdit();
			this.popupContainerControl1 = new DevExpress.XtraEditors.PopupContainerControl();
			this.checkedListBoxControl1 = new DevExpress.XtraEditors.CheckedListBoxControl();
			this.toolTipController1 = new DevExpress.Utils.ToolTipController(this.components);
			this.gridColumn5 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.repositoryItemPopupContainerEdit2 = new DevExpress.XtraEditors.Repository.RepositoryItemPopupContainerEdit();
			this.popupContainerControl2 = new DevExpress.XtraEditors.PopupContainerControl();
			this.checkedListBoxControl2 = new DevExpress.XtraEditors.CheckedListBoxControl();
			this.gridColumn6 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.repositoryItemPopupContainerEdit3 = new DevExpress.XtraEditors.Repository.RepositoryItemPopupContainerEdit();
			this.popupContainerControl3 = new DevExpress.XtraEditors.PopupContainerControl();
			this.checkedListBoxControl3 = new DevExpress.XtraEditors.CheckedListBoxControl();
			this.gridColumn7 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.repositoryItemPopupContainerEdit4 = new DevExpress.XtraEditors.Repository.RepositoryItemPopupContainerEdit();
			this.popupContainerControl4 = new DevExpress.XtraEditors.PopupContainerControl();
			this.checkedListBoxControl4 = new DevExpress.XtraEditors.CheckedListBoxControl();
			this.gridColumn8 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.repositoryItemPopupContainerEdit5 = new DevExpress.XtraEditors.Repository.RepositoryItemPopupContainerEdit();
			this.popupContainerControl5 = new DevExpress.XtraEditors.PopupContainerControl();
			this.checkedListBoxControl5 = new DevExpress.XtraEditors.CheckedListBoxControl();
			this.gridColumn9 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.repositoryItemPopupContainerEdit6 = new DevExpress.XtraEditors.Repository.RepositoryItemPopupContainerEdit();
			this.popupContainerControl6 = new DevExpress.XtraEditors.PopupContainerControl();
			this.checkedListBoxControl6 = new DevExpress.XtraEditors.CheckedListBoxControl();
			this.gridColumn10 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.repositoryItemPopupContainerEdit7 = new DevExpress.XtraEditors.Repository.RepositoryItemPopupContainerEdit();
			this.popupContainerControl7 = new DevExpress.XtraEditors.PopupContainerControl();
			this.checkedListBoxControl7 = new DevExpress.XtraEditors.CheckedListBoxControl();
			this.gridColumn1 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.repositoryItemLookUpEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
			this.xtraTabControl_TeaDutyDetailInfo = new DevExpress.XtraTab.XtraTabControl();
			this.xtraTabPage_TeaDutyDetails = new DevExpress.XtraTab.XtraTabPage();
			this.groupControl_TeaDutyAsign = new DevExpress.XtraEditors.GroupControl();
			this.simpleButton_SaveDutyAsign = new DevExpress.XtraEditors.SimpleButton();
			this.notePanel2 = new DevExpress.Utils.Frames.NotePanel();
			this.groupControl_TeaDutyDetailsMgmt = new DevExpress.XtraEditors.GroupControl();
			this.splitContainerControl_DutyMgmt = new DevExpress.XtraEditors.SplitContainerControl();
			this.textEdit_DutyStartTime = new DevExpress.XtraEditors.TextEdit();
			this.dataNavigator_DutyDetails = new DevExpress.XtraEditors.DataNavigator();
			this.notePanel_DutyDetailsTitle = new DevExpress.Utils.Frames.NotePanel();
			this.pnlHint_DutyName = new DevExpress.Utils.Frames.NotePanel();
			this.label_ReqOfDutyName = new System.Windows.Forms.Label();
			this.textEdit_AddDutyName = new DevExpress.XtraEditors.TextEdit();
			this.notePanel_DutyStartTime = new DevExpress.Utils.Frames.NotePanel();
			this.label_ReqOfDutyEndTime = new System.Windows.Forms.Label();
			this.notePanel_DutyRemark = new DevExpress.Utils.Frames.NotePanel();
			this.textEdit_AddDutyRemark = new DevExpress.XtraEditors.TextEdit();
			this.notePanel_DutyEndTime = new DevExpress.Utils.Frames.NotePanel();
			this.label_ReqOfDutyStartTime = new System.Windows.Forms.Label();
			this.textEdit_DutyEndTime = new DevExpress.XtraEditors.TextEdit();
			this.simpleButton_TeaDutySave = new DevExpress.XtraEditors.SimpleButton();
			this.simpleButton_LoadCurDuty = new DevExpress.XtraEditors.SimpleButton();
			this.simpleButton_LoadHisDuty = new DevExpress.XtraEditors.SimpleButton();
			this.dateEdit_DutyHistory = new DevExpress.XtraEditors.DateEdit();
			this.notePanel_DutyHistory = new DevExpress.Utils.Frames.NotePanel();
			this.comboBoxEdit_DutySearTeaClass = new DevExpress.XtraEditors.ComboBoxEdit();
			this.comboBoxEdit_DutySearTeaGarde = new DevExpress.XtraEditors.ComboBoxEdit();
			this.textEdit_DutySearTeaID = new DevExpress.XtraEditors.TextEdit();
			this.notePanel_AsignDutyByTeaID = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_TeaDutyAsignSearTitle = new DevExpress.Utils.Frames.NotePanel();
			this.notePannotePanel_AsignDutyByTeaGrade = new DevExpress.Utils.Frames.NotePanel();
			this.notePannotePanel_AsignDutyByTeaName = new DevExpress.Utils.Frames.NotePanel();
			this.notePannotePanel_AsignDutyByTeaClass = new DevExpress.Utils.Frames.NotePanel();
			this.textEdit_DutySearTeaName = new DevExpress.XtraEditors.TextEdit();
			this.simpleButton_TeaSearForDuty = new DevExpress.XtraEditors.SimpleButton();
			this.xtraTabPage_TeaOnDutyInfo = new DevExpress.XtraTab.XtraTabPage();
			this.groupControl_TeaDutyDetailsStatistic = new DevExpress.XtraEditors.GroupControl();
			this.textEdit_TeaOut = new DevExpress.XtraEditors.TextEdit();
			this.textEdit_TeaShouldAttend = new DevExpress.XtraEditors.TextEdit();
			this.textEdit_TeaAttend = new DevExpress.XtraEditors.TextEdit();
			this.textEdit_TeaAbsence = new DevExpress.XtraEditors.TextEdit();
			this.textEdit_TeaOffTime = new DevExpress.XtraEditors.TextEdit();
			this.textEdit_TeaOnTime = new DevExpress.XtraEditors.TextEdit();
			this.notePanel_TeaOut = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_TeaShouldAttend = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_TeaOnTime = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_TeaOffTime = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_TeaAttend = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_TeaAbsence = new DevExpress.Utils.Frames.NotePanel();
			this.groupControl_TeaDutyDetailsSearch = new DevExpress.XtraEditors.GroupControl();
			this.simpleButton4 = new DevExpress.XtraEditors.SimpleButton();
			this.comboBoxEdit_TeaDutyDetailsFlowType = new DevExpress.XtraEditors.ComboBoxEdit();
			this.notePanel_TeaDutyDetailsFlowType = new DevExpress.Utils.Frames.NotePanel();
			this.comboBoxEdit_TeaDutyDetailsSerType = new DevExpress.XtraEditors.ComboBoxEdit();
			this.notePanel_TeaDutyDetailsSerType = new DevExpress.Utils.Frames.NotePanel();
			this.simpleButton_SearTeaDutyDetails = new DevExpress.XtraEditors.SimpleButton();
			this.dateEdit_TeaDutyDetailsSearByStartTime = new DevExpress.XtraEditors.DateEdit();
			this.comboBoxEdit_TeaDutyDetailsSearByGrade = new DevExpress.XtraEditors.ComboBoxEdit();
			this.textEdit_TeaDutyDetailsSearByID = new DevExpress.XtraEditors.TextEdit();
			this.notePanel_TeaDutyDetailsSearByID = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_TeaDutyDetailSearByName = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_TeaDutyDetailsSearByGrade = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_TeaDutyDetailsSearByClass = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_TeaDutyDetailsSearByStartTime = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_TeaDutyDetailsSearByEndTime = new DevExpress.Utils.Frames.NotePanel();
			this.textEdit_TeaDutyDetailsSearByName = new DevExpress.XtraEditors.TextEdit();
			this.comboBoxEdit_TeaDutyDetailsSearByClass = new DevExpress.XtraEditors.ComboBoxEdit();
			this.dateEdit_TeaDutyDetailsSearByEndTime = new DevExpress.XtraEditors.DateEdit();
			this.simpleButton1 = new DevExpress.XtraEditors.SimpleButton();
			this.simpleButton3 = new DevExpress.XtraEditors.SimpleButton();
			this.groupControl_TeaDutyDetails = new DevExpress.XtraEditors.GroupControl();
			this.gridControl_TeaDutySummary = new DevExpress.XtraGrid.GridControl();
			this.advBandedGridView4 = new DevExpress.XtraGrid.Views.BandedGrid.AdvBandedGridView();
			this.gridBand4 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
			this.bandedGridColumn8 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.bandedGridColumn10 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.bandedGridColumn12 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.bandedGridColumn14 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.bandedGridColumn9 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.bandedGridColumn11 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.bandedGridColumn13 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.bandedGridColumn15 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.gridView3 = new DevExpress.XtraGrid.Views.Grid.GridView();
			this.gridControl_TeaDutyNormal = new DevExpress.XtraGrid.GridControl();
			this.advBandedGridView3 = new DevExpress.XtraGrid.Views.BandedGrid.AdvBandedGridView();
			this.gridBand3 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
			this.bandedGridColumn1 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.bandedGridColumn2 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.bandedGridColumn3 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.bandedGridColumn4 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.bandedGridColumn5 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.bandedGridColumn6 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.bandedGridColumn7 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.popupContainerControl_Remarks = new DevExpress.XtraEditors.PopupContainerControl();
			this.memoEdit_Remarks = new DevExpress.XtraEditors.MemoEdit();
			this.gridControl_TeaDutyDetails = new DevExpress.XtraGrid.GridControl();
			this.advBandedGridView2 = new DevExpress.XtraGrid.Views.BandedGrid.AdvBandedGridView();
			this.gridBand2 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
			this.gridColumn13 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.gridColumn14 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.gridColumn15 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.gridColumn16 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.gridColumn17 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.gridColumn18 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.gridColumn19 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.gridColumn20 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.gridColumn21 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.gridColumn22 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.gridColumn23 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.gridColumn24 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.gridColumn25 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.repositoryItemPopupContainerEdit8 = new DevExpress.XtraEditors.Repository.RepositoryItemPopupContainerEdit();
			this.gridColumn34 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.gridColumn35 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.repositoryItemMemoEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemMemoEdit();
			this.gridView2 = new DevExpress.XtraGrid.Views.Grid.GridView();
			this.groupControl_TeaDutyOutDetails = new DevExpress.XtraEditors.GroupControl();
			this.gridControl_TeaOutDetails = new DevExpress.XtraGrid.GridControl();
			this.gridView4 = new DevExpress.XtraGrid.Views.Grid.GridView();
			this.gridColumn26 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn27 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn28 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn29 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn30 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn31 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn32 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn33 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.xtraTabPage_TeaOnDutyReports = new DevExpress.XtraTab.XtraTabPage();
			this.groupControl_Graph = new DevExpress.XtraEditors.GroupControl();
			this.groupControl_TeaDutyReportsSear = new DevExpress.XtraEditors.GroupControl();
			this.comboBoxEdit_Graphic_TeaDept = new DevExpress.XtraEditors.ComboBoxEdit();
			this.textEdit_Graphic_TeaID = new DevExpress.XtraEditors.TextEdit();
			this.notePanel_Graphic_TeaID = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_Graphic_TeaName = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_Graphic_TeaDept = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_Graphic_TeaDuty = new DevExpress.Utils.Frames.NotePanel();
			this.textEdit_Graphic_TeaName = new DevExpress.XtraEditors.TextEdit();
			this.comboBoxEdit_Graphic_TeaDuty = new DevExpress.XtraEditors.ComboBoxEdit();
			this.dateEdit1 = new DevExpress.XtraEditors.DateEdit();
			this.notePanel6 = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel7 = new DevExpress.Utils.Frames.NotePanel();
			this.dateEdit2 = new DevExpress.XtraEditors.DateEdit();
			this.simpleButton_ReportAnalysis = new DevExpress.XtraEditors.SimpleButton();
			this.simpleButton2 = new DevExpress.XtraEditors.SimpleButton();
			this.saveFileDialog_Report = new System.Windows.Forms.SaveFileDialog();
			this.helpProvider_DutyInfo = new System.Windows.Forms.HelpProvider();
			((System.ComponentModel.ISupportInitialize)(this.advBandedGridView1)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.gridControl_TeaDutyAsign)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.repositoryItemPopupContainerEdit1)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.popupContainerControl1)).BeginInit();
			this.popupContainerControl1.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.checkedListBoxControl1)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.repositoryItemPopupContainerEdit2)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.popupContainerControl2)).BeginInit();
			this.popupContainerControl2.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.checkedListBoxControl2)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.repositoryItemPopupContainerEdit3)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.popupContainerControl3)).BeginInit();
			this.popupContainerControl3.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.checkedListBoxControl3)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.repositoryItemPopupContainerEdit4)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.popupContainerControl4)).BeginInit();
			this.popupContainerControl4.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.checkedListBoxControl4)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.repositoryItemPopupContainerEdit5)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.popupContainerControl5)).BeginInit();
			this.popupContainerControl5.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.checkedListBoxControl5)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.repositoryItemPopupContainerEdit6)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.popupContainerControl6)).BeginInit();
			this.popupContainerControl6.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.checkedListBoxControl6)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.repositoryItemPopupContainerEdit7)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.popupContainerControl7)).BeginInit();
			this.popupContainerControl7.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.checkedListBoxControl7)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEdit1)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.xtraTabControl_TeaDutyDetailInfo)).BeginInit();
			this.xtraTabControl_TeaDutyDetailInfo.SuspendLayout();
			this.xtraTabPage_TeaDutyDetails.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_TeaDutyAsign)).BeginInit();
			this.groupControl_TeaDutyAsign.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_TeaDutyDetailsMgmt)).BeginInit();
			this.groupControl_TeaDutyDetailsMgmt.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.splitContainerControl_DutyMgmt)).BeginInit();
			this.splitContainerControl_DutyMgmt.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_DutyStartTime.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_AddDutyName.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_AddDutyRemark.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_DutyEndTime.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.dateEdit_DutyHistory.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_DutySearTeaClass.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_DutySearTeaGarde.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_DutySearTeaID.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_DutySearTeaName.Properties)).BeginInit();
			this.xtraTabPage_TeaOnDutyInfo.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_TeaDutyDetailsStatistic)).BeginInit();
			this.groupControl_TeaDutyDetailsStatistic.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_TeaOut.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_TeaShouldAttend.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_TeaAttend.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_TeaAbsence.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_TeaOffTime.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_TeaOnTime.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_TeaDutyDetailsSearch)).BeginInit();
			this.groupControl_TeaDutyDetailsSearch.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_TeaDutyDetailsFlowType.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_TeaDutyDetailsSerType.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.dateEdit_TeaDutyDetailsSearByStartTime.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_TeaDutyDetailsSearByGrade.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_TeaDutyDetailsSearByID.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_TeaDutyDetailsSearByName.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_TeaDutyDetailsSearByClass.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.dateEdit_TeaDutyDetailsSearByEndTime.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_TeaDutyDetails)).BeginInit();
			this.groupControl_TeaDutyDetails.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.gridControl_TeaDutySummary)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.advBandedGridView4)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.gridView3)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.gridControl_TeaDutyNormal)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.advBandedGridView3)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.popupContainerControl_Remarks)).BeginInit();
			this.popupContainerControl_Remarks.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.memoEdit_Remarks.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.gridControl_TeaDutyDetails)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.advBandedGridView2)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.repositoryItemPopupContainerEdit8)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.repositoryItemMemoEdit1)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.gridView2)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_TeaDutyOutDetails)).BeginInit();
			this.groupControl_TeaDutyOutDetails.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.gridControl_TeaOutDetails)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.gridView4)).BeginInit();
			this.xtraTabPage_TeaOnDutyReports.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_Graph)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_TeaDutyReportsSear)).BeginInit();
			this.groupControl_TeaDutyReportsSear.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_Graphic_TeaDept.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_Graphic_TeaID.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_Graphic_TeaName.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_Graphic_TeaDuty.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.dateEdit1.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.dateEdit2.Properties)).BeginInit();
			this.SuspendLayout();
			// 
			// advBandedGridView1
			// 
			this.advBandedGridView1.Bands.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.GridBand[] {
																										   this.gridBand1});
			this.advBandedGridView1.GridControl = this.gridControl_TeaDutyAsign;
			this.advBandedGridView1.Name = "advBandedGridView1";
			// 
			// gridBand1
			// 
			this.gridBand1.Caption = "gridBand1";
			this.gridBand1.Name = "gridBand1";
			// 
			// gridControl_TeaDutyAsign
			// 
			this.gridControl_TeaDutyAsign.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
				| System.Windows.Forms.AnchorStyles.Left) 
				| System.Windows.Forms.AnchorStyles.Right)));
			// 
			// gridControl_TeaDutyAsign.EmbeddedNavigator
			// 
			this.gridControl_TeaDutyAsign.EmbeddedNavigator.Name = "";
			this.gridControl_TeaDutyAsign.Location = new System.Drawing.Point(3, 80);
			this.gridControl_TeaDutyAsign.MainView = this.gridView1;
			this.gridControl_TeaDutyAsign.Name = "gridControl_TeaDutyAsign";
			this.gridControl_TeaDutyAsign.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
																															  this.repositoryItemLookUpEdit1,
																															  this.repositoryItemPopupContainerEdit1,
																															  this.repositoryItemPopupContainerEdit2,
																															  this.repositoryItemPopupContainerEdit3,
																															  this.repositoryItemPopupContainerEdit4,
																															  this.repositoryItemPopupContainerEdit5,
																															  this.repositoryItemPopupContainerEdit6,
																															  this.repositoryItemPopupContainerEdit7});
			this.gridControl_TeaDutyAsign.Size = new System.Drawing.Size(762, 224);
			this.gridControl_TeaDutyAsign.TabIndex = 0;
			this.gridControl_TeaDutyAsign.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
																													this.gridView1,
																													this.advBandedGridView1});
			// 
			// gridView1
			// 
			this.gridView1.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
																							 this.gridColumn2,
																							 this.gridColumn3,
																							 this.gridColumn11,
																							 this.gridColumn12,
																							 this.gridColumn4,
																							 this.gridColumn5,
																							 this.gridColumn6,
																							 this.gridColumn7,
																							 this.gridColumn8,
																							 this.gridColumn9,
																							 this.gridColumn10,
																							 this.gridColumn1});
			this.gridView1.GridControl = this.gridControl_TeaDutyAsign;
			this.gridView1.Name = "gridView1";
			this.gridView1.OptionsCustomization.AllowFilter = false;
			this.gridView1.OptionsView.ShowFilterPanel = false;
			this.gridView1.OptionsView.ShowFooter = true;
			this.gridView1.OptionsView.ShowGroupPanel = false;
			// 
			// gridColumn2
			// 
			this.gridColumn2.Caption = "工号";
			this.gridColumn2.FieldName = "T_Number";
			this.gridColumn2.Name = "gridColumn2";
			this.gridColumn2.OptionsColumn.AllowEdit = false;
			this.gridColumn2.Visible = true;
			this.gridColumn2.VisibleIndex = 0;
			this.gridColumn2.Width = 41;
			// 
			// gridColumn3
			// 
			this.gridColumn3.Caption = "教师姓名";
			this.gridColumn3.FieldName = "T_Name";
			this.gridColumn3.Name = "gridColumn3";
			this.gridColumn3.OptionsColumn.AllowEdit = false;
			this.gridColumn3.Visible = true;
			this.gridColumn3.VisibleIndex = 1;
			this.gridColumn3.Width = 59;
			// 
			// gridColumn11
			// 
			this.gridColumn11.Caption = "岗位";
			this.gridColumn11.FieldName = "T_Depart";
			this.gridColumn11.Name = "gridColumn11";
			this.gridColumn11.OptionsColumn.AllowEdit = false;
			this.gridColumn11.Visible = true;
			this.gridColumn11.VisibleIndex = 2;
			this.gridColumn11.Width = 59;
			// 
			// gridColumn12
			// 
			this.gridColumn12.Caption = "部门";
			this.gridColumn12.FieldName = "T_Duty";
			this.gridColumn12.Name = "gridColumn12";
			this.gridColumn12.OptionsColumn.AllowEdit = false;
			this.gridColumn12.Visible = true;
			this.gridColumn12.VisibleIndex = 3;
			this.gridColumn12.Width = 56;
			// 
			// gridColumn4
			// 
			this.gridColumn4.Caption = "周一班次";
			this.gridColumn4.ColumnEdit = this.repositoryItemPopupContainerEdit1;
			this.gridColumn4.FieldName = "teaonduty_monday";
			this.gridColumn4.Name = "gridColumn4";
			this.gridColumn4.Visible = true;
			this.gridColumn4.VisibleIndex = 4;
			this.gridColumn4.Width = 83;
			// 
			// repositoryItemPopupContainerEdit1
			// 
			this.repositoryItemPopupContainerEdit1.AutoHeight = false;
			this.repositoryItemPopupContainerEdit1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																														   new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.repositoryItemPopupContainerEdit1.Name = "repositoryItemPopupContainerEdit1";
			this.repositoryItemPopupContainerEdit1.PopupControl = this.popupContainerControl1;
			this.repositoryItemPopupContainerEdit1.QueryPopUp += new System.ComponentModel.CancelEventHandler(this.repositoryItemPopupContainerEdit1_QueryPopUp);
			this.repositoryItemPopupContainerEdit1.QueryResultValue += new DevExpress.XtraEditors.Controls.QueryResultValueEventHandler(this.repositoryItemPopupContainerEdit1_QueryResultValue);
			// 
			// popupContainerControl1
			// 
			this.popupContainerControl1.Controls.Add(this.checkedListBoxControl1);
			this.popupContainerControl1.Location = new System.Drawing.Point(8, 120);
			this.popupContainerControl1.Name = "popupContainerControl1";
			this.popupContainerControl1.TabIndex = 6;
			this.popupContainerControl1.Text = "popupContainerControl1";
			// 
			// checkedListBoxControl1
			// 
			this.checkedListBoxControl1.CheckOnClick = true;
			this.checkedListBoxControl1.Dock = System.Windows.Forms.DockStyle.Fill;
			this.checkedListBoxControl1.ItemHeight = 16;
			this.checkedListBoxControl1.Location = new System.Drawing.Point(0, 0);
			this.checkedListBoxControl1.Name = "checkedListBoxControl1";
			this.checkedListBoxControl1.Size = new System.Drawing.Size(200, 100);
			this.checkedListBoxControl1.TabIndex = 0;
			this.checkedListBoxControl1.ToolTipController = this.toolTipController1;
			this.checkedListBoxControl1.ToolTipIconType = DevExpress.Utils.ToolTipIconType.Error;
			this.checkedListBoxControl1.Click += new System.EventHandler(this.checkedListBoxControl1_Click);
			// 
			// gridColumn5
			// 
			this.gridColumn5.Caption = "周二班次";
			this.gridColumn5.ColumnEdit = this.repositoryItemPopupContainerEdit2;
			this.gridColumn5.FieldName = "teaonduty_tuesday";
			this.gridColumn5.Name = "gridColumn5";
			this.gridColumn5.Visible = true;
			this.gridColumn5.VisibleIndex = 5;
			this.gridColumn5.Width = 77;
			// 
			// repositoryItemPopupContainerEdit2
			// 
			this.repositoryItemPopupContainerEdit2.AutoHeight = false;
			this.repositoryItemPopupContainerEdit2.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																														   new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.repositoryItemPopupContainerEdit2.Name = "repositoryItemPopupContainerEdit2";
			this.repositoryItemPopupContainerEdit2.PopupControl = this.popupContainerControl2;
			this.repositoryItemPopupContainerEdit2.QueryPopUp += new System.ComponentModel.CancelEventHandler(this.repositoryItemPopupContainerEdit2_QueryPopUp);
			this.repositoryItemPopupContainerEdit2.QueryResultValue += new DevExpress.XtraEditors.Controls.QueryResultValueEventHandler(this.repositoryItemPopupContainerEdit2_QueryResultValue);
			// 
			// popupContainerControl2
			// 
			this.popupContainerControl2.Controls.Add(this.checkedListBoxControl2);
			this.popupContainerControl2.Location = new System.Drawing.Point(224, 24);
			this.popupContainerControl2.Name = "popupContainerControl2";
			this.popupContainerControl2.TabIndex = 7;
			this.popupContainerControl2.Text = "popupContainerControl2";
			// 
			// checkedListBoxControl2
			// 
			this.checkedListBoxControl2.CheckOnClick = true;
			this.checkedListBoxControl2.Dock = System.Windows.Forms.DockStyle.Fill;
			this.checkedListBoxControl2.ItemHeight = 16;
			this.checkedListBoxControl2.Location = new System.Drawing.Point(0, 0);
			this.checkedListBoxControl2.Name = "checkedListBoxControl2";
			this.checkedListBoxControl2.Size = new System.Drawing.Size(200, 100);
			this.checkedListBoxControl2.TabIndex = 0;
			this.checkedListBoxControl2.ToolTipController = this.toolTipController1;
			this.checkedListBoxControl2.Click += new System.EventHandler(this.checkedListBoxControl2_Click);
			// 
			// gridColumn6
			// 
			this.gridColumn6.Caption = "周三班次";
			this.gridColumn6.ColumnEdit = this.repositoryItemPopupContainerEdit3;
			this.gridColumn6.FieldName = "teaonduty_wednesday";
			this.gridColumn6.Name = "gridColumn6";
			this.gridColumn6.Visible = true;
			this.gridColumn6.VisibleIndex = 6;
			this.gridColumn6.Width = 74;
			// 
			// repositoryItemPopupContainerEdit3
			// 
			this.repositoryItemPopupContainerEdit3.AutoHeight = false;
			this.repositoryItemPopupContainerEdit3.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																														   new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.repositoryItemPopupContainerEdit3.Name = "repositoryItemPopupContainerEdit3";
			this.repositoryItemPopupContainerEdit3.PopupControl = this.popupContainerControl3;
			this.repositoryItemPopupContainerEdit3.QueryPopUp += new System.ComponentModel.CancelEventHandler(this.repositoryItemPopupContainerEdit3_QueryPopUp);
			this.repositoryItemPopupContainerEdit3.QueryResultValue += new DevExpress.XtraEditors.Controls.QueryResultValueEventHandler(this.repositoryItemPopupContainerEdit3_QueryResultValue);
			// 
			// popupContainerControl3
			// 
			this.popupContainerControl3.Controls.Add(this.checkedListBoxControl3);
			this.popupContainerControl3.Location = new System.Drawing.Point(224, 120);
			this.popupContainerControl3.Name = "popupContainerControl3";
			this.popupContainerControl3.TabIndex = 8;
			this.popupContainerControl3.Text = "popupContainerControl3";
			// 
			// checkedListBoxControl3
			// 
			this.checkedListBoxControl3.CheckOnClick = true;
			this.checkedListBoxControl3.Dock = System.Windows.Forms.DockStyle.Fill;
			this.checkedListBoxControl3.ItemHeight = 16;
			this.checkedListBoxControl3.Location = new System.Drawing.Point(0, 0);
			this.checkedListBoxControl3.Name = "checkedListBoxControl3";
			this.checkedListBoxControl3.Size = new System.Drawing.Size(200, 100);
			this.checkedListBoxControl3.TabIndex = 0;
			this.checkedListBoxControl3.ToolTipController = this.toolTipController1;
			this.checkedListBoxControl3.ToolTipIconType = DevExpress.Utils.ToolTipIconType.Exclamation;
			this.checkedListBoxControl3.Click += new System.EventHandler(this.checkedListBoxControl3_Click);
			// 
			// gridColumn7
			// 
			this.gridColumn7.Caption = "周四班次";
			this.gridColumn7.ColumnEdit = this.repositoryItemPopupContainerEdit4;
			this.gridColumn7.FieldName = "teaonduty_thursday";
			this.gridColumn7.Name = "gridColumn7";
			this.gridColumn7.Visible = true;
			this.gridColumn7.VisibleIndex = 7;
			this.gridColumn7.Width = 73;
			// 
			// repositoryItemPopupContainerEdit4
			// 
			this.repositoryItemPopupContainerEdit4.AutoHeight = false;
			this.repositoryItemPopupContainerEdit4.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																														   new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.repositoryItemPopupContainerEdit4.Name = "repositoryItemPopupContainerEdit4";
			this.repositoryItemPopupContainerEdit4.PopupControl = this.popupContainerControl4;
			this.repositoryItemPopupContainerEdit4.QueryPopUp += new System.ComponentModel.CancelEventHandler(this.repositoryItemPopupContainerEdit4_QueryPopUp);
			this.repositoryItemPopupContainerEdit4.QueryResultValue += new DevExpress.XtraEditors.Controls.QueryResultValueEventHandler(this.repositoryItemPopupContainerEdit4_QueryResultValue);
			// 
			// popupContainerControl4
			// 
			this.popupContainerControl4.Controls.Add(this.checkedListBoxControl4);
			this.popupContainerControl4.Location = new System.Drawing.Point(16, 16);
			this.popupContainerControl4.Name = "popupContainerControl4";
			this.popupContainerControl4.TabIndex = 9;
			this.popupContainerControl4.Text = "popupContainerControl4";
			// 
			// checkedListBoxControl4
			// 
			this.checkedListBoxControl4.CheckOnClick = true;
			this.checkedListBoxControl4.Dock = System.Windows.Forms.DockStyle.Fill;
			this.checkedListBoxControl4.ItemHeight = 16;
			this.checkedListBoxControl4.Location = new System.Drawing.Point(0, 0);
			this.checkedListBoxControl4.Name = "checkedListBoxControl4";
			this.checkedListBoxControl4.Size = new System.Drawing.Size(200, 100);
			this.checkedListBoxControl4.TabIndex = 0;
			this.checkedListBoxControl4.ToolTipController = this.toolTipController1;
			this.checkedListBoxControl4.ToolTipIconType = DevExpress.Utils.ToolTipIconType.Application;
			this.checkedListBoxControl4.Click += new System.EventHandler(this.checkedListBoxControl4_Click);
			// 
			// gridColumn8
			// 
			this.gridColumn8.Caption = "周五班次";
			this.gridColumn8.ColumnEdit = this.repositoryItemPopupContainerEdit5;
			this.gridColumn8.FieldName = "teaonduty_friday";
			this.gridColumn8.Name = "gridColumn8";
			this.gridColumn8.Visible = true;
			this.gridColumn8.VisibleIndex = 8;
			this.gridColumn8.Width = 70;
			// 
			// repositoryItemPopupContainerEdit5
			// 
			this.repositoryItemPopupContainerEdit5.AutoHeight = false;
			this.repositoryItemPopupContainerEdit5.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																														   new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.repositoryItemPopupContainerEdit5.Name = "repositoryItemPopupContainerEdit5";
			this.repositoryItemPopupContainerEdit5.PopupControl = this.popupContainerControl5;
			this.repositoryItemPopupContainerEdit5.QueryPopUp += new System.ComponentModel.CancelEventHandler(this.repositoryItemPopupContainerEdit5_QueryPopUp);
			this.repositoryItemPopupContainerEdit5.QueryResultValue += new DevExpress.XtraEditors.Controls.QueryResultValueEventHandler(this.repositoryItemPopupContainerEdit5_QueryResultValue);
			// 
			// popupContainerControl5
			// 
			this.popupContainerControl5.Controls.Add(this.checkedListBoxControl5);
			this.popupContainerControl5.Location = new System.Drawing.Point(0, 224);
			this.popupContainerControl5.Name = "popupContainerControl5";
			this.popupContainerControl5.TabIndex = 10;
			this.popupContainerControl5.Text = "popupContainerControl5";
			// 
			// checkedListBoxControl5
			// 
			this.checkedListBoxControl5.CheckOnClick = true;
			this.checkedListBoxControl5.Dock = System.Windows.Forms.DockStyle.Fill;
			this.checkedListBoxControl5.ItemHeight = 16;
			this.checkedListBoxControl5.Location = new System.Drawing.Point(0, 0);
			this.checkedListBoxControl5.Name = "checkedListBoxControl5";
			this.checkedListBoxControl5.Size = new System.Drawing.Size(200, 100);
			this.checkedListBoxControl5.TabIndex = 0;
			this.checkedListBoxControl5.ToolTipController = this.toolTipController1;
			this.checkedListBoxControl5.ToolTipIconType = DevExpress.Utils.ToolTipIconType.Hand;
			this.checkedListBoxControl5.Click += new System.EventHandler(this.checkedListBoxControl5_Click);
			// 
			// gridColumn9
			// 
			this.gridColumn9.Caption = "周六班次";
			this.gridColumn9.ColumnEdit = this.repositoryItemPopupContainerEdit6;
			this.gridColumn9.FieldName = "teaonduty_saturday";
			this.gridColumn9.Name = "gridColumn9";
			this.gridColumn9.Width = 70;
			// 
			// repositoryItemPopupContainerEdit6
			// 
			this.repositoryItemPopupContainerEdit6.AutoHeight = false;
			this.repositoryItemPopupContainerEdit6.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																														   new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.repositoryItemPopupContainerEdit6.Name = "repositoryItemPopupContainerEdit6";
			this.repositoryItemPopupContainerEdit6.PopupControl = this.popupContainerControl6;
			this.repositoryItemPopupContainerEdit6.QueryPopUp += new System.ComponentModel.CancelEventHandler(this.repositoryItemPopupContainerEdit6_QueryPopUp);
			this.repositoryItemPopupContainerEdit6.QueryResultValue += new DevExpress.XtraEditors.Controls.QueryResultValueEventHandler(this.repositoryItemPopupContainerEdit6_QueryResultValue);
			// 
			// popupContainerControl6
			// 
			this.popupContainerControl6.Controls.Add(this.checkedListBoxControl6);
			this.popupContainerControl6.Location = new System.Drawing.Point(232, 232);
			this.popupContainerControl6.Name = "popupContainerControl6";
			this.popupContainerControl6.TabIndex = 11;
			this.popupContainerControl6.Text = "popupContainerControl6";
			// 
			// checkedListBoxControl6
			// 
			this.checkedListBoxControl6.CheckOnClick = true;
			this.checkedListBoxControl6.Dock = System.Windows.Forms.DockStyle.Fill;
			this.checkedListBoxControl6.ItemHeight = 16;
			this.checkedListBoxControl6.Location = new System.Drawing.Point(0, 0);
			this.checkedListBoxControl6.Name = "checkedListBoxControl6";
			this.checkedListBoxControl6.Size = new System.Drawing.Size(200, 100);
			this.checkedListBoxControl6.TabIndex = 0;
			this.checkedListBoxControl6.ToolTipController = this.toolTipController1;
			this.checkedListBoxControl6.ToolTipIconType = DevExpress.Utils.ToolTipIconType.Warning;
			this.checkedListBoxControl6.Click += new System.EventHandler(this.checkedListBoxControl6_Click);
			// 
			// gridColumn10
			// 
			this.gridColumn10.Caption = "周末班次";
			this.gridColumn10.ColumnEdit = this.repositoryItemPopupContainerEdit7;
			this.gridColumn10.FieldName = "teaonduty_sunday";
			this.gridColumn10.Name = "gridColumn10";
			this.gridColumn10.Width = 83;
			// 
			// repositoryItemPopupContainerEdit7
			// 
			this.repositoryItemPopupContainerEdit7.AutoHeight = false;
			this.repositoryItemPopupContainerEdit7.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																														   new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.repositoryItemPopupContainerEdit7.Name = "repositoryItemPopupContainerEdit7";
			this.repositoryItemPopupContainerEdit7.PopupControl = this.popupContainerControl7;
			this.repositoryItemPopupContainerEdit7.QueryPopUp += new System.ComponentModel.CancelEventHandler(this.repositoryItemPopupContainerEdit7_QueryPopUp);
			this.repositoryItemPopupContainerEdit7.QueryResultValue += new DevExpress.XtraEditors.Controls.QueryResultValueEventHandler(this.repositoryItemPopupContainerEdit7_QueryResultValue);
			// 
			// popupContainerControl7
			// 
			this.popupContainerControl7.Controls.Add(this.checkedListBoxControl7);
			this.popupContainerControl7.Location = new System.Drawing.Point(432, 48);
			this.popupContainerControl7.Name = "popupContainerControl7";
			this.popupContainerControl7.TabIndex = 12;
			this.popupContainerControl7.Text = "popupContainerControl7";
			// 
			// checkedListBoxControl7
			// 
			this.checkedListBoxControl7.CheckOnClick = true;
			this.checkedListBoxControl7.Dock = System.Windows.Forms.DockStyle.Fill;
			this.checkedListBoxControl7.ItemHeight = 16;
			this.checkedListBoxControl7.Location = new System.Drawing.Point(0, 0);
			this.checkedListBoxControl7.Name = "checkedListBoxControl7";
			this.checkedListBoxControl7.Size = new System.Drawing.Size(200, 100);
			this.checkedListBoxControl7.TabIndex = 0;
			this.checkedListBoxControl7.ToolTipController = this.toolTipController1;
			this.checkedListBoxControl7.ToolTipIconType = DevExpress.Utils.ToolTipIconType.WindLogo;
			this.checkedListBoxControl7.Click += new System.EventHandler(this.checkedListBoxControl7_Click);
			// 
			// gridColumn1
			// 
			this.gridColumn1.Caption = "Teacher_ID";
			this.gridColumn1.FieldName = "T_ID";
			this.gridColumn1.Name = "gridColumn1";
			// 
			// repositoryItemLookUpEdit1
			// 
			this.repositoryItemLookUpEdit1.AutoHeight = false;
			this.repositoryItemLookUpEdit1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																												   new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.repositoryItemLookUpEdit1.Name = "repositoryItemLookUpEdit1";
			// 
			// xtraTabControl_TeaDutyDetailInfo
			// 
			this.xtraTabControl_TeaDutyDetailInfo.Appearance.BackColor = System.Drawing.Color.WhiteSmoke;
			this.xtraTabControl_TeaDutyDetailInfo.Appearance.Options.UseBackColor = true;
			this.xtraTabControl_TeaDutyDetailInfo.AppearancePage.HeaderActive.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
			this.xtraTabControl_TeaDutyDetailInfo.AppearancePage.HeaderActive.ForeColor = System.Drawing.Color.DarkOrange;
			this.xtraTabControl_TeaDutyDetailInfo.AppearancePage.HeaderActive.Options.UseFont = true;
			this.xtraTabControl_TeaDutyDetailInfo.AppearancePage.HeaderActive.Options.UseForeColor = true;
			this.xtraTabControl_TeaDutyDetailInfo.Controls.Add(this.xtraTabPage_TeaDutyDetails);
			this.xtraTabControl_TeaDutyDetailInfo.Controls.Add(this.xtraTabPage_TeaOnDutyInfo);
			this.xtraTabControl_TeaDutyDetailInfo.Controls.Add(this.xtraTabPage_TeaOnDutyReports);
			this.xtraTabControl_TeaDutyDetailInfo.Dock = System.Windows.Forms.DockStyle.Fill;
			this.xtraTabControl_TeaDutyDetailInfo.Location = new System.Drawing.Point(0, 0);
			this.xtraTabControl_TeaDutyDetailInfo.Name = "xtraTabControl_TeaDutyDetailInfo";
			this.xtraTabControl_TeaDutyDetailInfo.SelectedTabPage = this.xtraTabPage_TeaOnDutyInfo;
			this.xtraTabControl_TeaDutyDetailInfo.Size = new System.Drawing.Size(772, 540);
			this.xtraTabControl_TeaDutyDetailInfo.TabIndex = 0;
			this.xtraTabControl_TeaDutyDetailInfo.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
																											 this.xtraTabPage_TeaDutyDetails,
																											 this.xtraTabPage_TeaOnDutyInfo,
																											 this.xtraTabPage_TeaOnDutyReports});
			this.xtraTabControl_TeaDutyDetailInfo.Text = "出勤信息管理";
			// 
			// xtraTabPage_TeaDutyDetails
			// 
			this.xtraTabPage_TeaDutyDetails.Appearance.PageClient.BackColor = System.Drawing.Color.WhiteSmoke;
			this.xtraTabPage_TeaDutyDetails.Appearance.PageClient.Options.UseBackColor = true;
			this.xtraTabPage_TeaDutyDetails.Controls.Add(this.groupControl_TeaDutyAsign);
			this.xtraTabPage_TeaDutyDetails.Controls.Add(this.groupControl_TeaDutyDetailsMgmt);
			this.xtraTabPage_TeaDutyDetails.Name = "xtraTabPage_TeaDutyDetails";
			this.xtraTabPage_TeaDutyDetails.Size = new System.Drawing.Size(768, 515);
			this.xtraTabPage_TeaDutyDetails.Text = "班次管理";
			// 
			// groupControl_TeaDutyAsign
			// 
			this.groupControl_TeaDutyAsign.Controls.Add(this.popupContainerControl7);
			this.groupControl_TeaDutyAsign.Controls.Add(this.popupContainerControl6);
			this.groupControl_TeaDutyAsign.Controls.Add(this.popupContainerControl5);
			this.groupControl_TeaDutyAsign.Controls.Add(this.popupContainerControl4);
			this.groupControl_TeaDutyAsign.Controls.Add(this.popupContainerControl3);
			this.groupControl_TeaDutyAsign.Controls.Add(this.popupContainerControl2);
			this.groupControl_TeaDutyAsign.Controls.Add(this.popupContainerControl1);
			this.groupControl_TeaDutyAsign.Controls.Add(this.simpleButton_SaveDutyAsign);
			this.groupControl_TeaDutyAsign.Controls.Add(this.notePanel2);
			this.groupControl_TeaDutyAsign.Controls.Add(this.gridControl_TeaDutyAsign);
			this.groupControl_TeaDutyAsign.Dock = System.Windows.Forms.DockStyle.Fill;
			this.groupControl_TeaDutyAsign.Location = new System.Drawing.Point(0, 208);
			this.groupControl_TeaDutyAsign.Name = "groupControl_TeaDutyAsign";
			this.groupControl_TeaDutyAsign.Size = new System.Drawing.Size(768, 307);
			this.groupControl_TeaDutyAsign.TabIndex = 1;
			this.groupControl_TeaDutyAsign.Text = "班次分配";
			// 
			// simpleButton_SaveDutyAsign
			// 
			this.simpleButton_SaveDutyAsign.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
			this.simpleButton_SaveDutyAsign.Location = new System.Drawing.Point(648, 48);
			this.simpleButton_SaveDutyAsign.Name = "simpleButton_SaveDutyAsign";
			this.simpleButton_SaveDutyAsign.Size = new System.Drawing.Size(96, 24);
			this.simpleButton_SaveDutyAsign.TabIndex = 5;
			this.simpleButton_SaveDutyAsign.Text = "更新当前班次";
			this.simpleButton_SaveDutyAsign.Click += new System.EventHandler(this.simpleButton_SaveDutyAsign_Click);
			// 
			// notePanel2
			// 
			this.notePanel2.BackColor = System.Drawing.Color.LightGoldenrodYellow;
			this.notePanel2.Dock = System.Windows.Forms.DockStyle.Top;
			this.notePanel2.ForeColor = System.Drawing.Color.OrangeRed;
			this.notePanel2.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel2.Location = new System.Drawing.Point(3, 18);
			this.notePanel2.MaxRows = 5;
			this.notePanel2.Name = "notePanel2";
			this.notePanel2.ParentAutoHeight = true;
			this.notePanel2.Size = new System.Drawing.Size(762, 23);
			this.notePanel2.TabIndex = 4;
			this.notePanel2.TabStop = false;
			this.notePanel2.Text = "班次信息";
			// 
			// groupControl_TeaDutyDetailsMgmt
			// 
			this.groupControl_TeaDutyDetailsMgmt.Controls.Add(this.splitContainerControl_DutyMgmt);
			this.groupControl_TeaDutyDetailsMgmt.Dock = System.Windows.Forms.DockStyle.Top;
			this.groupControl_TeaDutyDetailsMgmt.Location = new System.Drawing.Point(0, 0);
			this.groupControl_TeaDutyDetailsMgmt.Name = "groupControl_TeaDutyDetailsMgmt";
			this.groupControl_TeaDutyDetailsMgmt.Size = new System.Drawing.Size(768, 208);
			this.groupControl_TeaDutyDetailsMgmt.TabIndex = 0;
			// 
			// splitContainerControl_DutyMgmt
			// 
			this.splitContainerControl_DutyMgmt.Dock = System.Windows.Forms.DockStyle.Fill;
			this.splitContainerControl_DutyMgmt.Location = new System.Drawing.Point(3, 18);
			this.splitContainerControl_DutyMgmt.Name = "splitContainerControl_DutyMgmt";
			this.splitContainerControl_DutyMgmt.Panel1.Controls.Add(this.textEdit_DutyStartTime);
			this.splitContainerControl_DutyMgmt.Panel1.Controls.Add(this.dataNavigator_DutyDetails);
			this.splitContainerControl_DutyMgmt.Panel1.Controls.Add(this.notePanel_DutyDetailsTitle);
			this.splitContainerControl_DutyMgmt.Panel1.Controls.Add(this.pnlHint_DutyName);
			this.splitContainerControl_DutyMgmt.Panel1.Controls.Add(this.label_ReqOfDutyName);
			this.splitContainerControl_DutyMgmt.Panel1.Controls.Add(this.textEdit_AddDutyName);
			this.splitContainerControl_DutyMgmt.Panel1.Controls.Add(this.notePanel_DutyStartTime);
			this.splitContainerControl_DutyMgmt.Panel1.Controls.Add(this.label_ReqOfDutyEndTime);
			this.splitContainerControl_DutyMgmt.Panel1.Controls.Add(this.notePanel_DutyRemark);
			this.splitContainerControl_DutyMgmt.Panel1.Controls.Add(this.textEdit_AddDutyRemark);
			this.splitContainerControl_DutyMgmt.Panel1.Controls.Add(this.notePanel_DutyEndTime);
			this.splitContainerControl_DutyMgmt.Panel1.Controls.Add(this.label_ReqOfDutyStartTime);
			this.splitContainerControl_DutyMgmt.Panel1.Controls.Add(this.textEdit_DutyEndTime);
			this.splitContainerControl_DutyMgmt.Panel1.Text = "splitContainerControl2_Panel1";
			this.splitContainerControl_DutyMgmt.Panel2.Controls.Add(this.simpleButton_TeaDutySave);
			this.splitContainerControl_DutyMgmt.Panel2.Controls.Add(this.simpleButton_LoadCurDuty);
			this.splitContainerControl_DutyMgmt.Panel2.Controls.Add(this.simpleButton_LoadHisDuty);
			this.splitContainerControl_DutyMgmt.Panel2.Controls.Add(this.dateEdit_DutyHistory);
			this.splitContainerControl_DutyMgmt.Panel2.Controls.Add(this.notePanel_DutyHistory);
			this.splitContainerControl_DutyMgmt.Panel2.Controls.Add(this.comboBoxEdit_DutySearTeaClass);
			this.splitContainerControl_DutyMgmt.Panel2.Controls.Add(this.comboBoxEdit_DutySearTeaGarde);
			this.splitContainerControl_DutyMgmt.Panel2.Controls.Add(this.textEdit_DutySearTeaID);
			this.splitContainerControl_DutyMgmt.Panel2.Controls.Add(this.notePanel_AsignDutyByTeaID);
			this.splitContainerControl_DutyMgmt.Panel2.Controls.Add(this.notePanel_TeaDutyAsignSearTitle);
			this.splitContainerControl_DutyMgmt.Panel2.Controls.Add(this.notePannotePanel_AsignDutyByTeaGrade);
			this.splitContainerControl_DutyMgmt.Panel2.Controls.Add(this.notePannotePanel_AsignDutyByTeaName);
			this.splitContainerControl_DutyMgmt.Panel2.Controls.Add(this.notePannotePanel_AsignDutyByTeaClass);
			this.splitContainerControl_DutyMgmt.Panel2.Controls.Add(this.textEdit_DutySearTeaName);
			this.splitContainerControl_DutyMgmt.Panel2.Controls.Add(this.simpleButton_TeaSearForDuty);
			this.splitContainerControl_DutyMgmt.Panel2.Text = "splitContainerControl2_Panel2";
			this.splitContainerControl_DutyMgmt.Size = new System.Drawing.Size(762, 187);
			this.splitContainerControl_DutyMgmt.SplitterPosition = 324;
			this.splitContainerControl_DutyMgmt.TabIndex = 0;
			this.splitContainerControl_DutyMgmt.Text = "splitContainerControl2";
			// 
			// textEdit_DutyStartTime
			// 
			this.textEdit_DutyStartTime.EditValue = "";
			this.textEdit_DutyStartTime.Location = new System.Drawing.Point(120, 61);
			this.textEdit_DutyStartTime.Name = "textEdit_DutyStartTime";
			// 
			// textEdit_DutyStartTime.Properties
			// 
			this.textEdit_DutyStartTime.Properties.DisplayFormat.FormatString = "HH:mm:ss";
			this.textEdit_DutyStartTime.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
			this.textEdit_DutyStartTime.Properties.EditValueChangedFiringMode = DevExpress.XtraEditors.Controls.EditValueChangedFiringMode.Buffered;
			this.textEdit_DutyStartTime.Properties.Mask.EditMask = "HH:mm:ss";
			this.textEdit_DutyStartTime.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.DateTime;
			this.textEdit_DutyStartTime.Size = new System.Drawing.Size(160, 23);
			this.textEdit_DutyStartTime.TabIndex = 12;
			// 
			// dataNavigator_DutyDetails
			// 
			this.dataNavigator_DutyDetails.Buttons.Append.Hint = "添加一条新记录";
			this.dataNavigator_DutyDetails.Buttons.CancelEdit.Hint = "取消修改";
			this.dataNavigator_DutyDetails.Buttons.EndEdit.Hint = "保存修改";
			this.dataNavigator_DutyDetails.Buttons.First.Hint = "查看第一条记录";
			this.dataNavigator_DutyDetails.Buttons.Last.Hint = "查看最后一条记录";
			this.dataNavigator_DutyDetails.Buttons.Next.Hint = "查看下一条记录";
			this.dataNavigator_DutyDetails.Buttons.NextPage.Hint = "跳至下一页";
			this.dataNavigator_DutyDetails.Buttons.Prev.Hint = "查看前一条记录";
			this.dataNavigator_DutyDetails.Buttons.PrevPage.Hint = "跳至前一页";
			this.dataNavigator_DutyDetails.Buttons.Remove.Hint = "删除此条记录";
			this.dataNavigator_DutyDetails.Dock = System.Windows.Forms.DockStyle.Bottom;
			this.dataNavigator_DutyDetails.Location = new System.Drawing.Point(0, 157);
			this.dataNavigator_DutyDetails.Name = "dataNavigator_DutyDetails";
			this.dataNavigator_DutyDetails.ShowToolTips = true;
			this.dataNavigator_DutyDetails.Size = new System.Drawing.Size(318, 24);
			this.dataNavigator_DutyDetails.TabIndex = 10;
			this.dataNavigator_DutyDetails.Text = "班次信息管理";
			this.dataNavigator_DutyDetails.TextLocation = DevExpress.XtraEditors.NavigatorButtonsTextLocation.End;
			this.dataNavigator_DutyDetails.ButtonClick += new DevExpress.XtraEditors.NavigatorButtonClickEventHandler(this.dataNavigator_DutyDetails_ButtonClick);
			// 
			// notePanel_DutyDetailsTitle
			// 
			this.notePanel_DutyDetailsTitle.BackColor = System.Drawing.Color.LightGoldenrodYellow;
			this.notePanel_DutyDetailsTitle.Dock = System.Windows.Forms.DockStyle.Top;
			this.notePanel_DutyDetailsTitle.ForeColor = System.Drawing.Color.OrangeRed;
			this.notePanel_DutyDetailsTitle.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_DutyDetailsTitle.Location = new System.Drawing.Point(0, 0);
			this.notePanel_DutyDetailsTitle.MaxRows = 5;
			this.notePanel_DutyDetailsTitle.Name = "notePanel_DutyDetailsTitle";
			this.notePanel_DutyDetailsTitle.ParentAutoHeight = true;
			this.notePanel_DutyDetailsTitle.Size = new System.Drawing.Size(318, 23);
			this.notePanel_DutyDetailsTitle.TabIndex = 2;
			this.notePanel_DutyDetailsTitle.TabStop = false;
			this.notePanel_DutyDetailsTitle.Text = "班次详细信息管理(*为必须填写)";
			// 
			// pnlHint_DutyName
			// 
			this.pnlHint_DutyName.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.pnlHint_DutyName.BackColor2 = System.Drawing.Color.DarkGray;
			this.pnlHint_DutyName.Font = new System.Drawing.Font("Tahoma", 8F);
			this.pnlHint_DutyName.ForeColor = System.Drawing.Color.Black;
			this.pnlHint_DutyName.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.pnlHint_DutyName.Location = new System.Drawing.Point(24, 32);
			this.pnlHint_DutyName.MaxRows = 5;
			this.pnlHint_DutyName.Name = "pnlHint_DutyName";
			this.pnlHint_DutyName.ParentAutoHeight = true;
			this.pnlHint_DutyName.Size = new System.Drawing.Size(80, 22);
			this.pnlHint_DutyName.TabIndex = 3;
			this.pnlHint_DutyName.TabStop = false;
			this.pnlHint_DutyName.Text = "班次名称";
			// 
			// label_ReqOfDutyName
			// 
			this.label_ReqOfDutyName.ForeColor = System.Drawing.Color.Red;
			this.label_ReqOfDutyName.Location = new System.Drawing.Point(8, 32);
			this.label_ReqOfDutyName.Name = "label_ReqOfDutyName";
			this.label_ReqOfDutyName.Size = new System.Drawing.Size(16, 16);
			this.label_ReqOfDutyName.TabIndex = 6;
			this.label_ReqOfDutyName.Text = "*";
			this.label_ReqOfDutyName.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			// 
			// textEdit_AddDutyName
			// 
			this.textEdit_AddDutyName.EditValue = "";
			this.textEdit_AddDutyName.Location = new System.Drawing.Point(120, 32);
			this.textEdit_AddDutyName.Name = "textEdit_AddDutyName";
			this.textEdit_AddDutyName.Size = new System.Drawing.Size(160, 23);
			this.textEdit_AddDutyName.TabIndex = 4;
			this.textEdit_AddDutyName.EditValueChanged += new System.EventHandler(this.textEdit_AddDutyName_EditValueChanged);
			this.textEdit_AddDutyName.Leave += new System.EventHandler(this.textEdit_AddDutyName_Leave);
			// 
			// notePanel_DutyStartTime
			// 
			this.notePanel_DutyStartTime.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_DutyStartTime.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_DutyStartTime.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_DutyStartTime.ForeColor = System.Drawing.Color.Black;
			this.notePanel_DutyStartTime.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_DutyStartTime.Location = new System.Drawing.Point(24, 61);
			this.notePanel_DutyStartTime.MaxRows = 5;
			this.notePanel_DutyStartTime.Name = "notePanel_DutyStartTime";
			this.notePanel_DutyStartTime.ParentAutoHeight = true;
			this.notePanel_DutyStartTime.Size = new System.Drawing.Size(80, 22);
			this.notePanel_DutyStartTime.TabIndex = 3;
			this.notePanel_DutyStartTime.TabStop = false;
			this.notePanel_DutyStartTime.Text = "起始时间";
			// 
			// label_ReqOfDutyEndTime
			// 
			this.label_ReqOfDutyEndTime.ForeColor = System.Drawing.Color.Red;
			this.label_ReqOfDutyEndTime.Location = new System.Drawing.Point(8, 64);
			this.label_ReqOfDutyEndTime.Name = "label_ReqOfDutyEndTime";
			this.label_ReqOfDutyEndTime.Size = new System.Drawing.Size(16, 16);
			this.label_ReqOfDutyEndTime.TabIndex = 8;
			this.label_ReqOfDutyEndTime.Text = "*";
			this.label_ReqOfDutyEndTime.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			// 
			// notePanel_DutyRemark
			// 
			this.notePanel_DutyRemark.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_DutyRemark.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_DutyRemark.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_DutyRemark.ForeColor = System.Drawing.Color.Black;
			this.notePanel_DutyRemark.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_DutyRemark.Location = new System.Drawing.Point(24, 119);
			this.notePanel_DutyRemark.MaxRows = 5;
			this.notePanel_DutyRemark.Name = "notePanel_DutyRemark";
			this.notePanel_DutyRemark.ParentAutoHeight = true;
			this.notePanel_DutyRemark.Size = new System.Drawing.Size(80, 22);
			this.notePanel_DutyRemark.TabIndex = 3;
			this.notePanel_DutyRemark.TabStop = false;
			this.notePanel_DutyRemark.Text = "  备  注";
			// 
			// textEdit_AddDutyRemark
			// 
			this.textEdit_AddDutyRemark.EditValue = "";
			this.textEdit_AddDutyRemark.Location = new System.Drawing.Point(120, 120);
			this.textEdit_AddDutyRemark.Name = "textEdit_AddDutyRemark";
			this.textEdit_AddDutyRemark.Size = new System.Drawing.Size(160, 23);
			this.textEdit_AddDutyRemark.TabIndex = 4;
			// 
			// notePanel_DutyEndTime
			// 
			this.notePanel_DutyEndTime.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_DutyEndTime.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_DutyEndTime.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_DutyEndTime.ForeColor = System.Drawing.Color.Black;
			this.notePanel_DutyEndTime.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_DutyEndTime.Location = new System.Drawing.Point(24, 90);
			this.notePanel_DutyEndTime.MaxRows = 5;
			this.notePanel_DutyEndTime.Name = "notePanel_DutyEndTime";
			this.notePanel_DutyEndTime.ParentAutoHeight = true;
			this.notePanel_DutyEndTime.Size = new System.Drawing.Size(80, 22);
			this.notePanel_DutyEndTime.TabIndex = 3;
			this.notePanel_DutyEndTime.TabStop = false;
			this.notePanel_DutyEndTime.Text = "结束时间";
			// 
			// label_ReqOfDutyStartTime
			// 
			this.label_ReqOfDutyStartTime.ForeColor = System.Drawing.Color.Red;
			this.label_ReqOfDutyStartTime.Location = new System.Drawing.Point(8, 88);
			this.label_ReqOfDutyStartTime.Name = "label_ReqOfDutyStartTime";
			this.label_ReqOfDutyStartTime.Size = new System.Drawing.Size(16, 16);
			this.label_ReqOfDutyStartTime.TabIndex = 7;
			this.label_ReqOfDutyStartTime.Text = "*";
			this.label_ReqOfDutyStartTime.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			// 
			// textEdit_DutyEndTime
			// 
			this.textEdit_DutyEndTime.EditValue = "";
			this.textEdit_DutyEndTime.Location = new System.Drawing.Point(120, 90);
			this.textEdit_DutyEndTime.Name = "textEdit_DutyEndTime";
			// 
			// textEdit_DutyEndTime.Properties
			// 
			this.textEdit_DutyEndTime.Properties.DisplayFormat.FormatString = "d";
			this.textEdit_DutyEndTime.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
			this.textEdit_DutyEndTime.Properties.Mask.EditMask = "HH:mm:ss";
			this.textEdit_DutyEndTime.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.DateTime;
			this.textEdit_DutyEndTime.Size = new System.Drawing.Size(160, 23);
			this.textEdit_DutyEndTime.TabIndex = 16;
			this.textEdit_DutyEndTime.Tag = "";
			// 
			// simpleButton_TeaDutySave
			// 
			this.simpleButton_TeaDutySave.Location = new System.Drawing.Point(224, 136);
			this.simpleButton_TeaDutySave.Name = "simpleButton_TeaDutySave";
			this.simpleButton_TeaDutySave.Size = new System.Drawing.Size(88, 24);
			this.simpleButton_TeaDutySave.TabIndex = 13;
			this.simpleButton_TeaDutySave.Text = "下周班保存";
			this.simpleButton_TeaDutySave.Click += new System.EventHandler(this.simpleButton_TeaDutySave_Click);
			// 
			// simpleButton_LoadCurDuty
			// 
			this.simpleButton_LoadCurDuty.Enabled = false;
			this.simpleButton_LoadCurDuty.Location = new System.Drawing.Point(128, 136);
			this.simpleButton_LoadCurDuty.Name = "simpleButton_LoadCurDuty";
			this.simpleButton_LoadCurDuty.Size = new System.Drawing.Size(88, 24);
			this.simpleButton_LoadCurDuty.TabIndex = 12;
			this.simpleButton_LoadCurDuty.Text = "本周班载入";
			this.simpleButton_LoadCurDuty.Click += new System.EventHandler(this.simpleButton_LoadCurDuty_Click);
			// 
			// simpleButton_LoadHisDuty
			// 
			this.simpleButton_LoadHisDuty.Location = new System.Drawing.Point(32, 136);
			this.simpleButton_LoadHisDuty.Name = "simpleButton_LoadHisDuty";
			this.simpleButton_LoadHisDuty.Size = new System.Drawing.Size(88, 24);
			this.simpleButton_LoadHisDuty.TabIndex = 11;
			this.simpleButton_LoadHisDuty.Text = "历史班载入";
			this.simpleButton_LoadHisDuty.Click += new System.EventHandler(this.simpleButton_LoadHisDuty_Click);
			// 
			// dateEdit_DutyHistory
			// 
			this.dateEdit_DutyHistory.EditValue = new System.DateTime(2006, 3, 23, 0, 0, 0, 0);
			this.dateEdit_DutyHistory.Location = new System.Drawing.Point(120, 96);
			this.dateEdit_DutyHistory.Name = "dateEdit_DutyHistory";
			// 
			// dateEdit_DutyHistory.Properties
			// 
			this.dateEdit_DutyHistory.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																														 new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.dateEdit_DutyHistory.Properties.Mask.EditMask = "d";
			this.dateEdit_DutyHistory.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.DateTime;
			this.dateEdit_DutyHistory.Size = new System.Drawing.Size(88, 23);
			this.dateEdit_DutyHistory.TabIndex = 10;
			// 
			// notePanel_DutyHistory
			// 
			this.notePanel_DutyHistory.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_DutyHistory.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_DutyHistory.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_DutyHistory.ForeColor = System.Drawing.Color.Black;
			this.notePanel_DutyHistory.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_DutyHistory.Location = new System.Drawing.Point(32, 96);
			this.notePanel_DutyHistory.MaxRows = 5;
			this.notePanel_DutyHistory.Name = "notePanel_DutyHistory";
			this.notePanel_DutyHistory.ParentAutoHeight = true;
			this.notePanel_DutyHistory.Size = new System.Drawing.Size(80, 22);
			this.notePanel_DutyHistory.TabIndex = 9;
			this.notePanel_DutyHistory.TabStop = false;
			this.notePanel_DutyHistory.Text = "班次时间";
			// 
			// comboBoxEdit_DutySearTeaClass
			// 
			this.comboBoxEdit_DutySearTeaClass.EditValue = "全部";
			this.comboBoxEdit_DutySearTeaClass.Location = new System.Drawing.Point(312, 64);
			this.comboBoxEdit_DutySearTeaClass.Name = "comboBoxEdit_DutySearTeaClass";
			// 
			// comboBoxEdit_DutySearTeaClass.Properties
			// 
			this.comboBoxEdit_DutySearTeaClass.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																																  new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.comboBoxEdit_DutySearTeaClass.Properties.Items.AddRange(new object[] {
																						  "全部"});
			this.comboBoxEdit_DutySearTeaClass.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
			this.comboBoxEdit_DutySearTeaClass.Size = new System.Drawing.Size(88, 23);
			this.comboBoxEdit_DutySearTeaClass.TabIndex = 7;
			this.comboBoxEdit_DutySearTeaClass.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit_DutySearTeaClass_SelectedIndexChanged);
			// 
			// comboBoxEdit_DutySearTeaGarde
			// 
			this.comboBoxEdit_DutySearTeaGarde.EditValue = "全部";
			this.comboBoxEdit_DutySearTeaGarde.Location = new System.Drawing.Point(120, 64);
			this.comboBoxEdit_DutySearTeaGarde.Name = "comboBoxEdit_DutySearTeaGarde";
			// 
			// comboBoxEdit_DutySearTeaGarde.Properties
			// 
			this.comboBoxEdit_DutySearTeaGarde.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																																  new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.comboBoxEdit_DutySearTeaGarde.Properties.Items.AddRange(new object[] {
																						  "全部"});
			this.comboBoxEdit_DutySearTeaGarde.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
			this.comboBoxEdit_DutySearTeaGarde.Size = new System.Drawing.Size(88, 23);
			this.comboBoxEdit_DutySearTeaGarde.TabIndex = 6;
			this.comboBoxEdit_DutySearTeaGarde.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit_DutySearTeaGarde_SelectedIndexChanged);
			// 
			// textEdit_DutySearTeaID
			// 
			this.textEdit_DutySearTeaID.EditValue = "";
			this.textEdit_DutySearTeaID.Location = new System.Drawing.Point(120, 32);
			this.textEdit_DutySearTeaID.Name = "textEdit_DutySearTeaID";
			this.textEdit_DutySearTeaID.Size = new System.Drawing.Size(88, 23);
			this.textEdit_DutySearTeaID.TabIndex = 5;
			// 
			// notePanel_AsignDutyByTeaID
			// 
			this.notePanel_AsignDutyByTeaID.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_AsignDutyByTeaID.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_AsignDutyByTeaID.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_AsignDutyByTeaID.ForeColor = System.Drawing.Color.Black;
			this.notePanel_AsignDutyByTeaID.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_AsignDutyByTeaID.Location = new System.Drawing.Point(32, 32);
			this.notePanel_AsignDutyByTeaID.MaxRows = 5;
			this.notePanel_AsignDutyByTeaID.Name = "notePanel_AsignDutyByTeaID";
			this.notePanel_AsignDutyByTeaID.ParentAutoHeight = true;
			this.notePanel_AsignDutyByTeaID.Size = new System.Drawing.Size(80, 22);
			this.notePanel_AsignDutyByTeaID.TabIndex = 4;
			this.notePanel_AsignDutyByTeaID.TabStop = false;
			this.notePanel_AsignDutyByTeaID.Text = "教师工号";
			// 
			// notePanel_TeaDutyAsignSearTitle
			// 
			this.notePanel_TeaDutyAsignSearTitle.BackColor = System.Drawing.Color.LightGoldenrodYellow;
			this.notePanel_TeaDutyAsignSearTitle.Dock = System.Windows.Forms.DockStyle.Top;
			this.notePanel_TeaDutyAsignSearTitle.ForeColor = System.Drawing.Color.OrangeRed;
			this.notePanel_TeaDutyAsignSearTitle.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_TeaDutyAsignSearTitle.Location = new System.Drawing.Point(0, 0);
			this.notePanel_TeaDutyAsignSearTitle.MaxRows = 5;
			this.notePanel_TeaDutyAsignSearTitle.Name = "notePanel_TeaDutyAsignSearTitle";
			this.notePanel_TeaDutyAsignSearTitle.ParentAutoHeight = true;
			this.notePanel_TeaDutyAsignSearTitle.Size = new System.Drawing.Size(428, 23);
			this.notePanel_TeaDutyAsignSearTitle.TabIndex = 3;
			this.notePanel_TeaDutyAsignSearTitle.TabStop = false;
			this.notePanel_TeaDutyAsignSearTitle.Text = "**班次载入时间以一周为准";
			// 
			// notePannotePanel_AsignDutyByTeaGrade
			// 
			this.notePannotePanel_AsignDutyByTeaGrade.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePannotePanel_AsignDutyByTeaGrade.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePannotePanel_AsignDutyByTeaGrade.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePannotePanel_AsignDutyByTeaGrade.ForeColor = System.Drawing.Color.Black;
			this.notePannotePanel_AsignDutyByTeaGrade.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePannotePanel_AsignDutyByTeaGrade.Location = new System.Drawing.Point(32, 64);
			this.notePannotePanel_AsignDutyByTeaGrade.MaxRows = 5;
			this.notePannotePanel_AsignDutyByTeaGrade.Name = "notePannotePanel_AsignDutyByTeaGrade";
			this.notePannotePanel_AsignDutyByTeaGrade.ParentAutoHeight = true;
			this.notePannotePanel_AsignDutyByTeaGrade.Size = new System.Drawing.Size(80, 22);
			this.notePannotePanel_AsignDutyByTeaGrade.TabIndex = 4;
			this.notePannotePanel_AsignDutyByTeaGrade.TabStop = false;
			this.notePannotePanel_AsignDutyByTeaGrade.Text = "所在部门";
			// 
			// notePannotePanel_AsignDutyByTeaName
			// 
			this.notePannotePanel_AsignDutyByTeaName.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePannotePanel_AsignDutyByTeaName.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePannotePanel_AsignDutyByTeaName.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePannotePanel_AsignDutyByTeaName.ForeColor = System.Drawing.Color.Black;
			this.notePannotePanel_AsignDutyByTeaName.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePannotePanel_AsignDutyByTeaName.Location = new System.Drawing.Point(224, 32);
			this.notePannotePanel_AsignDutyByTeaName.MaxRows = 5;
			this.notePannotePanel_AsignDutyByTeaName.Name = "notePannotePanel_AsignDutyByTeaName";
			this.notePannotePanel_AsignDutyByTeaName.ParentAutoHeight = true;
			this.notePannotePanel_AsignDutyByTeaName.Size = new System.Drawing.Size(80, 22);
			this.notePannotePanel_AsignDutyByTeaName.TabIndex = 4;
			this.notePannotePanel_AsignDutyByTeaName.TabStop = false;
			this.notePannotePanel_AsignDutyByTeaName.Text = "教师姓名";
			// 
			// notePannotePanel_AsignDutyByTeaClass
			// 
			this.notePannotePanel_AsignDutyByTeaClass.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePannotePanel_AsignDutyByTeaClass.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePannotePanel_AsignDutyByTeaClass.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePannotePanel_AsignDutyByTeaClass.ForeColor = System.Drawing.Color.Black;
			this.notePannotePanel_AsignDutyByTeaClass.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePannotePanel_AsignDutyByTeaClass.Location = new System.Drawing.Point(224, 64);
			this.notePannotePanel_AsignDutyByTeaClass.MaxRows = 5;
			this.notePannotePanel_AsignDutyByTeaClass.Name = "notePannotePanel_AsignDutyByTeaClass";
			this.notePannotePanel_AsignDutyByTeaClass.ParentAutoHeight = true;
			this.notePannotePanel_AsignDutyByTeaClass.Size = new System.Drawing.Size(80, 22);
			this.notePannotePanel_AsignDutyByTeaClass.TabIndex = 4;
			this.notePannotePanel_AsignDutyByTeaClass.TabStop = false;
			this.notePannotePanel_AsignDutyByTeaClass.Text = "岗位";
			// 
			// textEdit_DutySearTeaName
			// 
			this.textEdit_DutySearTeaName.EditValue = "";
			this.textEdit_DutySearTeaName.Location = new System.Drawing.Point(312, 32);
			this.textEdit_DutySearTeaName.Name = "textEdit_DutySearTeaName";
			this.textEdit_DutySearTeaName.Size = new System.Drawing.Size(88, 23);
			this.textEdit_DutySearTeaName.TabIndex = 5;
			// 
			// simpleButton_TeaSearForDuty
			// 
			this.simpleButton_TeaSearForDuty.Location = new System.Drawing.Point(320, 136);
			this.simpleButton_TeaSearForDuty.Name = "simpleButton_TeaSearForDuty";
			this.simpleButton_TeaSearForDuty.Size = new System.Drawing.Size(88, 24);
			this.simpleButton_TeaSearForDuty.TabIndex = 8;
			this.simpleButton_TeaSearForDuty.Text = "班次检索";
			this.simpleButton_TeaSearForDuty.Click += new System.EventHandler(this.simpleButton_TeaSearForDuty_Click);
			// 
			// xtraTabPage_TeaOnDutyInfo
			// 
			this.xtraTabPage_TeaOnDutyInfo.Appearance.PageClient.BackColor = System.Drawing.Color.WhiteSmoke;
			this.xtraTabPage_TeaOnDutyInfo.Appearance.PageClient.Options.UseBackColor = true;
			this.xtraTabPage_TeaOnDutyInfo.Controls.Add(this.groupControl_TeaDutyDetailsStatistic);
			this.xtraTabPage_TeaOnDutyInfo.Controls.Add(this.groupControl_TeaDutyDetailsSearch);
			this.xtraTabPage_TeaOnDutyInfo.Controls.Add(this.groupControl_TeaDutyDetails);
			this.xtraTabPage_TeaOnDutyInfo.Controls.Add(this.groupControl_TeaDutyOutDetails);
			this.xtraTabPage_TeaOnDutyInfo.Name = "xtraTabPage_TeaOnDutyInfo";
			this.xtraTabPage_TeaOnDutyInfo.Size = new System.Drawing.Size(768, 515);
			this.xtraTabPage_TeaOnDutyInfo.Text = "出勤信息";
			// 
			// groupControl_TeaDutyDetailsStatistic
			// 
			this.groupControl_TeaDutyDetailsStatistic.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
				| System.Windows.Forms.AnchorStyles.Left) 
				| System.Windows.Forms.AnchorStyles.Right)));
			this.groupControl_TeaDutyDetailsStatistic.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.groupControl_TeaDutyDetailsStatistic.AppearanceCaption.Options.UseFont = true;
			this.groupControl_TeaDutyDetailsStatistic.Controls.Add(this.textEdit_TeaOut);
			this.groupControl_TeaDutyDetailsStatistic.Controls.Add(this.textEdit_TeaShouldAttend);
			this.groupControl_TeaDutyDetailsStatistic.Controls.Add(this.textEdit_TeaAttend);
			this.groupControl_TeaDutyDetailsStatistic.Controls.Add(this.textEdit_TeaAbsence);
			this.groupControl_TeaDutyDetailsStatistic.Controls.Add(this.textEdit_TeaOffTime);
			this.groupControl_TeaDutyDetailsStatistic.Controls.Add(this.textEdit_TeaOnTime);
			this.groupControl_TeaDutyDetailsStatistic.Controls.Add(this.notePanel_TeaOut);
			this.groupControl_TeaDutyDetailsStatistic.Controls.Add(this.notePanel_TeaShouldAttend);
			this.groupControl_TeaDutyDetailsStatistic.Controls.Add(this.notePanel_TeaOnTime);
			this.groupControl_TeaDutyDetailsStatistic.Controls.Add(this.notePanel_TeaOffTime);
			this.groupControl_TeaDutyDetailsStatistic.Controls.Add(this.notePanel_TeaAttend);
			this.groupControl_TeaDutyDetailsStatistic.Controls.Add(this.notePanel_TeaAbsence);
			this.groupControl_TeaDutyDetailsStatistic.Location = new System.Drawing.Point(480, 304);
			this.groupControl_TeaDutyDetailsStatistic.Name = "groupControl_TeaDutyDetailsStatistic";
			this.groupControl_TeaDutyDetailsStatistic.Size = new System.Drawing.Size(288, 208);
			this.groupControl_TeaDutyDetailsStatistic.TabIndex = 1;
			this.groupControl_TeaDutyDetailsStatistic.Text = "出勤数据统计";
			// 
			// textEdit_TeaOut
			// 
			this.textEdit_TeaOut.EditValue = "";
			this.textEdit_TeaOut.Location = new System.Drawing.Point(160, 248);
			this.textEdit_TeaOut.Name = "textEdit_TeaOut";
			// 
			// textEdit_TeaOut.Properties
			// 
			this.textEdit_TeaOut.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.textEdit_TeaOut.Properties.Appearance.ForeColor = System.Drawing.Color.RoyalBlue;
			this.textEdit_TeaOut.Properties.Appearance.Options.UseFont = true;
			this.textEdit_TeaOut.Properties.Appearance.Options.UseForeColor = true;
			this.textEdit_TeaOut.Size = new System.Drawing.Size(120, 23);
			this.textEdit_TeaOut.TabIndex = 13;
			// 
			// textEdit_TeaShouldAttend
			// 
			this.textEdit_TeaShouldAttend.EditValue = "";
			this.textEdit_TeaShouldAttend.Location = new System.Drawing.Point(160, 200);
			this.textEdit_TeaShouldAttend.Name = "textEdit_TeaShouldAttend";
			// 
			// textEdit_TeaShouldAttend.Properties
			// 
			this.textEdit_TeaShouldAttend.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.textEdit_TeaShouldAttend.Properties.Appearance.ForeColor = System.Drawing.Color.RoyalBlue;
			this.textEdit_TeaShouldAttend.Properties.Appearance.Options.UseFont = true;
			this.textEdit_TeaShouldAttend.Properties.Appearance.Options.UseForeColor = true;
			this.textEdit_TeaShouldAttend.Size = new System.Drawing.Size(120, 23);
			this.textEdit_TeaShouldAttend.TabIndex = 12;
			// 
			// textEdit_TeaAttend
			// 
			this.textEdit_TeaAttend.EditValue = "";
			this.textEdit_TeaAttend.Location = new System.Drawing.Point(160, 160);
			this.textEdit_TeaAttend.Name = "textEdit_TeaAttend";
			// 
			// textEdit_TeaAttend.Properties
			// 
			this.textEdit_TeaAttend.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.textEdit_TeaAttend.Properties.Appearance.ForeColor = System.Drawing.Color.RoyalBlue;
			this.textEdit_TeaAttend.Properties.Appearance.Options.UseFont = true;
			this.textEdit_TeaAttend.Properties.Appearance.Options.UseForeColor = true;
			this.textEdit_TeaAttend.Size = new System.Drawing.Size(120, 23);
			this.textEdit_TeaAttend.TabIndex = 11;
			// 
			// textEdit_TeaAbsence
			// 
			this.textEdit_TeaAbsence.EditValue = "";
			this.textEdit_TeaAbsence.Location = new System.Drawing.Point(160, 120);
			this.textEdit_TeaAbsence.Name = "textEdit_TeaAbsence";
			// 
			// textEdit_TeaAbsence.Properties
			// 
			this.textEdit_TeaAbsence.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.textEdit_TeaAbsence.Properties.Appearance.ForeColor = System.Drawing.Color.RoyalBlue;
			this.textEdit_TeaAbsence.Properties.Appearance.Options.UseFont = true;
			this.textEdit_TeaAbsence.Properties.Appearance.Options.UseForeColor = true;
			this.textEdit_TeaAbsence.Size = new System.Drawing.Size(120, 23);
			this.textEdit_TeaAbsence.TabIndex = 10;
			// 
			// textEdit_TeaOffTime
			// 
			this.textEdit_TeaOffTime.EditValue = "";
			this.textEdit_TeaOffTime.Location = new System.Drawing.Point(160, 80);
			this.textEdit_TeaOffTime.Name = "textEdit_TeaOffTime";
			// 
			// textEdit_TeaOffTime.Properties
			// 
			this.textEdit_TeaOffTime.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.textEdit_TeaOffTime.Properties.Appearance.ForeColor = System.Drawing.Color.RoyalBlue;
			this.textEdit_TeaOffTime.Properties.Appearance.Options.UseFont = true;
			this.textEdit_TeaOffTime.Properties.Appearance.Options.UseForeColor = true;
			this.textEdit_TeaOffTime.Size = new System.Drawing.Size(120, 23);
			this.textEdit_TeaOffTime.TabIndex = 9;
			// 
			// textEdit_TeaOnTime
			// 
			this.textEdit_TeaOnTime.EditValue = "";
			this.textEdit_TeaOnTime.Location = new System.Drawing.Point(160, 40);
			this.textEdit_TeaOnTime.Name = "textEdit_TeaOnTime";
			// 
			// textEdit_TeaOnTime.Properties
			// 
			this.textEdit_TeaOnTime.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.textEdit_TeaOnTime.Properties.Appearance.ForeColor = System.Drawing.Color.RoyalBlue;
			this.textEdit_TeaOnTime.Properties.Appearance.Options.UseFont = true;
			this.textEdit_TeaOnTime.Properties.Appearance.Options.UseForeColor = true;
			this.textEdit_TeaOnTime.Size = new System.Drawing.Size(120, 23);
			this.textEdit_TeaOnTime.TabIndex = 8;
			// 
			// notePanel_TeaOut
			// 
			this.notePanel_TeaOut.BackColor = System.Drawing.Color.Orange;
			this.notePanel_TeaOut.ForeColor = System.Drawing.Color.White;
			this.notePanel_TeaOut.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_TeaOut.Location = new System.Drawing.Point(56, 248);
			this.notePanel_TeaOut.MaxRows = 5;
			this.notePanel_TeaOut.Name = "notePanel_TeaOut";
			this.notePanel_TeaOut.ParentAutoHeight = true;
			this.notePanel_TeaOut.Size = new System.Drawing.Size(88, 23);
			this.notePanel_TeaOut.TabIndex = 7;
			this.notePanel_TeaOut.TabStop = false;
			this.notePanel_TeaOut.Text = "  外  出";
			// 
			// notePanel_TeaShouldAttend
			// 
			this.notePanel_TeaShouldAttend.BackColor = System.Drawing.Color.Orange;
			this.notePanel_TeaShouldAttend.ForeColor = System.Drawing.Color.White;
			this.notePanel_TeaShouldAttend.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_TeaShouldAttend.Location = new System.Drawing.Point(56, 200);
			this.notePanel_TeaShouldAttend.MaxRows = 5;
			this.notePanel_TeaShouldAttend.Name = "notePanel_TeaShouldAttend";
			this.notePanel_TeaShouldAttend.ParentAutoHeight = true;
			this.notePanel_TeaShouldAttend.Size = new System.Drawing.Size(88, 23);
			this.notePanel_TeaShouldAttend.TabIndex = 6;
			this.notePanel_TeaShouldAttend.TabStop = false;
			this.notePanel_TeaShouldAttend.Text = " 应出勤";
			// 
			// notePanel_TeaOnTime
			// 
			this.notePanel_TeaOnTime.BackColor = System.Drawing.Color.Orange;
			this.notePanel_TeaOnTime.ForeColor = System.Drawing.Color.White;
			this.notePanel_TeaOnTime.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_TeaOnTime.Location = new System.Drawing.Point(56, 40);
			this.notePanel_TeaOnTime.MaxRows = 5;
			this.notePanel_TeaOnTime.Name = "notePanel_TeaOnTime";
			this.notePanel_TeaOnTime.ParentAutoHeight = true;
			this.notePanel_TeaOnTime.Size = new System.Drawing.Size(88, 23);
			this.notePanel_TeaOnTime.TabIndex = 5;
			this.notePanel_TeaOnTime.TabStop = false;
			this.notePanel_TeaOnTime.Text = "  迟  到";
			// 
			// notePanel_TeaOffTime
			// 
			this.notePanel_TeaOffTime.BackColor = System.Drawing.Color.Orange;
			this.notePanel_TeaOffTime.ForeColor = System.Drawing.Color.White;
			this.notePanel_TeaOffTime.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_TeaOffTime.Location = new System.Drawing.Point(56, 80);
			this.notePanel_TeaOffTime.MaxRows = 5;
			this.notePanel_TeaOffTime.Name = "notePanel_TeaOffTime";
			this.notePanel_TeaOffTime.ParentAutoHeight = true;
			this.notePanel_TeaOffTime.Size = new System.Drawing.Size(88, 23);
			this.notePanel_TeaOffTime.TabIndex = 5;
			this.notePanel_TeaOffTime.TabStop = false;
			this.notePanel_TeaOffTime.Text = "  早  退";
			// 
			// notePanel_TeaAttend
			// 
			this.notePanel_TeaAttend.BackColor = System.Drawing.Color.Orange;
			this.notePanel_TeaAttend.ForeColor = System.Drawing.Color.White;
			this.notePanel_TeaAttend.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_TeaAttend.Location = new System.Drawing.Point(56, 160);
			this.notePanel_TeaAttend.MaxRows = 5;
			this.notePanel_TeaAttend.Name = "notePanel_TeaAttend";
			this.notePanel_TeaAttend.ParentAutoHeight = true;
			this.notePanel_TeaAttend.Size = new System.Drawing.Size(88, 23);
			this.notePanel_TeaAttend.TabIndex = 5;
			this.notePanel_TeaAttend.TabStop = false;
			this.notePanel_TeaAttend.Text = " 实出勤";
			// 
			// notePanel_TeaAbsence
			// 
			this.notePanel_TeaAbsence.BackColor = System.Drawing.Color.Orange;
			this.notePanel_TeaAbsence.ForeColor = System.Drawing.Color.White;
			this.notePanel_TeaAbsence.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_TeaAbsence.Location = new System.Drawing.Point(56, 120);
			this.notePanel_TeaAbsence.MaxRows = 5;
			this.notePanel_TeaAbsence.Name = "notePanel_TeaAbsence";
			this.notePanel_TeaAbsence.ParentAutoHeight = true;
			this.notePanel_TeaAbsence.Size = new System.Drawing.Size(88, 23);
			this.notePanel_TeaAbsence.TabIndex = 5;
			this.notePanel_TeaAbsence.TabStop = false;
			this.notePanel_TeaAbsence.Text = "  缺  勤";
			// 
			// groupControl_TeaDutyDetailsSearch
			// 
			this.groupControl_TeaDutyDetailsSearch.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.groupControl_TeaDutyDetailsSearch.AppearanceCaption.Options.UseFont = true;
			this.groupControl_TeaDutyDetailsSearch.Controls.Add(this.simpleButton4);
			this.groupControl_TeaDutyDetailsSearch.Controls.Add(this.comboBoxEdit_TeaDutyDetailsFlowType);
			this.groupControl_TeaDutyDetailsSearch.Controls.Add(this.notePanel_TeaDutyDetailsFlowType);
			this.groupControl_TeaDutyDetailsSearch.Controls.Add(this.comboBoxEdit_TeaDutyDetailsSerType);
			this.groupControl_TeaDutyDetailsSearch.Controls.Add(this.notePanel_TeaDutyDetailsSerType);
			this.groupControl_TeaDutyDetailsSearch.Controls.Add(this.simpleButton_SearTeaDutyDetails);
			this.groupControl_TeaDutyDetailsSearch.Controls.Add(this.dateEdit_TeaDutyDetailsSearByStartTime);
			this.groupControl_TeaDutyDetailsSearch.Controls.Add(this.comboBoxEdit_TeaDutyDetailsSearByGrade);
			this.groupControl_TeaDutyDetailsSearch.Controls.Add(this.textEdit_TeaDutyDetailsSearByID);
			this.groupControl_TeaDutyDetailsSearch.Controls.Add(this.notePanel_TeaDutyDetailsSearByID);
			this.groupControl_TeaDutyDetailsSearch.Controls.Add(this.notePanel_TeaDutyDetailSearByName);
			this.groupControl_TeaDutyDetailsSearch.Controls.Add(this.notePanel_TeaDutyDetailsSearByGrade);
			this.groupControl_TeaDutyDetailsSearch.Controls.Add(this.notePanel_TeaDutyDetailsSearByClass);
			this.groupControl_TeaDutyDetailsSearch.Controls.Add(this.notePanel_TeaDutyDetailsSearByStartTime);
			this.groupControl_TeaDutyDetailsSearch.Controls.Add(this.notePanel_TeaDutyDetailsSearByEndTime);
			this.groupControl_TeaDutyDetailsSearch.Controls.Add(this.textEdit_TeaDutyDetailsSearByName);
			this.groupControl_TeaDutyDetailsSearch.Controls.Add(this.comboBoxEdit_TeaDutyDetailsSearByClass);
			this.groupControl_TeaDutyDetailsSearch.Controls.Add(this.dateEdit_TeaDutyDetailsSearByEndTime);
			this.groupControl_TeaDutyDetailsSearch.Controls.Add(this.simpleButton1);
			this.groupControl_TeaDutyDetailsSearch.Controls.Add(this.simpleButton3);
			this.groupControl_TeaDutyDetailsSearch.Location = new System.Drawing.Point(0, 0);
			this.groupControl_TeaDutyDetailsSearch.Name = "groupControl_TeaDutyDetailsSearch";
			this.groupControl_TeaDutyDetailsSearch.Size = new System.Drawing.Size(264, 304);
			this.groupControl_TeaDutyDetailsSearch.TabIndex = 0;
			this.groupControl_TeaDutyDetailsSearch.Text = "出勤信息检索条件";
			// 
			// simpleButton4
			// 
			this.simpleButton4.Location = new System.Drawing.Point(200, 272);
			this.simpleButton4.Name = "simpleButton4";
			this.simpleButton4.Size = new System.Drawing.Size(60, 23);
			this.simpleButton4.TabIndex = 13;
			this.simpleButton4.Text = "统计报表";
			this.simpleButton4.Click += new System.EventHandler(this.simpleButton4_Click);
			// 
			// comboBoxEdit_TeaDutyDetailsFlowType
			// 
			this.comboBoxEdit_TeaDutyDetailsFlowType.EditValue = "全部";
			this.comboBoxEdit_TeaDutyDetailsFlowType.Location = new System.Drawing.Point(136, 214);
			this.comboBoxEdit_TeaDutyDetailsFlowType.Name = "comboBoxEdit_TeaDutyDetailsFlowType";
			// 
			// comboBoxEdit_TeaDutyDetailsFlowType.Properties
			// 
			this.comboBoxEdit_TeaDutyDetailsFlowType.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																																		new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.comboBoxEdit_TeaDutyDetailsFlowType.Properties.Items.AddRange(new object[] {
																								"上班",
																								"下班",
																								"全部"});
			this.comboBoxEdit_TeaDutyDetailsFlowType.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
			this.comboBoxEdit_TeaDutyDetailsFlowType.Size = new System.Drawing.Size(112, 23);
			this.comboBoxEdit_TeaDutyDetailsFlowType.TabIndex = 12;
			// 
			// notePanel_TeaDutyDetailsFlowType
			// 
			this.notePanel_TeaDutyDetailsFlowType.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_TeaDutyDetailsFlowType.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_TeaDutyDetailsFlowType.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_TeaDutyDetailsFlowType.ForeColor = System.Drawing.Color.Black;
			this.notePanel_TeaDutyDetailsFlowType.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_TeaDutyDetailsFlowType.Location = new System.Drawing.Point(32, 214);
			this.notePanel_TeaDutyDetailsFlowType.MaxRows = 5;
			this.notePanel_TeaDutyDetailsFlowType.Name = "notePanel_TeaDutyDetailsFlowType";
			this.notePanel_TeaDutyDetailsFlowType.ParentAutoHeight = true;
			this.notePanel_TeaDutyDetailsFlowType.Size = new System.Drawing.Size(88, 22);
			this.notePanel_TeaDutyDetailsFlowType.TabIndex = 11;
			this.notePanel_TeaDutyDetailsFlowType.TabStop = false;
			this.notePanel_TeaDutyDetailsFlowType.Text = "状          态";
			// 
			// comboBoxEdit_TeaDutyDetailsSerType
			// 
			this.comboBoxEdit_TeaDutyDetailsSerType.EditValue = "一般查询";
			this.comboBoxEdit_TeaDutyDetailsSerType.Location = new System.Drawing.Point(136, 246);
			this.comboBoxEdit_TeaDutyDetailsSerType.Name = "comboBoxEdit_TeaDutyDetailsSerType";
			// 
			// comboBoxEdit_TeaDutyDetailsSerType.Properties
			// 
			this.comboBoxEdit_TeaDutyDetailsSerType.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																																	   new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.comboBoxEdit_TeaDutyDetailsSerType.Properties.Items.AddRange(new object[] {
																							   "一般查询",
																							   "精确查询",
																							   "综合查询"});
			this.comboBoxEdit_TeaDutyDetailsSerType.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
			this.comboBoxEdit_TeaDutyDetailsSerType.Size = new System.Drawing.Size(112, 23);
			this.comboBoxEdit_TeaDutyDetailsSerType.TabIndex = 10;
			this.comboBoxEdit_TeaDutyDetailsSerType.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit_TeaDutyDetailsSerType_SelectedIndexChanged);
			// 
			// notePanel_TeaDutyDetailsSerType
			// 
			this.notePanel_TeaDutyDetailsSerType.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_TeaDutyDetailsSerType.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_TeaDutyDetailsSerType.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_TeaDutyDetailsSerType.ForeColor = System.Drawing.Color.Black;
			this.notePanel_TeaDutyDetailsSerType.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_TeaDutyDetailsSerType.Location = new System.Drawing.Point(32, 246);
			this.notePanel_TeaDutyDetailsSerType.MaxRows = 5;
			this.notePanel_TeaDutyDetailsSerType.Name = "notePanel_TeaDutyDetailsSerType";
			this.notePanel_TeaDutyDetailsSerType.ParentAutoHeight = true;
			this.notePanel_TeaDutyDetailsSerType.Size = new System.Drawing.Size(88, 22);
			this.notePanel_TeaDutyDetailsSerType.TabIndex = 9;
			this.notePanel_TeaDutyDetailsSerType.TabStop = false;
			this.notePanel_TeaDutyDetailsSerType.Text = "查 询 类 型";
			// 
			// simpleButton_SearTeaDutyDetails
			// 
			this.simpleButton_SearTeaDutyDetails.Location = new System.Drawing.Point(70, 272);
			this.simpleButton_SearTeaDutyDetails.Name = "simpleButton_SearTeaDutyDetails";
			this.simpleButton_SearTeaDutyDetails.Size = new System.Drawing.Size(64, 23);
			this.simpleButton_SearTeaDutyDetails.TabIndex = 8;
			this.simpleButton_SearTeaDutyDetails.Text = "出勤报表";
			this.simpleButton_SearTeaDutyDetails.Click += new System.EventHandler(this.simpleButton_SearTeaDutyDetails_Click);
			// 
			// dateEdit_TeaDutyDetailsSearByStartTime
			// 
			this.dateEdit_TeaDutyDetailsSearByStartTime.EditValue = new System.DateTime(2005, 12, 31, 0, 0, 0, 0);
			this.dateEdit_TeaDutyDetailsSearByStartTime.Location = new System.Drawing.Point(136, 148);
			this.dateEdit_TeaDutyDetailsSearByStartTime.Name = "dateEdit_TeaDutyDetailsSearByStartTime";
			// 
			// dateEdit_TeaDutyDetailsSearByStartTime.Properties
			// 
			this.dateEdit_TeaDutyDetailsSearByStartTime.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																																		   new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.dateEdit_TeaDutyDetailsSearByStartTime.Properties.Mask.EditMask = "d";
			this.dateEdit_TeaDutyDetailsSearByStartTime.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.DateTime;
			this.dateEdit_TeaDutyDetailsSearByStartTime.Size = new System.Drawing.Size(112, 23);
			this.dateEdit_TeaDutyDetailsSearByStartTime.TabIndex = 7;
			// 
			// comboBoxEdit_TeaDutyDetailsSearByGrade
			// 
			this.comboBoxEdit_TeaDutyDetailsSearByGrade.EditValue = "全部";
			this.comboBoxEdit_TeaDutyDetailsSearByGrade.Location = new System.Drawing.Point(136, 84);
			this.comboBoxEdit_TeaDutyDetailsSearByGrade.Name = "comboBoxEdit_TeaDutyDetailsSearByGrade";
			// 
			// comboBoxEdit_TeaDutyDetailsSearByGrade.Properties
			// 
			this.comboBoxEdit_TeaDutyDetailsSearByGrade.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																																		   new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.comboBoxEdit_TeaDutyDetailsSearByGrade.Properties.Items.AddRange(new object[] {
																								   "全部"});
			this.comboBoxEdit_TeaDutyDetailsSearByGrade.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
			this.comboBoxEdit_TeaDutyDetailsSearByGrade.Size = new System.Drawing.Size(112, 23);
			this.comboBoxEdit_TeaDutyDetailsSearByGrade.TabIndex = 6;
			this.comboBoxEdit_TeaDutyDetailsSearByGrade.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit_TeaDutyDetailsSearByGrade_SelectedIndexChanged);
			// 
			// textEdit_TeaDutyDetailsSearByID
			// 
			this.textEdit_TeaDutyDetailsSearByID.EditValue = "";
			this.textEdit_TeaDutyDetailsSearByID.Location = new System.Drawing.Point(136, 24);
			this.textEdit_TeaDutyDetailsSearByID.Name = "textEdit_TeaDutyDetailsSearByID";
			this.textEdit_TeaDutyDetailsSearByID.Size = new System.Drawing.Size(112, 23);
			this.textEdit_TeaDutyDetailsSearByID.TabIndex = 5;
			// 
			// notePanel_TeaDutyDetailsSearByID
			// 
			this.notePanel_TeaDutyDetailsSearByID.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_TeaDutyDetailsSearByID.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_TeaDutyDetailsSearByID.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_TeaDutyDetailsSearByID.ForeColor = System.Drawing.Color.Black;
			this.notePanel_TeaDutyDetailsSearByID.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_TeaDutyDetailsSearByID.Location = new System.Drawing.Point(32, 24);
			this.notePanel_TeaDutyDetailsSearByID.MaxRows = 5;
			this.notePanel_TeaDutyDetailsSearByID.Name = "notePanel_TeaDutyDetailsSearByID";
			this.notePanel_TeaDutyDetailsSearByID.ParentAutoHeight = true;
			this.notePanel_TeaDutyDetailsSearByID.Size = new System.Drawing.Size(88, 22);
			this.notePanel_TeaDutyDetailsSearByID.TabIndex = 4;
			this.notePanel_TeaDutyDetailsSearByID.TabStop = false;
			this.notePanel_TeaDutyDetailsSearByID.Text = "教 师 工 号";
			// 
			// notePanel_TeaDutyDetailSearByName
			// 
			this.notePanel_TeaDutyDetailSearByName.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_TeaDutyDetailSearByName.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_TeaDutyDetailSearByName.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_TeaDutyDetailSearByName.ForeColor = System.Drawing.Color.Black;
			this.notePanel_TeaDutyDetailSearByName.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_TeaDutyDetailSearByName.Location = new System.Drawing.Point(32, 56);
			this.notePanel_TeaDutyDetailSearByName.MaxRows = 5;
			this.notePanel_TeaDutyDetailSearByName.Name = "notePanel_TeaDutyDetailSearByName";
			this.notePanel_TeaDutyDetailSearByName.ParentAutoHeight = true;
			this.notePanel_TeaDutyDetailSearByName.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.notePanel_TeaDutyDetailSearByName.Size = new System.Drawing.Size(88, 22);
			this.notePanel_TeaDutyDetailSearByName.TabIndex = 4;
			this.notePanel_TeaDutyDetailSearByName.TabStop = false;
			this.notePanel_TeaDutyDetailSearByName.Text = "教 师 姓 名";
			// 
			// notePanel_TeaDutyDetailsSearByGrade
			// 
			this.notePanel_TeaDutyDetailsSearByGrade.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_TeaDutyDetailsSearByGrade.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_TeaDutyDetailsSearByGrade.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_TeaDutyDetailsSearByGrade.ForeColor = System.Drawing.Color.Black;
			this.notePanel_TeaDutyDetailsSearByGrade.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_TeaDutyDetailsSearByGrade.Location = new System.Drawing.Point(32, 88);
			this.notePanel_TeaDutyDetailsSearByGrade.MaxRows = 5;
			this.notePanel_TeaDutyDetailsSearByGrade.Name = "notePanel_TeaDutyDetailsSearByGrade";
			this.notePanel_TeaDutyDetailsSearByGrade.ParentAutoHeight = true;
			this.notePanel_TeaDutyDetailsSearByGrade.Size = new System.Drawing.Size(88, 22);
			this.notePanel_TeaDutyDetailsSearByGrade.TabIndex = 4;
			this.notePanel_TeaDutyDetailsSearByGrade.TabStop = false;
			this.notePanel_TeaDutyDetailsSearByGrade.Text = "所 在 部 门";
			// 
			// notePanel_TeaDutyDetailsSearByClass
			// 
			this.notePanel_TeaDutyDetailsSearByClass.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_TeaDutyDetailsSearByClass.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_TeaDutyDetailsSearByClass.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_TeaDutyDetailsSearByClass.ForeColor = System.Drawing.Color.Black;
			this.notePanel_TeaDutyDetailsSearByClass.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_TeaDutyDetailsSearByClass.Location = new System.Drawing.Point(32, 120);
			this.notePanel_TeaDutyDetailsSearByClass.MaxRows = 5;
			this.notePanel_TeaDutyDetailsSearByClass.Name = "notePanel_TeaDutyDetailsSearByClass";
			this.notePanel_TeaDutyDetailsSearByClass.ParentAutoHeight = true;
			this.notePanel_TeaDutyDetailsSearByClass.Size = new System.Drawing.Size(88, 22);
			this.notePanel_TeaDutyDetailsSearByClass.TabIndex = 4;
			this.notePanel_TeaDutyDetailsSearByClass.TabStop = false;
			this.notePanel_TeaDutyDetailsSearByClass.Text = "岗          位";
			// 
			// notePanel_TeaDutyDetailsSearByStartTime
			// 
			this.notePanel_TeaDutyDetailsSearByStartTime.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_TeaDutyDetailsSearByStartTime.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_TeaDutyDetailsSearByStartTime.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_TeaDutyDetailsSearByStartTime.ForeColor = System.Drawing.Color.Black;
			this.notePanel_TeaDutyDetailsSearByStartTime.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_TeaDutyDetailsSearByStartTime.Location = new System.Drawing.Point(32, 152);
			this.notePanel_TeaDutyDetailsSearByStartTime.MaxRows = 5;
			this.notePanel_TeaDutyDetailsSearByStartTime.Name = "notePanel_TeaDutyDetailsSearByStartTime";
			this.notePanel_TeaDutyDetailsSearByStartTime.ParentAutoHeight = true;
			this.notePanel_TeaDutyDetailsSearByStartTime.Size = new System.Drawing.Size(88, 22);
			this.notePanel_TeaDutyDetailsSearByStartTime.TabIndex = 4;
			this.notePanel_TeaDutyDetailsSearByStartTime.TabStop = false;
			this.notePanel_TeaDutyDetailsSearByStartTime.Text = "起 始 时 间";
			// 
			// notePanel_TeaDutyDetailsSearByEndTime
			// 
			this.notePanel_TeaDutyDetailsSearByEndTime.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_TeaDutyDetailsSearByEndTime.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_TeaDutyDetailsSearByEndTime.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_TeaDutyDetailsSearByEndTime.ForeColor = System.Drawing.Color.Black;
			this.notePanel_TeaDutyDetailsSearByEndTime.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_TeaDutyDetailsSearByEndTime.Location = new System.Drawing.Point(32, 184);
			this.notePanel_TeaDutyDetailsSearByEndTime.MaxRows = 5;
			this.notePanel_TeaDutyDetailsSearByEndTime.Name = "notePanel_TeaDutyDetailsSearByEndTime";
			this.notePanel_TeaDutyDetailsSearByEndTime.ParentAutoHeight = true;
			this.notePanel_TeaDutyDetailsSearByEndTime.Size = new System.Drawing.Size(88, 22);
			this.notePanel_TeaDutyDetailsSearByEndTime.TabIndex = 4;
			this.notePanel_TeaDutyDetailsSearByEndTime.TabStop = false;
			this.notePanel_TeaDutyDetailsSearByEndTime.Text = "结 束 时 间";
			// 
			// textEdit_TeaDutyDetailsSearByName
			// 
			this.textEdit_TeaDutyDetailsSearByName.EditValue = "";
			this.textEdit_TeaDutyDetailsSearByName.Location = new System.Drawing.Point(136, 52);
			this.textEdit_TeaDutyDetailsSearByName.Name = "textEdit_TeaDutyDetailsSearByName";
			this.textEdit_TeaDutyDetailsSearByName.Size = new System.Drawing.Size(112, 23);
			this.textEdit_TeaDutyDetailsSearByName.TabIndex = 5;
			// 
			// comboBoxEdit_TeaDutyDetailsSearByClass
			// 
			this.comboBoxEdit_TeaDutyDetailsSearByClass.EditValue = "全部";
			this.comboBoxEdit_TeaDutyDetailsSearByClass.Location = new System.Drawing.Point(136, 116);
			this.comboBoxEdit_TeaDutyDetailsSearByClass.Name = "comboBoxEdit_TeaDutyDetailsSearByClass";
			// 
			// comboBoxEdit_TeaDutyDetailsSearByClass.Properties
			// 
			this.comboBoxEdit_TeaDutyDetailsSearByClass.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																																		   new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.comboBoxEdit_TeaDutyDetailsSearByClass.Properties.Items.AddRange(new object[] {
																								   "全部"});
			this.comboBoxEdit_TeaDutyDetailsSearByClass.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
			this.comboBoxEdit_TeaDutyDetailsSearByClass.Size = new System.Drawing.Size(112, 23);
			this.comboBoxEdit_TeaDutyDetailsSearByClass.TabIndex = 6;
			this.comboBoxEdit_TeaDutyDetailsSearByClass.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit_TeaDutyDetailsSearByClass_SelectedIndexChanged);
			// 
			// dateEdit_TeaDutyDetailsSearByEndTime
			// 
			this.dateEdit_TeaDutyDetailsSearByEndTime.EditValue = new System.DateTime(2005, 12, 31, 0, 0, 0, 0);
			this.dateEdit_TeaDutyDetailsSearByEndTime.Location = new System.Drawing.Point(136, 182);
			this.dateEdit_TeaDutyDetailsSearByEndTime.Name = "dateEdit_TeaDutyDetailsSearByEndTime";
			// 
			// dateEdit_TeaDutyDetailsSearByEndTime.Properties
			// 
			this.dateEdit_TeaDutyDetailsSearByEndTime.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																																		 new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.dateEdit_TeaDutyDetailsSearByEndTime.Properties.Mask.EditMask = "d";
			this.dateEdit_TeaDutyDetailsSearByEndTime.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.DateTime;
			this.dateEdit_TeaDutyDetailsSearByEndTime.Size = new System.Drawing.Size(112, 23);
			this.dateEdit_TeaDutyDetailsSearByEndTime.TabIndex = 7;
			// 
			// simpleButton1
			// 
			this.simpleButton1.Location = new System.Drawing.Point(8, 272);
			this.simpleButton1.Name = "simpleButton1";
			this.simpleButton1.Size = new System.Drawing.Size(60, 23);
			this.simpleButton1.TabIndex = 8;
			this.simpleButton1.Text = "检索";
			this.simpleButton1.Click += new System.EventHandler(this.simpleButton1_Click);
			// 
			// simpleButton3
			// 
			this.simpleButton3.Location = new System.Drawing.Point(136, 272);
			this.simpleButton3.Name = "simpleButton3";
			this.simpleButton3.Size = new System.Drawing.Size(60, 23);
			this.simpleButton3.TabIndex = 8;
			this.simpleButton3.Text = "外出报表";
			this.simpleButton3.Click += new System.EventHandler(this.simpleButton3_Click);
			// 
			// groupControl_TeaDutyDetails
			// 
			this.groupControl_TeaDutyDetails.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
				| System.Windows.Forms.AnchorStyles.Right)));
			this.groupControl_TeaDutyDetails.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.groupControl_TeaDutyDetails.AppearanceCaption.Options.UseFont = true;
			this.groupControl_TeaDutyDetails.Controls.Add(this.gridControl_TeaDutySummary);
			this.groupControl_TeaDutyDetails.Controls.Add(this.gridControl_TeaDutyNormal);
			this.groupControl_TeaDutyDetails.Controls.Add(this.popupContainerControl_Remarks);
			this.groupControl_TeaDutyDetails.Controls.Add(this.gridControl_TeaDutyDetails);
			this.groupControl_TeaDutyDetails.Location = new System.Drawing.Point(264, 0);
			this.groupControl_TeaDutyDetails.Name = "groupControl_TeaDutyDetails";
			this.groupControl_TeaDutyDetails.Size = new System.Drawing.Size(504, 304);
			this.groupControl_TeaDutyDetails.TabIndex = 0;
			this.groupControl_TeaDutyDetails.Text = "出勤信息";
			// 
			// gridControl_TeaDutySummary
			// 
			this.gridControl_TeaDutySummary.Dock = System.Windows.Forms.DockStyle.Fill;
			// 
			// gridControl_TeaDutySummary.EmbeddedNavigator
			// 
			this.gridControl_TeaDutySummary.EmbeddedNavigator.Name = "";
			this.gridControl_TeaDutySummary.Location = new System.Drawing.Point(3, 18);
			this.gridControl_TeaDutySummary.MainView = this.advBandedGridView4;
			this.gridControl_TeaDutySummary.Name = "gridControl_TeaDutySummary";
			this.gridControl_TeaDutySummary.Size = new System.Drawing.Size(498, 283);
			this.gridControl_TeaDutySummary.TabIndex = 3;
			this.gridControl_TeaDutySummary.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
																													  this.advBandedGridView4,
																													  this.gridView3});
			this.gridControl_TeaDutySummary.Visible = false;
			// 
			// advBandedGridView4
			// 
			this.advBandedGridView4.Bands.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.GridBand[] {
																										   this.gridBand4});
			this.advBandedGridView4.Columns.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn[] {
																													 this.bandedGridColumn8,
																													 this.bandedGridColumn9,
																													 this.bandedGridColumn10,
																													 this.bandedGridColumn11,
																													 this.bandedGridColumn12,
																													 this.bandedGridColumn13,
																													 this.bandedGridColumn14,
																													 this.bandedGridColumn15});
			this.advBandedGridView4.GridControl = this.gridControl_TeaDutySummary;
			this.advBandedGridView4.Name = "advBandedGridView4";
			this.advBandedGridView4.OptionsCustomization.AllowFilter = false;
			this.advBandedGridView4.OptionsView.ShowFilterPanel = false;
			this.advBandedGridView4.OptionsView.ShowGroupPanel = false;
			// 
			// gridBand4
			// 
			this.gridBand4.Caption = "教师出勤综合信息";
			this.gridBand4.Columns.Add(this.bandedGridColumn8);
			this.gridBand4.Columns.Add(this.bandedGridColumn10);
			this.gridBand4.Columns.Add(this.bandedGridColumn12);
			this.gridBand4.Columns.Add(this.bandedGridColumn14);
			this.gridBand4.Columns.Add(this.bandedGridColumn9);
			this.gridBand4.Columns.Add(this.bandedGridColumn11);
			this.gridBand4.Columns.Add(this.bandedGridColumn13);
			this.gridBand4.Columns.Add(this.bandedGridColumn15);
			this.gridBand4.Name = "gridBand4";
			this.gridBand4.Width = 589;
			// 
			// bandedGridColumn8
			// 
			this.bandedGridColumn8.AppearanceCell.Options.UseTextOptions = true;
			this.bandedGridColumn8.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn8.AppearanceHeader.Options.UseTextOptions = true;
			this.bandedGridColumn8.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn8.Caption = "教师姓名";
			this.bandedGridColumn8.FieldName = "T_Name";
			this.bandedGridColumn8.Name = "bandedGridColumn8";
			this.bandedGridColumn8.OptionsColumn.AllowEdit = false;
			this.bandedGridColumn8.OptionsColumn.AllowFocus = false;
			this.bandedGridColumn8.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn8.OptionsColumn.AllowIncrementalSearch = false;
			this.bandedGridColumn8.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn8.OptionsColumn.AllowMove = false;
			this.bandedGridColumn8.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.bandedGridColumn8.OptionsColumn.ReadOnly = true;
			this.bandedGridColumn8.OptionsColumn.ShowInCustomizationForm = false;
			this.bandedGridColumn8.Visible = true;
			this.bandedGridColumn8.Width = 145;
			// 
			// bandedGridColumn10
			// 
			this.bandedGridColumn10.AppearanceCell.Options.UseTextOptions = true;
			this.bandedGridColumn10.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn10.AppearanceHeader.Options.UseTextOptions = true;
			this.bandedGridColumn10.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn10.Caption = "迟到";
			this.bandedGridColumn10.FieldName = "Late";
			this.bandedGridColumn10.Name = "bandedGridColumn10";
			this.bandedGridColumn10.OptionsColumn.AllowEdit = false;
			this.bandedGridColumn10.OptionsColumn.AllowFocus = false;
			this.bandedGridColumn10.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn10.OptionsColumn.AllowIncrementalSearch = false;
			this.bandedGridColumn10.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn10.OptionsColumn.AllowMove = false;
			this.bandedGridColumn10.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.bandedGridColumn10.OptionsColumn.ReadOnly = true;
			this.bandedGridColumn10.OptionsColumn.ShowInCustomizationForm = false;
			this.bandedGridColumn10.Visible = true;
			this.bandedGridColumn10.Width = 145;
			// 
			// bandedGridColumn12
			// 
			this.bandedGridColumn12.AppearanceCell.Options.UseTextOptions = true;
			this.bandedGridColumn12.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn12.AppearanceHeader.Options.UseTextOptions = true;
			this.bandedGridColumn12.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn12.Caption = "缺席";
			this.bandedGridColumn12.FieldName = "Absence";
			this.bandedGridColumn12.Name = "bandedGridColumn12";
			this.bandedGridColumn12.OptionsColumn.AllowEdit = false;
			this.bandedGridColumn12.OptionsColumn.AllowFocus = false;
			this.bandedGridColumn12.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn12.OptionsColumn.AllowIncrementalSearch = false;
			this.bandedGridColumn12.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn12.OptionsColumn.AllowMove = false;
			this.bandedGridColumn12.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.bandedGridColumn12.OptionsColumn.ReadOnly = true;
			this.bandedGridColumn12.OptionsColumn.ShowInCustomizationForm = false;
			this.bandedGridColumn12.Visible = true;
			this.bandedGridColumn12.Width = 145;
			// 
			// bandedGridColumn14
			// 
			this.bandedGridColumn14.AppearanceCell.Options.UseTextOptions = true;
			this.bandedGridColumn14.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn14.AppearanceHeader.Options.UseTextOptions = true;
			this.bandedGridColumn14.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn14.Caption = "应出勤";
			this.bandedGridColumn14.FieldName = "ShouldAttend";
			this.bandedGridColumn14.Name = "bandedGridColumn14";
			this.bandedGridColumn14.OptionsColumn.AllowEdit = false;
			this.bandedGridColumn14.OptionsColumn.AllowFocus = false;
			this.bandedGridColumn14.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn14.OptionsColumn.AllowIncrementalSearch = false;
			this.bandedGridColumn14.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn14.OptionsColumn.AllowMove = false;
			this.bandedGridColumn14.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.bandedGridColumn14.OptionsColumn.ReadOnly = true;
			this.bandedGridColumn14.OptionsColumn.ShowInCustomizationForm = false;
			this.bandedGridColumn14.Visible = true;
			this.bandedGridColumn14.Width = 154;
			// 
			// bandedGridColumn9
			// 
			this.bandedGridColumn9.AppearanceCell.Options.UseTextOptions = true;
			this.bandedGridColumn9.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn9.AppearanceHeader.Options.UseTextOptions = true;
			this.bandedGridColumn9.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn9.Caption = "教师工号";
			this.bandedGridColumn9.FieldName = "T_Number";
			this.bandedGridColumn9.Name = "bandedGridColumn9";
			this.bandedGridColumn9.OptionsColumn.AllowEdit = false;
			this.bandedGridColumn9.OptionsColumn.AllowFocus = false;
			this.bandedGridColumn9.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn9.OptionsColumn.AllowIncrementalSearch = false;
			this.bandedGridColumn9.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn9.OptionsColumn.AllowMove = false;
			this.bandedGridColumn9.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.bandedGridColumn9.OptionsColumn.ReadOnly = true;
			this.bandedGridColumn9.OptionsColumn.ShowInCustomizationForm = false;
			this.bandedGridColumn9.RowIndex = 1;
			this.bandedGridColumn9.Visible = true;
			this.bandedGridColumn9.Width = 145;
			// 
			// bandedGridColumn11
			// 
			this.bandedGridColumn11.AppearanceCell.Options.UseTextOptions = true;
			this.bandedGridColumn11.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn11.AppearanceHeader.Options.UseTextOptions = true;
			this.bandedGridColumn11.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn11.Caption = "早退";
			this.bandedGridColumn11.FieldName = "OffTime";
			this.bandedGridColumn11.Name = "bandedGridColumn11";
			this.bandedGridColumn11.OptionsColumn.AllowEdit = false;
			this.bandedGridColumn11.OptionsColumn.AllowFocus = false;
			this.bandedGridColumn11.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn11.OptionsColumn.AllowIncrementalSearch = false;
			this.bandedGridColumn11.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn11.OptionsColumn.AllowMove = false;
			this.bandedGridColumn11.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.bandedGridColumn11.OptionsColumn.ReadOnly = true;
			this.bandedGridColumn11.OptionsColumn.ShowInCustomizationForm = false;
			this.bandedGridColumn11.RowIndex = 1;
			this.bandedGridColumn11.Visible = true;
			this.bandedGridColumn11.Width = 145;
			// 
			// bandedGridColumn13
			// 
			this.bandedGridColumn13.AppearanceCell.Options.UseTextOptions = true;
			this.bandedGridColumn13.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn13.AppearanceHeader.Options.UseTextOptions = true;
			this.bandedGridColumn13.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn13.Caption = "实出勤";
			this.bandedGridColumn13.FieldName = "Attend";
			this.bandedGridColumn13.Name = "bandedGridColumn13";
			this.bandedGridColumn13.OptionsColumn.AllowEdit = false;
			this.bandedGridColumn13.OptionsColumn.AllowFocus = false;
			this.bandedGridColumn13.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn13.OptionsColumn.AllowIncrementalSearch = false;
			this.bandedGridColumn13.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn13.OptionsColumn.AllowMove = false;
			this.bandedGridColumn13.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.bandedGridColumn13.OptionsColumn.ReadOnly = true;
			this.bandedGridColumn13.OptionsColumn.ShowInCustomizationForm = false;
			this.bandedGridColumn13.RowIndex = 1;
			this.bandedGridColumn13.Visible = true;
			this.bandedGridColumn13.Width = 145;
			// 
			// bandedGridColumn15
			// 
			this.bandedGridColumn15.AppearanceCell.Options.UseTextOptions = true;
			this.bandedGridColumn15.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn15.AppearanceHeader.Options.UseTextOptions = true;
			this.bandedGridColumn15.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn15.Caption = "外出";
			this.bandedGridColumn15.FieldName = "Out";
			this.bandedGridColumn15.Name = "bandedGridColumn15";
			this.bandedGridColumn15.OptionsColumn.AllowEdit = false;
			this.bandedGridColumn15.OptionsColumn.AllowFocus = false;
			this.bandedGridColumn15.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn15.OptionsColumn.AllowIncrementalSearch = false;
			this.bandedGridColumn15.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn15.OptionsColumn.AllowMove = false;
			this.bandedGridColumn15.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.bandedGridColumn15.OptionsColumn.ReadOnly = true;
			this.bandedGridColumn15.OptionsColumn.ShowInCustomizationForm = false;
			this.bandedGridColumn15.RowIndex = 1;
			this.bandedGridColumn15.Visible = true;
			this.bandedGridColumn15.Width = 154;
			// 
			// gridView3
			// 
			this.gridView3.GridControl = this.gridControl_TeaDutySummary;
			this.gridView3.Name = "gridView3";
			// 
			// gridControl_TeaDutyNormal
			// 
			this.gridControl_TeaDutyNormal.Dock = System.Windows.Forms.DockStyle.Fill;
			// 
			// gridControl_TeaDutyNormal.EmbeddedNavigator
			// 
			this.gridControl_TeaDutyNormal.EmbeddedNavigator.Name = "";
			this.gridControl_TeaDutyNormal.Location = new System.Drawing.Point(3, 18);
			this.gridControl_TeaDutyNormal.MainView = this.advBandedGridView3;
			this.gridControl_TeaDutyNormal.Name = "gridControl_TeaDutyNormal";
			this.gridControl_TeaDutyNormal.Size = new System.Drawing.Size(498, 283);
			this.gridControl_TeaDutyNormal.TabIndex = 2;
			this.gridControl_TeaDutyNormal.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
																													 this.advBandedGridView3});
			// 
			// advBandedGridView3
			// 
			this.advBandedGridView3.Bands.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.GridBand[] {
																										   this.gridBand3});
			this.advBandedGridView3.Columns.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn[] {
																													 this.bandedGridColumn1,
																													 this.bandedGridColumn2,
																													 this.bandedGridColumn3,
																													 this.bandedGridColumn4,
																													 this.bandedGridColumn5,
																													 this.bandedGridColumn6,
																													 this.bandedGridColumn7});
			this.advBandedGridView3.GridControl = this.gridControl_TeaDutyNormal;
			this.advBandedGridView3.Name = "advBandedGridView3";
			this.advBandedGridView3.OptionsCustomization.AllowFilter = false;
			this.advBandedGridView3.OptionsView.ShowFilterPanel = false;
			this.advBandedGridView3.OptionsView.ShowGroupPanel = false;
			// 
			// gridBand3
			// 
			this.gridBand3.Caption = "教师出勤信息";
			this.gridBand3.Columns.Add(this.bandedGridColumn1);
			this.gridBand3.Columns.Add(this.bandedGridColumn2);
			this.gridBand3.Columns.Add(this.bandedGridColumn3);
			this.gridBand3.Columns.Add(this.bandedGridColumn4);
			this.gridBand3.Columns.Add(this.bandedGridColumn5);
			this.gridBand3.Columns.Add(this.bandedGridColumn6);
			this.gridBand3.Columns.Add(this.bandedGridColumn7);
			this.gridBand3.Name = "gridBand3";
			this.gridBand3.Width = 645;
			// 
			// bandedGridColumn1
			// 
			this.bandedGridColumn1.AppearanceCell.Options.UseTextOptions = true;
			this.bandedGridColumn1.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn1.AppearanceHeader.Options.UseTextOptions = true;
			this.bandedGridColumn1.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn1.Caption = "序号";
			this.bandedGridColumn1.FieldName = "T_OrderNumber";
			this.bandedGridColumn1.Name = "bandedGridColumn1";
			this.bandedGridColumn1.OptionsColumn.AllowEdit = false;
			this.bandedGridColumn1.OptionsColumn.AllowFocus = false;
			this.bandedGridColumn1.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn1.OptionsColumn.AllowIncrementalSearch = false;
			this.bandedGridColumn1.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn1.OptionsColumn.AllowMove = false;
			this.bandedGridColumn1.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.bandedGridColumn1.OptionsColumn.ReadOnly = true;
			this.bandedGridColumn1.OptionsColumn.ShowInCustomizationForm = false;
			this.bandedGridColumn1.Visible = true;
			this.bandedGridColumn1.Width = 67;
			// 
			// bandedGridColumn2
			// 
			this.bandedGridColumn2.AppearanceCell.Options.UseTextOptions = true;
			this.bandedGridColumn2.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn2.AppearanceHeader.Options.UseTextOptions = true;
			this.bandedGridColumn2.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn2.Caption = "教师姓名";
			this.bandedGridColumn2.FieldName = "T_Name";
			this.bandedGridColumn2.Name = "bandedGridColumn2";
			this.bandedGridColumn2.OptionsColumn.AllowEdit = false;
			this.bandedGridColumn2.OptionsColumn.AllowFocus = false;
			this.bandedGridColumn2.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn2.OptionsColumn.AllowIncrementalSearch = false;
			this.bandedGridColumn2.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn2.OptionsColumn.AllowMove = false;
			this.bandedGridColumn2.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.bandedGridColumn2.OptionsColumn.ReadOnly = true;
			this.bandedGridColumn2.OptionsColumn.ShowInCustomizationForm = false;
			this.bandedGridColumn2.Visible = true;
			this.bandedGridColumn2.Width = 86;
			// 
			// bandedGridColumn3
			// 
			this.bandedGridColumn3.AppearanceCell.Options.UseTextOptions = true;
			this.bandedGridColumn3.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn3.AppearanceHeader.Options.UseTextOptions = true;
			this.bandedGridColumn3.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn3.Caption = "教师工号";
			this.bandedGridColumn3.FieldName = "T_Number";
			this.bandedGridColumn3.Name = "bandedGridColumn3";
			this.bandedGridColumn3.OptionsColumn.AllowEdit = false;
			this.bandedGridColumn3.OptionsColumn.AllowFocus = false;
			this.bandedGridColumn3.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn3.OptionsColumn.AllowIncrementalSearch = false;
			this.bandedGridColumn3.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn3.OptionsColumn.AllowMove = false;
			this.bandedGridColumn3.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.bandedGridColumn3.OptionsColumn.ReadOnly = true;
			this.bandedGridColumn3.OptionsColumn.ShowInCustomizationForm = false;
			this.bandedGridColumn3.Visible = true;
			this.bandedGridColumn3.Width = 87;
			// 
			// bandedGridColumn4
			// 
			this.bandedGridColumn4.AppearanceCell.Options.UseTextOptions = true;
			this.bandedGridColumn4.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn4.AppearanceHeader.Options.UseTextOptions = true;
			this.bandedGridColumn4.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn4.Caption = "所在部门";
			this.bandedGridColumn4.FieldName = "T_Depart";
			this.bandedGridColumn4.Name = "bandedGridColumn4";
			this.bandedGridColumn4.OptionsColumn.AllowEdit = false;
			this.bandedGridColumn4.OptionsColumn.AllowFocus = false;
			this.bandedGridColumn4.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn4.OptionsColumn.AllowIncrementalSearch = false;
			this.bandedGridColumn4.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn4.OptionsColumn.AllowMove = false;
			this.bandedGridColumn4.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.bandedGridColumn4.OptionsColumn.ReadOnly = true;
			this.bandedGridColumn4.OptionsColumn.ShowInCustomizationForm = false;
			this.bandedGridColumn4.Visible = true;
			this.bandedGridColumn4.Width = 84;
			// 
			// bandedGridColumn5
			// 
			this.bandedGridColumn5.AppearanceCell.Options.UseTextOptions = true;
			this.bandedGridColumn5.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn5.AppearanceHeader.Options.UseTextOptions = true;
			this.bandedGridColumn5.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn5.Caption = "岗位";
			this.bandedGridColumn5.FieldName = "T_Duty";
			this.bandedGridColumn5.Name = "bandedGridColumn5";
			this.bandedGridColumn5.OptionsColumn.AllowEdit = false;
			this.bandedGridColumn5.OptionsColumn.AllowFocus = false;
			this.bandedGridColumn5.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn5.OptionsColumn.AllowIncrementalSearch = false;
			this.bandedGridColumn5.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn5.OptionsColumn.AllowMove = false;
			this.bandedGridColumn5.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.bandedGridColumn5.OptionsColumn.ReadOnly = true;
			this.bandedGridColumn5.OptionsColumn.ShowInCustomizationForm = false;
			this.bandedGridColumn5.Visible = true;
			this.bandedGridColumn5.Width = 78;
			// 
			// bandedGridColumn6
			// 
			this.bandedGridColumn6.AppearanceCell.Options.UseTextOptions = true;
			this.bandedGridColumn6.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn6.AppearanceHeader.Options.UseTextOptions = true;
			this.bandedGridColumn6.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn6.Caption = "记录时间";
			this.bandedGridColumn6.DisplayFormat.FormatString = "yyyy-MM-dd HH:mm:ss";
			this.bandedGridColumn6.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
			this.bandedGridColumn6.FieldName = "teaflow_date";
			this.bandedGridColumn6.Name = "bandedGridColumn6";
			this.bandedGridColumn6.OptionsColumn.AllowEdit = false;
			this.bandedGridColumn6.OptionsColumn.AllowFocus = false;
			this.bandedGridColumn6.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn6.OptionsColumn.AllowIncrementalSearch = false;
			this.bandedGridColumn6.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn6.OptionsColumn.AllowMove = false;
			this.bandedGridColumn6.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.bandedGridColumn6.OptionsColumn.ReadOnly = true;
			this.bandedGridColumn6.OptionsColumn.ShowInCustomizationForm = false;
			this.bandedGridColumn6.Visible = true;
			this.bandedGridColumn6.Width = 127;
			// 
			// bandedGridColumn7
			// 
			this.bandedGridColumn7.AppearanceCell.Options.UseTextOptions = true;
			this.bandedGridColumn7.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn7.AppearanceHeader.Options.UseTextOptions = true;
			this.bandedGridColumn7.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn7.Caption = "记录状态";
			this.bandedGridColumn7.FieldName = "teafs_name";
			this.bandedGridColumn7.Name = "bandedGridColumn7";
			this.bandedGridColumn7.OptionsColumn.AllowEdit = false;
			this.bandedGridColumn7.OptionsColumn.AllowFocus = false;
			this.bandedGridColumn7.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn7.OptionsColumn.AllowIncrementalSearch = false;
			this.bandedGridColumn7.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn7.OptionsColumn.AllowMove = false;
			this.bandedGridColumn7.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.bandedGridColumn7.OptionsColumn.ReadOnly = true;
			this.bandedGridColumn7.OptionsColumn.ShowInCustomizationForm = false;
			this.bandedGridColumn7.Visible = true;
			this.bandedGridColumn7.Width = 116;
			// 
			// popupContainerControl_Remarks
			// 
			this.popupContainerControl_Remarks.Controls.Add(this.memoEdit_Remarks);
			this.popupContainerControl_Remarks.Location = new System.Drawing.Point(48, 120);
			this.popupContainerControl_Remarks.Name = "popupContainerControl_Remarks";
			this.popupContainerControl_Remarks.TabIndex = 1;
			this.popupContainerControl_Remarks.Text = "popupContainerControl8";
			// 
			// memoEdit_Remarks
			// 
			this.memoEdit_Remarks.Dock = System.Windows.Forms.DockStyle.Fill;
			this.memoEdit_Remarks.EditValue = "";
			this.memoEdit_Remarks.Location = new System.Drawing.Point(0, 0);
			this.memoEdit_Remarks.Name = "memoEdit_Remarks";
			this.memoEdit_Remarks.Size = new System.Drawing.Size(200, 100);
			this.memoEdit_Remarks.TabIndex = 0;
			// 
			// gridControl_TeaDutyDetails
			// 
			this.gridControl_TeaDutyDetails.Dock = System.Windows.Forms.DockStyle.Fill;
			// 
			// gridControl_TeaDutyDetails.EmbeddedNavigator
			// 
			this.gridControl_TeaDutyDetails.EmbeddedNavigator.Name = "";
			this.gridControl_TeaDutyDetails.Location = new System.Drawing.Point(3, 18);
			this.gridControl_TeaDutyDetails.MainView = this.advBandedGridView2;
			this.gridControl_TeaDutyDetails.Name = "gridControl_TeaDutyDetails";
			this.gridControl_TeaDutyDetails.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
																																this.repositoryItemMemoEdit1,
																																this.repositoryItemPopupContainerEdit8});
			this.gridControl_TeaDutyDetails.Size = new System.Drawing.Size(498, 283);
			this.gridControl_TeaDutyDetails.TabIndex = 0;
			this.gridControl_TeaDutyDetails.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
																													  this.advBandedGridView2,
																													  this.gridView2});
			// 
			// advBandedGridView2
			// 
			this.advBandedGridView2.Bands.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.GridBand[] {
																										   this.gridBand2});
			this.advBandedGridView2.Columns.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn[] {
																													 this.gridColumn13,
																													 this.gridColumn14,
																													 this.gridColumn15,
																													 this.gridColumn16,
																													 this.gridColumn17,
																													 this.gridColumn18,
																													 this.gridColumn19,
																													 this.gridColumn20,
																													 this.gridColumn21,
																													 this.gridColumn22,
																													 this.gridColumn23,
																													 this.gridColumn24,
																													 this.gridColumn25,
																													 this.gridColumn34,
																													 this.gridColumn35});
			this.advBandedGridView2.GridControl = this.gridControl_TeaDutyDetails;
			this.advBandedGridView2.Name = "advBandedGridView2";
			this.advBandedGridView2.OptionsCustomization.AllowFilter = false;
			this.advBandedGridView2.OptionsCustomization.AllowGroup = false;
			this.advBandedGridView2.OptionsDetail.EnableDetailToolTip = true;
			this.advBandedGridView2.OptionsView.ShowFilterPanel = false;
			this.advBandedGridView2.OptionsView.ShowGroupPanel = false;
			// 
			// gridBand2
			// 
			this.gridBand2.Caption = "教师出勤详细信息";
			this.gridBand2.Columns.Add(this.gridColumn13);
			this.gridBand2.Columns.Add(this.gridColumn14);
			this.gridBand2.Columns.Add(this.gridColumn15);
			this.gridBand2.Columns.Add(this.gridColumn16);
			this.gridBand2.Columns.Add(this.gridColumn17);
			this.gridBand2.Columns.Add(this.gridColumn18);
			this.gridBand2.Columns.Add(this.gridColumn19);
			this.gridBand2.Columns.Add(this.gridColumn20);
			this.gridBand2.Columns.Add(this.gridColumn21);
			this.gridBand2.Columns.Add(this.gridColumn22);
			this.gridBand2.Columns.Add(this.gridColumn23);
			this.gridBand2.Columns.Add(this.gridColumn24);
			this.gridBand2.Columns.Add(this.gridColumn25);
			this.gridBand2.Columns.Add(this.gridColumn34);
			this.gridBand2.Columns.Add(this.gridColumn35);
			this.gridBand2.Name = "gridBand2";
			this.gridBand2.Width = 602;
			// 
			// gridColumn13
			// 
			this.gridColumn13.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn13.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn13.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn13.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn13.Caption = "姓名";
			this.gridColumn13.FieldName = "T_Name";
			this.gridColumn13.Name = "gridColumn13";
			this.gridColumn13.OptionsColumn.AllowEdit = false;
			this.gridColumn13.Visible = true;
			this.gridColumn13.Width = 44;
			// 
			// gridColumn14
			// 
			this.gridColumn14.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn14.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn14.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn14.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn14.Caption = "工号";
			this.gridColumn14.FieldName = "T_Number";
			this.gridColumn14.Name = "gridColumn14";
			this.gridColumn14.OptionsColumn.AllowEdit = false;
			this.gridColumn14.Visible = true;
			this.gridColumn14.Width = 41;
			// 
			// gridColumn15
			// 
			this.gridColumn15.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn15.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn15.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn15.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn15.Caption = "部门";
			this.gridColumn15.FieldName = "T_Depart";
			this.gridColumn15.Name = "gridColumn15";
			this.gridColumn15.OptionsColumn.AllowEdit = false;
			this.gridColumn15.Visible = true;
			this.gridColumn15.Width = 41;
			// 
			// gridColumn16
			// 
			this.gridColumn16.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn16.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn16.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn16.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn16.Caption = "岗位";
			this.gridColumn16.FieldName = "T_Duty";
			this.gridColumn16.Name = "gridColumn16";
			this.gridColumn16.OptionsColumn.AllowEdit = false;
			this.gridColumn16.Visible = true;
			this.gridColumn16.Width = 45;
			// 
			// gridColumn17
			// 
			this.gridColumn17.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn17.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn17.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn17.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn17.Caption = "日期";
			this.gridColumn17.FieldName = "teaondutyanaly_date";
			this.gridColumn17.MinWidth = 10;
			this.gridColumn17.Name = "gridColumn17";
			this.gridColumn17.OptionsColumn.AllowEdit = false;
			this.gridColumn17.Width = 49;
			// 
			// gridColumn18
			// 
			this.gridColumn18.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn18.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn18.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn18.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn18.Caption = "入校时间";
			this.gridColumn18.DisplayFormat.FormatString = "g";
			this.gridColumn18.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
			this.gridColumn18.FieldName = "teaondutyanaly_entertime";
			this.gridColumn18.Name = "gridColumn18";
			this.gridColumn18.OptionsColumn.AllowEdit = false;
			this.gridColumn18.Visible = true;
			this.gridColumn18.Width = 68;
			// 
			// gridColumn19
			// 
			this.gridColumn19.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn19.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn19.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn19.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn19.Caption = "离校时间";
			this.gridColumn19.DisplayFormat.FormatString = "g";
			this.gridColumn19.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
			this.gridColumn19.FieldName = "teaondutyanaly_leavetime";
			this.gridColumn19.Name = "gridColumn19";
			this.gridColumn19.OptionsColumn.AllowEdit = false;
			this.gridColumn19.Visible = true;
			this.gridColumn19.Width = 60;
			// 
			// gridColumn20
			// 
			this.gridColumn20.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn20.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn20.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn20.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn20.Caption = "班次";
			this.gridColumn20.FieldName = "teaduty_name";
			this.gridColumn20.Name = "gridColumn20";
			this.gridColumn20.OptionsColumn.AllowEdit = false;
			this.gridColumn20.Visible = true;
			this.gridColumn20.Width = 48;
			// 
			// gridColumn21
			// 
			this.gridColumn21.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn21.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn21.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn21.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn21.Caption = "迟到";
			this.gridColumn21.FieldName = "teaondutyanaly_isontime";
			this.gridColumn21.MinWidth = 10;
			this.gridColumn21.Name = "gridColumn21";
			this.gridColumn21.OptionsColumn.AllowEdit = false;
			this.gridColumn21.Visible = true;
			this.gridColumn21.Width = 34;
			// 
			// gridColumn22
			// 
			this.gridColumn22.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn22.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn22.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn22.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn22.Caption = "早退";
			this.gridColumn22.FieldName = "teaondutyanaly_isofftime";
			this.gridColumn22.Name = "gridColumn22";
			this.gridColumn22.OptionsColumn.AllowEdit = false;
			this.gridColumn22.Visible = true;
			this.gridColumn22.Width = 41;
			// 
			// gridColumn23
			// 
			this.gridColumn23.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn23.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn23.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn23.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn23.Caption = "缺勤";
			this.gridColumn23.FieldName = "teaondutyanaly_isabsence";
			this.gridColumn23.Name = "gridColumn23";
			this.gridColumn23.OptionsColumn.AllowEdit = false;
			this.gridColumn23.Visible = true;
			this.gridColumn23.Width = 34;
			// 
			// gridColumn24
			// 
			this.gridColumn24.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn24.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn24.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn24.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn24.Caption = "外出";
			this.gridColumn24.FieldName = "teaondutyanaly_isout";
			this.gridColumn24.Name = "gridColumn24";
			this.gridColumn24.OptionsColumn.AllowEdit = false;
			this.gridColumn24.Visible = true;
			this.gridColumn24.Width = 38;
			// 
			// gridColumn25
			// 
			this.gridColumn25.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn25.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn25.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn25.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn25.Caption = "备注";
			this.gridColumn25.ColumnEdit = this.repositoryItemPopupContainerEdit8;
			this.gridColumn25.FieldName = "teaondutyanaly_remark";
			this.gridColumn25.Name = "gridColumn25";
			this.gridColumn25.Visible = true;
			this.gridColumn25.Width = 108;
			// 
			// repositoryItemPopupContainerEdit8
			// 
			this.repositoryItemPopupContainerEdit8.AutoHeight = false;
			this.repositoryItemPopupContainerEdit8.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																														   new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.repositoryItemPopupContainerEdit8.CharacterCasing = System.Windows.Forms.CharacterCasing.Lower;
			this.repositoryItemPopupContainerEdit8.Name = "repositoryItemPopupContainerEdit8";
			this.repositoryItemPopupContainerEdit8.PopupControl = this.popupContainerControl_Remarks;
			this.repositoryItemPopupContainerEdit8.ShowPopupCloseButton = false;
			this.repositoryItemPopupContainerEdit8.QueryPopUp += new System.ComponentModel.CancelEventHandler(this.repositoryItemPopupContainerEdit8_QueryPopUp);
			this.repositoryItemPopupContainerEdit8.QueryResultValue += new DevExpress.XtraEditors.Controls.QueryResultValueEventHandler(this.repositoryItemPopupContainerEdit8_QueryResultValue);
			// 
			// gridColumn34
			// 
			this.gridColumn34.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn34.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn34.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn34.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn34.Caption = "tID";
			this.gridColumn34.FieldName = "teaondutyanaly_teaid";
			this.gridColumn34.Name = "gridColumn34";
			// 
			// gridColumn35
			// 
			this.gridColumn35.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn35.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn35.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn35.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn35.Caption = "dutyID";
			this.gridColumn35.FieldName = "teaondutyanaly_number";
			this.gridColumn35.MinWidth = 10;
			this.gridColumn35.Name = "gridColumn35";
			// 
			// repositoryItemMemoEdit1
			// 
			this.repositoryItemMemoEdit1.Name = "repositoryItemMemoEdit1";
			// 
			// gridView2
			// 
			this.gridView2.GridControl = this.gridControl_TeaDutyDetails;
			this.gridView2.Name = "gridView2";
			// 
			// groupControl_TeaDutyOutDetails
			// 
			this.groupControl_TeaDutyOutDetails.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
				| System.Windows.Forms.AnchorStyles.Left)));
			this.groupControl_TeaDutyOutDetails.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.groupControl_TeaDutyOutDetails.AppearanceCaption.Options.UseFont = true;
			this.groupControl_TeaDutyOutDetails.Controls.Add(this.gridControl_TeaOutDetails);
			this.groupControl_TeaDutyOutDetails.Location = new System.Drawing.Point(2, 304);
			this.groupControl_TeaDutyOutDetails.Name = "groupControl_TeaDutyOutDetails";
			this.groupControl_TeaDutyOutDetails.Size = new System.Drawing.Size(478, 208);
			this.groupControl_TeaDutyOutDetails.TabIndex = 1;
			this.groupControl_TeaDutyOutDetails.Text = "外出详细信息";
			// 
			// gridControl_TeaOutDetails
			// 
			this.gridControl_TeaOutDetails.Dock = System.Windows.Forms.DockStyle.Fill;
			// 
			// gridControl_TeaOutDetails.EmbeddedNavigator
			// 
			this.gridControl_TeaOutDetails.EmbeddedNavigator.Name = "";
			this.gridControl_TeaOutDetails.Location = new System.Drawing.Point(3, 18);
			this.gridControl_TeaOutDetails.MainView = this.gridView4;
			this.gridControl_TeaOutDetails.Name = "gridControl_TeaOutDetails";
			this.gridControl_TeaOutDetails.Size = new System.Drawing.Size(472, 187);
			this.gridControl_TeaOutDetails.TabIndex = 0;
			this.gridControl_TeaOutDetails.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
																													 this.gridView4});
			// 
			// gridView4
			// 
			this.gridView4.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
																							 this.gridColumn26,
																							 this.gridColumn27,
																							 this.gridColumn28,
																							 this.gridColumn29,
																							 this.gridColumn30,
																							 this.gridColumn31,
																							 this.gridColumn32,
																							 this.gridColumn33});
			this.gridView4.GridControl = this.gridControl_TeaOutDetails;
			this.gridView4.Name = "gridView4";
			this.gridView4.OptionsBehavior.Editable = false;
			this.gridView4.OptionsCustomization.AllowFilter = false;
			this.gridView4.OptionsCustomization.AllowGroup = false;
			this.gridView4.OptionsView.ShowFilterPanel = false;
			this.gridView4.OptionsView.ShowFooter = true;
			this.gridView4.OptionsView.ShowGroupPanel = false;
			// 
			// gridColumn26
			// 
			this.gridColumn26.Caption = "姓名";
			this.gridColumn26.FieldName = "T_Name";
			this.gridColumn26.Name = "gridColumn26";
			this.gridColumn26.OptionsColumn.AllowEdit = false;
			this.gridColumn26.Visible = true;
			this.gridColumn26.VisibleIndex = 0;
			this.gridColumn26.Width = 44;
			// 
			// gridColumn27
			// 
			this.gridColumn27.Caption = "工号";
			this.gridColumn27.FieldName = "T_Number";
			this.gridColumn27.Name = "gridColumn27";
			this.gridColumn27.OptionsColumn.AllowEdit = false;
			this.gridColumn27.Visible = true;
			this.gridColumn27.VisibleIndex = 1;
			this.gridColumn27.Width = 40;
			// 
			// gridColumn28
			// 
			this.gridColumn28.Caption = "部门";
			this.gridColumn28.FieldName = "T_Depart";
			this.gridColumn28.Name = "gridColumn28";
			this.gridColumn28.OptionsColumn.AllowEdit = false;
			this.gridColumn28.Visible = true;
			this.gridColumn28.VisibleIndex = 2;
			this.gridColumn28.Width = 46;
			// 
			// gridColumn29
			// 
			this.gridColumn29.Caption = "岗位";
			this.gridColumn29.FieldName = "T_Duty";
			this.gridColumn29.Name = "gridColumn29";
			this.gridColumn29.OptionsColumn.AllowEdit = false;
			this.gridColumn29.Visible = true;
			this.gridColumn29.VisibleIndex = 3;
			this.gridColumn29.Width = 45;
			// 
			// gridColumn30
			// 
			this.gridColumn30.Caption = "外出时班次";
			this.gridColumn30.FieldName = "teaduty_name";
			this.gridColumn30.Name = "gridColumn30";
			this.gridColumn30.OptionsColumn.AllowEdit = false;
			this.gridColumn30.Visible = true;
			this.gridColumn30.VisibleIndex = 4;
			this.gridColumn30.Width = 73;
			// 
			// gridColumn31
			// 
			this.gridColumn31.Caption = "外出时间";
			this.gridColumn31.DisplayFormat.FormatString = "g";
			this.gridColumn31.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
			this.gridColumn31.FieldName = "teaout_leavetime";
			this.gridColumn31.Name = "gridColumn31";
			this.gridColumn31.OptionsColumn.AllowEdit = false;
			this.gridColumn31.Visible = true;
			this.gridColumn31.VisibleIndex = 5;
			this.gridColumn31.Width = 59;
			// 
			// gridColumn32
			// 
			this.gridColumn32.Caption = "外出归来时间";
			this.gridColumn32.DisplayFormat.FormatString = "g";
			this.gridColumn32.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
			this.gridColumn32.FieldName = "teaout_backtime";
			this.gridColumn32.Name = "gridColumn32";
			this.gridColumn32.OptionsColumn.AllowEdit = false;
			this.gridColumn32.Visible = true;
			this.gridColumn32.VisibleIndex = 6;
			this.gridColumn32.Width = 84;
			// 
			// gridColumn33
			// 
			this.gridColumn33.Caption = "外出原因";
			this.gridColumn33.FieldName = "teafs_name";
			this.gridColumn33.Name = "gridColumn33";
			this.gridColumn33.OptionsColumn.AllowEdit = false;
			this.gridColumn33.Visible = true;
			this.gridColumn33.VisibleIndex = 7;
			this.gridColumn33.Width = 64;
			// 
			// xtraTabPage_TeaOnDutyReports
			// 
			this.xtraTabPage_TeaOnDutyReports.Appearance.PageClient.BackColor = System.Drawing.Color.WhiteSmoke;
			this.xtraTabPage_TeaOnDutyReports.Appearance.PageClient.Options.UseBackColor = true;
			this.xtraTabPage_TeaOnDutyReports.Controls.Add(this.groupControl_Graph);
			this.xtraTabPage_TeaOnDutyReports.Controls.Add(this.groupControl_TeaDutyReportsSear);
			this.xtraTabPage_TeaOnDutyReports.Name = "xtraTabPage_TeaOnDutyReports";
			this.xtraTabPage_TeaOnDutyReports.Size = new System.Drawing.Size(768, 515);
			this.xtraTabPage_TeaOnDutyReports.Text = "出勤信息分析";
			// 
			// groupControl_Graph
			// 
			this.groupControl_Graph.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
				| System.Windows.Forms.AnchorStyles.Right)));
			this.groupControl_Graph.Location = new System.Drawing.Point(200, 8);
			this.groupControl_Graph.Name = "groupControl_Graph";
			this.groupControl_Graph.Size = new System.Drawing.Size(568, 392);
			this.groupControl_Graph.TabIndex = 2;
			this.groupControl_Graph.Text = "分析图形";
			this.groupControl_Graph.Resize += new System.EventHandler(this.groupControl_Graph_Resize);
			// 
			// groupControl_TeaDutyReportsSear
			// 
			this.groupControl_TeaDutyReportsSear.Controls.Add(this.comboBoxEdit_Graphic_TeaDept);
			this.groupControl_TeaDutyReportsSear.Controls.Add(this.textEdit_Graphic_TeaID);
			this.groupControl_TeaDutyReportsSear.Controls.Add(this.notePanel_Graphic_TeaID);
			this.groupControl_TeaDutyReportsSear.Controls.Add(this.notePanel_Graphic_TeaName);
			this.groupControl_TeaDutyReportsSear.Controls.Add(this.notePanel_Graphic_TeaDept);
			this.groupControl_TeaDutyReportsSear.Controls.Add(this.notePanel_Graphic_TeaDuty);
			this.groupControl_TeaDutyReportsSear.Controls.Add(this.textEdit_Graphic_TeaName);
			this.groupControl_TeaDutyReportsSear.Controls.Add(this.comboBoxEdit_Graphic_TeaDuty);
			this.groupControl_TeaDutyReportsSear.Controls.Add(this.dateEdit1);
			this.groupControl_TeaDutyReportsSear.Controls.Add(this.notePanel6);
			this.groupControl_TeaDutyReportsSear.Controls.Add(this.notePanel7);
			this.groupControl_TeaDutyReportsSear.Controls.Add(this.dateEdit2);
			this.groupControl_TeaDutyReportsSear.Controls.Add(this.simpleButton_ReportAnalysis);
			this.groupControl_TeaDutyReportsSear.Controls.Add(this.simpleButton2);
			this.groupControl_TeaDutyReportsSear.Location = new System.Drawing.Point(8, 8);
			this.groupControl_TeaDutyReportsSear.Name = "groupControl_TeaDutyReportsSear";
			this.groupControl_TeaDutyReportsSear.Size = new System.Drawing.Size(184, 272);
			this.groupControl_TeaDutyReportsSear.TabIndex = 1;
			this.groupControl_TeaDutyReportsSear.Text = "总出勤情况报表";
			// 
			// comboBoxEdit_Graphic_TeaDept
			// 
			this.comboBoxEdit_Graphic_TeaDept.EditValue = "全部";
			this.comboBoxEdit_Graphic_TeaDept.Location = new System.Drawing.Point(88, 88);
			this.comboBoxEdit_Graphic_TeaDept.Name = "comboBoxEdit_Graphic_TeaDept";
			// 
			// comboBoxEdit_Graphic_TeaDept.Properties
			// 
			this.comboBoxEdit_Graphic_TeaDept.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																																 new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.comboBoxEdit_Graphic_TeaDept.Properties.Items.AddRange(new object[] {
																						 "全部"});
			this.comboBoxEdit_Graphic_TeaDept.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
			this.comboBoxEdit_Graphic_TeaDept.Size = new System.Drawing.Size(88, 23);
			this.comboBoxEdit_Graphic_TeaDept.TabIndex = 20;
			this.comboBoxEdit_Graphic_TeaDept.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit_Graphic_TeaDept_SelectedIndexChanged);
			// 
			// textEdit_Graphic_TeaID
			// 
			this.textEdit_Graphic_TeaID.EditValue = "";
			this.textEdit_Graphic_TeaID.Location = new System.Drawing.Point(88, 24);
			this.textEdit_Graphic_TeaID.Name = "textEdit_Graphic_TeaID";
			this.textEdit_Graphic_TeaID.Size = new System.Drawing.Size(88, 23);
			this.textEdit_Graphic_TeaID.TabIndex = 18;
			// 
			// notePanel_Graphic_TeaID
			// 
			this.notePanel_Graphic_TeaID.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_Graphic_TeaID.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_Graphic_TeaID.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_Graphic_TeaID.ForeColor = System.Drawing.Color.Black;
			this.notePanel_Graphic_TeaID.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_Graphic_TeaID.Location = new System.Drawing.Point(8, 24);
			this.notePanel_Graphic_TeaID.MaxRows = 5;
			this.notePanel_Graphic_TeaID.Name = "notePanel_Graphic_TeaID";
			this.notePanel_Graphic_TeaID.ParentAutoHeight = true;
			this.notePanel_Graphic_TeaID.Size = new System.Drawing.Size(72, 22);
			this.notePanel_Graphic_TeaID.TabIndex = 16;
			this.notePanel_Graphic_TeaID.TabStop = false;
			this.notePanel_Graphic_TeaID.Text = "教师工号";
			// 
			// notePanel_Graphic_TeaName
			// 
			this.notePanel_Graphic_TeaName.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_Graphic_TeaName.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_Graphic_TeaName.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_Graphic_TeaName.ForeColor = System.Drawing.Color.Black;
			this.notePanel_Graphic_TeaName.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_Graphic_TeaName.Location = new System.Drawing.Point(8, 56);
			this.notePanel_Graphic_TeaName.MaxRows = 5;
			this.notePanel_Graphic_TeaName.Name = "notePanel_Graphic_TeaName";
			this.notePanel_Graphic_TeaName.ParentAutoHeight = true;
			this.notePanel_Graphic_TeaName.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.notePanel_Graphic_TeaName.Size = new System.Drawing.Size(72, 22);
			this.notePanel_Graphic_TeaName.TabIndex = 13;
			this.notePanel_Graphic_TeaName.TabStop = false;
			this.notePanel_Graphic_TeaName.Text = "教师姓名";
			// 
			// notePanel_Graphic_TeaDept
			// 
			this.notePanel_Graphic_TeaDept.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_Graphic_TeaDept.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_Graphic_TeaDept.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_Graphic_TeaDept.ForeColor = System.Drawing.Color.Black;
			this.notePanel_Graphic_TeaDept.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_Graphic_TeaDept.Location = new System.Drawing.Point(8, 88);
			this.notePanel_Graphic_TeaDept.MaxRows = 5;
			this.notePanel_Graphic_TeaDept.Name = "notePanel_Graphic_TeaDept";
			this.notePanel_Graphic_TeaDept.ParentAutoHeight = true;
			this.notePanel_Graphic_TeaDept.Size = new System.Drawing.Size(72, 22);
			this.notePanel_Graphic_TeaDept.TabIndex = 14;
			this.notePanel_Graphic_TeaDept.TabStop = false;
			this.notePanel_Graphic_TeaDept.Text = "所在部门";
			// 
			// notePanel_Graphic_TeaDuty
			// 
			this.notePanel_Graphic_TeaDuty.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_Graphic_TeaDuty.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_Graphic_TeaDuty.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_Graphic_TeaDuty.ForeColor = System.Drawing.Color.Black;
			this.notePanel_Graphic_TeaDuty.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_Graphic_TeaDuty.Location = new System.Drawing.Point(8, 120);
			this.notePanel_Graphic_TeaDuty.MaxRows = 5;
			this.notePanel_Graphic_TeaDuty.Name = "notePanel_Graphic_TeaDuty";
			this.notePanel_Graphic_TeaDuty.ParentAutoHeight = true;
			this.notePanel_Graphic_TeaDuty.Size = new System.Drawing.Size(72, 22);
			this.notePanel_Graphic_TeaDuty.TabIndex = 15;
			this.notePanel_Graphic_TeaDuty.TabStop = false;
			this.notePanel_Graphic_TeaDuty.Text = "岗位";
			// 
			// textEdit_Graphic_TeaName
			// 
			this.textEdit_Graphic_TeaName.EditValue = "";
			this.textEdit_Graphic_TeaName.Location = new System.Drawing.Point(88, 56);
			this.textEdit_Graphic_TeaName.Name = "textEdit_Graphic_TeaName";
			this.textEdit_Graphic_TeaName.Size = new System.Drawing.Size(88, 23);
			this.textEdit_Graphic_TeaName.TabIndex = 17;
			// 
			// comboBoxEdit_Graphic_TeaDuty
			// 
			this.comboBoxEdit_Graphic_TeaDuty.EditValue = "全部";
			this.comboBoxEdit_Graphic_TeaDuty.Location = new System.Drawing.Point(88, 120);
			this.comboBoxEdit_Graphic_TeaDuty.Name = "comboBoxEdit_Graphic_TeaDuty";
			// 
			// comboBoxEdit_Graphic_TeaDuty.Properties
			// 
			this.comboBoxEdit_Graphic_TeaDuty.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																																 new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.comboBoxEdit_Graphic_TeaDuty.Properties.Items.AddRange(new object[] {
																						 "全部"});
			this.comboBoxEdit_Graphic_TeaDuty.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
			this.comboBoxEdit_Graphic_TeaDuty.Size = new System.Drawing.Size(88, 23);
			this.comboBoxEdit_Graphic_TeaDuty.TabIndex = 19;
			// 
			// dateEdit1
			// 
			this.dateEdit1.EditValue = new System.DateTime(2005, 12, 31, 0, 0, 0, 0);
			this.dateEdit1.Location = new System.Drawing.Point(88, 152);
			this.dateEdit1.Name = "dateEdit1";
			// 
			// dateEdit1.Properties
			// 
			this.dateEdit1.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																											  new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.dateEdit1.Properties.Mask.EditMask = "d";
			this.dateEdit1.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.DateTime;
			this.dateEdit1.Size = new System.Drawing.Size(88, 23);
			this.dateEdit1.TabIndex = 12;
			// 
			// notePanel6
			// 
			this.notePanel6.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel6.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel6.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel6.ForeColor = System.Drawing.Color.Black;
			this.notePanel6.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel6.Location = new System.Drawing.Point(8, 152);
			this.notePanel6.MaxRows = 5;
			this.notePanel6.Name = "notePanel6";
			this.notePanel6.ParentAutoHeight = true;
			this.notePanel6.Size = new System.Drawing.Size(72, 22);
			this.notePanel6.TabIndex = 10;
			this.notePanel6.TabStop = false;
			this.notePanel6.Text = "起始时间";
			// 
			// notePanel7
			// 
			this.notePanel7.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel7.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel7.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel7.ForeColor = System.Drawing.Color.Black;
			this.notePanel7.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel7.Location = new System.Drawing.Point(8, 184);
			this.notePanel7.MaxRows = 5;
			this.notePanel7.Name = "notePanel7";
			this.notePanel7.ParentAutoHeight = true;
			this.notePanel7.Size = new System.Drawing.Size(72, 22);
			this.notePanel7.TabIndex = 9;
			this.notePanel7.TabStop = false;
			this.notePanel7.Text = "结束时间";
			// 
			// dateEdit2
			// 
			this.dateEdit2.EditValue = new System.DateTime(2005, 12, 31, 0, 0, 0, 0);
			this.dateEdit2.Location = new System.Drawing.Point(88, 184);
			this.dateEdit2.Name = "dateEdit2";
			// 
			// dateEdit2.Properties
			// 
			this.dateEdit2.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																											  new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.dateEdit2.Properties.Mask.EditMask = "d";
			this.dateEdit2.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.DateTime;
			this.dateEdit2.Size = new System.Drawing.Size(88, 23);
			this.dateEdit2.TabIndex = 11;
			// 
			// simpleButton_ReportAnalysis
			// 
			this.simpleButton_ReportAnalysis.Location = new System.Drawing.Point(24, 224);
			this.simpleButton_ReportAnalysis.Name = "simpleButton_ReportAnalysis";
			this.simpleButton_ReportAnalysis.Size = new System.Drawing.Size(64, 23);
			this.simpleButton_ReportAnalysis.TabIndex = 8;
			this.simpleButton_ReportAnalysis.Text = "分析";
			this.simpleButton_ReportAnalysis.Click += new System.EventHandler(this.simpleButton_ReportAnalysis_Click);
			// 
			// simpleButton2
			// 
			this.simpleButton2.Location = new System.Drawing.Point(96, 224);
			this.simpleButton2.Name = "simpleButton2";
			this.simpleButton2.Size = new System.Drawing.Size(64, 23);
			this.simpleButton2.TabIndex = 8;
			this.simpleButton2.Text = "生成报表";
			this.simpleButton2.Click += new System.EventHandler(this.simpleButton2_Click);
			// 
			// TeacherOnDutyInfo
			// 
			this.Appearance.BackColor = System.Drawing.Color.WhiteSmoke;
			this.Appearance.Options.UseBackColor = true;
			this.Controls.Add(this.xtraTabControl_TeaDutyDetailInfo);
			this.Name = "TeacherOnDutyInfo";
			this.Size = new System.Drawing.Size(772, 540);
			((System.ComponentModel.ISupportInitialize)(this.advBandedGridView1)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.gridControl_TeaDutyAsign)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.repositoryItemPopupContainerEdit1)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.popupContainerControl1)).EndInit();
			this.popupContainerControl1.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.checkedListBoxControl1)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.repositoryItemPopupContainerEdit2)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.popupContainerControl2)).EndInit();
			this.popupContainerControl2.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.checkedListBoxControl2)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.repositoryItemPopupContainerEdit3)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.popupContainerControl3)).EndInit();
			this.popupContainerControl3.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.checkedListBoxControl3)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.repositoryItemPopupContainerEdit4)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.popupContainerControl4)).EndInit();
			this.popupContainerControl4.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.checkedListBoxControl4)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.repositoryItemPopupContainerEdit5)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.popupContainerControl5)).EndInit();
			this.popupContainerControl5.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.checkedListBoxControl5)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.repositoryItemPopupContainerEdit6)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.popupContainerControl6)).EndInit();
			this.popupContainerControl6.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.checkedListBoxControl6)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.repositoryItemPopupContainerEdit7)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.popupContainerControl7)).EndInit();
			this.popupContainerControl7.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.checkedListBoxControl7)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEdit1)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.xtraTabControl_TeaDutyDetailInfo)).EndInit();
			this.xtraTabControl_TeaDutyDetailInfo.ResumeLayout(false);
			this.xtraTabPage_TeaDutyDetails.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.groupControl_TeaDutyAsign)).EndInit();
			this.groupControl_TeaDutyAsign.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.groupControl_TeaDutyDetailsMgmt)).EndInit();
			this.groupControl_TeaDutyDetailsMgmt.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.splitContainerControl_DutyMgmt)).EndInit();
			this.splitContainerControl_DutyMgmt.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.textEdit_DutyStartTime.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_AddDutyName.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_AddDutyRemark.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_DutyEndTime.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.dateEdit_DutyHistory.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_DutySearTeaClass.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_DutySearTeaGarde.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_DutySearTeaID.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_DutySearTeaName.Properties)).EndInit();
			this.xtraTabPage_TeaOnDutyInfo.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.groupControl_TeaDutyDetailsStatistic)).EndInit();
			this.groupControl_TeaDutyDetailsStatistic.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.textEdit_TeaOut.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_TeaShouldAttend.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_TeaAttend.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_TeaAbsence.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_TeaOffTime.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_TeaOnTime.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_TeaDutyDetailsSearch)).EndInit();
			this.groupControl_TeaDutyDetailsSearch.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_TeaDutyDetailsFlowType.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_TeaDutyDetailsSerType.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.dateEdit_TeaDutyDetailsSearByStartTime.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_TeaDutyDetailsSearByGrade.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_TeaDutyDetailsSearByID.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_TeaDutyDetailsSearByName.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_TeaDutyDetailsSearByClass.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.dateEdit_TeaDutyDetailsSearByEndTime.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_TeaDutyDetails)).EndInit();
			this.groupControl_TeaDutyDetails.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.gridControl_TeaDutySummary)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.advBandedGridView4)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.gridView3)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.gridControl_TeaDutyNormal)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.advBandedGridView3)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.popupContainerControl_Remarks)).EndInit();
			this.popupContainerControl_Remarks.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.memoEdit_Remarks.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.gridControl_TeaDutyDetails)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.advBandedGridView2)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.repositoryItemPopupContainerEdit8)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.repositoryItemMemoEdit1)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.gridView2)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_TeaDutyOutDetails)).EndInit();
			this.groupControl_TeaDutyOutDetails.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.gridControl_TeaOutDetails)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.gridView4)).EndInit();
			this.xtraTabPage_TeaOnDutyReports.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.groupControl_Graph)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_TeaDutyReportsSear)).EndInit();
			this.groupControl_TeaDutyReportsSear.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_Graphic_TeaDept.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_Graphic_TeaID.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_Graphic_TeaName.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_Graphic_TeaDuty.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.dateEdit1.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.dateEdit2.Properties)).EndInit();
			this.ResumeLayout(false);

		}