コード例 #1
0
        private void AddCol(string sName)
        {
            DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn GridCol数量 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            GridCol数量.AppearanceHeader.Options.UseTextOptions = true;
            GridCol数量.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            GridCol数量.Caption   = "数量";
            GridCol数量.FieldName = "数量" + sName;
            GridCol数量.Name      = "GridCol数量" + sName;
            GridCol数量.Visible   = true;
            GridCol数量.SummaryItem.SummaryType = DevExpress.Data.SummaryItemType.Sum;


            DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn GridCol工时 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            GridCol工时.AppearanceHeader.Options.UseTextOptions = true;
            GridCol工时.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            GridCol工时.Caption   = "工时";
            GridCol工时.FieldName = "工时" + sName;
            GridCol工时.Name      = "GridCol工时" + sName;
            GridCol工时.Visible   = true;
            GridCol工时.SummaryItem.SummaryType = DevExpress.Data.SummaryItemType.Sum;

            DevExpress.XtraGrid.Views.BandedGrid.GridBand gridBand = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
            GridView1.Bands.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.GridBand[] {
                gridBand
            });
            gridBand.AppearanceHeader.Options.UseTextOptions = true;
            gridBand.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            gridBand.Caption = sName;
            gridBand.Columns.Add(GridCol数量);
            gridBand.Columns.Add(GridCol工时);
            gridBand.Name  = "gridBand" + sName;
            gridBand.Width = 150;
        }
コード例 #2
0
        private void LoadNgayTrongThang_col_band(int songaytrongthang, int nam, int thang)
        {
            for (int i = 1; i <= 31; i++)
            {
                string bandname = "gb" + i + "_DiemDanhHocSinh";
                foreach (DevExpress.XtraGrid.Views.BandedGrid.GridBand band in gvDiemDanhHocSinh.Bands)
                {
                    if (band.Name == bandname)
                    {
                        gvDiemDanhHocSinh.Bands.Remove(band);
                        break;
                    }
                }
            }
            for (int i = 1; i <= songaytrongthang; i++)
            {
                DevExpress.XtraGrid.Views.BandedGrid.GridBand band = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
                band.Caption = i.ToString();
                band.Name    = "gb" + i + "_DiemDanhHocSinh";
                band.Width   = 23;
                band.Visible = true;


                DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn column = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
                column.Name      = "colThu_Ngay" + i + "_DiemDanhHocSinh";
                column.Caption   = NgayTrongTuan(nam, thang, i);
                column.FieldName = "ngay" + i;
                column.Visible   = true;

                gvDiemDanhHocSinh.Bands.Add(band);
                band.Columns.Add(column);
            }
        }
コード例 #3
0
 private void AddBand(string sColName)
 {
     DevExpress.XtraGrid.Views.BandedGrid.GridBand gridBand = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     gridBand.Caption  = sColName.Substring(5);
     gridBand.MinWidth = 20;
     gridBand.Name     = "gridBandtemp" + sColName.Substring(5);
     gridBand.Width    = 30;
     gridBand.AppearanceHeader.Options.UseTextOptions = true;
     gridBand.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     gridView1.Bands.Add(gridBand);
 }
        private void ckb_CheckedChanged(object sender, EventArgs e)
        {
            CheckBox cb = (CheckBox)sender;


            int    ngaySo  = Convert.ToInt32(cb.Name.Substring(cb.Name.IndexOf("_") + 1));
            string colName = "colThu_Ngay" + ngaySo + "_DiemDanhHocSinh";

            DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn bandedGridColumn = null;


            foreach (DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn column in gvDiemDanhHocSinh.Columns)
            {
                if (column.Name == colName)
                {
                    bandedGridColumn = column;
                    break;
                }
            }
            string bandName = "gb" + ngaySo + "_DiemDanhHocSinh";

            DevExpress.XtraGrid.Views.BandedGrid.GridBand gridBand = null;
            foreach (DevExpress.XtraGrid.Views.BandedGrid.GridBand band in gvDiemDanhHocSinh.Bands)
            {
                if (band.Name == bandName)
                {
                    gridBand = band;
                    break;
                }
            }

            if (cb.Checked == true)
            {
                for (int i = 0; i < gvDiemDanhHocSinh.RowCount; i++)
                {
                    string ngay = gvDiemDanhHocSinh.GetRowCellValue(i, "ngay" + ngaySo).ToString();
                    if (ngay == "True")
                    {
                        MessageBox.Show("Đã điểm danh không được ẩn", "Thông báo", MessageBoxButtons.OK, MessageBoxIcon.Information);
                        cb.Checked = false;
                        return;
                    }
                }

                bandedGridColumn.Visible = false;
                gridBand.Visible         = false;
            }
            else
            {
                bandedGridColumn.Visible = true;
                gridBand.Visible         = true;
            }
        }
コード例 #5
0
ファイル: Form1Print.cs プロジェクト: github188/myitoppsp
        private void Form1Print_Load(object sender, EventArgs e)
        {
            if (!isselect)
            {
                barButtonItem4.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
            }


            gridControl1.DataSource             = GridDataTable;
            this.bandedGridView1.GroupPanelText = this.Text;

            //int numi = 0;

            //DevExpress.XtraGrid.Views.BandedGrid.GridBand[] gridBandDate = new DevExpress.XtraGrid.Views.BandedGrid.GridBand[listCount * 2];
            //DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn[] gridColumn = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn[listCount * 2];
            foreach (DataColumn dc in GridDataTable.Columns)
            {
                if (dc.ColumnName.IndexOf("Äê") > 0)
                {
                    DevExpress.XtraGrid.Views.BandedGrid.GridBand gbi = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
                    gbi.Caption = dc.ColumnName;
                    gbi.Name    = dc.ColumnName;
                    gbi.AppearanceHeader.Options.UseTextOptions = true;
                    gbi.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
                    gridBand2.Children.Add(gbi);

                    DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn gridColumn = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
                    gridColumn.Caption   = dc.ColumnName;
                    gridColumn.FieldName = dc.ColumnName;
                    gridColumn.Name      = "Column" + dc.ColumnName;
                    gridColumn.Visible   = true;
                    gridColumn.DisplayFormat.FormatString = "n2";
                    gridColumn.DisplayFormat.FormatType   = DevExpress.Utils.FormatType.Numeric;
                    bandedGridView1.Columns.Add(gridColumn);
                    gbi.Columns.Add(gridColumn);
                }
            }


            //if (!isselect)
            //{
            //    //barButtonItem4.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
            //    this.Hide();
            //    ComponentPrint.ShowPreview(this.gridControl1, this.bandedGridView1.GroupPanelText);
            //    this.Close();
            //}
            //else
            //{
            //    title = this.bandedGridView1.GroupPanelText;
            //    this.DialogResult = DialogResult.OK;
            //}
        }
コード例 #6
0
        /// <summary>
        /// 通过XML布局的配置信息创建布局列.
        /// </summary>
        /// <param name="bandGridView"></param>
        /// <param name="gridBand"></param>
        /// <param name="colPropertys"></param>
        /// <param name="editCols"></param>
        /// <param name="gridViewLayoutInfo"></param>
        /// <param name="columnLayoutInfo"></param>
        public void CreateBandedGridViewColumns(DevExpress.XtraGrid.Views.BandedGrid.BandedGridView bandGridView,
                                                DevExpress.XtraGrid.Views.BandedGrid.GridBand gridBand,
                                                Dictionary <string, MB.WinBase.Common.ColumnPropertyInfo> colPropertys,
                                                Dictionary <string, MB.WinBase.Common.ColumnEditCfgInfo> editCols,
                                                MB.WinBase.Common.GridViewLayoutInfo gridViewLayoutInfo,
                                                MB.WinBase.Common.GridColumnLayoutInfo columnLayoutInfo)
        {
            if (string.Compare(columnLayoutInfo.Type, XtraGridViewHelper.BAND_TYPE_NAME, true) == 0)
            {
                createGridBand(bandGridView, gridBand, colPropertys, editCols, gridViewLayoutInfo, columnLayoutInfo);
            }
            else
            {
                DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn bColumn = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();

                if (!colPropertys.ContainsKey(columnLayoutInfo.ColumnXmlCfgName))
                {
                    return;
                }

                createBandColumn(bandGridView, gridBand, colPropertys, editCols, gridViewLayoutInfo, columnLayoutInfo, bColumn);
            }
        }
コード例 #7
0
        private void FrmBurdenMaxYear_Load(object sender, EventArgs e)
        {
            string pjt = " ProjectID='" + MIS.ProgUID + "'";

            AreaList = Common.Services.BaseService.GetList <PS_Table_AreaWH>("SelectPS_Table_AreaWHByConn", pjt);

            bandedGridView1.GroupPanelText = this.Text;


            //IList<BurdenLine> list = Services.BaseService.GetStrongList<BurdenLine>();
            IList <BurdenLine> list = Services.BaseService.GetList <BurdenLine>("SelectBurdenLineByWhere", " uid like '%" + Itop.Client.MIS.ProgUID + "%'  order by BurdenDate");

            int i        = 1;
            int yeardata = 0;

            //IList<BurdenYear> li = new List<BurdenYear>();
            BurdenYear by = new BurdenYear();

            foreach (BurdenLine bl in list)
            {
                double burmax = 0;
                burmax = Math.Max(bl.Hour1, bl.Hour2);
                burmax = Math.Max(burmax, bl.Hour3);
                burmax = Math.Max(burmax, bl.Hour4);
                burmax = Math.Max(burmax, bl.Hour5);
                burmax = Math.Max(burmax, bl.Hour6);
                burmax = Math.Max(burmax, bl.Hour7);
                burmax = Math.Max(burmax, bl.Hour8);
                burmax = Math.Max(burmax, bl.Hour9);
                burmax = Math.Max(burmax, bl.Hour10);
                burmax = Math.Max(burmax, bl.Hour11);
                burmax = Math.Max(burmax, bl.Hour12);
                burmax = Math.Max(burmax, bl.Hour13);
                burmax = Math.Max(burmax, bl.Hour14);
                burmax = Math.Max(burmax, bl.Hour15);
                burmax = Math.Max(burmax, bl.Hour16);
                burmax = Math.Max(burmax, bl.Hour17);
                burmax = Math.Max(burmax, bl.Hour18);
                burmax = Math.Max(burmax, bl.Hour19);
                burmax = Math.Max(burmax, bl.Hour20);
                burmax = Math.Max(burmax, bl.Hour21);
                burmax = Math.Max(burmax, bl.Hour22);
                burmax = Math.Max(burmax, bl.Hour23);
                burmax = Math.Max(burmax, bl.Hour24);

                if (yeardata != bl.BurdenDate.Year)
                {
                    if (yeardata == 0)
                    {
                        yeardata       = bl.BurdenDate.Year;
                        by             = new BurdenYear();
                        by.BurdenYears = yeardata;
                        by.Values      = burmax;
                        by.BurdenDate  = bl.BurdenDate;
                        by.AreaID      = bl.AreaID;
                    }
                    else
                    {
                        li.Add(by);
                        yeardata       = bl.BurdenDate.Year;
                        by             = new BurdenYear();
                        by.BurdenYears = yeardata;
                        by.Values      = burmax;
                        by.BurdenDate  = bl.BurdenDate;
                        by.AreaID      = bl.AreaID;
                    }
                }
                else
                {
                    if (by.Values < burmax)
                    {
                        by.Values     = burmax;
                        by.BurdenDate = bl.BurdenDate;
                        by.AreaID     = bl.AreaID;
                    }



                    //by.Values = Math.Max(by.Values,burmax);
                    //by.BurdenDate = bl.BurdenDate;
                }
                if (i == list.Count)
                {
                    li.Add(by);
                }
                i++;
            }



            DevExpress.XtraGrid.Views.BandedGrid.GridBand gridBand1 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
            gridBand1.Caption = "时间";
            gridBand1.Width   = 100;
            gridBand1.Name    = "gridBand1";
            gridBand1.AppearanceHeader.Options.UseTextOptions = true;
            gridBand1.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.bandedGridView1.Bands.Add(gridBand1);

            //DevExpress.XtraGrid.Views.BandedGrid.GridBand gridBand2 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
            //gridBand2.Caption = "时间";
            //gridBand2.Name = "gridBand2";
            //gridBand2.AppearanceHeader.Options.UseTextOptions = true;
            //gridBand2.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            //gridBand1.Children.Add(gridBand2);

            DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn gridColumn1 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            gridColumn1.Caption   = "时间";
            gridColumn1.FieldName = "s";
            gridColumn1.Name      = "gridColumn1";
            gridColumn1.Visible   = true;
            gridColumn1.AppearanceCell.Options.UseTextOptions = true;
            gridColumn1.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            bandedGridView1.Columns.Add(gridColumn1);
            gridBand1.Columns.Add(gridColumn1);



            DataTable dt = new DataTable();

            dt.Columns.Add("s", typeof(string));



            int listCount = li.Count;


            int numi = 0;
            int numj = 0;
            int numk = 0;

            DevExpress.XtraGrid.Views.BandedGrid.GridBand[]         gridBand     = new DevExpress.XtraGrid.Views.BandedGrid.GridBand[listCount];
            DevExpress.XtraGrid.Views.BandedGrid.GridBand[]         gridBandDate = new DevExpress.XtraGrid.Views.BandedGrid.GridBand[listCount];
            DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn[] gridColumn   = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn[listCount];


            foreach (BurdenYear bys in li)
            {
                gridBand[numi]         = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
                gridBand[numi].Caption = FindArea(bys.AreaID) + "_" + bys.BurdenYears.ToString() + "年";
                gridBand[numi].Width   = 100;
                gridBand[numi].Name    = "gridBand" + bys.BurdenYears.ToString();
                gridBand[numi].AppearanceHeader.Options.UseTextOptions = true;
                gridBand[numi].AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
                this.bandedGridView1.Bands.Add(gridBand[numi]);

                gridBandDate[numj]         = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
                gridBandDate[numj].Caption = bys.BurdenDate.ToString("MM月dd日");
                gridBandDate[numj].Name    = "gridBand" + bys.BurdenDate.ToString("yyyyMMdd");
                gridBandDate[numj].AppearanceHeader.Options.UseTextOptions = true;
                gridBandDate[numj].AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
                gridBand[numi].Children.Add(gridBandDate[numj]);

                gridColumn[numk]           = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
                gridColumn[numk].Caption   = "Year" + bys.BurdenYears.ToString();
                gridColumn[numk].FieldName = "Year" + bys.BurdenYears.ToString();
                gridColumn[numk].Name      = "Year" + bys.BurdenYears.ToString();
                gridColumn[numk].Visible   = true;
                gridColumn[numk].Width     = 130;
                gridColumn[numk].AppearanceCell.Options.UseTextOptions = true;
                gridColumn[numk].AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
                bandedGridView1.Columns.Add(gridColumn[numk]);
                gridBandDate[numj].Columns.Add(gridColumn[numk]);
                numi++;
                numj++;
                numk++;



                dt.Columns.Add("Year" + bys.BurdenYears.ToString(), typeof(double));
            }

            DataRow row = dt.NewRow();

            row["s"] = "负荷";
            foreach (BurdenYear bys1 in li)
            {
                row["Year" + bys1.BurdenYears.ToString()] = bys1.Values;
            }
            dt.Rows.Add(row);

            gridControl1.DataSource = dt;



            chart1.Series.Clear();


            string seriesName = "最大负荷";

            chart1.Series.Add(seriesName);
            chart1.Series[seriesName].Type        = SeriesChartType.Line;
            chart1.Series[seriesName].BorderWidth = 2;
            chart1.Series[seriesName].MarkerSize  = 7;
            chart1.Series[seriesName].MarkerStyle = (Dundas.Charting.WinControl.MarkerStyle)(2);

            foreach (DataColumn dc in dt.Columns)
            {
                if (dc.ColumnName == "s")
                {
                    continue;
                }

                try { if (int.Parse(dc.ColumnName.Replace("Year", "")) > 10000)
                      {
                          continue;
                      }
                }
                catch { }

                string coname = dc.ColumnName.Replace("Year", "");

                double YVal = 0;
                try
                {
                    YVal = (double)dt.Rows[0][dc.ColumnName];
                }
                catch { }
                chart1.Series[seriesName].Points.AddXY(coname, YVal);
            }

            if (!PrintRight)
            {
                barButtonItem2.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
            }
        }
コード例 #8
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 protected void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmChuongTrinhSearchMultiQL));
     this.gridControlDetail = new DevExpress.XtraGrid.GridControl();
     this.gridViewDetail = new DevExpress.XtraGrid.Views.Grid.PLGridView();
     this.Col_PM_PostMaster = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Col_PM_ThanhLy = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Col_PM_LoaiLuu = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Col_PM_TongTap = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Col_PM_Ke = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Col_PM_Ngan = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Col_PM_Tang = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Col_PM_PopUp = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Col_PM_TTDinhKem = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Col_PM_NgayNhapKho = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Col_PM_DVDNgayDuyet = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Col_PM_DVDNgayHoanTat = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Col_PM_DVDNoiDungDuyet = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Col_PM_TrailerPost = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Col_PM_TTHD = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Col_PM_ThoiLuongChung = new DevExpress.XtraGrid.Columns.GridColumn();
     this.barManager1 = new DevExpress.XtraBars.BarManager(this.components);
     this.MainBar = new DevExpress.XtraBars.Bar();
     this.barButtonItemAdd = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItemXem = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItemDelete = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItemUpdate = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItemPrint = new DevExpress.XtraBars.BarButtonItem();
     this.popupMenu1 = new DevExpress.XtraBars.PopupMenu(this.components);
     this.barButtonItem4 = new DevExpress.XtraBars.BarButtonItem();
     this.barSubItemInNhan = new DevExpress.XtraBars.BarSubItem();
     this.barButtonItemInBeatcamTrong = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItemInBeatacamNgoai = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItemCommit = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItemNoCommit = new DevExpress.XtraBars.BarButtonItem();
     this.barSubItem1 = new DevExpress.XtraBars.BarSubItem();
     this.barButtonItemSearch = new DevExpress.XtraBars.BarButtonItem();
     this.popupMenuFilter = new DevExpress.XtraBars.PopupMenu(this.components);
     this.barCheckItemFilter = new DevExpress.XtraBars.BarCheckItem();
     this.barCheckItemNangCao = new DevExpress.XtraBars.BarCheckItem();
     this.barCheckItemDonGian = new DevExpress.XtraBars.BarCheckItem();
     this.barButtonItemClose = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItemThongKe = new DevExpress.XtraBars.BarButtonItem();
     this.barSubItemCotHienThi = new DevExpress.XtraBars.BarSubItem();
     this.barDockControlTop = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlBottom = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlLeft = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlRight = new DevExpress.XtraBars.BarDockControl();
     this.dockManager1 = new DevExpress.XtraBars.Docking.DockManager(this.components);
     this.hideContainerLeft = new DevExpress.XtraBars.Docking.AutoHideContainer();
     this.dockPanelAdvance = new DevExpress.XtraBars.Docking.DockPanel();
     this.dockPanel2_Container = new DevExpress.XtraBars.Docking.ControlContainer();
     this.filterControl1 = new DevExpress.XtraEditors.FilterControl();
     this.dockPanelSimple = new DevExpress.XtraBars.Docking.DockPanel();
     this.dockPanel1_Container = new DevExpress.XtraBars.Docking.ControlContainer();
     this.popupControlContainerFilter = new DevExpress.XtraBars.PopupControlContainer(this.components);
     this.TrongKho = new DevExpress.XtraEditors.CheckedListBoxControl();
     this.TapSoDen = new DevExpress.XtraEditors.SpinEdit();
     this.TapSoTu = new DevExpress.XtraEditors.SpinEdit();
     this.plLabel21 = new DevExpress.XtraEditors.LabelControl();
     this.plLabel22 = new DevExpress.XtraEditors.LabelControl();
     this.TenTap = new ProtocolVN.App.VideoLibrary.PLTextEditAutocomplete();
     this.SoDKCBHD = new ProtocolVN.Framework.Win.PLMultiCombobox();
     this.plLabel20 = new DevExpress.XtraEditors.LabelControl();
     this.LoaiLuuTru = new ProtocolVN.Framework.Win.PLMultiCombobox();
     this.plLabel19 = new DevExpress.XtraEditors.LabelControl();
     this.TimeslotDen = new DevExpress.XtraEditors.TimeEdit();
     this.xtraTabControlDetail = new DevExpress.XtraTab.XtraTabControl();
     this.xtraTabPageDetail = new DevExpress.XtraTab.XtraTabPage();
     this.TimeslotTu = new DevExpress.XtraEditors.TimeEdit();
     this.SoRunConLaiTu = new DevExpress.XtraEditors.SpinEdit();
     this.SoRunDaDungTu = new DevExpress.XtraEditors.SpinEdit();
     this.SoRunConLaiDen = new DevExpress.XtraEditors.SpinEdit();
     this.SoRunDaDungDen = new DevExpress.XtraEditors.SpinEdit();
     this.TongSoRunDen = new DevExpress.XtraEditors.SpinEdit();
     this.TongSoRunTu = new DevExpress.XtraEditors.SpinEdit();
     this.BQDTTNEndDen = new DevExpress.XtraEditors.DateEdit();
     this.BQDTNNEndDen = new DevExpress.XtraEditors.DateEdit();
     this.BQDTNNEndTu = new DevExpress.XtraEditors.DateEdit();
     this.BQDTTNEndTu = new DevExpress.XtraEditors.DateEdit();
     this.PhongBan = new ProtocolVN.Framework.Win.PLDMTreeMultiChoice();
     this.NamSXDen = new DevExpress.XtraEditors.SpinEdit();
     this.NamSXTu = new DevExpress.XtraEditors.SpinEdit();
     this.plLabel11 = new DevExpress.XtraEditors.LabelControl();
     this.plLabel17 = new DevExpress.XtraEditors.LabelControl();
     this.plLabel16 = new DevExpress.XtraEditors.LabelControl();
     this.plLabel15 = new DevExpress.XtraEditors.LabelControl();
     this.plLabel9 = new DevExpress.XtraEditors.LabelControl();
     this.plLabel3 = new DevExpress.XtraEditors.LabelControl();
     this.plLabel2 = new DevExpress.XtraEditors.LabelControl();
     this.plLabel24 = new DevExpress.XtraEditors.LabelControl();
     this.plLabel10 = new DevExpress.XtraEditors.LabelControl();
     this.plLabel8 = new DevExpress.XtraEditors.LabelControl();
     this.plLabel14 = new DevExpress.XtraEditors.LabelControl();
     this.plLabel13 = new DevExpress.XtraEditors.LabelControl();
     this.plLabel12 = new DevExpress.XtraEditors.LabelControl();
     this.plLabel7 = new DevExpress.XtraEditors.LabelControl();
     this.label34 = new DevExpress.XtraEditors.LabelControl();
     this.BanQuyenThuoc = new ProtocolVN.Framework.Win.PLMultiCombobox();
     this.DonViCungCap = new ProtocolVN.Framework.Win.PLMultiCombobox();
     this.ngayNhap = new ProtocolVN.Framework.Win.Trial.PLDateSelection();
     this.Category = new ProtocolVN.App.VideoLibrary.PLTextEditAutocomplete();
     this.TenGoc = new ProtocolVN.App.VideoLibrary.PLTextEditAutocomplete();
     this.NoiDung = new ProtocolVN.App.VideoLibrary.PLTextEditAutocomplete();
     this.QuocGia = new ProtocolVN.Framework.Win.PLMultiCombobox();
     this.TietMuc = new ProtocolVN.Framework.Win.PLMultiCombobox();
     this.plLabel18 = new DevExpress.XtraEditors.LabelControl();
     this.plLabel5 = new DevExpress.XtraEditors.LabelControl();
     this.label10 = new DevExpress.XtraEditors.LabelControl();
     this.plLabel1 = new DevExpress.XtraEditors.LabelControl();
     this.plLabel23 = new DevExpress.XtraEditors.LabelControl();
     this.label29 = new DevExpress.XtraEditors.LabelControl();
     this.plLabel6 = new DevExpress.XtraEditors.LabelControl();
     this.label3 = new DevExpress.XtraEditors.LabelControl();
     this.plLabel4 = new DevExpress.XtraEditors.LabelControl();
     this.label5 = new DevExpress.XtraEditors.LabelControl();
     this.barStaticItem1 = new DevExpress.XtraBars.BarStaticItem();
     this.barButtonItem1 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem2 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem3 = new DevExpress.XtraBars.BarButtonItem();
     this.splitContainerControl1 = new DevExpress.XtraEditors.SplitContainerControl();
     this.groupControlCT = new DevExpress.XtraEditors.GroupControl();
     this.gridControlMaster = new DevExpress.XtraGrid.GridControl();
     this.gridViewMaster = new DevExpress.XtraGrid.Views.BandedGrid.PLBandedGridView();
     this.Col_CT_MaCT = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_CT_NgayAWB = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_CT_NgayLap = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_CT_NguoiLap = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_CT_PhongBan = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_CT_Category = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_CT_NoiDung = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_CT_TenGoc = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_CT_TietMuc = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_CT_DaoDien = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_CT_DienVien = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_CT_TomTat = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_CT_DoiTuongKhanGia = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_CT_KHPL = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_CT_KHXK = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_CT_TinhTrangBang = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_CT_TuKhoa = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_CT_ThanhLy = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_CT_TrongKho = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_CT_GhiChu = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_CT_Photos = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_CT_Ranking = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_CT_Script = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_CT_TrailerGoc = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_CT_NamSX = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_CT_Nuoc = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_CT_DonViCungCap = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_CT_DonViSoHuu = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_CT_KenhHanCheBan = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_CT_ThongTinBan = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_CT_BanQuyenThuoc = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_CT_BanQuyenDIDStart = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_CT_BanQuyenDIDEnd = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_CT_BanQuyenDTNNStart = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_CT_BanQuyenDTNNEnd = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_CT_BanQuyenHTV = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_CT_MuaKem = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_CT_PhatSongChinh = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_CT_PhatSongLai = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_CT_PhatSongKhac = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_CT_TongSoRun = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_CT_SoLanPhat = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_CT_SoRunConLai = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_CT_Release = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.splitContainerControl2 = new DevExpress.XtraEditors.SplitContainerControl();
     this.groupControlPM = new DevExpress.XtraEditors.GroupControl();
     this.groupControlBM = new DevExpress.XtraEditors.GroupControl();
     this.gridControlBienMuc = new DevExpress.XtraGrid.GridControl();
     this.gridViewBienMuc = new DevExpress.XtraGrid.Views.Grid.PLGridView();
     this.Col_BM_ThanhLy = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Col_BM_MaBang = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Col_BM_TapSo = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Col_BM_TenTap = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Col_BM_SoBang = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Col_BM_ThongSo = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Col_BM_ThoiLuong = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Col_BM_SoDKCBHD = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Col_BM_NoiLuuTru = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Col_CT_HangSanXuat = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridBandThongTinChinh = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.gridBandNguonGoc = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.gridBand1 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.gridBand2 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.gridBandThongTinPhatSong = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.gridBandThongTinBan = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.Col_PM_TienDo = new DevExpress.XtraGrid.Columns.GridColumn();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlDetail)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewDetail)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.barManager1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.popupMenu1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.popupMenuFilter)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dockManager1)).BeginInit();
     this.hideContainerLeft.SuspendLayout();
     this.dockPanelAdvance.SuspendLayout();
     this.dockPanel2_Container.SuspendLayout();
     this.dockPanelSimple.SuspendLayout();
     this.dockPanel1_Container.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.popupControlContainerFilter)).BeginInit();
     this.popupControlContainerFilter.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.TrongKho)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TapSoDen.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TapSoTu.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TenTap.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.SoDKCBHD.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.LoaiLuuTru.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TimeslotDen.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControlDetail)).BeginInit();
     this.xtraTabControlDetail.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.TimeslotTu.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.SoRunConLaiTu.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.SoRunDaDungTu.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.SoRunConLaiDen.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.SoRunDaDungDen.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TongSoRunDen.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TongSoRunTu.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.BQDTTNEndDen.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.BQDTTNEndDen.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.BQDTNNEndDen.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.BQDTNNEndDen.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.BQDTNNEndTu.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.BQDTNNEndTu.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.BQDTTNEndTu.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.BQDTTNEndTu.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.NamSXDen.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.NamSXTu.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.BanQuyenThuoc.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DonViCungCap.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Category.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TenGoc.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.NoiDung.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.QuocGia.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TietMuc.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl1)).BeginInit();
     this.splitContainerControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControlCT)).BeginInit();
     this.groupControlCT.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMaster)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMaster)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl2)).BeginInit();
     this.splitContainerControl2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControlPM)).BeginInit();
     this.groupControlPM.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControlBM)).BeginInit();
     this.groupControlBM.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlBienMuc)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewBienMuc)).BeginInit();
     this.SuspendLayout();
     //
     // gridControlDetail
     //
     this.gridControlDetail.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("gridControlDetail.BackgroundImage")));
     this.gridControlDetail.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
     this.gridControlDetail.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gridControlDetail.Location = new System.Drawing.Point(3, 3);
     this.gridControlDetail.MainView = this.gridViewDetail;
     this.gridControlDetail.Name = "gridControlDetail";
     this.gridControlDetail.Size = new System.Drawing.Size(654, 144);
     this.gridControlDetail.TabIndex = 9;
     this.gridControlDetail.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewDetail});
     //
     // gridViewDetail
     //
     this.gridViewDetail.Appearance.HeaderPanel.Options.UseTextOptions = true;
     this.gridViewDetail.Appearance.HeaderPanel.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridViewDetail.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.gridViewDetail.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.Col_PM_PostMaster,
     this.Col_PM_ThanhLy,
     this.Col_PM_LoaiLuu,
     this.Col_PM_TongTap,
     this.Col_PM_Ke,
     this.Col_PM_Ngan,
     this.Col_PM_Tang,
     this.Col_PM_PopUp,
     this.Col_PM_TTDinhKem,
     this.Col_PM_NgayNhapKho,
     this.Col_PM_DVDNgayDuyet,
     this.Col_PM_DVDNgayHoanTat,
     this.Col_PM_DVDNoiDungDuyet,
     this.Col_PM_TrailerPost,
     this.Col_PM_TTHD,
     this.Col_PM_ThoiLuongChung,
     this.Col_PM_TienDo});
     this.gridViewDetail.GridControl = this.gridControlDetail;
     this.gridViewDetail.IndicatorWidth = 40;
     this.gridViewDetail.Name = "gridViewDetail";
     this.gridViewDetail.OptionsLayout.Columns.AddNewColumns = false;
     this.gridViewDetail.OptionsNavigation.AutoFocusNewRow = true;
     this.gridViewDetail.OptionsNavigation.EnterMoveNextColumn = true;
     this.gridViewDetail.OptionsPrint.UsePrintStyles = true;
     this.gridViewDetail.OptionsView.ColumnAutoWidth = false;
     this.gridViewDetail.OptionsView.EnableAppearanceEvenRow = true;
     this.gridViewDetail.OptionsView.EnableAppearanceOddRow = true;
     this.gridViewDetail.OptionsView.NewItemRowPosition = DevExpress.XtraGrid.Views.Grid.NewItemRowPosition.Bottom;
     this.gridViewDetail.OptionsView.ShowGroupedColumns = true;
     this.gridViewDetail.OptionsView.ShowGroupPanel = false;
     this.gridViewDetail.OptionsView.ShowViewCaption = true;
     this.gridViewDetail.ViewCaption = "Post/Master (Cấp 2)";
     //
     // Col_PM_PostMaster
     //
     this.Col_PM_PostMaster.Caption = "Post/Master";
     this.Col_PM_PostMaster.Name = "Col_PM_PostMaster";
     this.Col_PM_PostMaster.OptionsColumn.AllowMove = false;
     this.Col_PM_PostMaster.OptionsColumn.AllowShowHide = false;
     this.Col_PM_PostMaster.Visible = true;
     this.Col_PM_PostMaster.VisibleIndex = 0;
     this.Col_PM_PostMaster.Width = 70;
     //
     // Col_PM_ThanhLy
     //
     this.Col_PM_ThanhLy.Caption = "Thanh lý";
     this.Col_PM_ThanhLy.Name = "Col_PM_ThanhLy";
     this.Col_PM_ThanhLy.Visible = true;
     this.Col_PM_ThanhLy.VisibleIndex = 3;
     this.Col_PM_ThanhLy.Width = 53;
     //
     // Col_PM_LoaiLuu
     //
     this.Col_PM_LoaiLuu.Caption = "Loại lưu trữ";
     this.Col_PM_LoaiLuu.Name = "Col_PM_LoaiLuu";
     this.Col_PM_LoaiLuu.Visible = true;
     this.Col_PM_LoaiLuu.VisibleIndex = 1;
     this.Col_PM_LoaiLuu.Width = 67;
     //
     // Col_PM_TongTap
     //
     this.Col_PM_TongTap.Caption = "Số tập gốc/cắt";
     this.Col_PM_TongTap.Name = "Col_PM_TongTap";
     this.Col_PM_TongTap.Visible = true;
     this.Col_PM_TongTap.VisibleIndex = 2;
     this.Col_PM_TongTap.Width = 82;
     //
     // Col_PM_Ke
     //
     this.Col_PM_Ke.Caption = "Kệ";
     this.Col_PM_Ke.Name = "Col_PM_Ke";
     this.Col_PM_Ke.Visible = true;
     this.Col_PM_Ke.VisibleIndex = 4;
     this.Col_PM_Ke.Width = 24;
     //
     // Col_PM_Ngan
     //
     this.Col_PM_Ngan.Caption = "Ngăn";
     this.Col_PM_Ngan.Name = "Col_PM_Ngan";
     this.Col_PM_Ngan.Visible = true;
     this.Col_PM_Ngan.VisibleIndex = 5;
     this.Col_PM_Ngan.Width = 37;
     //
     // Col_PM_Tang
     //
     this.Col_PM_Tang.Caption = "Tầng";
     this.Col_PM_Tang.Name = "Col_PM_Tang";
     this.Col_PM_Tang.Visible = true;
     this.Col_PM_Tang.VisibleIndex = 6;
     this.Col_PM_Tang.Width = 36;
     //
     // Col_PM_PopUp
     //
     this.Col_PM_PopUp.Caption = "Pop Up";
     this.Col_PM_PopUp.Name = "Col_PM_PopUp";
     this.Col_PM_PopUp.Visible = true;
     this.Col_PM_PopUp.VisibleIndex = 7;
     this.Col_PM_PopUp.Width = 46;
     //
     // Col_PM_TTDinhKem
     //
     this.Col_PM_TTDinhKem.Caption = "TT Đính kèm";
     this.Col_PM_TTDinhKem.Name = "Col_PM_TTDinhKem";
     this.Col_PM_TTDinhKem.Visible = true;
     this.Col_PM_TTDinhKem.VisibleIndex = 8;
     this.Col_PM_TTDinhKem.Width = 71;
     //
     // Col_PM_NgayNhapKho
     //
     this.Col_PM_NgayNhapKho.Caption = "Ngày nhập kho";
     this.Col_PM_NgayNhapKho.Name = "Col_PM_NgayNhapKho";
     this.Col_PM_NgayNhapKho.Visible = true;
     this.Col_PM_NgayNhapKho.VisibleIndex = 9;
     this.Col_PM_NgayNhapKho.Width = 84;
     //
     // Col_PM_DVDNgayDuyet
     //
     this.Col_PM_DVDNgayDuyet.Caption = "DVD ngày duyệt";
     this.Col_PM_DVDNgayDuyet.Name = "Col_PM_DVDNgayDuyet";
     this.Col_PM_DVDNgayDuyet.Visible = true;
     this.Col_PM_DVDNgayDuyet.VisibleIndex = 10;
     this.Col_PM_DVDNgayDuyet.Width = 90;
     //
     // Col_PM_DVDNgayHoanTat
     //
     this.Col_PM_DVDNgayHoanTat.Caption = "DVD Ngày hoàn tất";
     this.Col_PM_DVDNgayHoanTat.Name = "Col_PM_DVDNgayHoanTat";
     this.Col_PM_DVDNgayHoanTat.Visible = true;
     this.Col_PM_DVDNgayHoanTat.VisibleIndex = 11;
     this.Col_PM_DVDNgayHoanTat.Width = 104;
     //
     // Col_PM_DVDNoiDungDuyet
     //
     this.Col_PM_DVDNoiDungDuyet.Caption = "Nội dung duyệt";
     this.Col_PM_DVDNoiDungDuyet.Name = "Col_PM_DVDNoiDungDuyet";
     this.Col_PM_DVDNoiDungDuyet.Visible = true;
     this.Col_PM_DVDNoiDungDuyet.VisibleIndex = 12;
     this.Col_PM_DVDNoiDungDuyet.Width = 85;
     //
     // Col_PM_TrailerPost
     //
     this.Col_PM_TrailerPost.Caption = "Trailer/Post";
     this.Col_PM_TrailerPost.Name = "Col_PM_TrailerPost";
     this.Col_PM_TrailerPost.Visible = true;
     this.Col_PM_TrailerPost.VisibleIndex = 13;
     this.Col_PM_TrailerPost.Width = 67;
     //
     // Col_PM_TTHD
     //
     this.Col_PM_TTHD.Caption = "Thông tin HD";
     this.Col_PM_TTHD.Name = "Col_PM_TTHD";
     this.Col_PM_TTHD.Visible = true;
     this.Col_PM_TTHD.VisibleIndex = 14;
     this.Col_PM_TTHD.Width = 74;
     //
     // Col_PM_ThoiLuongChung
     //
     this.Col_PM_ThoiLuongChung.Caption = "Thời lượng chung";
     this.Col_PM_ThoiLuongChung.Name = "Col_PM_ThoiLuongChung";
     this.Col_PM_ThoiLuongChung.Visible = true;
     this.Col_PM_ThoiLuongChung.VisibleIndex = 15;
     this.Col_PM_ThoiLuongChung.Width = 94;
     //
     // barManager1
     //
     this.barManager1.Bars.AddRange(new DevExpress.XtraBars.Bar[] {
     this.MainBar});
     this.barManager1.DockControls.Add(this.barDockControlTop);
     this.barManager1.DockControls.Add(this.barDockControlBottom);
     this.barManager1.DockControls.Add(this.barDockControlLeft);
     this.barManager1.DockControls.Add(this.barDockControlRight);
     this.barManager1.DockManager = this.dockManager1;
     this.barManager1.Form = this;
     this.barManager1.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
     this.barButtonItemAdd,
     this.barButtonItemDelete,
     this.barButtonItemUpdate,
     this.barButtonItemPrint,
     this.barStaticItem1,
     this.barButtonItem1,
     this.barButtonItem2,
     this.barButtonItemCommit,
     this.barButtonItemNoCommit,
     this.barSubItem1,
     this.barButtonItemXem,
     this.barButtonItemSearch,
     this.barButtonItemClose,
     this.barCheckItemFilter,
     this.barButtonItem3,
     this.barButtonItem4,
     this.barSubItemCotHienThi,
     this.barSubItemInNhan,
     this.barButtonItemInBeatcamTrong,
     this.barButtonItemInBeatacamNgoai,
     this.barCheckItemNangCao,
     this.barCheckItemDonGian,
     this.barButtonItemThongKe});
     this.barManager1.MaxItemId = 43;
     //
     // MainBar
     //
     this.MainBar.BarName = "MainBar";
     this.MainBar.DockCol = 0;
     this.MainBar.DockRow = 0;
     this.MainBar.DockStyle = DevExpress.XtraBars.BarDockStyle.Top;
     this.MainBar.FloatLocation = new System.Drawing.Point(39, 133);
     this.MainBar.FloatSize = new System.Drawing.Size(72, 73);
     this.MainBar.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemAdd),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemXem),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemDelete),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemUpdate),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemPrint, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.barSubItemInNhan),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemCommit, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemNoCommit),
     new DevExpress.XtraBars.LinkPersistInfo(this.barSubItem1, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemSearch, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemClose, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemThongKe, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.barSubItemCotHienThi, true)});
     this.MainBar.OptionsBar.AllowQuickCustomization = false;
     this.MainBar.OptionsBar.DrawDragBorder = false;
     this.MainBar.OptionsBar.RotateWhenVertical = false;
     this.MainBar.OptionsBar.UseWholeRow = true;
     this.MainBar.Text = "Custom 1";
     //
     // barButtonItemAdd
     //
     this.barButtonItemAdd.Caption = "Thêm";
     this.barButtonItemAdd.Id = 0;
     this.barButtonItemAdd.Name = "barButtonItemAdd";
     this.barButtonItemAdd.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // barButtonItemXem
     //
     this.barButtonItemXem.Caption = "&Xem";
     this.barButtonItemXem.Id = 24;
     this.barButtonItemXem.Name = "barButtonItemXem";
     this.barButtonItemXem.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // barButtonItemDelete
     //
     this.barButtonItemDelete.Caption = "&Xóa";
     this.barButtonItemDelete.Id = 1;
     this.barButtonItemDelete.Name = "barButtonItemDelete";
     this.barButtonItemDelete.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // barButtonItemUpdate
     //
     this.barButtonItemUpdate.Caption = "&Sửa";
     this.barButtonItemUpdate.Id = 2;
     this.barButtonItemUpdate.Name = "barButtonItemUpdate";
     this.barButtonItemUpdate.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // barButtonItemPrint
     //
     this.barButtonItemPrint.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown;
     this.barButtonItemPrint.Caption = "&In";
     this.barButtonItemPrint.DropDownControl = this.popupMenu1;
     this.barButtonItemPrint.Id = 3;
     this.barButtonItemPrint.Name = "barButtonItemPrint";
     this.barButtonItemPrint.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // popupMenu1
     //
     this.popupMenu1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem4)});
     this.popupMenu1.Manager = this.barManager1;
     this.popupMenu1.Name = "popupMenu1";
     //
     // barButtonItem4
     //
     this.barButtonItem4.Caption = "Xem trước";
     this.barButtonItem4.Id = 33;
     this.barButtonItem4.Name = "barButtonItem4";
     //
     // barSubItemInNhan
     //
     this.barSubItemInNhan.Caption = "In n&hãn";
     this.barSubItemInNhan.Id = 36;
     this.barSubItemInNhan.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemInBeatcamTrong),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemInBeatacamNgoai)});
     this.barSubItemInNhan.Name = "barSubItemInNhan";
     //
     // barButtonItemInBeatcamTrong
     //
     this.barButtonItemInBeatcamTrong.Caption = "In beatcam t&rong";
     this.barButtonItemInBeatcamTrong.Id = 37;
     this.barButtonItemInBeatcamTrong.Name = "barButtonItemInBeatcamTrong";
     this.barButtonItemInBeatcamTrong.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItemInBeatcamTrong_ItemClick);
     //
     // barButtonItemInBeatacamNgoai
     //
     this.barButtonItemInBeatacamNgoai.Caption = "In betacam n&ngoài";
     this.barButtonItemInBeatacamNgoai.Id = 38;
     this.barButtonItemInBeatacamNgoai.Name = "barButtonItemInBeatacamNgoai";
     this.barButtonItemInBeatacamNgoai.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItemInBeatacamNgoai_ItemClick);
     //
     // barButtonItemCommit
     //
     this.barButtonItemCommit.Caption = "&Duyệt";
     this.barButtonItemCommit.Id = 17;
     this.barButtonItemCommit.Name = "barButtonItemCommit";
     this.barButtonItemCommit.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // barButtonItemNoCommit
     //
     this.barButtonItemNoCommit.Caption = "&Không duyệt";
     this.barButtonItemNoCommit.Id = 18;
     this.barButtonItemNoCommit.Name = "barButtonItemNoCommit";
     this.barButtonItemNoCommit.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // barSubItem1
     //
     this.barSubItem1.Caption = "Nghiệp vụ";
     this.barSubItem1.Id = 20;
     this.barSubItem1.Name = "barSubItem1";
     this.barSubItem1.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // barButtonItemSearch
     //
     this.barButtonItemSearch.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown;
     this.barButtonItemSearch.Caption = "Tìm kiếm";
     this.barButtonItemSearch.DropDownControl = this.popupMenuFilter;
     this.barButtonItemSearch.Id = 27;
     this.barButtonItemSearch.Name = "barButtonItemSearch";
     this.barButtonItemSearch.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // popupMenuFilter
     //
     this.popupMenuFilter.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.barCheckItemFilter),
     new DevExpress.XtraBars.LinkPersistInfo(this.barCheckItemNangCao),
     new DevExpress.XtraBars.LinkPersistInfo(this.barCheckItemDonGian)});
     this.popupMenuFilter.Manager = this.barManager1;
     this.popupMenuFilter.Name = "popupMenuFilter";
     //
     // barCheckItemFilter
     //
     this.barCheckItemFilter.Caption = "Điều &kiện lọc";
     this.barCheckItemFilter.Checked = true;
     this.barCheckItemFilter.Id = 29;
     this.barCheckItemFilter.Name = "barCheckItemFilter";
     this.barCheckItemFilter.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.barCheckItemFilter.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
     //
     // barCheckItemNangCao
     //
     this.barCheckItemNangCao.Caption = "Tìm kiếm nâng cao";
     this.barCheckItemNangCao.Id = 40;
     this.barCheckItemNangCao.Name = "barCheckItemNangCao";
     //
     // barCheckItemDonGian
     //
     this.barCheckItemDonGian.Caption = "Tìm kiếm đơn giản";
     this.barCheckItemDonGian.Id = 41;
     this.barCheckItemDonGian.Name = "barCheckItemDonGian";
     //
     // barButtonItemClose
     //
     this.barButtonItemClose.Caption = "Đóng";
     this.barButtonItemClose.Id = 28;
     this.barButtonItemClose.Name = "barButtonItemClose";
     this.barButtonItemClose.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // barButtonItemThongKe
     //
     this.barButtonItemThongKe.Caption = "Thống kê";
     this.barButtonItemThongKe.Id = 42;
     this.barButtonItemThongKe.Name = "barButtonItemThongKe";
     this.barButtonItemThongKe.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItemThongKe_ItemClick);
     //
     // barSubItemCotHienThi
     //
     this.barSubItemCotHienThi.Caption = "Chọn cột hiển thị";
     this.barSubItemCotHienThi.Id = 35;
     this.barSubItemCotHienThi.Name = "barSubItemCotHienThi";
     //
     // barDockControlTop
     //
     this.barDockControlTop.Dock = System.Windows.Forms.DockStyle.Top;
     this.barDockControlTop.Location = new System.Drawing.Point(0, 0);
     this.barDockControlTop.Size = new System.Drawing.Size(1188, 24);
     //
     // barDockControlBottom
     //
     this.barDockControlBottom.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.barDockControlBottom.Location = new System.Drawing.Point(0, 545);
     this.barDockControlBottom.Size = new System.Drawing.Size(1188, 0);
     //
     // barDockControlLeft
     //
     this.barDockControlLeft.Dock = System.Windows.Forms.DockStyle.Left;
     this.barDockControlLeft.Location = new System.Drawing.Point(0, 24);
     this.barDockControlLeft.Size = new System.Drawing.Size(0, 521);
     //
     // barDockControlRight
     //
     this.barDockControlRight.Dock = System.Windows.Forms.DockStyle.Right;
     this.barDockControlRight.Location = new System.Drawing.Point(1188, 24);
     this.barDockControlRight.Size = new System.Drawing.Size(0, 521);
     //
     // dockManager1
     //
     this.dockManager1.AutoHideContainers.AddRange(new DevExpress.XtraBars.Docking.AutoHideContainer[] {
     this.hideContainerLeft});
     this.dockManager1.DockingOptions.ShowCloseButton = false;
     this.dockManager1.Form = this;
     this.dockManager1.RootPanels.AddRange(new DevExpress.XtraBars.Docking.DockPanel[] {
     this.dockPanelSimple});
     this.dockManager1.TopZIndexControls.AddRange(new string[] {
     "DevExpress.XtraBars.BarDockControl",
     "DevExpress.XtraBars.StandaloneBarDockControl",
     "System.Windows.Forms.StatusBar",
     "DevExpress.XtraBars.Ribbon.RibbonStatusBar",
     "DevExpress.XtraBars.Ribbon.RibbonControl"});
     //
     // hideContainerLeft
     //
     this.hideContainerLeft.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(247)))), ((int)(((byte)(245)))), ((int)(((byte)(241)))));
     this.hideContainerLeft.Controls.Add(this.dockPanelAdvance);
     this.hideContainerLeft.Dock = System.Windows.Forms.DockStyle.Left;
     this.hideContainerLeft.Location = new System.Drawing.Point(0, 24);
     this.hideContainerLeft.Name = "hideContainerLeft";
     this.hideContainerLeft.Size = new System.Drawing.Size(19, 521);
     //
     // dockPanelAdvance
     //
     this.dockPanelAdvance.Controls.Add(this.dockPanel2_Container);
     this.dockPanelAdvance.Dock = DevExpress.XtraBars.Docking.DockingStyle.Left;
     this.dockPanelAdvance.ID = new System.Guid("b5e2d5e3-e455-4d58-8a09-d4f23b66f872");
     this.dockPanelAdvance.Location = new System.Drawing.Point(0, 0);
     this.dockPanelAdvance.Name = "dockPanelAdvance";
     this.dockPanelAdvance.OriginalSize = new System.Drawing.Size(200, 200);
     this.dockPanelAdvance.SavedDock = DevExpress.XtraBars.Docking.DockingStyle.Left;
     this.dockPanelAdvance.SavedIndex = 0;
     this.dockPanelAdvance.Size = new System.Drawing.Size(200, 521);
     this.dockPanelAdvance.Text = "Điều kiện tìm kiếm nâng cao";
     this.dockPanelAdvance.Visibility = DevExpress.XtraBars.Docking.DockVisibility.AutoHide;
     //
     // dockPanel2_Container
     //
     this.dockPanel2_Container.Controls.Add(this.filterControl1);
     this.dockPanel2_Container.Location = new System.Drawing.Point(3, 25);
     this.dockPanel2_Container.Name = "dockPanel2_Container";
     this.dockPanel2_Container.Size = new System.Drawing.Size(194, 493);
     this.dockPanel2_Container.TabIndex = 0;
     //
     // filterControl1
     //
     this.filterControl1.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.filterControl1.Cursor = System.Windows.Forms.Cursors.Arrow;
     this.filterControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.filterControl1.Location = new System.Drawing.Point(0, 0);
     this.filterControl1.Name = "filterControl1";
     this.filterControl1.Size = new System.Drawing.Size(194, 493);
     this.filterControl1.TabIndex = 10;
     this.filterControl1.Text = "filterControl1";
     //
     // dockPanelSimple
     //
     this.dockPanelSimple.Controls.Add(this.dockPanel1_Container);
     this.dockPanelSimple.Dock = DevExpress.XtraBars.Docking.DockingStyle.Top;
     this.dockPanelSimple.FloatVertical = true;
     this.dockPanelSimple.ID = new System.Guid("437240ce-168d-4c05-a0b9-c702ea5e41f7");
     this.dockPanelSimple.Location = new System.Drawing.Point(19, 24);
     this.dockPanelSimple.Name = "dockPanelSimple";
     this.dockPanelSimple.Options.AllowDockLeft = false;
     this.dockPanelSimple.Options.AllowDockRight = false;
     this.dockPanelSimple.OriginalSize = new System.Drawing.Size(200, 157);
     this.dockPanelSimple.Size = new System.Drawing.Size(1169, 157);
     this.dockPanelSimple.Text = "Điều kiện tìm kiếm cơ bản";
     //
     // dockPanel1_Container
     //
     this.dockPanel1_Container.Controls.Add(this.popupControlContainerFilter);
     this.dockPanel1_Container.Location = new System.Drawing.Point(3, 25);
     this.dockPanel1_Container.Name = "dockPanel1_Container";
     this.dockPanel1_Container.Size = new System.Drawing.Size(1163, 129);
     this.dockPanel1_Container.TabIndex = 0;
     //
     // popupControlContainerFilter
     //
     this.popupControlContainerFilter.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.popupControlContainerFilter.Controls.Add(this.TrongKho);
     this.popupControlContainerFilter.Controls.Add(this.TapSoDen);
     this.popupControlContainerFilter.Controls.Add(this.TapSoTu);
     this.popupControlContainerFilter.Controls.Add(this.plLabel21);
     this.popupControlContainerFilter.Controls.Add(this.plLabel22);
     this.popupControlContainerFilter.Controls.Add(this.TenTap);
     this.popupControlContainerFilter.Controls.Add(this.SoDKCBHD);
     this.popupControlContainerFilter.Controls.Add(this.plLabel20);
     this.popupControlContainerFilter.Controls.Add(this.LoaiLuuTru);
     this.popupControlContainerFilter.Controls.Add(this.plLabel19);
     this.popupControlContainerFilter.Controls.Add(this.TimeslotDen);
     this.popupControlContainerFilter.Controls.Add(this.xtraTabControlDetail);
     this.popupControlContainerFilter.Controls.Add(this.TimeslotTu);
     this.popupControlContainerFilter.Controls.Add(this.SoRunConLaiTu);
     this.popupControlContainerFilter.Controls.Add(this.SoRunDaDungTu);
     this.popupControlContainerFilter.Controls.Add(this.SoRunConLaiDen);
     this.popupControlContainerFilter.Controls.Add(this.SoRunDaDungDen);
     this.popupControlContainerFilter.Controls.Add(this.TongSoRunDen);
     this.popupControlContainerFilter.Controls.Add(this.TongSoRunTu);
     this.popupControlContainerFilter.Controls.Add(this.BQDTTNEndDen);
     this.popupControlContainerFilter.Controls.Add(this.BQDTNNEndDen);
     this.popupControlContainerFilter.Controls.Add(this.BQDTNNEndTu);
     this.popupControlContainerFilter.Controls.Add(this.BQDTTNEndTu);
     this.popupControlContainerFilter.Controls.Add(this.PhongBan);
     this.popupControlContainerFilter.Controls.Add(this.NamSXDen);
     this.popupControlContainerFilter.Controls.Add(this.NamSXTu);
     this.popupControlContainerFilter.Controls.Add(this.plLabel11);
     this.popupControlContainerFilter.Controls.Add(this.plLabel17);
     this.popupControlContainerFilter.Controls.Add(this.plLabel16);
     this.popupControlContainerFilter.Controls.Add(this.plLabel15);
     this.popupControlContainerFilter.Controls.Add(this.plLabel9);
     this.popupControlContainerFilter.Controls.Add(this.plLabel3);
     this.popupControlContainerFilter.Controls.Add(this.plLabel2);
     this.popupControlContainerFilter.Controls.Add(this.plLabel24);
     this.popupControlContainerFilter.Controls.Add(this.plLabel10);
     this.popupControlContainerFilter.Controls.Add(this.plLabel8);
     this.popupControlContainerFilter.Controls.Add(this.plLabel14);
     this.popupControlContainerFilter.Controls.Add(this.plLabel13);
     this.popupControlContainerFilter.Controls.Add(this.plLabel12);
     this.popupControlContainerFilter.Controls.Add(this.plLabel7);
     this.popupControlContainerFilter.Controls.Add(this.label34);
     this.popupControlContainerFilter.Controls.Add(this.BanQuyenThuoc);
     this.popupControlContainerFilter.Controls.Add(this.DonViCungCap);
     this.popupControlContainerFilter.Controls.Add(this.ngayNhap);
     this.popupControlContainerFilter.Controls.Add(this.Category);
     this.popupControlContainerFilter.Controls.Add(this.TenGoc);
     this.popupControlContainerFilter.Controls.Add(this.NoiDung);
     this.popupControlContainerFilter.Controls.Add(this.QuocGia);
     this.popupControlContainerFilter.Controls.Add(this.TietMuc);
     this.popupControlContainerFilter.Controls.Add(this.plLabel18);
     this.popupControlContainerFilter.Controls.Add(this.plLabel5);
     this.popupControlContainerFilter.Controls.Add(this.label10);
     this.popupControlContainerFilter.Controls.Add(this.plLabel1);
     this.popupControlContainerFilter.Controls.Add(this.plLabel23);
     this.popupControlContainerFilter.Controls.Add(this.label29);
     this.popupControlContainerFilter.Controls.Add(this.plLabel6);
     this.popupControlContainerFilter.Controls.Add(this.label3);
     this.popupControlContainerFilter.Controls.Add(this.plLabel4);
     this.popupControlContainerFilter.Controls.Add(this.label5);
     this.popupControlContainerFilter.Dock = System.Windows.Forms.DockStyle.Fill;
     this.popupControlContainerFilter.Location = new System.Drawing.Point(0, 0);
     this.popupControlContainerFilter.Manager = this.barManager1;
     this.popupControlContainerFilter.Name = "popupControlContainerFilter";
     this.popupControlContainerFilter.Size = new System.Drawing.Size(1163, 129);
     this.popupControlContainerFilter.TabIndex = 5;
     this.popupControlContainerFilter.Visible = false;
     //
     // TrongKho
     //
     this.TrongKho.CheckOnClick = true;
     this.TrongKho.ColumnWidth = 85;
     this.TrongKho.Items.AddRange(new DevExpress.XtraEditors.Controls.CheckedListBoxItem[] {
     new DevExpress.XtraEditors.Controls.CheckedListBoxItem("Y", "Có"),
     new DevExpress.XtraEditors.Controls.CheckedListBoxItem("N", "Không")});
     this.TrongKho.Location = new System.Drawing.Point(583, 79);
     this.TrongKho.MultiColumn = true;
     this.TrongKho.Name = "TrongKho";
     this.TrongKho.SelectionMode = System.Windows.Forms.SelectionMode.None;
     this.TrongKho.Size = new System.Drawing.Size(179, 20);
     this.TrongKho.TabIndex = 248;
     //
     // TapSoDen
     //
     this.TapSoDen.EditValue = new decimal(new int[] {
     0,
     0,
     0,
     0});
     this.TapSoDen.Location = new System.Drawing.Point(687, 106);
     this.TapSoDen.Name = "TapSoDen";
     this.TapSoDen.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.TapSoDen.Size = new System.Drawing.Size(75, 20);
     this.TapSoDen.TabIndex = 245;
     //
     // TapSoTu
     //
     this.TapSoTu.EditValue = new decimal(new int[] {
     0,
     0,
     0,
     0});
     this.TapSoTu.Location = new System.Drawing.Point(585, 105);
     this.TapSoTu.Name = "TapSoTu";
     this.TapSoTu.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.TapSoTu.Size = new System.Drawing.Size(67, 20);
     this.TapSoTu.TabIndex = 246;
     //
     // plLabel21
     //
     this.plLabel21.Location = new System.Drawing.Point(657, 109);
     this.plLabel21.Name = "plLabel21";
     this.plLabel21.Size = new System.Drawing.Size(18, 13);
     this.plLabel21.TabIndex = 243;
     this.plLabel21.Text = "đến";
     //
     // plLabel22
     //
     this.plLabel22.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.plLabel22.Appearance.Options.UseFont = true;
     this.plLabel22.Location = new System.Drawing.Point(496, 107);
     this.plLabel22.Name = "plLabel22";
     this.plLabel22.Size = new System.Drawing.Size(53, 13);
     this.plLabel22.TabIndex = 244;
     this.plLabel22.Text = "Tập số từ";
     this.plLabel22.ToolTip = "Tập số (Cấp 3)";
     //
     // TenTap
     //
     this.TenTap._DataSource = null;
     this.TenTap._GetField = null;
     this.TenTap.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.TenTap.Location = new System.Drawing.Point(844, 106);
     this.TenTap.Name = "TenTap";
     this.TenTap.Properties.CloseUpKey = new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None);
     this.TenTap.Size = new System.Drawing.Size(341, 20);
     this.TenTap.TabIndex = 242;
     //
     // SoDKCBHD
     //
     this.SoDKCBHD.DataSource = null;
     this.SoDKCBHD.DisplayField = null;
     this.SoDKCBHD.Location = new System.Drawing.Point(333, 103);
     this.SoDKCBHD.Name = "SoDKCBHD";
     this.SoDKCBHD.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.SoDKCBHD.Size = new System.Drawing.Size(150, 20);
     this.SoDKCBHD.TabIndex = 241;
     this.SoDKCBHD.ValueField = null;
     //
     // plLabel20
     //
     this.plLabel20.Location = new System.Drawing.Point(266, 108);
     this.plLabel20.Name = "plLabel20";
     this.plLabel20.Size = new System.Drawing.Size(59, 13);
     this.plLabel20.TabIndex = 240;
     this.plLabel20.Text = "Số ĐKCB HD";
     this.plLabel20.ToolTip = "Số ĐKCB HD (Cấp 2)";
     //
     // LoaiLuuTru
     //
     this.LoaiLuuTru.DataSource = null;
     this.LoaiLuuTru.DisplayField = null;
     this.LoaiLuuTru.Location = new System.Drawing.Point(75, 105);
     this.LoaiLuuTru.Name = "LoaiLuuTru";
     this.LoaiLuuTru.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.LoaiLuuTru.Size = new System.Drawing.Size(185, 20);
     this.LoaiLuuTru.TabIndex = 241;
     this.LoaiLuuTru.ValueField = null;
     //
     // plLabel19
     //
     this.plLabel19.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.plLabel19.Appearance.Options.UseFont = true;
     this.plLabel19.Location = new System.Drawing.Point(4, 108);
     this.plLabel19.Name = "plLabel19";
     this.plLabel19.Size = new System.Drawing.Size(65, 13);
     this.plLabel19.TabIndex = 240;
     this.plLabel19.Text = "Loại lưu trữ";
     this.plLabel19.ToolTip = "Loại lưu trữ (cấp 2)";
     //
     // TimeslotDen
     //
     this.TimeslotDen.EditValue = new System.DateTime(2011, 12, 15, 0, 0, 0, 0);
     this.TimeslotDen.Location = new System.Drawing.Point(174, 79);
     this.TimeslotDen.Name = "TimeslotDen";
     this.TimeslotDen.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.TimeslotDen.Properties.Mask.EditMask = "HH:mm";
     this.TimeslotDen.Size = new System.Drawing.Size(86, 20);
     this.TimeslotDen.TabIndex = 239;
     //
     // xtraTabControlDetail
     //
     this.xtraTabControlDetail.Location = new System.Drawing.Point(1003, 83);
     this.xtraTabControlDetail.Name = "xtraTabControlDetail";
     this.xtraTabControlDetail.SelectedTabPage = this.xtraTabPageDetail;
     this.xtraTabControlDetail.Size = new System.Drawing.Size(10, 10);
     this.xtraTabControlDetail.TabIndex = 10;
     this.xtraTabControlDetail.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
     this.xtraTabPageDetail});
     this.xtraTabControlDetail.Visible = false;
     //
     // xtraTabPageDetail
     //
     this.xtraTabPageDetail.Name = "xtraTabPageDetail";
     this.xtraTabPageDetail.Size = new System.Drawing.Size(3, 0);
     this.xtraTabPageDetail.Text = "Post/Master";
     //
     // TimeslotTu
     //
     this.TimeslotTu.EditValue = new System.DateTime(2011, 12, 15, 0, 0, 0, 0);
     this.TimeslotTu.Location = new System.Drawing.Point(48, 79);
     this.TimeslotTu.MenuManager = this.barManager1;
     this.TimeslotTu.Name = "TimeslotTu";
     this.TimeslotTu.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.TimeslotTu.Properties.Mask.EditMask = "HH:mm";
     this.TimeslotTu.Size = new System.Drawing.Size(78, 20);
     this.TimeslotTu.TabIndex = 239;
     //
     // SoRunConLaiTu
     //
     this.SoRunConLaiTu.EditValue = new decimal(new int[] {
     0,
     0,
     0,
     0});
     this.SoRunConLaiTu.Location = new System.Drawing.Point(844, 55);
     this.SoRunConLaiTu.Name = "SoRunConLaiTu";
     this.SoRunConLaiTu.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.SoRunConLaiTu.Size = new System.Drawing.Size(67, 20);
     this.SoRunConLaiTu.TabIndex = 238;
     //
     // SoRunDaDungTu
     //
     this.SoRunDaDungTu.EditValue = new decimal(new int[] {
     0,
     0,
     0,
     0});
     this.SoRunDaDungTu.Location = new System.Drawing.Point(844, 32);
     this.SoRunDaDungTu.Name = "SoRunDaDungTu";
     this.SoRunDaDungTu.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.SoRunDaDungTu.Size = new System.Drawing.Size(67, 20);
     this.SoRunDaDungTu.TabIndex = 238;
     //
     // SoRunConLaiDen
     //
     this.SoRunConLaiDen.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.SoRunConLaiDen.EditValue = new decimal(new int[] {
     0,
     0,
     0,
     0});
     this.SoRunConLaiDen.Location = new System.Drawing.Point(934, 57);
     this.SoRunConLaiDen.Name = "SoRunConLaiDen";
     this.SoRunConLaiDen.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.SoRunConLaiDen.Size = new System.Drawing.Size(341, 20);
     this.SoRunConLaiDen.TabIndex = 238;
     //
     // SoRunDaDungDen
     //
     this.SoRunDaDungDen.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.SoRunDaDungDen.EditValue = new decimal(new int[] {
     0,
     0,
     0,
     0});
     this.SoRunDaDungDen.Location = new System.Drawing.Point(934, 30);
     this.SoRunDaDungDen.Name = "SoRunDaDungDen";
     this.SoRunDaDungDen.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.SoRunDaDungDen.Size = new System.Drawing.Size(341, 20);
     this.SoRunDaDungDen.TabIndex = 238;
     //
     // TongSoRunDen
     //
     this.TongSoRunDen.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.TongSoRunDen.EditValue = new decimal(new int[] {
     0,
     0,
     0,
     0});
     this.TongSoRunDen.Location = new System.Drawing.Point(934, 7);
     this.TongSoRunDen.Name = "TongSoRunDen";
     this.TongSoRunDen.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.TongSoRunDen.Size = new System.Drawing.Size(341, 20);
     this.TongSoRunDen.TabIndex = 238;
     //
     // TongSoRunTu
     //
     this.TongSoRunTu.EditValue = new decimal(new int[] {
     0,
     0,
     0,
     0});
     this.TongSoRunTu.Location = new System.Drawing.Point(843, 8);
     this.TongSoRunTu.Name = "TongSoRunTu";
     this.TongSoRunTu.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.TongSoRunTu.Size = new System.Drawing.Size(67, 20);
     this.TongSoRunTu.TabIndex = 238;
     //
     // BQDTTNEndDen
     //
     this.BQDTTNEndDen.EditValue = null;
     this.BQDTTNEndDen.Location = new System.Drawing.Point(687, 31);
     this.BQDTTNEndDen.Name = "BQDTTNEndDen";
     this.BQDTTNEndDen.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.BQDTTNEndDen.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.BQDTTNEndDen.Size = new System.Drawing.Size(75, 20);
     this.BQDTTNEndDen.TabIndex = 237;
     //
     // BQDTNNEndDen
     //
     this.BQDTNNEndDen.EditValue = null;
     this.BQDTNNEndDen.Location = new System.Drawing.Point(687, 53);
     this.BQDTNNEndDen.Name = "BQDTNNEndDen";
     this.BQDTNNEndDen.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.BQDTNNEndDen.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.BQDTNNEndDen.Size = new System.Drawing.Size(75, 20);
     this.BQDTNNEndDen.TabIndex = 237;
     //
     // BQDTNNEndTu
     //
     this.BQDTNNEndTu.EditValue = null;
     this.BQDTNNEndTu.Location = new System.Drawing.Point(583, 53);
     this.BQDTNNEndTu.Name = "BQDTNNEndTu";
     this.BQDTNNEndTu.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.BQDTNNEndTu.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.BQDTNNEndTu.Size = new System.Drawing.Size(74, 20);
     this.BQDTNNEndTu.TabIndex = 237;
     //
     // BQDTTNEndTu
     //
     this.BQDTTNEndTu.EditValue = null;
     this.BQDTTNEndTu.Location = new System.Drawing.Point(583, 30);
     this.BQDTTNEndTu.MenuManager = this.barManager1;
     this.BQDTTNEndTu.Name = "BQDTTNEndTu";
     this.BQDTTNEndTu.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.BQDTTNEndTu.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.BQDTTNEndTu.Size = new System.Drawing.Size(73, 20);
     this.BQDTTNEndTu.TabIndex = 237;
     //
     // PhongBan
     //
     this.PhongBan.Location = new System.Drawing.Point(333, 79);
     this.PhongBan.Name = "PhongBan";
     this.PhongBan.Size = new System.Drawing.Size(150, 20);
     this.PhongBan.TabIndex = 10;
     //
     // NamSXDen
     //
     this.NamSXDen.EditValue = new decimal(new int[] {
     0,
     0,
     0,
     0});
     this.NamSXDen.Location = new System.Drawing.Point(430, 32);
     this.NamSXDen.Name = "NamSXDen";
     this.NamSXDen.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.NamSXDen.Size = new System.Drawing.Size(55, 20);
     this.NamSXDen.TabIndex = 234;
     //
     // NamSXTu
     //
     this.NamSXTu.EditValue = new decimal(new int[] {
     0,
     0,
     0,
     0});
     this.NamSXTu.Location = new System.Drawing.Point(333, 32);
     this.NamSXTu.MenuManager = this.barManager1;
     this.NamSXTu.Name = "NamSXTu";
     this.NamSXTu.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.NamSXTu.Size = new System.Drawing.Size(69, 20);
     this.NamSXTu.TabIndex = 235;
     //
     // plLabel11
     //
     this.plLabel11.Location = new System.Drawing.Point(663, 57);
     this.plLabel11.Name = "plLabel11";
     this.plLabel11.Size = new System.Drawing.Size(18, 13);
     this.plLabel11.TabIndex = 231;
     this.plLabel11.Text = "đến";
     //
     // plLabel17
     //
     this.plLabel17.Location = new System.Drawing.Point(914, 60);
     this.plLabel17.Name = "plLabel17";
     this.plLabel17.Size = new System.Drawing.Size(18, 13);
     this.plLabel17.TabIndex = 231;
     this.plLabel17.Text = "đến";
     //
     // plLabel16
     //
     this.plLabel16.Location = new System.Drawing.Point(914, 36);
     this.plLabel16.Name = "plLabel16";
     this.plLabel16.Size = new System.Drawing.Size(18, 13);
     this.plLabel16.TabIndex = 231;
     this.plLabel16.Text = "đến";
     //
     // plLabel15
     //
     this.plLabel15.Location = new System.Drawing.Point(914, 11);
     this.plLabel15.Name = "plLabel15";
     this.plLabel15.Size = new System.Drawing.Size(18, 13);
     this.plLabel15.TabIndex = 231;
     this.plLabel15.Text = "đến";
     //
     // plLabel9
     //
     this.plLabel9.Location = new System.Drawing.Point(663, 34);
     this.plLabel9.Name = "plLabel9";
     this.plLabel9.Size = new System.Drawing.Size(18, 13);
     this.plLabel9.TabIndex = 231;
     this.plLabel9.Text = "đến";
     //
     // plLabel3
     //
     this.plLabel3.Location = new System.Drawing.Point(407, 36);
     this.plLabel3.Name = "plLabel3";
     this.plLabel3.Size = new System.Drawing.Size(18, 13);
     this.plLabel3.TabIndex = 231;
     this.plLabel3.Text = "đến";
     //
     // plLabel2
     //
     this.plLabel2.Location = new System.Drawing.Point(267, 35);
     this.plLabel2.Name = "plLabel2";
     this.plLabel2.Size = new System.Drawing.Size(50, 13);
     this.plLabel2.TabIndex = 229;
     this.plLabel2.Text = "Năm SX từ";
     this.plLabel2.ToolTip = "Năm sản xuất chương trình (Câp 1)";
     //
     // plLabel24
     //
     this.plLabel24.Location = new System.Drawing.Point(496, 82);
     this.plLabel24.Name = "plLabel24";
     this.plLabel24.Size = new System.Drawing.Size(48, 13);
     this.plLabel24.TabIndex = 232;
     this.plLabel24.Text = "Trong kho";
     this.plLabel24.ToolTip = "Bản quyền đối với đối tác nước ngoài End (Cấp 1)";
     //
     // plLabel10
     //
     this.plLabel10.Location = new System.Drawing.Point(496, 57);
     this.plLabel10.Name = "plLabel10";
     this.plLabel10.Size = new System.Drawing.Size(79, 13);
     this.plLabel10.TabIndex = 232;
     this.plLabel10.Text = "BQ DTNN End từ";
     this.plLabel10.ToolTip = "Bản quyền đối với đối tác nước ngoài End (Cấp 1)";
     //
     // plLabel8
     //
     this.plLabel8.Location = new System.Drawing.Point(495, 34);
     this.plLabel8.Name = "plLabel8";
     this.plLabel8.Size = new System.Drawing.Size(78, 13);
     this.plLabel8.TabIndex = 232;
     this.plLabel8.Text = "BQ DTTN End từ";
     this.plLabel8.ToolTip = "Bản quyền đối với đối tác trong nước End (Cấp 1)";
     //
     // plLabel14
     //
     this.plLabel14.Location = new System.Drawing.Point(768, 57);
     this.plLabel14.Name = "plLabel14";
     this.plLabel14.Size = new System.Drawing.Size(64, 13);
     this.plLabel14.TabIndex = 232;
     this.plLabel14.Text = "Số run còn lại";
     this.plLabel14.ToolTip = "Số run còn lại (Cấp 1)";
     //
     // plLabel13
     //
     this.plLabel13.Location = new System.Drawing.Point(768, 34);
     this.plLabel13.Name = "plLabel13";
     this.plLabel13.Size = new System.Drawing.Size(73, 13);
     this.plLabel13.TabIndex = 232;
     this.plLabel13.Text = "Số run đã dùng";
     this.plLabel13.ToolTip = "Số run đã dùng (Cấp 1)";
     //
     // plLabel12
     //
     this.plLabel12.Location = new System.Drawing.Point(768, 14);
     this.plLabel12.Name = "plLabel12";
     this.plLabel12.Size = new System.Drawing.Size(57, 13);
     this.plLabel12.TabIndex = 232;
     this.plLabel12.Text = "Tổng số run";
     this.plLabel12.ToolTip = "Tổng số run (Cấp 1)";
     //
     // plLabel7
     //
     this.plLabel7.Location = new System.Drawing.Point(496, 12);
     this.plLabel7.Name = "plLabel7";
     this.plLabel7.Size = new System.Drawing.Size(81, 13);
     this.plLabel7.TabIndex = 232;
     this.plLabel7.Text = "Bản quyền thuộc";
     this.plLabel7.ToolTip = "Bản quyền thuộc (Cấp 1)";
     //
     // label34
     //
     this.label34.Location = new System.Drawing.Point(267, 58);
     this.label34.Name = "label34";
     this.label34.Size = new System.Drawing.Size(60, 13);
     this.label34.TabIndex = 232;
     this.label34.Text = "ĐV cung cấp";
     this.label34.ToolTip = "Đơn vị cung cấp (Cấp 1)";
     //
     // BanQuyenThuoc
     //
     this.BanQuyenThuoc.DataSource = null;
     this.BanQuyenThuoc.DisplayField = null;
     this.BanQuyenThuoc.Location = new System.Drawing.Point(583, 8);
     this.BanQuyenThuoc.Name = "BanQuyenThuoc";
     this.BanQuyenThuoc.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.BanQuyenThuoc.Size = new System.Drawing.Size(179, 20);
     this.BanQuyenThuoc.TabIndex = 227;
     this.BanQuyenThuoc.ValueField = null;
     //
     // DonViCungCap
     //
     this.DonViCungCap.DataSource = null;
     this.DonViCungCap.DisplayField = null;
     this.DonViCungCap.Location = new System.Drawing.Point(333, 55);
     this.DonViCungCap.Name = "DonViCungCap";
     this.DonViCungCap.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.DonViCungCap.Size = new System.Drawing.Size(150, 20);
     this.DonViCungCap.TabIndex = 227;
     this.DonViCungCap.ValueField = null;
     //
     // ngayNhap
     //
     this.ngayNhap.Caption = "Từ ngày 22/02/2012 đến ngày 29/02/2012";
     this.ngayNhap.Default = ProtocolVN.Framework.Win.Trial.SelectionTypes.FromDateToDate;
     this.ngayNhap.FirstFrom = new System.DateTime(2012, 2, 22, 3, 39, 38, 125);
     this.ngayNhap.FirstTo = new System.DateTime(2012, 2, 29, 3, 39, 38, 125);
     this.ngayNhap.FromDate = new System.DateTime(2012, 2, 22, 3, 39, 38, 125);
     this.ngayNhap.Location = new System.Drawing.Point(843, 81);
     this.ngayNhap.Name = "ngayNhap";
     this.ngayNhap.ReturnType = ProtocolVN.Framework.Win.Trial.TimeType.Date;
     this.ngayNhap.SecondFrom = new System.DateTime(2012, 2, 22, 3, 39, 38, 125);
     this.ngayNhap.SecondTo = new System.DateTime(2012, 2, 29, 3, 39, 38, 125);
     this.ngayNhap.SelectedType = ProtocolVN.Framework.Win.Trial.SelectionTypes.FromDateToDate;
     this.ngayNhap.Size = new System.Drawing.Size(291, 21);
     this.ngayNhap.TabIndex = 226;
     this.ngayNhap.ToDate = new System.DateTime(2012, 2, 29, 3, 39, 38, 125);
     this.ngayNhap.Types = ((ProtocolVN.Framework.Win.Trial.SelectionTypes)(((((((((ProtocolVN.Framework.Win.Trial.SelectionTypes.OneDate | ProtocolVN.Framework.Win.Trial.SelectionTypes.OneMonth)
                 | ProtocolVN.Framework.Win.Trial.SelectionTypes.OneQuarter)
                 | ProtocolVN.Framework.Win.Trial.SelectionTypes.OneYear)
                 | ProtocolVN.Framework.Win.Trial.SelectionTypes.SixMonths)
                 | ProtocolVN.Framework.Win.Trial.SelectionTypes.FromDateToDate)
                 | ProtocolVN.Framework.Win.Trial.SelectionTypes.FromMonthToMonth)
                 | ProtocolVN.Framework.Win.Trial.SelectionTypes.FromQuarterToQuarter)
                 | ProtocolVN.Framework.Win.Trial.SelectionTypes.FromYearToYear)));
     //
     // Category
     //
     this.Category._DataSource = null;
     this.Category._GetField = null;
     this.Category.Location = new System.Drawing.Point(174, 54);
     this.Category.Name = "Category";
     this.Category.Properties.CloseUpKey = new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None);
     this.Category.Size = new System.Drawing.Size(87, 20);
     this.Category.TabIndex = 1;
     //
     // TenGoc
     //
     this.TenGoc._DataSource = null;
     this.TenGoc._GetField = null;
     this.TenGoc.Location = new System.Drawing.Point(47, 31);
     this.TenGoc.Name = "TenGoc";
     this.TenGoc.Properties.CloseUpKey = new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None);
     this.TenGoc.Size = new System.Drawing.Size(214, 20);
     this.TenGoc.TabIndex = 1;
     //
     // NoiDung
     //
     this.NoiDung._DataSource = null;
     this.NoiDung._GetField = null;
     this.NoiDung.Location = new System.Drawing.Point(48, 8);
     this.NoiDung.Name = "NoiDung";
     this.NoiDung.Properties.CloseUpKey = new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None);
     this.NoiDung.Size = new System.Drawing.Size(213, 20);
     this.NoiDung.TabIndex = 0;
     //
     // QuocGia
     //
     this.QuocGia.DataSource = null;
     this.QuocGia.DisplayField = null;
     this.QuocGia.Location = new System.Drawing.Point(333, 8);
     this.QuocGia.Name = "QuocGia";
     this.QuocGia.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.QuocGia.Size = new System.Drawing.Size(152, 20);
     this.QuocGia.TabIndex = 220;
     this.QuocGia.ValueField = null;
     //
     // TietMuc
     //
     this.TietMuc.DataSource = null;
     this.TietMuc.DisplayField = null;
     this.TietMuc.Location = new System.Drawing.Point(48, 54);
     this.TietMuc.Name = "TietMuc";
     this.TietMuc.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.TietMuc.Size = new System.Drawing.Size(78, 20);
     this.TietMuc.TabIndex = 2;
     this.TietMuc.ValueField = null;
     //
     // plLabel18
     //
     this.plLabel18.Location = new System.Drawing.Point(133, 83);
     this.plLabel18.Name = "plLabel18";
     this.plLabel18.Size = new System.Drawing.Size(20, 13);
     this.plLabel18.TabIndex = 213;
     this.plLabel18.Text = "Đến";
     this.plLabel18.ToolTip = "Nước sản xuất";
     //
     // plLabel5
     //
     this.plLabel5.Location = new System.Drawing.Point(128, 57);
     this.plLabel5.Name = "plLabel5";
     this.plLabel5.Size = new System.Drawing.Size(45, 13);
     this.plLabel5.TabIndex = 213;
     this.plLabel5.Text = "Category";
     this.plLabel5.ToolTip = "Category (Cấp 1)";
     //
     // label10
     //
     this.label10.Location = new System.Drawing.Point(267, 12);
     this.label10.Name = "label10";
     this.label10.Size = new System.Drawing.Size(40, 13);
     this.label10.TabIndex = 213;
     this.label10.Text = "Nước SX";
     this.label10.ToolTip = "Nước sản xuất (Cấp 1)";
     //
     // plLabel1
     //
     this.plLabel1.Location = new System.Drawing.Point(266, 83);
     this.plLabel1.Name = "plLabel1";
     this.plLabel1.Size = new System.Drawing.Size(51, 13);
     this.plLabel1.TabIndex = 217;
     this.plLabel1.Text = "Phòng ban";
     this.plLabel1.ToolTip = "Phòng ban (Cấp 1)";
     //
     // plLabel23
     //
     this.plLabel23.Location = new System.Drawing.Point(768, 110);
     this.plLabel23.Name = "plLabel23";
     this.plLabel23.Size = new System.Drawing.Size(37, 13);
     this.plLabel23.TabIndex = 217;
     this.plLabel23.Text = "Tên tập";
     this.plLabel23.ToolTip = "Tên tập (Cấp 3)";
     //
     // label29
     //
     this.label29.Location = new System.Drawing.Point(768, 80);
     this.label29.Name = "label29";
     this.label29.Size = new System.Drawing.Size(52, 13);
     this.label29.TabIndex = 217;
     this.label29.Text = "Ngày nhập";
     this.label29.ToolTip = "Ngày nhập thông tin chương trình  (Cấp 1)";
     //
     // plLabel6
     //
     this.plLabel6.Location = new System.Drawing.Point(4, 34);
     this.plLabel6.Name = "plLabel6";
     this.plLabel6.Size = new System.Drawing.Size(38, 13);
     this.plLabel6.TabIndex = 218;
     this.plLabel6.Text = "Tên gốc";
     this.plLabel6.ToolTip = "Tên chương trình gốc (cấp 1)";
     //
     // label3
     //
     this.label3.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.label3.Appearance.Options.UseFont = true;
     this.label3.Location = new System.Drawing.Point(3, 11);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(38, 13);
     this.label3.TabIndex = 218;
     this.label3.Text = "Tên CT";
     this.label3.ToolTip = "Tên chương trình (Cấp 1)";
     //
     // plLabel4
     //
     this.plLabel4.Location = new System.Drawing.Point(3, 83);
     this.plLabel4.Name = "plLabel4";
     this.plLabel4.Size = new System.Drawing.Size(39, 13);
     this.plLabel4.TabIndex = 219;
     this.plLabel4.Text = "Timeslot";
     this.plLabel4.ToolTip = "Timeslot (Cấp 1)";
     //
     // label5
     //
     this.label5.Location = new System.Drawing.Point(2, 57);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(40, 13);
     this.label5.TabIndex = 219;
     this.label5.Text = "Tiết mục";
     this.label5.ToolTip = "Tiết mục (Cấp 1)";
     //
     // barStaticItem1
     //
     this.barStaticItem1.AutoSize = DevExpress.XtraBars.BarStaticItemSize.None;
     this.barStaticItem1.Border = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.barStaticItem1.Id = 13;
     this.barStaticItem1.Name = "barStaticItem1";
     this.barStaticItem1.TextAlignment = System.Drawing.StringAlignment.Near;
     this.barStaticItem1.Width = 100;
     //
     // barButtonItem1
     //
     this.barButtonItem1.Caption = "barButtonItem1";
     this.barButtonItem1.Id = 14;
     this.barButtonItem1.Name = "barButtonItem1";
     //
     // barButtonItem2
     //
     this.barButtonItem2.Caption = "barButtonItem2";
     this.barButtonItem2.Id = 15;
     this.barButtonItem2.Name = "barButtonItem2";
     //
     // barButtonItem3
     //
     this.barButtonItem3.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown;
     this.barButtonItem3.Caption = "In";
     this.barButtonItem3.Id = 30;
     this.barButtonItem3.Name = "barButtonItem3";
     //
     // splitContainerControl1
     //
     this.splitContainerControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.splitContainerControl1.Location = new System.Drawing.Point(19, 181);
     this.splitContainerControl1.Name = "splitContainerControl1";
     this.splitContainerControl1.Panel1.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.splitContainerControl1.Panel1.AppearanceCaption.Options.UseFont = true;
     this.splitContainerControl1.Panel1.AppearanceCaption.Options.UseTextOptions = true;
     this.splitContainerControl1.Panel1.AppearanceCaption.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.splitContainerControl1.Panel1.Controls.Add(this.groupControlCT);
     this.splitContainerControl1.Panel1.Text = "Chương trình";
     this.splitContainerControl1.Panel2.CaptionLocation = DevExpress.Utils.Locations.Left;
     this.splitContainerControl1.Panel2.Controls.Add(this.splitContainerControl2);
     this.splitContainerControl1.Panel2.Text = "splitContainerControl1_Panel2";
     this.splitContainerControl1.Size = new System.Drawing.Size(1169, 364);
     this.splitContainerControl1.SplitterPosition = 503;
     this.splitContainerControl1.TabIndex = 4;
     this.splitContainerControl1.Text = "splitContainerControl1";
     //
     // groupControlCT
     //
     this.groupControlCT.Appearance.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(192)))));
     this.groupControlCT.Appearance.Options.UseBorderColor = true;
     this.groupControlCT.Controls.Add(this.gridControlMaster);
     this.groupControlCT.Dock = System.Windows.Forms.DockStyle.Fill;
     this.groupControlCT.Location = new System.Drawing.Point(0, 0);
     this.groupControlCT.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Flat;
     this.groupControlCT.LookAndFeel.UseDefaultLookAndFeel = false;
     this.groupControlCT.Name = "groupControlCT";
     this.groupControlCT.ShowCaption = false;
     this.groupControlCT.Size = new System.Drawing.Size(503, 364);
     this.groupControlCT.TabIndex = 10;
     this.groupControlCT.Text = "groupControl1";
     //
     // gridControlMaster
     //
     this.gridControlMaster.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("gridControlMaster.BackgroundImage")));
     this.gridControlMaster.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
     this.gridControlMaster.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gridControlMaster.Location = new System.Drawing.Point(3, 3);
     this.gridControlMaster.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.UltraFlat;
     this.gridControlMaster.MainView = this.gridViewMaster;
     this.gridControlMaster.Name = "gridControlMaster";
     this.gridControlMaster.Size = new System.Drawing.Size(497, 358);
     this.gridControlMaster.TabIndex = 9;
     this.gridControlMaster.TabStop = false;
     this.gridControlMaster.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewMaster});
     //
     // gridViewMaster
     //
     this.gridViewMaster.Appearance.GroupPanel.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Inch);
     this.gridViewMaster.Appearance.GroupPanel.Options.UseFont = true;
     this.gridViewMaster.Appearance.HeaderPanel.Options.UseTextOptions = true;
     this.gridViewMaster.Appearance.HeaderPanel.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridViewMaster.Appearance.ViewCaption.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(128)))), ((int)(((byte)(128)))));
     this.gridViewMaster.Appearance.ViewCaption.Options.UseBackColor = true;
     this.gridViewMaster.Bands.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.GridBand[] {
     this.gridBandThongTinChinh,
     this.gridBandNguonGoc,
     this.gridBandThongTinPhatSong,
     this.gridBandThongTinBan});
     this.gridViewMaster.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.gridViewMaster.Columns.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn[] {
     this.Col_CT_MaCT,
     this.Col_CT_NgayAWB,
     this.Col_CT_NgayLap,
     this.Col_CT_NguoiLap,
     this.Col_CT_PhongBan,
     this.Col_CT_NoiDung,
     this.Col_CT_TietMuc,
     this.Col_CT_TenGoc,
     this.Col_CT_DaoDien,
     this.Col_CT_DienVien,
     this.Col_CT_KHPL,
     this.Col_CT_DoiTuongKhanGia,
     this.Col_CT_TuKhoa,
     this.Col_CT_KHXK,
     this.Col_CT_TinhTrangBang,
     this.Col_CT_TomTat,
     this.Col_CT_ThanhLy,
     this.Col_CT_GhiChu,
     this.Col_CT_ThongTinBan,
     this.Col_CT_NamSX,
     this.Col_CT_Nuoc,
     this.Col_CT_DonViCungCap,
     this.Col_CT_DonViSoHuu,
     this.Col_CT_KenhHanCheBan,
     this.Col_CT_PhatSongChinh,
     this.Col_CT_TongSoRun,
     this.Col_CT_SoLanPhat,
     this.Col_CT_SoRunConLai,
     this.Col_CT_Release,
     this.Col_CT_Category,
     this.Col_CT_Ranking,
     this.Col_CT_Script,
     this.Col_CT_Photos,
     this.Col_CT_TrailerGoc,
     this.Col_CT_BanQuyenThuoc,
     this.Col_CT_BanQuyenDIDStart,
     this.Col_CT_BanQuyenDIDEnd,
     this.Col_CT_BanQuyenDTNNStart,
     this.Col_CT_BanQuyenDTNNEnd,
     this.Col_CT_BanQuyenHTV,
     this.Col_CT_MuaKem,
     this.Col_CT_PhatSongKhac,
     this.Col_CT_PhatSongLai,
     this.Col_CT_TrongKho,
     this.Col_CT_HangSanXuat});
     this.gridViewMaster.CustomizationFormBounds = new System.Drawing.Rectangle(747, 292, 215, 205);
     this.gridViewMaster.GridControl = this.gridControlMaster;
     this.gridViewMaster.GroupPanelText = "Các chương trình thỏa điều kiện tìm kiếm";
     this.gridViewMaster.IndicatorWidth = 40;
     this.gridViewMaster.Name = "gridViewMaster";
     this.gridViewMaster.OptionsLayout.Columns.AddNewColumns = false;
     this.gridViewMaster.OptionsNavigation.AutoFocusNewRow = true;
     this.gridViewMaster.OptionsNavigation.EnterMoveNextColumn = true;
     this.gridViewMaster.OptionsPrint.UsePrintStyles = true;
     this.gridViewMaster.OptionsSelection.MultiSelect = true;
     this.gridViewMaster.OptionsView.ColumnAutoWidth = false;
     this.gridViewMaster.OptionsView.EnableAppearanceEvenRow = true;
     this.gridViewMaster.OptionsView.EnableAppearanceOddRow = true;
     this.gridViewMaster.OptionsView.NewItemRowPosition = DevExpress.XtraGrid.Views.Grid.NewItemRowPosition.Bottom;
     this.gridViewMaster.OptionsView.ShowGroupPanel = false;
     this.gridViewMaster.OptionsView.ShowViewCaption = true;
     this.gridViewMaster.ViewCaption = "Chương trình (Cấp 1)";
     //
     // Col_CT_MaCT
     //
     this.Col_CT_MaCT.Caption = "Mã chương trình";
     this.Col_CT_MaCT.Name = "Col_CT_MaCT";
     this.Col_CT_MaCT.Visible = true;
     this.Col_CT_MaCT.Width = 90;
     //
     // Col_CT_NgayAWB
     //
     this.Col_CT_NgayAWB.Caption = "Ngày AWB";
     this.Col_CT_NgayAWB.Name = "Col_CT_NgayAWB";
     this.Col_CT_NgayAWB.Visible = true;
     this.Col_CT_NgayAWB.Width = 63;
     //
     // Col_CT_NgayLap
     //
     this.Col_CT_NgayLap.Caption = "Ngày lập";
     this.Col_CT_NgayLap.Name = "Col_CT_NgayLap";
     this.Col_CT_NgayLap.Visible = true;
     this.Col_CT_NgayLap.Width = 54;
     //
     // Col_CT_NguoiLap
     //
     this.Col_CT_NguoiLap.Caption = "Người lập";
     this.Col_CT_NguoiLap.Name = "Col_CT_NguoiLap";
     this.Col_CT_NguoiLap.Visible = true;
     this.Col_CT_NguoiLap.Width = 57;
     //
     // Col_CT_PhongBan
     //
     this.Col_CT_PhongBan.Caption = "Phòng ban";
     this.Col_CT_PhongBan.Name = "Col_CT_PhongBan";
     this.Col_CT_PhongBan.Visible = true;
     this.Col_CT_PhongBan.Width = 63;
     //
     // Col_CT_Category
     //
     this.Col_CT_Category.Caption = "Category";
     this.Col_CT_Category.Name = "Col_CT_Category";
     this.Col_CT_Category.Visible = true;
     this.Col_CT_Category.Width = 57;
     //
     // Col_CT_NoiDung
     //
     this.Col_CT_NoiDung.Caption = "Tên chương trình";
     this.Col_CT_NoiDung.Name = "Col_CT_NoiDung";
     this.Col_CT_NoiDung.Visible = true;
     this.Col_CT_NoiDung.Width = 107;
     //
     // Col_CT_TenGoc
     //
     this.Col_CT_TenGoc.Caption = "Tên gốc";
     this.Col_CT_TenGoc.Name = "Col_CT_TenGoc";
     this.Col_CT_TenGoc.Visible = true;
     this.Col_CT_TenGoc.Width = 50;
     //
     // Col_CT_TietMuc
     //
     this.Col_CT_TietMuc.Caption = "Tiết mục";
     this.Col_CT_TietMuc.Name = "Col_CT_TietMuc";
     this.Col_CT_TietMuc.Visible = true;
     this.Col_CT_TietMuc.Width = 65;
     //
     // Col_CT_DaoDien
     //
     this.Col_CT_DaoDien.Caption = "Đạo diễn";
     this.Col_CT_DaoDien.Name = "Col_CT_DaoDien";
     this.Col_CT_DaoDien.Visible = true;
     this.Col_CT_DaoDien.Width = 55;
     //
     // Col_CT_DienVien
     //
     this.Col_CT_DienVien.Caption = "Diễn viên";
     this.Col_CT_DienVien.Name = "Col_CT_DienVien";
     this.Col_CT_DienVien.Visible = true;
     this.Col_CT_DienVien.Width = 56;
     //
     // Col_CT_TomTat
     //
     this.Col_CT_TomTat.Caption = "Tóm tắt";
     this.Col_CT_TomTat.Name = "Col_CT_TomTat";
     this.Col_CT_TomTat.Visible = true;
     this.Col_CT_TomTat.Width = 49;
     //
     // Col_CT_DoiTuongKhanGia
     //
     this.Col_CT_DoiTuongKhanGia.Caption = "Đối tượng khán giả";
     this.Col_CT_DoiTuongKhanGia.Name = "Col_CT_DoiTuongKhanGia";
     this.Col_CT_DoiTuongKhanGia.Visible = true;
     this.Col_CT_DoiTuongKhanGia.Width = 103;
     //
     // Col_CT_KHPL
     //
     this.Col_CT_KHPL.Caption = "KHPL";
     this.Col_CT_KHPL.Name = "Col_CT_KHPL";
     this.Col_CT_KHPL.ToolTip = "Ký hiệu phân loại";
     this.Col_CT_KHPL.Visible = true;
     this.Col_CT_KHPL.Width = 36;
     //
     // Col_CT_KHXK
     //
     this.Col_CT_KHXK.Caption = "KHXK";
     this.Col_CT_KHXK.Name = "Col_CT_KHXK";
     this.Col_CT_KHXK.ToolTip = "Ký hiệu xếp kho";
     this.Col_CT_KHXK.Visible = true;
     this.Col_CT_KHXK.Width = 37;
     //
     // Col_CT_TinhTrangBang
     //
     this.Col_CT_TinhTrangBang.Caption = "Tình trạng CT";
     this.Col_CT_TinhTrangBang.Name = "Col_CT_TinhTrangBang";
     this.Col_CT_TinhTrangBang.Visible = true;
     this.Col_CT_TinhTrangBang.Width = 77;
     //
     // Col_CT_TuKhoa
     //
     this.Col_CT_TuKhoa.Caption = "Từ khóa";
     this.Col_CT_TuKhoa.Name = "Col_CT_TuKhoa";
     this.Col_CT_TuKhoa.Visible = true;
     this.Col_CT_TuKhoa.Width = 51;
     //
     // Col_CT_ThanhLy
     //
     this.Col_CT_ThanhLy.Caption = "Thanh lý";
     this.Col_CT_ThanhLy.Name = "Col_CT_ThanhLy";
     this.Col_CT_ThanhLy.Visible = true;
     this.Col_CT_ThanhLy.Width = 53;
     //
     // Col_CT_TrongKho
     //
     this.Col_CT_TrongKho.Caption = "Trong kho";
     this.Col_CT_TrongKho.Name = "Col_CT_TrongKho";
     this.Col_CT_TrongKho.Visible = true;
     //
     // Col_CT_GhiChu
     //
     this.Col_CT_GhiChu.Caption = "Ghi chú";
     this.Col_CT_GhiChu.Name = "Col_CT_GhiChu";
     this.Col_CT_GhiChu.Visible = true;
     this.Col_CT_GhiChu.Width = 47;
     //
     // Col_CT_Photos
     //
     this.Col_CT_Photos.Caption = "Photos";
     this.Col_CT_Photos.Name = "Col_CT_Photos";
     this.Col_CT_Photos.Visible = true;
     this.Col_CT_Photos.Width = 45;
     //
     // Col_CT_Ranking
     //
     this.Col_CT_Ranking.Caption = "Ranking";
     this.Col_CT_Ranking.Name = "Col_CT_Ranking";
     this.Col_CT_Ranking.Visible = true;
     this.Col_CT_Ranking.Width = 50;
     //
     // Col_CT_Script
     //
     this.Col_CT_Script.Caption = "Script";
     this.Col_CT_Script.Name = "Col_CT_Script";
     this.Col_CT_Script.Visible = true;
     this.Col_CT_Script.Width = 39;
     //
     // Col_CT_TrailerGoc
     //
     this.Col_CT_TrailerGoc.Caption = "Trailer gốc";
     this.Col_CT_TrailerGoc.Name = "Col_CT_TrailerGoc";
     this.Col_CT_TrailerGoc.Visible = true;
     this.Col_CT_TrailerGoc.Width = 62;
     //
     // Col_CT_NamSX
     //
     this.Col_CT_NamSX.Caption = "Năm SX";
     this.Col_CT_NamSX.Name = "Col_CT_NamSX";
     this.Col_CT_NamSX.Visible = true;
     this.Col_CT_NamSX.Width = 48;
     //
     // Col_CT_Nuoc
     //
     this.Col_CT_Nuoc.Caption = "Nước SX";
     this.Col_CT_Nuoc.Name = "Col_CT_Nuoc";
     this.Col_CT_Nuoc.ToolTip = "Nước sản xuất";
     this.Col_CT_Nuoc.Visible = true;
     this.Col_CT_Nuoc.Width = 52;
     //
     // Col_CT_DonViCungCap
     //
     this.Col_CT_DonViCungCap.Caption = "Đơn vị cung cấp";
     this.Col_CT_DonViCungCap.Name = "Col_CT_DonViCungCap";
     this.Col_CT_DonViCungCap.Visible = true;
     this.Col_CT_DonViCungCap.Width = 89;
     //
     // Col_CT_DonViSoHuu
     //
     this.Col_CT_DonViSoHuu.Caption = "Đơn vị sở hữu";
     this.Col_CT_DonViSoHuu.Name = "Col_CT_DonViSoHuu";
     this.Col_CT_DonViSoHuu.Visible = true;
     this.Col_CT_DonViSoHuu.Width = 79;
     //
     // Col_CT_KenhHanCheBan
     //
     this.Col_CT_KenhHanCheBan.Caption = "Kênh hạn chế bán";
     this.Col_CT_KenhHanCheBan.Name = "Col_CT_KenhHanCheBan";
     this.Col_CT_KenhHanCheBan.Visible = true;
     this.Col_CT_KenhHanCheBan.Width = 98;
     //
     // Col_CT_ThongTinBan
     //
     this.Col_CT_ThongTinBan.Caption = "Thông tin bán";
     this.Col_CT_ThongTinBan.Name = "Col_CT_ThongTinBan";
     this.Col_CT_ThongTinBan.Visible = true;
     this.Col_CT_ThongTinBan.Width = 78;
     //
     // Col_CT_BanQuyenThuoc
     //
     this.Col_CT_BanQuyenThuoc.Caption = "Bản quyền thuộc";
     this.Col_CT_BanQuyenThuoc.Name = "Col_CT_BanQuyenThuoc";
     this.Col_CT_BanQuyenThuoc.Visible = true;
     this.Col_CT_BanQuyenThuoc.Width = 93;
     //
     // Col_CT_BanQuyenDIDStart
     //
     this.Col_CT_BanQuyenDIDStart.Caption = "Bản quyền DTTN Start";
     this.Col_CT_BanQuyenDIDStart.Name = "Col_CT_BanQuyenDIDStart";
     this.Col_CT_BanQuyenDIDStart.ToolTip = "Bản quyền đối tác trong nước Start";
     this.Col_CT_BanQuyenDIDStart.Visible = true;
     this.Col_CT_BanQuyenDIDStart.Width = 119;
     //
     // Col_CT_BanQuyenDIDEnd
     //
     this.Col_CT_BanQuyenDIDEnd.Caption = "Bản quyền DTTN End";
     this.Col_CT_BanQuyenDIDEnd.Name = "Col_CT_BanQuyenDIDEnd";
     this.Col_CT_BanQuyenDIDEnd.ToolTip = "Bản quyền đối tác trong nước End";
     this.Col_CT_BanQuyenDIDEnd.Visible = true;
     this.Col_CT_BanQuyenDIDEnd.Width = 113;
     //
     // Col_CT_BanQuyenDTNNStart
     //
     this.Col_CT_BanQuyenDTNNStart.Caption = "Bản quyền ĐTNN Start";
     this.Col_CT_BanQuyenDTNNStart.Name = "Col_CT_BanQuyenDTNNStart";
     this.Col_CT_BanQuyenDTNNStart.ToolTip = "Bản quyền  đối tác nước ngoài Start";
     this.Col_CT_BanQuyenDTNNStart.Visible = true;
     this.Col_CT_BanQuyenDTNNStart.Width = 121;
     //
     // Col_CT_BanQuyenDTNNEnd
     //
     this.Col_CT_BanQuyenDTNNEnd.Caption = "Bản quyền ĐTNN End";
     this.Col_CT_BanQuyenDTNNEnd.Name = "Col_CT_BanQuyenDTNNEnd";
     this.Col_CT_BanQuyenDTNNEnd.ToolTip = "Bản quyền đối tác nước ngoài End";
     this.Col_CT_BanQuyenDTNNEnd.Visible = true;
     this.Col_CT_BanQuyenDTNNEnd.Width = 115;
     //
     // Col_CT_BanQuyenHTV
     //
     this.Col_CT_BanQuyenHTV.Caption = "Bản quyền HTV";
     this.Col_CT_BanQuyenHTV.Name = "Col_CT_BanQuyenHTV";
     this.Col_CT_BanQuyenHTV.Visible = true;
     this.Col_CT_BanQuyenHTV.Width = 85;
     //
     // Col_CT_MuaKem
     //
     this.Col_CT_MuaKem.Caption = "Mua kèm";
     this.Col_CT_MuaKem.Name = "Col_CT_MuaKem";
     this.Col_CT_MuaKem.Visible = true;
     this.Col_CT_MuaKem.Width = 54;
     //
     // Col_CT_PhatSongChinh
     //
     this.Col_CT_PhatSongChinh.Caption = "Thời gian P/S chính";
     this.Col_CT_PhatSongChinh.Name = "Col_CT_PhatSongChinh";
     this.Col_CT_PhatSongChinh.ToolTip = "Những ngày phát lần đầu tương ứng trên các đài";
     this.Col_CT_PhatSongChinh.Visible = true;
     this.Col_CT_PhatSongChinh.Width = 102;
     //
     // Col_CT_PhatSongLai
     //
     this.Col_CT_PhatSongLai.Caption = "Thời gian P/S lại";
     this.Col_CT_PhatSongLai.Name = "Col_CT_PhatSongLai";
     this.Col_CT_PhatSongLai.ToolTip = "Những ngày phát lần đầu (nhưng phát lại) tương ứng trên các đài";
     this.Col_CT_PhatSongLai.Visible = true;
     this.Col_CT_PhatSongLai.Width = 87;
     //
     // Col_CT_PhatSongKhac
     //
     this.Col_CT_PhatSongKhac.Caption = "Thời gian P/S trên kênh khác";
     this.Col_CT_PhatSongKhac.Name = "Col_CT_PhatSongKhac";
     this.Col_CT_PhatSongKhac.ToolTip = "Thời gian phát sóng trên kênh khác";
     this.Col_CT_PhatSongKhac.Visible = true;
     this.Col_CT_PhatSongKhac.Width = 148;
     //
     // Col_CT_TongSoRun
     //
     this.Col_CT_TongSoRun.Caption = "Tổng số Run";
     this.Col_CT_TongSoRun.Name = "Col_CT_TongSoRun";
     this.Col_CT_TongSoRun.Visible = true;
     this.Col_CT_TongSoRun.Width = 72;
     //
     // Col_CT_SoLanPhat
     //
     this.Col_CT_SoLanPhat.Caption = "Tồng số lần đã phát (đã Run)";
     this.Col_CT_SoLanPhat.Name = "Col_CT_SoLanPhat";
     this.Col_CT_SoLanPhat.Visible = true;
     this.Col_CT_SoLanPhat.Width = 152;
     //
     // Col_CT_SoRunConLai
     //
     this.Col_CT_SoRunConLai.Caption = "Số Run còn lại";
     this.Col_CT_SoRunConLai.Name = "Col_CT_SoRunConLai";
     this.Col_CT_SoRunConLai.Visible = true;
     this.Col_CT_SoRunConLai.Width = 79;
     //
     // Col_CT_Release
     //
     this.Col_CT_Release.Caption = "Release (Số ngày)";
     this.Col_CT_Release.Name = "Col_CT_Release";
     this.Col_CT_Release.Visible = true;
     this.Col_CT_Release.Width = 100;
     //
     // splitContainerControl2
     //
     this.splitContainerControl2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.splitContainerControl2.Horizontal = false;
     this.splitContainerControl2.Location = new System.Drawing.Point(0, 0);
     this.splitContainerControl2.Name = "splitContainerControl2";
     this.splitContainerControl2.Panel1.AppearanceCaption.Options.UseTextOptions = true;
     this.splitContainerControl2.Panel1.AppearanceCaption.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.splitContainerControl2.Panel1.Controls.Add(this.groupControlPM);
     this.splitContainerControl2.Panel1.Text = "Post/Master";
     this.splitContainerControl2.Panel2.AppearanceCaption.Options.UseTextOptions = true;
     this.splitContainerControl2.Panel2.AppearanceCaption.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.splitContainerControl2.Panel2.Controls.Add(this.groupControlBM);
     this.splitContainerControl2.Panel2.Text = "Biên mục";
     this.splitContainerControl2.Size = new System.Drawing.Size(660, 364);
     this.splitContainerControl2.SplitterPosition = 150;
     this.splitContainerControl2.TabIndex = 10;
     this.splitContainerControl2.Text = "splitContainerControl2";
     //
     // groupControlPM
     //
     this.groupControlPM.Appearance.BorderColor = System.Drawing.Color.Navy;
     this.groupControlPM.Appearance.Options.UseBorderColor = true;
     this.groupControlPM.Controls.Add(this.gridControlDetail);
     this.groupControlPM.Dock = System.Windows.Forms.DockStyle.Fill;
     this.groupControlPM.Location = new System.Drawing.Point(0, 0);
     this.groupControlPM.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Flat;
     this.groupControlPM.LookAndFeel.UseDefaultLookAndFeel = false;
     this.groupControlPM.Name = "groupControlPM";
     this.groupControlPM.ShowCaption = false;
     this.groupControlPM.Size = new System.Drawing.Size(660, 150);
     this.groupControlPM.TabIndex = 10;
     this.groupControlPM.Text = "groupControl1";
     //
     // groupControlBM
     //
     this.groupControlBM.Appearance.BorderColor = System.Drawing.Color.Navy;
     this.groupControlBM.Appearance.Options.UseBorderColor = true;
     this.groupControlBM.Controls.Add(this.gridControlBienMuc);
     this.groupControlBM.Dock = System.Windows.Forms.DockStyle.Fill;
     this.groupControlBM.Location = new System.Drawing.Point(0, 0);
     this.groupControlBM.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Flat;
     this.groupControlBM.LookAndFeel.UseDefaultLookAndFeel = false;
     this.groupControlBM.Name = "groupControlBM";
     this.groupControlBM.ShowCaption = false;
     this.groupControlBM.Size = new System.Drawing.Size(660, 208);
     this.groupControlBM.TabIndex = 10;
     this.groupControlBM.Text = "groupControl1";
     //
     // gridControlBienMuc
     //
     this.gridControlBienMuc.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("gridControlBienMuc.BackgroundImage")));
     this.gridControlBienMuc.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
     this.gridControlBienMuc.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gridControlBienMuc.Location = new System.Drawing.Point(3, 3);
     this.gridControlBienMuc.MainView = this.gridViewBienMuc;
     this.gridControlBienMuc.MenuManager = this.barManager1;
     this.gridControlBienMuc.Name = "gridControlBienMuc";
     this.gridControlBienMuc.Size = new System.Drawing.Size(654, 202);
     this.gridControlBienMuc.TabIndex = 1;
     this.gridControlBienMuc.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewBienMuc});
     //
     // gridViewBienMuc
     //
     this.gridViewBienMuc.Appearance.HeaderPanel.Options.UseTextOptions = true;
     this.gridViewBienMuc.Appearance.HeaderPanel.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridViewBienMuc.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.Col_BM_ThanhLy,
     this.Col_BM_MaBang,
     this.Col_BM_TapSo,
     this.Col_BM_TenTap,
     this.Col_BM_SoBang,
     this.Col_BM_ThongSo,
     this.Col_BM_ThoiLuong,
     this.Col_BM_SoDKCBHD,
     this.Col_BM_NoiLuuTru});
     this.gridViewBienMuc.GridControl = this.gridControlBienMuc;
     this.gridViewBienMuc.IndicatorWidth = 40;
     this.gridViewBienMuc.Name = "gridViewBienMuc";
     this.gridViewBienMuc.OptionsBehavior.Editable = false;
     this.gridViewBienMuc.OptionsLayout.Columns.AddNewColumns = false;
     this.gridViewBienMuc.OptionsNavigation.AutoFocusNewRow = true;
     this.gridViewBienMuc.OptionsNavigation.EnterMoveNextColumn = true;
     this.gridViewBienMuc.OptionsPrint.UsePrintStyles = true;
     this.gridViewBienMuc.OptionsView.ColumnAutoWidth = false;
     this.gridViewBienMuc.OptionsView.EnableAppearanceEvenRow = true;
     this.gridViewBienMuc.OptionsView.EnableAppearanceOddRow = true;
     this.gridViewBienMuc.OptionsView.NewItemRowPosition = DevExpress.XtraGrid.Views.Grid.NewItemRowPosition.Bottom;
     this.gridViewBienMuc.OptionsView.ShowGroupedColumns = true;
     this.gridViewBienMuc.OptionsView.ShowGroupPanel = false;
     this.gridViewBienMuc.OptionsView.ShowViewCaption = true;
     this.gridViewBienMuc.ViewCaption = "Biên Mục (Cấp 3)";
     //
     // Col_BM_ThanhLy
     //
     this.Col_BM_ThanhLy.Caption = "Thanh lý";
     this.Col_BM_ThanhLy.Name = "Col_BM_ThanhLy";
     this.Col_BM_ThanhLy.Visible = true;
     this.Col_BM_ThanhLy.VisibleIndex = 0;
     this.Col_BM_ThanhLy.Width = 53;
     //
     // Col_BM_MaBang
     //
     this.Col_BM_MaBang.Caption = "Mã băng";
     this.Col_BM_MaBang.Name = "Col_BM_MaBang";
     this.Col_BM_MaBang.Visible = true;
     this.Col_BM_MaBang.VisibleIndex = 1;
     this.Col_BM_MaBang.Width = 53;
     //
     // Col_BM_TapSo
     //
     this.Col_BM_TapSo.Caption = "Tập số";
     this.Col_BM_TapSo.Name = "Col_BM_TapSo";
     this.Col_BM_TapSo.Visible = true;
     this.Col_BM_TapSo.VisibleIndex = 2;
     this.Col_BM_TapSo.Width = 44;
     //
     // Col_BM_TenTap
     //
     this.Col_BM_TenTap.Caption = "Tên tập";
     this.Col_BM_TenTap.Name = "Col_BM_TenTap";
     this.Col_BM_TenTap.Visible = true;
     this.Col_BM_TenTap.VisibleIndex = 3;
     this.Col_BM_TenTap.Width = 49;
     //
     // Col_BM_SoBang
     //
     this.Col_BM_SoBang.Caption = "Số băng";
     this.Col_BM_SoBang.Name = "Col_BM_SoBang";
     this.Col_BM_SoBang.Visible = true;
     this.Col_BM_SoBang.VisibleIndex = 4;
     this.Col_BM_SoBang.Width = 51;
     //
     // Col_BM_ThongSo
     //
     this.Col_BM_ThongSo.Caption = "Thông số";
     this.Col_BM_ThongSo.Name = "Col_BM_ThongSo";
     this.Col_BM_ThongSo.Visible = true;
     this.Col_BM_ThongSo.VisibleIndex = 5;
     this.Col_BM_ThongSo.Width = 56;
     //
     // Col_BM_ThoiLuong
     //
     this.Col_BM_ThoiLuong.Caption = "Thời lượng";
     this.Col_BM_ThoiLuong.Name = "Col_BM_ThoiLuong";
     this.Col_BM_ThoiLuong.Visible = true;
     this.Col_BM_ThoiLuong.VisibleIndex = 6;
     this.Col_BM_ThoiLuong.Width = 62;
     //
     // Col_BM_SoDKCBHD
     //
     this.Col_BM_SoDKCBHD.Caption = "Số ĐKCB HD";
     this.Col_BM_SoDKCBHD.Name = "Col_BM_SoDKCBHD";
     this.Col_BM_SoDKCBHD.Visible = true;
     this.Col_BM_SoDKCBHD.VisibleIndex = 7;
     this.Col_BM_SoDKCBHD.Width = 71;
     //
     // Col_BM_NoiLuuTru
     //
     this.Col_BM_NoiLuuTru.Caption = "Nơi lưu trữ";
     this.Col_BM_NoiLuuTru.Name = "Col_BM_NoiLuuTru";
     this.Col_BM_NoiLuuTru.Visible = true;
     this.Col_BM_NoiLuuTru.VisibleIndex = 8;
     this.Col_BM_NoiLuuTru.Width = 63;
     //
     // Col_CT_HangSanXuat
     //
     this.Col_CT_HangSanXuat.Caption = "Hãng sản xuất";
     this.Col_CT_HangSanXuat.Name = "Col_CT_HangSanXuat";
     this.Col_CT_HangSanXuat.Visible = true;
     //
     // gridBandThongTinChinh
     //
     this.gridBandThongTinChinh.AppearanceHeader.Options.UseTextOptions = true;
     this.gridBandThongTinChinh.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridBandThongTinChinh.Caption = "Thông tin chính";
     this.gridBandThongTinChinh.Columns.Add(this.Col_CT_MaCT);
     this.gridBandThongTinChinh.Columns.Add(this.Col_CT_NgayAWB);
     this.gridBandThongTinChinh.Columns.Add(this.Col_CT_NgayLap);
     this.gridBandThongTinChinh.Columns.Add(this.Col_CT_NguoiLap);
     this.gridBandThongTinChinh.Columns.Add(this.Col_CT_PhongBan);
     this.gridBandThongTinChinh.Columns.Add(this.Col_CT_Category);
     this.gridBandThongTinChinh.Columns.Add(this.Col_CT_NoiDung);
     this.gridBandThongTinChinh.Columns.Add(this.Col_CT_TenGoc);
     this.gridBandThongTinChinh.Columns.Add(this.Col_CT_TietMuc);
     this.gridBandThongTinChinh.Columns.Add(this.Col_CT_DaoDien);
     this.gridBandThongTinChinh.Columns.Add(this.Col_CT_DienVien);
     this.gridBandThongTinChinh.Columns.Add(this.Col_CT_TomTat);
     this.gridBandThongTinChinh.Columns.Add(this.Col_CT_DoiTuongKhanGia);
     this.gridBandThongTinChinh.Columns.Add(this.Col_CT_KHPL);
     this.gridBandThongTinChinh.Columns.Add(this.Col_CT_KHXK);
     this.gridBandThongTinChinh.Columns.Add(this.Col_CT_TinhTrangBang);
     this.gridBandThongTinChinh.Columns.Add(this.Col_CT_TuKhoa);
     this.gridBandThongTinChinh.Columns.Add(this.Col_CT_ThanhLy);
     this.gridBandThongTinChinh.Columns.Add(this.Col_CT_TrongKho);
     this.gridBandThongTinChinh.Columns.Add(this.Col_CT_GhiChu);
     this.gridBandThongTinChinh.Columns.Add(this.Col_CT_Photos);
     this.gridBandThongTinChinh.Columns.Add(this.Col_CT_Ranking);
     this.gridBandThongTinChinh.Columns.Add(this.Col_CT_Script);
     this.gridBandThongTinChinh.Columns.Add(this.Col_CT_TrailerGoc);
     this.gridBandThongTinChinh.Name = "gridBandThongTinChinh";
     this.gridBandThongTinChinh.Width = 1441;
     //
     // gridBandNguonGoc
     //
     this.gridBandNguonGoc.AppearanceHeader.Options.UseTextOptions = true;
     this.gridBandNguonGoc.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridBandNguonGoc.Caption = "Nguồn gốc";
     this.gridBandNguonGoc.Children.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.GridBand[] {
     this.gridBand1,
     this.gridBand2});
     this.gridBandNguonGoc.Name = "gridBandNguonGoc";
     this.gridBandNguonGoc.Width = 1165;
     //
     // gridBand1
     //
     this.gridBand1.AppearanceHeader.Options.UseTextOptions = true;
     this.gridBand1.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridBand1.Caption = "Thông tin sở hữu";
     this.gridBand1.Columns.Add(this.Col_CT_NamSX);
     this.gridBand1.Columns.Add(this.Col_CT_Nuoc);
     this.gridBand1.Columns.Add(this.Col_CT_DonViCungCap);
     this.gridBand1.Columns.Add(this.Col_CT_DonViSoHuu);
     this.gridBand1.Columns.Add(this.Col_CT_KenhHanCheBan);
     this.gridBand1.Columns.Add(this.Col_CT_HangSanXuat);
     this.gridBand1.Columns.Add(this.Col_CT_ThongTinBan);
     this.gridBand1.Name = "gridBand1";
     this.gridBand1.Width = 519;
     //
     // gridBand2
     //
     this.gridBand2.AppearanceHeader.Options.UseTextOptions = true;
     this.gridBand2.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridBand2.Caption = "Thời hạn bản quyền";
     this.gridBand2.Columns.Add(this.Col_CT_BanQuyenThuoc);
     this.gridBand2.Columns.Add(this.Col_CT_BanQuyenDIDStart);
     this.gridBand2.Columns.Add(this.Col_CT_BanQuyenDIDEnd);
     this.gridBand2.Columns.Add(this.Col_CT_BanQuyenDTNNStart);
     this.gridBand2.Columns.Add(this.Col_CT_BanQuyenDTNNEnd);
     this.gridBand2.Columns.Add(this.Col_CT_BanQuyenHTV);
     this.gridBand2.Name = "gridBand2";
     this.gridBand2.Width = 646;
     //
     // gridBandThongTinPhatSong
     //
     this.gridBandThongTinPhatSong.AppearanceHeader.Options.UseTextOptions = true;
     this.gridBandThongTinPhatSong.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridBandThongTinPhatSong.Caption = "Thông tin phát sóng";
     this.gridBandThongTinPhatSong.Columns.Add(this.Col_CT_MuaKem);
     this.gridBandThongTinPhatSong.Columns.Add(this.Col_CT_PhatSongChinh);
     this.gridBandThongTinPhatSong.Columns.Add(this.Col_CT_PhatSongLai);
     this.gridBandThongTinPhatSong.Columns.Add(this.Col_CT_PhatSongKhac);
     this.gridBandThongTinPhatSong.Columns.Add(this.Col_CT_TongSoRun);
     this.gridBandThongTinPhatSong.Columns.Add(this.Col_CT_SoLanPhat);
     this.gridBandThongTinPhatSong.Columns.Add(this.Col_CT_SoRunConLai);
     this.gridBandThongTinPhatSong.Columns.Add(this.Col_CT_Release);
     this.gridBandThongTinPhatSong.Name = "gridBandThongTinPhatSong";
     this.gridBandThongTinPhatSong.Width = 794;
     //
     // gridBandThongTinBan
     //
     this.gridBandThongTinBan.AppearanceHeader.Options.UseTextOptions = true;
     this.gridBandThongTinBan.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridBandThongTinBan.Caption = "Thông tin bán";
     this.gridBandThongTinBan.Name = "gridBandThongTinBan";
     this.gridBandThongTinBan.OptionsBand.ShowInCustomizationForm = false;
     this.gridBandThongTinBan.Visible = false;
     this.gridBandThongTinBan.Width = 67;
     //
     // Col_PM_TienDo
     //
     this.Col_PM_TienDo.Caption = "Tiến độ hậu kỳ";
     this.Col_PM_TienDo.Name = "Col_PM_TienDo";
     this.Col_PM_TienDo.Visible = true;
     this.Col_PM_TienDo.VisibleIndex = 16;
     //
     // frmChuongTrinhSearchMultiQL
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(1188, 545);
     this.Controls.Add(this.splitContainerControl1);
     this.Controls.Add(this.dockPanelSimple);
     this.Controls.Add(this.hideContainerLeft);
     this.Controls.Add(this.barDockControlLeft);
     this.Controls.Add(this.barDockControlRight);
     this.Controls.Add(this.barDockControlBottom);
     this.Controls.Add(this.barDockControlTop);
     this.Name = "frmChuongTrinhSearchMultiQL";
     this.ShowInTaskbar = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Tra cứu chương trình";
     ((System.ComponentModel.ISupportInitialize)(this.gridControlDetail)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewDetail)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.barManager1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.popupMenu1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.popupMenuFilter)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dockManager1)).EndInit();
     this.hideContainerLeft.ResumeLayout(false);
     this.dockPanelAdvance.ResumeLayout(false);
     this.dockPanel2_Container.ResumeLayout(false);
     this.dockPanelSimple.ResumeLayout(false);
     this.dockPanel1_Container.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.popupControlContainerFilter)).EndInit();
     this.popupControlContainerFilter.ResumeLayout(false);
     this.popupControlContainerFilter.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.TrongKho)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TapSoDen.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TapSoTu.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TenTap.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.SoDKCBHD.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.LoaiLuuTru.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TimeslotDen.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControlDetail)).EndInit();
     this.xtraTabControlDetail.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.TimeslotTu.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.SoRunConLaiTu.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.SoRunDaDungTu.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.SoRunConLaiDen.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.SoRunDaDungDen.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TongSoRunDen.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TongSoRunTu.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.BQDTTNEndDen.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.BQDTTNEndDen.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.BQDTNNEndDen.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.BQDTNNEndDen.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.BQDTNNEndTu.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.BQDTNNEndTu.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.BQDTTNEndTu.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.BQDTTNEndTu.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.NamSXDen.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.NamSXTu.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.BanQuyenThuoc.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DonViCungCap.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Category.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TenGoc.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.NoiDung.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.QuocGia.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TietMuc.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl1)).EndInit();
     this.splitContainerControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControlCT)).EndInit();
     this.groupControlCT.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMaster)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMaster)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl2)).EndInit();
     this.splitContainerControl2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControlPM)).EndInit();
     this.groupControlPM.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControlBM)).EndInit();
     this.groupControlBM.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlBienMuc)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewBienMuc)).EndInit();
     this.ResumeLayout(false);
 }
コード例 #9
0
 private void TaoCot_DataGridView(List <LopHoc_PlusDTO> _lstLopHoc)
 {
     try
     {
         foreach (var item_lh in _lstLopHoc)
         {
             DevExpress.XtraGrid.Views.BandedGrid.GridBand         gridBandLop_0          = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
             DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn gridColumnLop_0_ca     = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
             DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn gridColumnLop_0_phong  = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
             DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn gridColumnLop_0_ghichu = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
             //================
             this.bandedGridViewDataBC.Bands.Add(gridBandLop_0);
             this.bandedGridViewDataBC.Columns.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn[] { gridColumnLop_0_ca, gridColumnLop_0_phong, gridColumnLop_0_ghichu });
             //=================
             gridBandLop_0.AppearanceHeader.Font                   = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
             gridBandLop_0.AppearanceHeader.Options.UseFont        = true;
             gridBandLop_0.AppearanceHeader.Options.UseTextOptions = true;
             gridBandLop_0.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
             gridBandLop_0.Caption = item_lh.TenLopHoc;
             gridBandLop_0.Columns.Add(gridColumnLop_0_ca);
             gridBandLop_0.Columns.Add(gridColumnLop_0_phong);
             gridBandLop_0.Columns.Add(gridColumnLop_0_ghichu);
             gridBandLop_0.Name         = item_lh.LopHocId.ToString();
             gridBandLop_0.VisibleIndex = 1;
             gridBandLop_0.Width        = 480;
             // gridColumnLop_0_ca
             gridColumnLop_0_ca.AppearanceCell.Font                     = new System.Drawing.Font("Tahoma", 9.75F);
             gridColumnLop_0_ca.AppearanceCell.Options.UseFont          = true;
             gridColumnLop_0_ca.AppearanceHeader.Font                   = new System.Drawing.Font("Tahoma", 9.75F);
             gridColumnLop_0_ca.AppearanceHeader.ForeColor              = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(192)))));
             gridColumnLop_0_ca.AppearanceHeader.Options.UseFont        = true;
             gridColumnLop_0_ca.AppearanceHeader.Options.UseForeColor   = true;
             gridColumnLop_0_ca.AppearanceHeader.Options.UseTextOptions = true;
             gridColumnLop_0_ca.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
             gridColumnLop_0_ca.Caption   = "Ca/tiết học";
             gridColumnLop_0_ca.FieldName = "TenCaHocFull_" + item_lh.LopHocId.ToString();
             gridColumnLop_0_ca.Name      = "gridColumnLop_" + item_lh.LopHocId.ToString() + "_ca";
             gridColumnLop_0_ca.OptionsColumn.AllowEdit = false;
             gridColumnLop_0_ca.OptionsColumn.ReadOnly  = true;
             gridColumnLop_0_ca.Visible = true;
             gridColumnLop_0_ca.Width   = 150;
             // gridColumnLop_0_phong
             gridColumnLop_0_phong.AppearanceCell.Font                     = new System.Drawing.Font("Tahoma", 9.75F);
             gridColumnLop_0_phong.AppearanceCell.Options.UseFont          = true;
             gridColumnLop_0_phong.AppearanceHeader.Font                   = new System.Drawing.Font("Tahoma", 9.75F);
             gridColumnLop_0_phong.AppearanceHeader.ForeColor              = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(192)))));
             gridColumnLop_0_phong.AppearanceHeader.Options.UseFont        = true;
             gridColumnLop_0_phong.AppearanceHeader.Options.UseForeColor   = true;
             gridColumnLop_0_phong.AppearanceHeader.Options.UseTextOptions = true;
             gridColumnLop_0_phong.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
             gridColumnLop_0_phong.Caption   = "Phòng học";
             gridColumnLop_0_phong.FieldName = "TenPhongHoc_" + item_lh.LopHocId.ToString();
             gridColumnLop_0_phong.Name      = "gridColumnPhong_" + item_lh.LopHocId.ToString() + "_ca";
             gridColumnLop_0_phong.OptionsColumn.AllowEdit = false;
             gridColumnLop_0_phong.OptionsColumn.ReadOnly  = true;
             gridColumnLop_0_phong.Visible = true;
             gridColumnLop_0_phong.Width   = 150;
             //
             // gridColumnLop_0_gvchinh
             //
             gridColumnLop_0_ghichu.AppearanceCell.Font                     = new System.Drawing.Font("Tahoma", 9.75F);
             gridColumnLop_0_ghichu.AppearanceCell.Options.UseFont          = true;
             gridColumnLop_0_ghichu.AppearanceHeader.Font                   = new System.Drawing.Font("Tahoma", 9.75F);
             gridColumnLop_0_ghichu.AppearanceHeader.ForeColor              = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(192)))));
             gridColumnLop_0_ghichu.AppearanceHeader.Options.UseFont        = true;
             gridColumnLop_0_ghichu.AppearanceHeader.Options.UseForeColor   = true;
             gridColumnLop_0_ghichu.AppearanceHeader.Options.UseTextOptions = true;
             gridColumnLop_0_ghichu.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
             gridColumnLop_0_ghichu.Caption   = "Ghi chú";
             gridColumnLop_0_ghichu.FieldName = "GhiChu_" + item_lh.LopHocId.ToString();
             gridColumnLop_0_ghichu.Name      = "gridColumnGhiChuLop_" + item_lh.LopHocId.ToString();
             gridColumnLop_0_ghichu.OptionsColumn.AllowEdit = false;
             gridColumnLop_0_ghichu.OptionsColumn.ReadOnly  = true;
             gridColumnLop_0_ghichu.Visible = true;
             gridColumnLop_0_ghichu.Width   = 180;
         }
     }
     catch (Exception ex)
     {
         O2S_Common.Logging.LogSystem.Error(ex);
     }
 }
コード例 #10
0
ファイル: Form2Print.cs プロジェクト: github188/myitoppsp
        private void Form1Print_Load(object sender, EventArgs e)
        {
            if (!isselect)
            {
                barButtonItem4.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
            }
            if (!print)
            {
                barButtonItem1.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
            }


            gridControl1.DataSource             = GridDataTable;
            this.bandedGridView1.GroupPanelText = this.Text;
            this.bandedGridView1.OptionsView.ColumnAutoWidth = false;

            //int numi = 0;

            //DevExpress.XtraGrid.Views.BandedGrid.GridBand[] gridBandDate = new DevExpress.XtraGrid.Views.BandedGrid.GridBand[listCount * 2];
            //DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn[] gridColumn = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn[listCount * 2];
            foreach (DataColumn dc in GridDataTable.Columns)
            {
                if (dc.ColumnName.IndexOf("年") > 0)
                {
                    DevExpress.XtraGrid.Views.BandedGrid.GridBand gbi = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
                    gbi.Caption = dc.ColumnName.Replace("年", "");
                    gbi.Name    = dc.ColumnName;
                    gbi.Width   = 75;
                    gbi.AppearanceHeader.Options.UseTextOptions = true;
                    gbi.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
                    gridBand7.Children.Add(gbi);

                    DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn gridColumn = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
                    gridColumn.Caption   = dc.ColumnName;
                    gridColumn.FieldName = dc.ColumnName;
                    gridColumn.Name      = "Column" + dc.ColumnName;
                    gridColumn.Visible   = true;
                    gridColumn.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
                    //gridColumn.DisplayFormat.FormatString = "n2";
                    //gridColumn.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
                    bandedGridView1.Columns.Add(gridColumn);
                    gbi.Columns.Add(gridColumn);
                }


                if (dc.ColumnName.IndexOf("度") > 0)
                {
                    DevExpress.XtraGrid.Views.BandedGrid.GridBand gbi = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
                    gbi.Caption = dc.ColumnName.Replace("度", "");
                    gbi.Name    = dc.ColumnName;
                    gbi.Width   = 75;
                    gbi.AppearanceHeader.Options.UseTextOptions = true;
                    gbi.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
                    gridBand8.Children.Add(gbi);

                    DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn gridColumn = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
                    gridColumn.Caption   = dc.ColumnName;
                    gridColumn.FieldName = dc.ColumnName;
                    gridColumn.Name      = "Column" + dc.ColumnName;
                    gridColumn.Visible   = true;
                    gridColumn.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;;
                    //gridColumn.DisplayFormat.FormatString = "n2";
                    //gridColumn.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
                    bandedGridView1.Columns.Add(gridColumn);
                    gbi.Columns.Add(gridColumn);
                }


                if (dc.Caption == "总规模")//.IndexOf("备注") > 0)
                {
                    DevExpress.XtraGrid.Views.BandedGrid.GridBand gbi = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
                    gbi.Caption = dc.Caption;
                    gbi.Name    = dc.ColumnName;
                    gbi.AppearanceHeader.Options.UseTextOptions = true;
                    gbi.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
                    gridBand7.Children.Add(gbi);

                    DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn gridColumn = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
                    gridColumn.Caption   = dc.Caption;
                    gridColumn.FieldName = dc.ColumnName;
                    gridColumn.Name      = "Column" + dc.ColumnName;
                    gridColumn.Visible   = true;
                    gridColumn.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;;
                    //gridColumn.DisplayFormat.FormatString = "n2";
                    //gridColumn.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
                    bandedGridView1.Columns.Add(gridColumn);
                    gbi.Columns.Add(gridColumn);
                }

                if (dc.Caption == "总投资")//.IndexOf("备注") > 0)
                {
                    DevExpress.XtraGrid.Views.BandedGrid.GridBand gbi = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
                    gbi.Caption = dc.Caption;
                    gbi.Name    = dc.ColumnName;
                    gbi.Width   = 75;
                    gbi.AppearanceHeader.Options.UseTextOptions = true;
                    gbi.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
                    gridBand8.Children.Add(gbi);

                    DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn gridColumn = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
                    gridColumn.Caption   = dc.Caption;
                    gridColumn.FieldName = dc.ColumnName;
                    gridColumn.Name      = "Column" + dc.ColumnName;
                    gridColumn.Visible   = true;
                    gridColumn.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;;
                    //gridColumn.DisplayFormat.FormatString = "n2";
                    //gridColumn.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
                    bandedGridView1.Columns.Add(gridColumn);
                    gbi.Columns.Add(gridColumn);
                }

                if (dc.Caption == "备注")//.IndexOf("备注") > 0)
                {
                    DevExpress.XtraGrid.Views.BandedGrid.GridBand gbi = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
                    gbi.Caption = dc.Caption;
                    gbi.Name    = dc.ColumnName;
                    gbi.Width   = 75;
                    gbi.AppearanceHeader.Options.UseTextOptions = true;
                    gbi.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
                    gridBand8.Children.Add(gbi);

                    DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn gridColumn = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
                    gridColumn.Caption    = dc.Caption;
                    gridColumn.FieldName  = dc.ColumnName;
                    gridColumn.Name       = "Column" + dc.ColumnName;
                    gridColumn.ColumnEdit = this.repositoryItemMemoEdit1;
                    gridColumn.Visible    = true;
                    gridColumn.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;;
                    //gridColumn.DisplayFormat.FormatString = "n2";
                    //gridColumn.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
                    bandedGridView1.Columns.Add(gridColumn);
                    gbi.Columns.Add(gridColumn);
                }
            }
        }
コード例 #11
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 protected void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmChuongTrinhQL));
     this.barManager1 = new DevExpress.XtraBars.BarManager(this.components);
     this.MainBar = new DevExpress.XtraBars.Bar();
     this.barButtonItemAdd = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItemXem = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItemDelete = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItemUpdate = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItemPrint = new DevExpress.XtraBars.BarButtonItem();
     this.popupMenu1 = new DevExpress.XtraBars.PopupMenu(this.components);
     this.barButtonItem4 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItemCommit = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItemNoCommit = new DevExpress.XtraBars.BarButtonItem();
     this.barSubItem1 = new DevExpress.XtraBars.BarSubItem();
     this.barButtonItemSearch = new DevExpress.XtraBars.BarButtonItem();
     this.popupMenuFilter = new DevExpress.XtraBars.PopupMenu(this.components);
     this.barCheckItemFilter = new DevExpress.XtraBars.BarCheckItem();
     this.barButtonItemClose = new DevExpress.XtraBars.BarButtonItem();
     this.barDockControlTop = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlBottom = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlLeft = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlRight = new DevExpress.XtraBars.BarDockControl();
     this.barStaticItem1 = new DevExpress.XtraBars.BarStaticItem();
     this.barButtonItem1 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem2 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem3 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem5 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItemViewAll = new DevExpress.XtraBars.BarButtonItem();
     this.splitContainerControl1 = new DevExpress.XtraEditors.SplitContainerControl();
     this.gridControlMaster = new DevExpress.XtraGrid.GridControl();
     this.gridViewMaster = new DevExpress.XtraGrid.Views.BandedGrid.PLBandedGridView();
     this.gridBandThongTinChinh = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.CotNoiDung = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.CotTenGoc = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.CotTietMuc = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.CotTongTap = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.CotTapCuoi = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.CotLoaiBang = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.CotPostMaster = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.CotPopUp = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.CotKe = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.CotNgan = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.CotTang = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.CotKHPL = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.CotKHXK = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.CotTuKhoa = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.CotDoiTuongKhanGia = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridBandThongTinMuonTra = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.gridBandNguonGoc = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.CotNamSX = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.CotDonViCungCap = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.CotDonViSoHuu = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.CotNuoc = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.CotThoiHanBangQuyen = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridBandThongTinPhatSong = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.CotSoLanPhat = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.CotPhatLanDau = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridBandThongTinBetacam = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.gridBandThongTinHD = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.CotSDKCBHD = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.popupControlContainerFilter = new DevExpress.XtraBars.PopupControlContainer(this.components);
     this.NamSXDen = new DevExpress.XtraEditors.SpinEdit();
     this.NamSXTu = new DevExpress.XtraEditors.SpinEdit();
     this.ngayNhap = new ProtocolVN.Framework.Win.Trial.PLDateSelection();
     this.label15 = new System.Windows.Forms.PLLabel();
     this.label35 = new System.Windows.Forms.PLLabel();
     this.label11 = new System.Windows.Forms.PLLabel();
     this.plLabel3 = new System.Windows.Forms.PLLabel();
     this.plLabel2 = new System.Windows.Forms.PLLabel();
     this.label34 = new System.Windows.Forms.PLLabel();
     this.label2 = new System.Windows.Forms.PLLabel();
     this.label9 = new System.Windows.Forms.PLLabel();
     this.MaBang = new DevExpress.XtraEditors.TextEdit();
     this.NoiDung = new ProtocolVN.App.VideoLibrary.PLTextEditAutocomplete();
     this.LoaiBang = new ProtocolVN.Framework.Win.PLMultiCombobox();
     this.QuocGia = new ProtocolVN.Framework.Win.PLMultiCombobox();
     this.SoDKHDCB = new ProtocolVN.Framework.Win.PLMultiCombobox();
     this.DonViCungCap = new ProtocolVN.Framework.Win.PLMultiCombobox();
     this.DonViSoHuu = new ProtocolVN.Framework.Win.PLMultiCombobox();
     this.TietMuc = new ProtocolVN.Framework.Win.PLMultiCombobox();
     this.plTreeSelectItem1 = new ProtocolVN.Framework.Win.PLDMTreeGroupElement();
     this.label10 = new System.Windows.Forms.PLLabel();
     this.label1 = new System.Windows.Forms.PLLabel();
     this.label29 = new System.Windows.Forms.PLLabel();
     this.label3 = new System.Windows.Forms.PLLabel();
     this.label5 = new System.Windows.Forms.PLLabel();
     this.popupMenu2 = new DevExpress.XtraBars.PopupMenu(this.components);
     this.TinhTrang = new DevExpress.XtraEditors.CheckedListBoxControl();
     ((System.ComponentModel.ISupportInitialize)(this.barManager1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.popupMenu1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.popupMenuFilter)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl1)).BeginInit();
     this.splitContainerControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMaster)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMaster)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.popupControlContainerFilter)).BeginInit();
     this.popupControlContainerFilter.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.NamSXDen.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.NamSXTu.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.MaBang.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.NoiDung.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.LoaiBang.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.QuocGia.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.SoDKHDCB.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DonViCungCap.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DonViSoHuu.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TietMuc.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.popupMenu2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TinhTrang)).BeginInit();
     this.SuspendLayout();
     //
     // barManager1
     //
     this.barManager1.Bars.AddRange(new DevExpress.XtraBars.Bar[] {
     this.MainBar});
     this.barManager1.DockControls.Add(this.barDockControlTop);
     this.barManager1.DockControls.Add(this.barDockControlBottom);
     this.barManager1.DockControls.Add(this.barDockControlLeft);
     this.barManager1.DockControls.Add(this.barDockControlRight);
     this.barManager1.Form = this;
     this.barManager1.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
     this.barButtonItemAdd,
     this.barButtonItemDelete,
     this.barButtonItemUpdate,
     this.barButtonItemPrint,
     this.barStaticItem1,
     this.barButtonItem1,
     this.barButtonItem2,
     this.barButtonItemCommit,
     this.barButtonItemNoCommit,
     this.barSubItem1,
     this.barButtonItemXem,
     this.barButtonItemSearch,
     this.barButtonItemClose,
     this.barCheckItemFilter,
     this.barButtonItem3,
     this.barButtonItem4,
     this.barButtonItem5,
     this.barButtonItemViewAll});
     this.barManager1.MaxItemId = 40;
     //
     // MainBar
     //
     this.MainBar.BarName = "MainBar";
     this.MainBar.DockCol = 0;
     this.MainBar.DockRow = 0;
     this.MainBar.DockStyle = DevExpress.XtraBars.BarDockStyle.Top;
     this.MainBar.FloatLocation = new System.Drawing.Point(39, 133);
     this.MainBar.FloatSize = new System.Drawing.Size(72, 73);
     this.MainBar.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemAdd),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemXem),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemDelete),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemUpdate),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemPrint, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemCommit, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemNoCommit),
     new DevExpress.XtraBars.LinkPersistInfo(this.barSubItem1, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemSearch),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemClose, true)});
     this.MainBar.OptionsBar.AllowQuickCustomization = false;
     this.MainBar.OptionsBar.DrawDragBorder = false;
     this.MainBar.OptionsBar.RotateWhenVertical = false;
     this.MainBar.OptionsBar.UseWholeRow = true;
     this.MainBar.Text = "Custom 1";
     //
     // barButtonItemAdd
     //
     this.barButtonItemAdd.Caption = "&Thêm tập tiếp theo";
     this.barButtonItemAdd.Id = 0;
     this.barButtonItemAdd.Name = "barButtonItemAdd";
     this.barButtonItemAdd.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // barButtonItemXem
     //
     this.barButtonItemXem.Caption = "X&em";
     this.barButtonItemXem.Id = 24;
     this.barButtonItemXem.Name = "barButtonItemXem";
     this.barButtonItemXem.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.barButtonItemXem.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
     //
     // barButtonItemDelete
     //
     this.barButtonItemDelete.Caption = "&Xóa";
     this.barButtonItemDelete.Id = 1;
     this.barButtonItemDelete.Name = "barButtonItemDelete";
     this.barButtonItemDelete.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.barButtonItemDelete.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
     //
     // barButtonItemUpdate
     //
     this.barButtonItemUpdate.Caption = "&Sửa";
     this.barButtonItemUpdate.Id = 2;
     this.barButtonItemUpdate.Name = "barButtonItemUpdate";
     this.barButtonItemUpdate.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.barButtonItemUpdate.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
     //
     // barButtonItemPrint
     //
     this.barButtonItemPrint.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown;
     this.barButtonItemPrint.Caption = "&In";
     this.barButtonItemPrint.DropDownControl = this.popupMenu1;
     this.barButtonItemPrint.Id = 3;
     this.barButtonItemPrint.Name = "barButtonItemPrint";
     this.barButtonItemPrint.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // popupMenu1
     //
     this.popupMenu1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem4)});
     this.popupMenu1.Manager = this.barManager1;
     this.popupMenu1.Name = "popupMenu1";
     //
     // barButtonItem4
     //
     this.barButtonItem4.Caption = "Xem t&rước";
     this.barButtonItem4.Id = 33;
     this.barButtonItem4.Name = "barButtonItem4";
     //
     // barButtonItemCommit
     //
     this.barButtonItemCommit.Caption = "&Duyệt";
     this.barButtonItemCommit.Id = 17;
     this.barButtonItemCommit.Name = "barButtonItemCommit";
     this.barButtonItemCommit.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // barButtonItemNoCommit
     //
     this.barButtonItemNoCommit.Caption = "&Không duyệt";
     this.barButtonItemNoCommit.Id = 18;
     this.barButtonItemNoCommit.Name = "barButtonItemNoCommit";
     this.barButtonItemNoCommit.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // barSubItem1
     //
     this.barSubItem1.Caption = "&Nghiệp vụ";
     this.barSubItem1.Id = 20;
     this.barSubItem1.Name = "barSubItem1";
     this.barSubItem1.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // barButtonItemSearch
     //
     this.barButtonItemSearch.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown;
     this.barButtonItemSearch.Caption = "Tì&m kiếm";
     this.barButtonItemSearch.DropDownControl = this.popupMenuFilter;
     this.barButtonItemSearch.Id = 27;
     this.barButtonItemSearch.Name = "barButtonItemSearch";
     this.barButtonItemSearch.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // popupMenuFilter
     //
     this.popupMenuFilter.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.barCheckItemFilter)});
     this.popupMenuFilter.Manager = this.barManager1;
     this.popupMenuFilter.Name = "popupMenuFilter";
     //
     // barCheckItemFilter
     //
     this.barCheckItemFilter.Caption = "Điề&u kiện tìm kiếm";
     this.barCheckItemFilter.Id = 29;
     this.barCheckItemFilter.Name = "barCheckItemFilter";
     this.barCheckItemFilter.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // barButtonItemClose
     //
     this.barButtonItemClose.Caption = "Đón&g";
     this.barButtonItemClose.Id = 28;
     this.barButtonItemClose.Name = "barButtonItemClose";
     this.barButtonItemClose.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // barDockControlTop
     //
     this.barDockControlTop.Dock = System.Windows.Forms.DockStyle.Top;
     this.barDockControlTop.Location = new System.Drawing.Point(0, 0);
     this.barDockControlTop.Size = new System.Drawing.Size(1016, 24);
     //
     // barDockControlBottom
     //
     this.barDockControlBottom.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.barDockControlBottom.Location = new System.Drawing.Point(0, 734);
     this.barDockControlBottom.Size = new System.Drawing.Size(1016, 0);
     //
     // barDockControlLeft
     //
     this.barDockControlLeft.Dock = System.Windows.Forms.DockStyle.Left;
     this.barDockControlLeft.Location = new System.Drawing.Point(0, 24);
     this.barDockControlLeft.Size = new System.Drawing.Size(0, 710);
     //
     // barDockControlRight
     //
     this.barDockControlRight.Dock = System.Windows.Forms.DockStyle.Right;
     this.barDockControlRight.Location = new System.Drawing.Point(1016, 24);
     this.barDockControlRight.Size = new System.Drawing.Size(0, 710);
     //
     // barStaticItem1
     //
     this.barStaticItem1.AutoSize = DevExpress.XtraBars.BarStaticItemSize.None;
     this.barStaticItem1.Border = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.barStaticItem1.Id = 13;
     this.barStaticItem1.Name = "barStaticItem1";
     this.barStaticItem1.TextAlignment = System.Drawing.StringAlignment.Near;
     this.barStaticItem1.Width = 100;
     //
     // barButtonItem1
     //
     this.barButtonItem1.Caption = "barButtonItem1";
     this.barButtonItem1.Id = 14;
     this.barButtonItem1.Name = "barButtonItem1";
     //
     // barButtonItem2
     //
     this.barButtonItem2.Caption = "barButtonItem2";
     this.barButtonItem2.Id = 15;
     this.barButtonItem2.Name = "barButtonItem2";
     //
     // barButtonItem3
     //
     this.barButtonItem3.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown;
     this.barButtonItem3.Caption = "In";
     this.barButtonItem3.Id = 30;
     this.barButtonItem3.Name = "barButtonItem3";
     //
     // barButtonItem5
     //
     this.barButtonItem5.Caption = "barButtonItem5";
     this.barButtonItem5.Id = 34;
     this.barButtonItem5.Name = "barButtonItem5";
     //
     // barButtonItemViewAll
     //
     this.barButtonItemViewAll.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.barButtonItemViewAll.Appearance.ForeColor = System.Drawing.Color.Red;
     this.barButtonItemViewAll.Appearance.Options.UseFont = true;
     this.barButtonItemViewAll.Appearance.Options.UseForeColor = true;
     this.barButtonItemViewAll.Caption = "Xem tất c&ả";
     this.barButtonItemViewAll.Id = 39;
     this.barButtonItemViewAll.Name = "barButtonItemViewAll";
     this.barButtonItemViewAll.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // splitContainerControl1
     //
     this.splitContainerControl1.Horizontal = false;
     this.splitContainerControl1.Location = new System.Drawing.Point(879, 263);
     this.splitContainerControl1.Name = "splitContainerControl1";
     this.splitContainerControl1.Panel1.Text = "splitContainerControl1_Panel1";
     this.splitContainerControl1.Panel2.CaptionLocation = DevExpress.Utils.Locations.Left;
     this.splitContainerControl1.Panel2.ShowCaption = true;
     this.splitContainerControl1.Panel2.Text = "splitContainerControl1_Panel2";
     this.splitContainerControl1.Size = new System.Drawing.Size(41, 38);
     this.splitContainerControl1.SplitterPosition = 76;
     this.splitContainerControl1.TabIndex = 4;
     this.splitContainerControl1.Text = "splitContainerControl1";
     //
     // gridControlMaster
     //
     this.gridControlMaster.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("gridControlMaster.BackgroundImage")));
     this.gridControlMaster.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
     this.gridControlMaster.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gridControlMaster.Location = new System.Drawing.Point(0, 132);
     this.gridControlMaster.MainView = this.gridViewMaster;
     this.gridControlMaster.Name = "gridControlMaster";
     this.gridControlMaster.Size = new System.Drawing.Size(1016, 602);
     this.gridControlMaster.TabIndex = 7;
     this.gridControlMaster.TabStop = false;
     this.gridControlMaster.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewMaster});
     //
     // gridViewMaster
     //
     this.gridViewMaster.Appearance.GroupPanel.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Inch);
     this.gridViewMaster.Appearance.GroupPanel.Options.UseFont = true;
     this.gridViewMaster.Appearance.HeaderPanel.Options.UseTextOptions = true;
     this.gridViewMaster.Appearance.HeaderPanel.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridViewMaster.Bands.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.GridBand[] {
     this.gridBandThongTinChinh,
     this.gridBandThongTinMuonTra,
     this.gridBandNguonGoc,
     this.gridBandThongTinPhatSong,
     this.gridBandThongTinBetacam,
     this.gridBandThongTinHD});
     this.gridViewMaster.Columns.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn[] {
     this.CotNoiDung,
     this.CotTietMuc,
     this.CotTenGoc,
     this.CotTongTap,
     this.CotTapCuoi,
     this.CotLoaiBang,
     this.CotPostMaster,
     this.CotPopUp,
     this.CotSDKCBHD,
     this.CotTuKhoa,
     this.CotKHPL,
     this.CotKHXK,
     this.CotKe,
     this.CotNgan,
     this.CotTang,
     this.CotSoLanPhat,
     this.CotPhatLanDau,
     this.CotThoiHanBangQuyen,
     this.CotDonViSoHuu,
     this.CotDonViCungCap,
     this.CotNamSX,
     this.CotNuoc,
     this.CotDoiTuongKhanGia});
     this.gridViewMaster.CustomizationFormBounds = new System.Drawing.Rectangle(747, 292, 215, 205);
     this.gridViewMaster.GridControl = this.gridControlMaster;
     this.gridViewMaster.GroupPanelText = "Các chương trình thỏa điều kiện tìm kiếm";
     this.gridViewMaster.IndicatorWidth = 40;
     this.gridViewMaster.Name = "gridViewMaster";
     this.gridViewMaster.OptionsLayout.Columns.AddNewColumns = false;
     this.gridViewMaster.OptionsNavigation.AutoFocusNewRow = true;
     this.gridViewMaster.OptionsNavigation.EnterMoveNextColumn = true;
     this.gridViewMaster.OptionsPrint.UsePrintStyles = true;
     this.gridViewMaster.OptionsSelection.MultiSelect = true;
     this.gridViewMaster.OptionsView.EnableAppearanceEvenRow = true;
     this.gridViewMaster.OptionsView.EnableAppearanceOddRow = true;
     this.gridViewMaster.OptionsView.NewItemRowPosition = DevExpress.XtraGrid.Views.Grid.NewItemRowPosition.Bottom;
     this.gridViewMaster.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.CotNoiDung, DevExpress.Data.ColumnSortOrder.Ascending),
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.CotTietMuc, DevExpress.Data.ColumnSortOrder.Ascending)});
     //
     // gridBandThongTinChinh
     //
     this.gridBandThongTinChinh.AppearanceHeader.Options.UseTextOptions = true;
     this.gridBandThongTinChinh.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridBandThongTinChinh.Caption = "Thông tin chính";
     this.gridBandThongTinChinh.Columns.Add(this.CotNoiDung);
     this.gridBandThongTinChinh.Columns.Add(this.CotTenGoc);
     this.gridBandThongTinChinh.Columns.Add(this.CotTietMuc);
     this.gridBandThongTinChinh.Columns.Add(this.CotTongTap);
     this.gridBandThongTinChinh.Columns.Add(this.CotTapCuoi);
     this.gridBandThongTinChinh.Columns.Add(this.CotLoaiBang);
     this.gridBandThongTinChinh.Columns.Add(this.CotPostMaster);
     this.gridBandThongTinChinh.Columns.Add(this.CotPopUp);
     this.gridBandThongTinChinh.Columns.Add(this.CotKe);
     this.gridBandThongTinChinh.Columns.Add(this.CotNgan);
     this.gridBandThongTinChinh.Columns.Add(this.CotTang);
     this.gridBandThongTinChinh.Columns.Add(this.CotKHPL);
     this.gridBandThongTinChinh.Columns.Add(this.CotKHXK);
     this.gridBandThongTinChinh.Columns.Add(this.CotTuKhoa);
     this.gridBandThongTinChinh.Columns.Add(this.CotDoiTuongKhanGia);
     this.gridBandThongTinChinh.Name = "gridBandThongTinChinh";
     this.gridBandThongTinChinh.Width = 75;
     //
     // CotNoiDung
     //
     this.CotNoiDung.Caption = "Nội dung";
     this.CotNoiDung.Name = "CotNoiDung";
     this.CotNoiDung.Width = 67;
     //
     // CotTenGoc
     //
     this.CotTenGoc.Caption = "Tên gốc";
     this.CotTenGoc.Name = "CotTenGoc";
     this.CotTenGoc.Width = 50;
     //
     // CotTietMuc
     //
     this.CotTietMuc.Caption = "Tiết mục";
     this.CotTietMuc.Name = "CotTietMuc";
     this.CotTietMuc.Width = 65;
     //
     // CotTongTap
     //
     this.CotTongTap.Caption = "Tổng tập";
     this.CotTongTap.Name = "CotTongTap";
     this.CotTongTap.Width = 55;
     //
     // CotTapCuoi
     //
     this.CotTapCuoi.Caption = "Tập cuối";
     this.CotTapCuoi.Name = "CotTapCuoi";
     this.CotTapCuoi.Width = 52;
     //
     // CotLoaiBang
     //
     this.CotLoaiBang.Caption = "Loại lưu trữ";
     this.CotLoaiBang.Name = "CotLoaiBang";
     this.CotLoaiBang.Width = 67;
     //
     // CotPostMaster
     //
     this.CotPostMaster.Caption = "Tình trạng";
     this.CotPostMaster.Name = "CotPostMaster";
     this.CotPostMaster.Width = 61;
     //
     // CotPopUp
     //
     this.CotPopUp.Caption = "Pop Up";
     this.CotPopUp.Name = "CotPopUp";
     this.CotPopUp.Width = 46;
     //
     // CotKe
     //
     this.CotKe.Caption = "Kệ";
     this.CotKe.Name = "CotKe";
     this.CotKe.Width = 24;
     //
     // CotNgan
     //
     this.CotNgan.Caption = "Ngăn";
     this.CotNgan.Name = "CotNgan";
     this.CotNgan.Width = 37;
     //
     // CotTang
     //
     this.CotTang.Caption = "Tầng";
     this.CotTang.Name = "CotTang";
     this.CotTang.Width = 36;
     //
     // CotKHPL
     //
     this.CotKHPL.Caption = "KHPL";
     this.CotKHPL.Name = "CotKHPL";
     this.CotKHPL.ToolTip = "Ký hiệu phân loại";
     this.CotKHPL.Width = 36;
     //
     // CotKHXK
     //
     this.CotKHXK.Caption = "KHXK";
     this.CotKHXK.Name = "CotKHXK";
     this.CotKHXK.ToolTip = "Ký hiệu xếp kho";
     this.CotKHXK.Width = 37;
     //
     // CotTuKhoa
     //
     this.CotTuKhoa.Caption = "Từ khóa";
     this.CotTuKhoa.Name = "CotTuKhoa";
     this.CotTuKhoa.Width = 51;
     //
     // CotDoiTuongKhanGia
     //
     this.CotDoiTuongKhanGia.Caption = "Đối tượng khán giả";
     this.CotDoiTuongKhanGia.Name = "CotDoiTuongKhanGia";
     this.CotDoiTuongKhanGia.Width = 103;
     //
     // gridBandThongTinMuonTra
     //
     this.gridBandThongTinMuonTra.AppearanceHeader.Options.UseTextOptions = true;
     this.gridBandThongTinMuonTra.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridBandThongTinMuonTra.Caption = "Thông tin mượn trả";
     this.gridBandThongTinMuonTra.Name = "gridBandThongTinMuonTra";
     this.gridBandThongTinMuonTra.Width = 87;
     //
     // gridBandNguonGoc
     //
     this.gridBandNguonGoc.AppearanceHeader.Options.UseTextOptions = true;
     this.gridBandNguonGoc.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridBandNguonGoc.Caption = "Nguồn gốc";
     this.gridBandNguonGoc.Columns.Add(this.CotNamSX);
     this.gridBandNguonGoc.Columns.Add(this.CotDonViCungCap);
     this.gridBandNguonGoc.Columns.Add(this.CotDonViSoHuu);
     this.gridBandNguonGoc.Columns.Add(this.CotNuoc);
     this.gridBandNguonGoc.Columns.Add(this.CotThoiHanBangQuyen);
     this.gridBandNguonGoc.Name = "gridBandNguonGoc";
     this.gridBandNguonGoc.Width = 52;
     //
     // CotNamSX
     //
     this.CotNamSX.Caption = "Năm SX";
     this.CotNamSX.Name = "CotNamSX";
     this.CotNamSX.Width = 48;
     //
     // CotDonViCungCap
     //
     this.CotDonViCungCap.Caption = "Đơn vị cung cấp";
     this.CotDonViCungCap.Name = "CotDonViCungCap";
     this.CotDonViCungCap.Width = 89;
     //
     // CotDonViSoHuu
     //
     this.CotDonViSoHuu.Caption = "Đơn vị sở hữu";
     this.CotDonViSoHuu.Name = "CotDonViSoHuu";
     this.CotDonViSoHuu.Width = 79;
     //
     // CotNuoc
     //
     this.CotNuoc.Caption = "Nước SX";
     this.CotNuoc.Name = "CotNuoc";
     this.CotNuoc.ToolTip = "Nước sản xuất";
     this.CotNuoc.Width = 52;
     //
     // CotThoiHanBangQuyen
     //
     this.CotThoiHanBangQuyen.Caption = "Thời hạn bản quyền";
     this.CotThoiHanBangQuyen.Name = "CotThoiHanBangQuyen";
     this.CotThoiHanBangQuyen.Width = 107;
     //
     // gridBandThongTinPhatSong
     //
     this.gridBandThongTinPhatSong.AppearanceHeader.Options.UseTextOptions = true;
     this.gridBandThongTinPhatSong.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridBandThongTinPhatSong.Caption = "Thông tin phát sóng";
     this.gridBandThongTinPhatSong.Columns.Add(this.CotSoLanPhat);
     this.gridBandThongTinPhatSong.Columns.Add(this.CotPhatLanDau);
     this.gridBandThongTinPhatSong.Name = "gridBandThongTinPhatSong";
     this.gridBandThongTinPhatSong.Width = 104;
     //
     // CotSoLanPhat
     //
     this.CotSoLanPhat.Caption = "Tồng số lần đã phát";
     this.CotSoLanPhat.Name = "CotSoLanPhat";
     this.CotSoLanPhat.Width = 107;
     //
     // CotPhatLanDau
     //
     this.CotPhatLanDau.Caption = "Ngày phát đầu tiên";
     this.CotPhatLanDau.Name = "CotPhatLanDau";
     this.CotPhatLanDau.ToolTip = "Những ngày phát lần đầu tương ứng trên các đài";
     this.CotPhatLanDau.Width = 104;
     //
     // gridBandThongTinBetacam
     //
     this.gridBandThongTinBetacam.AppearanceHeader.Options.UseTextOptions = true;
     this.gridBandThongTinBetacam.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridBandThongTinBetacam.Caption = "Thông tin Timecode";
     this.gridBandThongTinBetacam.Name = "gridBandThongTinBetacam";
     this.gridBandThongTinBetacam.Width = 95;
     //
     // gridBandThongTinHD
     //
     this.gridBandThongTinHD.AppearanceHeader.Options.UseTextOptions = true;
     this.gridBandThongTinHD.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridBandThongTinHD.Caption = "Thông tin HD (File)";
     this.gridBandThongTinHD.Columns.Add(this.CotSDKCBHD);
     this.gridBandThongTinHD.Name = "gridBandThongTinHD";
     this.gridBandThongTinHD.Width = 63;
     //
     // CotSDKCBHD
     //
     this.CotSDKCBHD.Caption = "Số ĐKCB HD";
     this.CotSDKCBHD.Name = "CotSDKCBHD";
     this.CotSDKCBHD.ToolTip = "Số đăng ký cá biệt ổ cứng";
     this.CotSDKCBHD.Width = 71;
     //
     // popupControlContainerFilter
     //
     this.popupControlContainerFilter.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.popupControlContainerFilter.Controls.Add(this.TinhTrang);
     this.popupControlContainerFilter.Controls.Add(this.NamSXDen);
     this.popupControlContainerFilter.Controls.Add(this.NamSXTu);
     this.popupControlContainerFilter.Controls.Add(this.ngayNhap);
     this.popupControlContainerFilter.Controls.Add(this.label15);
     this.popupControlContainerFilter.Controls.Add(this.label35);
     this.popupControlContainerFilter.Controls.Add(this.label11);
     this.popupControlContainerFilter.Controls.Add(this.plLabel3);
     this.popupControlContainerFilter.Controls.Add(this.plLabel2);
     this.popupControlContainerFilter.Controls.Add(this.label34);
     this.popupControlContainerFilter.Controls.Add(this.label2);
     this.popupControlContainerFilter.Controls.Add(this.splitContainerControl1);
     this.popupControlContainerFilter.Controls.Add(this.label9);
     this.popupControlContainerFilter.Controls.Add(this.MaBang);
     this.popupControlContainerFilter.Controls.Add(this.NoiDung);
     this.popupControlContainerFilter.Controls.Add(this.LoaiBang);
     this.popupControlContainerFilter.Controls.Add(this.QuocGia);
     this.popupControlContainerFilter.Controls.Add(this.SoDKHDCB);
     this.popupControlContainerFilter.Controls.Add(this.DonViCungCap);
     this.popupControlContainerFilter.Controls.Add(this.DonViSoHuu);
     this.popupControlContainerFilter.Controls.Add(this.TietMuc);
     this.popupControlContainerFilter.Controls.Add(this.plTreeSelectItem1);
     this.popupControlContainerFilter.Controls.Add(this.label10);
     this.popupControlContainerFilter.Controls.Add(this.label1);
     this.popupControlContainerFilter.Controls.Add(this.label29);
     this.popupControlContainerFilter.Controls.Add(this.label3);
     this.popupControlContainerFilter.Controls.Add(this.label5);
     this.popupControlContainerFilter.Dock = System.Windows.Forms.DockStyle.Top;
     this.popupControlContainerFilter.Location = new System.Drawing.Point(0, 24);
     this.popupControlContainerFilter.Manager = this.barManager1;
     this.popupControlContainerFilter.Name = "popupControlContainerFilter";
     this.popupControlContainerFilter.Size = new System.Drawing.Size(1016, 108);
     this.popupControlContainerFilter.TabIndex = 0;
     this.popupControlContainerFilter.Visible = false;
     //
     // NamSXDen
     //
     this.NamSXDen.EditValue = new decimal(new int[] {
     0,
     0,
     0,
     0});
     this.NamSXDen.Location = new System.Drawing.Point(679, 34);
     this.NamSXDen.Name = "NamSXDen";
     this.NamSXDen.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.NamSXDen.Size = new System.Drawing.Size(79, 20);
     this.NamSXDen.TabIndex = 213;
     //
     // NamSXTu
     //
     this.NamSXTu.EditValue = new decimal(new int[] {
     0,
     0,
     0,
     0});
     this.NamSXTu.Location = new System.Drawing.Point(569, 34);
     this.NamSXTu.MenuManager = this.barManager1;
     this.NamSXTu.Name = "NamSXTu";
     this.NamSXTu.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.NamSXTu.Size = new System.Drawing.Size(80, 20);
     this.NamSXTu.TabIndex = 213;
     //
     // ngayNhap
     //
     this.ngayNhap.Caption = "Năm 2010";
     this.ngayNhap.Default = ProtocolVN.Framework.Win.Trial.SelectionTypes.FromQuarterToQuarter;
     this.ngayNhap.FirstFrom = new System.DateTime(2010, 1, 1, 0, 0, 0, 0);
     this.ngayNhap.FirstTo = new System.DateTime(2010, 12, 31, 0, 0, 0, 0);
     this.ngayNhap.FromDate = new System.DateTime(2010, 1, 1, 0, 0, 0, 0);
     this.ngayNhap.Location = new System.Drawing.Point(75, 84);
     this.ngayNhap.Name = "ngayNhap";
     this.ngayNhap.ReturnType = ProtocolVN.Framework.Win.Trial.TimeType.Date;
     this.ngayNhap.SecondFrom = new System.DateTime(2010, 1, 1, 0, 0, 0, 0);
     this.ngayNhap.SecondTo = new System.DateTime(2010, 12, 31, 0, 0, 0, 0);
     this.ngayNhap.SelectedType = ProtocolVN.Framework.Win.Trial.SelectionTypes.FromQuarterToQuarter;
     this.ngayNhap.Size = new System.Drawing.Size(351, 21);
     this.ngayNhap.TabIndex = 212;
     this.ngayNhap.ToDate = new System.DateTime(2010, 12, 31, 0, 0, 0, 0);
     this.ngayNhap.Types = ((ProtocolVN.Framework.Win.Trial.SelectionTypes)(((((((((ProtocolVN.Framework.Win.Trial.SelectionTypes.OneDate | ProtocolVN.Framework.Win.Trial.SelectionTypes.OneMonth)
                 | ProtocolVN.Framework.Win.Trial.SelectionTypes.OneQuarter)
                 | ProtocolVN.Framework.Win.Trial.SelectionTypes.OneYear)
                 | ProtocolVN.Framework.Win.Trial.SelectionTypes.SixMonths)
                 | ProtocolVN.Framework.Win.Trial.SelectionTypes.FromDateToDate)
                 | ProtocolVN.Framework.Win.Trial.SelectionTypes.FromMonthToMonth)
                 | ProtocolVN.Framework.Win.Trial.SelectionTypes.FromQuarterToQuarter)
                 | ProtocolVN.Framework.Win.Trial.SelectionTypes.FromYearToYear)));
     //
     // label15
     //
     this.label15.Location = new System.Drawing.Point(764, 37);
     this.label15.Name = "label15";
     this.label15.Size = new System.Drawing.Size(50, 13);
     this.label15.TabIndex = 210;
     this.label15.Text = "ĐV sở hữu";
     this.label15.ToolTip = "Đơn vị sở hữu";
     this.label15.ZZZType = System.Windows.Forms.PLLabel.LabelType.NORMAL;
     //
     // label35
     //
     this.label35.Location = new System.Drawing.Point(24, -83);
     this.label35.Name = "label35";
     this.label35.Size = new System.Drawing.Size(77, 13);
     this.label35.TabIndex = 206;
     this.label35.Text = "Đơn vị cung cấp";
     this.label35.ToolTip = "Dữ liệu bắt buộc nhập";
     this.label35.ZZZType = System.Windows.Forms.PLLabel.LabelType.REQUIRED;
     //
     // label11
     //
     this.label11.Location = new System.Drawing.Point(3, 63);
     this.label11.Name = "label11";
     this.label11.Size = new System.Drawing.Size(59, 13);
     this.label11.TabIndex = 206;
     this.label11.Text = "Số ĐKCB HD";
     this.label11.ZZZType = System.Windows.Forms.PLLabel.LabelType.NORMAL;
     //
     // plLabel3
     //
     this.plLabel3.Location = new System.Drawing.Point(655, 37);
     this.plLabel3.Name = "plLabel3";
     this.plLabel3.Size = new System.Drawing.Size(18, 13);
     this.plLabel3.TabIndex = 201;
     this.plLabel3.Text = "đến";
     this.plLabel3.ZZZType = System.Windows.Forms.PLLabel.LabelType.NORMAL;
     //
     // plLabel2
     //
     this.plLabel2.Location = new System.Drawing.Point(507, 37);
     this.plLabel2.Name = "plLabel2";
     this.plLabel2.Size = new System.Drawing.Size(50, 13);
     this.plLabel2.TabIndex = 201;
     this.plLabel2.Text = "Năm SX từ";
     this.plLabel2.ZZZType = System.Windows.Forms.PLLabel.LabelType.NORMAL;
     //
     // label34
     //
     this.label34.Location = new System.Drawing.Point(764, 9);
     this.label34.Name = "label34";
     this.label34.Size = new System.Drawing.Size(60, 13);
     this.label34.TabIndex = 206;
     this.label34.Text = "ĐV cung cấp";
     this.label34.ToolTip = "Đơn vị cung cấp";
     this.label34.ZZZType = System.Windows.Forms.PLLabel.LabelType.NORMAL;
     //
     // label2
     //
     this.label2.Location = new System.Drawing.Point(507, 11);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(49, 13);
     this.label2.TabIndex = 201;
     this.label2.Text = "Tình trạng";
     this.label2.ZZZType = System.Windows.Forms.PLLabel.LabelType.NORMAL;
     //
     // label9
     //
     this.label9.Location = new System.Drawing.Point(262, 37);
     this.label9.Name = "label9";
     this.label9.Size = new System.Drawing.Size(55, 13);
     this.label9.TabIndex = 195;
     this.label9.Text = "Loại lưu trữ";
     this.label9.ZZZType = System.Windows.Forms.PLLabel.LabelType.NORMAL;
     //
     // MaBang
     //
     this.MaBang.Location = new System.Drawing.Point(75, 8);
     this.MaBang.Name = "MaBang";
     this.MaBang.Size = new System.Drawing.Size(181, 20);
     this.MaBang.TabIndex = 194;
     //
     // NoiDung
     //
     this.NoiDung._DataSource = null;
     this.NoiDung._GetField = null;
     this.NoiDung.Location = new System.Drawing.Point(75, 34);
     this.NoiDung.Name = "NoiDung";
     this.NoiDung.Properties.CloseUpKey = new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None);
     this.NoiDung.Size = new System.Drawing.Size(181, 20);
     this.NoiDung.TabIndex = 194;
     //
     // LoaiBang
     //
     this.LoaiBang.DataSource = null;
     this.LoaiBang.DisplayField = null;
     this.LoaiBang.Location = new System.Drawing.Point(336, 32);
     this.LoaiBang.Name = "LoaiBang";
     this.LoaiBang.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.LoaiBang.Size = new System.Drawing.Size(165, 20);
     this.LoaiBang.TabIndex = 5;
     this.LoaiBang.ValueField = null;
     //
     // QuocGia
     //
     this.QuocGia.DataSource = null;
     this.QuocGia.DisplayField = null;
     this.QuocGia.Location = new System.Drawing.Point(336, 58);
     this.QuocGia.Name = "QuocGia";
     this.QuocGia.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.QuocGia.Size = new System.Drawing.Size(165, 20);
     this.QuocGia.TabIndex = 5;
     this.QuocGia.ValueField = null;
     //
     // SoDKHDCB
     //
     this.SoDKHDCB.DataSource = null;
     this.SoDKHDCB.DisplayField = null;
     this.SoDKHDCB.Location = new System.Drawing.Point(75, 60);
     this.SoDKHDCB.Name = "SoDKHDCB";
     this.SoDKHDCB.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.SoDKHDCB.Size = new System.Drawing.Size(181, 20);
     this.SoDKHDCB.TabIndex = 5;
     this.SoDKHDCB.ValueField = null;
     //
     // DonViCungCap
     //
     this.DonViCungCap.DataSource = null;
     this.DonViCungCap.DisplayField = null;
     this.DonViCungCap.Location = new System.Drawing.Point(832, 6);
     this.DonViCungCap.Name = "DonViCungCap";
     this.DonViCungCap.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.DonViCungCap.Size = new System.Drawing.Size(181, 20);
     this.DonViCungCap.TabIndex = 5;
     this.DonViCungCap.ValueField = null;
     //
     // DonViSoHuu
     //
     this.DonViSoHuu.DataSource = null;
     this.DonViSoHuu.DisplayField = null;
     this.DonViSoHuu.Location = new System.Drawing.Point(832, 30);
     this.DonViSoHuu.Name = "DonViSoHuu";
     this.DonViSoHuu.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.DonViSoHuu.Size = new System.Drawing.Size(181, 20);
     this.DonViSoHuu.TabIndex = 5;
     this.DonViSoHuu.ValueField = null;
     //
     // TietMuc
     //
     this.TietMuc.DataSource = null;
     this.TietMuc.DisplayField = null;
     this.TietMuc.Location = new System.Drawing.Point(336, 6);
     this.TietMuc.Name = "TietMuc";
     this.TietMuc.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.TietMuc.Size = new System.Drawing.Size(165, 20);
     this.TietMuc.TabIndex = 5;
     this.TietMuc.ValueField = null;
     //
     // plTreeSelectItem1
     //
     this.plTreeSelectItem1.Location = new System.Drawing.Point(605, -20);
     this.plTreeSelectItem1.Name = "plTreeSelectItem1";
     this.plTreeSelectItem1.Size = new System.Drawing.Size(167, 20);
     this.plTreeSelectItem1.TabIndex = 193;
     this.plTreeSelectItem1.ZZZWidthFactor = 2F;
     //
     // label10
     //
     this.label10.Location = new System.Drawing.Point(262, 63);
     this.label10.Name = "label10";
     this.label10.Size = new System.Drawing.Size(40, 13);
     this.label10.TabIndex = 0;
     this.label10.Text = "Nước SX";
     this.label10.ToolTip = "Nước sản xuất";
     this.label10.ZZZType = System.Windows.Forms.PLLabel.LabelType.NORMAL;
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(4, 11);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(41, 13);
     this.label1.TabIndex = 0;
     this.label1.Text = "Mã băng";
     this.label1.ZZZType = System.Windows.Forms.PLLabel.LabelType.NORMAL;
     //
     // label29
     //
     this.label29.Location = new System.Drawing.Point(4, 89);
     this.label29.Name = "label29";
     this.label29.Size = new System.Drawing.Size(52, 13);
     this.label29.TabIndex = 5;
     this.label29.Text = "Ngày nhập";
     this.label29.ZZZType = System.Windows.Forms.PLLabel.LabelType.NORMAL;
     //
     // label3
     //
     this.label3.Location = new System.Drawing.Point(3, 37);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(42, 13);
     this.label3.TabIndex = 5;
     this.label3.Text = "Nội dung";
     this.label3.ZZZType = System.Windows.Forms.PLLabel.LabelType.NORMAL;
     //
     // label5
     //
     this.label5.Location = new System.Drawing.Point(262, 11);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(40, 13);
     this.label5.TabIndex = 5;
     this.label5.Text = "Tiết mục";
     this.label5.ZZZType = System.Windows.Forms.PLLabel.LabelType.NORMAL;
     //
     // popupMenu2
     //
     this.popupMenu2.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemAdd),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemDelete),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemUpdate)});
     this.popupMenu2.Manager = this.barManager1;
     this.popupMenu2.Name = "popupMenu2";
     //
     // TinhTrang
     //
     this.TinhTrang.CheckOnClick = true;
     this.TinhTrang.HorzScrollStep = 1;
     this.TinhTrang.ItemHeight = 20;
     this.TinhTrang.Items.AddRange(new DevExpress.XtraEditors.Controls.CheckedListBoxItem[] {
     new DevExpress.XtraEditors.Controls.CheckedListBoxItem("Y", "POST", System.Windows.Forms.CheckState.Checked),
     new DevExpress.XtraEditors.Controls.CheckedListBoxItem("N", "MASTER", System.Windows.Forms.CheckState.Checked),
     new DevExpress.XtraEditors.Controls.CheckedListBoxItem("A", "BOTH", System.Windows.Forms.CheckState.Checked)});
     this.TinhTrang.Location = new System.Drawing.Point(569, 5);
     this.TinhTrang.MultiColumn = true;
     this.TinhTrang.Name = "TinhTrang";
     this.TinhTrang.SelectionMode = System.Windows.Forms.SelectionMode.None;
     this.TinhTrang.Size = new System.Drawing.Size(189, 21);
     this.TinhTrang.TabIndex = 214;
     //
     // frmChuongTrinhQL
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(1016, 734);
     this.Controls.Add(this.gridControlMaster);
     this.Controls.Add(this.popupControlContainerFilter);
     this.Controls.Add(this.barDockControlLeft);
     this.Controls.Add(this.barDockControlRight);
     this.Controls.Add(this.barDockControlBottom);
     this.Controls.Add(this.barDockControlTop);
     this.Name = "frmChuongTrinhQL";
     this.Text = "Quản lý chương trình";
     ((System.ComponentModel.ISupportInitialize)(this.barManager1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.popupMenu1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.popupMenuFilter)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl1)).EndInit();
     this.splitContainerControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMaster)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMaster)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.popupControlContainerFilter)).EndInit();
     this.popupControlContainerFilter.ResumeLayout(false);
     this.popupControlContainerFilter.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.NamSXDen.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.NamSXTu.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.MaBang.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.NoiDung.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.LoaiBang.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.QuocGia.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.SoDKHDCB.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DonViCungCap.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DonViSoHuu.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TietMuc.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.popupMenu2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TinhTrang)).EndInit();
     this.ResumeLayout(false);
 }
コード例 #12
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormReception));
     DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject1 = new DevExpress.Utils.SerializableAppearanceObject();
     DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject2 = new DevExpress.Utils.SerializableAppearanceObject();
     DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject3 = new DevExpress.Utils.SerializableAppearanceObject();
     DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject4 = new DevExpress.Utils.SerializableAppearanceObject();
     this.gcShowColumns = new DevExpress.XtraEditors.GroupControl();
     this.checkEdit10 = new DevExpress.XtraEditors.CheckEdit();
     this.checkEdit9 = new DevExpress.XtraEditors.CheckEdit();
     this.panel7 = new System.Windows.Forms.Panel();
     this.paDelete = new System.Windows.Forms.Panel();
     this.tbResidue = new DevExpress.XtraEditors.SpinEdit();
     this.tbAmortization = new DevExpress.XtraEditors.SpinEdit();
     this.panel5 = new System.Windows.Forms.Panel();
     this.tbTotalIgv = new DevExpress.XtraEditors.SpinEdit();
     this.tbTotalAmount = new DevExpress.XtraEditors.SpinEdit();
     this.tbSubTotalAmount = new DevExpress.XtraEditors.SpinEdit();
     this.label7 = new System.Windows.Forms.Label();
     this.label5 = new System.Windows.Forms.Label();
     this.label4 = new System.Windows.Forms.Label();
     this.label13 = new System.Windows.Forms.Label();
     this.label10 = new System.Windows.Forms.Label();
     this.panel6 = new System.Windows.Forms.Panel();
     this.gcReception = new DevExpress.XtraGrid.GridControl();
     this.gvReception = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gcRec_idrecep_sample_detail = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcRec_OrderSample = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcRec_Description = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repDescription = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.gcRec_Idmr_detail = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcRec_Type_Sample = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcRec_Procedence = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repProcedence = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
     this.gcRec_Code = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcRec_Cod_interno = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcRec_NameSample = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcRec_Flag_envelope_sealed = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repEnvelope_sealed = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.gcRec_CantKg = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcRec_Reject = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcRec_Counter_Sample = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcRec_Days = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcRec_Cost = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcDyn1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repSelect = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.gcDyn2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcDyn3 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcDyn4 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcDyn5 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcDyn6 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcDyn7 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcDyn8 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcDyn9 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcDyn10 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcDyn11 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcDyn12 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcDyn13 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcDyn14 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcDyn15 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcDyn16 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcDyn17 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcDyn18 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcDyn19 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcDyn20 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcAgua_Code = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcAgua_Cod_interno = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcAgua_Date = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcAgua_Hour = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcAgua_Cod_matrix = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcAgua_Cod_campo = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcAgua_NameSample = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcAgua_Ubigeo = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcAgua_UTM = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcAgua_Num_bottle_plastic = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcAgua_Num_bottle_glass = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcAgua_Volumen = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repResult = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.repSendReport = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
     this.repLink = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
     this.repDesLink = new DevExpress.XtraEditors.Repository.RepositoryItemMemoExEdit();
     this.repSample = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
     this.xtraTabControl1 = new DevExpress.XtraTab.XtraTabControl();
     this.xtraTabPage3 = new DevExpress.XtraTab.XtraTabPage();
     this.tbFax = new DevExpress.XtraEditors.TextEdit();
     this.tbClientPhone = new DevExpress.XtraEditors.TextEdit();
     this.tbClientRuc = new DevExpress.XtraEditors.TextEdit();
     this.tbClientDomicile = new DevExpress.XtraEditors.TextEdit();
     this.label9 = new System.Windows.Forms.Label();
     this.label28 = new System.Windows.Forms.Label();
     this.label11 = new System.Windows.Forms.Label();
     this.label8 = new System.Windows.Forms.Label();
     this.label6 = new System.Windows.Forms.Label();
     this.cbCompany = new LimsProject.MyLookUpEdit();
     this.xtraTabPage6 = new DevExpress.XtraTab.XtraTabPage();
     this.gcContact = new DevExpress.XtraGrid.GridControl();
     this.gvContact = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gcCon_Idrecep_company_person = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcCon_Idperson = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcCon_Idcompany = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcCon_Idrecep_sample = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcCon_Allname = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcCon_Mail = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcCon_Person_type = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repPerson_type = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.gcCon_Phone = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repPhone = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.gcCon_Cellphone = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repCellPhone = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.repNum = new DevExpress.XtraEditors.Repository.RepositoryItemSpinEdit();
     this.xtraTabPage1 = new DevExpress.XtraTab.XtraTabPage();
     this.ckDispatchFax = new DevExpress.XtraEditors.CheckEdit();
     this.ckDispatchPerson = new DevExpress.XtraEditors.CheckEdit();
     this.ckDispatchTransport = new DevExpress.XtraEditors.CheckEdit();
     this.ckDispatchCurier = new DevExpress.XtraEditors.CheckEdit();
     this.expandablePanel1 = new DevComponents.DotNetBar.ExpandablePanel();
     this.tabOptionRight = new DevExpress.XtraTab.XtraTabControl();
     this.tpRightMethods = new DevExpress.XtraTab.XtraTabPage();
     this.lookUpEdit3 = new DevExpress.XtraEditors.LookUpEdit();
     this.gcMethods = new DevExpress.XtraGrid.GridControl();
     this.gvMethods = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gcMet_Cod_template_method = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcMet_Cod_element = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcMet_Abbreviation = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcMet_Name_type_analisys = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcMet_Title = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcMet_TypeAnalisys = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcMet_Button = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repAddColumn = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
     this.gcMet_Cost = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcMet_Unit1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcMet_Unit_Name = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcMet_Idelement = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcMet_Idtemplate_method = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcMet_Analisys_time = new DevExpress.XtraGrid.Columns.GridColumn();
     this.textEdit1 = new DevExpress.XtraEditors.TextEdit();
     this.tpRightReports = new DevExpress.XtraTab.XtraTabPage();
     this.gcReport = new DevExpress.XtraGrid.GridControl();
     this.gvReport = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gcRep_idrecep_sample_report = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcRep_order_report = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcRep_cod_recep_sample_report = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcRep_report_status = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repStatusReport = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.gcRep_type_report = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcRep_Option = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repReportOption = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
     this.gcRep_Str_cod_recep_sample_report = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcRep_Date_report = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repDateReport = new DevExpress.XtraEditors.Repository.RepositoryItemDateEdit();
     this.repTimeReport = new DevExpress.XtraEditors.Repository.RepositoryItemTimeEdit();
     this.repTypeReport = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.groupControl1 = new DevExpress.XtraEditors.GroupControl();
     this.btMakePartialReport = new DevExpress.XtraEditors.SimpleButton();
     this.btMakeFinalReport = new DevExpress.XtraEditors.SimpleButton();
     this.tpRightAttach = new DevExpress.XtraTab.XtraTabPage();
     this.gcAttachFile = new DevExpress.XtraGrid.GridControl();
     this.gvAttachFile = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gcAtt_Iddocument_recep = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcAtt_Idrecep_sample = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcAtt_FileName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repAttach_file = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.gcAtt_Attach_status = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repAttach_status = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.gcAtt_Buttons = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repButtons = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
     this.gcAtt_SourcePath = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcAtt_Order_file = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcAtt_Idrecep_sample_attach = new DevExpress.XtraGrid.Columns.GridColumn();
     this.groupControl2 = new DevExpress.XtraEditors.GroupControl();
     this.btNewFile = new DevExpress.XtraEditors.SimpleButton();
     this.tpRightProgram = new DevExpress.XtraTab.XtraTabPage();
     this.gcProgram = new DevExpress.XtraGrid.GridControl();
     this.gvProgram = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gcProg_Idrecep_sample_program = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcProg_Order_report = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcProg_Cod_recep_sample_program = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcProg_Program_status = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repProgramStatus = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.gridColumn6 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repProgramButton = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
     this.gcProg_Date_report = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repDateProgram = new DevExpress.XtraEditors.Repository.RepositoryItemDateEdit();
     this.gcProg_Time_report = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repTimeProgram = new DevExpress.XtraEditors.Repository.RepositoryItemTimeEdit();
     this.gcProg_Str_cod_recep_sample_program = new DevExpress.XtraGrid.Columns.GridColumn();
     this.groupControl3 = new DevExpress.XtraEditors.GroupControl();
     this.btProgramSelection = new DevExpress.XtraEditors.SimpleButton();
     this.btPrintTicket = new System.Windows.Forms.Button();
     this.btDesignPrint = new System.Windows.Forms.Button();
     this.deReception = new DevExpress.XtraEditors.DateEdit();
     this.label12 = new System.Windows.Forms.Label();
     this.label19 = new System.Windows.Forms.Label();
     this.deResult = new DevExpress.XtraEditors.DateEdit();
     this.xtraTabControl2 = new DevExpress.XtraTab.XtraTabControl();
     this.tabDateRegRecep = new DevExpress.XtraTab.XtraTabPage();
     this.tbNumDays = new DevExpress.XtraEditors.SpinEdit();
     this.deHourResult = new DevExpress.XtraEditors.TimeEdit();
     this.deHourReception = new DevExpress.XtraEditors.TimeEdit();
     this.label27 = new System.Windows.Forms.Label();
     this.lookUpEdit1 = new DevExpress.XtraEditors.LookUpEdit();
     this.textEdit3 = new DevExpress.XtraEditors.TextEdit();
     this.btReportClient = new System.Windows.Forms.Button();
     this.txIdrecep_sample = new DevExpress.XtraEditors.TextEdit();
     this.label25 = new System.Windows.Forms.Label();
     this.cbTypeSample = new LimsProject.MyLookUpEdit();
     this.label26 = new System.Windows.Forms.Label();
     this.ofdRecepFileAttach = new System.Windows.Forms.OpenFileDialog();
     this.toolTipController1 = new DevExpress.Utils.ToolTipController(this.components);
     this.label14 = new System.Windows.Forms.Label();
     this.tbAdministrativeExpense = new DevExpress.XtraEditors.SpinEdit();
     this.tbCod_recep_sample = new DevExpress.XtraEditors.TextEdit();
     this.ucSignReception = new LimsProject.UcSign();
     this.panelControl1 = new DevExpress.XtraEditors.PanelControl();
     this.panel9 = new System.Windows.Forms.Panel();
     this.panel11 = new System.Windows.Forms.Panel();
     this.paTypeSample = new System.Windows.Forms.Panel();
     this.paCodRegisterRecep = new System.Windows.Forms.Panel();
     this.ucTitleRegisterRecep = new LimsProject.UcTitle();
     this.ucToolStrip1 = new LimsProject.UcToolStrip();
     this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.toolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
     this.ucGenerarA = new LimsProject.UcGenerar();
     this.ucGenerarDesde = new LimsProject.UcGenerar();
     this.panelControl2 = new DevExpress.XtraEditors.PanelControl();
     this.xtraTabControl3 = new DevExpress.XtraTab.XtraTabControl();
     this.tpMuestras = new DevExpress.XtraTab.XtraTabPage();
     this.panelControl7 = new DevExpress.XtraEditors.PanelControl();
     this.tpAnexos = new DevExpress.XtraTab.XtraTabPage();
     this.checkEdit8 = new DevExpress.XtraEditors.CheckEdit();
     this.memoEdit1 = new DevExpress.XtraEditors.MemoEdit();
     this.checkEdit7 = new DevExpress.XtraEditors.CheckEdit();
     this.groupControl4 = new DevExpress.XtraEditors.GroupControl();
     this.textEdit2 = new DevExpress.XtraEditors.TextEdit();
     this.timeEdit1 = new DevExpress.XtraEditors.TimeEdit();
     this.label17 = new System.Windows.Forms.Label();
     this.label16 = new System.Windows.Forms.Label();
     this.label15 = new System.Windows.Forms.Label();
     this.dateEdit1 = new DevExpress.XtraEditors.DateEdit();
     this.checkEdit6 = new DevExpress.XtraEditors.CheckEdit();
     this.checkEdit5 = new DevExpress.XtraEditors.CheckEdit();
     this.checkEdit4 = new DevExpress.XtraEditors.CheckEdit();
     this.checkEdit3 = new DevExpress.XtraEditors.CheckEdit();
     this.checkEdit2 = new DevExpress.XtraEditors.CheckEdit();
     this.checkEdit1 = new DevExpress.XtraEditors.CheckEdit();
     this.textEdit5 = new DevExpress.XtraEditors.TextEdit();
     this.label21 = new System.Windows.Forms.Label();
     this.label18 = new System.Windows.Forms.Label();
     this.tpReject = new DevExpress.XtraTab.XtraTabPage();
     this.memoEdit2 = new DevExpress.XtraEditors.MemoEdit();
     this.label20 = new System.Windows.Forms.Label();
     this.gcRejection = new DevExpress.XtraGrid.GridControl();
     this.bandedGridView1 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridView();
     this.gridBand1 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.gcRej_Code = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gcRej_NameSample = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gcRej_Date = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gcRej_Hora = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gcRej_Obs = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridBand2 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.gcRej_C1 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gcRej_C2 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gcRej_C3 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gcRej_C4 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.tpDecree = new DevExpress.XtraTab.XtraTabPage();
     this.panelControl4 = new DevExpress.XtraEditors.PanelControl();
     this.xtraTabControl4 = new DevExpress.XtraTab.XtraTabControl();
     this.xtraTabPage4 = new DevExpress.XtraTab.XtraTabPage();
     this.gridDecretos = new DevExpress.XtraGrid.GridControl();
     this.gridView1 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gcDec_Idmetodo = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repMetodo = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.gcDec_Parametro = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcDec_Unidad_medida = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repUnidadMedida = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.gcDec_Result = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcDec_Criterio = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repCriterio = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.gcDec_Valor1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcDec_Valor2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcDec_Conclusion = new DevExpress.XtraGrid.Columns.GridColumn();
     this.panelControl5 = new DevExpress.XtraEditors.PanelControl();
     this.memoEdit3 = new DevExpress.XtraEditors.MemoEdit();
     this.label23 = new System.Windows.Forms.Label();
     this.label24 = new System.Windows.Forms.Label();
     this.label29 = new System.Windows.Forms.Label();
     this.textEdit4 = new DevExpress.XtraEditors.TextEdit();
     this.textEdit6 = new DevExpress.XtraEditors.TextEdit();
     this.panelControl6 = new DevExpress.XtraEditors.PanelControl();
     this.memoEdit4 = new DevExpress.XtraEditors.MemoEdit();
     this.label22 = new System.Windows.Forms.Label();
     this.xtraTabPage5 = new DevExpress.XtraTab.XtraTabPage();
     this.xtraTabPage7 = new DevExpress.XtraTab.XtraTabPage();
     this.panelControl3 = new DevExpress.XtraEditors.PanelControl();
     this.lookUpEdit2 = new DevExpress.XtraEditors.LookUpEdit();
     this.label31 = new System.Windows.Forms.Label();
     this.paTitleSearch.SuspendLayout();
     this.paTopBasicButtons.SuspendLayout();
     this.paTopSearch.SuspendLayout();
     this.paBottomSearch.SuspendLayout();
     this.panel1.SuspendLayout();
     this.paSearchGen.SuspendLayout();
     this.panel2.SuspendLayout();
     this.paInferior.SuspendLayout();
     this.paTitulo.SuspendLayout();
     this.paCentral.SuspendLayout();
     this.paSuperior.SuspendLayout();
     this.thePanelTab1.SuspendLayout();
     this.tpDatos.SuspendLayout();
     this.paSupBotones.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gcShowColumns)).BeginInit();
     this.gcShowColumns.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit10.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit9.Properties)).BeginInit();
     this.panel7.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.tbResidue.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbAmortization.Properties)).BeginInit();
     this.panel5.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.tbTotalIgv.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbTotalAmount.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbSubTotalAmount.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gcReception)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvReception)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repDescription)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repProcedence)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repEnvelope_sealed)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repSelect)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repResult)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repSendReport)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repLink)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repDesLink)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repSample)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl1)).BeginInit();
     this.xtraTabControl1.SuspendLayout();
     this.xtraTabPage3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.tbFax.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbClientPhone.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbClientRuc.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbClientDomicile.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbCompany.Properties)).BeginInit();
     this.xtraTabPage6.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gcContact)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvContact)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repPerson_type)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repPhone)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repCellPhone)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repNum)).BeginInit();
     this.xtraTabPage1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ckDispatchFax.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ckDispatchPerson.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ckDispatchTransport.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ckDispatchCurier.Properties)).BeginInit();
     this.expandablePanel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.tabOptionRight)).BeginInit();
     this.tabOptionRight.SuspendLayout();
     this.tpRightMethods.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.lookUpEdit3.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gcMethods)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvMethods)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repAddColumn)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit1.Properties)).BeginInit();
     this.tpRightReports.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gcReport)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvReport)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repStatusReport)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repReportOption)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repDateReport)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repTimeReport)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repTypeReport)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
     this.groupControl1.SuspendLayout();
     this.tpRightAttach.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gcAttachFile)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvAttachFile)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repAttach_file)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repAttach_status)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repButtons)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).BeginInit();
     this.groupControl2.SuspendLayout();
     this.tpRightProgram.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gcProgram)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvProgram)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repProgramStatus)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repProgramButton)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repDateProgram)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repTimeProgram)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl3)).BeginInit();
     this.groupControl3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.deReception.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.deResult.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl2)).BeginInit();
     this.xtraTabControl2.SuspendLayout();
     this.tabDateRegRecep.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.tbNumDays.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.deHourResult.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.deHourReception.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lookUpEdit1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit3.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txIdrecep_sample.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbTypeSample.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbAdministrativeExpense.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbCod_recep_sample.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
     this.panelControl1.SuspendLayout();
     this.panel9.SuspendLayout();
     this.panel11.SuspendLayout();
     this.paTypeSample.SuspendLayout();
     this.paCodRegisterRecep.SuspendLayout();
     this.contextMenuStrip1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).BeginInit();
     this.panelControl2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl3)).BeginInit();
     this.xtraTabControl3.SuspendLayout();
     this.tpMuestras.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl7)).BeginInit();
     this.panelControl7.SuspendLayout();
     this.tpAnexos.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit8.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.memoEdit1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit7.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl4)).BeginInit();
     this.groupControl4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit2.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.timeEdit1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEdit1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit6.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit5.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit4.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit3.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit2.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit5.Properties)).BeginInit();
     this.tpReject.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.memoEdit2.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gcRejection)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.bandedGridView1)).BeginInit();
     this.tpDecree.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl4)).BeginInit();
     this.panelControl4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl4)).BeginInit();
     this.xtraTabControl4.SuspendLayout();
     this.xtraTabPage4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridDecretos)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repMetodo)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repUnidadMedida)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repCriterio)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl5)).BeginInit();
     this.panelControl5.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.memoEdit3.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit4.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit6.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl6)).BeginInit();
     this.panelControl6.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.memoEdit4.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl3)).BeginInit();
     this.panelControl3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.lookUpEdit2.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // imageList1
     //
     this.imageList1.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
     this.imageList1.Images.SetKeyName(0, "save.png");
     this.imageList1.Images.SetKeyName(1, "nuevo.png");
     this.imageList1.Images.SetKeyName(2, "eliminar.png");
     this.imageList1.Images.SetKeyName(3, "buscar.png");
     this.imageList1.Images.SetKeyName(4, "salir.png");
     this.imageList1.Images.SetKeyName(5, "cancelar.png");
     this.imageList1.Images.SetKeyName(6, "ok.png");
     this.imageList1.Images.SetKeyName(7, "deshacer.png");
     this.imageList1.Images.SetKeyName(8, "editar.png");
     this.imageList1.Images.SetKeyName(9, "uncheck16x16.png");
     this.imageList1.Images.SetKeyName(10, "check16x16.png");
     this.imageList1.Images.SetKeyName(11, "stock-copy.png");
     this.imageList1.Images.SetKeyName(12, "copy_blusky.png");
     this.imageList1.Images.SetKeyName(13, "copy_price.png");
     //
     // paTitleSearch
     //
     this.paTitleSearch.Size = new System.Drawing.Size(526, 37);
     //
     // label1
     //
     this.label1.Size = new System.Drawing.Size(443, 37);
     this.label1.Text = "Recepción de Muestras - Búsqueda";
     //
     // txtBuscar
     //
     this.txtBuscar.Location = new System.Drawing.Point(774, 56);
     this.txtBuscar.Size = new System.Drawing.Size(40, 21);
     this.txtBuscar.Visible = false;
     //
     // cbCampo
     //
     this.cbCampo.Location = new System.Drawing.Point(872, 56);
     this.cbCampo.Size = new System.Drawing.Size(35, 21);
     this.cbCampo.Visible = false;
     //
     // paTopBasicButtons
     //
     this.paTopBasicButtons.Controls.Add(this.ucGenerarDesde);
     this.paTopBasicButtons.Controls.Add(this.ucGenerarA);
     this.paTopBasicButtons.Controls.Add(this.ucSignReception);
     this.paTopBasicButtons.Size = new System.Drawing.Size(714, 46);
     this.paTopBasicButtons.Controls.SetChildIndex(this.btEliminar2, 0);
     this.paTopBasicButtons.Controls.SetChildIndex(this.btNuevo2, 0);
     this.paTopBasicButtons.Controls.SetChildIndex(this.btGuardar, 0);
     this.paTopBasicButtons.Controls.SetChildIndex(this.ucSignReception, 0);
     this.paTopBasicButtons.Controls.SetChildIndex(this.ucGenerarA, 0);
     this.paTopBasicButtons.Controls.SetChildIndex(this.ucGenerarDesde, 0);
     //
     // btSalir2
     //
     this.btSalir2.FlatAppearance.BorderColor = System.Drawing.SystemColors.Control;
     this.btSalir2.FlatAppearance.BorderSize = 0;
     this.btSalir2.Location = new System.Drawing.Point(10, 5);
     this.btSalir2.TabStop = false;
     //
     // btGuardar
     //
     this.btGuardar.Enabled = false;
     this.btGuardar.FlatAppearance.BorderColor = System.Drawing.SystemColors.Control;
     this.btGuardar.FlatAppearance.BorderSize = 0;
     this.btGuardar.Location = new System.Drawing.Point(138, 4);
     this.btGuardar.Size = new System.Drawing.Size(62, 25);
     this.btGuardar.Text = "&Firmar";
     this.btGuardar.Visible = false;
     //
     // btNuevo2
     //
     this.btNuevo2.FlatAppearance.BorderColor = System.Drawing.SystemColors.Control;
     this.btNuevo2.FlatAppearance.BorderSize = 0;
     this.btNuevo2.Location = new System.Drawing.Point(151, 10);
     this.btNuevo2.Visible = false;
     //
     // btEliminar2
     //
     this.btEliminar2.FlatAppearance.BorderColor = System.Drawing.SystemColors.Control;
     this.btEliminar2.FlatAppearance.BorderSize = 0;
     this.btEliminar2.Location = new System.Drawing.Point(138, 21);
     this.btEliminar2.Visible = false;
     //
     // paTopSearch
     //
     this.paTopSearch.Size = new System.Drawing.Size(526, 53);
     //
     // paBottomSearch
     //
     this.paBottomSearch.Location = new System.Drawing.Point(3, 201);
     this.paBottomSearch.Size = new System.Drawing.Size(526, 43);
     this.paBottomSearch.Visible = false;
     //
     // btBuscar
     //
     this.btBuscar.FlatAppearance.BorderColor = System.Drawing.SystemColors.Control;
     this.btBuscar.FlatAppearance.BorderSize = 0;
     this.btBuscar.Location = new System.Drawing.Point(12, 2);
     //
     // btEditar
     //
     this.btEditar.FlatAppearance.BorderColor = System.Drawing.SystemColors.Control;
     this.btEditar.FlatAppearance.BorderSize = 0;
     //
     // btCancel
     //
     this.btCancel.FlatAppearance.BorderColor = System.Drawing.SystemColors.Control;
     this.btCancel.FlatAppearance.BorderSize = 0;
     //
     // btOk
     //
     this.btOk.FlatAppearance.BorderColor = System.Drawing.SystemColors.Control;
     this.btOk.FlatAppearance.BorderSize = 0;
     //
     // panel1
     //
     this.panel1.Location = new System.Drawing.Point(927, 0);
     this.panel1.Size = new System.Drawing.Size(72, 46);
     //
     // btFiltroBuscar
     //
     this.btFiltroBuscar.FlatAppearance.BorderColor = System.Drawing.SystemColors.Control;
     this.btFiltroBuscar.FlatAppearance.BorderSize = 0;
     this.btFiltroBuscar.Location = new System.Drawing.Point(495, 17);
     //
     // paSearchGen
     //
     this.paSearchGen.Location = new System.Drawing.Point(5, 2);
     this.paSearchGen.Size = new System.Drawing.Size(930, 49);
     //
     // label3
     //
     this.label3.Location = new System.Drawing.Point(823, 58);
     this.label3.Visible = false;
     //
     // label2
     //
     this.label2.Location = new System.Drawing.Point(656, 52);
     this.label2.Visible = false;
     //
     // paMiddleFind
     //
     this.paMiddleFind.Location = new System.Drawing.Point(3, 93);
     this.paMiddleFind.Size = new System.Drawing.Size(526, 108);
     //
     // panel2
     //
     this.panel2.Dock = System.Windows.Forms.DockStyle.None;
     this.panel2.Size = new System.Drawing.Size(74, 21);
     //
     // paInferior
     //
     this.paInferior.Controls.Add(this.btReportClient);
     this.paInferior.Controls.Add(this.btDesignPrint);
     this.paInferior.Controls.Add(this.btPrintTicket);
     this.paInferior.Location = new System.Drawing.Point(3, 559);
     this.paInferior.Size = new System.Drawing.Size(999, 46);
     this.paInferior.Controls.SetChildIndex(this.panel1, 0);
     this.paInferior.Controls.SetChildIndex(this.paTopBasicButtons, 0);
     this.paInferior.Controls.SetChildIndex(this.btPrintTicket, 0);
     this.paInferior.Controls.SetChildIndex(this.btDesignPrint, 0);
     this.paInferior.Controls.SetChildIndex(this.btReportClient, 0);
     //
     // paTitulo
     //
     this.paTitulo.Controls.Add(this.ucTitleRegisterRecep);
     this.paTitulo.Size = new System.Drawing.Size(999, 27);
     this.paTitulo.Visible = false;
     this.paTitulo.Controls.SetChildIndex(this.panel2, 0);
     this.paTitulo.Controls.SetChildIndex(this.laTitulo, 0);
     this.paTitulo.Controls.SetChildIndex(this.ucTitleRegisterRecep, 0);
     //
     // paCentral
     //
     this.paCentral.Controls.Add(this.panelControl2);
     this.paCentral.Location = new System.Drawing.Point(3, 176);
     this.paCentral.Size = new System.Drawing.Size(999, 383);
     //
     // paSuperior
     //
     this.paSuperior.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.paSuperior.Controls.Add(this.panelControl1);
     this.paSuperior.Location = new System.Drawing.Point(3, 30);
     this.paSuperior.Size = new System.Drawing.Size(999, 146);
     //
     // laTitulo
     //
     this.laTitulo.Dock = System.Windows.Forms.DockStyle.None;
     this.laTitulo.Size = new System.Drawing.Size(602, 27);
     this.laTitulo.Text = "Registro de Recepción";
     //
     // thePanelTab1
     //
     this.thePanelTab1.Location = new System.Drawing.Point(0, 25);
     this.thePanelTab1.Size = new System.Drawing.Size(1013, 637);
     //
     // tpDatos
     //
     this.tpDatos.Size = new System.Drawing.Size(1005, 608);
     //
     // paSupBotones
     //
     this.paSupBotones.Controls.Add(this.ucToolStrip1);
     this.paSupBotones.Padding = new System.Windows.Forms.Padding(0);
     this.paSupBotones.Size = new System.Drawing.Size(1013, 25);
     this.paSupBotones.Visible = true;
     //
     // gcShowColumns
     //
     this.gcShowColumns.Controls.Add(this.checkEdit10);
     this.gcShowColumns.Controls.Add(this.checkEdit9);
     this.gcShowColumns.Location = new System.Drawing.Point(230, 8);
     this.gcShowColumns.Name = "gcShowColumns";
     this.gcShowColumns.Size = new System.Drawing.Size(176, 46);
     this.gcShowColumns.TabIndex = 24;
     this.gcShowColumns.Text = "Mostrar columnas";
     //
     // checkEdit10
     //
     this.checkEdit10.Location = new System.Drawing.Point(96, 21);
     this.checkEdit10.Name = "checkEdit10";
     this.checkEdit10.Properties.Caption = "Métodos";
     this.checkEdit10.Size = new System.Drawing.Size(75, 19);
     this.checkEdit10.TabIndex = 23;
     //
     // checkEdit9
     //
     this.checkEdit9.Location = new System.Drawing.Point(15, 21);
     this.checkEdit9.Name = "checkEdit9";
     this.checkEdit9.Properties.Caption = "Datos";
     this.checkEdit9.Size = new System.Drawing.Size(75, 19);
     this.checkEdit9.TabIndex = 23;
     //
     // panel7
     //
     this.panel7.Controls.Add(this.paDelete);
     this.panel7.Dock = System.Windows.Forms.DockStyle.Right;
     this.panel7.Location = new System.Drawing.Point(492, 2);
     this.panel7.Name = "panel7";
     this.panel7.Size = new System.Drawing.Size(53, 66);
     this.panel7.TabIndex = 22;
     //
     // paDelete
     //
     this.paDelete.AllowDrop = true;
     this.paDelete.Anchor = System.Windows.Forms.AnchorStyles.Right;
     this.paDelete.BackgroundImage = global::LimsProject.Properties.Resources.delete_column;
     this.paDelete.Location = new System.Drawing.Point(19, 2);
     this.paDelete.Name = "paDelete";
     this.paDelete.Size = new System.Drawing.Size(31, 32);
     this.paDelete.TabIndex = 21;
     this.paDelete.DragDrop += new System.Windows.Forms.DragEventHandler(this.paDelete_DragDrop);
     this.paDelete.DragEnter += new System.Windows.Forms.DragEventHandler(this.paDelete_DragEnter);
     //
     // tbResidue
     //
     this.tbResidue.EditValue = new decimal(new int[] {
     0,
     0,
     0,
     0});
     this.tbResidue.Location = new System.Drawing.Point(82, 25);
     this.tbResidue.Name = "tbResidue";
     this.tbResidue.Properties.Appearance.BackColor = System.Drawing.Color.LemonChiffon;
     this.tbResidue.Properties.Appearance.Options.UseBackColor = true;
     this.tbResidue.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Ellipsis, "", -1, true, false, false, DevExpress.Utils.HorzAlignment.Center, null)});
     this.tbResidue.Properties.Mask.EditMask = "n2";
     this.tbResidue.Size = new System.Drawing.Size(87, 20);
     this.tbResidue.TabIndex = 17;
     //
     // tbAmortization
     //
     this.tbAmortization.EditValue = new decimal(new int[] {
     0,
     0,
     0,
     0});
     this.tbAmortization.Location = new System.Drawing.Point(82, 5);
     this.tbAmortization.Name = "tbAmortization";
     this.tbAmortization.Properties.Appearance.BackColor = System.Drawing.Color.LemonChiffon;
     this.tbAmortization.Properties.Appearance.Options.UseBackColor = true;
     this.tbAmortization.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Ellipsis, "", -1, true, false, false, DevExpress.Utils.HorzAlignment.Center, null)});
     this.tbAmortization.Properties.Mask.EditMask = "n2";
     this.tbAmortization.Size = new System.Drawing.Size(87, 20);
     this.tbAmortization.TabIndex = 17;
     this.tbAmortization.EditValueChanged += new System.EventHandler(this.tbAmortization_EditValueChanged);
     //
     // panel5
     //
     this.panel5.Controls.Add(this.tbTotalIgv);
     this.panel5.Controls.Add(this.tbTotalAmount);
     this.panel5.Controls.Add(this.tbSubTotalAmount);
     this.panel5.Controls.Add(this.label7);
     this.panel5.Controls.Add(this.label5);
     this.panel5.Controls.Add(this.label4);
     this.panel5.Dock = System.Windows.Forms.DockStyle.Right;
     this.panel5.Location = new System.Drawing.Point(545, 2);
     this.panel5.Name = "panel5";
     this.panel5.Size = new System.Drawing.Size(152, 66);
     this.panel5.TabIndex = 22;
     //
     // tbTotalIgv
     //
     this.tbTotalIgv.EditValue = new decimal(new int[] {
     0,
     0,
     0,
     0});
     this.tbTotalIgv.Location = new System.Drawing.Point(58, 23);
     this.tbTotalIgv.Name = "tbTotalIgv";
     this.tbTotalIgv.Properties.Appearance.BackColor = System.Drawing.Color.LemonChiffon;
     this.tbTotalIgv.Properties.Appearance.Options.UseBackColor = true;
     this.tbTotalIgv.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Ellipsis, "", -1, true, false, false, DevExpress.Utils.HorzAlignment.Center, null)});
     this.tbTotalIgv.Properties.Mask.EditMask = "n2";
     this.tbTotalIgv.Properties.ReadOnly = true;
     this.tbTotalIgv.Size = new System.Drawing.Size(87, 20);
     this.tbTotalIgv.TabIndex = 17;
     this.tbTotalIgv.TabStop = false;
     //
     // tbTotalAmount
     //
     this.tbTotalAmount.EditValue = new decimal(new int[] {
     0,
     0,
     0,
     0});
     this.tbTotalAmount.Location = new System.Drawing.Point(58, 43);
     this.tbTotalAmount.Name = "tbTotalAmount";
     this.tbTotalAmount.Properties.Appearance.BackColor = System.Drawing.Color.LemonChiffon;
     this.tbTotalAmount.Properties.Appearance.Options.UseBackColor = true;
     this.tbTotalAmount.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Ellipsis, "", -1, true, false, false, DevExpress.Utils.HorzAlignment.Center, null)});
     this.tbTotalAmount.Properties.Mask.EditMask = "n2";
     this.tbTotalAmount.Properties.ReadOnly = true;
     this.tbTotalAmount.Size = new System.Drawing.Size(87, 20);
     this.tbTotalAmount.TabIndex = 17;
     this.tbTotalAmount.TabStop = false;
     //
     // tbSubTotalAmount
     //
     this.tbSubTotalAmount.EditValue = new decimal(new int[] {
     0,
     0,
     0,
     0});
     this.tbSubTotalAmount.Location = new System.Drawing.Point(58, 3);
     this.tbSubTotalAmount.Name = "tbSubTotalAmount";
     this.tbSubTotalAmount.Properties.Appearance.BackColor = System.Drawing.Color.LemonChiffon;
     this.tbSubTotalAmount.Properties.Appearance.Options.UseBackColor = true;
     this.tbSubTotalAmount.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Ellipsis, "", -1, true, false, false, DevExpress.Utils.HorzAlignment.Center, null)});
     this.tbSubTotalAmount.Properties.Mask.EditMask = "n2";
     this.tbSubTotalAmount.Properties.ReadOnly = true;
     this.tbSubTotalAmount.Size = new System.Drawing.Size(87, 20);
     this.tbSubTotalAmount.TabIndex = 17;
     this.tbSubTotalAmount.TabStop = false;
     //
     // label7
     //
     this.label7.AutoSize = true;
     this.label7.Location = new System.Drawing.Point(6, 46);
     this.label7.Name = "label7";
     this.label7.Size = new System.Drawing.Size(34, 13);
     this.label7.TabIndex = 16;
     this.label7.Text = "Total:";
     //
     // label5
     //
     this.label5.AutoSize = true;
     this.label5.Location = new System.Drawing.Point(6, 26);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(25, 13);
     this.label5.TabIndex = 16;
     this.label5.Text = "Igv:";
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.Location = new System.Drawing.Point(6, 6);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(52, 13);
     this.label4.TabIndex = 16;
     this.label4.Text = "Sub total:";
     //
     // label13
     //
     this.label13.AutoSize = true;
     this.label13.Location = new System.Drawing.Point(10, 8);
     this.label13.Name = "label13";
     this.label13.Size = new System.Drawing.Size(70, 13);
     this.label13.TabIndex = 16;
     this.label13.Text = "Amortización:";
     //
     // label10
     //
     this.label10.AutoSize = true;
     this.label10.Location = new System.Drawing.Point(12, 28);
     this.label10.Name = "label10";
     this.label10.Size = new System.Drawing.Size(37, 13);
     this.label10.TabIndex = 16;
     this.label10.Text = "Saldo:";
     //
     // panel6
     //
     this.panel6.Dock = System.Windows.Forms.DockStyle.Right;
     this.panel6.Location = new System.Drawing.Point(542, 0);
     this.panel6.Name = "panel6";
     this.panel6.Size = new System.Drawing.Size(191, 77);
     this.panel6.TabIndex = 3;
     //
     // gcReception
     //
     this.gcReception.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gcReception.EmbeddedNavigator.Buttons.First.Visible = false;
     this.gcReception.EmbeddedNavigator.Buttons.Last.Visible = false;
     this.gcReception.EmbeddedNavigator.Buttons.NextPage.Visible = false;
     this.gcReception.EmbeddedNavigator.Buttons.PrevPage.Visible = false;
     this.gcReception.EmbeddedNavigator.Enabled = false;
     this.gcReception.EmbeddedNavigator.Name = "";
     this.gcReception.Location = new System.Drawing.Point(0, 0);
     this.gcReception.MainView = this.gvReception;
     this.gcReception.Name = "gcReception";
     this.gcReception.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repDescription,
     this.repSelect,
     this.repResult,
     this.repSendReport,
     this.repLink,
     this.repDesLink,
     this.repProcedence,
     this.repSample,
     this.repEnvelope_sealed});
     this.gcReception.Size = new System.Drawing.Size(699, 288);
     this.gcReception.TabIndex = 1;
     this.gcReception.UseEmbeddedNavigator = true;
     this.gcReception.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gvReception});
     this.gcReception.MouseDown += new System.Windows.Forms.MouseEventHandler(this.gcReception_MouseDown);
     this.gcReception.MouseMove += new System.Windows.Forms.MouseEventHandler(this.gcReception_MouseMove);
     //
     // gvReception
     //
     this.gvReception.Appearance.ColumnFilterButton.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvReception.Appearance.ColumnFilterButton.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(171)))), ((int)(((byte)(228)))));
     this.gvReception.Appearance.ColumnFilterButton.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvReception.Appearance.ColumnFilterButton.ForeColor = System.Drawing.Color.Black;
     this.gvReception.Appearance.ColumnFilterButton.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.gvReception.Appearance.ColumnFilterButton.Options.UseBackColor = true;
     this.gvReception.Appearance.ColumnFilterButton.Options.UseBorderColor = true;
     this.gvReception.Appearance.ColumnFilterButton.Options.UseForeColor = true;
     this.gvReception.Appearance.ColumnFilterButtonActive.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(247)))), ((int)(((byte)(251)))), ((int)(((byte)(255)))));
     this.gvReception.Appearance.ColumnFilterButtonActive.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(154)))), ((int)(((byte)(190)))), ((int)(((byte)(243)))));
     this.gvReception.Appearance.ColumnFilterButtonActive.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(247)))), ((int)(((byte)(251)))), ((int)(((byte)(255)))));
     this.gvReception.Appearance.ColumnFilterButtonActive.ForeColor = System.Drawing.Color.Black;
     this.gvReception.Appearance.ColumnFilterButtonActive.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.gvReception.Appearance.ColumnFilterButtonActive.Options.UseBackColor = true;
     this.gvReception.Appearance.ColumnFilterButtonActive.Options.UseBorderColor = true;
     this.gvReception.Appearance.ColumnFilterButtonActive.Options.UseForeColor = true;
     this.gvReception.Appearance.Empty.BackColor = System.Drawing.Color.White;
     this.gvReception.Appearance.Empty.Options.UseBackColor = true;
     this.gvReception.Appearance.EvenRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(231)))), ((int)(((byte)(242)))), ((int)(((byte)(254)))));
     this.gvReception.Appearance.EvenRow.ForeColor = System.Drawing.Color.Black;
     this.gvReception.Appearance.EvenRow.Options.UseBackColor = true;
     this.gvReception.Appearance.EvenRow.Options.UseForeColor = true;
     this.gvReception.Appearance.FilterCloseButton.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvReception.Appearance.FilterCloseButton.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(171)))), ((int)(((byte)(228)))));
     this.gvReception.Appearance.FilterCloseButton.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvReception.Appearance.FilterCloseButton.ForeColor = System.Drawing.Color.Black;
     this.gvReception.Appearance.FilterCloseButton.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.gvReception.Appearance.FilterCloseButton.Options.UseBackColor = true;
     this.gvReception.Appearance.FilterCloseButton.Options.UseBorderColor = true;
     this.gvReception.Appearance.FilterCloseButton.Options.UseForeColor = true;
     this.gvReception.Appearance.FilterPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(62)))), ((int)(((byte)(109)))), ((int)(((byte)(185)))));
     this.gvReception.Appearance.FilterPanel.ForeColor = System.Drawing.Color.White;
     this.gvReception.Appearance.FilterPanel.Options.UseBackColor = true;
     this.gvReception.Appearance.FilterPanel.Options.UseForeColor = true;
     this.gvReception.Appearance.FixedLine.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(59)))), ((int)(((byte)(97)))), ((int)(((byte)(156)))));
     this.gvReception.Appearance.FixedLine.Options.UseBackColor = true;
     this.gvReception.Appearance.FocusedCell.BackColor = System.Drawing.Color.White;
     this.gvReception.Appearance.FocusedCell.ForeColor = System.Drawing.Color.Black;
     this.gvReception.Appearance.FocusedCell.Options.UseBackColor = true;
     this.gvReception.Appearance.FocusedCell.Options.UseForeColor = true;
     this.gvReception.Appearance.FocusedRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(49)))), ((int)(((byte)(106)))), ((int)(((byte)(197)))));
     this.gvReception.Appearance.FocusedRow.ForeColor = System.Drawing.Color.White;
     this.gvReception.Appearance.FocusedRow.Options.UseBackColor = true;
     this.gvReception.Appearance.FocusedRow.Options.UseForeColor = true;
     this.gvReception.Appearance.FooterPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvReception.Appearance.FooterPanel.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(171)))), ((int)(((byte)(228)))));
     this.gvReception.Appearance.FooterPanel.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvReception.Appearance.FooterPanel.ForeColor = System.Drawing.Color.Black;
     this.gvReception.Appearance.FooterPanel.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.gvReception.Appearance.FooterPanel.Options.UseBackColor = true;
     this.gvReception.Appearance.FooterPanel.Options.UseBorderColor = true;
     this.gvReception.Appearance.FooterPanel.Options.UseForeColor = true;
     this.gvReception.Appearance.GroupButton.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.gvReception.Appearance.GroupButton.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.gvReception.Appearance.GroupButton.ForeColor = System.Drawing.Color.Black;
     this.gvReception.Appearance.GroupButton.Options.UseBackColor = true;
     this.gvReception.Appearance.GroupButton.Options.UseBorderColor = true;
     this.gvReception.Appearance.GroupButton.Options.UseForeColor = true;
     this.gvReception.Appearance.GroupFooter.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.gvReception.Appearance.GroupFooter.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.gvReception.Appearance.GroupFooter.ForeColor = System.Drawing.Color.Black;
     this.gvReception.Appearance.GroupFooter.Options.UseBackColor = true;
     this.gvReception.Appearance.GroupFooter.Options.UseBorderColor = true;
     this.gvReception.Appearance.GroupFooter.Options.UseForeColor = true;
     this.gvReception.Appearance.GroupPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(62)))), ((int)(((byte)(109)))), ((int)(((byte)(185)))));
     this.gvReception.Appearance.GroupPanel.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvReception.Appearance.GroupPanel.Options.UseBackColor = true;
     this.gvReception.Appearance.GroupPanel.Options.UseForeColor = true;
     this.gvReception.Appearance.GroupRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.gvReception.Appearance.GroupRow.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.gvReception.Appearance.GroupRow.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
     this.gvReception.Appearance.GroupRow.ForeColor = System.Drawing.Color.Black;
     this.gvReception.Appearance.GroupRow.Options.UseBackColor = true;
     this.gvReception.Appearance.GroupRow.Options.UseBorderColor = true;
     this.gvReception.Appearance.GroupRow.Options.UseFont = true;
     this.gvReception.Appearance.GroupRow.Options.UseForeColor = true;
     this.gvReception.Appearance.HeaderPanel.BackColor = System.Drawing.Color.LightSteelBlue;
     this.gvReception.Appearance.HeaderPanel.BackColor2 = System.Drawing.Color.LightSteelBlue;
     this.gvReception.Appearance.HeaderPanel.Options.UseBackColor = true;
     this.gvReception.Appearance.HideSelectionRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(106)))), ((int)(((byte)(153)))), ((int)(((byte)(228)))));
     this.gvReception.Appearance.HideSelectionRow.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(208)))), ((int)(((byte)(224)))), ((int)(((byte)(251)))));
     this.gvReception.Appearance.HideSelectionRow.Options.UseBackColor = true;
     this.gvReception.Appearance.HideSelectionRow.Options.UseForeColor = true;
     this.gvReception.Appearance.HorzLine.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(99)))), ((int)(((byte)(127)))), ((int)(((byte)(196)))));
     this.gvReception.Appearance.HorzLine.Options.UseBackColor = true;
     this.gvReception.Appearance.OddRow.BackColor = System.Drawing.Color.White;
     this.gvReception.Appearance.OddRow.ForeColor = System.Drawing.Color.Black;
     this.gvReception.Appearance.OddRow.Options.UseBackColor = true;
     this.gvReception.Appearance.OddRow.Options.UseForeColor = true;
     this.gvReception.Appearance.Preview.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(249)))), ((int)(((byte)(252)))), ((int)(((byte)(255)))));
     this.gvReception.Appearance.Preview.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(88)))), ((int)(((byte)(129)))), ((int)(((byte)(185)))));
     this.gvReception.Appearance.Preview.Options.UseBackColor = true;
     this.gvReception.Appearance.Preview.Options.UseForeColor = true;
     this.gvReception.Appearance.Row.BackColor = System.Drawing.Color.White;
     this.gvReception.Appearance.Row.ForeColor = System.Drawing.Color.Black;
     this.gvReception.Appearance.Row.Options.UseBackColor = true;
     this.gvReception.Appearance.Row.Options.UseForeColor = true;
     this.gvReception.Appearance.RowSeparator.BackColor = System.Drawing.Color.White;
     this.gvReception.Appearance.RowSeparator.Options.UseBackColor = true;
     this.gvReception.Appearance.SelectedRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(69)))), ((int)(((byte)(126)))), ((int)(((byte)(217)))));
     this.gvReception.Appearance.SelectedRow.ForeColor = System.Drawing.Color.White;
     this.gvReception.Appearance.SelectedRow.Options.UseBackColor = true;
     this.gvReception.Appearance.SelectedRow.Options.UseForeColor = true;
     this.gvReception.Appearance.VertLine.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(99)))), ((int)(((byte)(127)))), ((int)(((byte)(196)))));
     this.gvReception.Appearance.VertLine.Options.UseBackColor = true;
     this.gvReception.ColumnPanelRowHeight = 125;
     this.gvReception.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gcRec_idrecep_sample_detail,
     this.gcRec_OrderSample,
     this.gcRec_Description,
     this.gcRec_Idmr_detail,
     this.gcRec_Type_Sample,
     this.gcRec_Procedence,
     this.gcRec_Code,
     this.gcRec_Cod_interno,
     this.gcRec_NameSample,
     this.gcRec_Flag_envelope_sealed,
     this.gcRec_CantKg,
     this.gcRec_Reject,
     this.gcRec_Counter_Sample,
     this.gcRec_Days,
     this.gcRec_Cost,
     this.gcDyn1,
     this.gcDyn2,
     this.gcDyn3,
     this.gcDyn4,
     this.gcDyn5,
     this.gcDyn6,
     this.gcDyn7,
     this.gcDyn8,
     this.gcDyn9,
     this.gcDyn10,
     this.gcDyn11,
     this.gcDyn12,
     this.gcDyn13,
     this.gcDyn14,
     this.gcDyn15,
     this.gcDyn16,
     this.gcDyn17,
     this.gcDyn18,
     this.gcDyn19,
     this.gcDyn20,
     this.gcAgua_Code,
     this.gcAgua_Cod_interno,
     this.gcAgua_Date,
     this.gcAgua_Hour,
     this.gcAgua_Cod_matrix,
     this.gcAgua_Cod_campo,
     this.gcAgua_NameSample,
     this.gcAgua_Ubigeo,
     this.gcAgua_UTM,
     this.gcAgua_Num_bottle_plastic,
     this.gcAgua_Num_bottle_glass,
     this.gcAgua_Volumen});
     this.gvReception.GridControl = this.gcReception;
     this.gvReception.Images = this.imageList1;
     this.gvReception.Name = "gvReception";
     this.gvReception.OptionsCustomization.AllowColumnMoving = false;
     this.gvReception.OptionsCustomization.AllowSort = false;
     this.gvReception.OptionsFilter.AllowColumnMRUFilterList = false;
     this.gvReception.OptionsFilter.AllowMRUFilterList = false;
     this.gvReception.OptionsSelection.MultiSelect = true;
     this.gvReception.OptionsView.ColumnAutoWidth = false;
     this.gvReception.OptionsView.EnableAppearanceEvenRow = true;
     this.gvReception.OptionsView.EnableAppearanceOddRow = true;
     this.gvReception.OptionsView.ShowFilterPanel = false;
     this.gvReception.OptionsView.ShowGroupPanel = false;
     this.gvReception.CustomDrawColumnHeader += new DevExpress.XtraGrid.Views.Grid.ColumnHeaderCustomDrawEventHandler(this.gvReception_CustomDrawColumnHeader);
     this.gvReception.RowCellStyle += new DevExpress.XtraGrid.Views.Grid.RowCellStyleEventHandler(this.gvReception_RowCellStyle);
     this.gvReception.InitNewRow += new DevExpress.XtraGrid.Views.Grid.InitNewRowEventHandler(this.gvReception_InitNewRow);
     this.gvReception.FocusedRowChanged += new DevExpress.XtraGrid.Views.Base.FocusedRowChangedEventHandler(this.gvReception_FocusedRowChanged);
     this.gvReception.CellValueChanging += new DevExpress.XtraGrid.Views.Base.CellValueChangedEventHandler(this.gvReception_CellValueChanging);
     this.gvReception.KeyDown += new System.Windows.Forms.KeyEventHandler(this.gvReception_KeyDown);
     this.gvReception.Click += new System.EventHandler(this.gvReception_Click);
     this.gvReception.RowCountChanged += new System.EventHandler(this.gvReception_RowCountChanged);
     //
     // gcRec_idrecep_sample_detail
     //
     this.gcRec_idrecep_sample_detail.Caption = "gridColumn1";
     this.gcRec_idrecep_sample_detail.FieldName = "Idrecep_sample_detail";
     this.gcRec_idrecep_sample_detail.Name = "gcRec_idrecep_sample_detail";
     //
     // gcRec_OrderSample
     //
     this.gcRec_OrderSample.Caption = "N°";
     this.gcRec_OrderSample.FieldName = "Order_sample";
     this.gcRec_OrderSample.Name = "gcRec_OrderSample";
     this.gcRec_OrderSample.OptionsColumn.AllowEdit = false;
     this.gcRec_OrderSample.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gcRec_OrderSample.Visible = true;
     this.gcRec_OrderSample.VisibleIndex = 0;
     this.gcRec_OrderSample.Width = 32;
     //
     // gcRec_Description
     //
     this.gcRec_Description.Caption = "Descripción";
     this.gcRec_Description.ColumnEdit = this.repDescription;
     this.gcRec_Description.FieldName = "Cod_des_sample";
     this.gcRec_Description.Name = "gcRec_Description";
     this.gcRec_Description.Visible = true;
     this.gcRec_Description.VisibleIndex = 1;
     this.gcRec_Description.Width = 108;
     //
     // repDescription
     //
     this.repDescription.AutoHeight = false;
     serializableAppearanceObject1.BackColor = System.Drawing.Color.Transparent;
     serializableAppearanceObject1.BackColor2 = System.Drawing.Color.Transparent;
     serializableAppearanceObject1.BorderColor = System.Drawing.Color.Transparent;
     serializableAppearanceObject1.Options.UseBackColor = true;
     serializableAppearanceObject1.Options.UseBorderColor = true;
     this.repDescription.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo),
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Glyph, "", -1, true, true, false, DevExpress.Utils.HorzAlignment.Center, global::LimsProject.Properties.Resources.copiar, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject1)});
     this.repDescription.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Cod_des_sample", "", 20, DevExpress.Utils.FormatType.None, "", false, DevExpress.Utils.HorzAlignment.Default, DevExpress.Data.ColumnSortOrder.None),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Description")});
     this.repDescription.DisplayMember = "Description";
     this.repDescription.Name = "repDescription";
     this.repDescription.NullText = "Seleccionar";
     this.repDescription.ShowHeader = false;
     this.repDescription.ValueMember = "Cod_des_sample";
     this.repDescription.ButtonClick += new DevExpress.XtraEditors.Controls.ButtonPressedEventHandler(this.repDescription_ButtonClick);
     this.repDescription.EditValueChanged += new System.EventHandler(this.repDescription_EditValueChanged);
     //
     // gcRec_Idmr_detail
     //
     this.gcRec_Idmr_detail.Caption = "Idmr_detail";
     this.gcRec_Idmr_detail.FieldName = "Idmr_detail";
     this.gcRec_Idmr_detail.Name = "gcRec_Idmr_detail";
     //
     // gcRec_Type_Sample
     //
     this.gcRec_Type_Sample.Caption = "Tipo de Muestra";
     this.gcRec_Type_Sample.FieldName = "Cod_type_sample";
     this.gcRec_Type_Sample.Name = "gcRec_Type_Sample";
     this.gcRec_Type_Sample.Width = 125;
     //
     // gcRec_Procedence
     //
     this.gcRec_Procedence.Caption = "Procedencia";
     this.gcRec_Procedence.ColumnEdit = this.repProcedence;
     this.gcRec_Procedence.FieldName = "Procedence";
     this.gcRec_Procedence.Name = "gcRec_Procedence";
     this.gcRec_Procedence.Visible = true;
     this.gcRec_Procedence.VisibleIndex = 2;
     this.gcRec_Procedence.Width = 113;
     //
     // repProcedence
     //
     this.repProcedence.AutoHeight = false;
     this.repProcedence.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Glyph, "", -1, true, true, false, DevExpress.Utils.HorzAlignment.Center, global::LimsProject.Properties.Resources.copiar)});
     this.repProcedence.Name = "repProcedence";
     this.repProcedence.ButtonClick += new DevExpress.XtraEditors.Controls.ButtonPressedEventHandler(this.repProcedence_ButtonClick);
     //
     // gcRec_Code
     //
     this.gcRec_Code.Caption = "Código";
     this.gcRec_Code.FieldName = "Cod_sample";
     this.gcRec_Code.Name = "gcRec_Code";
     this.gcRec_Code.OptionsColumn.AllowEdit = false;
     this.gcRec_Code.Visible = true;
     this.gcRec_Code.VisibleIndex = 3;
     this.gcRec_Code.Width = 82;
     //
     // gcRec_Cod_interno
     //
     this.gcRec_Cod_interno.Caption = "Cod_interno";
     this.gcRec_Cod_interno.FieldName = "Cod_interno";
     this.gcRec_Cod_interno.Name = "gcRec_Cod_interno";
     //
     // gcRec_NameSample
     //
     this.gcRec_NameSample.Caption = "Nombre ";
     this.gcRec_NameSample.FieldName = "Name_sample";
     this.gcRec_NameSample.Name = "gcRec_NameSample";
     this.gcRec_NameSample.Visible = true;
     this.gcRec_NameSample.VisibleIndex = 4;
     this.gcRec_NameSample.Width = 114;
     //
     // gcRec_Flag_envelope_sealed
     //
     this.gcRec_Flag_envelope_sealed.Caption = "Sobre sellado";
     this.gcRec_Flag_envelope_sealed.ColumnEdit = this.repEnvelope_sealed;
     this.gcRec_Flag_envelope_sealed.FieldName = "Flag_envelope_sealed";
     this.gcRec_Flag_envelope_sealed.Name = "gcRec_Flag_envelope_sealed";
     this.gcRec_Flag_envelope_sealed.Visible = true;
     this.gcRec_Flag_envelope_sealed.VisibleIndex = 5;
     this.gcRec_Flag_envelope_sealed.Width = 41;
     //
     // repEnvelope_sealed
     //
     this.repEnvelope_sealed.AutoHeight = false;
     this.repEnvelope_sealed.Name = "repEnvelope_sealed";
     //
     // gcRec_CantKg
     //
     this.gcRec_CantKg.Caption = "Cant (kg)";
     this.gcRec_CantKg.FieldName = "Amount_weight";
     this.gcRec_CantKg.Name = "gcRec_CantKg";
     this.gcRec_CantKg.Visible = true;
     this.gcRec_CantKg.VisibleIndex = 6;
     this.gcRec_CantKg.Width = 52;
     //
     // gcRec_Reject
     //
     this.gcRec_Reject.Caption = "Rechazo";
     this.gcRec_Reject.FieldName = "Flag_reject";
     this.gcRec_Reject.ImageIndex = 9;
     this.gcRec_Reject.Name = "gcRec_Reject";
     this.gcRec_Reject.Visible = true;
     this.gcRec_Reject.VisibleIndex = 7;
     this.gcRec_Reject.Width = 50;
     //
     // gcRec_Counter_Sample
     //
     this.gcRec_Counter_Sample.Caption = "Contramuestra";
     this.gcRec_Counter_Sample.FieldName = "Flag_counter_sample";
     this.gcRec_Counter_Sample.Name = "gcRec_Counter_Sample";
     this.gcRec_Counter_Sample.Visible = true;
     this.gcRec_Counter_Sample.VisibleIndex = 8;
     this.gcRec_Counter_Sample.Width = 50;
     //
     // gcRec_Days
     //
     this.gcRec_Days.Caption = "Entrega(dias)";
     this.gcRec_Days.FieldName = "Analisys_time";
     this.gcRec_Days.Name = "gcRec_Days";
     this.gcRec_Days.Width = 41;
     //
     // gcRec_Cost
     //
     this.gcRec_Cost.Caption = "Costo";
     this.gcRec_Cost.FieldName = "Cost_sample";
     this.gcRec_Cost.Name = "gcRec_Cost";
     this.gcRec_Cost.Visible = true;
     this.gcRec_Cost.VisibleIndex = 9;
     this.gcRec_Cost.Width = 50;
     //
     // gcDyn1
     //
     this.gcDyn1.Caption = "gridColumn1";
     this.gcDyn1.ColumnEdit = this.repSelect;
     this.gcDyn1.FieldName = "rec1";
     this.gcDyn1.Name = "gcDyn1";
     this.gcDyn1.Width = 40;
     //
     // repSelect
     //
     this.repSelect.AutoHeight = false;
     this.repSelect.Name = "repSelect";
     //
     // gcDyn2
     //
     this.gcDyn2.Caption = "gridColumn2";
     this.gcDyn2.ColumnEdit = this.repSelect;
     this.gcDyn2.FieldName = "rec2";
     this.gcDyn2.Name = "gcDyn2";
     this.gcDyn2.Width = 40;
     //
     // gcDyn3
     //
     this.gcDyn3.Caption = "gridColumn3";
     this.gcDyn3.ColumnEdit = this.repSelect;
     this.gcDyn3.FieldName = "rec3";
     this.gcDyn3.Name = "gcDyn3";
     this.gcDyn3.Width = 35;
     //
     // gcDyn4
     //
     this.gcDyn4.Caption = "gridColumn4";
     this.gcDyn4.ColumnEdit = this.repSelect;
     this.gcDyn4.FieldName = "rec4";
     this.gcDyn4.Name = "gcDyn4";
     this.gcDyn4.Width = 35;
     //
     // gcDyn5
     //
     this.gcDyn5.Caption = "gridColumn5";
     this.gcDyn5.ColumnEdit = this.repSelect;
     this.gcDyn5.FieldName = "rec5";
     this.gcDyn5.Name = "gcDyn5";
     this.gcDyn5.Width = 35;
     //
     // gcDyn6
     //
     this.gcDyn6.Caption = "gridColumn6";
     this.gcDyn6.ColumnEdit = this.repSelect;
     this.gcDyn6.FieldName = "rec6";
     this.gcDyn6.Name = "gcDyn6";
     this.gcDyn6.Width = 35;
     //
     // gcDyn7
     //
     this.gcDyn7.Caption = "gridColumn7";
     this.gcDyn7.ColumnEdit = this.repSelect;
     this.gcDyn7.FieldName = "rec7";
     this.gcDyn7.Name = "gcDyn7";
     this.gcDyn7.Width = 35;
     //
     // gcDyn8
     //
     this.gcDyn8.Caption = "gridColumn8";
     this.gcDyn8.ColumnEdit = this.repSelect;
     this.gcDyn8.FieldName = "rec8";
     this.gcDyn8.Name = "gcDyn8";
     this.gcDyn8.Width = 35;
     //
     // gcDyn9
     //
     this.gcDyn9.Caption = "gridColumn9";
     this.gcDyn9.ColumnEdit = this.repSelect;
     this.gcDyn9.FieldName = "rec9";
     this.gcDyn9.Name = "gcDyn9";
     this.gcDyn9.Width = 35;
     //
     // gcDyn10
     //
     this.gcDyn10.Caption = "gridColumn10";
     this.gcDyn10.ColumnEdit = this.repSelect;
     this.gcDyn10.FieldName = "rec10";
     this.gcDyn10.Name = "gcDyn10";
     this.gcDyn10.Width = 35;
     //
     // gcDyn11
     //
     this.gcDyn11.Caption = "gridColumn11";
     this.gcDyn11.ColumnEdit = this.repSelect;
     this.gcDyn11.FieldName = "rec11";
     this.gcDyn11.Name = "gcDyn11";
     this.gcDyn11.Width = 35;
     //
     // gcDyn12
     //
     this.gcDyn12.Caption = "gridColumn12";
     this.gcDyn12.ColumnEdit = this.repSelect;
     this.gcDyn12.FieldName = "rec12";
     this.gcDyn12.Name = "gcDyn12";
     this.gcDyn12.Width = 35;
     //
     // gcDyn13
     //
     this.gcDyn13.Caption = "gridColumn13";
     this.gcDyn13.ColumnEdit = this.repSelect;
     this.gcDyn13.FieldName = "rec13";
     this.gcDyn13.Name = "gcDyn13";
     this.gcDyn13.Width = 35;
     //
     // gcDyn14
     //
     this.gcDyn14.Caption = "gridColumn14";
     this.gcDyn14.ColumnEdit = this.repSelect;
     this.gcDyn14.FieldName = "rec14";
     this.gcDyn14.Name = "gcDyn14";
     this.gcDyn14.Width = 35;
     //
     // gcDyn15
     //
     this.gcDyn15.Caption = "gridColumn15";
     this.gcDyn15.ColumnEdit = this.repSelect;
     this.gcDyn15.FieldName = "rec15";
     this.gcDyn15.Name = "gcDyn15";
     this.gcDyn15.Width = 35;
     //
     // gcDyn16
     //
     this.gcDyn16.Caption = "gridColumn16";
     this.gcDyn16.ColumnEdit = this.repSelect;
     this.gcDyn16.FieldName = "rec16";
     this.gcDyn16.Name = "gcDyn16";
     this.gcDyn16.Width = 35;
     //
     // gcDyn17
     //
     this.gcDyn17.Caption = "gridColumn17";
     this.gcDyn17.ColumnEdit = this.repSelect;
     this.gcDyn17.FieldName = "rec17";
     this.gcDyn17.Name = "gcDyn17";
     this.gcDyn17.Width = 35;
     //
     // gcDyn18
     //
     this.gcDyn18.Caption = "gridColumn18";
     this.gcDyn18.ColumnEdit = this.repSelect;
     this.gcDyn18.FieldName = "rec18";
     this.gcDyn18.Name = "gcDyn18";
     this.gcDyn18.Width = 35;
     //
     // gcDyn19
     //
     this.gcDyn19.Caption = "gridColumn19";
     this.gcDyn19.ColumnEdit = this.repSelect;
     this.gcDyn19.FieldName = "rec19";
     this.gcDyn19.Name = "gcDyn19";
     this.gcDyn19.Width = 35;
     //
     // gcDyn20
     //
     this.gcDyn20.Caption = "gridColumn20";
     this.gcDyn20.ColumnEdit = this.repSelect;
     this.gcDyn20.FieldName = "rec20";
     this.gcDyn20.Name = "gcDyn20";
     this.gcDyn20.Width = 35;
     //
     // gcAgua_Code
     //
     this.gcAgua_Code.Caption = "Código";
     this.gcAgua_Code.Name = "gcAgua_Code";
     //
     // gcAgua_Cod_interno
     //
     this.gcAgua_Cod_interno.Caption = "Cod_interno";
     this.gcAgua_Cod_interno.Name = "gcAgua_Cod_interno";
     //
     // gcAgua_Date
     //
     this.gcAgua_Date.Caption = "Fecha";
     this.gcAgua_Date.Name = "gcAgua_Date";
     //
     // gcAgua_Hour
     //
     this.gcAgua_Hour.Caption = "Hora";
     this.gcAgua_Hour.Name = "gcAgua_Hour";
     //
     // gcAgua_Cod_matrix
     //
     this.gcAgua_Cod_matrix.Caption = "Matriz";
     this.gcAgua_Cod_matrix.Name = "gcAgua_Cod_matrix";
     //
     // gcAgua_Cod_campo
     //
     this.gcAgua_Cod_campo.Caption = "Código de campo";
     this.gcAgua_Cod_campo.Name = "gcAgua_Cod_campo";
     //
     // gcAgua_NameSample
     //
     this.gcAgua_NameSample.Caption = "Nombre de muestra";
     this.gcAgua_NameSample.Name = "gcAgua_NameSample";
     //
     // gcAgua_Ubigeo
     //
     this.gcAgua_Ubigeo.Caption = "Zona, Urb, AAHH / Dist. / Prov. / Depart.";
     this.gcAgua_Ubigeo.Name = "gcAgua_Ubigeo";
     //
     // gcAgua_UTM
     //
     this.gcAgua_UTM.Caption = "Punto de muestreo y/o coordenadas UTM ";
     this.gcAgua_UTM.Name = "gcAgua_UTM";
     //
     // gcAgua_Num_bottle_plastic
     //
     this.gcAgua_Num_bottle_plastic.Caption = "N°Frascos de vidrio";
     this.gcAgua_Num_bottle_plastic.Name = "gcAgua_Num_bottle_plastic";
     //
     // gcAgua_Num_bottle_glass
     //
     this.gcAgua_Num_bottle_glass.Caption = "N°Frascos de plastico";
     this.gcAgua_Num_bottle_glass.Name = "gcAgua_Num_bottle_glass";
     //
     // gcAgua_Volumen
     //
     this.gcAgua_Volumen.Caption = "Volumen (L)";
     this.gcAgua_Volumen.Name = "gcAgua_Volumen";
     //
     // repResult
     //
     this.repResult.AutoHeight = false;
     this.repResult.Name = "repResult";
     //
     // repSendReport
     //
     this.repSendReport.AutoHeight = false;
     this.repSendReport.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Right)});
     this.repSendReport.Name = "repSendReport";
     //
     // repLink
     //
     this.repLink.AutoHeight = false;
     this.repLink.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Glyph, "", -1, true, true, false, DevExpress.Utils.HorzAlignment.Center, global::LimsProject.Properties.Resources.attach2)});
     this.repLink.Name = "repLink";
     this.repLink.ButtonClick += new DevExpress.XtraEditors.Controls.ButtonPressedEventHandler(this.repLink_ButtonClick);
     //
     // repDesLink
     //
     this.repDesLink.AutoHeight = false;
     this.repDesLink.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repDesLink.Name = "repDesLink";
     //
     // repSample
     //
     this.repSample.AutoHeight = false;
     this.repSample.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.repSample.Name = "repSample";
     //
     // xtraTabControl1
     //
     this.xtraTabControl1.Appearance.BackColor = System.Drawing.Color.Transparent;
     this.xtraTabControl1.Appearance.Options.UseBackColor = true;
     this.xtraTabControl1.AppearancePage.Header.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(209)))), ((int)(((byte)(222)))), ((int)(((byte)(243)))));
     this.xtraTabControl1.AppearancePage.Header.BorderColor = System.Drawing.Color.White;
     this.xtraTabControl1.AppearancePage.Header.Options.UseBackColor = true;
     this.xtraTabControl1.AppearancePage.Header.Options.UseBorderColor = true;
     this.xtraTabControl1.AppearancePage.HeaderActive.BackColor = System.Drawing.Color.LightSteelBlue;
     this.xtraTabControl1.AppearancePage.HeaderActive.BorderColor = System.Drawing.Color.Gainsboro;
     this.xtraTabControl1.AppearancePage.HeaderActive.Options.UseBackColor = true;
     this.xtraTabControl1.AppearancePage.HeaderActive.Options.UseBorderColor = true;
     this.xtraTabControl1.AppearancePage.PageClient.BorderColor = System.Drawing.Color.Gainsboro;
     this.xtraTabControl1.AppearancePage.PageClient.Options.UseBorderColor = true;
     this.xtraTabControl1.Location = new System.Drawing.Point(11, 29);
     this.xtraTabControl1.Name = "xtraTabControl1";
     this.xtraTabControl1.PaintStyleName = "PropertyView";
     this.xtraTabControl1.SelectedTabPage = this.xtraTabPage3;
     this.xtraTabControl1.Size = new System.Drawing.Size(534, 114);
     this.xtraTabControl1.TabIndex = 4;
     this.xtraTabControl1.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
     this.xtraTabPage3,
     this.xtraTabPage6,
     this.xtraTabPage1});
     this.xtraTabControl1.Text = "Anexos";
     //
     // xtraTabPage3
     //
     this.xtraTabPage3.Controls.Add(this.tbFax);
     this.xtraTabPage3.Controls.Add(this.tbClientPhone);
     this.xtraTabPage3.Controls.Add(this.tbClientRuc);
     this.xtraTabPage3.Controls.Add(this.tbClientDomicile);
     this.xtraTabPage3.Controls.Add(this.label9);
     this.xtraTabPage3.Controls.Add(this.label28);
     this.xtraTabPage3.Controls.Add(this.label11);
     this.xtraTabPage3.Controls.Add(this.label8);
     this.xtraTabPage3.Controls.Add(this.label6);
     this.xtraTabPage3.Controls.Add(this.cbCompany);
     this.xtraTabPage3.Name = "xtraTabPage3";
     this.xtraTabPage3.Size = new System.Drawing.Size(532, 93);
     this.xtraTabPage3.Text = "Cliente";
     //
     // tbFax
     //
     this.tbFax.Location = new System.Drawing.Point(176, 54);
     this.tbFax.Name = "tbFax";
     this.tbFax.Properties.Mask.EditMask = "\\+\\d\\d(\\(\\d{1,3}\\))\\d{1,10}";
     this.tbFax.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.RegEx;
     this.tbFax.Size = new System.Drawing.Size(74, 20);
     this.tbFax.TabIndex = 6;
     //
     // tbClientPhone
     //
     this.tbClientPhone.Location = new System.Drawing.Point(66, 54);
     this.tbClientPhone.Name = "tbClientPhone";
     this.tbClientPhone.Properties.Mask.EditMask = "\\+\\d\\d(\\(\\d{1,3}\\))\\d{1,10}";
     this.tbClientPhone.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.RegEx;
     this.tbClientPhone.Size = new System.Drawing.Size(74, 20);
     this.tbClientPhone.TabIndex = 6;
     //
     // tbClientRuc
     //
     this.tbClientRuc.Location = new System.Drawing.Point(367, 12);
     this.tbClientRuc.Name = "tbClientRuc";
     this.tbClientRuc.Properties.Mask.EditMask = "\\d{0,11}";
     this.tbClientRuc.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.RegEx;
     this.tbClientRuc.Size = new System.Drawing.Size(123, 20);
     this.tbClientRuc.TabIndex = 3;
     //
     // tbClientDomicile
     //
     this.tbClientDomicile.Location = new System.Drawing.Point(66, 33);
     this.tbClientDomicile.Name = "tbClientDomicile";
     this.tbClientDomicile.Size = new System.Drawing.Size(424, 20);
     this.tbClientDomicile.TabIndex = 4;
     //
     // label9
     //
     this.label9.AutoSize = true;
     this.label9.Location = new System.Drawing.Point(331, 15);
     this.label9.Name = "label9";
     this.label9.Size = new System.Drawing.Size(30, 13);
     this.label9.TabIndex = 9;
     this.label9.Text = "Ruc:";
     //
     // label28
     //
     this.label28.AutoSize = true;
     this.label28.Location = new System.Drawing.Point(143, 57);
     this.label28.Name = "label28";
     this.label28.Size = new System.Drawing.Size(27, 13);
     this.label28.TabIndex = 9;
     this.label28.Text = "Fax:";
     //
     // label11
     //
     this.label11.AutoSize = true;
     this.label11.Location = new System.Drawing.Point(11, 57);
     this.label11.Name = "label11";
     this.label11.Size = new System.Drawing.Size(25, 13);
     this.label11.TabIndex = 9;
     this.label11.Text = "Tel:";
     //
     // label8
     //
     this.label8.AutoSize = true;
     this.label8.Location = new System.Drawing.Point(11, 36);
     this.label8.Name = "label8";
     this.label8.Size = new System.Drawing.Size(52, 13);
     this.label8.TabIndex = 9;
     this.label8.Text = "Domicilio:";
     //
     // label6
     //
     this.label6.AutoSize = true;
     this.label6.Location = new System.Drawing.Point(11, 15);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(47, 13);
     this.label6.TabIndex = 9;
     this.label6.Text = "Nombre:";
     //
     // cbCompany
     //
     this.cbCompany.Location = new System.Drawing.Point(66, 12);
     this.cbCompany.Name = "cbCompany";
     this.cbCompany.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cbCompany.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Idcompany", "", 20, DevExpress.Utils.FormatType.None, "", false, DevExpress.Utils.HorzAlignment.Default, DevExpress.Data.ColumnSortOrder.None),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Business_name")});
     this.cbCompany.Properties.NullText = "Seleccionar";
     this.cbCompany.Properties.ShowFooter = false;
     this.cbCompany.Properties.ShowHeader = false;
     this.cbCompany.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     this.cbCompany.Size = new System.Drawing.Size(259, 20);
     this.cbCompany.TabIndex = 2;
     this.cbCompany.ProcessNewValue += new DevExpress.XtraEditors.Controls.ProcessNewValueEventHandler(this.cbClientName_ProcessNewValue);
     this.cbCompany.EditValueChanged += new System.EventHandler(this.cbClientName_EditValueChanged);
     //
     // xtraTabPage6
     //
     this.xtraTabPage6.Controls.Add(this.gcContact);
     this.xtraTabPage6.Name = "xtraTabPage6";
     this.xtraTabPage6.Size = new System.Drawing.Size(532, 93);
     this.xtraTabPage6.Text = "Contactos";
     //
     // gcContact
     //
     this.gcContact.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gcContact.EmbeddedNavigator.Buttons.First.Visible = false;
     this.gcContact.EmbeddedNavigator.Buttons.Last.Visible = false;
     this.gcContact.EmbeddedNavigator.Buttons.Next.Visible = false;
     this.gcContact.EmbeddedNavigator.Buttons.NextPage.Visible = false;
     this.gcContact.EmbeddedNavigator.Buttons.Prev.Visible = false;
     this.gcContact.EmbeddedNavigator.Buttons.PrevPage.Visible = false;
     this.gcContact.EmbeddedNavigator.Name = "";
     this.gcContact.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.gcContact.Location = new System.Drawing.Point(0, 0);
     this.gcContact.MainView = this.gvContact;
     this.gcContact.Name = "gcContact";
     this.gcContact.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repPerson_type,
     this.repNum,
     this.repCellPhone,
     this.repPhone});
     this.gcContact.Size = new System.Drawing.Size(532, 93);
     this.gcContact.TabIndex = 0;
     this.gcContact.UseEmbeddedNavigator = true;
     this.gcContact.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gvContact});
     //
     // gvContact
     //
     this.gvContact.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gcCon_Idrecep_company_person,
     this.gcCon_Idperson,
     this.gcCon_Idcompany,
     this.gcCon_Idrecep_sample,
     this.gcCon_Allname,
     this.gcCon_Mail,
     this.gcCon_Person_type,
     this.gcCon_Phone,
     this.gcCon_Cellphone});
     this.gvContact.GridControl = this.gcContact;
     this.gvContact.Name = "gvContact";
     this.gvContact.OptionsView.ShowGroupPanel = false;
     this.gvContact.InitNewRow += new DevExpress.XtraGrid.Views.Grid.InitNewRowEventHandler(this.gvContact_InitNewRow);
     //
     // gcCon_Idrecep_company_person
     //
     this.gcCon_Idrecep_company_person.Caption = "Idrecep_company_person";
     this.gcCon_Idrecep_company_person.FieldName = "Idrecep_company_person";
     this.gcCon_Idrecep_company_person.Name = "gcCon_Idrecep_company_person";
     //
     // gcCon_Idperson
     //
     this.gcCon_Idperson.Caption = "Idperson";
     this.gcCon_Idperson.FieldName = "Idperson";
     this.gcCon_Idperson.Name = "gcCon_Idperson";
     //
     // gcCon_Idcompany
     //
     this.gcCon_Idcompany.Caption = "Idcompany";
     this.gcCon_Idcompany.FieldName = "Idcompany";
     this.gcCon_Idcompany.Name = "gcCon_Idcompany";
     //
     // gcCon_Idrecep_sample
     //
     this.gcCon_Idrecep_sample.Caption = "Idrecep_sample";
     this.gcCon_Idrecep_sample.FieldName = "Idrecep_sample";
     this.gcCon_Idrecep_sample.Name = "gcCon_Idrecep_sample";
     //
     // gcCon_Allname
     //
     this.gcCon_Allname.Caption = "Nombre";
     this.gcCon_Allname.FieldName = "Allname";
     this.gcCon_Allname.Name = "gcCon_Allname";
     this.gcCon_Allname.Visible = true;
     this.gcCon_Allname.VisibleIndex = 0;
     this.gcCon_Allname.Width = 152;
     //
     // gcCon_Mail
     //
     this.gcCon_Mail.Caption = "Email";
     this.gcCon_Mail.FieldName = "Mail";
     this.gcCon_Mail.Name = "gcCon_Mail";
     this.gcCon_Mail.Visible = true;
     this.gcCon_Mail.VisibleIndex = 1;
     this.gcCon_Mail.Width = 122;
     //
     // gcCon_Person_type
     //
     this.gcCon_Person_type.Caption = "Tipo";
     this.gcCon_Person_type.ColumnEdit = this.repPerson_type;
     this.gcCon_Person_type.FieldName = "Person_type";
     this.gcCon_Person_type.Name = "gcCon_Person_type";
     this.gcCon_Person_type.Visible = true;
     this.gcCon_Person_type.VisibleIndex = 2;
     this.gcCon_Person_type.Width = 64;
     //
     // repPerson_type
     //
     this.repPerson_type.AutoHeight = false;
     this.repPerson_type.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repPerson_type.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Id", "", 20, DevExpress.Utils.FormatType.None, "", false, DevExpress.Utils.HorzAlignment.Default, DevExpress.Data.ColumnSortOrder.None),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Name")});
     this.repPerson_type.Name = "repPerson_type";
     this.repPerson_type.NullText = "";
     this.repPerson_type.ShowFooter = false;
     this.repPerson_type.ShowHeader = false;
     //
     // gcCon_Phone
     //
     this.gcCon_Phone.Caption = "Teléfono";
     this.gcCon_Phone.ColumnEdit = this.repPhone;
     this.gcCon_Phone.FieldName = "Phone";
     this.gcCon_Phone.Name = "gcCon_Phone";
     this.gcCon_Phone.Visible = true;
     this.gcCon_Phone.VisibleIndex = 3;
     this.gcCon_Phone.Width = 85;
     //
     // repPhone
     //
     this.repPhone.AutoHeight = false;
     this.repPhone.Mask.EditMask = "\\+\\d\\d(\\(\\d{1,2}\\))\\d{1,10}";
     this.repPhone.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.RegEx;
     this.repPhone.Name = "repPhone";
     //
     // gcCon_Cellphone
     //
     this.gcCon_Cellphone.Caption = "Celular";
     this.gcCon_Cellphone.ColumnEdit = this.repCellPhone;
     this.gcCon_Cellphone.FieldName = "Cellphone";
     this.gcCon_Cellphone.Name = "gcCon_Cellphone";
     this.gcCon_Cellphone.Visible = true;
     this.gcCon_Cellphone.VisibleIndex = 4;
     this.gcCon_Cellphone.Width = 88;
     //
     // repCellPhone
     //
     this.repCellPhone.AutoHeight = false;
     this.repCellPhone.Mask.EditMask = "(\\(\\d{1,3}\\))?\\d{1,3}-\\d{1,3}-\\d{1,6}";
     this.repCellPhone.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.RegEx;
     this.repCellPhone.Name = "repCellPhone";
     //
     // repNum
     //
     this.repNum.AutoHeight = false;
     this.repNum.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Ellipsis, "", -1, true, false, false, DevExpress.Utils.HorzAlignment.Center, null)});
     this.repNum.IsFloatValue = false;
     this.repNum.Mask.EditMask = "N00";
     this.repNum.Name = "repNum";
     //
     // xtraTabPage1
     //
     this.xtraTabPage1.Controls.Add(this.ckDispatchFax);
     this.xtraTabPage1.Controls.Add(this.ckDispatchPerson);
     this.xtraTabPage1.Controls.Add(this.ckDispatchTransport);
     this.xtraTabPage1.Controls.Add(this.ckDispatchCurier);
     this.xtraTabPage1.Name = "xtraTabPage1";
     this.xtraTabPage1.Size = new System.Drawing.Size(532, 93);
     this.xtraTabPage1.Text = "Envío";
     //
     // ckDispatchFax
     //
     this.ckDispatchFax.Location = new System.Drawing.Point(141, 15);
     this.ckDispatchFax.Name = "ckDispatchFax";
     this.ckDispatchFax.Properties.Caption = "Fax";
     this.ckDispatchFax.Size = new System.Drawing.Size(107, 18);
     this.ckDispatchFax.TabIndex = 0;
     //
     // ckDispatchPerson
     //
     this.ckDispatchPerson.Location = new System.Drawing.Point(20, 15);
     this.ckDispatchPerson.Name = "ckDispatchPerson";
     this.ckDispatchPerson.Properties.Caption = "Personal";
     this.ckDispatchPerson.Size = new System.Drawing.Size(75, 18);
     this.ckDispatchPerson.TabIndex = 0;
     this.ckDispatchPerson.CheckedChanged += new System.EventHandler(this.ckDispatchPerson_CheckedChanged);
     //
     // ckDispatchTransport
     //
     this.ckDispatchTransport.Location = new System.Drawing.Point(20, 53);
     this.ckDispatchTransport.Name = "ckDispatchTransport";
     this.ckDispatchTransport.Properties.Caption = "Emp. Transporte";
     this.ckDispatchTransport.Size = new System.Drawing.Size(107, 18);
     this.ckDispatchTransport.TabIndex = 0;
     this.ckDispatchTransport.CheckedChanged += new System.EventHandler(this.ckDispatchTransport_CheckedChanged);
     //
     // ckDispatchCurier
     //
     this.ckDispatchCurier.Location = new System.Drawing.Point(20, 34);
     this.ckDispatchCurier.Name = "ckDispatchCurier";
     this.ckDispatchCurier.Properties.Caption = "Curier";
     this.ckDispatchCurier.Size = new System.Drawing.Size(75, 18);
     this.ckDispatchCurier.TabIndex = 0;
     this.ckDispatchCurier.CheckedChanged += new System.EventHandler(this.ckDispatchCurier_CheckedChanged);
     //
     // expandablePanel1
     //
     this.expandablePanel1.CollapseDirection = DevComponents.DotNetBar.eCollapseDirection.LeftToRight;
     this.expandablePanel1.Controls.Add(this.tabOptionRight);
     this.expandablePanel1.Dock = System.Windows.Forms.DockStyle.Right;
     this.expandablePanel1.Location = new System.Drawing.Point(699, 0);
     this.expandablePanel1.Name = "expandablePanel1";
     this.expandablePanel1.Size = new System.Drawing.Size(294, 358);
     this.expandablePanel1.TabIndex = 2;
     this.expandablePanel1.Text = "expandablePanel1";
     this.expandablePanel1.TitleText = "Métodos";
     //
     // tabOptionRight
     //
     this.tabOptionRight.Appearance.BackColor = System.Drawing.Color.Transparent;
     this.tabOptionRight.Appearance.Options.UseBackColor = true;
     this.tabOptionRight.AppearancePage.Header.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(209)))), ((int)(((byte)(222)))), ((int)(((byte)(243)))));
     this.tabOptionRight.AppearancePage.Header.BorderColor = System.Drawing.Color.White;
     this.tabOptionRight.AppearancePage.Header.Options.UseBackColor = true;
     this.tabOptionRight.AppearancePage.Header.Options.UseBorderColor = true;
     this.tabOptionRight.AppearancePage.HeaderActive.BackColor = System.Drawing.Color.LightSteelBlue;
     this.tabOptionRight.AppearancePage.HeaderActive.BorderColor = System.Drawing.Color.Gainsboro;
     this.tabOptionRight.AppearancePage.HeaderActive.Options.UseBackColor = true;
     this.tabOptionRight.AppearancePage.HeaderActive.Options.UseBorderColor = true;
     this.tabOptionRight.AppearancePage.PageClient.BorderColor = System.Drawing.Color.Gainsboro;
     this.tabOptionRight.AppearancePage.PageClient.Options.UseBorderColor = true;
     this.tabOptionRight.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabOptionRight.Location = new System.Drawing.Point(0, 26);
     this.tabOptionRight.Name = "tabOptionRight";
     this.tabOptionRight.PaintStyleName = "PropertyView";
     this.tabOptionRight.SelectedTabPage = this.tpRightMethods;
     this.tabOptionRight.Size = new System.Drawing.Size(294, 332);
     this.tabOptionRight.TabIndex = 5;
     this.tabOptionRight.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
     this.tpRightMethods,
     this.tpRightReports,
     this.tpRightAttach,
     this.tpRightProgram});
     this.tabOptionRight.Text = "Adjuntos";
     this.tabOptionRight.SelectedPageChanged += new DevExpress.XtraTab.TabPageChangedEventHandler(this.tabOptionRight_SelectedPageChanged);
     //
     // tpRightMethods
     //
     this.tpRightMethods.Controls.Add(this.lookUpEdit3);
     this.tpRightMethods.Controls.Add(this.gcMethods);
     this.tpRightMethods.Controls.Add(this.textEdit1);
     this.tpRightMethods.Name = "tpRightMethods";
     this.tpRightMethods.Size = new System.Drawing.Size(292, 311);
     this.tpRightMethods.Text = "Métodos";
     //
     // lookUpEdit3
     //
     this.lookUpEdit3.Location = new System.Drawing.Point(452, 55);
     this.lookUpEdit3.Name = "lookUpEdit3";
     this.lookUpEdit3.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lookUpEdit3.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("IDTypePost", "", 20, DevExpress.Utils.FormatType.None, "", false, DevExpress.Utils.HorzAlignment.Default, DevExpress.Data.ColumnSortOrder.None),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Den_Type_Post")});
     this.lookUpEdit3.Properties.NullText = "Seleccionar";
     this.lookUpEdit3.Properties.ShowFooter = false;
     this.lookUpEdit3.Properties.ShowHeader = false;
     this.lookUpEdit3.Size = new System.Drawing.Size(100, 20);
     this.lookUpEdit3.TabIndex = 1;
     //
     // gcMethods
     //
     this.gcMethods.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gcMethods.EmbeddedNavigator.Name = "";
     this.gcMethods.Location = new System.Drawing.Point(0, 0);
     this.gcMethods.MainView = this.gvMethods;
     this.gcMethods.Name = "gcMethods";
     this.gcMethods.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repAddColumn});
     this.gcMethods.Size = new System.Drawing.Size(292, 311);
     this.gcMethods.TabIndex = 1;
     this.gcMethods.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gvMethods});
     //
     // gvMethods
     //
     this.gvMethods.Appearance.ColumnFilterButton.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvMethods.Appearance.ColumnFilterButton.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(171)))), ((int)(((byte)(228)))));
     this.gvMethods.Appearance.ColumnFilterButton.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvMethods.Appearance.ColumnFilterButton.ForeColor = System.Drawing.Color.Black;
     this.gvMethods.Appearance.ColumnFilterButton.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.gvMethods.Appearance.ColumnFilterButton.Options.UseBackColor = true;
     this.gvMethods.Appearance.ColumnFilterButton.Options.UseBorderColor = true;
     this.gvMethods.Appearance.ColumnFilterButton.Options.UseForeColor = true;
     this.gvMethods.Appearance.ColumnFilterButtonActive.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(247)))), ((int)(((byte)(251)))), ((int)(((byte)(255)))));
     this.gvMethods.Appearance.ColumnFilterButtonActive.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(154)))), ((int)(((byte)(190)))), ((int)(((byte)(243)))));
     this.gvMethods.Appearance.ColumnFilterButtonActive.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(247)))), ((int)(((byte)(251)))), ((int)(((byte)(255)))));
     this.gvMethods.Appearance.ColumnFilterButtonActive.ForeColor = System.Drawing.Color.Black;
     this.gvMethods.Appearance.ColumnFilterButtonActive.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.gvMethods.Appearance.ColumnFilterButtonActive.Options.UseBackColor = true;
     this.gvMethods.Appearance.ColumnFilterButtonActive.Options.UseBorderColor = true;
     this.gvMethods.Appearance.ColumnFilterButtonActive.Options.UseForeColor = true;
     this.gvMethods.Appearance.Empty.BackColor = System.Drawing.Color.White;
     this.gvMethods.Appearance.Empty.Options.UseBackColor = true;
     this.gvMethods.Appearance.EvenRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(231)))), ((int)(((byte)(242)))), ((int)(((byte)(254)))));
     this.gvMethods.Appearance.EvenRow.ForeColor = System.Drawing.Color.Black;
     this.gvMethods.Appearance.EvenRow.Options.UseBackColor = true;
     this.gvMethods.Appearance.EvenRow.Options.UseForeColor = true;
     this.gvMethods.Appearance.FilterCloseButton.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvMethods.Appearance.FilterCloseButton.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(171)))), ((int)(((byte)(228)))));
     this.gvMethods.Appearance.FilterCloseButton.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvMethods.Appearance.FilterCloseButton.ForeColor = System.Drawing.Color.Black;
     this.gvMethods.Appearance.FilterCloseButton.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.gvMethods.Appearance.FilterCloseButton.Options.UseBackColor = true;
     this.gvMethods.Appearance.FilterCloseButton.Options.UseBorderColor = true;
     this.gvMethods.Appearance.FilterCloseButton.Options.UseForeColor = true;
     this.gvMethods.Appearance.FilterPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(62)))), ((int)(((byte)(109)))), ((int)(((byte)(185)))));
     this.gvMethods.Appearance.FilterPanel.ForeColor = System.Drawing.Color.White;
     this.gvMethods.Appearance.FilterPanel.Options.UseBackColor = true;
     this.gvMethods.Appearance.FilterPanel.Options.UseForeColor = true;
     this.gvMethods.Appearance.FixedLine.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(59)))), ((int)(((byte)(97)))), ((int)(((byte)(156)))));
     this.gvMethods.Appearance.FixedLine.Options.UseBackColor = true;
     this.gvMethods.Appearance.FocusedCell.BackColor = System.Drawing.Color.White;
     this.gvMethods.Appearance.FocusedCell.ForeColor = System.Drawing.Color.Black;
     this.gvMethods.Appearance.FocusedCell.Options.UseBackColor = true;
     this.gvMethods.Appearance.FocusedCell.Options.UseForeColor = true;
     this.gvMethods.Appearance.FocusedRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(60)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(240)))));
     this.gvMethods.Appearance.FocusedRow.ForeColor = System.Drawing.Color.White;
     this.gvMethods.Appearance.FocusedRow.Options.UseBackColor = true;
     this.gvMethods.Appearance.FocusedRow.Options.UseForeColor = true;
     this.gvMethods.Appearance.FooterPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvMethods.Appearance.FooterPanel.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(171)))), ((int)(((byte)(228)))));
     this.gvMethods.Appearance.FooterPanel.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvMethods.Appearance.FooterPanel.ForeColor = System.Drawing.Color.Black;
     this.gvMethods.Appearance.FooterPanel.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.gvMethods.Appearance.FooterPanel.Options.UseBackColor = true;
     this.gvMethods.Appearance.FooterPanel.Options.UseBorderColor = true;
     this.gvMethods.Appearance.FooterPanel.Options.UseForeColor = true;
     this.gvMethods.Appearance.GroupButton.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.gvMethods.Appearance.GroupButton.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.gvMethods.Appearance.GroupButton.ForeColor = System.Drawing.Color.Black;
     this.gvMethods.Appearance.GroupButton.Options.UseBackColor = true;
     this.gvMethods.Appearance.GroupButton.Options.UseBorderColor = true;
     this.gvMethods.Appearance.GroupButton.Options.UseForeColor = true;
     this.gvMethods.Appearance.GroupFooter.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.gvMethods.Appearance.GroupFooter.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.gvMethods.Appearance.GroupFooter.ForeColor = System.Drawing.Color.Black;
     this.gvMethods.Appearance.GroupFooter.Options.UseBackColor = true;
     this.gvMethods.Appearance.GroupFooter.Options.UseBorderColor = true;
     this.gvMethods.Appearance.GroupFooter.Options.UseForeColor = true;
     this.gvMethods.Appearance.GroupPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(62)))), ((int)(((byte)(109)))), ((int)(((byte)(185)))));
     this.gvMethods.Appearance.GroupPanel.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvMethods.Appearance.GroupPanel.Options.UseBackColor = true;
     this.gvMethods.Appearance.GroupPanel.Options.UseForeColor = true;
     this.gvMethods.Appearance.GroupRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.gvMethods.Appearance.GroupRow.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.gvMethods.Appearance.GroupRow.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
     this.gvMethods.Appearance.GroupRow.ForeColor = System.Drawing.Color.Black;
     this.gvMethods.Appearance.GroupRow.Options.UseBackColor = true;
     this.gvMethods.Appearance.GroupRow.Options.UseBorderColor = true;
     this.gvMethods.Appearance.GroupRow.Options.UseFont = true;
     this.gvMethods.Appearance.GroupRow.Options.UseForeColor = true;
     this.gvMethods.Appearance.HeaderPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvMethods.Appearance.HeaderPanel.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(171)))), ((int)(((byte)(228)))));
     this.gvMethods.Appearance.HeaderPanel.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvMethods.Appearance.HeaderPanel.Font = new System.Drawing.Font("Tahoma", 8F);
     this.gvMethods.Appearance.HeaderPanel.ForeColor = System.Drawing.Color.Black;
     this.gvMethods.Appearance.HeaderPanel.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.gvMethods.Appearance.HeaderPanel.Options.UseBackColor = true;
     this.gvMethods.Appearance.HeaderPanel.Options.UseBorderColor = true;
     this.gvMethods.Appearance.HeaderPanel.Options.UseFont = true;
     this.gvMethods.Appearance.HeaderPanel.Options.UseForeColor = true;
     this.gvMethods.Appearance.HideSelectionRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(106)))), ((int)(((byte)(153)))), ((int)(((byte)(228)))));
     this.gvMethods.Appearance.HideSelectionRow.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(208)))), ((int)(((byte)(224)))), ((int)(((byte)(251)))));
     this.gvMethods.Appearance.HideSelectionRow.Options.UseBackColor = true;
     this.gvMethods.Appearance.HideSelectionRow.Options.UseForeColor = true;
     this.gvMethods.Appearance.HorzLine.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(99)))), ((int)(((byte)(127)))), ((int)(((byte)(196)))));
     this.gvMethods.Appearance.HorzLine.Options.UseBackColor = true;
     this.gvMethods.Appearance.OddRow.BackColor = System.Drawing.Color.White;
     this.gvMethods.Appearance.OddRow.ForeColor = System.Drawing.Color.Black;
     this.gvMethods.Appearance.OddRow.Options.UseBackColor = true;
     this.gvMethods.Appearance.OddRow.Options.UseForeColor = true;
     this.gvMethods.Appearance.Preview.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(249)))), ((int)(((byte)(252)))), ((int)(((byte)(255)))));
     this.gvMethods.Appearance.Preview.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(88)))), ((int)(((byte)(129)))), ((int)(((byte)(185)))));
     this.gvMethods.Appearance.Preview.Options.UseBackColor = true;
     this.gvMethods.Appearance.Preview.Options.UseForeColor = true;
     this.gvMethods.Appearance.Row.BackColor = System.Drawing.Color.White;
     this.gvMethods.Appearance.Row.Font = new System.Drawing.Font("Tahoma", 8F);
     this.gvMethods.Appearance.Row.ForeColor = System.Drawing.Color.Black;
     this.gvMethods.Appearance.Row.Options.UseBackColor = true;
     this.gvMethods.Appearance.Row.Options.UseFont = true;
     this.gvMethods.Appearance.Row.Options.UseForeColor = true;
     this.gvMethods.Appearance.RowSeparator.BackColor = System.Drawing.Color.White;
     this.gvMethods.Appearance.RowSeparator.Options.UseBackColor = true;
     this.gvMethods.Appearance.SelectedRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(30)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(240)))));
     this.gvMethods.Appearance.SelectedRow.ForeColor = System.Drawing.Color.White;
     this.gvMethods.Appearance.SelectedRow.Options.UseBackColor = true;
     this.gvMethods.Appearance.SelectedRow.Options.UseForeColor = true;
     this.gvMethods.Appearance.VertLine.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(99)))), ((int)(((byte)(127)))), ((int)(((byte)(196)))));
     this.gvMethods.Appearance.VertLine.Options.UseBackColor = true;
     this.gvMethods.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gcMet_Cod_template_method,
     this.gcMet_Cod_element,
     this.gcMet_Abbreviation,
     this.gcMet_Name_type_analisys,
     this.gcMet_Title,
     this.gcMet_TypeAnalisys,
     this.gcMet_Button,
     this.gcMet_Cost,
     this.gcMet_Unit1,
     this.gcMet_Unit_Name,
     this.gcMet_Idelement,
     this.gcMet_Idtemplate_method,
     this.gcMet_Analisys_time});
     this.gvMethods.GridControl = this.gcMethods;
     this.gvMethods.GroupCount = 1;
     this.gvMethods.Name = "gvMethods";
     this.gvMethods.OptionsBehavior.AutoExpandAllGroups = true;
     this.gvMethods.OptionsView.ColumnAutoWidth = false;
     this.gvMethods.OptionsView.EnableAppearanceEvenRow = true;
     this.gvMethods.OptionsView.EnableAppearanceOddRow = true;
     this.gvMethods.OptionsView.ShowGroupPanel = false;
     this.gvMethods.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.gcMet_TypeAnalisys, DevExpress.Data.ColumnSortOrder.Ascending)});
     //
     // gcMet_Cod_template_method
     //
     this.gcMet_Cod_template_method.Caption = "Cod.";
     this.gcMet_Cod_template_method.FieldName = "Cod_template_method";
     this.gcMet_Cod_template_method.Name = "gcMet_Cod_template_method";
     this.gcMet_Cod_template_method.OptionsColumn.ReadOnly = true;
     this.gcMet_Cod_template_method.Visible = true;
     this.gcMet_Cod_template_method.VisibleIndex = 1;
     this.gcMet_Cod_template_method.Width = 50;
     //
     // gcMet_Cod_element
     //
     this.gcMet_Cod_element.Caption = "Elemento";
     this.gcMet_Cod_element.FieldName = "Cod_element";
     this.gcMet_Cod_element.Name = "gcMet_Cod_element";
     this.gcMet_Cod_element.OptionsColumn.ReadOnly = true;
     this.gcMet_Cod_element.Visible = true;
     this.gcMet_Cod_element.VisibleIndex = 2;
     //
     // gcMet_Abbreviation
     //
     this.gcMet_Abbreviation.Caption = "Abreviación";
     this.gcMet_Abbreviation.FieldName = "Abbreviation";
     this.gcMet_Abbreviation.Name = "gcMet_Abbreviation";
     this.gcMet_Abbreviation.OptionsColumn.ReadOnly = true;
     this.gcMet_Abbreviation.Visible = true;
     this.gcMet_Abbreviation.VisibleIndex = 3;
     this.gcMet_Abbreviation.Width = 60;
     //
     // gcMet_Name_type_analisys
     //
     this.gcMet_Name_type_analisys.Caption = "Tipo de Análisis";
     this.gcMet_Name_type_analisys.FieldName = "Name_type_analisys";
     this.gcMet_Name_type_analisys.Name = "gcMet_Name_type_analisys";
     this.gcMet_Name_type_analisys.Visible = true;
     this.gcMet_Name_type_analisys.VisibleIndex = 5;
     //
     // gcMet_Title
     //
     this.gcMet_Title.Caption = "Título";
     this.gcMet_Title.FieldName = "Title";
     this.gcMet_Title.Name = "gcMet_Title";
     this.gcMet_Title.OptionsColumn.ReadOnly = true;
     this.gcMet_Title.Visible = true;
     this.gcMet_Title.VisibleIndex = 4;
     this.gcMet_Title.Width = 135;
     //
     // gcMet_TypeAnalisys
     //
     this.gcMet_TypeAnalisys.Caption = "Tipo de análisis";
     this.gcMet_TypeAnalisys.FieldName = "Name_type_analisys";
     this.gcMet_TypeAnalisys.Name = "gcMet_TypeAnalisys";
     //
     // gcMet_Button
     //
     this.gcMet_Button.Caption = "#";
     this.gcMet_Button.ColumnEdit = this.repAddColumn;
     this.gcMet_Button.Name = "gcMet_Button";
     this.gcMet_Button.Visible = true;
     this.gcMet_Button.VisibleIndex = 0;
     this.gcMet_Button.Width = 52;
     //
     // repAddColumn
     //
     this.repAddColumn.AutoHeight = false;
     this.repAddColumn.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Left)});
     this.repAddColumn.Name = "repAddColumn";
     this.repAddColumn.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.HideTextEditor;
     this.repAddColumn.ButtonClick += new DevExpress.XtraEditors.Controls.ButtonPressedEventHandler(this.repAddColumn_ButtonClick);
     //
     // gcMet_Cost
     //
     this.gcMet_Cost.Caption = "Cost";
     this.gcMet_Cost.FieldName = "Cost_method";
     this.gcMet_Cost.Name = "gcMet_Cost";
     //
     // gcMet_Unit1
     //
     this.gcMet_Unit1.Caption = "Unit";
     this.gcMet_Unit1.FieldName = "Idunit_result";
     this.gcMet_Unit1.Name = "gcMet_Unit1";
     //
     // gcMet_Unit_Name
     //
     this.gcMet_Unit_Name.Caption = "Name_unit";
     this.gcMet_Unit_Name.FieldName = "Name_unit";
     this.gcMet_Unit_Name.Name = "gcMet_Unit_Name";
     //
     // gcMet_Idelement
     //
     this.gcMet_Idelement.Caption = "Idelement";
     this.gcMet_Idelement.FieldName = "Idelement";
     this.gcMet_Idelement.Name = "gcMet_Idelement";
     //
     // gcMet_Idtemplate_method
     //
     this.gcMet_Idtemplate_method.Caption = "idtemplate_method";
     this.gcMet_Idtemplate_method.FieldName = "Idtemplate_method";
     this.gcMet_Idtemplate_method.Name = "gcMet_Idtemplate_method";
     //
     // gcMet_Analisys_time
     //
     this.gcMet_Analisys_time.Caption = "Analysis_time";
     this.gcMet_Analisys_time.FieldName = "Analisys_time";
     this.gcMet_Analisys_time.Name = "gcMet_Analisys_time";
     //
     // textEdit1
     //
     this.textEdit1.Location = new System.Drawing.Point(452, 9);
     this.textEdit1.Name = "textEdit1";
     this.textEdit1.Size = new System.Drawing.Size(100, 20);
     this.textEdit1.TabIndex = 3;
     //
     // tpRightReports
     //
     this.tpRightReports.Controls.Add(this.gcReport);
     this.tpRightReports.Controls.Add(this.groupControl1);
     this.tpRightReports.Name = "tpRightReports";
     this.tpRightReports.PageVisible = false;
     this.tpRightReports.Size = new System.Drawing.Size(292, 0);
     this.tpRightReports.Text = "Informes";
     //
     // gcReport
     //
     this.gcReport.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gcReport.EmbeddedNavigator.Name = "";
     this.gcReport.Location = new System.Drawing.Point(0, 53);
     this.gcReport.MainView = this.gvReport;
     this.gcReport.Name = "gcReport";
     this.gcReport.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repReportOption,
     this.repStatusReport,
     this.repDateReport,
     this.repTimeReport,
     this.repTypeReport});
     this.gcReport.Size = new System.Drawing.Size(292, 0);
     this.gcReport.TabIndex = 2;
     this.gcReport.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gvReport});
     //
     // gvReport
     //
     this.gvReport.Appearance.ColumnFilterButton.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvReport.Appearance.ColumnFilterButton.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(171)))), ((int)(((byte)(228)))));
     this.gvReport.Appearance.ColumnFilterButton.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvReport.Appearance.ColumnFilterButton.ForeColor = System.Drawing.Color.Black;
     this.gvReport.Appearance.ColumnFilterButton.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.gvReport.Appearance.ColumnFilterButton.Options.UseBackColor = true;
     this.gvReport.Appearance.ColumnFilterButton.Options.UseBorderColor = true;
     this.gvReport.Appearance.ColumnFilterButton.Options.UseForeColor = true;
     this.gvReport.Appearance.ColumnFilterButtonActive.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(247)))), ((int)(((byte)(251)))), ((int)(((byte)(255)))));
     this.gvReport.Appearance.ColumnFilterButtonActive.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(154)))), ((int)(((byte)(190)))), ((int)(((byte)(243)))));
     this.gvReport.Appearance.ColumnFilterButtonActive.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(247)))), ((int)(((byte)(251)))), ((int)(((byte)(255)))));
     this.gvReport.Appearance.ColumnFilterButtonActive.ForeColor = System.Drawing.Color.Black;
     this.gvReport.Appearance.ColumnFilterButtonActive.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.gvReport.Appearance.ColumnFilterButtonActive.Options.UseBackColor = true;
     this.gvReport.Appearance.ColumnFilterButtonActive.Options.UseBorderColor = true;
     this.gvReport.Appearance.ColumnFilterButtonActive.Options.UseForeColor = true;
     this.gvReport.Appearance.Empty.BackColor = System.Drawing.Color.White;
     this.gvReport.Appearance.Empty.Options.UseBackColor = true;
     this.gvReport.Appearance.EvenRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(231)))), ((int)(((byte)(242)))), ((int)(((byte)(254)))));
     this.gvReport.Appearance.EvenRow.ForeColor = System.Drawing.Color.Black;
     this.gvReport.Appearance.EvenRow.Options.UseBackColor = true;
     this.gvReport.Appearance.EvenRow.Options.UseForeColor = true;
     this.gvReport.Appearance.FilterCloseButton.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvReport.Appearance.FilterCloseButton.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(171)))), ((int)(((byte)(228)))));
     this.gvReport.Appearance.FilterCloseButton.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvReport.Appearance.FilterCloseButton.ForeColor = System.Drawing.Color.Black;
     this.gvReport.Appearance.FilterCloseButton.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.gvReport.Appearance.FilterCloseButton.Options.UseBackColor = true;
     this.gvReport.Appearance.FilterCloseButton.Options.UseBorderColor = true;
     this.gvReport.Appearance.FilterCloseButton.Options.UseForeColor = true;
     this.gvReport.Appearance.FilterPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(62)))), ((int)(((byte)(109)))), ((int)(((byte)(185)))));
     this.gvReport.Appearance.FilterPanel.ForeColor = System.Drawing.Color.White;
     this.gvReport.Appearance.FilterPanel.Options.UseBackColor = true;
     this.gvReport.Appearance.FilterPanel.Options.UseForeColor = true;
     this.gvReport.Appearance.FixedLine.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(59)))), ((int)(((byte)(97)))), ((int)(((byte)(156)))));
     this.gvReport.Appearance.FixedLine.Options.UseBackColor = true;
     this.gvReport.Appearance.FocusedCell.BackColor = System.Drawing.Color.White;
     this.gvReport.Appearance.FocusedCell.ForeColor = System.Drawing.Color.Black;
     this.gvReport.Appearance.FocusedCell.Options.UseBackColor = true;
     this.gvReport.Appearance.FocusedCell.Options.UseForeColor = true;
     this.gvReport.Appearance.FocusedRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(60)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(240)))));
     this.gvReport.Appearance.FocusedRow.ForeColor = System.Drawing.Color.White;
     this.gvReport.Appearance.FocusedRow.Options.UseBackColor = true;
     this.gvReport.Appearance.FocusedRow.Options.UseForeColor = true;
     this.gvReport.Appearance.FooterPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvReport.Appearance.FooterPanel.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(171)))), ((int)(((byte)(228)))));
     this.gvReport.Appearance.FooterPanel.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvReport.Appearance.FooterPanel.ForeColor = System.Drawing.Color.Black;
     this.gvReport.Appearance.FooterPanel.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.gvReport.Appearance.FooterPanel.Options.UseBackColor = true;
     this.gvReport.Appearance.FooterPanel.Options.UseBorderColor = true;
     this.gvReport.Appearance.FooterPanel.Options.UseForeColor = true;
     this.gvReport.Appearance.GroupButton.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.gvReport.Appearance.GroupButton.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.gvReport.Appearance.GroupButton.ForeColor = System.Drawing.Color.Black;
     this.gvReport.Appearance.GroupButton.Options.UseBackColor = true;
     this.gvReport.Appearance.GroupButton.Options.UseBorderColor = true;
     this.gvReport.Appearance.GroupButton.Options.UseForeColor = true;
     this.gvReport.Appearance.GroupFooter.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.gvReport.Appearance.GroupFooter.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.gvReport.Appearance.GroupFooter.ForeColor = System.Drawing.Color.Black;
     this.gvReport.Appearance.GroupFooter.Options.UseBackColor = true;
     this.gvReport.Appearance.GroupFooter.Options.UseBorderColor = true;
     this.gvReport.Appearance.GroupFooter.Options.UseForeColor = true;
     this.gvReport.Appearance.GroupPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(62)))), ((int)(((byte)(109)))), ((int)(((byte)(185)))));
     this.gvReport.Appearance.GroupPanel.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvReport.Appearance.GroupPanel.Options.UseBackColor = true;
     this.gvReport.Appearance.GroupPanel.Options.UseForeColor = true;
     this.gvReport.Appearance.GroupRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.gvReport.Appearance.GroupRow.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.gvReport.Appearance.GroupRow.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
     this.gvReport.Appearance.GroupRow.ForeColor = System.Drawing.Color.Black;
     this.gvReport.Appearance.GroupRow.Options.UseBackColor = true;
     this.gvReport.Appearance.GroupRow.Options.UseBorderColor = true;
     this.gvReport.Appearance.GroupRow.Options.UseFont = true;
     this.gvReport.Appearance.GroupRow.Options.UseForeColor = true;
     this.gvReport.Appearance.HeaderPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvReport.Appearance.HeaderPanel.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(171)))), ((int)(((byte)(228)))));
     this.gvReport.Appearance.HeaderPanel.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvReport.Appearance.HeaderPanel.ForeColor = System.Drawing.Color.Black;
     this.gvReport.Appearance.HeaderPanel.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.gvReport.Appearance.HeaderPanel.Options.UseBackColor = true;
     this.gvReport.Appearance.HeaderPanel.Options.UseBorderColor = true;
     this.gvReport.Appearance.HeaderPanel.Options.UseForeColor = true;
     this.gvReport.Appearance.HideSelectionRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(106)))), ((int)(((byte)(153)))), ((int)(((byte)(228)))));
     this.gvReport.Appearance.HideSelectionRow.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(208)))), ((int)(((byte)(224)))), ((int)(((byte)(251)))));
     this.gvReport.Appearance.HideSelectionRow.Options.UseBackColor = true;
     this.gvReport.Appearance.HideSelectionRow.Options.UseForeColor = true;
     this.gvReport.Appearance.HorzLine.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(99)))), ((int)(((byte)(127)))), ((int)(((byte)(196)))));
     this.gvReport.Appearance.HorzLine.Options.UseBackColor = true;
     this.gvReport.Appearance.OddRow.BackColor = System.Drawing.Color.White;
     this.gvReport.Appearance.OddRow.ForeColor = System.Drawing.Color.Black;
     this.gvReport.Appearance.OddRow.Options.UseBackColor = true;
     this.gvReport.Appearance.OddRow.Options.UseForeColor = true;
     this.gvReport.Appearance.Preview.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(249)))), ((int)(((byte)(252)))), ((int)(((byte)(255)))));
     this.gvReport.Appearance.Preview.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(88)))), ((int)(((byte)(129)))), ((int)(((byte)(185)))));
     this.gvReport.Appearance.Preview.Options.UseBackColor = true;
     this.gvReport.Appearance.Preview.Options.UseForeColor = true;
     this.gvReport.Appearance.Row.BackColor = System.Drawing.Color.White;
     this.gvReport.Appearance.Row.ForeColor = System.Drawing.Color.Black;
     this.gvReport.Appearance.Row.Options.UseBackColor = true;
     this.gvReport.Appearance.Row.Options.UseForeColor = true;
     this.gvReport.Appearance.RowSeparator.BackColor = System.Drawing.Color.White;
     this.gvReport.Appearance.RowSeparator.Options.UseBackColor = true;
     this.gvReport.Appearance.SelectedRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(30)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(240)))));
     this.gvReport.Appearance.SelectedRow.ForeColor = System.Drawing.Color.White;
     this.gvReport.Appearance.SelectedRow.Options.UseBackColor = true;
     this.gvReport.Appearance.SelectedRow.Options.UseForeColor = true;
     this.gvReport.Appearance.VertLine.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(99)))), ((int)(((byte)(127)))), ((int)(((byte)(196)))));
     this.gvReport.Appearance.VertLine.Options.UseBackColor = true;
     this.gvReport.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gcRep_idrecep_sample_report,
     this.gcRep_order_report,
     this.gcRep_cod_recep_sample_report,
     this.gcRep_report_status,
     this.gcRep_type_report,
     this.gcRep_Option,
     this.gcRep_Str_cod_recep_sample_report,
     this.gcRep_Date_report});
     this.gvReport.GridControl = this.gcReport;
     this.gvReport.Name = "gvReport";
     this.gvReport.OptionsView.EnableAppearanceEvenRow = true;
     this.gvReport.OptionsView.EnableAppearanceOddRow = true;
     this.gvReport.OptionsView.ShowGroupPanel = false;
     this.gvReport.RowCellStyle += new DevExpress.XtraGrid.Views.Grid.RowCellStyleEventHandler(this.gvReport_RowCellStyle);
     this.gvReport.InitNewRow += new DevExpress.XtraGrid.Views.Grid.InitNewRowEventHandler(this.gvReport_InitNewRow);
     this.gvReport.FocusedRowChanged += new DevExpress.XtraGrid.Views.Base.FocusedRowChangedEventHandler(this.gvReport_FocusedRowChanged);
     //
     // gcRep_idrecep_sample_report
     //
     this.gcRep_idrecep_sample_report.Caption = "idrecep_sample_report";
     this.gcRep_idrecep_sample_report.FieldName = "Idrecep_sample_report";
     this.gcRep_idrecep_sample_report.Name = "gcRep_idrecep_sample_report";
     //
     // gcRep_order_report
     //
     this.gcRep_order_report.Caption = "N°";
     this.gcRep_order_report.FieldName = "Order_report";
     this.gcRep_order_report.Name = "gcRep_order_report";
     this.gcRep_order_report.OptionsColumn.AllowEdit = false;
     this.gcRep_order_report.OptionsFilter.AllowAutoFilter = false;
     this.gcRep_order_report.OptionsFilter.AllowFilter = false;
     this.gcRep_order_report.Visible = true;
     this.gcRep_order_report.VisibleIndex = 0;
     this.gcRep_order_report.Width = 23;
     //
     // gcRep_cod_recep_sample_report
     //
     this.gcRep_cod_recep_sample_report.Caption = "Código";
     this.gcRep_cod_recep_sample_report.FieldName = "Cod_recep_sample_report";
     this.gcRep_cod_recep_sample_report.Name = "gcRep_cod_recep_sample_report";
     this.gcRep_cod_recep_sample_report.OptionsColumn.AllowEdit = false;
     this.gcRep_cod_recep_sample_report.Width = 66;
     //
     // gcRep_report_status
     //
     this.gcRep_report_status.Caption = "Estado";
     this.gcRep_report_status.ColumnEdit = this.repStatusReport;
     this.gcRep_report_status.FieldName = "Report_status";
     this.gcRep_report_status.Name = "gcRep_report_status";
     this.gcRep_report_status.OptionsColumn.AllowEdit = false;
     this.gcRep_report_status.Visible = true;
     this.gcRep_report_status.VisibleIndex = 2;
     this.gcRep_report_status.Width = 74;
     //
     // repStatusReport
     //
     this.repStatusReport.AutoHeight = false;
     this.repStatusReport.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repStatusReport.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("IdStatus"),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Den_Status")});
     this.repStatusReport.Name = "repStatusReport";
     this.repStatusReport.NullText = "";
     this.repStatusReport.ShowFooter = false;
     this.repStatusReport.ShowHeader = false;
     //
     // gcRep_type_report
     //
     this.gcRep_type_report.Caption = "type_report";
     this.gcRep_type_report.FieldName = "Type_report";
     this.gcRep_type_report.Name = "gcRep_type_report";
     this.gcRep_type_report.Width = 69;
     //
     // gcRep_Option
     //
     this.gcRep_Option.Caption = "#";
     this.gcRep_Option.ColumnEdit = this.repReportOption;
     this.gcRep_Option.Name = "gcRep_Option";
     this.gcRep_Option.Visible = true;
     this.gcRep_Option.VisibleIndex = 3;
     this.gcRep_Option.Width = 81;
     //
     // repReportOption
     //
     this.repReportOption.AutoHeight = false;
     serializableAppearanceObject2.Font = new System.Drawing.Font("Tahoma", 7.5F);
     serializableAppearanceObject2.Options.UseFont = true;
     this.repReportOption.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.OK, "", -1, true, true, false, DevExpress.Utils.HorzAlignment.Center, null, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject2),
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Glyph, "ver", -1, true, true, false, DevExpress.Utils.HorzAlignment.Center, null),
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Glyph, "edit", -1, true, true, false, DevExpress.Utils.HorzAlignment.Center, null)});
     this.repReportOption.Name = "repReportOption";
     this.repReportOption.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.HideTextEditor;
     this.repReportOption.ButtonClick += new DevExpress.XtraEditors.Controls.ButtonPressedEventHandler(this.repReportOption_ButtonClick);
     //
     // gcRep_Str_cod_recep_sample_report
     //
     this.gcRep_Str_cod_recep_sample_report.Caption = "Cod. Interno";
     this.gcRep_Str_cod_recep_sample_report.FieldName = "Str_cod_recep_sample_report";
     this.gcRep_Str_cod_recep_sample_report.Name = "gcRep_Str_cod_recep_sample_report";
     this.gcRep_Str_cod_recep_sample_report.OptionsColumn.AllowEdit = false;
     this.gcRep_Str_cod_recep_sample_report.Visible = true;
     this.gcRep_Str_cod_recep_sample_report.VisibleIndex = 1;
     this.gcRep_Str_cod_recep_sample_report.Width = 123;
     //
     // gcRep_Date_report
     //
     this.gcRep_Date_report.Caption = "Date_report";
     this.gcRep_Date_report.FieldName = "Date_report";
     this.gcRep_Date_report.Name = "gcRep_Date_report";
     this.gcRep_Date_report.Width = 62;
     //
     // repDateReport
     //
     this.repDateReport.AutoHeight = false;
     this.repDateReport.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repDateReport.Name = "repDateReport";
     //
     // repTimeReport
     //
     this.repTimeReport.AutoHeight = false;
     this.repTimeReport.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.repTimeReport.Name = "repTimeReport";
     //
     // repTypeReport
     //
     this.repTypeReport.AutoHeight = false;
     this.repTypeReport.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repTypeReport.Name = "repTypeReport";
     //
     // groupControl1
     //
     this.groupControl1.Controls.Add(this.btMakePartialReport);
     this.groupControl1.Controls.Add(this.btMakeFinalReport);
     this.groupControl1.Dock = System.Windows.Forms.DockStyle.Top;
     this.groupControl1.Location = new System.Drawing.Point(0, 0);
     this.groupControl1.Name = "groupControl1";
     this.groupControl1.Size = new System.Drawing.Size(292, 53);
     this.groupControl1.TabIndex = 1;
     this.groupControl1.Text = "Crear Informe de Ensayo";
     //
     // btMakePartialReport
     //
     this.btMakePartialReport.AllowDrop = true;
     this.btMakePartialReport.Appearance.Options.UseTextOptions = true;
     this.btMakePartialReport.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.btMakePartialReport.Location = new System.Drawing.Point(5, 23);
     this.btMakePartialReport.Name = "btMakePartialReport";
     this.btMakePartialReport.Size = new System.Drawing.Size(90, 25);
     this.btMakePartialReport.TabIndex = 0;
     this.btMakePartialReport.Text = "Informe Parcial";
     this.btMakePartialReport.Click += new System.EventHandler(this.btMakePartialReport_Click);
     //
     // btMakeFinalReport
     //
     this.btMakeFinalReport.AllowDrop = true;
     this.btMakeFinalReport.Appearance.ForeColor = System.Drawing.Color.Black;
     this.btMakeFinalReport.Appearance.Options.UseForeColor = true;
     this.btMakeFinalReport.Appearance.Options.UseTextOptions = true;
     this.btMakeFinalReport.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.btMakeFinalReport.Location = new System.Drawing.Point(101, 23);
     this.btMakeFinalReport.Name = "btMakeFinalReport";
     this.btMakeFinalReport.Size = new System.Drawing.Size(90, 25);
     this.btMakeFinalReport.TabIndex = 0;
     this.btMakeFinalReport.Text = "Informe Final";
     this.btMakeFinalReport.Click += new System.EventHandler(this.btMakeFinalReport_Click);
     //
     // tpRightAttach
     //
     this.tpRightAttach.Controls.Add(this.gcAttachFile);
     this.tpRightAttach.Controls.Add(this.groupControl2);
     this.tpRightAttach.Name = "tpRightAttach";
     this.tpRightAttach.PageVisible = false;
     this.tpRightAttach.Size = new System.Drawing.Size(292, 0);
     this.tpRightAttach.Text = "Adjuntar";
     //
     // gcAttachFile
     //
     this.gcAttachFile.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gcAttachFile.EmbeddedNavigator.Name = "";
     this.gcAttachFile.Location = new System.Drawing.Point(0, 53);
     this.gcAttachFile.MainView = this.gvAttachFile;
     this.gcAttachFile.Name = "gcAttachFile";
     this.gcAttachFile.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repButtons,
     this.repAttach_status,
     this.repAttach_file});
     this.gcAttachFile.Size = new System.Drawing.Size(292, 0);
     this.gcAttachFile.TabIndex = 4;
     this.gcAttachFile.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gvAttachFile});
     //
     // gvAttachFile
     //
     this.gvAttachFile.Appearance.ColumnFilterButton.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvAttachFile.Appearance.ColumnFilterButton.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(171)))), ((int)(((byte)(228)))));
     this.gvAttachFile.Appearance.ColumnFilterButton.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvAttachFile.Appearance.ColumnFilterButton.ForeColor = System.Drawing.Color.Black;
     this.gvAttachFile.Appearance.ColumnFilterButton.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.gvAttachFile.Appearance.ColumnFilterButton.Options.UseBackColor = true;
     this.gvAttachFile.Appearance.ColumnFilterButton.Options.UseBorderColor = true;
     this.gvAttachFile.Appearance.ColumnFilterButton.Options.UseForeColor = true;
     this.gvAttachFile.Appearance.ColumnFilterButtonActive.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(247)))), ((int)(((byte)(251)))), ((int)(((byte)(255)))));
     this.gvAttachFile.Appearance.ColumnFilterButtonActive.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(154)))), ((int)(((byte)(190)))), ((int)(((byte)(243)))));
     this.gvAttachFile.Appearance.ColumnFilterButtonActive.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(247)))), ((int)(((byte)(251)))), ((int)(((byte)(255)))));
     this.gvAttachFile.Appearance.ColumnFilterButtonActive.ForeColor = System.Drawing.Color.Black;
     this.gvAttachFile.Appearance.ColumnFilterButtonActive.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.gvAttachFile.Appearance.ColumnFilterButtonActive.Options.UseBackColor = true;
     this.gvAttachFile.Appearance.ColumnFilterButtonActive.Options.UseBorderColor = true;
     this.gvAttachFile.Appearance.ColumnFilterButtonActive.Options.UseForeColor = true;
     this.gvAttachFile.Appearance.Empty.BackColor = System.Drawing.Color.White;
     this.gvAttachFile.Appearance.Empty.Options.UseBackColor = true;
     this.gvAttachFile.Appearance.EvenRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(231)))), ((int)(((byte)(242)))), ((int)(((byte)(254)))));
     this.gvAttachFile.Appearance.EvenRow.ForeColor = System.Drawing.Color.Black;
     this.gvAttachFile.Appearance.EvenRow.Options.UseBackColor = true;
     this.gvAttachFile.Appearance.EvenRow.Options.UseForeColor = true;
     this.gvAttachFile.Appearance.FilterCloseButton.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvAttachFile.Appearance.FilterCloseButton.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(171)))), ((int)(((byte)(228)))));
     this.gvAttachFile.Appearance.FilterCloseButton.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvAttachFile.Appearance.FilterCloseButton.ForeColor = System.Drawing.Color.Black;
     this.gvAttachFile.Appearance.FilterCloseButton.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.gvAttachFile.Appearance.FilterCloseButton.Options.UseBackColor = true;
     this.gvAttachFile.Appearance.FilterCloseButton.Options.UseBorderColor = true;
     this.gvAttachFile.Appearance.FilterCloseButton.Options.UseForeColor = true;
     this.gvAttachFile.Appearance.FilterPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(62)))), ((int)(((byte)(109)))), ((int)(((byte)(185)))));
     this.gvAttachFile.Appearance.FilterPanel.ForeColor = System.Drawing.Color.White;
     this.gvAttachFile.Appearance.FilterPanel.Options.UseBackColor = true;
     this.gvAttachFile.Appearance.FilterPanel.Options.UseForeColor = true;
     this.gvAttachFile.Appearance.FixedLine.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(59)))), ((int)(((byte)(97)))), ((int)(((byte)(156)))));
     this.gvAttachFile.Appearance.FixedLine.Options.UseBackColor = true;
     this.gvAttachFile.Appearance.FocusedCell.BackColor = System.Drawing.Color.White;
     this.gvAttachFile.Appearance.FocusedCell.ForeColor = System.Drawing.Color.Black;
     this.gvAttachFile.Appearance.FocusedCell.Options.UseBackColor = true;
     this.gvAttachFile.Appearance.FocusedCell.Options.UseForeColor = true;
     this.gvAttachFile.Appearance.FocusedRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(49)))), ((int)(((byte)(106)))), ((int)(((byte)(197)))));
     this.gvAttachFile.Appearance.FocusedRow.ForeColor = System.Drawing.Color.White;
     this.gvAttachFile.Appearance.FocusedRow.Options.UseBackColor = true;
     this.gvAttachFile.Appearance.FocusedRow.Options.UseForeColor = true;
     this.gvAttachFile.Appearance.FooterPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvAttachFile.Appearance.FooterPanel.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(171)))), ((int)(((byte)(228)))));
     this.gvAttachFile.Appearance.FooterPanel.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvAttachFile.Appearance.FooterPanel.ForeColor = System.Drawing.Color.Black;
     this.gvAttachFile.Appearance.FooterPanel.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.gvAttachFile.Appearance.FooterPanel.Options.UseBackColor = true;
     this.gvAttachFile.Appearance.FooterPanel.Options.UseBorderColor = true;
     this.gvAttachFile.Appearance.FooterPanel.Options.UseForeColor = true;
     this.gvAttachFile.Appearance.GroupButton.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.gvAttachFile.Appearance.GroupButton.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.gvAttachFile.Appearance.GroupButton.ForeColor = System.Drawing.Color.Black;
     this.gvAttachFile.Appearance.GroupButton.Options.UseBackColor = true;
     this.gvAttachFile.Appearance.GroupButton.Options.UseBorderColor = true;
     this.gvAttachFile.Appearance.GroupButton.Options.UseForeColor = true;
     this.gvAttachFile.Appearance.GroupFooter.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.gvAttachFile.Appearance.GroupFooter.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.gvAttachFile.Appearance.GroupFooter.ForeColor = System.Drawing.Color.Black;
     this.gvAttachFile.Appearance.GroupFooter.Options.UseBackColor = true;
     this.gvAttachFile.Appearance.GroupFooter.Options.UseBorderColor = true;
     this.gvAttachFile.Appearance.GroupFooter.Options.UseForeColor = true;
     this.gvAttachFile.Appearance.GroupPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(62)))), ((int)(((byte)(109)))), ((int)(((byte)(185)))));
     this.gvAttachFile.Appearance.GroupPanel.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvAttachFile.Appearance.GroupPanel.Options.UseBackColor = true;
     this.gvAttachFile.Appearance.GroupPanel.Options.UseForeColor = true;
     this.gvAttachFile.Appearance.GroupRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.gvAttachFile.Appearance.GroupRow.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.gvAttachFile.Appearance.GroupRow.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
     this.gvAttachFile.Appearance.GroupRow.ForeColor = System.Drawing.Color.Black;
     this.gvAttachFile.Appearance.GroupRow.Options.UseBackColor = true;
     this.gvAttachFile.Appearance.GroupRow.Options.UseBorderColor = true;
     this.gvAttachFile.Appearance.GroupRow.Options.UseFont = true;
     this.gvAttachFile.Appearance.GroupRow.Options.UseForeColor = true;
     this.gvAttachFile.Appearance.HeaderPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvAttachFile.Appearance.HeaderPanel.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(171)))), ((int)(((byte)(228)))));
     this.gvAttachFile.Appearance.HeaderPanel.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvAttachFile.Appearance.HeaderPanel.ForeColor = System.Drawing.Color.Black;
     this.gvAttachFile.Appearance.HeaderPanel.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.gvAttachFile.Appearance.HeaderPanel.Options.UseBackColor = true;
     this.gvAttachFile.Appearance.HeaderPanel.Options.UseBorderColor = true;
     this.gvAttachFile.Appearance.HeaderPanel.Options.UseForeColor = true;
     this.gvAttachFile.Appearance.HideSelectionRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(106)))), ((int)(((byte)(153)))), ((int)(((byte)(228)))));
     this.gvAttachFile.Appearance.HideSelectionRow.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(208)))), ((int)(((byte)(224)))), ((int)(((byte)(251)))));
     this.gvAttachFile.Appearance.HideSelectionRow.Options.UseBackColor = true;
     this.gvAttachFile.Appearance.HideSelectionRow.Options.UseForeColor = true;
     this.gvAttachFile.Appearance.HorzLine.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(99)))), ((int)(((byte)(127)))), ((int)(((byte)(196)))));
     this.gvAttachFile.Appearance.HorzLine.Options.UseBackColor = true;
     this.gvAttachFile.Appearance.OddRow.BackColor = System.Drawing.Color.White;
     this.gvAttachFile.Appearance.OddRow.ForeColor = System.Drawing.Color.Black;
     this.gvAttachFile.Appearance.OddRow.Options.UseBackColor = true;
     this.gvAttachFile.Appearance.OddRow.Options.UseForeColor = true;
     this.gvAttachFile.Appearance.Preview.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(249)))), ((int)(((byte)(252)))), ((int)(((byte)(255)))));
     this.gvAttachFile.Appearance.Preview.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(88)))), ((int)(((byte)(129)))), ((int)(((byte)(185)))));
     this.gvAttachFile.Appearance.Preview.Options.UseBackColor = true;
     this.gvAttachFile.Appearance.Preview.Options.UseForeColor = true;
     this.gvAttachFile.Appearance.Row.BackColor = System.Drawing.Color.White;
     this.gvAttachFile.Appearance.Row.ForeColor = System.Drawing.Color.Black;
     this.gvAttachFile.Appearance.Row.Options.UseBackColor = true;
     this.gvAttachFile.Appearance.Row.Options.UseForeColor = true;
     this.gvAttachFile.Appearance.RowSeparator.BackColor = System.Drawing.Color.White;
     this.gvAttachFile.Appearance.RowSeparator.Options.UseBackColor = true;
     this.gvAttachFile.Appearance.SelectedRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(69)))), ((int)(((byte)(126)))), ((int)(((byte)(217)))));
     this.gvAttachFile.Appearance.SelectedRow.ForeColor = System.Drawing.Color.White;
     this.gvAttachFile.Appearance.SelectedRow.Options.UseBackColor = true;
     this.gvAttachFile.Appearance.SelectedRow.Options.UseForeColor = true;
     this.gvAttachFile.Appearance.VertLine.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(99)))), ((int)(((byte)(127)))), ((int)(((byte)(196)))));
     this.gvAttachFile.Appearance.VertLine.Options.UseBackColor = true;
     this.gvAttachFile.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gcAtt_Iddocument_recep,
     this.gcAtt_Idrecep_sample,
     this.gcAtt_FileName,
     this.gcAtt_Attach_status,
     this.gcAtt_Buttons,
     this.gcAtt_SourcePath,
     this.gcAtt_Order_file,
     this.gcAtt_Idrecep_sample_attach});
     this.gvAttachFile.GridControl = this.gcAttachFile;
     this.gvAttachFile.Name = "gvAttachFile";
     this.gvAttachFile.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gvAttachFile.OptionsSelection.EnableAppearanceFocusedRow = false;
     this.gvAttachFile.OptionsView.EnableAppearanceEvenRow = true;
     this.gvAttachFile.OptionsView.EnableAppearanceOddRow = true;
     this.gvAttachFile.OptionsView.ShowGroupPanel = false;
     this.gvAttachFile.RowCellStyle += new DevExpress.XtraGrid.Views.Grid.RowCellStyleEventHandler(this.gvAttachFile_RowCellStyle);
     //
     // gcAtt_Iddocument_recep
     //
     this.gcAtt_Iddocument_recep.Caption = "Iddocument_recep";
     this.gcAtt_Iddocument_recep.FieldName = "Iddocument_recep";
     this.gcAtt_Iddocument_recep.Name = "gcAtt_Iddocument_recep";
     //
     // gcAtt_Idrecep_sample
     //
     this.gcAtt_Idrecep_sample.Caption = "gridColumn1";
     this.gcAtt_Idrecep_sample.FieldName = "Idrecep_sample";
     this.gcAtt_Idrecep_sample.Name = "gcAtt_Idrecep_sample";
     //
     // gcAtt_FileName
     //
     this.gcAtt_FileName.Caption = "Adjuntar Documento";
     this.gcAtt_FileName.ColumnEdit = this.repAttach_file;
     this.gcAtt_FileName.FieldName = "Name_file";
     this.gcAtt_FileName.Name = "gcAtt_FileName";
     this.gcAtt_FileName.Visible = true;
     this.gcAtt_FileName.VisibleIndex = 0;
     this.gcAtt_FileName.Width = 142;
     //
     // repAttach_file
     //
     this.repAttach_file.AutoHeight = false;
     serializableAppearanceObject3.Font = new System.Drawing.Font("Tahoma", 7.5F);
     serializableAppearanceObject3.Options.UseFont = true;
     this.repAttach_file.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo),
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Glyph, "Cargar", -1, true, true, false, DevExpress.Utils.HorzAlignment.Center, null, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject3)});
     this.repAttach_file.Name = "repAttach_file";
     this.repAttach_file.NullText = "";
     //
     // gcAtt_Attach_status
     //
     this.gcAtt_Attach_status.Caption = "Estado";
     this.gcAtt_Attach_status.ColumnEdit = this.repAttach_status;
     this.gcAtt_Attach_status.FieldName = "Attach_status";
     this.gcAtt_Attach_status.Name = "gcAtt_Attach_status";
     this.gcAtt_Attach_status.Visible = true;
     this.gcAtt_Attach_status.VisibleIndex = 1;
     this.gcAtt_Attach_status.Width = 99;
     //
     // repAttach_status
     //
     this.repAttach_status.AutoHeight = false;
     this.repAttach_status.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repAttach_status.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Id", "", 20, DevExpress.Utils.FormatType.None, "", false, DevExpress.Utils.HorzAlignment.Default, DevExpress.Data.ColumnSortOrder.None),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Attach_status")});
     this.repAttach_status.Name = "repAttach_status";
     this.repAttach_status.NullText = "";
     this.repAttach_status.ShowFooter = false;
     this.repAttach_status.ShowHeader = false;
     //
     // gcAtt_Buttons
     //
     this.gcAtt_Buttons.Caption = "#";
     this.gcAtt_Buttons.ColumnEdit = this.repButtons;
     this.gcAtt_Buttons.Name = "gcAtt_Buttons";
     this.gcAtt_Buttons.Visible = true;
     this.gcAtt_Buttons.VisibleIndex = 2;
     this.gcAtt_Buttons.Width = 49;
     //
     // repButtons
     //
     this.repButtons.AutoHeight = false;
     serializableAppearanceObject4.Font = new System.Drawing.Font("Tahoma", 7.5F);
     serializableAppearanceObject4.Options.UseFont = true;
     this.repButtons.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.OK),
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Glyph, "ver", -1, true, true, false, DevExpress.Utils.HorzAlignment.Center, null, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject4)});
     this.repButtons.Name = "repButtons";
     this.repButtons.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.HideTextEditor;
     this.repButtons.ButtonClick += new DevExpress.XtraEditors.Controls.ButtonPressedEventHandler(this.repButtons_ButtonClick);
     //
     // gcAtt_SourcePath
     //
     this.gcAtt_SourcePath.Caption = "Source path";
     this.gcAtt_SourcePath.FieldName = "Source_path";
     this.gcAtt_SourcePath.Name = "gcAtt_SourcePath";
     //
     // gcAtt_Order_file
     //
     this.gcAtt_Order_file.Caption = "Order_file";
     this.gcAtt_Order_file.FieldName = "Order_file";
     this.gcAtt_Order_file.Name = "gcAtt_Order_file";
     //
     // gcAtt_Idrecep_sample_attach
     //
     this.gcAtt_Idrecep_sample_attach.Caption = "Idrecep_sample_attach";
     this.gcAtt_Idrecep_sample_attach.FieldName = "Idrecep_sample_attach";
     this.gcAtt_Idrecep_sample_attach.Name = "gcAtt_Idrecep_sample_attach";
     //
     // groupControl2
     //
     this.groupControl2.Controls.Add(this.btNewFile);
     this.groupControl2.Dock = System.Windows.Forms.DockStyle.Top;
     this.groupControl2.Location = new System.Drawing.Point(0, 0);
     this.groupControl2.Name = "groupControl2";
     this.groupControl2.Size = new System.Drawing.Size(292, 53);
     this.groupControl2.TabIndex = 3;
     this.groupControl2.Text = "Adjuntar a partir de un archivo";
     //
     // btNewFile
     //
     this.btNewFile.AllowDrop = true;
     this.btNewFile.Appearance.Options.UseTextOptions = true;
     this.btNewFile.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.btNewFile.Location = new System.Drawing.Point(5, 22);
     this.btNewFile.Name = "btNewFile";
     this.btNewFile.Size = new System.Drawing.Size(56, 25);
     this.btNewFile.TabIndex = 0;
     this.btNewFile.Text = "Nuevo";
     this.btNewFile.Click += new System.EventHandler(this.btNewFile_Click);
     //
     // tpRightProgram
     //
     this.tpRightProgram.Controls.Add(this.gcProgram);
     this.tpRightProgram.Controls.Add(this.groupControl3);
     this.tpRightProgram.Name = "tpRightProgram";
     this.tpRightProgram.PageVisible = false;
     this.tpRightProgram.Size = new System.Drawing.Size(292, 0);
     this.tpRightProgram.Text = "Programar";
     //
     // gcProgram
     //
     this.gcProgram.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gcProgram.EmbeddedNavigator.Name = "";
     this.gcProgram.Location = new System.Drawing.Point(0, 53);
     this.gcProgram.MainView = this.gvProgram;
     this.gcProgram.Name = "gcProgram";
     this.gcProgram.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repProgramButton,
     this.repProgramStatus,
     this.repDateProgram,
     this.repTimeProgram});
     this.gcProgram.Size = new System.Drawing.Size(292, 0);
     this.gcProgram.TabIndex = 4;
     this.gcProgram.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gvProgram});
     //
     // gvProgram
     //
     this.gvProgram.Appearance.ColumnFilterButton.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvProgram.Appearance.ColumnFilterButton.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(171)))), ((int)(((byte)(228)))));
     this.gvProgram.Appearance.ColumnFilterButton.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvProgram.Appearance.ColumnFilterButton.ForeColor = System.Drawing.Color.Black;
     this.gvProgram.Appearance.ColumnFilterButton.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.gvProgram.Appearance.ColumnFilterButton.Options.UseBackColor = true;
     this.gvProgram.Appearance.ColumnFilterButton.Options.UseBorderColor = true;
     this.gvProgram.Appearance.ColumnFilterButton.Options.UseForeColor = true;
     this.gvProgram.Appearance.ColumnFilterButtonActive.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(247)))), ((int)(((byte)(251)))), ((int)(((byte)(255)))));
     this.gvProgram.Appearance.ColumnFilterButtonActive.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(154)))), ((int)(((byte)(190)))), ((int)(((byte)(243)))));
     this.gvProgram.Appearance.ColumnFilterButtonActive.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(247)))), ((int)(((byte)(251)))), ((int)(((byte)(255)))));
     this.gvProgram.Appearance.ColumnFilterButtonActive.ForeColor = System.Drawing.Color.Black;
     this.gvProgram.Appearance.ColumnFilterButtonActive.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.gvProgram.Appearance.ColumnFilterButtonActive.Options.UseBackColor = true;
     this.gvProgram.Appearance.ColumnFilterButtonActive.Options.UseBorderColor = true;
     this.gvProgram.Appearance.ColumnFilterButtonActive.Options.UseForeColor = true;
     this.gvProgram.Appearance.Empty.BackColor = System.Drawing.Color.White;
     this.gvProgram.Appearance.Empty.Options.UseBackColor = true;
     this.gvProgram.Appearance.EvenRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(231)))), ((int)(((byte)(242)))), ((int)(((byte)(254)))));
     this.gvProgram.Appearance.EvenRow.ForeColor = System.Drawing.Color.Black;
     this.gvProgram.Appearance.EvenRow.Options.UseBackColor = true;
     this.gvProgram.Appearance.EvenRow.Options.UseForeColor = true;
     this.gvProgram.Appearance.FilterCloseButton.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvProgram.Appearance.FilterCloseButton.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(171)))), ((int)(((byte)(228)))));
     this.gvProgram.Appearance.FilterCloseButton.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvProgram.Appearance.FilterCloseButton.ForeColor = System.Drawing.Color.Black;
     this.gvProgram.Appearance.FilterCloseButton.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.gvProgram.Appearance.FilterCloseButton.Options.UseBackColor = true;
     this.gvProgram.Appearance.FilterCloseButton.Options.UseBorderColor = true;
     this.gvProgram.Appearance.FilterCloseButton.Options.UseForeColor = true;
     this.gvProgram.Appearance.FilterPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(62)))), ((int)(((byte)(109)))), ((int)(((byte)(185)))));
     this.gvProgram.Appearance.FilterPanel.ForeColor = System.Drawing.Color.White;
     this.gvProgram.Appearance.FilterPanel.Options.UseBackColor = true;
     this.gvProgram.Appearance.FilterPanel.Options.UseForeColor = true;
     this.gvProgram.Appearance.FixedLine.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(59)))), ((int)(((byte)(97)))), ((int)(((byte)(156)))));
     this.gvProgram.Appearance.FixedLine.Options.UseBackColor = true;
     this.gvProgram.Appearance.FocusedCell.BackColor = System.Drawing.Color.White;
     this.gvProgram.Appearance.FocusedCell.ForeColor = System.Drawing.Color.Black;
     this.gvProgram.Appearance.FocusedCell.Options.UseBackColor = true;
     this.gvProgram.Appearance.FocusedCell.Options.UseForeColor = true;
     this.gvProgram.Appearance.FocusedRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(49)))), ((int)(((byte)(106)))), ((int)(((byte)(197)))));
     this.gvProgram.Appearance.FocusedRow.ForeColor = System.Drawing.Color.White;
     this.gvProgram.Appearance.FocusedRow.Options.UseBackColor = true;
     this.gvProgram.Appearance.FocusedRow.Options.UseForeColor = true;
     this.gvProgram.Appearance.FooterPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvProgram.Appearance.FooterPanel.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(171)))), ((int)(((byte)(228)))));
     this.gvProgram.Appearance.FooterPanel.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvProgram.Appearance.FooterPanel.ForeColor = System.Drawing.Color.Black;
     this.gvProgram.Appearance.FooterPanel.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.gvProgram.Appearance.FooterPanel.Options.UseBackColor = true;
     this.gvProgram.Appearance.FooterPanel.Options.UseBorderColor = true;
     this.gvProgram.Appearance.FooterPanel.Options.UseForeColor = true;
     this.gvProgram.Appearance.GroupButton.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.gvProgram.Appearance.GroupButton.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.gvProgram.Appearance.GroupButton.ForeColor = System.Drawing.Color.Black;
     this.gvProgram.Appearance.GroupButton.Options.UseBackColor = true;
     this.gvProgram.Appearance.GroupButton.Options.UseBorderColor = true;
     this.gvProgram.Appearance.GroupButton.Options.UseForeColor = true;
     this.gvProgram.Appearance.GroupFooter.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.gvProgram.Appearance.GroupFooter.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.gvProgram.Appearance.GroupFooter.ForeColor = System.Drawing.Color.Black;
     this.gvProgram.Appearance.GroupFooter.Options.UseBackColor = true;
     this.gvProgram.Appearance.GroupFooter.Options.UseBorderColor = true;
     this.gvProgram.Appearance.GroupFooter.Options.UseForeColor = true;
     this.gvProgram.Appearance.GroupPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(62)))), ((int)(((byte)(109)))), ((int)(((byte)(185)))));
     this.gvProgram.Appearance.GroupPanel.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvProgram.Appearance.GroupPanel.Options.UseBackColor = true;
     this.gvProgram.Appearance.GroupPanel.Options.UseForeColor = true;
     this.gvProgram.Appearance.GroupRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.gvProgram.Appearance.GroupRow.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.gvProgram.Appearance.GroupRow.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
     this.gvProgram.Appearance.GroupRow.ForeColor = System.Drawing.Color.Black;
     this.gvProgram.Appearance.GroupRow.Options.UseBackColor = true;
     this.gvProgram.Appearance.GroupRow.Options.UseBorderColor = true;
     this.gvProgram.Appearance.GroupRow.Options.UseFont = true;
     this.gvProgram.Appearance.GroupRow.Options.UseForeColor = true;
     this.gvProgram.Appearance.HeaderPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvProgram.Appearance.HeaderPanel.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(171)))), ((int)(((byte)(228)))));
     this.gvProgram.Appearance.HeaderPanel.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvProgram.Appearance.HeaderPanel.ForeColor = System.Drawing.Color.Black;
     this.gvProgram.Appearance.HeaderPanel.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.gvProgram.Appearance.HeaderPanel.Options.UseBackColor = true;
     this.gvProgram.Appearance.HeaderPanel.Options.UseBorderColor = true;
     this.gvProgram.Appearance.HeaderPanel.Options.UseForeColor = true;
     this.gvProgram.Appearance.HideSelectionRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(106)))), ((int)(((byte)(153)))), ((int)(((byte)(228)))));
     this.gvProgram.Appearance.HideSelectionRow.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(208)))), ((int)(((byte)(224)))), ((int)(((byte)(251)))));
     this.gvProgram.Appearance.HideSelectionRow.Options.UseBackColor = true;
     this.gvProgram.Appearance.HideSelectionRow.Options.UseForeColor = true;
     this.gvProgram.Appearance.HorzLine.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(99)))), ((int)(((byte)(127)))), ((int)(((byte)(196)))));
     this.gvProgram.Appearance.HorzLine.Options.UseBackColor = true;
     this.gvProgram.Appearance.OddRow.BackColor = System.Drawing.Color.White;
     this.gvProgram.Appearance.OddRow.ForeColor = System.Drawing.Color.Black;
     this.gvProgram.Appearance.OddRow.Options.UseBackColor = true;
     this.gvProgram.Appearance.OddRow.Options.UseForeColor = true;
     this.gvProgram.Appearance.Preview.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(249)))), ((int)(((byte)(252)))), ((int)(((byte)(255)))));
     this.gvProgram.Appearance.Preview.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(88)))), ((int)(((byte)(129)))), ((int)(((byte)(185)))));
     this.gvProgram.Appearance.Preview.Options.UseBackColor = true;
     this.gvProgram.Appearance.Preview.Options.UseForeColor = true;
     this.gvProgram.Appearance.Row.BackColor = System.Drawing.Color.White;
     this.gvProgram.Appearance.Row.ForeColor = System.Drawing.Color.Black;
     this.gvProgram.Appearance.Row.Options.UseBackColor = true;
     this.gvProgram.Appearance.Row.Options.UseForeColor = true;
     this.gvProgram.Appearance.RowSeparator.BackColor = System.Drawing.Color.White;
     this.gvProgram.Appearance.RowSeparator.Options.UseBackColor = true;
     this.gvProgram.Appearance.SelectedRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(69)))), ((int)(((byte)(126)))), ((int)(((byte)(217)))));
     this.gvProgram.Appearance.SelectedRow.ForeColor = System.Drawing.Color.White;
     this.gvProgram.Appearance.SelectedRow.Options.UseBackColor = true;
     this.gvProgram.Appearance.SelectedRow.Options.UseForeColor = true;
     this.gvProgram.Appearance.VertLine.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(99)))), ((int)(((byte)(127)))), ((int)(((byte)(196)))));
     this.gvProgram.Appearance.VertLine.Options.UseBackColor = true;
     this.gvProgram.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gcProg_Idrecep_sample_program,
     this.gcProg_Order_report,
     this.gcProg_Cod_recep_sample_program,
     this.gcProg_Program_status,
     this.gridColumn6,
     this.gcProg_Date_report,
     this.gcProg_Time_report,
     this.gcProg_Str_cod_recep_sample_program});
     this.gvProgram.GridControl = this.gcProgram;
     this.gvProgram.Name = "gvProgram";
     this.gvProgram.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gvProgram.OptionsSelection.EnableAppearanceFocusedRow = false;
     this.gvProgram.OptionsView.EnableAppearanceEvenRow = true;
     this.gvProgram.OptionsView.EnableAppearanceOddRow = true;
     this.gvProgram.OptionsView.ShowGroupPanel = false;
     this.gvProgram.RowCellStyle += new DevExpress.XtraGrid.Views.Grid.RowCellStyleEventHandler(this.gvProgram_RowCellStyle);
     this.gvProgram.InitNewRow += new DevExpress.XtraGrid.Views.Grid.InitNewRowEventHandler(this.gvProgram_InitNewRow);
     this.gvProgram.FocusedRowChanged += new DevExpress.XtraGrid.Views.Base.FocusedRowChangedEventHandler(this.gvProgram_FocusedRowChanged);
     //
     // gcProg_Idrecep_sample_program
     //
     this.gcProg_Idrecep_sample_program.Caption = "idrecep_sample_report";
     this.gcProg_Idrecep_sample_program.FieldName = "Idrecep_sample_program";
     this.gcProg_Idrecep_sample_program.Name = "gcProg_Idrecep_sample_program";
     //
     // gcProg_Order_report
     //
     this.gcProg_Order_report.Caption = "N°";
     this.gcProg_Order_report.FieldName = "Order_report";
     this.gcProg_Order_report.Name = "gcProg_Order_report";
     this.gcProg_Order_report.OptionsColumn.AllowEdit = false;
     this.gcProg_Order_report.OptionsFilter.AllowAutoFilter = false;
     this.gcProg_Order_report.OptionsFilter.AllowFilter = false;
     this.gcProg_Order_report.Visible = true;
     this.gcProg_Order_report.VisibleIndex = 0;
     this.gcProg_Order_report.Width = 23;
     //
     // gcProg_Cod_recep_sample_program
     //
     this.gcProg_Cod_recep_sample_program.Caption = "Código";
     this.gcProg_Cod_recep_sample_program.FieldName = "Cod_recep_sample_program";
     this.gcProg_Cod_recep_sample_program.Name = "gcProg_Cod_recep_sample_program";
     this.gcProg_Cod_recep_sample_program.OptionsColumn.AllowEdit = false;
     this.gcProg_Cod_recep_sample_program.Width = 63;
     //
     // gcProg_Program_status
     //
     this.gcProg_Program_status.Caption = "Estado";
     this.gcProg_Program_status.ColumnEdit = this.repProgramStatus;
     this.gcProg_Program_status.FieldName = "Program_status";
     this.gcProg_Program_status.Name = "gcProg_Program_status";
     this.gcProg_Program_status.OptionsColumn.AllowEdit = false;
     this.gcProg_Program_status.Width = 42;
     //
     // repProgramStatus
     //
     this.repProgramStatus.AutoHeight = false;
     this.repProgramStatus.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repProgramStatus.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("IdStatus"),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Den_Status")});
     this.repProgramStatus.Name = "repProgramStatus";
     this.repProgramStatus.NullText = "";
     this.repProgramStatus.ShowFooter = false;
     this.repProgramStatus.ShowHeader = false;
     //
     // gridColumn6
     //
     this.gridColumn6.Caption = "#";
     this.gridColumn6.ColumnEdit = this.repProgramButton;
     this.gridColumn6.Name = "gridColumn6";
     this.gridColumn6.Visible = true;
     this.gridColumn6.VisibleIndex = 4;
     this.gridColumn6.Width = 67;
     //
     // repProgramButton
     //
     this.repProgramButton.AutoHeight = false;
     this.repProgramButton.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Glyph, "Programar", -1, true, true, false, DevExpress.Utils.HorzAlignment.Center, null)});
     this.repProgramButton.Name = "repProgramButton";
     this.repProgramButton.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.HideTextEditor;
     this.repProgramButton.ButtonClick += new DevExpress.XtraEditors.Controls.ButtonPressedEventHandler(this.repProgramButton_ButtonClick);
     //
     // gcProg_Date_report
     //
     this.gcProg_Date_report.Caption = "Fecha";
     this.gcProg_Date_report.ColumnEdit = this.repDateProgram;
     this.gcProg_Date_report.FieldName = "Date_report";
     this.gcProg_Date_report.Name = "gcProg_Date_report";
     this.gcProg_Date_report.OptionsFilter.AllowAutoFilter = false;
     this.gcProg_Date_report.OptionsFilter.AllowFilter = false;
     this.gcProg_Date_report.Visible = true;
     this.gcProg_Date_report.VisibleIndex = 2;
     this.gcProg_Date_report.Width = 67;
     //
     // repDateProgram
     //
     this.repDateProgram.AutoHeight = false;
     this.repDateProgram.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repDateProgram.Name = "repDateProgram";
     //
     // gcProg_Time_report
     //
     this.gcProg_Time_report.Caption = "Hora";
     this.gcProg_Time_report.ColumnEdit = this.repTimeProgram;
     this.gcProg_Time_report.FieldName = "Time_report";
     this.gcProg_Time_report.Name = "gcProg_Time_report";
     this.gcProg_Time_report.OptionsFilter.AllowAutoFilter = false;
     this.gcProg_Time_report.OptionsFilter.AllowFilter = false;
     this.gcProg_Time_report.Visible = true;
     this.gcProg_Time_report.VisibleIndex = 3;
     this.gcProg_Time_report.Width = 66;
     //
     // repTimeProgram
     //
     this.repTimeProgram.AutoHeight = false;
     this.repTimeProgram.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.repTimeProgram.Mask.EditMask = "t";
     this.repTimeProgram.Name = "repTimeProgram";
     //
     // gcProg_Str_cod_recep_sample_program
     //
     this.gcProg_Str_cod_recep_sample_program.Caption = "Código";
     this.gcProg_Str_cod_recep_sample_program.FieldName = "Str_cod_recep_sample_program";
     this.gcProg_Str_cod_recep_sample_program.Name = "gcProg_Str_cod_recep_sample_program";
     this.gcProg_Str_cod_recep_sample_program.OptionsColumn.AllowEdit = false;
     this.gcProg_Str_cod_recep_sample_program.OptionsFilter.AllowAutoFilter = false;
     this.gcProg_Str_cod_recep_sample_program.OptionsFilter.AllowFilter = false;
     this.gcProg_Str_cod_recep_sample_program.Visible = true;
     this.gcProg_Str_cod_recep_sample_program.VisibleIndex = 1;
     this.gcProg_Str_cod_recep_sample_program.Width = 78;
     //
     // groupControl3
     //
     this.groupControl3.Controls.Add(this.btProgramSelection);
     this.groupControl3.Dock = System.Windows.Forms.DockStyle.Top;
     this.groupControl3.Location = new System.Drawing.Point(0, 0);
     this.groupControl3.Name = "groupControl3";
     this.groupControl3.Size = new System.Drawing.Size(292, 53);
     this.groupControl3.TabIndex = 3;
     this.groupControl3.Text = "Crear Informe de Ensayo";
     //
     // btProgramSelection
     //
     this.btProgramSelection.AllowDrop = true;
     this.btProgramSelection.Appearance.Options.UseTextOptions = true;
     this.btProgramSelection.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.btProgramSelection.Location = new System.Drawing.Point(5, 23);
     this.btProgramSelection.Name = "btProgramSelection";
     this.btProgramSelection.Size = new System.Drawing.Size(113, 25);
     this.btProgramSelection.TabIndex = 0;
     this.btProgramSelection.Text = "Agregar selección";
     this.btProgramSelection.Click += new System.EventHandler(this.btProgramSelection_Click);
     //
     // btPrintTicket
     //
     this.btPrintTicket.FlatAppearance.BorderSize = 0;
     this.btPrintTicket.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.btPrintTicket.Location = new System.Drawing.Point(729, 12);
     this.btPrintTicket.Name = "btPrintTicket";
     this.btPrintTicket.Size = new System.Drawing.Size(48, 23);
     this.btPrintTicket.TabIndex = 10;
     this.btPrintTicket.Text = "Imprimir Etiquetas";
     this.btPrintTicket.UseVisualStyleBackColor = true;
     this.btPrintTicket.Visible = false;
     this.btPrintTicket.Click += new System.EventHandler(this.btPrintTicket_Click_1);
     //
     // btDesignPrint
     //
     this.btDesignPrint.FlatAppearance.BorderSize = 0;
     this.btDesignPrint.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.btDesignPrint.Location = new System.Drawing.Point(772, 9);
     this.btDesignPrint.Name = "btDesignPrint";
     this.btDesignPrint.Size = new System.Drawing.Size(69, 23);
     this.btDesignPrint.TabIndex = 10;
     this.btDesignPrint.Text = "Diseñar Etiquetas";
     this.btDesignPrint.UseVisualStyleBackColor = true;
     this.btDesignPrint.Visible = false;
     this.btDesignPrint.Click += new System.EventHandler(this.btDesignPrint_Click);
     //
     // deReception
     //
     this.deReception.EditValue = null;
     this.deReception.Location = new System.Drawing.Point(75, 5);
     this.deReception.Name = "deReception";
     this.deReception.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.deReception.Properties.ReadOnly = true;
     this.deReception.Size = new System.Drawing.Size(87, 20);
     this.deReception.TabIndex = 10;
     //
     // label12
     //
     this.label12.AutoSize = true;
     this.label12.Location = new System.Drawing.Point(12, 8);
     this.label12.Name = "label12";
     this.label12.Size = new System.Drawing.Size(62, 13);
     this.label12.TabIndex = 9;
     this.label12.Text = "Recepción:";
     //
     // label19
     //
     this.label19.AutoSize = true;
     this.label19.Location = new System.Drawing.Point(12, 50);
     this.label19.Name = "label19";
     this.label19.Size = new System.Drawing.Size(47, 13);
     this.label19.TabIndex = 9;
     this.label19.Text = "Entrega:";
     //
     // deResult
     //
     this.deResult.EditValue = null;
     this.deResult.Location = new System.Drawing.Point(75, 47);
     this.deResult.Name = "deResult";
     this.deResult.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.deResult.Size = new System.Drawing.Size(87, 20);
     this.deResult.TabIndex = 10;
     //
     // xtraTabControl2
     //
     this.xtraTabControl2.Appearance.BackColor = System.Drawing.Color.Transparent;
     this.xtraTabControl2.Appearance.Options.UseBackColor = true;
     this.xtraTabControl2.AppearancePage.Header.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(209)))), ((int)(((byte)(222)))), ((int)(((byte)(243)))));
     this.xtraTabControl2.AppearancePage.Header.BorderColor = System.Drawing.Color.White;
     this.xtraTabControl2.AppearancePage.Header.Options.UseBackColor = true;
     this.xtraTabControl2.AppearancePage.Header.Options.UseBorderColor = true;
     this.xtraTabControl2.AppearancePage.HeaderActive.BackColor = System.Drawing.Color.LightSteelBlue;
     this.xtraTabControl2.AppearancePage.HeaderActive.BorderColor = System.Drawing.Color.Gainsboro;
     this.xtraTabControl2.AppearancePage.HeaderActive.Options.UseBackColor = true;
     this.xtraTabControl2.AppearancePage.HeaderActive.Options.UseBorderColor = true;
     this.xtraTabControl2.AppearancePage.PageClient.BorderColor = System.Drawing.Color.Gainsboro;
     this.xtraTabControl2.AppearancePage.PageClient.Options.UseBorderColor = true;
     this.xtraTabControl2.Location = new System.Drawing.Point(551, 29);
     this.xtraTabControl2.Name = "xtraTabControl2";
     this.xtraTabControl2.PaintStyleName = "PropertyView";
     this.xtraTabControl2.SelectedTabPage = this.tabDateRegRecep;
     this.xtraTabControl2.Size = new System.Drawing.Size(264, 114);
     this.xtraTabControl2.TabIndex = 4;
     this.xtraTabControl2.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
     this.tabDateRegRecep});
     //
     // tabDateRegRecep
     //
     this.tabDateRegRecep.Controls.Add(this.tbNumDays);
     this.tabDateRegRecep.Controls.Add(this.deHourResult);
     this.tabDateRegRecep.Controls.Add(this.deHourReception);
     this.tabDateRegRecep.Controls.Add(this.label27);
     this.tabDateRegRecep.Controls.Add(this.deReception);
     this.tabDateRegRecep.Controls.Add(this.lookUpEdit1);
     this.tabDateRegRecep.Controls.Add(this.deResult);
     this.tabDateRegRecep.Controls.Add(this.label19);
     this.tabDateRegRecep.Controls.Add(this.textEdit3);
     this.tabDateRegRecep.Controls.Add(this.label12);
     this.tabDateRegRecep.Name = "tabDateRegRecep";
     this.tabDateRegRecep.Size = new System.Drawing.Size(262, 93);
     this.tabDateRegRecep.Text = "Fechas";
     //
     // tbNumDays
     //
     this.tbNumDays.EditValue = new decimal(new int[] {
     0,
     0,
     0,
     0});
     this.tbNumDays.Location = new System.Drawing.Point(75, 26);
     this.tbNumDays.Name = "tbNumDays";
     this.tbNumDays.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.tbNumDays.Properties.IsFloatValue = false;
     this.tbNumDays.Properties.Mask.EditMask = "N00";
     this.tbNumDays.Size = new System.Drawing.Size(42, 20);
     this.tbNumDays.TabIndex = 12;
     this.tbNumDays.EditValueChanged += new System.EventHandler(this.tbNumDays_EditValueChanged);
     //
     // deHourResult
     //
     this.deHourResult.EditValue = null;
     this.deHourResult.Location = new System.Drawing.Point(164, 47);
     this.deHourResult.Name = "deHourResult";
     this.deHourResult.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.deHourResult.Properties.Mask.EditMask = "t";
     this.deHourResult.Size = new System.Drawing.Size(91, 20);
     this.deHourResult.TabIndex = 11;
     //
     // deHourReception
     //
     this.deHourReception.EditValue = null;
     this.deHourReception.Location = new System.Drawing.Point(164, 5);
     this.deHourReception.Name = "deHourReception";
     this.deHourReception.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.deHourReception.Properties.Mask.EditMask = "t";
     this.deHourReception.Size = new System.Drawing.Size(91, 20);
     this.deHourReception.TabIndex = 1;
     //
     // label27
     //
     this.label27.AutoSize = true;
     this.label27.Location = new System.Drawing.Point(12, 29);
     this.label27.Name = "label27";
     this.label27.Size = new System.Drawing.Size(45, 13);
     this.label27.TabIndex = 9;
     this.label27.Text = "N°Días:";
     //
     // lookUpEdit1
     //
     this.lookUpEdit1.Location = new System.Drawing.Point(452, 55);
     this.lookUpEdit1.Name = "lookUpEdit1";
     this.lookUpEdit1.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lookUpEdit1.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("IDTypePost", "", 20, DevExpress.Utils.FormatType.None, "", false, DevExpress.Utils.HorzAlignment.Default, DevExpress.Data.ColumnSortOrder.None),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Den_Type_Post")});
     this.lookUpEdit1.Properties.NullText = "Seleccionar";
     this.lookUpEdit1.Properties.ShowFooter = false;
     this.lookUpEdit1.Properties.ShowHeader = false;
     this.lookUpEdit1.Size = new System.Drawing.Size(100, 20);
     this.lookUpEdit1.TabIndex = 1;
     //
     // textEdit3
     //
     this.textEdit3.Location = new System.Drawing.Point(452, 9);
     this.textEdit3.Name = "textEdit3";
     this.textEdit3.Size = new System.Drawing.Size(100, 20);
     this.textEdit3.TabIndex = 3;
     //
     // btReportClient
     //
     this.btReportClient.FlatAppearance.BorderSize = 0;
     this.btReportClient.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.btReportClient.Location = new System.Drawing.Point(847, 10);
     this.btReportClient.Name = "btReportClient";
     this.btReportClient.Size = new System.Drawing.Size(59, 23);
     this.btReportClient.TabIndex = 11;
     this.btReportClient.Text = "Repote por Cliente";
     this.btReportClient.UseVisualStyleBackColor = true;
     this.btReportClient.Visible = false;
     this.btReportClient.Click += new System.EventHandler(this.btReportClient_Click);
     //
     // txIdrecep_sample
     //
     this.txIdrecep_sample.Enabled = false;
     this.txIdrecep_sample.Location = new System.Drawing.Point(844, 117);
     this.txIdrecep_sample.Name = "txIdrecep_sample";
     this.txIdrecep_sample.Properties.Appearance.BackColor = System.Drawing.Color.Gainsboro;
     this.txIdrecep_sample.Properties.Appearance.Options.UseBackColor = true;
     this.txIdrecep_sample.Size = new System.Drawing.Size(100, 20);
     this.txIdrecep_sample.TabIndex = 7;
     this.txIdrecep_sample.Visible = false;
     //
     // label25
     //
     this.label25.AutoSize = true;
     this.label25.Location = new System.Drawing.Point(8, 7);
     this.label25.Name = "label25";
     this.label25.Size = new System.Drawing.Size(43, 13);
     this.label25.TabIndex = 10;
     this.label25.Text = "Código:";
     //
     // cbTypeSample
     //
     this.cbTypeSample.Location = new System.Drawing.Point(93, 4);
     this.cbTypeSample.Name = "cbTypeSample";
     this.cbTypeSample.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cbTypeSample.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Cod_type_sample", "", 20, DevExpress.Utils.FormatType.None, "", false, DevExpress.Utils.HorzAlignment.Default, DevExpress.Data.ColumnSortOrder.None),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Name_type_sample")});
     this.cbTypeSample.Properties.NullText = "Seleccionar";
     this.cbTypeSample.Properties.ShowFooter = false;
     this.cbTypeSample.Properties.ShowHeader = false;
     this.cbTypeSample.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     this.cbTypeSample.Size = new System.Drawing.Size(146, 20);
     this.cbTypeSample.TabIndex = 2;
     this.cbTypeSample.EditValueChanged += new System.EventHandler(this.cbTypeSample_EditValueChanged);
     //
     // label26
     //
     this.label26.AutoSize = true;
     this.label26.Location = new System.Drawing.Point(5, 7);
     this.label26.Name = "label26";
     this.label26.Size = new System.Drawing.Size(86, 13);
     this.label26.TabIndex = 10;
     this.label26.Text = "Tipo de muestra:";
     //
     // ofdRecepFileAttach
     //
     this.ofdRecepFileAttach.FileName = "openFileDialog1";
     //
     // label14
     //
     this.label14.AutoSize = true;
     this.label14.Location = new System.Drawing.Point(834, 41);
     this.label14.Name = "label14";
     this.label14.Size = new System.Drawing.Size(110, 13);
     this.label14.TabIndex = 9;
     this.label14.Text = "gastos administrativos";
     this.label14.Visible = false;
     //
     // tbAdministrativeExpense
     //
     this.tbAdministrativeExpense.EditValue = new decimal(new int[] {
     0,
     0,
     0,
     0});
     this.tbAdministrativeExpense.Location = new System.Drawing.Point(837, 57);
     this.tbAdministrativeExpense.Name = "tbAdministrativeExpense";
     this.tbAdministrativeExpense.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.tbAdministrativeExpense.Size = new System.Drawing.Size(107, 20);
     this.tbAdministrativeExpense.TabIndex = 11;
     this.tbAdministrativeExpense.Visible = false;
     //
     // tbCod_recep_sample
     //
     this.tbCod_recep_sample.Location = new System.Drawing.Point(55, 4);
     this.tbCod_recep_sample.Name = "tbCod_recep_sample";
     this.tbCod_recep_sample.Properties.Appearance.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(209)))), ((int)(((byte)(222)))), ((int)(((byte)(243)))));
     this.tbCod_recep_sample.Properties.Appearance.Options.UseBackColor = true;
     this.tbCod_recep_sample.Properties.ReadOnly = true;
     this.tbCod_recep_sample.Size = new System.Drawing.Size(100, 20);
     this.tbCod_recep_sample.TabIndex = 7;
     //
     // ucSignReception
     //
     this.ucSignReception.Location = new System.Drawing.Point(11, 2);
     this.ucSignReception.Margin = new System.Windows.Forms.Padding(0);
     this.ucSignReception.Name = "ucSignReception";
     this.ucSignReception.Pwd = null;
     this.ucSignReception.Size = new System.Drawing.Size(158, 40);
     this.ucSignReception.TabIndex = 16;
     this.ucSignReception.Title = "Guardar";
     this.ucSignReception.OnSign += new LimsProject.sign(this.ucSign1_OnSign);
     //
     // panelControl1
     //
     this.panelControl1.Controls.Add(this.panel9);
     this.panelControl1.Controls.Add(this.xtraTabControl2);
     this.panelControl1.Controls.Add(this.tbAdministrativeExpense);
     this.panelControl1.Controls.Add(this.label14);
     this.panelControl1.Controls.Add(this.xtraTabControl1);
     this.panelControl1.Controls.Add(this.txIdrecep_sample);
     this.panelControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panelControl1.Location = new System.Drawing.Point(0, 0);
     this.panelControl1.Name = "panelControl1";
     this.panelControl1.Size = new System.Drawing.Size(999, 146);
     this.panelControl1.TabIndex = 12;
     this.panelControl1.Text = "panelControl1";
     //
     // panel9
     //
     this.panel9.Controls.Add(this.panel11);
     this.panel9.Location = new System.Drawing.Point(13, 3);
     this.panel9.Name = "panel9";
     this.panel9.Size = new System.Drawing.Size(701, 27);
     this.panel9.TabIndex = 12;
     //
     // panel11
     //
     this.panel11.Controls.Add(this.paTypeSample);
     this.panel11.Controls.Add(this.paCodRegisterRecep);
     this.panel11.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panel11.Location = new System.Drawing.Point(0, 0);
     this.panel11.Name = "panel11";
     this.panel11.Size = new System.Drawing.Size(701, 27);
     this.panel11.TabIndex = 1;
     //
     // paTypeSample
     //
     this.paTypeSample.Controls.Add(this.cbTypeSample);
     this.paTypeSample.Controls.Add(this.label26);
     this.paTypeSample.Dock = System.Windows.Forms.DockStyle.Left;
     this.paTypeSample.Location = new System.Drawing.Point(167, 0);
     this.paTypeSample.Name = "paTypeSample";
     this.paTypeSample.Size = new System.Drawing.Size(257, 27);
     this.paTypeSample.TabIndex = 12;
     //
     // paCodRegisterRecep
     //
     this.paCodRegisterRecep.Controls.Add(this.tbCod_recep_sample);
     this.paCodRegisterRecep.Controls.Add(this.label25);
     this.paCodRegisterRecep.Dock = System.Windows.Forms.DockStyle.Left;
     this.paCodRegisterRecep.Location = new System.Drawing.Point(0, 0);
     this.paCodRegisterRecep.Name = "paCodRegisterRecep";
     this.paCodRegisterRecep.Size = new System.Drawing.Size(167, 27);
     this.paCodRegisterRecep.TabIndex = 11;
     //
     // ucTitleRegisterRecep
     //
     this.ucTitleRegisterRecep.BackColor = System.Drawing.Color.LightSteelBlue;
     this.ucTitleRegisterRecep.Dock = System.Windows.Forms.DockStyle.Fill;
     this.ucTitleRegisterRecep.Location = new System.Drawing.Point(0, 0);
     this.ucTitleRegisterRecep.Name = "ucTitleRegisterRecep";
     this.ucTitleRegisterRecep.Size = new System.Drawing.Size(999, 27);
     this.ucTitleRegisterRecep.TabIndex = 8;
     this.ucTitleRegisterRecep.Title = "Title";
     //
     // ucToolStrip1
     //
     this.ucToolStrip1.Dock = System.Windows.Forms.DockStyle.Top;
     this.ucToolStrip1.Location = new System.Drawing.Point(0, 0);
     this.ucToolStrip1.Name = "ucToolStrip1";
     this.ucToolStrip1.Size = new System.Drawing.Size(1013, 25);
     this.ucToolStrip1.TabIndex = 0;
     this.ucToolStrip1.onFind += new LimsProject.Find(this.ucToolStrip1_onFind);
     this.ucToolStrip1.onNew += new LimsProject.New(this.ucToolStrip1_onNew);
     //
     // contextMenuStrip1
     //
     this.contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.toolStripMenuItem1});
     this.contextMenuStrip1.Name = "contextMenuStrip1";
     this.contextMenuStrip1.Size = new System.Drawing.Size(192, 26);
     //
     // toolStripMenuItem1
     //
     this.toolStripMenuItem1.Name = "toolStripMenuItem1";
     this.toolStripMenuItem1.Size = new System.Drawing.Size(191, 22);
     this.toolStripMenuItem1.Text = "Registro de Recepción";
     //
     // ucGenerarA
     //
     this.ucGenerarA.Location = new System.Drawing.Point(476, 9);
     this.ucGenerarA.Margin = new System.Windows.Forms.Padding(0);
     this.ucGenerarA.Name = "ucGenerarA";
     this.ucGenerarA.Size = new System.Drawing.Size(90, 30);
     this.ucGenerarA.TabIndex = 19;
     this.ucGenerarA.Title = "Generar a";
     this.ucGenerarA.onSelectedIndex += new LimsProject.SelectedIndex(this.ucGenerarA_onSelectedIndex);
     //
     // ucGenerarDesde
     //
     this.ucGenerarDesde.Location = new System.Drawing.Point(580, 9);
     this.ucGenerarDesde.Margin = new System.Windows.Forms.Padding(0);
     this.ucGenerarDesde.Name = "ucGenerarDesde";
     this.ucGenerarDesde.Size = new System.Drawing.Size(90, 30);
     this.ucGenerarDesde.TabIndex = 19;
     this.ucGenerarDesde.Title = "Generar desde";
     this.ucGenerarDesde.onSelectedIndex += new LimsProject.SelectedIndex(this.ucGenerarDesde_onSelectedIndex);
     //
     // panelControl2
     //
     this.panelControl2.Controls.Add(this.xtraTabControl3);
     this.panelControl2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panelControl2.Location = new System.Drawing.Point(0, 0);
     this.panelControl2.Name = "panelControl2";
     this.panelControl2.Size = new System.Drawing.Size(999, 383);
     this.panelControl2.TabIndex = 3;
     this.panelControl2.Text = "panelControl2";
     //
     // xtraTabControl3
     //
     this.xtraTabControl3.Appearance.BackColor = System.Drawing.Color.Transparent;
     this.xtraTabControl3.Appearance.Options.UseBackColor = true;
     this.xtraTabControl3.AppearancePage.Header.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(209)))), ((int)(((byte)(222)))), ((int)(((byte)(243)))));
     this.xtraTabControl3.AppearancePage.Header.BorderColor = System.Drawing.Color.White;
     this.xtraTabControl3.AppearancePage.Header.Options.UseBackColor = true;
     this.xtraTabControl3.AppearancePage.Header.Options.UseBorderColor = true;
     this.xtraTabControl3.AppearancePage.HeaderActive.BackColor = System.Drawing.Color.LightSteelBlue;
     this.xtraTabControl3.AppearancePage.HeaderActive.BorderColor = System.Drawing.Color.Gainsboro;
     this.xtraTabControl3.AppearancePage.HeaderActive.Options.UseBackColor = true;
     this.xtraTabControl3.AppearancePage.HeaderActive.Options.UseBorderColor = true;
     this.xtraTabControl3.AppearancePage.PageClient.BorderColor = System.Drawing.Color.Gainsboro;
     this.xtraTabControl3.AppearancePage.PageClient.Options.UseBorderColor = true;
     this.xtraTabControl3.Dock = System.Windows.Forms.DockStyle.Fill;
     this.xtraTabControl3.Location = new System.Drawing.Point(2, 2);
     this.xtraTabControl3.Name = "xtraTabControl3";
     this.xtraTabControl3.PaintStyleName = "PropertyView";
     this.xtraTabControl3.SelectedTabPage = this.tpMuestras;
     this.xtraTabControl3.Size = new System.Drawing.Size(995, 379);
     this.xtraTabControl3.TabIndex = 4;
     this.xtraTabControl3.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
     this.tpMuestras,
     this.tpAnexos,
     this.tpReject,
     this.tpDecree});
     //
     // tpMuestras
     //
     this.tpMuestras.Controls.Add(this.gcReception);
     this.tpMuestras.Controls.Add(this.panelControl7);
     this.tpMuestras.Controls.Add(this.expandablePanel1);
     this.tpMuestras.Name = "tpMuestras";
     this.tpMuestras.Size = new System.Drawing.Size(993, 358);
     this.tpMuestras.Text = "Muestras";
     //
     // panelControl7
     //
     this.panelControl7.Controls.Add(this.panel7);
     this.panelControl7.Controls.Add(this.panel5);
     this.panelControl7.Controls.Add(this.gcShowColumns);
     this.panelControl7.Controls.Add(this.tbAmortization);
     this.panelControl7.Controls.Add(this.label10);
     this.panelControl7.Controls.Add(this.tbResidue);
     this.panelControl7.Controls.Add(this.label13);
     this.panelControl7.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.panelControl7.Location = new System.Drawing.Point(0, 288);
     this.panelControl7.Name = "panelControl7";
     this.panelControl7.Size = new System.Drawing.Size(699, 70);
     this.panelControl7.TabIndex = 3;
     this.panelControl7.Text = "panelControl7";
     //
     // tpAnexos
     //
     this.tpAnexos.Controls.Add(this.checkEdit8);
     this.tpAnexos.Controls.Add(this.memoEdit1);
     this.tpAnexos.Controls.Add(this.checkEdit7);
     this.tpAnexos.Controls.Add(this.groupControl4);
     this.tpAnexos.Controls.Add(this.textEdit5);
     this.tpAnexos.Controls.Add(this.label21);
     this.tpAnexos.Controls.Add(this.label18);
     this.tpAnexos.Name = "tpAnexos";
     this.tpAnexos.Size = new System.Drawing.Size(520, 0);
     this.tpAnexos.Text = "Anexos";
     //
     // checkEdit8
     //
     this.checkEdit8.Location = new System.Drawing.Point(169, 35);
     this.checkEdit8.Name = "checkEdit8";
     this.checkEdit8.Properties.Caption = "Muestras de composito";
     this.checkEdit8.Size = new System.Drawing.Size(139, 18);
     this.checkEdit8.TabIndex = 12;
     //
     // memoEdit1
     //
     this.memoEdit1.Location = new System.Drawing.Point(105, 63);
     this.memoEdit1.Name = "memoEdit1";
     this.memoEdit1.Size = new System.Drawing.Size(548, 54);
     this.memoEdit1.TabIndex = 2;
     //
     // checkEdit7
     //
     this.checkEdit7.Location = new System.Drawing.Point(24, 35);
     this.checkEdit7.Name = "checkEdit7";
     this.checkEdit7.Properties.Caption = "Muestras puntuales";
     this.checkEdit7.Size = new System.Drawing.Size(139, 18);
     this.checkEdit7.TabIndex = 12;
     //
     // groupControl4
     //
     this.groupControl4.Controls.Add(this.textEdit2);
     this.groupControl4.Controls.Add(this.timeEdit1);
     this.groupControl4.Controls.Add(this.label17);
     this.groupControl4.Controls.Add(this.label16);
     this.groupControl4.Controls.Add(this.label15);
     this.groupControl4.Controls.Add(this.dateEdit1);
     this.groupControl4.Controls.Add(this.checkEdit6);
     this.groupControl4.Controls.Add(this.checkEdit5);
     this.groupControl4.Controls.Add(this.checkEdit4);
     this.groupControl4.Controls.Add(this.checkEdit3);
     this.groupControl4.Controls.Add(this.checkEdit2);
     this.groupControl4.Controls.Add(this.checkEdit1);
     this.groupControl4.Location = new System.Drawing.Point(8, 130);
     this.groupControl4.Name = "groupControl4";
     this.groupControl4.Size = new System.Drawing.Size(645, 196);
     this.groupControl4.TabIndex = 1;
     this.groupControl4.Text = "Campos a llenar al recepcionar las muestras";
     //
     // textEdit2
     //
     this.textEdit2.Location = new System.Drawing.Point(161, 163);
     this.textEdit2.Name = "textEdit2";
     this.textEdit2.Size = new System.Drawing.Size(196, 20);
     this.textEdit2.TabIndex = 4;
     //
     // timeEdit1
     //
     this.timeEdit1.EditValue = new System.DateTime(2013, 8, 7, 0, 0, 0, 0);
     this.timeEdit1.Location = new System.Drawing.Point(161, 138);
     this.timeEdit1.Name = "timeEdit1";
     this.timeEdit1.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.timeEdit1.Size = new System.Drawing.Size(100, 20);
     this.timeEdit1.TabIndex = 3;
     //
     // label17
     //
     this.label17.AutoSize = true;
     this.label17.Location = new System.Drawing.Point(23, 166);
     this.label17.Name = "label17";
     this.label17.Size = new System.Drawing.Size(133, 13);
     this.label17.TabIndex = 2;
     this.label17.Text = "Condiciones de transporte:";
     //
     // label16
     //
     this.label16.AutoSize = true;
     this.label16.Location = new System.Drawing.Point(23, 141);
     this.label16.Name = "label16";
     this.label16.Size = new System.Drawing.Size(98, 13);
     this.label16.TabIndex = 2;
     this.label16.Text = "Hora de recepción:";
     //
     // label15
     //
     this.label15.AutoSize = true;
     this.label15.Location = new System.Drawing.Point(23, 116);
     this.label15.Name = "label15";
     this.label15.Size = new System.Drawing.Size(105, 13);
     this.label15.TabIndex = 2;
     this.label15.Text = "Fecha de recepción:";
     //
     // dateEdit1
     //
     this.dateEdit1.EditValue = null;
     this.dateEdit1.Location = new System.Drawing.Point(161, 113);
     this.dateEdit1.Name = "dateEdit1";
     this.dateEdit1.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.dateEdit1.Size = new System.Drawing.Size(100, 20);
     this.dateEdit1.TabIndex = 1;
     //
     // checkEdit6
     //
     this.checkEdit6.Location = new System.Drawing.Point(201, 73);
     this.checkEdit6.Name = "checkEdit6";
     this.checkEdit6.Properties.Caption = "Duplicado";
     this.checkEdit6.Size = new System.Drawing.Size(75, 18);
     this.checkEdit6.TabIndex = 0;
     //
     // checkEdit5
     //
     this.checkEdit5.Location = new System.Drawing.Point(201, 48);
     this.checkEdit5.Name = "checkEdit5";
     this.checkEdit5.Properties.Caption = "Blanco muestreo";
     this.checkEdit5.Size = new System.Drawing.Size(112, 18);
     this.checkEdit5.TabIndex = 0;
     //
     // checkEdit4
     //
     this.checkEdit4.Location = new System.Drawing.Point(201, 23);
     this.checkEdit4.Name = "checkEdit4";
     this.checkEdit4.Properties.Caption = "Blanco viajero";
     this.checkEdit4.Size = new System.Drawing.Size(98, 18);
     this.checkEdit4.TabIndex = 0;
     //
     // checkEdit3
     //
     this.checkEdit3.Location = new System.Drawing.Point(26, 73);
     this.checkEdit3.Name = "checkEdit3";
     this.checkEdit3.Properties.Caption = "Conservación de muestras";
     this.checkEdit3.Size = new System.Drawing.Size(160, 18);
     this.checkEdit3.TabIndex = 0;
     //
     // checkEdit2
     //
     this.checkEdit2.Location = new System.Drawing.Point(26, 48);
     this.checkEdit2.Name = "checkEdit2";
     this.checkEdit2.Properties.Caption = "Muestras recibidas intactas";
     this.checkEdit2.Size = new System.Drawing.Size(160, 18);
     this.checkEdit2.TabIndex = 0;
     //
     // checkEdit1
     //
     this.checkEdit1.Location = new System.Drawing.Point(26, 23);
     this.checkEdit1.Name = "checkEdit1";
     this.checkEdit1.Properties.Caption = "Recipiente adecuado";
     this.checkEdit1.Size = new System.Drawing.Size(128, 18);
     this.checkEdit1.TabIndex = 0;
     //
     // textEdit5
     //
     this.textEdit5.Location = new System.Drawing.Point(79, 10);
     this.textEdit5.Name = "textEdit5";
     this.textEdit5.Size = new System.Drawing.Size(358, 20);
     this.textEdit5.TabIndex = 10;
     //
     // label21
     //
     this.label21.AutoSize = true;
     this.label21.Location = new System.Drawing.Point(21, 13);
     this.label21.Name = "label21";
     this.label21.Size = new System.Drawing.Size(52, 13);
     this.label21.TabIndex = 11;
     this.label21.Text = "Proyecto:";
     //
     // label18
     //
     this.label18.AutoSize = true;
     this.label18.Location = new System.Drawing.Point(18, 74);
     this.label18.Name = "label18";
     this.label18.Size = new System.Drawing.Size(81, 13);
     this.label18.TabIndex = 2;
     this.label18.Text = "Observaciones:";
     //
     // tpReject
     //
     this.tpReject.Controls.Add(this.memoEdit2);
     this.tpReject.Controls.Add(this.label20);
     this.tpReject.Controls.Add(this.gcRejection);
     this.tpReject.Name = "tpReject";
     this.tpReject.Size = new System.Drawing.Size(520, 0);
     this.tpReject.Text = "Rechazos";
     //
     // memoEdit2
     //
     this.memoEdit2.Location = new System.Drawing.Point(116, 288);
     this.memoEdit2.Name = "memoEdit2";
     this.memoEdit2.Size = new System.Drawing.Size(529, 50);
     this.memoEdit2.TabIndex = 2;
     //
     // label20
     //
     this.label20.AutoSize = true;
     this.label20.Location = new System.Drawing.Point(20, 299);
     this.label20.Name = "label20";
     this.label20.Size = new System.Drawing.Size(90, 13);
     this.label20.TabIndex = 1;
     this.label20.Text = "Especificaciones:";
     //
     // gcRejection
     //
     this.gcRejection.EmbeddedNavigator.Name = "";
     this.gcRejection.Location = new System.Drawing.Point(21, 13);
     this.gcRejection.MainView = this.bandedGridView1;
     this.gcRejection.Name = "gcRejection";
     this.gcRejection.Size = new System.Drawing.Size(624, 251);
     this.gcRejection.TabIndex = 0;
     this.gcRejection.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.bandedGridView1});
     //
     // bandedGridView1
     //
     this.bandedGridView1.Bands.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.GridBand[] {
     this.gridBand1,
     this.gridBand2});
     this.bandedGridView1.Columns.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn[] {
     this.gcRej_Code,
     this.gcRej_NameSample,
     this.gcRej_Date,
     this.gcRej_Hora,
     this.gcRej_Obs,
     this.gcRej_C1,
     this.gcRej_C2,
     this.gcRej_C3,
     this.gcRej_C4});
     this.bandedGridView1.GridControl = this.gcRejection;
     this.bandedGridView1.Name = "bandedGridView1";
     this.bandedGridView1.OptionsView.ShowGroupPanel = false;
     //
     // gridBand1
     //
     this.gridBand1.Columns.Add(this.gcRej_Code);
     this.gridBand1.Columns.Add(this.gcRej_NameSample);
     this.gridBand1.Columns.Add(this.gcRej_Date);
     this.gridBand1.Columns.Add(this.gcRej_Hora);
     this.gridBand1.Columns.Add(this.gcRej_Obs);
     this.gridBand1.Name = "gridBand1";
     this.gridBand1.Width = 629;
     //
     // gcRej_Code
     //
     this.gcRej_Code.Caption = "Codigo";
     this.gcRej_Code.Name = "gcRej_Code";
     this.gcRej_Code.Visible = true;
     //
     // gcRej_NameSample
     //
     this.gcRej_NameSample.Caption = "Nombre de muestra";
     this.gcRej_NameSample.Name = "gcRej_NameSample";
     this.gcRej_NameSample.Visible = true;
     this.gcRej_NameSample.Width = 204;
     //
     // gcRej_Date
     //
     this.gcRej_Date.Caption = "Fecha";
     this.gcRej_Date.Name = "gcRej_Date";
     this.gcRej_Date.Visible = true;
     //
     // gcRej_Hora
     //
     this.gcRej_Hora.Caption = "Hora";
     this.gcRej_Hora.Name = "gcRej_Hora";
     this.gcRej_Hora.Visible = true;
     //
     // gcRej_Obs
     //
     this.gcRej_Obs.Caption = "Ensayos rechazados";
     this.gcRej_Obs.Name = "gcRej_Obs";
     this.gcRej_Obs.Visible = true;
     this.gcRej_Obs.Width = 200;
     //
     // gridBand2
     //
     this.gridBand2.AppearanceHeader.Options.UseTextOptions = true;
     this.gridBand2.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridBand2.Caption = "Criterio";
     this.gridBand2.Columns.Add(this.gcRej_C1);
     this.gridBand2.Columns.Add(this.gcRej_C2);
     this.gridBand2.Columns.Add(this.gcRej_C3);
     this.gridBand2.Columns.Add(this.gcRej_C4);
     this.gridBand2.Name = "gridBand2";
     this.gridBand2.Width = 150;
     //
     // gcRej_C1
     //
     this.gcRej_C1.Caption = "1";
     this.gcRej_C1.Name = "gcRej_C1";
     this.gcRej_C1.Visible = true;
     this.gcRej_C1.Width = 36;
     //
     // gcRej_C2
     //
     this.gcRej_C2.Caption = "2";
     this.gcRej_C2.Name = "gcRej_C2";
     this.gcRej_C2.Visible = true;
     this.gcRej_C2.Width = 36;
     //
     // gcRej_C3
     //
     this.gcRej_C3.Caption = "3";
     this.gcRej_C3.Name = "gcRej_C3";
     this.gcRej_C3.Visible = true;
     this.gcRej_C3.Width = 36;
     //
     // gcRej_C4
     //
     this.gcRej_C4.Caption = "4";
     this.gcRej_C4.Name = "gcRej_C4";
     this.gcRej_C4.Visible = true;
     this.gcRej_C4.Width = 42;
     //
     // tpDecree
     //
     this.tpDecree.Controls.Add(this.panelControl4);
     this.tpDecree.Controls.Add(this.panelControl3);
     this.tpDecree.Name = "tpDecree";
     this.tpDecree.Size = new System.Drawing.Size(520, 0);
     this.tpDecree.Text = "Decretos - Resultados";
     //
     // panelControl4
     //
     this.panelControl4.Controls.Add(this.xtraTabControl4);
     this.panelControl4.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panelControl4.Location = new System.Drawing.Point(0, 30);
     this.panelControl4.Name = "panelControl4";
     this.panelControl4.Padding = new System.Windows.Forms.Padding(10);
     this.panelControl4.Size = new System.Drawing.Size(520, 0);
     this.panelControl4.TabIndex = 11;
     this.panelControl4.Text = "panelControl4";
     //
     // xtraTabControl4
     //
     this.xtraTabControl4.Appearance.BackColor = System.Drawing.Color.Transparent;
     this.xtraTabControl4.Appearance.Options.UseBackColor = true;
     this.xtraTabControl4.AppearancePage.Header.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(209)))), ((int)(((byte)(222)))), ((int)(((byte)(243)))));
     this.xtraTabControl4.AppearancePage.Header.BorderColor = System.Drawing.Color.White;
     this.xtraTabControl4.AppearancePage.Header.Options.UseBackColor = true;
     this.xtraTabControl4.AppearancePage.Header.Options.UseBorderColor = true;
     this.xtraTabControl4.AppearancePage.HeaderActive.BackColor = System.Drawing.Color.LightSteelBlue;
     this.xtraTabControl4.AppearancePage.HeaderActive.BorderColor = System.Drawing.Color.Gainsboro;
     this.xtraTabControl4.AppearancePage.HeaderActive.Options.UseBackColor = true;
     this.xtraTabControl4.AppearancePage.HeaderActive.Options.UseBorderColor = true;
     this.xtraTabControl4.AppearancePage.PageClient.BorderColor = System.Drawing.Color.Gainsboro;
     this.xtraTabControl4.AppearancePage.PageClient.Options.UseBorderColor = true;
     this.xtraTabControl4.Dock = System.Windows.Forms.DockStyle.Fill;
     this.xtraTabControl4.Location = new System.Drawing.Point(12, 11);
     this.xtraTabControl4.Margin = new System.Windows.Forms.Padding(10);
     this.xtraTabControl4.Name = "xtraTabControl4";
     this.xtraTabControl4.PaintStyleName = "PropertyView";
     this.xtraTabControl4.SelectedTabPage = this.xtraTabPage4;
     this.xtraTabControl4.Size = new System.Drawing.Size(496, 0);
     this.xtraTabControl4.TabIndex = 5;
     this.xtraTabControl4.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
     this.xtraTabPage4,
     this.xtraTabPage5,
     this.xtraTabPage7});
     this.xtraTabControl4.Text = "Anexos";
     //
     // xtraTabPage4
     //
     this.xtraTabPage4.Controls.Add(this.gridDecretos);
     this.xtraTabPage4.Controls.Add(this.panelControl5);
     this.xtraTabPage4.Controls.Add(this.panelControl6);
     this.xtraTabPage4.Name = "xtraTabPage4";
     this.xtraTabPage4.Size = new System.Drawing.Size(494, 0);
     this.xtraTabPage4.Text = "AG-03-00001 - NTP N° 214.003";
     //
     // gridDecretos
     //
     this.gridDecretos.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gridDecretos.EmbeddedNavigator.Name = "";
     this.gridDecretos.Location = new System.Drawing.Point(0, 61);
     this.gridDecretos.MainView = this.gridView1;
     this.gridDecretos.Name = "gridDecretos";
     this.gridDecretos.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repCriterio,
     this.repUnidadMedida,
     this.repMetodo});
     this.gridDecretos.Size = new System.Drawing.Size(494, 0);
     this.gridDecretos.TabIndex = 2;
     this.gridDecretos.UseEmbeddedNavigator = true;
     this.gridDecretos.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridView1});
     //
     // gridView1
     //
     this.gridView1.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gcDec_Idmetodo,
     this.gcDec_Parametro,
     this.gcDec_Unidad_medida,
     this.gcDec_Result,
     this.gcDec_Criterio,
     this.gcDec_Valor1,
     this.gcDec_Valor2,
     this.gcDec_Conclusion});
     this.gridView1.GridControl = this.gridDecretos;
     this.gridView1.Name = "gridView1";
     this.gridView1.OptionsView.ShowGroupPanel = false;
     //
     // gcDec_Idmetodo
     //
     this.gcDec_Idmetodo.Caption = "Método";
     this.gcDec_Idmetodo.ColumnEdit = this.repMetodo;
     this.gcDec_Idmetodo.FieldName = "Idmetodo";
     this.gcDec_Idmetodo.Name = "gcDec_Idmetodo";
     this.gcDec_Idmetodo.Visible = true;
     this.gcDec_Idmetodo.VisibleIndex = 0;
     //
     // repMetodo
     //
     this.repMetodo.AutoHeight = false;
     this.repMetodo.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repMetodo.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Idmetodo", "", 20, DevExpress.Utils.FormatType.None, "", false, DevExpress.Utils.HorzAlignment.Default, DevExpress.Data.ColumnSortOrder.None),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Nombre")});
     this.repMetodo.Name = "repMetodo";
     this.repMetodo.NullText = "";
     this.repMetodo.ShowFooter = false;
     this.repMetodo.ShowHeader = false;
     //
     // gcDec_Parametro
     //
     this.gcDec_Parametro.Caption = "Parametro";
     this.gcDec_Parametro.FieldName = "Parametro";
     this.gcDec_Parametro.Name = "gcDec_Parametro";
     this.gcDec_Parametro.Visible = true;
     this.gcDec_Parametro.VisibleIndex = 1;
     //
     // gcDec_Unidad_medida
     //
     this.gcDec_Unidad_medida.Caption = "Unidad_medida";
     this.gcDec_Unidad_medida.ColumnEdit = this.repUnidadMedida;
     this.gcDec_Unidad_medida.FieldName = "Unidad_medida";
     this.gcDec_Unidad_medida.Name = "gcDec_Unidad_medida";
     this.gcDec_Unidad_medida.Visible = true;
     this.gcDec_Unidad_medida.VisibleIndex = 2;
     //
     // repUnidadMedida
     //
     this.repUnidadMedida.AutoHeight = false;
     this.repUnidadMedida.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repUnidadMedida.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Nombre"),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Nombre", "", 20, DevExpress.Utils.FormatType.None, "", false, DevExpress.Utils.HorzAlignment.Default, DevExpress.Data.ColumnSortOrder.None)});
     this.repUnidadMedida.Name = "repUnidadMedida";
     this.repUnidadMedida.NullText = "";
     this.repUnidadMedida.ShowFooter = false;
     this.repUnidadMedida.ShowHeader = false;
     //
     // gcDec_Result
     //
     this.gcDec_Result.Caption = "Resultado";
     this.gcDec_Result.FieldName = "Result";
     this.gcDec_Result.Name = "gcDec_Result";
     this.gcDec_Result.Visible = true;
     this.gcDec_Result.VisibleIndex = 3;
     //
     // gcDec_Criterio
     //
     this.gcDec_Criterio.Caption = "Condición";
     this.gcDec_Criterio.ColumnEdit = this.repCriterio;
     this.gcDec_Criterio.FieldName = "Criterio";
     this.gcDec_Criterio.Name = "gcDec_Criterio";
     this.gcDec_Criterio.Visible = true;
     this.gcDec_Criterio.VisibleIndex = 4;
     //
     // repCriterio
     //
     this.repCriterio.AutoHeight = false;
     this.repCriterio.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repCriterio.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Idcriterio", "", 20, DevExpress.Utils.FormatType.None, "", false, DevExpress.Utils.HorzAlignment.Default, DevExpress.Data.ColumnSortOrder.None),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Nombre_criterio")});
     this.repCriterio.Name = "repCriterio";
     this.repCriterio.NullText = "";
     this.repCriterio.ShowFooter = false;
     this.repCriterio.ShowHeader = false;
     //
     // gcDec_Valor1
     //
     this.gcDec_Valor1.Caption = "Valor1";
     this.gcDec_Valor1.FieldName = "Valor1";
     this.gcDec_Valor1.Name = "gcDec_Valor1";
     this.gcDec_Valor1.Visible = true;
     this.gcDec_Valor1.VisibleIndex = 5;
     //
     // gcDec_Valor2
     //
     this.gcDec_Valor2.Caption = "Valor2";
     this.gcDec_Valor2.FieldName = "Valor2";
     this.gcDec_Valor2.Name = "gcDec_Valor2";
     this.gcDec_Valor2.Visible = true;
     this.gcDec_Valor2.VisibleIndex = 6;
     //
     // gcDec_Conclusion
     //
     this.gcDec_Conclusion.Caption = "Conclusion";
     this.gcDec_Conclusion.FieldName = "Conclusion";
     this.gcDec_Conclusion.Name = "gcDec_Conclusion";
     this.gcDec_Conclusion.Visible = true;
     this.gcDec_Conclusion.VisibleIndex = 7;
     //
     // panelControl5
     //
     this.panelControl5.Controls.Add(this.memoEdit3);
     this.panelControl5.Controls.Add(this.label23);
     this.panelControl5.Controls.Add(this.label24);
     this.panelControl5.Controls.Add(this.label29);
     this.panelControl5.Controls.Add(this.textEdit4);
     this.panelControl5.Controls.Add(this.textEdit6);
     this.panelControl5.Dock = System.Windows.Forms.DockStyle.Top;
     this.panelControl5.Location = new System.Drawing.Point(0, 0);
     this.panelControl5.Name = "panelControl5";
     this.panelControl5.Size = new System.Drawing.Size(494, 61);
     this.panelControl5.TabIndex = 0;
     this.panelControl5.Text = "panelControl5";
     //
     // memoEdit3
     //
     this.memoEdit3.EditValue = resources.GetString("memoEdit3.EditValue");
     this.memoEdit3.Location = new System.Drawing.Point(426, 7);
     this.memoEdit3.Name = "memoEdit3";
     this.memoEdit3.Size = new System.Drawing.Size(523, 46);
     this.memoEdit3.TabIndex = 8;
     //
     // label23
     //
     this.label23.AutoSize = true;
     this.label23.Location = new System.Drawing.Point(355, 9);
     this.label23.Name = "label23";
     this.label23.Size = new System.Drawing.Size(66, 13);
     this.label23.TabIndex = 5;
     this.label23.Text = "Descripción:";
     //
     // label24
     //
     this.label24.AutoSize = true;
     this.label24.Location = new System.Drawing.Point(9, 9);
     this.label24.Name = "label24";
     this.label24.Size = new System.Drawing.Size(43, 13);
     this.label24.TabIndex = 6;
     this.label24.Text = "Codigo:";
     //
     // label29
     //
     this.label29.AutoSize = true;
     this.label29.Location = new System.Drawing.Point(9, 30);
     this.label29.Name = "label29";
     this.label29.Size = new System.Drawing.Size(75, 13);
     this.label29.TabIndex = 7;
     this.label29.Text = "Denominación";
     //
     // textEdit4
     //
     this.textEdit4.EditValue = "DEC-13-001";
     this.textEdit4.Location = new System.Drawing.Point(90, 6);
     this.textEdit4.Name = "textEdit4";
     this.textEdit4.Size = new System.Drawing.Size(107, 20);
     this.textEdit4.TabIndex = 3;
     //
     // textEdit6
     //
     this.textEdit6.EditValue = "NTP N° 214.003";
     this.textEdit6.Location = new System.Drawing.Point(90, 27);
     this.textEdit6.Name = "textEdit6";
     this.textEdit6.Size = new System.Drawing.Size(230, 20);
     this.textEdit6.TabIndex = 4;
     //
     // panelControl6
     //
     this.panelControl6.Controls.Add(this.memoEdit4);
     this.panelControl6.Controls.Add(this.label22);
     this.panelControl6.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.panelControl6.Location = new System.Drawing.Point(0, -49);
     this.panelControl6.Name = "panelControl6";
     this.panelControl6.Size = new System.Drawing.Size(494, 49);
     this.panelControl6.TabIndex = 3;
     this.panelControl6.Text = "panelControl6";
     //
     // memoEdit4
     //
     this.memoEdit4.EditValue = "CUMPLE, NO CUMPLE, BLA BLA BLA";
     this.memoEdit4.Location = new System.Drawing.Point(77, 4);
     this.memoEdit4.Name = "memoEdit4";
     this.memoEdit4.Size = new System.Drawing.Size(872, 40);
     this.memoEdit4.TabIndex = 8;
     //
     // label22
     //
     this.label22.AutoSize = true;
     this.label22.Location = new System.Drawing.Point(9, 9);
     this.label22.Name = "label22";
     this.label22.Size = new System.Drawing.Size(62, 13);
     this.label22.TabIndex = 5;
     this.label22.Text = "Conclusión:";
     //
     // xtraTabPage5
     //
     this.xtraTabPage5.Name = "xtraTabPage5";
     this.xtraTabPage5.Size = new System.Drawing.Size(494, -21);
     this.xtraTabPage5.Text = "AG-03-00001 - D.S. N° 031-2010";
     //
     // xtraTabPage7
     //
     this.xtraTabPage7.Name = "xtraTabPage7";
     this.xtraTabPage7.Size = new System.Drawing.Size(494, -21);
     this.xtraTabPage7.Text = "AG-03-00001 - D.S. N° 002-2008";
     //
     // panelControl3
     //
     this.panelControl3.Controls.Add(this.lookUpEdit2);
     this.panelControl3.Controls.Add(this.label31);
     this.panelControl3.Dock = System.Windows.Forms.DockStyle.Top;
     this.panelControl3.Location = new System.Drawing.Point(0, 0);
     this.panelControl3.Name = "panelControl3";
     this.panelControl3.Size = new System.Drawing.Size(520, 30);
     this.panelControl3.TabIndex = 10;
     this.panelControl3.Text = "panelControl3";
     //
     // lookUpEdit2
     //
     this.lookUpEdit2.Location = new System.Drawing.Point(86, 5);
     this.lookUpEdit2.Name = "lookUpEdit2";
     this.lookUpEdit2.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lookUpEdit2.Properties.NullText = "AG-03-00001";
     this.lookUpEdit2.Size = new System.Drawing.Size(144, 20);
     this.lookUpEdit2.TabIndex = 10;
     //
     // label31
     //
     this.label31.AutoSize = true;
     this.label31.Location = new System.Drawing.Point(32, 8);
     this.label31.Name = "label31";
     this.label31.Size = new System.Drawing.Size(48, 13);
     this.label31.TabIndex = 9;
     this.label31.Text = "Muestra:";
     //
     // FormReception
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(1013, 662);
     this.Name = "FormReception";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Recepción de Muestras";
     this.Controls.SetChildIndex(this.paSupBotones, 0);
     this.Controls.SetChildIndex(this.thePanelTab1, 0);
     this.paTitleSearch.ResumeLayout(false);
     this.paTopBasicButtons.ResumeLayout(false);
     this.paTopSearch.ResumeLayout(false);
     this.paBottomSearch.ResumeLayout(false);
     this.panel1.ResumeLayout(false);
     this.paSearchGen.ResumeLayout(false);
     this.paSearchGen.PerformLayout();
     this.panel2.ResumeLayout(false);
     this.paInferior.ResumeLayout(false);
     this.paTitulo.ResumeLayout(false);
     this.paCentral.ResumeLayout(false);
     this.paSuperior.ResumeLayout(false);
     this.thePanelTab1.ResumeLayout(false);
     this.tpDatos.ResumeLayout(false);
     this.paSupBotones.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gcShowColumns)).EndInit();
     this.gcShowColumns.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit10.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit9.Properties)).EndInit();
     this.panel7.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.tbResidue.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbAmortization.Properties)).EndInit();
     this.panel5.ResumeLayout(false);
     this.panel5.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.tbTotalIgv.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbTotalAmount.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbSubTotalAmount.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gcReception)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvReception)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repDescription)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repProcedence)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repEnvelope_sealed)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repSelect)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repResult)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repSendReport)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repLink)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repDesLink)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repSample)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl1)).EndInit();
     this.xtraTabControl1.ResumeLayout(false);
     this.xtraTabPage3.ResumeLayout(false);
     this.xtraTabPage3.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.tbFax.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbClientPhone.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbClientRuc.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbClientDomicile.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbCompany.Properties)).EndInit();
     this.xtraTabPage6.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gcContact)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvContact)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repPerson_type)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repPhone)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repCellPhone)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repNum)).EndInit();
     this.xtraTabPage1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ckDispatchFax.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ckDispatchPerson.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ckDispatchTransport.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ckDispatchCurier.Properties)).EndInit();
     this.expandablePanel1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.tabOptionRight)).EndInit();
     this.tabOptionRight.ResumeLayout(false);
     this.tpRightMethods.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.lookUpEdit3.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gcMethods)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvMethods)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repAddColumn)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit1.Properties)).EndInit();
     this.tpRightReports.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gcReport)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvReport)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repStatusReport)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repReportOption)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repDateReport)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repTimeReport)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repTypeReport)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
     this.groupControl1.ResumeLayout(false);
     this.tpRightAttach.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gcAttachFile)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvAttachFile)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repAttach_file)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repAttach_status)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repButtons)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).EndInit();
     this.groupControl2.ResumeLayout(false);
     this.tpRightProgram.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gcProgram)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvProgram)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repProgramStatus)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repProgramButton)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repDateProgram)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repTimeProgram)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl3)).EndInit();
     this.groupControl3.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.deReception.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.deResult.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl2)).EndInit();
     this.xtraTabControl2.ResumeLayout(false);
     this.tabDateRegRecep.ResumeLayout(false);
     this.tabDateRegRecep.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.tbNumDays.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.deHourResult.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.deHourReception.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lookUpEdit1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit3.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txIdrecep_sample.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbTypeSample.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbAdministrativeExpense.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbCod_recep_sample.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
     this.panelControl1.ResumeLayout(false);
     this.panelControl1.PerformLayout();
     this.panel9.ResumeLayout(false);
     this.panel11.ResumeLayout(false);
     this.paTypeSample.ResumeLayout(false);
     this.paTypeSample.PerformLayout();
     this.paCodRegisterRecep.ResumeLayout(false);
     this.paCodRegisterRecep.PerformLayout();
     this.contextMenuStrip1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).EndInit();
     this.panelControl2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl3)).EndInit();
     this.xtraTabControl3.ResumeLayout(false);
     this.tpMuestras.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.panelControl7)).EndInit();
     this.panelControl7.ResumeLayout(false);
     this.panelControl7.PerformLayout();
     this.tpAnexos.ResumeLayout(false);
     this.tpAnexos.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit8.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.memoEdit1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit7.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl4)).EndInit();
     this.groupControl4.ResumeLayout(false);
     this.groupControl4.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit2.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.timeEdit1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEdit1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit6.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit5.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit4.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit3.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit2.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit5.Properties)).EndInit();
     this.tpReject.ResumeLayout(false);
     this.tpReject.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.memoEdit2.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gcRejection)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.bandedGridView1)).EndInit();
     this.tpDecree.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.panelControl4)).EndInit();
     this.panelControl4.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl4)).EndInit();
     this.xtraTabControl4.ResumeLayout(false);
     this.xtraTabPage4.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridDecretos)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repMetodo)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repUnidadMedida)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repCriterio)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl5)).EndInit();
     this.panelControl5.ResumeLayout(false);
     this.panelControl5.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.memoEdit3.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit4.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit6.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl6)).EndInit();
     this.panelControl6.ResumeLayout(false);
     this.panelControl6.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.memoEdit4.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl3)).EndInit();
     this.panelControl3.ResumeLayout(false);
     this.panelControl3.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.lookUpEdit2.Properties)).EndInit();
     this.ResumeLayout(false);
 }
コード例 #13
0
        //创建BandColumn
        private void createBandColumn(DevExpress.XtraGrid.Views.BandedGrid.BandedGridView bandGridView, DevExpress.XtraGrid.Views.BandedGrid.GridBand gridBand, Dictionary <string, MB.WinBase.Common.ColumnPropertyInfo> colPropertys, Dictionary <string, MB.WinBase.Common.ColumnEditCfgInfo> editCols, MB.WinBase.Common.GridViewLayoutInfo gridViewLayoutInfo, MB.WinBase.Common.GridColumnLayoutInfo columnLayoutInfo, DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn bColumn)
        {
            MB.WinBase.Common.ColumnPropertyInfo fInfo = colPropertys[columnLayoutInfo.ColumnXmlCfgName];
            //判断该列是否可以进行编辑
            DevExpress.XtraEditors.Repository.RepositoryItem rEdit = null;
            if (editCols != null && editCols.ContainsKey(columnLayoutInfo.ColumnXmlCfgName))
            {
                rEdit = CreateEditItemByEditInfo(editCols[columnLayoutInfo.ColumnXmlCfgName], fInfo.CanEdit, fInfo.DataType);//根据用户XML配置的信息获取一个编辑的列。
            }
            else
            {
                rEdit = CreateEditItemByCol(fInfo, false);
            }

            rEdit.Name         = fInfo.Name;
            bColumn.ColumnEdit = rEdit;
            bColumn.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;

            //  bColumn.DisplayFormat = new DevExpress.Utils.FormatInfo

            bandGridView.GridControl.RepositoryItems.Add(rEdit);

            //这句代码必须添加上,否则顺序的调整将会出现问题。
            bandGridView.Columns.Add(bColumn);
            if (gridBand != null)
            {
                gridBand.Columns.Add(bColumn);
            }

            SetEditColumn(bColumn, fInfo, columnLayoutInfo, gridViewLayoutInfo);
        }
コード例 #14
0
        //创建网格的GridBand。
        private void createGridBand(DevExpress.XtraGrid.Views.BandedGrid.BandedGridView bandGridView,
                                    DevExpress.XtraGrid.Views.BandedGrid.GridBand gridBand,
                                    Dictionary <string, MB.WinBase.Common.ColumnPropertyInfo> colPropertys,
                                    Dictionary <string, MB.WinBase.Common.ColumnEditCfgInfo> editCols,
                                    MB.WinBase.Common.GridViewLayoutInfo gridViewLayoutInfo,
                                    MB.WinBase.Common.GridColumnLayoutInfo columnLayoutInfo)
        {
            DevExpress.XtraGrid.Views.BandedGrid.GridBand bdc = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
            if (!string.IsNullOrEmpty(columnLayoutInfo.Name))
            {
                bdc.Name = columnLayoutInfo.Name;
            }

            if (gridBand == null)
            {
                bandGridView.Bands.Add(bdc);
            }
            else
            {
                gridBand.Children.Add(bdc);
            }

            bdc.Width   = columnLayoutInfo.VisibleWidth;
            bdc.Caption = columnLayoutInfo.Text;
            bdc.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            // bdc.Index  = columnLayoutInfo.Index;
            //背景颜色处理
            if (!string.IsNullOrEmpty(columnLayoutInfo.BackColor))
            {
                Color bc = MB.Util.MyConvert.Instance.ToColor(columnLayoutInfo.BackColor);
                if (bc != Color.Empty)
                {
                    bdc.AppearanceHeader.BackColor2 = bc;
                }
            }
            //字体颜色
            if (!string.IsNullOrEmpty(columnLayoutInfo.ForeColor))
            {
                Color fc = MB.Util.MyConvert.Instance.ToColor(columnLayoutInfo.ForeColor);
                if (fc != Color.Empty)
                {
                    bdc.AppearanceHeader.ForeColor = fc;
                }
            }
            //字体颜色
            if (columnLayoutInfo.ForeFontSize > 1)
            {
                bdc.AppearanceHeader.Font = new Font(bdc.AppearanceHeader.Font.FontFamily, columnLayoutInfo.ForeFontSize);
            }

            if (columnLayoutInfo.Childs != null && columnLayoutInfo.Childs.Count > 0)
            {
                {
                    foreach (var childLayoutInfo in columnLayoutInfo.Childs)
                    {
                        CreateBandedGridViewColumns(bandGridView, bdc, colPropertys, editCols, gridViewLayoutInfo, childLayoutInfo);
                    }
                }
            }
            if (columnLayoutInfo.Fixed != MB.WinBase.Common.FixedStyle.None)
            {
                if (columnLayoutInfo.Fixed == MB.WinBase.Common.FixedStyle.Left)
                {
                    bdc.Fixed = DevExpress.XtraGrid.Columns.FixedStyle.Left;
                }
                else
                {
                    bdc.Fixed = DevExpress.XtraGrid.Columns.FixedStyle.Right;
                }
            }
        }
コード例 #15
0
        protected virtual bool GetControlKey(Control pBaseControl, FieldInfo pFieldInfo, out string pKey, out string pText) //컨트롤이름과 컨트롤내부텍스트 읽어옴
        {
            pKey  = string.Empty;
            pText = string.Empty;
            try
            {
                object target = null;
                target = pFieldInfo.GetValue(pBaseControl);
                if (target == null)
                {
                    return(false);
                }
                PropertyInfo pInfo = target.GetType().GetProperty("Name");
                if (pInfo == null)
                {
                    return(false);
                }
                string xx = (string)pInfo.GetValue(target, null);
                if (!string.IsNullOrEmpty(xx))
                {
                    pKey = pBaseControl.GetType().Name + _SplitCHAR + xx;
                    if (target.GetType().Name == "GridView")
                    {
                        DevExpress.XtraGrid.Views.Grid.GridView GridView = (DevExpress.XtraGrid.Views.Grid.GridView)target;
                        pText = GridView.GroupPanelText;

                        for (int x1 = 0; x1 < GridView.Columns.Count; x1++)
                        {
                            string             tmpName = GridView.Columns[x1].Caption;
                            System.Xml.XmlNode ctlNode = XmlHelper._RootNode.SelectSingleNode(tmpName);
                            if (ctlNode == null)
                            {
                                continue;
                            }
                            if (ctlNode.InnerText != null && ctlNode.InnerText != "")
                            {
                                GridView.Columns[x1].Caption = ctlNode.InnerText;
                            }
                        }
                    }
                    else if (target.GetType().Name == "GridColumn" || target.GetType().Name == "BandedGridColumn")
                    {
                        DevExpress.XtraGrid.Columns.GridColumn GridCol = (DevExpress.XtraGrid.Columns.GridColumn)target;

                        pText = GridCol.Caption;
                        //pText = GridCol.OptionsEditForm.Caption;
                    }
                    else if (target.GetType().Name == "GridBand")
                    {
                        DevExpress.XtraGrid.Views.BandedGrid.GridBand Band = (DevExpress.XtraGrid.Views.BandedGrid.GridBand)target;
                        pText = Band.Caption;
                    }
                    else
                    {
                        pText = GetPropertyValue(target, "Text").ToString();
                    }
                    //try
                    //{
                    //    if ( pText.IndexOf(":") > 0 )
                    //        pText = pText.Replace(":", "");
                    //    if ( pText.IndexOf("(") > 0 )
                    //    {
                    //        pText = pText.Replace(pText.Substring(pText.IndexOf("(")), "");
                    //        pText = pText.Replace(")", "");
                    //    }
                    //}
                    //catch
                    //{

                    //}
                    return(true);
                }
            }
            catch { }
            return(false);
        }
コード例 #16
0
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        protected void InitializeComponent()
        {
            this.components = new System.ComponentModel.Container();
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmTimVetGio));
            this.barManager1 = new DevExpress.XtraBars.BarManager(this.components);
            this.MainBar = new DevExpress.XtraBars.Bar();
            this.barButtonItemAdd = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItemXem = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItemDelete = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItemUpdate = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItemPrint = new DevExpress.XtraBars.BarButtonItem();
            this.popupMenu1 = new DevExpress.XtraBars.PopupMenu(this.components);
            this.barButtonItem4 = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItemCommit = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItemNoCommit = new DevExpress.XtraBars.BarButtonItem();
            this.barSubItem1 = new DevExpress.XtraBars.BarSubItem();
            this.barButtonItemSearch = new DevExpress.XtraBars.BarButtonItem();
            this.popupMenuFilter = new DevExpress.XtraBars.PopupMenu(this.components);
            this.barCheckItemFilter = new DevExpress.XtraBars.BarCheckItem();
            this.barButtonItemClose = new DevExpress.XtraBars.BarButtonItem();
            this.barSubItemCotHienThi = new DevExpress.XtraBars.BarSubItem();
            this.barDockControlTop = new DevExpress.XtraBars.BarDockControl();
            this.barDockControlBottom = new DevExpress.XtraBars.BarDockControl();
            this.barDockControlLeft = new DevExpress.XtraBars.BarDockControl();
            this.barDockControlRight = new DevExpress.XtraBars.BarDockControl();
            this.dockManager1 = new DevExpress.XtraBars.Docking.DockManager(this.components);
            this.dockPanel1 = new DevExpress.XtraBars.Docking.DockPanel();
            this.dockPanel1_Container = new DevExpress.XtraBars.Docking.ControlContainer();
            this.popupControlContainerFilter = new DevExpress.XtraBars.PopupControlContainer(this.components);
            this.ckcNotEmpty = new DevExpress.XtraEditors.CheckEdit();
            this.ckcOnlyEmty = new DevExpress.XtraEditors.CheckEdit();
            this.KenhPhat = new ProtocolVN.Framework.Win.PLCombobox();
            this.ThuTrongTuan = new ProtocolVN.Framework.Win.PLMultiCombobox();
            this.plLabel9 = new DevExpress.XtraEditors.LabelControl();
            this.GioPhatTu = new DevExpress.XtraEditors.TimeEdit();
            this.plLabel1 = new DevExpress.XtraEditors.LabelControl();
            this.plLabel3 = new DevExpress.XtraEditors.LabelControl();
            this.plLabel6 = new DevExpress.XtraEditors.LabelControl();
            this.ThoiGian = new ProtocolVN.Framework.Win.Trial.PLDateSelection();
            this.barStaticItem1 = new DevExpress.XtraBars.BarStaticItem();
            this.barButtonItem1 = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItem2 = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItem3 = new DevExpress.XtraBars.BarButtonItem();
            this.splitContainerControl1 = new DevExpress.XtraEditors.SplitContainerControl();
            this.gridControlMaster = new DevExpress.XtraGrid.GridControl();
            this.gridViewMaster = new DevExpress.XtraGrid.Views.BandedGrid.PLBandedGridView();
            this.ColNgay = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.ColNoiDung = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.xtraTabControlDetail = new DevExpress.XtraTab.XtraTabControl();
            this.xtraTabPageDetail = new DevExpress.XtraTab.XtraTabPage();
            this.gridControlDetail = new DevExpress.XtraGrid.GridControl();
            this.gridViewDetail = new DevExpress.XtraGrid.Views.Grid.PLGridView();
            this.ColThang = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.ColNam = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.gridBandPostMaster = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
            ((System.ComponentModel.ISupportInitialize)(this.barManager1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.popupMenu1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.popupMenuFilter)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.dockManager1)).BeginInit();
            this.dockPanel1.SuspendLayout();
            this.dockPanel1_Container.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.popupControlContainerFilter)).BeginInit();
            this.popupControlContainerFilter.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.ckcNotEmpty.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.ckcOnlyEmty.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.ThuTrongTuan.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.GioPhatTu.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl1)).BeginInit();
            this.splitContainerControl1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.gridControlMaster)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridViewMaster)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.xtraTabControlDetail)).BeginInit();
            this.xtraTabControlDetail.SuspendLayout();
            this.xtraTabPageDetail.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.gridControlDetail)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridViewDetail)).BeginInit();
            this.SuspendLayout();
            //
            // barManager1
            //
            this.barManager1.Bars.AddRange(new DevExpress.XtraBars.Bar[] {
            this.MainBar});
            this.barManager1.DockControls.Add(this.barDockControlTop);
            this.barManager1.DockControls.Add(this.barDockControlBottom);
            this.barManager1.DockControls.Add(this.barDockControlLeft);
            this.barManager1.DockControls.Add(this.barDockControlRight);
            this.barManager1.DockManager = this.dockManager1;
            this.barManager1.Form = this;
            this.barManager1.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
            this.barButtonItemAdd,
            this.barButtonItemDelete,
            this.barButtonItemUpdate,
            this.barButtonItemPrint,
            this.barStaticItem1,
            this.barButtonItem1,
            this.barButtonItem2,
            this.barButtonItemCommit,
            this.barButtonItemNoCommit,
            this.barSubItem1,
            this.barButtonItemXem,
            this.barButtonItemSearch,
            this.barButtonItemClose,
            this.barCheckItemFilter,
            this.barButtonItem3,
            this.barButtonItem4,
            this.barSubItemCotHienThi});
            this.barManager1.MaxItemId = 40;
            //
            // MainBar
            //
            this.MainBar.BarName = "MainBar";
            this.MainBar.DockCol = 0;
            this.MainBar.DockRow = 0;
            this.MainBar.DockStyle = DevExpress.XtraBars.BarDockStyle.Top;
            this.MainBar.FloatLocation = new System.Drawing.Point(39, 133);
            this.MainBar.FloatSize = new System.Drawing.Size(72, 73);
            this.MainBar.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemAdd),
            new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemXem),
            new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemDelete),
            new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemUpdate),
            new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemPrint, true),
            new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemCommit, true),
            new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemNoCommit),
            new DevExpress.XtraBars.LinkPersistInfo(this.barSubItem1, true),
            new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemSearch, true),
            new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemClose, true),
            new DevExpress.XtraBars.LinkPersistInfo(this.barSubItemCotHienThi)});
            this.MainBar.OptionsBar.AllowQuickCustomization = false;
            this.MainBar.OptionsBar.DrawDragBorder = false;
            this.MainBar.OptionsBar.RotateWhenVertical = false;
            this.MainBar.OptionsBar.UseWholeRow = true;
            this.MainBar.Text = "Custom 1";
            //
            // barButtonItemAdd
            //
            this.barButtonItemAdd.Caption = "Thêm";
            this.barButtonItemAdd.Id = 0;
            this.barButtonItemAdd.Name = "barButtonItemAdd";
            this.barButtonItemAdd.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
            this.barButtonItemAdd.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
            //
            // barButtonItemXem
            //
            this.barButtonItemXem.Caption = "&Xem";
            this.barButtonItemXem.Id = 24;
            this.barButtonItemXem.Name = "barButtonItemXem";
            this.barButtonItemXem.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
            this.barButtonItemXem.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
            //
            // barButtonItemDelete
            //
            this.barButtonItemDelete.Caption = "&Xóa";
            this.barButtonItemDelete.Id = 1;
            this.barButtonItemDelete.Name = "barButtonItemDelete";
            this.barButtonItemDelete.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
            this.barButtonItemDelete.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
            //
            // barButtonItemUpdate
            //
            this.barButtonItemUpdate.Caption = "&Sửa";
            this.barButtonItemUpdate.Id = 2;
            this.barButtonItemUpdate.Name = "barButtonItemUpdate";
            this.barButtonItemUpdate.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
            this.barButtonItemUpdate.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
            //
            // barButtonItemPrint
            //
            this.barButtonItemPrint.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown;
            this.barButtonItemPrint.Caption = "&In";
            this.barButtonItemPrint.DropDownControl = this.popupMenu1;
            this.barButtonItemPrint.Id = 3;
            this.barButtonItemPrint.Name = "barButtonItemPrint";
            this.barButtonItemPrint.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
            //
            // popupMenu1
            //
            this.popupMenu1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem4)});
            this.popupMenu1.Manager = this.barManager1;
            this.popupMenu1.Name = "popupMenu1";
            //
            // barButtonItem4
            //
            this.barButtonItem4.Caption = "Xem trước";
            this.barButtonItem4.Id = 33;
            this.barButtonItem4.Name = "barButtonItem4";
            //
            // barButtonItemCommit
            //
            this.barButtonItemCommit.Caption = "&Duyệt";
            this.barButtonItemCommit.Id = 17;
            this.barButtonItemCommit.Name = "barButtonItemCommit";
            this.barButtonItemCommit.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
            //
            // barButtonItemNoCommit
            //
            this.barButtonItemNoCommit.Caption = "&Không duyệt";
            this.barButtonItemNoCommit.Id = 18;
            this.barButtonItemNoCommit.Name = "barButtonItemNoCommit";
            this.barButtonItemNoCommit.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
            //
            // barSubItem1
            //
            this.barSubItem1.Caption = "Nghiệp vụ";
            this.barSubItem1.Id = 20;
            this.barSubItem1.Name = "barSubItem1";
            this.barSubItem1.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
            //
            // barButtonItemSearch
            //
            this.barButtonItemSearch.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown;
            this.barButtonItemSearch.Caption = "Tìm kiếm";
            this.barButtonItemSearch.DropDownControl = this.popupMenuFilter;
            this.barButtonItemSearch.Id = 27;
            this.barButtonItemSearch.Name = "barButtonItemSearch";
            this.barButtonItemSearch.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
            //
            // popupMenuFilter
            //
            this.popupMenuFilter.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.barCheckItemFilter)});
            this.popupMenuFilter.Manager = this.barManager1;
            this.popupMenuFilter.Name = "popupMenuFilter";
            //
            // barCheckItemFilter
            //
            this.barCheckItemFilter.Caption = "Điều &kiện lọc";
            this.barCheckItemFilter.Checked = true;
            this.barCheckItemFilter.Id = 29;
            this.barCheckItemFilter.Name = "barCheckItemFilter";
            this.barCheckItemFilter.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
            //
            // barButtonItemClose
            //
            this.barButtonItemClose.Caption = "Đóng";
            this.barButtonItemClose.Id = 28;
            this.barButtonItemClose.Name = "barButtonItemClose";
            this.barButtonItemClose.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
            //
            // barSubItemCotHienThi
            //
            this.barSubItemCotHienThi.Caption = "Chọn cột hiển thị";
            this.barSubItemCotHienThi.Id = 36;
            this.barSubItemCotHienThi.Name = "barSubItemCotHienThi";
            this.barSubItemCotHienThi.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
            //
            // barDockControlTop
            //
            this.barDockControlTop.Dock = System.Windows.Forms.DockStyle.Top;
            this.barDockControlTop.Location = new System.Drawing.Point(0, 0);
            this.barDockControlTop.Size = new System.Drawing.Size(1362, 24);
            //
            // barDockControlBottom
            //
            this.barDockControlBottom.Dock = System.Windows.Forms.DockStyle.Bottom;
            this.barDockControlBottom.Location = new System.Drawing.Point(0, 545);
            this.barDockControlBottom.Size = new System.Drawing.Size(1362, 0);
            //
            // barDockControlLeft
            //
            this.barDockControlLeft.Dock = System.Windows.Forms.DockStyle.Left;
            this.barDockControlLeft.Location = new System.Drawing.Point(0, 24);
            this.barDockControlLeft.Size = new System.Drawing.Size(0, 521);
            //
            // barDockControlRight
            //
            this.barDockControlRight.Dock = System.Windows.Forms.DockStyle.Right;
            this.barDockControlRight.Location = new System.Drawing.Point(1362, 24);
            this.barDockControlRight.Size = new System.Drawing.Size(0, 521);
            //
            // dockManager1
            //
            this.dockManager1.Form = this;
            this.dockManager1.RootPanels.AddRange(new DevExpress.XtraBars.Docking.DockPanel[] {
            this.dockPanel1});
            this.dockManager1.TopZIndexControls.AddRange(new string[] {
            "DevExpress.XtraBars.BarDockControl",
            "DevExpress.XtraBars.StandaloneBarDockControl",
            "System.Windows.Forms.StatusBar",
            "DevExpress.XtraBars.Ribbon.RibbonStatusBar",
            "DevExpress.XtraBars.Ribbon.RibbonControl"});
            //
            // dockPanel1
            //
            this.dockPanel1.Controls.Add(this.dockPanel1_Container);
            this.dockPanel1.Dock = DevExpress.XtraBars.Docking.DockingStyle.Top;
            this.dockPanel1.FloatVertical = true;
            this.dockPanel1.ID = new System.Guid("437240ce-168d-4c05-a0b9-c702ea5e41f7");
            this.dockPanel1.Location = new System.Drawing.Point(0, 24);
            this.dockPanel1.Name = "dockPanel1";
            this.dockPanel1.Options.AllowDockLeft = false;
            this.dockPanel1.Options.AllowDockRight = false;
            this.dockPanel1.OriginalSize = new System.Drawing.Size(200, 59);
            this.dockPanel1.Size = new System.Drawing.Size(1362, 59);
            this.dockPanel1.Text = "Điều kiện tìm kiếm";
            this.dockPanel1.VisibilityChanged += new DevExpress.XtraBars.Docking.VisibilityChangedEventHandler(this.dockPanel1_VisibilityChanged);
            //
            // dockPanel1_Container
            //
            this.dockPanel1_Container.Controls.Add(this.popupControlContainerFilter);
            this.dockPanel1_Container.Location = new System.Drawing.Point(3, 25);
            this.dockPanel1_Container.Name = "dockPanel1_Container";
            this.dockPanel1_Container.Size = new System.Drawing.Size(1356, 31);
            this.dockPanel1_Container.TabIndex = 0;
            //
            // popupControlContainerFilter
            //
            this.popupControlContainerFilter.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
            this.popupControlContainerFilter.Controls.Add(this.ckcNotEmpty);
            this.popupControlContainerFilter.Controls.Add(this.ckcOnlyEmty);
            this.popupControlContainerFilter.Controls.Add(this.KenhPhat);
            this.popupControlContainerFilter.Controls.Add(this.ThuTrongTuan);
            this.popupControlContainerFilter.Controls.Add(this.plLabel9);
            this.popupControlContainerFilter.Controls.Add(this.GioPhatTu);
            this.popupControlContainerFilter.Controls.Add(this.plLabel1);
            this.popupControlContainerFilter.Controls.Add(this.plLabel3);
            this.popupControlContainerFilter.Controls.Add(this.plLabel6);
            this.popupControlContainerFilter.Controls.Add(this.ThoiGian);
            this.popupControlContainerFilter.Dock = System.Windows.Forms.DockStyle.Fill;
            this.popupControlContainerFilter.Location = new System.Drawing.Point(0, 0);
            this.popupControlContainerFilter.Manager = this.barManager1;
            this.popupControlContainerFilter.Name = "popupControlContainerFilter";
            this.popupControlContainerFilter.Size = new System.Drawing.Size(1356, 31);
            this.popupControlContainerFilter.TabIndex = 5;
            this.popupControlContainerFilter.Visible = false;
            //
            // ckcNotEmpty
            //
            this.ckcNotEmpty.Location = new System.Drawing.Point(110, 6);
            this.ckcNotEmpty.Name = "ckcNotEmpty";
            this.ckcNotEmpty.Properties.Caption = "Vệt giờ có nội dung";
            this.ckcNotEmpty.Size = new System.Drawing.Size(124, 19);
            this.ckcNotEmpty.TabIndex = 13;
            this.ckcNotEmpty.CheckedChanged += new System.EventHandler(this.ckcOnlyEmty_CheckedChanged);
            //
            // ckcOnlyEmty
            //
            this.ckcOnlyEmty.EditValue = true;
            this.ckcOnlyEmty.Location = new System.Drawing.Point(9, 6);
            this.ckcOnlyEmty.MenuManager = this.barManager1;
            this.ckcOnlyEmty.Name = "ckcOnlyEmty";
            this.ckcOnlyEmty.Properties.Caption = "Vệt giờ trống";
            this.ckcOnlyEmty.Size = new System.Drawing.Size(111, 19);
            this.ckcOnlyEmty.TabIndex = 13;
            this.ckcOnlyEmty.CheckedChanged += new System.EventHandler(this.ckcOnlyEmty_CheckedChanged);
            //
            // KenhPhat
            //
            this.KenhPhat.DataSource = null;
            this.KenhPhat.DisplayField = null;
            this.KenhPhat.Location = new System.Drawing.Point(317, 4);
            this.KenhPhat.Name = "KenhPhat";
            this.KenhPhat.Size = new System.Drawing.Size(139, 22);
            this.KenhPhat.TabIndex = 232;
            this.KenhPhat.ValueField = null;
            //
            // ThuTrongTuan
            //
            this.ThuTrongTuan.DataSource = null;
            this.ThuTrongTuan.DisplayField = null;
            this.ThuTrongTuan.Location = new System.Drawing.Point(704, 5);
            this.ThuTrongTuan.Name = "ThuTrongTuan";
            this.ThuTrongTuan.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.ThuTrongTuan.Size = new System.Drawing.Size(200, 20);
            this.ThuTrongTuan.TabIndex = 231;
            this.ThuTrongTuan.ValueField = null;
            //
            // plLabel9
            //
            this.plLabel9.Location = new System.Drawing.Point(625, 9);
            this.plLabel9.Name = "plLabel9";
            this.plLabel9.Size = new System.Drawing.Size(73, 13);
            this.plLabel9.TabIndex = 230;
            this.plLabel9.Text = "Thứ trong tuần";

            //
            // GioPhatTu
            //
            this.GioPhatTu.EditValue = null;
            this.GioPhatTu.Location = new System.Drawing.Point(511, 5);
            this.GioPhatTu.Name = "GioPhatTu";
            this.GioPhatTu.Properties.AllowNullInput = DevExpress.Utils.DefaultBoolean.True;
            this.GioPhatTu.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton()});
            this.GioPhatTu.Properties.Mask.EditMask = "HH:mm";
            this.GioPhatTu.Properties.Mask.UseMaskAsDisplayFormat = true;
            this.GioPhatTu.Size = new System.Drawing.Size(85, 20);
            this.GioPhatTu.TabIndex = 228;
            //
            // plLabel1
            //
            this.plLabel1.Location = new System.Drawing.Point(263, 9);
            this.plLabel1.Name = "plLabel1";
            this.plLabel1.Size = new System.Drawing.Size(48, 13);
            this.plLabel1.TabIndex = 217;
            this.plLabel1.Text = "Trên kênh";

            //
            // plLabel3
            //
            this.plLabel3.Location = new System.Drawing.Point(472, 9);
            this.plLabel3.Name = "plLabel3";
            this.plLabel3.Size = new System.Drawing.Size(33, 13);
            this.plLabel3.TabIndex = 217;
            this.plLabel3.Text = "Vệt giờ";

            //
            // plLabel6
            //
            this.plLabel6.Location = new System.Drawing.Point(925, 9);
            this.plLabel6.Name = "plLabel6";
            this.plLabel6.Size = new System.Drawing.Size(43, 13);
            this.plLabel6.TabIndex = 217;
            this.plLabel6.Text = "Thời gian";

            //
            // ThoiGian
            //
            this.ThoiGian.AllowNull = false;
            this.ThoiGian.Caption = "Từ ngày 15/06/2012 đến ngày 22/06/2012";
            this.ThoiGian.Default = ProtocolVN.Framework.Win.Trial.SelectionTypes.FromDateToDate;
            this.ThoiGian.FirstFrom = new System.DateTime(2012, 6, 15, 5, 46, 55, 392);
            this.ThoiGian.FirstTo = new System.DateTime(2012, 6, 22, 5, 46, 55, 392);
            this.ThoiGian.FromDate = new System.DateTime(2012, 6, 15, 5, 46, 55, 392);
            this.ThoiGian.Location = new System.Drawing.Point(974, 5);
            this.ThoiGian.Name = "ThoiGian";
            this.ThoiGian.ReturnType = ProtocolVN.Framework.Win.Trial.TimeType.Date;
            this.ThoiGian.SecondFrom = new System.DateTime(2012, 6, 15, 5, 46, 55, 392);
            this.ThoiGian.SecondTo = new System.DateTime(2012, 6, 22, 5, 46, 55, 392);
            this.ThoiGian.SelectedType = ProtocolVN.Framework.Win.Trial.SelectionTypes.FromDateToDate;
            this.ThoiGian.Size = new System.Drawing.Size(285, 21);
            this.ThoiGian.TabIndex = 226;
            this.ThoiGian.ToDate = new System.DateTime(2012, 6, 22, 5, 46, 55, 392);
            this.ThoiGian.Types = ((ProtocolVN.Framework.Win.Trial.SelectionTypes)(((((((((ProtocolVN.Framework.Win.Trial.SelectionTypes.OneDate | ProtocolVN.Framework.Win.Trial.SelectionTypes.OneMonth)
                        | ProtocolVN.Framework.Win.Trial.SelectionTypes.OneQuarter)
                        | ProtocolVN.Framework.Win.Trial.SelectionTypes.OneYear)
                        | ProtocolVN.Framework.Win.Trial.SelectionTypes.SixMonths)
                        | ProtocolVN.Framework.Win.Trial.SelectionTypes.FromDateToDate)
                        | ProtocolVN.Framework.Win.Trial.SelectionTypes.FromMonthToMonth)
                        | ProtocolVN.Framework.Win.Trial.SelectionTypes.FromQuarterToQuarter)
                        | ProtocolVN.Framework.Win.Trial.SelectionTypes.FromYearToYear)));
            //
            // barStaticItem1
            //
            this.barStaticItem1.AutoSize = DevExpress.XtraBars.BarStaticItemSize.None;
            this.barStaticItem1.Border = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
            this.barStaticItem1.Id = 13;
            this.barStaticItem1.Name = "barStaticItem1";
            this.barStaticItem1.TextAlignment = System.Drawing.StringAlignment.Near;
            this.barStaticItem1.Width = 100;
            //
            // barButtonItem1
            //
            this.barButtonItem1.Caption = "barButtonItem1";
            this.barButtonItem1.Id = 14;
            this.barButtonItem1.Name = "barButtonItem1";
            //
            // barButtonItem2
            //
            this.barButtonItem2.Caption = "barButtonItem2";
            this.barButtonItem2.Id = 15;
            this.barButtonItem2.Name = "barButtonItem2";
            //
            // barButtonItem3
            //
            this.barButtonItem3.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown;
            this.barButtonItem3.Caption = "In";
            this.barButtonItem3.Id = 30;
            this.barButtonItem3.Name = "barButtonItem3";
            //
            // splitContainerControl1
            //
            this.splitContainerControl1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.splitContainerControl1.FixedPanel = DevExpress.XtraEditors.SplitFixedPanel.Panel2;
            this.splitContainerControl1.Horizontal = false;
            this.splitContainerControl1.Location = new System.Drawing.Point(0, 83);
            this.splitContainerControl1.Name = "splitContainerControl1";
            this.splitContainerControl1.Panel1.Controls.Add(this.gridControlMaster);
            this.splitContainerControl1.Panel1.Text = "splitContainerControl1_Panel1";
            this.splitContainerControl1.Panel2.CaptionLocation = DevExpress.Utils.Locations.Left;
            this.splitContainerControl1.Panel2.Controls.Add(this.xtraTabControlDetail);
            this.splitContainerControl1.Panel2.ShowCaption = true;
            this.splitContainerControl1.Panel2.Text = "splitContainerControl1_Panel2";
            this.splitContainerControl1.Size = new System.Drawing.Size(1362, 462);
            this.splitContainerControl1.SplitterPosition = 0;
            this.splitContainerControl1.TabIndex = 4;
            this.splitContainerControl1.Text = "splitContainerControl1";
            //
            // gridControlMaster
            //
            this.gridControlMaster.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("gridControlMaster.BackgroundImage")));
            this.gridControlMaster.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
            this.gridControlMaster.Dock = System.Windows.Forms.DockStyle.Fill;
            this.gridControlMaster.Location = new System.Drawing.Point(0, 0);
            this.gridControlMaster.MainView = this.gridViewMaster;
            this.gridControlMaster.Name = "gridControlMaster";
            this.gridControlMaster.Size = new System.Drawing.Size(1362, 456);
            this.gridControlMaster.TabIndex = 12;
            this.gridControlMaster.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
            this.gridViewMaster});
            //
            // gridViewMaster
            //
            this.gridViewMaster.Appearance.HeaderPanel.Options.UseTextOptions = true;
            this.gridViewMaster.Appearance.HeaderPanel.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridViewMaster.Bands.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.GridBand[] {
            this.gridBandPostMaster});
            this.gridViewMaster.Columns.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn[] {
            this.ColNam,
            this.ColThang,
            this.ColNgay,
            this.ColNoiDung});
            this.gridViewMaster.GridControl = this.gridControlMaster;
            this.gridViewMaster.GroupCount = 2;
            this.gridViewMaster.IndicatorWidth = 40;
            this.gridViewMaster.Name = "gridViewMaster";
            this.gridViewMaster.OptionsBehavior.AutoExpandAllGroups = true;
            this.gridViewMaster.OptionsLayout.Columns.AddNewColumns = false;
            this.gridViewMaster.OptionsNavigation.AutoFocusNewRow = true;
            this.gridViewMaster.OptionsNavigation.EnterMoveNextColumn = true;
            this.gridViewMaster.OptionsPrint.UsePrintStyles = true;
            this.gridViewMaster.OptionsView.EnableAppearanceEvenRow = true;
            this.gridViewMaster.OptionsView.EnableAppearanceOddRow = true;
            this.gridViewMaster.OptionsView.NewItemRowPosition = DevExpress.XtraGrid.Views.Grid.NewItemRowPosition.Bottom;
            this.gridViewMaster.OptionsView.ShowBands = false;
            this.gridViewMaster.OptionsView.ShowViewCaption = true;
            this.gridViewMaster.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
            new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.ColNam, DevExpress.Data.ColumnSortOrder.Ascending),
            new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.ColThang, DevExpress.Data.ColumnSortOrder.Ascending)});
            this.gridViewMaster.ViewCaption = "DANH SÁCH NGÀY CÒN TRỐNG TRÊN VỆT GIỜ";
            //
            // ColNgay
            //
            this.ColNgay.Caption = "Ngày";
            this.ColNgay.Name = "ColNgay";
            this.ColNgay.Visible = true;
            this.ColNgay.Width = 125;
            //
            // ColNoiDung
            //
            this.ColNoiDung.Caption = "Nội dung";
            this.ColNoiDung.Name = "ColNoiDung";
            this.ColNoiDung.OptionsColumn.AllowShowHide = false;
            this.ColNoiDung.Visible = true;
            this.ColNoiDung.Width = 1036;
            //
            // xtraTabControlDetail
            //
            this.xtraTabControlDetail.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
            this.xtraTabControlDetail.Dock = System.Windows.Forms.DockStyle.Fill;
            this.xtraTabControlDetail.Location = new System.Drawing.Point(0, 0);
            this.xtraTabControlDetail.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Flat;
            this.xtraTabControlDetail.LookAndFeel.UseDefaultLookAndFeel = false;
            this.xtraTabControlDetail.Name = "xtraTabControlDetail";
            this.xtraTabControlDetail.SelectedTabPage = this.xtraTabPageDetail;
            this.xtraTabControlDetail.ShowTabHeader = DevExpress.Utils.DefaultBoolean.False;
            this.xtraTabControlDetail.Size = new System.Drawing.Size(0, 0);
            this.xtraTabControlDetail.TabIndex = 10;
            this.xtraTabControlDetail.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
            this.xtraTabPageDetail});
            //
            // xtraTabPageDetail
            //
            this.xtraTabPageDetail.Controls.Add(this.gridControlDetail);
            this.xtraTabPageDetail.Name = "xtraTabPageDetail";
            this.xtraTabPageDetail.Size = new System.Drawing.Size(0, 0);
            this.xtraTabPageDetail.Text = "Danh sách biên mục";
            //
            // gridControlDetail
            //
            this.gridControlDetail.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("gridControlDetail.BackgroundImage")));
            this.gridControlDetail.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
            this.gridControlDetail.Dock = System.Windows.Forms.DockStyle.Fill;
            this.gridControlDetail.Location = new System.Drawing.Point(0, 0);
            this.gridControlDetail.MainView = this.gridViewDetail;
            this.gridControlDetail.Name = "gridControlDetail";
            this.gridControlDetail.Size = new System.Drawing.Size(0, 0);
            this.gridControlDetail.TabIndex = 3;
            this.gridControlDetail.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
            this.gridViewDetail});
            //
            // gridViewDetail
            //
            this.gridViewDetail.Appearance.HeaderPanel.Options.UseTextOptions = true;
            this.gridViewDetail.Appearance.HeaderPanel.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridViewDetail.GridControl = this.gridControlDetail;
            this.gridViewDetail.IndicatorWidth = 40;
            this.gridViewDetail.Name = "gridViewDetail";
            this.gridViewDetail.OptionsBehavior.AutoExpandAllGroups = true;
            this.gridViewDetail.OptionsLayout.Columns.AddNewColumns = false;
            this.gridViewDetail.OptionsNavigation.AutoFocusNewRow = true;
            this.gridViewDetail.OptionsNavigation.EnterMoveNextColumn = true;
            this.gridViewDetail.OptionsPrint.UsePrintStyles = true;
            this.gridViewDetail.OptionsView.EnableAppearanceEvenRow = true;
            this.gridViewDetail.OptionsView.EnableAppearanceOddRow = true;
            this.gridViewDetail.OptionsView.NewItemRowPosition = DevExpress.XtraGrid.Views.Grid.NewItemRowPosition.Bottom;
            this.gridViewDetail.OptionsView.ShowGroupedColumns = true;
            this.gridViewDetail.OptionsView.ShowGroupPanel = false;
            this.gridViewDetail.OptionsView.ShowViewCaption = true;
            this.gridViewDetail.ViewCaption = "Chi tiết lịch phát sóng";
            //
            // ColThang
            //
            this.ColThang.Caption = "Tháng";
            this.ColThang.Name = "ColThang";
            this.ColThang.Visible = true;
            this.ColThang.Width = 62;
            //
            // ColNam
            //
            this.ColNam.Caption = "Năm";
            this.ColNam.Name = "ColNam";
            this.ColNam.Visible = true;
            this.ColNam.Width = 95;
            //
            // gridBandPostMaster
            //
            this.gridBandPostMaster.AppearanceHeader.Options.UseTextOptions = true;
            this.gridBandPostMaster.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridBandPostMaster.Caption = "Thông tin phát sóng";
            this.gridBandPostMaster.Columns.Add(this.ColNam);
            this.gridBandPostMaster.Columns.Add(this.ColThang);
            this.gridBandPostMaster.Columns.Add(this.ColNgay);
            this.gridBandPostMaster.Columns.Add(this.ColNoiDung);
            this.gridBandPostMaster.Name = "gridBandPostMaster";
            this.gridBandPostMaster.Width = 1318;
            //
            // frmTimVetGio
            //
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(1362, 545);
            this.Controls.Add(this.splitContainerControl1);
            this.Controls.Add(this.dockPanel1);
            this.Controls.Add(this.barDockControlLeft);
            this.Controls.Add(this.barDockControlRight);
            this.Controls.Add(this.barDockControlBottom);
            this.Controls.Add(this.barDockControlTop);
            this.Name = "frmTimVetGio";
            this.ShowInTaskbar = false;
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
            this.Text = "Kiểm tra vệt giờ";
            ((System.ComponentModel.ISupportInitialize)(this.barManager1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.popupMenu1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.popupMenuFilter)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.dockManager1)).EndInit();
            this.dockPanel1.ResumeLayout(false);
            this.dockPanel1_Container.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.popupControlContainerFilter)).EndInit();
            this.popupControlContainerFilter.ResumeLayout(false);
            this.popupControlContainerFilter.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.ckcNotEmpty.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.ckcOnlyEmty.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.ThuTrongTuan.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.GioPhatTu.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl1)).EndInit();
            this.splitContainerControl1.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.gridControlMaster)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridViewMaster)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.xtraTabControlDetail)).EndInit();
            this.xtraTabControlDetail.ResumeLayout(false);
            this.xtraTabPageDetail.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.gridControlDetail)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridViewDetail)).EndInit();
            this.ResumeLayout(false);
        }
コード例 #17
0
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        protected void InitializeComponent()
        {
            this.components = new System.ComponentModel.Container();
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmQuanLyLichPhatSongNewQL));
            this.barManager1 = new DevExpress.XtraBars.BarManager(this.components);
            this.MainBar = new DevExpress.XtraBars.Bar();
            this.barButtonItemAddNext = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItemAdd = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItemCopy = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItemXem = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItemDelete = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItemUpdate = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItemPrint = new DevExpress.XtraBars.BarButtonItem();
            this.popupMenu1 = new DevExpress.XtraBars.PopupMenu(this.components);
            this.barButtonItem4 = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItemCommit = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItemNoCommit = new DevExpress.XtraBars.BarButtonItem();
            this.barSubItem1 = new DevExpress.XtraBars.BarSubItem();
            this.barButtonItemSearch = new DevExpress.XtraBars.BarButtonItem();
            this.popupMenuFilter = new DevExpress.XtraBars.PopupMenu(this.components);
            this.barCheckItemFilter = new DevExpress.XtraBars.BarCheckItem();
            this.barButtonItemClose = new DevExpress.XtraBars.BarButtonItem();
            this.barSubItemCotHienThi = new DevExpress.XtraBars.BarSubItem();
            this.barDockControlTop = new DevExpress.XtraBars.BarDockControl();
            this.barDockControlBottom = new DevExpress.XtraBars.BarDockControl();
            this.barDockControlLeft = new DevExpress.XtraBars.BarDockControl();
            this.barDockControlRight = new DevExpress.XtraBars.BarDockControl();
            this.dockManager1 = new DevExpress.XtraBars.Docking.DockManager(this.components);
            this.dockPanel1 = new DevExpress.XtraBars.Docking.DockPanel();
            this.dockPanel1_Container = new DevExpress.XtraBars.Docking.ControlContainer();
            this.popupControlContainerFilter = new DevExpress.XtraBars.PopupControlContainer(this.components);
            this.ngayNhap = new ProtocolVN.Framework.Win.Trial.PLDateSelection();
            this.label29 = new DevExpress.XtraEditors.LabelControl();
            this.ThongTinThem = new DevExpress.XtraEditors.CheckedListBoxControl();
            this.GioPhatDen = new DevExpress.XtraEditors.TimeEdit();
            this.GioPhatTu = new DevExpress.XtraEditors.TimeEdit();
            this.PhongBan = new ProtocolVN.Framework.Win.PLDMTreeMultiChoice();
            this.NguoiNhap = new ProtocolVN.Framework.Win.PLMultiCombobox();
            this.Category = new ProtocolVN.App.VideoLibrary.PLTextEditAutocomplete();
            this.TenCT = new ProtocolVN.App.VideoLibrary.PLTextEditAutocomplete();
            this.ThuTrongTuan = new ProtocolVN.Framework.Win.PLMultiCombobox();
            this.KenhPhat = new ProtocolVN.Framework.Win.PLMultiCombobox();
            this.PostMaster = new ProtocolVN.Framework.Win.PLMultiCombobox();
            this.TietMuc = new ProtocolVN.Framework.Win.PLMultiCombobox();
            this.plLabel8 = new DevExpress.XtraEditors.LabelControl();
            this.plLabel9 = new DevExpress.XtraEditors.LabelControl();
            this.plLabel7 = new DevExpress.XtraEditors.LabelControl();
            this.label10 = new DevExpress.XtraEditors.LabelControl();
            this.plLabel4 = new DevExpress.XtraEditors.LabelControl();
            this.plLabel1 = new DevExpress.XtraEditors.LabelControl();
            this.plLabel5 = new DevExpress.XtraEditors.LabelControl();
            this.plLabel3 = new DevExpress.XtraEditors.LabelControl();
            this.plLabel6 = new DevExpress.XtraEditors.LabelControl();
            this.plLabel2 = new DevExpress.XtraEditors.LabelControl();
            this.label3 = new DevExpress.XtraEditors.LabelControl();
            this.label5 = new DevExpress.XtraEditors.LabelControl();
            this.NgayBatDauPhat = new ProtocolVN.Framework.Win.Trial.PLDateSelection();
            this.barStaticItem1 = new DevExpress.XtraBars.BarStaticItem();
            this.barButtonItem1 = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItem2 = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItem3 = new DevExpress.XtraBars.BarButtonItem();
            this.splitContainerControl1 = new DevExpress.XtraEditors.SplitContainerControl();
            this.groupControlPM = new DevExpress.XtraEditors.GroupControl();
            this.gridControlMaster = new DevExpress.XtraGrid.GridControl();
            this.gridViewMaster = new DevExpress.XtraGrid.Views.BandedGrid.PLBandedGridView();
            this.gridBandPostMaster = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
            this.Col_LPS_NgayBatDau = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_LPS_GioPhat = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_LPS_KenhPhat = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_LPS_SoTapNgay = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_LPS_ThuTrongTuan = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_LPS_NgayCuoi = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_LPS_SoNgayPhat = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_LPS_ThongTinThem = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_LPS_NgayTao = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.gridBandChuongTrinh = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
            this.Col_LPS_NguoiTao = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_LPS_TenChuongTrinh = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_LPS_TenGoc = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_LPS_Category = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_LPS_TietMuc = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_LPS_NuocSX = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_LPS_NamSx = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_LPS_PostMaster = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_LPS_TongTap = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_LPS_TongSoRun = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_LPS_SoLanDaPhat = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_LPS_SoRunCon = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_LPS_ThoiLuongChung = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.xtraTabControlDetail = new DevExpress.XtraTab.XtraTabControl();
            this.xtraTabPageDetail = new DevExpress.XtraTab.XtraTabPage();
            this.gridControlDetail = new DevExpress.XtraGrid.GridControl();
            this.gridViewDetail = new DevExpress.XtraGrid.Views.Grid.PLGridView();
            this.ColTapSo = new DevExpress.XtraGrid.Columns.GridColumn();
            this.ColThoiLuong = new DevExpress.XtraGrid.Columns.GridColumn();
            this.ColGioPhat = new DevExpress.XtraGrid.Columns.GridColumn();
            this.ColNgayPhat = new DevExpress.XtraGrid.Columns.GridColumn();
            this.ColMaBang = new DevExpress.XtraGrid.Columns.GridColumn();
            this.ColTenTap = new DevExpress.XtraGrid.Columns.GridColumn();
            ((System.ComponentModel.ISupportInitialize)(this.barManager1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.popupMenu1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.popupMenuFilter)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.dockManager1)).BeginInit();
            this.dockPanel1.SuspendLayout();
            this.dockPanel1_Container.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.popupControlContainerFilter)).BeginInit();
            this.popupControlContainerFilter.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.ThongTinThem)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.GioPhatDen.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.GioPhatTu.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.NguoiNhap.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.Category.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.TenCT.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.ThuTrongTuan.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.KenhPhat.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.PostMaster.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.TietMuc.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl1)).BeginInit();
            this.splitContainerControl1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.groupControlPM)).BeginInit();
            this.groupControlPM.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.gridControlMaster)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridViewMaster)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.xtraTabControlDetail)).BeginInit();
            this.xtraTabControlDetail.SuspendLayout();
            this.xtraTabPageDetail.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.gridControlDetail)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridViewDetail)).BeginInit();
            this.SuspendLayout();
            //
            // barManager1
            //
            this.barManager1.Bars.AddRange(new DevExpress.XtraBars.Bar[] {
            this.MainBar});
            this.barManager1.DockControls.Add(this.barDockControlTop);
            this.barManager1.DockControls.Add(this.barDockControlBottom);
            this.barManager1.DockControls.Add(this.barDockControlLeft);
            this.barManager1.DockControls.Add(this.barDockControlRight);
            this.barManager1.DockManager = this.dockManager1;
            this.barManager1.Form = this;
            this.barManager1.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
            this.barButtonItemAdd,
            this.barButtonItemDelete,
            this.barButtonItemUpdate,
            this.barButtonItemPrint,
            this.barStaticItem1,
            this.barButtonItem1,
            this.barButtonItem2,
            this.barButtonItemCommit,
            this.barButtonItemNoCommit,
            this.barSubItem1,
            this.barButtonItemXem,
            this.barButtonItemSearch,
            this.barButtonItemClose,
            this.barCheckItemFilter,
            this.barButtonItem3,
            this.barButtonItem4,
            this.barSubItemCotHienThi,
            this.barButtonItemAddNext,
            this.barButtonItemCopy});
            this.barManager1.MaxItemId = 42;
            //
            // MainBar
            //
            this.MainBar.BarName = "MainBar";
            this.MainBar.DockCol = 0;
            this.MainBar.DockRow = 0;
            this.MainBar.DockStyle = DevExpress.XtraBars.BarDockStyle.Top;
            this.MainBar.FloatLocation = new System.Drawing.Point(39, 133);
            this.MainBar.FloatSize = new System.Drawing.Size(72, 73);
            this.MainBar.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemAddNext),
            new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemAdd),
            new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemCopy),
            new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemXem),
            new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemDelete),
            new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemUpdate),
            new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemPrint, true),
            new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemCommit, true),
            new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemNoCommit),
            new DevExpress.XtraBars.LinkPersistInfo(this.barSubItem1, true),
            new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemSearch, true),
            new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemClose, true),
            new DevExpress.XtraBars.LinkPersistInfo(this.barSubItemCotHienThi)});
            this.MainBar.OptionsBar.AllowQuickCustomization = false;
            this.MainBar.OptionsBar.DrawDragBorder = false;
            this.MainBar.OptionsBar.RotateWhenVertical = false;
            this.MainBar.OptionsBar.UseWholeRow = true;
            this.MainBar.Text = "Custom 1";
            //
            // barButtonItemAddNext
            //
            this.barButtonItemAddNext.Caption = "Thê&m lịch tiếp theo";
            this.barButtonItemAddNext.Hint = "Thêm lịch phát sóng tiếp theo trên vệt giờ đang chọn (không có nghĩa là thêm lịch" +
                " liền kề lịch đang chọn)";
            this.barButtonItemAddNext.Id = 40;
            this.barButtonItemAddNext.Name = "barButtonItemAddNext";
            this.barButtonItemAddNext.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItemAddNext_ItemClick);
            //
            // barButtonItemAdd
            //
            this.barButtonItemAdd.Caption = "&Thêm";
            this.barButtonItemAdd.Id = 0;
            this.barButtonItemAdd.Name = "barButtonItemAdd";
            this.barButtonItemAdd.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
            //
            // barButtonItemCopy
            //
            this.barButtonItemCopy.Caption = "&Sao chép";
            this.barButtonItemCopy.Id = 41;
            this.barButtonItemCopy.Name = "barButtonItemCopy";
            this.barButtonItemCopy.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItemCopy_ItemClick);
            //
            // barButtonItemXem
            //
            this.barButtonItemXem.Caption = "&Xem";
            this.barButtonItemXem.Id = 24;
            this.barButtonItemXem.Name = "barButtonItemXem";
            this.barButtonItemXem.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
            //
            // barButtonItemDelete
            //
            this.barButtonItemDelete.Caption = "&Xóa";
            this.barButtonItemDelete.Id = 1;
            this.barButtonItemDelete.Name = "barButtonItemDelete";
            this.barButtonItemDelete.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
            //
            // barButtonItemUpdate
            //
            this.barButtonItemUpdate.Caption = "&Sửa";
            this.barButtonItemUpdate.Id = 2;
            this.barButtonItemUpdate.Name = "barButtonItemUpdate";
            this.barButtonItemUpdate.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
            //
            // barButtonItemPrint
            //
            this.barButtonItemPrint.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown;
            this.barButtonItemPrint.Caption = "&In";
            this.barButtonItemPrint.DropDownControl = this.popupMenu1;
            this.barButtonItemPrint.Id = 3;
            this.barButtonItemPrint.Name = "barButtonItemPrint";
            this.barButtonItemPrint.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
            //
            // popupMenu1
            //
            this.popupMenu1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem4)});
            this.popupMenu1.Manager = this.barManager1;
            this.popupMenu1.Name = "popupMenu1";
            //
            // barButtonItem4
            //
            this.barButtonItem4.Caption = "Xem trước";
            this.barButtonItem4.Id = 33;
            this.barButtonItem4.Name = "barButtonItem4";
            //
            // barButtonItemCommit
            //
            this.barButtonItemCommit.Caption = "&Duyệt";
            this.barButtonItemCommit.Id = 17;
            this.barButtonItemCommit.Name = "barButtonItemCommit";
            this.barButtonItemCommit.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
            //
            // barButtonItemNoCommit
            //
            this.barButtonItemNoCommit.Caption = "&Không duyệt";
            this.barButtonItemNoCommit.Id = 18;
            this.barButtonItemNoCommit.Name = "barButtonItemNoCommit";
            this.barButtonItemNoCommit.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
            //
            // barSubItem1
            //
            this.barSubItem1.Caption = "Nghiệp vụ";
            this.barSubItem1.Id = 20;
            this.barSubItem1.Name = "barSubItem1";
            this.barSubItem1.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
            //
            // barButtonItemSearch
            //
            this.barButtonItemSearch.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown;
            this.barButtonItemSearch.Caption = "Tìm kiếm";
            this.barButtonItemSearch.DropDownControl = this.popupMenuFilter;
            this.barButtonItemSearch.Id = 27;
            this.barButtonItemSearch.Name = "barButtonItemSearch";
            this.barButtonItemSearch.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
            //
            // popupMenuFilter
            //
            this.popupMenuFilter.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.barCheckItemFilter)});
            this.popupMenuFilter.Manager = this.barManager1;
            this.popupMenuFilter.Name = "popupMenuFilter";
            //
            // barCheckItemFilter
            //
            this.barCheckItemFilter.Caption = "Điều &kiện lọc";
            this.barCheckItemFilter.Checked = true;
            this.barCheckItemFilter.Id = 29;
            this.barCheckItemFilter.Name = "barCheckItemFilter";
            this.barCheckItemFilter.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
            //
            // barButtonItemClose
            //
            this.barButtonItemClose.Caption = "Đóng";
            this.barButtonItemClose.Id = 28;
            this.barButtonItemClose.Name = "barButtonItemClose";
            this.barButtonItemClose.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
            //
            // barSubItemCotHienThi
            //
            this.barSubItemCotHienThi.Caption = "Chọn cột hiển thị";
            this.barSubItemCotHienThi.Id = 36;
            this.barSubItemCotHienThi.Name = "barSubItemCotHienThi";
            //
            // barDockControlTop
            //
            this.barDockControlTop.Dock = System.Windows.Forms.DockStyle.Top;
            this.barDockControlTop.Location = new System.Drawing.Point(0, 0);
            this.barDockControlTop.Size = new System.Drawing.Size(1250, 24);
            //
            // barDockControlBottom
            //
            this.barDockControlBottom.Dock = System.Windows.Forms.DockStyle.Bottom;
            this.barDockControlBottom.Location = new System.Drawing.Point(0, 545);
            this.barDockControlBottom.Size = new System.Drawing.Size(1250, 0);
            //
            // barDockControlLeft
            //
            this.barDockControlLeft.Dock = System.Windows.Forms.DockStyle.Left;
            this.barDockControlLeft.Location = new System.Drawing.Point(0, 24);
            this.barDockControlLeft.Size = new System.Drawing.Size(0, 521);
            //
            // barDockControlRight
            //
            this.barDockControlRight.Dock = System.Windows.Forms.DockStyle.Right;
            this.barDockControlRight.Location = new System.Drawing.Point(1250, 24);
            this.barDockControlRight.Size = new System.Drawing.Size(0, 521);
            //
            // dockManager1
            //
            this.dockManager1.Form = this;
            this.dockManager1.RootPanels.AddRange(new DevExpress.XtraBars.Docking.DockPanel[] {
            this.dockPanel1});
            this.dockManager1.TopZIndexControls.AddRange(new string[] {
            "DevExpress.XtraBars.BarDockControl",
            "DevExpress.XtraBars.StandaloneBarDockControl",
            "System.Windows.Forms.StatusBar",
            "DevExpress.XtraBars.Ribbon.RibbonStatusBar",
            "DevExpress.XtraBars.Ribbon.RibbonControl"});
            //
            // dockPanel1
            //
            this.dockPanel1.Controls.Add(this.dockPanel1_Container);
            this.dockPanel1.Dock = DevExpress.XtraBars.Docking.DockingStyle.Top;
            this.dockPanel1.FloatVertical = true;
            this.dockPanel1.ID = new System.Guid("437240ce-168d-4c05-a0b9-c702ea5e41f7");
            this.dockPanel1.Location = new System.Drawing.Point(0, 24);
            this.dockPanel1.Name = "dockPanel1";
            this.dockPanel1.Options.AllowDockLeft = false;
            this.dockPanel1.Options.AllowDockRight = false;
            this.dockPanel1.OriginalSize = new System.Drawing.Size(200, 111);
            this.dockPanel1.Size = new System.Drawing.Size(1250, 111);
            this.dockPanel1.Text = "Điều kiện tìm kiếm";
            this.dockPanel1.VisibilityChanged += new DevExpress.XtraBars.Docking.VisibilityChangedEventHandler(this.dockPanel1_VisibilityChanged);
            //
            // dockPanel1_Container
            //
            this.dockPanel1_Container.Controls.Add(this.popupControlContainerFilter);
            this.dockPanel1_Container.Location = new System.Drawing.Point(3, 25);
            this.dockPanel1_Container.Name = "dockPanel1_Container";
            this.dockPanel1_Container.Size = new System.Drawing.Size(1244, 83);
            this.dockPanel1_Container.TabIndex = 0;
            //
            // popupControlContainerFilter
            //
            this.popupControlContainerFilter.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
            this.popupControlContainerFilter.Controls.Add(this.ngayNhap);
            this.popupControlContainerFilter.Controls.Add(this.label29);
            this.popupControlContainerFilter.Controls.Add(this.ThongTinThem);
            this.popupControlContainerFilter.Controls.Add(this.GioPhatDen);
            this.popupControlContainerFilter.Controls.Add(this.GioPhatTu);
            this.popupControlContainerFilter.Controls.Add(this.PhongBan);
            this.popupControlContainerFilter.Controls.Add(this.NguoiNhap);
            this.popupControlContainerFilter.Controls.Add(this.Category);
            this.popupControlContainerFilter.Controls.Add(this.TenCT);
            this.popupControlContainerFilter.Controls.Add(this.ThuTrongTuan);
            this.popupControlContainerFilter.Controls.Add(this.KenhPhat);
            this.popupControlContainerFilter.Controls.Add(this.PostMaster);
            this.popupControlContainerFilter.Controls.Add(this.TietMuc);
            this.popupControlContainerFilter.Controls.Add(this.plLabel8);
            this.popupControlContainerFilter.Controls.Add(this.plLabel9);
            this.popupControlContainerFilter.Controls.Add(this.plLabel7);
            this.popupControlContainerFilter.Controls.Add(this.label10);
            this.popupControlContainerFilter.Controls.Add(this.plLabel4);
            this.popupControlContainerFilter.Controls.Add(this.plLabel1);
            this.popupControlContainerFilter.Controls.Add(this.plLabel5);
            this.popupControlContainerFilter.Controls.Add(this.plLabel3);
            this.popupControlContainerFilter.Controls.Add(this.plLabel6);
            this.popupControlContainerFilter.Controls.Add(this.plLabel2);
            this.popupControlContainerFilter.Controls.Add(this.label3);
            this.popupControlContainerFilter.Controls.Add(this.label5);
            this.popupControlContainerFilter.Controls.Add(this.NgayBatDauPhat);
            this.popupControlContainerFilter.Dock = System.Windows.Forms.DockStyle.Fill;
            this.popupControlContainerFilter.Location = new System.Drawing.Point(0, 0);
            this.popupControlContainerFilter.Manager = this.barManager1;
            this.popupControlContainerFilter.Name = "popupControlContainerFilter";
            this.popupControlContainerFilter.Size = new System.Drawing.Size(1244, 83);
            this.popupControlContainerFilter.TabIndex = 5;
            this.popupControlContainerFilter.Visible = false;
            //
            // ngayNhap
            //
            this.ngayNhap.Caption = "Từ ngày 15/06/2012 đến ngày 22/06/2012";
            this.ngayNhap.Default = ProtocolVN.Framework.Win.Trial.SelectionTypes.FromDateToDate;
            this.ngayNhap.FirstFrom = new System.DateTime(2012, 6, 15, 5, 22, 4, 281);
            this.ngayNhap.FirstTo = new System.DateTime(2012, 6, 22, 5, 22, 4, 281);
            this.ngayNhap.FromDate = new System.DateTime(2012, 6, 15, 5, 22, 4, 281);
            this.ngayNhap.Location = new System.Drawing.Point(796, 58);
            this.ngayNhap.Name = "ngayNhap";
            this.ngayNhap.ReturnType = ProtocolVN.Framework.Win.Trial.TimeType.Date;
            this.ngayNhap.SecondFrom = new System.DateTime(2012, 6, 15, 5, 22, 4, 281);
            this.ngayNhap.SecondTo = new System.DateTime(2012, 6, 22, 5, 22, 4, 281);
            this.ngayNhap.SelectedType = ProtocolVN.Framework.Win.Trial.SelectionTypes.FromDateToDate;
            this.ngayNhap.Size = new System.Drawing.Size(285, 21);
            this.ngayNhap.TabIndex = 226;
            this.ngayNhap.ToDate = new System.DateTime(2012, 6, 22, 5, 22, 4, 281);
            this.ngayNhap.Types = ((ProtocolVN.Framework.Win.Trial.SelectionTypes)(((((((((ProtocolVN.Framework.Win.Trial.SelectionTypes.OneDate | ProtocolVN.Framework.Win.Trial.SelectionTypes.OneMonth)
                        | ProtocolVN.Framework.Win.Trial.SelectionTypes.OneQuarter)
                        | ProtocolVN.Framework.Win.Trial.SelectionTypes.OneYear)
                        | ProtocolVN.Framework.Win.Trial.SelectionTypes.SixMonths)
                        | ProtocolVN.Framework.Win.Trial.SelectionTypes.FromDateToDate)
                        | ProtocolVN.Framework.Win.Trial.SelectionTypes.FromMonthToMonth)
                        | ProtocolVN.Framework.Win.Trial.SelectionTypes.FromQuarterToQuarter)
                        | ProtocolVN.Framework.Win.Trial.SelectionTypes.FromYearToYear)));
            //
            // label29
            //
            this.label29.Location = new System.Drawing.Point(746, 63);
            this.label29.Name = "label29";
            this.label29.Size = new System.Drawing.Size(44, 13);
            this.label29.TabIndex = 217;
            this.label29.Text = "Ngày tạo";

            //
            // ThongTinThem
            //
            this.ThongTinThem.CheckOnClick = true;
            this.ThongTinThem.ColumnWidth = 80;
            this.ThongTinThem.Items.AddRange(new DevExpress.XtraEditors.Controls.CheckedListBoxItem[] {
            new DevExpress.XtraEditors.Controls.CheckedListBoxItem("N", "Phát mới", System.Windows.Forms.CheckState.Checked),
            new DevExpress.XtraEditors.Controls.CheckedListBoxItem("Y", "Phát lại", System.Windows.Forms.CheckState.Checked)});
            this.ThongTinThem.Location = new System.Drawing.Point(636, 34);
            this.ThongTinThem.MultiColumn = true;
            this.ThongTinThem.Name = "ThongTinThem";
            this.ThongTinThem.SelectionMode = System.Windows.Forms.SelectionMode.None;
            this.ThongTinThem.Size = new System.Drawing.Size(185, 18);
            this.ThongTinThem.TabIndex = 229;
            //
            // GioPhatDen
            //
            this.GioPhatDen.EditValue = null;
            this.GioPhatDen.Location = new System.Drawing.Point(456, 31);
            this.GioPhatDen.Name = "GioPhatDen";
            this.GioPhatDen.Properties.AllowNullInput = DevExpress.Utils.DefaultBoolean.True;
            this.GioPhatDen.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton()});
            this.GioPhatDen.Properties.Mask.EditMask = "HH:mm";
            this.GioPhatDen.Properties.Mask.UseMaskAsDisplayFormat = true;
            this.GioPhatDen.Size = new System.Drawing.Size(85, 20);
            this.GioPhatDen.TabIndex = 228;
            //
            // GioPhatTu
            //
            this.GioPhatTu.EditValue = null;
            this.GioPhatTu.Location = new System.Drawing.Point(332, 32);
            this.GioPhatTu.Name = "GioPhatTu";
            this.GioPhatTu.Properties.AllowNullInput = DevExpress.Utils.DefaultBoolean.True;
            this.GioPhatTu.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton()});
            this.GioPhatTu.Properties.Mask.EditMask = "HH:mm";
            this.GioPhatTu.Properties.Mask.UseMaskAsDisplayFormat = true;
            this.GioPhatTu.Size = new System.Drawing.Size(85, 20);
            this.GioPhatTu.TabIndex = 228;
            //
            // PhongBan
            //
            this.PhongBan.Location = new System.Drawing.Point(910, 29);
            this.PhongBan.Name = "PhongBan";
            this.PhongBan.Size = new System.Drawing.Size(165, 20);
            this.PhongBan.TabIndex = 10;
            //
            // NguoiNhap
            //
            this.NguoiNhap.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                        | System.Windows.Forms.AnchorStyles.Right)));
            this.NguoiNhap.DataSource = null;
            this.NguoiNhap.DisplayField = null;
            this.NguoiNhap.Location = new System.Drawing.Point(1133, 3);
            this.NguoiNhap.Name = "NguoiNhap";
            this.NguoiNhap.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.NguoiNhap.Size = new System.Drawing.Size(102, 20);
            this.NguoiNhap.TabIndex = 227;
            this.NguoiNhap.ValueField = null;
            //
            // Category
            //
            this.Category._DataSource = null;
            this.Category._GetField = null;
            this.Category.Location = new System.Drawing.Point(48, 56);
            this.Category.Name = "Category";
            this.Category.Properties.CloseUpKey = new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None);
            this.Category.Size = new System.Drawing.Size(210, 20);
            this.Category.TabIndex = 222;
            //
            // TenCT
            //
            this.TenCT._DataSource = null;
            this.TenCT._GetField = null;
            this.TenCT.Location = new System.Drawing.Point(48, 6);
            this.TenCT.Name = "TenCT";
            this.TenCT.Properties.CloseUpKey = new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None);
            this.TenCT.Size = new System.Drawing.Size(214, 20);
            this.TenCT.TabIndex = 222;
            //
            // ThuTrongTuan
            //
            this.ThuTrongTuan.DataSource = null;
            this.ThuTrongTuan.DisplayField = null;
            this.ThuTrongTuan.Location = new System.Drawing.Point(909, 4);
            this.ThuTrongTuan.Name = "ThuTrongTuan";
            this.ThuTrongTuan.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.ThuTrongTuan.Size = new System.Drawing.Size(164, 20);
            this.ThuTrongTuan.TabIndex = 220;
            this.ThuTrongTuan.ValueField = null;
            //
            // KenhPhat
            //
            this.KenhPhat.DataSource = null;
            this.KenhPhat.DisplayField = null;
            this.KenhPhat.Location = new System.Drawing.Point(636, 9);
            this.KenhPhat.Name = "KenhPhat";
            this.KenhPhat.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.KenhPhat.Size = new System.Drawing.Size(185, 20);
            this.KenhPhat.TabIndex = 220;
            this.KenhPhat.ValueField = null;
            //
            // PostMaster
            //
            this.PostMaster.DataSource = null;
            this.PostMaster.DisplayField = null;
            this.PostMaster.Location = new System.Drawing.Point(332, 5);
            this.PostMaster.Name = "PostMaster";
            this.PostMaster.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.PostMaster.Size = new System.Drawing.Size(210, 20);
            this.PostMaster.TabIndex = 220;
            this.PostMaster.ValueField = null;
            //
            // TietMuc
            //
            this.TietMuc.DataSource = null;
            this.TietMuc.DisplayField = null;
            this.TietMuc.Location = new System.Drawing.Point(48, 32);
            this.TietMuc.Name = "TietMuc";
            this.TietMuc.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.TietMuc.Size = new System.Drawing.Size(214, 20);
            this.TietMuc.TabIndex = 216;
            this.TietMuc.ValueField = null;
            //
            // plLabel8
            //
            this.plLabel8.Location = new System.Drawing.Point(547, 36);
            this.plLabel8.Name = "plLabel8";
            this.plLabel8.Size = new System.Drawing.Size(72, 13);
            this.plLabel8.TabIndex = 213;
            this.plLabel8.Text = "Thông tin thêm";

            //
            // plLabel9
            //
            this.plLabel9.Location = new System.Drawing.Point(831, 10);
            this.plLabel9.Name = "plLabel9";
            this.plLabel9.Size = new System.Drawing.Size(73, 13);
            this.plLabel9.TabIndex = 213;
            this.plLabel9.Text = "Thứ trong tuần";

            //
            // plLabel7
            //
            this.plLabel7.Location = new System.Drawing.Point(548, 12);
            this.plLabel7.Name = "plLabel7";
            this.plLabel7.Size = new System.Drawing.Size(49, 13);
            this.plLabel7.TabIndex = 213;
            this.plLabel7.Text = "Kênh phát";

            //
            // label10
            //
            this.label10.Location = new System.Drawing.Point(270, 12);
            this.label10.Name = "label10";
            this.label10.Size = new System.Drawing.Size(58, 13);
            this.label10.TabIndex = 213;
            this.label10.Text = "Post/Master";

            //
            // plLabel4
            //
            this.plLabel4.Location = new System.Drawing.Point(1080, 6);
            this.plLabel4.Name = "plLabel4";
            this.plLabel4.Size = new System.Drawing.Size(47, 13);
            this.plLabel4.TabIndex = 217;
            this.plLabel4.Text = "Người tạo";

            //
            // plLabel1
            //
            this.plLabel1.Location = new System.Drawing.Point(831, 32);
            this.plLabel1.Name = "plLabel1";
            this.plLabel1.Size = new System.Drawing.Size(51, 13);
            this.plLabel1.TabIndex = 217;
            this.plLabel1.Text = "Phòng ban";

            //
            // plLabel5
            //
            this.plLabel5.Location = new System.Drawing.Point(423, 36);
            this.plLabel5.Name = "plLabel5";
            this.plLabel5.Size = new System.Drawing.Size(20, 13);
            this.plLabel5.TabIndex = 217;
            this.plLabel5.Text = "Đến";

            //
            // plLabel3
            //
            this.plLabel3.Location = new System.Drawing.Point(271, 35);
            this.plLabel3.Name = "plLabel3";
            this.plLabel3.Size = new System.Drawing.Size(54, 13);
            this.plLabel3.TabIndex = 217;
            this.plLabel3.Text = "Giờ phát từ";

            //
            // plLabel6
            //
            this.plLabel6.Location = new System.Drawing.Point(270, 61);
            this.plLabel6.Name = "plLabel6";
            this.plLabel6.Size = new System.Drawing.Size(90, 13);
            this.plLabel6.TabIndex = 217;
            this.plLabel6.Text = "Ngày bắt đầu phát";

            //
            // plLabel2
            //
            this.plLabel2.Location = new System.Drawing.Point(3, 61);
            this.plLabel2.Name = "plLabel2";
            this.plLabel2.Size = new System.Drawing.Size(45, 13);
            this.plLabel2.TabIndex = 218;
            this.plLabel2.Text = "Category";

            //
            // label3
            //
            this.label3.Location = new System.Drawing.Point(3, 12);
            this.label3.Name = "label3";
            this.label3.Size = new System.Drawing.Size(34, 13);
            this.label3.TabIndex = 218;
            this.label3.Text = "Tên CT";

            //
            // label5
            //
            this.label5.Location = new System.Drawing.Point(3, 36);
            this.label5.Name = "label5";
            this.label5.Size = new System.Drawing.Size(40, 13);
            this.label5.TabIndex = 219;
            this.label5.Text = "Tiết mục";

            //
            // NgayBatDauPhat
            //
            this.NgayBatDauPhat.Caption = "Từ ngày 15/06/2012 đến ngày 22/06/2012";
            this.NgayBatDauPhat.Default = ProtocolVN.Framework.Win.Trial.SelectionTypes.FromDateToDate;
            this.NgayBatDauPhat.FirstFrom = new System.DateTime(2012, 6, 15, 5, 22, 4, 742);
            this.NgayBatDauPhat.FirstTo = new System.DateTime(2012, 6, 22, 5, 22, 4, 742);
            this.NgayBatDauPhat.FromDate = new System.DateTime(2012, 6, 15, 5, 22, 4, 742);
            this.NgayBatDauPhat.Location = new System.Drawing.Point(366, 58);
            this.NgayBatDauPhat.Name = "NgayBatDauPhat";
            this.NgayBatDauPhat.ReturnType = ProtocolVN.Framework.Win.Trial.TimeType.Date;
            this.NgayBatDauPhat.SecondFrom = new System.DateTime(2012, 6, 15, 5, 22, 4, 742);
            this.NgayBatDauPhat.SecondTo = new System.DateTime(2012, 6, 22, 5, 22, 4, 742);
            this.NgayBatDauPhat.SelectedType = ProtocolVN.Framework.Win.Trial.SelectionTypes.FromDateToDate;
            this.NgayBatDauPhat.Size = new System.Drawing.Size(285, 21);
            this.NgayBatDauPhat.TabIndex = 226;
            this.NgayBatDauPhat.ToDate = new System.DateTime(2012, 6, 22, 5, 22, 4, 742);
            this.NgayBatDauPhat.Types = ((ProtocolVN.Framework.Win.Trial.SelectionTypes)(((((((((ProtocolVN.Framework.Win.Trial.SelectionTypes.OneDate | ProtocolVN.Framework.Win.Trial.SelectionTypes.OneMonth)
                        | ProtocolVN.Framework.Win.Trial.SelectionTypes.OneQuarter)
                        | ProtocolVN.Framework.Win.Trial.SelectionTypes.OneYear)
                        | ProtocolVN.Framework.Win.Trial.SelectionTypes.SixMonths)
                        | ProtocolVN.Framework.Win.Trial.SelectionTypes.FromDateToDate)
                        | ProtocolVN.Framework.Win.Trial.SelectionTypes.FromMonthToMonth)
                        | ProtocolVN.Framework.Win.Trial.SelectionTypes.FromQuarterToQuarter)
                        | ProtocolVN.Framework.Win.Trial.SelectionTypes.FromYearToYear)));
            //
            // barStaticItem1
            //
            this.barStaticItem1.AutoSize = DevExpress.XtraBars.BarStaticItemSize.None;
            this.barStaticItem1.Border = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
            this.barStaticItem1.Id = 13;
            this.barStaticItem1.Name = "barStaticItem1";
            this.barStaticItem1.TextAlignment = System.Drawing.StringAlignment.Near;
            this.barStaticItem1.Width = 100;
            //
            // barButtonItem1
            //
            this.barButtonItem1.Caption = "barButtonItem1";
            this.barButtonItem1.Id = 14;
            this.barButtonItem1.Name = "barButtonItem1";
            //
            // barButtonItem2
            //
            this.barButtonItem2.Caption = "barButtonItem2";
            this.barButtonItem2.Id = 15;
            this.barButtonItem2.Name = "barButtonItem2";
            //
            // barButtonItem3
            //
            this.barButtonItem3.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown;
            this.barButtonItem3.Caption = "In";
            this.barButtonItem3.Id = 30;
            this.barButtonItem3.Name = "barButtonItem3";
            //
            // splitContainerControl1
            //
            this.splitContainerControl1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.splitContainerControl1.FixedPanel = DevExpress.XtraEditors.SplitFixedPanel.Panel2;
            this.splitContainerControl1.Location = new System.Drawing.Point(0, 135);
            this.splitContainerControl1.Name = "splitContainerControl1";
            this.splitContainerControl1.Panel1.Controls.Add(this.groupControlPM);
            this.splitContainerControl1.Panel1.Text = "splitContainerControl1_Panel1";
            this.splitContainerControl1.Panel2.CaptionLocation = DevExpress.Utils.Locations.Left;
            this.splitContainerControl1.Panel2.Controls.Add(this.xtraTabControlDetail);
            this.splitContainerControl1.Panel2.ShowCaption = true;
            this.splitContainerControl1.Panel2.Text = "splitContainerControl1_Panel2";
            this.splitContainerControl1.Size = new System.Drawing.Size(1250, 410);
            this.splitContainerControl1.SplitterPosition = 381;
            this.splitContainerControl1.TabIndex = 4;
            this.splitContainerControl1.Text = "splitContainerControl1";
            //
            // groupControlPM
            //
            this.groupControlPM.Appearance.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(192)))));
            this.groupControlPM.Appearance.Options.UseBorderColor = true;
            this.groupControlPM.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
            this.groupControlPM.Controls.Add(this.gridControlMaster);
            this.groupControlPM.Dock = System.Windows.Forms.DockStyle.Fill;
            this.groupControlPM.Location = new System.Drawing.Point(0, 0);
            this.groupControlPM.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Flat;
            this.groupControlPM.LookAndFeel.UseDefaultLookAndFeel = false;
            this.groupControlPM.Name = "groupControlPM";
            this.groupControlPM.ShowCaption = false;
            this.groupControlPM.Size = new System.Drawing.Size(863, 410);
            this.groupControlPM.TabIndex = 236;
            this.groupControlPM.Text = "groupControl7";
            //
            // gridControlMaster
            //
            this.gridControlMaster.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("gridControlMaster.BackgroundImage")));
            this.gridControlMaster.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
            this.gridControlMaster.Dock = System.Windows.Forms.DockStyle.Fill;
            this.gridControlMaster.Location = new System.Drawing.Point(2, 2);
            this.gridControlMaster.MainView = this.gridViewMaster;
            this.gridControlMaster.Name = "gridControlMaster";
            this.gridControlMaster.Size = new System.Drawing.Size(859, 406);
            this.gridControlMaster.TabIndex = 12;
            this.gridControlMaster.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
            this.gridViewMaster});
            //
            // gridViewMaster
            //
            this.gridViewMaster.Appearance.HeaderPanel.Options.UseTextOptions = true;
            this.gridViewMaster.Appearance.HeaderPanel.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridViewMaster.Bands.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.GridBand[] {
            this.gridBandPostMaster,
            this.gridBandChuongTrinh});
            this.gridViewMaster.Columns.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn[] {
            this.Col_LPS_TenChuongTrinh,
            this.Col_LPS_TenGoc,
            this.Col_LPS_Category,
            this.Col_LPS_TietMuc,
            this.Col_LPS_NuocSX,
            this.Col_LPS_NamSx,
            this.Col_LPS_PostMaster,
            this.Col_LPS_TongTap,
            this.Col_LPS_TongSoRun,
            this.Col_LPS_SoLanDaPhat,
            this.Col_LPS_SoRunCon,
            this.Col_LPS_ThoiLuongChung,
            this.Col_LPS_NgayBatDau,
            this.Col_LPS_GioPhat,
            this.Col_LPS_KenhPhat,
            this.Col_LPS_SoTapNgay,
            this.Col_LPS_ThuTrongTuan,
            this.Col_LPS_SoNgayPhat,
            this.Col_LPS_NgayCuoi,
            this.Col_LPS_NgayTao,
            this.Col_LPS_NguoiTao,
            this.Col_LPS_ThongTinThem});
            this.gridViewMaster.GridControl = this.gridControlMaster;
            this.gridViewMaster.IndicatorWidth = 40;
            this.gridViewMaster.Name = "gridViewMaster";
            this.gridViewMaster.OptionsLayout.Columns.AddNewColumns = false;
            this.gridViewMaster.OptionsNavigation.AutoFocusNewRow = true;
            this.gridViewMaster.OptionsNavigation.EnterMoveNextColumn = true;
            this.gridViewMaster.OptionsPrint.UsePrintStyles = true;
            this.gridViewMaster.OptionsView.ColumnAutoWidth = false;
            this.gridViewMaster.OptionsView.EnableAppearanceEvenRow = true;
            this.gridViewMaster.OptionsView.EnableAppearanceOddRow = true;
            this.gridViewMaster.OptionsView.NewItemRowPosition = DevExpress.XtraGrid.Views.Grid.NewItemRowPosition.Bottom;
            this.gridViewMaster.OptionsView.ShowGroupPanel = false;
            this.gridViewMaster.OptionsView.ShowViewCaption = true;
            this.gridViewMaster.ViewCaption = "Danh sách lịch phát sóng";
            //
            // gridBandPostMaster
            //
            this.gridBandPostMaster.AppearanceHeader.Options.UseTextOptions = true;
            this.gridBandPostMaster.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridBandPostMaster.Caption = "Thông tin phát sóng";
            this.gridBandPostMaster.Columns.Add(this.Col_LPS_NgayBatDau);
            this.gridBandPostMaster.Columns.Add(this.Col_LPS_GioPhat);
            this.gridBandPostMaster.Columns.Add(this.Col_LPS_KenhPhat);
            this.gridBandPostMaster.Columns.Add(this.Col_LPS_SoTapNgay);
            this.gridBandPostMaster.Columns.Add(this.Col_LPS_ThuTrongTuan);
            this.gridBandPostMaster.Columns.Add(this.Col_LPS_NgayCuoi);
            this.gridBandPostMaster.Columns.Add(this.Col_LPS_SoNgayPhat);
            this.gridBandPostMaster.Columns.Add(this.Col_LPS_ThongTinThem);
            this.gridBandPostMaster.Columns.Add(this.Col_LPS_NgayTao);
            this.gridBandPostMaster.Name = "gridBandPostMaster";
            this.gridBandPostMaster.Width = 708;
            //
            // Col_LPS_NgayBatDau
            //
            this.Col_LPS_NgayBatDau.Caption = "Ngày bắt đầu phát";
            this.Col_LPS_NgayBatDau.Name = "Col_LPS_NgayBatDau";
            this.Col_LPS_NgayBatDau.Visible = true;
            this.Col_LPS_NgayBatDau.Width = 102;
            //
            // Col_LPS_GioPhat
            //
            this.Col_LPS_GioPhat.Caption = "Giờ phát";
            this.Col_LPS_GioPhat.Name = "Col_LPS_GioPhat";
            this.Col_LPS_GioPhat.Visible = true;
            this.Col_LPS_GioPhat.Width = 52;
            //
            // Col_LPS_KenhPhat
            //
            this.Col_LPS_KenhPhat.Caption = "Kênh phát";
            this.Col_LPS_KenhPhat.Name = "Col_LPS_KenhPhat";
            this.Col_LPS_KenhPhat.Visible = true;
            this.Col_LPS_KenhPhat.Width = 61;
            //
            // Col_LPS_SoTapNgay
            //
            this.Col_LPS_SoTapNgay.Caption = "Số tập/ngày";
            this.Col_LPS_SoTapNgay.Name = "Col_LPS_SoTapNgay";
            this.Col_LPS_SoTapNgay.Visible = true;
            this.Col_LPS_SoTapNgay.Width = 71;
            //
            // Col_LPS_ThuTrongTuan
            //
            this.Col_LPS_ThuTrongTuan.Caption = "Thứ trong tuần";
            this.Col_LPS_ThuTrongTuan.Name = "Col_LPS_ThuTrongTuan";
            this.Col_LPS_ThuTrongTuan.Visible = true;
            this.Col_LPS_ThuTrongTuan.Width = 85;
            //
            // Col_LPS_NgayCuoi
            //
            this.Col_LPS_NgayCuoi.Caption = "Ngày phát tập cuối";
            this.Col_LPS_NgayCuoi.Name = "Col_LPS_NgayCuoi";
            this.Col_LPS_NgayCuoi.Visible = true;
            this.Col_LPS_NgayCuoi.Width = 103;
            //
            // Col_LPS_SoNgayPhat
            //
            this.Col_LPS_SoNgayPhat.Caption = "Số ngày phát";
            this.Col_LPS_SoNgayPhat.Name = "Col_LPS_SoNgayPhat";
            this.Col_LPS_SoNgayPhat.Visible = true;
            this.Col_LPS_SoNgayPhat.Width = 76;
            //
            // Col_LPS_ThongTinThem
            //
            this.Col_LPS_ThongTinThem.Caption = "Thông tin thêm";
            this.Col_LPS_ThongTinThem.Name = "Col_LPS_ThongTinThem";
            this.Col_LPS_ThongTinThem.Visible = true;
            this.Col_LPS_ThongTinThem.Width = 84;
            //
            // Col_LPS_NgayTao
            //
            this.Col_LPS_NgayTao.Caption = "Ngày tạo lịch";
            this.Col_LPS_NgayTao.Name = "Col_LPS_NgayTao";
            this.Col_LPS_NgayTao.Visible = true;
            this.Col_LPS_NgayTao.Width = 74;
            //
            // gridBandChuongTrinh
            //
            this.gridBandChuongTrinh.AppearanceHeader.Options.UseTextOptions = true;
            this.gridBandChuongTrinh.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridBandChuongTrinh.Caption = "Thông tin chương trình";
            this.gridBandChuongTrinh.Columns.Add(this.Col_LPS_NguoiTao);
            this.gridBandChuongTrinh.Columns.Add(this.Col_LPS_TenChuongTrinh);
            this.gridBandChuongTrinh.Columns.Add(this.Col_LPS_TenGoc);
            this.gridBandChuongTrinh.Columns.Add(this.Col_LPS_Category);
            this.gridBandChuongTrinh.Columns.Add(this.Col_LPS_TietMuc);
            this.gridBandChuongTrinh.Columns.Add(this.Col_LPS_NuocSX);
            this.gridBandChuongTrinh.Columns.Add(this.Col_LPS_NamSx);
            this.gridBandChuongTrinh.Columns.Add(this.Col_LPS_PostMaster);
            this.gridBandChuongTrinh.Columns.Add(this.Col_LPS_TongTap);
            this.gridBandChuongTrinh.Columns.Add(this.Col_LPS_TongSoRun);
            this.gridBandChuongTrinh.Columns.Add(this.Col_LPS_SoLanDaPhat);
            this.gridBandChuongTrinh.Columns.Add(this.Col_LPS_SoRunCon);
            this.gridBandChuongTrinh.Columns.Add(this.Col_LPS_ThoiLuongChung);
            this.gridBandChuongTrinh.Name = "gridBandChuongTrinh";
            this.gridBandChuongTrinh.Width = 960;
            //
            // Col_LPS_NguoiTao
            //
            this.Col_LPS_NguoiTao.Caption = "Người tạo lịch";
            this.Col_LPS_NguoiTao.Name = "Col_LPS_NguoiTao";
            this.Col_LPS_NguoiTao.Visible = true;
            this.Col_LPS_NguoiTao.Width = 77;
            //
            // Col_LPS_TenChuongTrinh
            //
            this.Col_LPS_TenChuongTrinh.Caption = "Tên chương trình";
            this.Col_LPS_TenChuongTrinh.Name = "Col_LPS_TenChuongTrinh";
            this.Col_LPS_TenChuongTrinh.Visible = true;
            this.Col_LPS_TenChuongTrinh.Width = 94;
            //
            // Col_LPS_TenGoc
            //
            this.Col_LPS_TenGoc.Caption = "Tên gốc";
            this.Col_LPS_TenGoc.Name = "Col_LPS_TenGoc";
            this.Col_LPS_TenGoc.Visible = true;
            this.Col_LPS_TenGoc.Width = 50;
            //
            // Col_LPS_Category
            //
            this.Col_LPS_Category.Caption = "Category";
            this.Col_LPS_Category.Name = "Col_LPS_Category";
            this.Col_LPS_Category.Visible = true;
            this.Col_LPS_Category.Width = 57;
            //
            // Col_LPS_TietMuc
            //
            this.Col_LPS_TietMuc.Caption = " Tiết mục";
            this.Col_LPS_TietMuc.Name = "Col_LPS_TietMuc";
            this.Col_LPS_TietMuc.Visible = true;
            this.Col_LPS_TietMuc.Width = 55;
            //
            // Col_LPS_NuocSX
            //
            this.Col_LPS_NuocSX.Caption = "Nước SX";
            this.Col_LPS_NuocSX.Name = "Col_LPS_NuocSX";
            this.Col_LPS_NuocSX.Visible = true;
            this.Col_LPS_NuocSX.Width = 52;
            //
            // Col_LPS_NamSx
            //
            this.Col_LPS_NamSx.Caption = "Năm SX";
            this.Col_LPS_NamSx.Name = "Col_LPS_NamSx";
            this.Col_LPS_NamSx.Visible = true;
            this.Col_LPS_NamSx.Width = 48;
            //
            // Col_LPS_PostMaster
            //
            this.Col_LPS_PostMaster.Caption = "Post/Master";
            this.Col_LPS_PostMaster.Name = "Col_LPS_PostMaster";
            this.Col_LPS_PostMaster.OptionsColumn.AllowShowHide = false;
            this.Col_LPS_PostMaster.Visible = true;
            this.Col_LPS_PostMaster.Width = 70;
            //
            // Col_LPS_TongTap
            //
            this.Col_LPS_TongTap.Caption = "Tổng tập phát";
            this.Col_LPS_TongTap.Name = "Col_LPS_TongTap";
            this.Col_LPS_TongTap.Visible = true;
            this.Col_LPS_TongTap.Width = 80;
            //
            // Col_LPS_TongSoRun
            //
            this.Col_LPS_TongSoRun.Caption = "Tổng số RUN";
            this.Col_LPS_TongSoRun.Name = "Col_LPS_TongSoRun";
            this.Col_LPS_TongSoRun.Visible = true;
            this.Col_LPS_TongSoRun.Width = 74;
            //
            // Col_LPS_SoLanDaPhat
            //
            this.Col_LPS_SoLanDaPhat.Caption = "Số lần đã phát (đã RUN)";
            this.Col_LPS_SoLanDaPhat.Name = "Col_LPS_SoLanDaPhat";
            this.Col_LPS_SoLanDaPhat.Visible = true;
            this.Col_LPS_SoLanDaPhat.Width = 128;
            //
            // Col_LPS_SoRunCon
            //
            this.Col_LPS_SoRunCon.Caption = "Số RUN còn lại";
            this.Col_LPS_SoRunCon.Name = "Col_LPS_SoRunCon";
            this.Col_LPS_SoRunCon.Visible = true;
            this.Col_LPS_SoRunCon.Width = 81;
            //
            // Col_LPS_ThoiLuongChung
            //
            this.Col_LPS_ThoiLuongChung.Caption = "Thời lượng chung";
            this.Col_LPS_ThoiLuongChung.Name = "Col_LPS_ThoiLuongChung";
            this.Col_LPS_ThoiLuongChung.Visible = true;
            this.Col_LPS_ThoiLuongChung.Width = 94;
            //
            // xtraTabControlDetail
            //
            this.xtraTabControlDetail.Appearance.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(192)))));
            this.xtraTabControlDetail.Appearance.Options.UseBorderColor = true;
            this.xtraTabControlDetail.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
            this.xtraTabControlDetail.Dock = System.Windows.Forms.DockStyle.Fill;
            this.xtraTabControlDetail.Location = new System.Drawing.Point(0, 0);
            this.xtraTabControlDetail.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Flat;
            this.xtraTabControlDetail.LookAndFeel.UseDefaultLookAndFeel = false;
            this.xtraTabControlDetail.Name = "xtraTabControlDetail";
            this.xtraTabControlDetail.SelectedTabPage = this.xtraTabPageDetail;
            this.xtraTabControlDetail.ShowTabHeader = DevExpress.Utils.DefaultBoolean.False;
            this.xtraTabControlDetail.Size = new System.Drawing.Size(381, 410);
            this.xtraTabControlDetail.TabIndex = 10;
            this.xtraTabControlDetail.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
            this.xtraTabPageDetail});
            //
            // xtraTabPageDetail
            //
            this.xtraTabPageDetail.Controls.Add(this.gridControlDetail);
            this.xtraTabPageDetail.Name = "xtraTabPageDetail";
            this.xtraTabPageDetail.Size = new System.Drawing.Size(379, 408);
            this.xtraTabPageDetail.Text = "Danh sách biên mục";
            //
            // gridControlDetail
            //
            this.gridControlDetail.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("gridControlDetail.BackgroundImage")));
            this.gridControlDetail.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
            this.gridControlDetail.Dock = System.Windows.Forms.DockStyle.Fill;
            this.gridControlDetail.Location = new System.Drawing.Point(0, 0);
            this.gridControlDetail.MainView = this.gridViewDetail;
            this.gridControlDetail.Name = "gridControlDetail";
            this.gridControlDetail.Size = new System.Drawing.Size(379, 408);
            this.gridControlDetail.TabIndex = 3;
            this.gridControlDetail.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
            this.gridViewDetail});
            //
            // gridViewDetail
            //
            this.gridViewDetail.Appearance.HeaderPanel.Options.UseTextOptions = true;
            this.gridViewDetail.Appearance.HeaderPanel.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridViewDetail.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
            this.ColTapSo,
            this.ColThoiLuong,
            this.ColGioPhat,
            this.ColNgayPhat,
            this.ColMaBang,
            this.ColTenTap});
            this.gridViewDetail.GridControl = this.gridControlDetail;
            this.gridViewDetail.GroupCount = 1;
            this.gridViewDetail.IndicatorWidth = 40;
            this.gridViewDetail.Name = "gridViewDetail";
            this.gridViewDetail.OptionsBehavior.AutoExpandAllGroups = true;
            this.gridViewDetail.OptionsLayout.Columns.AddNewColumns = false;
            this.gridViewDetail.OptionsNavigation.AutoFocusNewRow = true;
            this.gridViewDetail.OptionsNavigation.EnterMoveNextColumn = true;
            this.gridViewDetail.OptionsPrint.UsePrintStyles = true;
            this.gridViewDetail.OptionsView.ColumnAutoWidth = false;
            this.gridViewDetail.OptionsView.EnableAppearanceEvenRow = true;
            this.gridViewDetail.OptionsView.EnableAppearanceOddRow = true;
            this.gridViewDetail.OptionsView.NewItemRowPosition = DevExpress.XtraGrid.Views.Grid.NewItemRowPosition.Bottom;
            this.gridViewDetail.OptionsView.ShowGroupedColumns = true;
            this.gridViewDetail.OptionsView.ShowGroupPanel = false;
            this.gridViewDetail.OptionsView.ShowViewCaption = true;
            this.gridViewDetail.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
            new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.ColNgayPhat, DevExpress.Data.ColumnSortOrder.Ascending)});
            this.gridViewDetail.ViewCaption = "Chi tiết lịch phát sóng";
            //
            // ColTapSo
            //
            this.ColTapSo.Caption = "Tập số";
            this.ColTapSo.Name = "ColTapSo";
            this.ColTapSo.OptionsColumn.AllowEdit = false;
            this.ColTapSo.OptionsColumn.AllowMove = false;
            this.ColTapSo.OptionsColumn.AllowShowHide = false;
            this.ColTapSo.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
            this.ColTapSo.Visible = true;
            this.ColTapSo.VisibleIndex = 1;
            this.ColTapSo.Width = 44;
            //
            // ColThoiLuong
            //
            this.ColThoiLuong.Caption = "Thời lượng";
            this.ColThoiLuong.Name = "ColThoiLuong";
            this.ColThoiLuong.Visible = true;
            this.ColThoiLuong.VisibleIndex = 4;
            this.ColThoiLuong.Width = 62;
            //
            // ColGioPhat
            //
            this.ColGioPhat.Caption = "Giờ phát sóng";
            this.ColGioPhat.Name = "ColGioPhat";
            this.ColGioPhat.OptionsColumn.AllowShowHide = false;
            this.ColGioPhat.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
            this.ColGioPhat.Visible = true;
            this.ColGioPhat.VisibleIndex = 5;
            this.ColGioPhat.Width = 78;
            //
            // ColNgayPhat
            //
            this.ColNgayPhat.Caption = "Ngày phát";
            this.ColNgayPhat.GroupFormat.FormatString = "dddd, dd/MM/yyyy";
            this.ColNgayPhat.GroupFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
            this.ColNgayPhat.Name = "ColNgayPhat";
            this.ColNgayPhat.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
            this.ColNgayPhat.Visible = true;
            this.ColNgayPhat.VisibleIndex = 0;
            //
            // ColMaBang
            //
            this.ColMaBang.Caption = "Mã băng";
            this.ColMaBang.Name = "ColMaBang";
            this.ColMaBang.OptionsColumn.AllowEdit = false;
            this.ColMaBang.OptionsColumn.AllowMove = false;
            this.ColMaBang.OptionsColumn.AllowShowHide = false;
            this.ColMaBang.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
            this.ColMaBang.Visible = true;
            this.ColMaBang.VisibleIndex = 3;
            this.ColMaBang.Width = 53;
            //
            // ColTenTap
            //
            this.ColTenTap.Caption = "Tên tập";
            this.ColTenTap.Name = "ColTenTap";
            this.ColTenTap.Visible = true;
            this.ColTenTap.VisibleIndex = 2;
            this.ColTenTap.Width = 49;
            //
            // frmQuanLyLichPhatSongNewQL
            //
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(1250, 545);
            this.Controls.Add(this.splitContainerControl1);
            this.Controls.Add(this.dockPanel1);
            this.Controls.Add(this.barDockControlLeft);
            this.Controls.Add(this.barDockControlRight);
            this.Controls.Add(this.barDockControlBottom);
            this.Controls.Add(this.barDockControlTop);
            this.Name = "FrmQuanLyLichPhatSongNewQL";
            this.ShowInTaskbar = false;
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
            this.Text = "Quản lý lịch phát sóng";
            ((System.ComponentModel.ISupportInitialize)(this.barManager1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.popupMenu1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.popupMenuFilter)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.dockManager1)).EndInit();
            this.dockPanel1.ResumeLayout(false);
            this.dockPanel1_Container.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.popupControlContainerFilter)).EndInit();
            this.popupControlContainerFilter.ResumeLayout(false);
            this.popupControlContainerFilter.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.ThongTinThem)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.GioPhatDen.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.GioPhatTu.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.NguoiNhap.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.Category.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.TenCT.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.ThuTrongTuan.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.KenhPhat.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.PostMaster.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.TietMuc.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl1)).EndInit();
            this.splitContainerControl1.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.groupControlPM)).EndInit();
            this.groupControlPM.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.gridControlMaster)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridViewMaster)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.xtraTabControlDetail)).EndInit();
            this.xtraTabControlDetail.ResumeLayout(false);
            this.xtraTabPageDetail.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.gridControlDetail)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridViewDetail)).EndInit();
            this.ResumeLayout(false);
        }
コード例 #18
0
ファイル: Form2Print.cs プロジェクト: EdgarEDT/myitoppsp
        private void Form1Print_Load(object sender, EventArgs e)
        {
            if (!isselect)
            {
                barButtonItem4.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;

            }
            if (!print)
            {
                barButtonItem1.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
            }

            gridControl1.DataSource = GridDataTable;
            this.bandedGridView1.GroupPanelText = this.Text;
            this.bandedGridView1.OptionsView.ColumnAutoWidth = false;

            //int numi = 0;

            //DevExpress.XtraGrid.Views.BandedGrid.GridBand[] gridBandDate = new DevExpress.XtraGrid.Views.BandedGrid.GridBand[listCount * 2];
            //DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn[] gridColumn = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn[listCount * 2];
            foreach (DataColumn dc in GridDataTable.Columns)
            {
                if (dc.ColumnName.IndexOf("��") > 0)
                {
                    DevExpress.XtraGrid.Views.BandedGrid.GridBand gbi = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
                    gbi.Caption = dc.ColumnName.Replace("��", "");
                    gbi.Name = dc.ColumnName;
                    gbi.Width = 75;
                    gbi.AppearanceHeader.Options.UseTextOptions = true;
                    gbi.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
                    gridBand7.Children.Add(gbi);

                    DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn gridColumn = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
                    gridColumn.Caption = dc.ColumnName;
                    gridColumn.FieldName = dc.ColumnName;
                    gridColumn.Name = "Column"+dc.ColumnName;
                    gridColumn.Visible = true;
                    gridColumn.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
                    //gridColumn.DisplayFormat.FormatString = "n2";
                    //gridColumn.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
                    bandedGridView1.Columns.Add(gridColumn);
                    gbi.Columns.Add(gridColumn);

                }

                if (dc.ColumnName.IndexOf("��") > 0)
                {
                    DevExpress.XtraGrid.Views.BandedGrid.GridBand gbi = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
                    gbi.Caption = dc.ColumnName.Replace("��", "");
                    gbi.Name = dc.ColumnName;
                    gbi.Width = 75;
                    gbi.AppearanceHeader.Options.UseTextOptions = true;
                    gbi.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
                    gridBand8.Children.Add(gbi);

                    DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn gridColumn = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
                    gridColumn.Caption = dc.ColumnName;
                    gridColumn.FieldName = dc.ColumnName;
                    gridColumn.Name = "Column" + dc.ColumnName;
                    gridColumn.Visible = true;
                    gridColumn.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False; ;
                    //gridColumn.DisplayFormat.FormatString = "n2";
                    //gridColumn.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
                    bandedGridView1.Columns.Add(gridColumn);
                    gbi.Columns.Add(gridColumn);

                }

                if (dc.Caption=="�ܹ�ģ")//.IndexOf("��ע") > 0)
                {
                    DevExpress.XtraGrid.Views.BandedGrid.GridBand gbi = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
                    gbi.Caption = dc.Caption;
                    gbi.Name = dc.ColumnName;
                    gbi.AppearanceHeader.Options.UseTextOptions = true;
                    gbi.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
                    gridBand7.Children.Add(gbi);

                    DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn gridColumn = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
                    gridColumn.Caption = dc.Caption;
                    gridColumn.FieldName = dc.ColumnName;
                    gridColumn.Name = "Column" + dc.ColumnName;
                    gridColumn.Visible = true;
                    gridColumn.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False; ;
                    //gridColumn.DisplayFormat.FormatString = "n2";
                    //gridColumn.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
                    bandedGridView1.Columns.Add(gridColumn);
                    gbi.Columns.Add(gridColumn);

                }

                if (dc.Caption == "��Ͷ��")//.IndexOf("��ע") > 0)
                {
                    DevExpress.XtraGrid.Views.BandedGrid.GridBand gbi = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
                    gbi.Caption = dc.Caption;
                    gbi.Name = dc.ColumnName;
                    gbi.Width = 75;
                    gbi.AppearanceHeader.Options.UseTextOptions = true;
                    gbi.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
                    gridBand8.Children.Add(gbi);

                    DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn gridColumn = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
                    gridColumn.Caption = dc.Caption;
                    gridColumn.FieldName = dc.ColumnName;
                    gridColumn.Name = "Column" + dc.ColumnName;
                    gridColumn.Visible = true;
                    gridColumn.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False; ;
                    //gridColumn.DisplayFormat.FormatString = "n2";
                    //gridColumn.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
                    bandedGridView1.Columns.Add(gridColumn);
                    gbi.Columns.Add(gridColumn);

                }

                if (dc.Caption == "��ע")//.IndexOf("��ע") > 0)
                {
                    DevExpress.XtraGrid.Views.BandedGrid.GridBand gbi = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
                    gbi.Caption = dc.Caption;
                    gbi.Name = dc.ColumnName;
                    gbi.Width = 75;
                    gbi.AppearanceHeader.Options.UseTextOptions = true;
                    gbi.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
                    gridBand8.Children.Add(gbi);

                    DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn gridColumn = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
                    gridColumn.Caption = dc.Caption;
                    gridColumn.FieldName = dc.ColumnName;
                    gridColumn.Name = "Column" + dc.ColumnName;
                    gridColumn.ColumnEdit = this.repositoryItemMemoEdit1;
                    gridColumn.Visible = true;
                    gridColumn.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False; ;
                    //gridColumn.DisplayFormat.FormatString = "n2";
                    //gridColumn.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
                    bandedGridView1.Columns.Add(gridColumn);
                    gbi.Columns.Add(gridColumn);

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

		}
コード例 #20
0
        //private bool bBuild = false;
        //public bool BBuild
        //{
        //    set { bBuild = value; }
        //}
        private void Form1Print_Load(object sender, EventArgs e)
        {
            bandedGridView1.Columns[0].FieldName = "BianInfo";
            bandedGridView1.Columns[0].Caption   = "序号";
            bandedGridView1.Columns[0].Width     = 80;
            bandedGridView1.Columns[1].FieldName = "Title";

            DevExpress.XtraGrid.Views.BandedGrid.GridBand         bandd       = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
            DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn gridColumn2 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            gridColumn2.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            gridColumn2.Caption   = "开工年限";
            gridColumn2.FieldName = "BuildYear";
            gridColumn2.Name      = "BuildYear";
            gridColumn2.Visible   = true;
            gridColumn2.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
            gridColumn2.Width        = 100;
            gridColumn2.VisibleIndex = 2;
            bandd.Columns.Add(gridColumn2);

            DevExpress.XtraGrid.Views.BandedGrid.GridBand         bande       = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
            DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn gridColumn3 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            gridColumn3.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            gridColumn3.Caption   = "竣工年限";
            gridColumn3.FieldName = "BuildEd";
            gridColumn3.Name      = "BuildEd";
            gridColumn3.Visible   = true;
            gridColumn3.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
            gridColumn3.Width        = 100;
            gridColumn3.VisibleIndex = 3;
            bande.Columns.Add(gridColumn3);

            DevExpress.XtraGrid.Views.BandedGrid.GridBand band = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
            band.Caption = "建设规模";
            band.Name    = "gridBandG";
            band.AppearanceHeader.Options.UseTextOptions = true;
            band.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;

            DevExpress.XtraGrid.Views.BandedGrid.GridBand bande14 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();

            DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn gridColumn14 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            gridColumn14.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            gridColumn14.Caption   = "建设性质";
            gridColumn14.FieldName = "Col3";
            gridColumn14.Name      = "Col3";
            gridColumn14.Visible   = true;
            gridColumn14.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
            gridColumn14.Width        = 100;
            gridColumn14.VisibleIndex = 1;
            bande14.Columns.Add(gridColumn14);



            DevExpress.XtraGrid.Views.BandedGrid.GridBand         bande15      = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
            DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn gridColumn15 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            gridColumn15.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            gridColumn15.Caption   = "项目状态";
            gridColumn15.FieldName = "Flag";
            gridColumn15.Name      = "Flag";
            gridColumn15.Visible   = true;
            gridColumn15.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
            gridColumn15.Width        = 90;
            gridColumn15.VisibleIndex = 2;
            bande15.Columns.Add(gridColumn15);

            DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn gridColumn = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            gridColumn.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            gridColumn.Caption   = "长度";
            gridColumn.FieldName = "Length";
            gridColumn.Name      = "Length";
            gridColumn.Visible   = true;
            gridColumn.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
            gridColumn.Width        = 90;
            gridColumn.VisibleIndex = 4;

            DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn gridColumn1 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            gridColumn1.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            gridColumn1.Caption   = "容量";
            gridColumn1.FieldName = "Volumn";
            gridColumn1.Name      = "Volumn";
            gridColumn1.Visible   = true;
            gridColumn1.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
            gridColumn1.Width        = 90;
            gridColumn1.VisibleIndex = 4;
            DevExpress.XtraGrid.Views.BandedGrid.GridBand         band4       = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
            DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn gridColumn4 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            gridColumn4.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            gridColumn4.Caption   = "总投资";
            gridColumn4.FieldName = "AllVolumn";
            gridColumn4.Name      = "AllVolumn";
            gridColumn4.DisplayFormat.FormatString = "n2";
            gridColumn4.DisplayFormat.FormatType   = DevExpress.Utils.FormatType.Numeric;
            gridColumn4.Visible = true;
            gridColumn4.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
            gridColumn4.Width        = 90;
            gridColumn4.VisibleIndex = 5;
            band4.Columns.Add(gridColumn4);
            band4.Columns["AllVolumn"].DisplayFormat.FormatString = "n2";


            DevExpress.XtraGrid.Views.BandedGrid.GridBand         band8       = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
            DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn gridColumn8 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            gridColumn8.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            gridColumn8.Caption   = "负责人";
            gridColumn8.FieldName = "Col2";
            gridColumn8.Name      = "Col2";
            gridColumn8.Visible   = true;
            gridColumn8.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
            gridColumn8.Width        = 90;
            gridColumn8.VisibleIndex = 8;
            band8.Columns.Add(gridColumn8);

            DevExpress.XtraGrid.Views.BandedGrid.GridBand         band9       = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
            DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn gridColumn9 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            gridColumn9.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            gridColumn9.Caption   = "线路/变电站";
            gridColumn9.FieldName = "Col4";
            gridColumn9.Name      = "Col4";
            gridColumn9.Visible   = true;
            gridColumn9.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
            gridColumn9.Width        = 130;
            gridColumn9.VisibleIndex = 9;
            band9.Columns.Add(gridColumn9);

            DevExpress.XtraGrid.Views.BandedGrid.GridBand         band10       = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
            DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn gridColumn10 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            gridColumn10.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            gridColumn10.Caption   = "城区";
            gridColumn10.FieldName = "AreaName";
            gridColumn10.Name      = "AreaName";
            gridColumn10.Visible   = true;
            gridColumn10.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
            gridColumn10.Width        = 90;
            gridColumn10.VisibleIndex = 10;
            band10.Columns.Add(gridColumn10);

            DevExpress.XtraGrid.Views.BandedGrid.GridBand         band11       = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
            DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn gridColumn11 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            gridColumn11.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            gridColumn11.Caption   = "电压";
            gridColumn11.FieldName = "FromID";
            gridColumn11.Name      = "FromID";
            gridColumn11.Visible   = true;
            gridColumn11.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
            gridColumn11.Width        = 90;
            gridColumn11.VisibleIndex = 11;
            band11.Columns.Add(gridColumn11);



            DevExpress.XtraGrid.Views.BandedGrid.GridBand         band7       = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
            DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn gridColumn7 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            gridColumn7.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            gridColumn7.Caption   = "备注";
            gridColumn7.FieldName = "Col1";
            gridColumn7.Name      = "Col1";
            gridColumn7.Visible   = true;
            gridColumn7.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
            gridColumn7.Width        = 150;
            gridColumn7.VisibleIndex = 20;
            band7.Columns.Add(gridColumn7);

            band.Columns.Add(gridColumn);
            band.Columns.Add(gridColumn1);

            this.bandedGridView1.Bands.Add(bandd);
            this.bandedGridView1.Bands.Add(bande);
            this.bandedGridView1.Bands.Add(bande14);
            this.bandedGridView1.Bands.Add(band);
            this.bandedGridView1.Bands.Add(band8);
            this.bandedGridView1.Bands.Add(band9);
            this.bandedGridView1.Bands.Add(band10);
            this.bandedGridView1.Bands.Add(band11);
            this.bandedGridView1.Bands.Add(band4);
            this.bandedGridView1.Bands.Add(bande15);

            this.bandedGridView1.Bands.Add(band7);


            this.bandedGridView1.Columns.Add(gridColumn);
            this.bandedGridView1.Columns.Add(gridColumn1);
            this.bandedGridView1.Columns.Add(gridColumn2);
            this.bandedGridView1.Columns.Add(gridColumn3);
            this.bandedGridView1.Columns.Add(gridColumn4);
            //this.bandedGridView1.Columns.Add(gridColumn5);
            this.bandedGridView1.Columns.Add(gridColumn11);
            this.bandedGridView1.Columns.Add(gridColumn14);
            this.bandedGridView1.Columns.Add(gridColumn15);
            this.bandedGridView1.Columns.Add(gridColumn8);
            this.bandedGridView1.Columns.Add(gridColumn9);
            this.bandedGridView1.Columns.Add(gridColumn10);

            this.bandedGridView1.Columns.Add(gridColumn7);


            gridControl1.DataSource = gridDataTable;



            this.bandedGridView1.GroupPanelText = this.Text;
        }
コード例 #21
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmCongNoChungTu));
     DevExpress.XtraGrid.StyleFormatCondition styleFormatCondition1 = new DevExpress.XtraGrid.StyleFormatCondition();
     this.img = new DevExpress.Utils.ImageCollection(this.components);
     this.bm = new DevExpress.XtraBars.BarManager(this.components);
     this.bar2 = new DevExpress.XtraBars.Bar();
     this.bbiXem = new DevExpress.XtraBars.BarButtonItem();
     this.bbiLapPhieuThu = new DevExpress.XtraBars.BarButtonItem();
     this.bbiLapPhieuChi = new DevExpress.XtraBars.BarButtonItem();
     this.bbiXoa = new DevExpress.XtraBars.BarButtonItem();
     this.bbiSua = new DevExpress.XtraBars.BarButtonItem();
     this.bbiXuatExcel = new DevExpress.XtraBars.BarButtonItem();
     this.bbiDong = new DevExpress.XtraBars.BarButtonItem();
     this.barDockControlTop = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlBottom = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlLeft = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlRight = new DevExpress.XtraBars.BarDockControl();
     this.layoutControl1 = new DevExpress.XtraLayout.LayoutControl();
     this.cbTatCa = new System.Windows.Forms.CheckBox();
     this.layoutControl2 = new DevExpress.XtraLayout.LayoutControl();
     this.layoutControlGroup2 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.dtDen = new DevExpress.XtraEditors.DateEdit();
     this.dtTu = new DevExpress.XtraEditors.DateEdit();
     this.cbChonNgay = new DevExpress.XtraEditors.ComboBoxEdit();
     this.gcList = new DevExpress.XtraGrid.GridControl();
     this.congNoChungTuBindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.dsCongNoChungTu = new Do_An_Quan_Ly_Kho.CongNoChungTu.DataSet.dsCongNoChungTu();
     this.gbList = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridView();
     this.gridBand1 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.colMa_Khach_Hang = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.colTen_Khach_Hang = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.colMa_Chung_Tu = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.colMa_Hoa_Don = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.colNgay = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.colThanh_Tien = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.rptMayTinh = new DevExpress.XtraEditors.Repository.RepositoryItemCalcEdit();
     this.colThanh_Toan = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridBand2 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.colTang_Cong_No = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.colGiam_Cong_No = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.colCong_No = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridBand3 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.colThu_Tang_Cong_No = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.colThu_Giam_Cong_No = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.colTong_Thu = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridBand4 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.colChi_Giam_Cong_No = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.colChi_Tang_Cong_No = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.colTong_Chi = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridBand5 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.colCong_No_Con_Lai = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.colDia_Chi = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.colHinh_Thuc_Cong_No = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.rptHinhThucCongNo = new DevExpress.XtraEditors.Repository.RepositoryItemGridLookUpEdit();
     this.hinhThucCongNoBindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.dsHinhThuc = new Do_An_Quan_Ly_Kho.DataSet.dsHinhThuc();
     this.gridView1 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colLoai_Chung_Tu = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.rptLoaiChungTu = new DevExpress.XtraEditors.Repository.RepositoryItemGridLookUpEdit();
     this.loaiChungTuBindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.repositoryItemGridLookUpEdit1View = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colHo_Ten = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.colLy_Do = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.colGhi_Chu = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.colCong_No_Thu_Chi = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.colNhan_Vien = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.layoutControlGroup1 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlItem1 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem2 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem3 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem4 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem5 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem6 = new DevExpress.XtraLayout.LayoutControlItem();
     this.cong_No_Chung_TuTableAdapter = new Do_An_Quan_Ly_Kho.CongNoChungTu.DataSet.dsCongNoChungTuTableAdapters.Cong_No_Chung_TuTableAdapter();
     ((System.ComponentModel.ISupportInitialize)(this.img)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.bm)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl1)).BeginInit();
     this.layoutControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtDen.Properties.CalendarTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtDen.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtTu.Properties.CalendarTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtTu.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbChonNgay.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gcList)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.congNoChungTuBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dsCongNoChungTu)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gbList)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.rptMayTinh)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.rptHinhThucCongNo)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.hinhThucCongNoBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dsHinhThuc)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.rptLoaiChungTu)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.loaiChungTuBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemGridLookUpEdit1View)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem6)).BeginInit();
     this.SuspendLayout();
     //
     // img
     //
     this.img.ImageStream = ((DevExpress.Utils.ImageCollectionStreamer)(resources.GetObject("img.ImageStream")));
     this.img.Images.SetKeyName(0, "abort.png");
     this.img.Images.SetKeyName(1, "about.png");
     this.img.Images.SetKeyName(2, "accept.png");
     this.img.Images.SetKeyName(3, "add.png");
     this.img.Images.SetKeyName(4, "application.png");
     this.img.Images.SetKeyName(5, "apply.png");
     this.img.Images.SetKeyName(6, "attention.png");
     this.img.Images.SetKeyName(7, "back.png");
     this.img.Images.SetKeyName(8, "cancel.png");
     this.img.Images.SetKeyName(9, "circulation.png");
     this.img.Images.SetKeyName(10, "close.png");
     this.img.Images.SetKeyName(11, "create.png");
     this.img.Images.SetKeyName(12, "cut.png");
     this.img.Images.SetKeyName(13, "danger.png");
     this.img.Images.SetKeyName(14, "delete.png");
     this.img.Images.SetKeyName(15, "down.png");
     this.img.Images.SetKeyName(16, "erase.png");
     this.img.Images.SetKeyName(17, "error.png");
     this.img.Images.SetKeyName(18, "forward.png");
     this.img.Images.SetKeyName(19, "help.png");
     this.img.Images.SetKeyName(20, "info.png");
     this.img.Images.SetKeyName(21, "information.png");
     this.img.Images.SetKeyName(22, "logout.png");
     this.img.Images.SetKeyName(23, "minus.png");
     this.img.Images.SetKeyName(24, "move.png");
     this.img.Images.SetKeyName(25, "next.png");
     this.img.Images.SetKeyName(26, "no entry.png");
     this.img.Images.SetKeyName(27, "no.png");
     this.img.Images.SetKeyName(28, "OK.png");
     this.img.Images.SetKeyName(29, "options.png");
     this.img.Images.SetKeyName(30, "plus.png");
     this.img.Images.SetKeyName(31, "previous.png");
     this.img.Images.SetKeyName(32, "problem.png");
     this.img.Images.SetKeyName(33, "question.png");
     this.img.Images.SetKeyName(34, "redo.png");
     this.img.Images.SetKeyName(35, "refresh.png");
     this.img.Images.SetKeyName(36, "remove.png");
     this.img.Images.SetKeyName(37, "renew.png");
     this.img.Images.SetKeyName(38, "repeat.png");
     this.img.Images.SetKeyName(39, "run.png");
     this.img.Images.SetKeyName(40, "save.png");
     this.img.Images.SetKeyName(41, "search.png");
     this.img.Images.SetKeyName(42, "settings.png");
     this.img.Images.SetKeyName(43, "stop.png");
     this.img.Images.SetKeyName(44, "switch.png");
     this.img.Images.SetKeyName(45, "sync.png");
     this.img.Images.SetKeyName(46, "system.png");
     this.img.Images.SetKeyName(47, "turn off.png");
     this.img.Images.SetKeyName(48, "undo.png");
     this.img.Images.SetKeyName(49, "up.png");
     this.img.Images.SetKeyName(50, "update.png");
     this.img.Images.SetKeyName(51, "view.png");
     this.img.Images.SetKeyName(52, "warning.png");
     this.img.Images.SetKeyName(53, "yes.png");
     this.img.Images.SetKeyName(54, "document-excel-icon.png");
     this.img.Images.SetKeyName(55, "Excel-icon (2) - Copy - Copy.png");
     this.img.Images.SetKeyName(56, "Excel-icon (2) - Copy.png");
     this.img.Images.SetKeyName(57, "Excel-icon.png");
     this.img.Images.SetKeyName(58, "Receipt-2-icon.png");
     this.img.Images.SetKeyName(59, "Receipt-4-icon.png");
     this.img.Images.SetKeyName(60, "Receipt-icon.png");
     //
     // bm
     //
     this.bm.Bars.AddRange(new DevExpress.XtraBars.Bar[] {
     this.bar2});
     this.bm.DockControls.Add(this.barDockControlTop);
     this.bm.DockControls.Add(this.barDockControlBottom);
     this.bm.DockControls.Add(this.barDockControlLeft);
     this.bm.DockControls.Add(this.barDockControlRight);
     this.bm.Form = this;
     this.bm.Images = this.img;
     this.bm.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
     this.bbiXem,
     this.bbiSua,
     this.bbiXoa,
     this.bbiDong,
     this.bbiXuatExcel,
     this.bbiLapPhieuThu,
     this.bbiLapPhieuChi});
     this.bm.LargeImages = this.img;
     this.bm.MainMenu = this.bar2;
     this.bm.MaxItemId = 15;
     //
     // bar2
     //
     this.bar2.BarName = "Main menu";
     this.bar2.DockCol = 0;
     this.bar2.DockRow = 0;
     this.bar2.DockStyle = DevExpress.XtraBars.BarDockStyle.Top;
     this.bar2.FloatLocation = new System.Drawing.Point(49, 160);
     this.bar2.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.bbiXem, true),
     new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.PaintStyle, this.bbiLapPhieuThu, DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph),
     new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.PaintStyle, this.bbiLapPhieuChi, DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph),
     new DevExpress.XtraBars.LinkPersistInfo(this.bbiXoa),
     new DevExpress.XtraBars.LinkPersistInfo(this.bbiSua),
     new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.PaintStyle, this.bbiXuatExcel, DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph),
     new DevExpress.XtraBars.LinkPersistInfo(this.bbiDong)});
     this.bar2.OptionsBar.AllowDelete = true;
     this.bar2.OptionsBar.DrawSizeGrip = true;
     this.bar2.Text = "Main menu";
     //
     // bbiXem
     //
     this.bbiXem.Caption = "Xem";
     this.bbiXem.Id = 0;
     this.bbiXem.ImageIndex = 35;
     this.bbiXem.Name = "bbiXem";
     this.bbiXem.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.bbiXem.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbiXem_ItemClick);
     //
     // bbiLapPhieuThu
     //
     this.bbiLapPhieuThu.Caption = "Lập Phiếu Thu";
     this.bbiLapPhieuThu.Id = 13;
     this.bbiLapPhieuThu.ImageIndex = 58;
     this.bbiLapPhieuThu.Name = "bbiLapPhieuThu";
     this.bbiLapPhieuThu.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbiLapPhieuThu_ItemClick);
     //
     // bbiLapPhieuChi
     //
     this.bbiLapPhieuChi.Caption = "Lập Phiếu Chi";
     this.bbiLapPhieuChi.Id = 14;
     this.bbiLapPhieuChi.ImageIndex = 58;
     this.bbiLapPhieuChi.Name = "bbiLapPhieuChi";
     this.bbiLapPhieuChi.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbiLapPhieuChi_ItemClick);
     //
     // bbiXoa
     //
     this.bbiXoa.Caption = "Xóa";
     this.bbiXoa.Id = 2;
     this.bbiXoa.ImageIndex = 16;
     this.bbiXoa.Name = "bbiXoa";
     this.bbiXoa.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.bbiXoa.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
     //
     // bbiSua
     //
     this.bbiSua.Caption = "Sửa";
     this.bbiSua.Id = 1;
     this.bbiSua.ImageIndex = 29;
     this.bbiSua.Name = "bbiSua";
     this.bbiSua.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.bbiSua.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
     //
     // bbiXuatExcel
     //
     this.bbiXuatExcel.Caption = "Xuất Excel";
     this.bbiXuatExcel.Id = 12;
     this.bbiXuatExcel.ImageIndex = 55;
     this.bbiXuatExcel.Name = "bbiXuatExcel";
     this.bbiXuatExcel.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbiXuatExcel_ItemClick);
     //
     // bbiDong
     //
     this.bbiDong.Caption = "Đóng";
     this.bbiDong.Id = 6;
     this.bbiDong.ImageIndex = 10;
     this.bbiDong.Name = "bbiDong";
     this.bbiDong.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // barDockControlTop
     //
     this.barDockControlTop.CausesValidation = false;
     this.barDockControlTop.Dock = System.Windows.Forms.DockStyle.Top;
     this.barDockControlTop.Location = new System.Drawing.Point(0, 0);
     this.barDockControlTop.Size = new System.Drawing.Size(1102, 24);
     //
     // barDockControlBottom
     //
     this.barDockControlBottom.CausesValidation = false;
     this.barDockControlBottom.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.barDockControlBottom.Location = new System.Drawing.Point(0, 416);
     this.barDockControlBottom.Size = new System.Drawing.Size(1102, 0);
     //
     // barDockControlLeft
     //
     this.barDockControlLeft.CausesValidation = false;
     this.barDockControlLeft.Dock = System.Windows.Forms.DockStyle.Left;
     this.barDockControlLeft.Location = new System.Drawing.Point(0, 24);
     this.barDockControlLeft.Size = new System.Drawing.Size(0, 392);
     //
     // barDockControlRight
     //
     this.barDockControlRight.CausesValidation = false;
     this.barDockControlRight.Dock = System.Windows.Forms.DockStyle.Right;
     this.barDockControlRight.Location = new System.Drawing.Point(1102, 24);
     this.barDockControlRight.Size = new System.Drawing.Size(0, 392);
     //
     // layoutControl1
     //
     this.layoutControl1.Controls.Add(this.cbTatCa);
     this.layoutControl1.Controls.Add(this.layoutControl2);
     this.layoutControl1.Controls.Add(this.dtDen);
     this.layoutControl1.Controls.Add(this.dtTu);
     this.layoutControl1.Controls.Add(this.cbChonNgay);
     this.layoutControl1.Controls.Add(this.gcList);
     this.layoutControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.layoutControl1.Location = new System.Drawing.Point(0, 24);
     this.layoutControl1.Name = "layoutControl1";
     this.layoutControl1.Root = this.layoutControlGroup1;
     this.layoutControl1.Size = new System.Drawing.Size(1102, 392);
     this.layoutControl1.TabIndex = 4;
     this.layoutControl1.Text = "layoutControl1";
     //
     // cbTatCa
     //
     this.cbTatCa.Location = new System.Drawing.Point(2, 370);
     this.cbTatCa.Name = "cbTatCa";
     this.cbTatCa.Size = new System.Drawing.Size(1098, 20);
     this.cbTatCa.TabIndex = 9;
     this.cbTatCa.Text = "Xem Tất Cả";
     this.cbTatCa.UseVisualStyleBackColor = true;
     this.cbTatCa.CheckedChanged += new System.EventHandler(this.cbTatCa_CheckedChanged);
     //
     // layoutControl2
     //
     this.layoutControl2.Location = new System.Drawing.Point(452, 2);
     this.layoutControl2.Name = "layoutControl2";
     this.layoutControl2.Root = this.layoutControlGroup2;
     this.layoutControl2.Size = new System.Drawing.Size(648, 20);
     this.layoutControl2.TabIndex = 8;
     this.layoutControl2.Text = "layoutControl2";
     //
     // layoutControlGroup2
     //
     this.layoutControlGroup2.CustomizationFormText = "layoutControlGroup2";
     this.layoutControlGroup2.EnableIndentsWithoutBorders = DevExpress.Utils.DefaultBoolean.True;
     this.layoutControlGroup2.GroupBordersVisible = false;
     this.layoutControlGroup2.Location = new System.Drawing.Point(0, 0);
     this.layoutControlGroup2.Name = "layoutControlGroup2";
     this.layoutControlGroup2.Size = new System.Drawing.Size(648, 20);
     this.layoutControlGroup2.Text = "layoutControlGroup2";
     this.layoutControlGroup2.TextVisible = false;
     //
     // dtDen
     //
     this.dtDen.EditValue = null;
     this.dtDen.Location = new System.Drawing.Point(325, 2);
     this.dtDen.MenuManager = this.bm;
     this.dtDen.Name = "dtDen";
     this.dtDen.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.dtDen.Properties.CalendarTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.dtDen.Size = new System.Drawing.Size(123, 20);
     this.dtDen.StyleController = this.layoutControl1;
     this.dtDen.TabIndex = 7;
     //
     // dtTu
     //
     this.dtTu.EditValue = null;
     this.dtTu.Location = new System.Drawing.Point(175, 2);
     this.dtTu.MenuManager = this.bm;
     this.dtTu.Name = "dtTu";
     this.dtTu.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.dtTu.Properties.CalendarTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.dtTu.Size = new System.Drawing.Size(123, 20);
     this.dtTu.StyleController = this.layoutControl1;
     this.dtTu.TabIndex = 6;
     //
     // cbChonNgay
     //
     this.cbChonNgay.Location = new System.Drawing.Point(57, 2);
     this.cbChonNgay.MenuManager = this.bm;
     this.cbChonNgay.Name = "cbChonNgay";
     this.cbChonNgay.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cbChonNgay.Properties.Items.AddRange(new object[] {
     "Tháng 1",
     "Tháng 2",
     "Tháng 3",
     "Tháng 4",
     "Tháng 5",
     "Tháng 6",
     "Tháng 7",
     "Tháng 8",
     "Tháng 9",
     "Tháng 10",
     "Tháng 11",
     "Tháng 12"});
     this.cbChonNgay.Size = new System.Drawing.Size(91, 20);
     this.cbChonNgay.StyleController = this.layoutControl1;
     this.cbChonNgay.TabIndex = 5;
     this.cbChonNgay.SelectedIndexChanged += new System.EventHandler(this.cbChonNgay_SelectedIndexChanged);
     //
     // gcList
     //
     this.gcList.Cursor = System.Windows.Forms.Cursors.Default;
     this.gcList.DataSource = this.congNoChungTuBindingSource;
     this.gcList.Location = new System.Drawing.Point(2, 26);
     this.gcList.MainView = this.gbList;
     this.gcList.MenuManager = this.bm;
     this.gcList.Name = "gcList";
     this.gcList.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.rptMayTinh,
     this.rptLoaiChungTu,
     this.rptHinhThucCongNo});
     this.gcList.Size = new System.Drawing.Size(1098, 340);
     this.gcList.TabIndex = 4;
     this.gcList.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gbList});
     //
     // congNoChungTuBindingSource
     //
     this.congNoChungTuBindingSource.DataMember = "Cong_No_Chung_Tu";
     this.congNoChungTuBindingSource.DataSource = this.dsCongNoChungTu;
     //
     // dsCongNoChungTu
     //
     this.dsCongNoChungTu.DataSetName = "dsCongNoChungTu";
     this.dsCongNoChungTu.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
     //
     // gbList
     //
     this.gbList.Appearance.GroupRow.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.gbList.Appearance.GroupRow.ForeColor = System.Drawing.Color.Red;
     this.gbList.Appearance.GroupRow.Options.UseFont = true;
     this.gbList.Appearance.GroupRow.Options.UseForeColor = true;
     this.gbList.Bands.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.GridBand[] {
     this.gridBand1,
     this.gridBand2,
     this.gridBand3,
     this.gridBand4,
     this.gridBand5});
     this.gbList.Columns.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn[] {
     this.colMa_Khach_Hang,
     this.colMa_Chung_Tu,
     this.colNgay,
     this.colHinh_Thuc_Cong_No,
     this.colLoai_Chung_Tu,
     this.colThanh_Tien,
     this.colThanh_Toan,
     this.colCong_No,
     this.colGhi_Chu,
     this.colTang_Cong_No,
     this.colGiam_Cong_No,
     this.colThu_Giam_Cong_No,
     this.colThu_Tang_Cong_No,
     this.colChi_Giam_Cong_No,
     this.colChi_Tang_Cong_No,
     this.colTong_Chi,
     this.colTong_Thu,
     this.colCong_No_Con_Lai,
     this.colCong_No_Thu_Chi,
     this.colTen_Khach_Hang,
     this.colNhan_Vien,
     this.colLy_Do,
     this.colDia_Chi,
     this.colHo_Ten,
     this.colMa_Hoa_Don});
     styleFormatCondition1.Appearance.ForeColor = System.Drawing.Color.Red;
     styleFormatCondition1.Appearance.Options.UseForeColor = true;
     styleFormatCondition1.ApplyToRow = true;
     styleFormatCondition1.Condition = DevExpress.XtraGrid.FormatConditionEnum.Expression;
     styleFormatCondition1.Expression = "Iif([Cong_No_Con_Lai] < 0, True , False)";
     this.gbList.FormatConditions.AddRange(new DevExpress.XtraGrid.StyleFormatCondition[] {
     styleFormatCondition1});
     this.gbList.GridControl = this.gcList;
     this.gbList.GroupPanelText = "Kéo cột và thả vào đây để nhóm dữ liệu";
     this.gbList.GroupSummary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] {
     new DevExpress.XtraGrid.GridGroupSummaryItem(DevExpress.Data.SummaryItemType.Sum, "Giam_Cong_No", this.colGiam_Cong_No, "{0:##,##0.###}"),
     new DevExpress.XtraGrid.GridGroupSummaryItem(DevExpress.Data.SummaryItemType.Sum, "Tang_Cong_No", this.colTang_Cong_No, "{0:##,##0.###}"),
     new DevExpress.XtraGrid.GridGroupSummaryItem(DevExpress.Data.SummaryItemType.Sum, "Cong_No_Con_Lai", this.colCong_No_Con_Lai, "{0:##,##0.###}"),
     new DevExpress.XtraGrid.GridGroupSummaryItem(DevExpress.Data.SummaryItemType.Sum, "Thanh_Toan", this.colThanh_Tien, "{0:##,##0.###}"),
     new DevExpress.XtraGrid.GridGroupSummaryItem(DevExpress.Data.SummaryItemType.Sum, "Thanh_Toan", this.colThanh_Toan, "{0:##,##0.###}"),
     new DevExpress.XtraGrid.GridGroupSummaryItem(DevExpress.Data.SummaryItemType.Sum, "Thu_Tang_Cong_No", this.colThu_Tang_Cong_No, "{0:##,##0.###}"),
     new DevExpress.XtraGrid.GridGroupSummaryItem(DevExpress.Data.SummaryItemType.Sum, "Thu_Giam_Cong_No", this.colThu_Giam_Cong_No, "{0:##,##0.###}"),
     new DevExpress.XtraGrid.GridGroupSummaryItem(DevExpress.Data.SummaryItemType.Sum, "Chi_Giam_Cong_No", this.colChi_Giam_Cong_No, "{0:##,##0.###}"),
     new DevExpress.XtraGrid.GridGroupSummaryItem(DevExpress.Data.SummaryItemType.Sum, "Chi_Tang_Cong_No", this.colChi_Tang_Cong_No, "{0:##,##0.###}"),
     new DevExpress.XtraGrid.GridGroupSummaryItem(DevExpress.Data.SummaryItemType.Sum, "Tong_Thu", this.colTong_Thu, "{0:##,##0.###}"),
     new DevExpress.XtraGrid.GridGroupSummaryItem(DevExpress.Data.SummaryItemType.Sum, "Tong_Chi", this.colTong_Chi, "{0:##,##0.###}"),
     new DevExpress.XtraGrid.GridGroupSummaryItem(DevExpress.Data.SummaryItemType.Sum, "Cong_No", this.colCong_No, "{0:##,##0.###}")});
     this.gbList.IndicatorWidth = 40;
     this.gbList.Name = "gbList";
     this.gbList.OptionsBehavior.AutoExpandAllGroups = true;
     this.gbList.OptionsView.ColumnAutoWidth = false;
     this.gbList.OptionsView.ShowAutoFilterRow = true;
     this.gbList.OptionsView.ShowFooter = true;
     this.gbList.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.colNgay, DevExpress.Data.ColumnSortOrder.Descending)});
     this.gbList.CustomDrawRowIndicator += new DevExpress.XtraGrid.Views.Grid.RowIndicatorCustomDrawEventHandler(this.gbList_CustomDrawRowIndicator);
     //
     // gridBand1
     //
     this.gridBand1.Columns.Add(this.colMa_Khach_Hang);
     this.gridBand1.Columns.Add(this.colTen_Khach_Hang);
     this.gridBand1.Columns.Add(this.colMa_Chung_Tu);
     this.gridBand1.Columns.Add(this.colMa_Hoa_Don);
     this.gridBand1.Columns.Add(this.colNgay);
     this.gridBand1.Columns.Add(this.colThanh_Tien);
     this.gridBand1.Columns.Add(this.colThanh_Toan);
     this.gridBand1.Name = "gridBand1";
     this.gridBand1.VisibleIndex = 0;
     this.gridBand1.Width = 597;
     //
     // colMa_Khach_Hang
     //
     this.colMa_Khach_Hang.AppearanceHeader.Options.UseTextOptions = true;
     this.colMa_Khach_Hang.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colMa_Khach_Hang.Caption = "Mã Khách Hàng";
     this.colMa_Khach_Hang.FieldName = "Ma_Khach_Hang";
     this.colMa_Khach_Hang.Name = "colMa_Khach_Hang";
     this.colMa_Khach_Hang.OptionsColumn.ReadOnly = true;
     this.colMa_Khach_Hang.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colMa_Khach_Hang.Visible = true;
     this.colMa_Khach_Hang.Width = 100;
     //
     // colTen_Khach_Hang
     //
     this.colTen_Khach_Hang.AppearanceHeader.Options.UseTextOptions = true;
     this.colTen_Khach_Hang.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colTen_Khach_Hang.Caption = "Tên Khách Hàng";
     this.colTen_Khach_Hang.FieldName = "Ten_Khach_Hang";
     this.colTen_Khach_Hang.Name = "colTen_Khach_Hang";
     this.colTen_Khach_Hang.OptionsColumn.ReadOnly = true;
     this.colTen_Khach_Hang.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colTen_Khach_Hang.Visible = true;
     this.colTen_Khach_Hang.Width = 98;
     //
     // colMa_Chung_Tu
     //
     this.colMa_Chung_Tu.AppearanceHeader.Options.UseTextOptions = true;
     this.colMa_Chung_Tu.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colMa_Chung_Tu.Caption = "Mã Chứng Từ";
     this.colMa_Chung_Tu.FieldName = "Ma_Chung_Tu";
     this.colMa_Chung_Tu.Name = "colMa_Chung_Tu";
     this.colMa_Chung_Tu.OptionsColumn.ReadOnly = true;
     this.colMa_Chung_Tu.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colMa_Chung_Tu.Visible = true;
     this.colMa_Chung_Tu.Width = 89;
     //
     // colMa_Hoa_Don
     //
     this.colMa_Hoa_Don.AppearanceHeader.Options.UseTextOptions = true;
     this.colMa_Hoa_Don.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colMa_Hoa_Don.Caption = "Mã Hóa Đơn";
     this.colMa_Hoa_Don.FieldName = "Ma_Hoa_Don";
     this.colMa_Hoa_Don.Name = "colMa_Hoa_Don";
     this.colMa_Hoa_Don.OptionsColumn.ReadOnly = true;
     this.colMa_Hoa_Don.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colMa_Hoa_Don.Visible = true;
     this.colMa_Hoa_Don.Width = 79;
     //
     // colNgay
     //
     this.colNgay.AppearanceHeader.Options.UseTextOptions = true;
     this.colNgay.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colNgay.Caption = "Ngày";
     this.colNgay.FieldName = "Ngay";
     this.colNgay.Name = "colNgay";
     this.colNgay.OptionsColumn.ReadOnly = true;
     this.colNgay.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colNgay.Visible = true;
     //
     // colThanh_Tien
     //
     this.colThanh_Tien.AppearanceHeader.Options.UseTextOptions = true;
     this.colThanh_Tien.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colThanh_Tien.Caption = "Thành Tiền";
     this.colThanh_Tien.ColumnEdit = this.rptMayTinh;
     this.colThanh_Tien.FieldName = "Thanh_Tien";
     this.colThanh_Tien.Name = "colThanh_Tien";
     this.colThanh_Tien.OptionsColumn.ReadOnly = true;
     this.colThanh_Tien.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colThanh_Tien.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] {
     new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Sum, "Thanh_Tien", "{0:##,##0.###}")});
     this.colThanh_Tien.Visible = true;
     this.colThanh_Tien.Width = 76;
     //
     // rptMayTinh
     //
     this.rptMayTinh.AutoHeight = false;
     this.rptMayTinh.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.rptMayTinh.DisplayFormat.FormatString = "{0:##,##0.###}";
     this.rptMayTinh.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Custom;
     this.rptMayTinh.EditFormat.FormatString = "{0:##,##0.###}";
     this.rptMayTinh.EditFormat.FormatType = DevExpress.Utils.FormatType.Custom;
     this.rptMayTinh.Name = "rptMayTinh";
     //
     // colThanh_Toan
     //
     this.colThanh_Toan.AppearanceHeader.Options.UseTextOptions = true;
     this.colThanh_Toan.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colThanh_Toan.Caption = "Thanh Toán";
     this.colThanh_Toan.ColumnEdit = this.rptMayTinh;
     this.colThanh_Toan.FieldName = "Thanh_Toan";
     this.colThanh_Toan.Name = "colThanh_Toan";
     this.colThanh_Toan.OptionsColumn.ReadOnly = true;
     this.colThanh_Toan.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colThanh_Toan.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] {
     new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Sum, "Thanh_Toan", "{0:##,##0.###}")});
     this.colThanh_Toan.Visible = true;
     this.colThanh_Toan.Width = 80;
     //
     // gridBand2
     //
     this.gridBand2.AppearanceHeader.Options.UseTextOptions = true;
     this.gridBand2.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridBand2.Caption = "Công Nợ";
     this.gridBand2.Columns.Add(this.colTang_Cong_No);
     this.gridBand2.Columns.Add(this.colGiam_Cong_No);
     this.gridBand2.Columns.Add(this.colCong_No);
     this.gridBand2.Name = "gridBand2";
     this.gridBand2.VisibleIndex = 1;
     this.gridBand2.Width = 262;
     //
     // colTang_Cong_No
     //
     this.colTang_Cong_No.AppearanceHeader.Options.UseTextOptions = true;
     this.colTang_Cong_No.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colTang_Cong_No.Caption = "Tăng Công Nợ";
     this.colTang_Cong_No.ColumnEdit = this.rptMayTinh;
     this.colTang_Cong_No.FieldName = "Tang_Cong_No";
     this.colTang_Cong_No.Name = "colTang_Cong_No";
     this.colTang_Cong_No.OptionsColumn.ReadOnly = true;
     this.colTang_Cong_No.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colTang_Cong_No.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] {
     new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Sum, "Tang_Cong_No", "{0:##,##0.###}")});
     this.colTang_Cong_No.Visible = true;
     this.colTang_Cong_No.Width = 94;
     //
     // colGiam_Cong_No
     //
     this.colGiam_Cong_No.AppearanceHeader.Options.UseTextOptions = true;
     this.colGiam_Cong_No.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colGiam_Cong_No.Caption = "Giảm Công Nợ";
     this.colGiam_Cong_No.ColumnEdit = this.rptMayTinh;
     this.colGiam_Cong_No.FieldName = "Giam_Cong_No";
     this.colGiam_Cong_No.Name = "colGiam_Cong_No";
     this.colGiam_Cong_No.OptionsColumn.ReadOnly = true;
     this.colGiam_Cong_No.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colGiam_Cong_No.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] {
     new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Sum, "Giam_Cong_No", "{0:##,##0.###}")});
     this.colGiam_Cong_No.Visible = true;
     this.colGiam_Cong_No.Width = 93;
     //
     // colCong_No
     //
     this.colCong_No.AppearanceHeader.Options.UseTextOptions = true;
     this.colCong_No.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colCong_No.Caption = "Công Nợ";
     this.colCong_No.ColumnEdit = this.rptMayTinh;
     this.colCong_No.FieldName = "Cong_No";
     this.colCong_No.Name = "colCong_No";
     this.colCong_No.OptionsColumn.ReadOnly = true;
     this.colCong_No.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colCong_No.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] {
     new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Sum, "Cong_No", "{0:##,##0.###}")});
     this.colCong_No.Visible = true;
     //
     // gridBand3
     //
     this.gridBand3.AppearanceHeader.Options.UseTextOptions = true;
     this.gridBand3.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridBand3.Caption = "Thu Tiền";
     this.gridBand3.Columns.Add(this.colThu_Tang_Cong_No);
     this.gridBand3.Columns.Add(this.colThu_Giam_Cong_No);
     this.gridBand3.Columns.Add(this.colTong_Thu);
     this.gridBand3.Name = "gridBand3";
     this.gridBand3.VisibleIndex = 2;
     this.gridBand3.Width = 310;
     //
     // colThu_Tang_Cong_No
     //
     this.colThu_Tang_Cong_No.AppearanceHeader.Options.UseTextOptions = true;
     this.colThu_Tang_Cong_No.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colThu_Tang_Cong_No.Caption = "Tăng Công Nợ";
     this.colThu_Tang_Cong_No.ColumnEdit = this.rptMayTinh;
     this.colThu_Tang_Cong_No.FieldName = "Thu_Tang_Cong_No";
     this.colThu_Tang_Cong_No.Name = "colThu_Tang_Cong_No";
     this.colThu_Tang_Cong_No.OptionsColumn.ReadOnly = true;
     this.colThu_Tang_Cong_No.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colThu_Tang_Cong_No.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] {
     new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Sum, "Thu_Tang_Cong_No", "{0:##,##0.###}")});
     this.colThu_Tang_Cong_No.Visible = true;
     this.colThu_Tang_Cong_No.Width = 118;
     //
     // colThu_Giam_Cong_No
     //
     this.colThu_Giam_Cong_No.AppearanceHeader.Options.UseTextOptions = true;
     this.colThu_Giam_Cong_No.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colThu_Giam_Cong_No.Caption = "Giảm Công Nợ";
     this.colThu_Giam_Cong_No.ColumnEdit = this.rptMayTinh;
     this.colThu_Giam_Cong_No.FieldName = "Thu_Giam_Cong_No";
     this.colThu_Giam_Cong_No.Name = "colThu_Giam_Cong_No";
     this.colThu_Giam_Cong_No.OptionsColumn.ReadOnly = true;
     this.colThu_Giam_Cong_No.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colThu_Giam_Cong_No.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] {
     new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Sum, "Thu_Giam_Cong_No", "{0:##,##0.###}")});
     this.colThu_Giam_Cong_No.Visible = true;
     this.colThu_Giam_Cong_No.Width = 117;
     //
     // colTong_Thu
     //
     this.colTong_Thu.AppearanceHeader.Options.UseTextOptions = true;
     this.colTong_Thu.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colTong_Thu.Caption = "Tổng Thu";
     this.colTong_Thu.ColumnEdit = this.rptMayTinh;
     this.colTong_Thu.FieldName = "Tong_Thu";
     this.colTong_Thu.Name = "colTong_Thu";
     this.colTong_Thu.OptionsColumn.ReadOnly = true;
     this.colTong_Thu.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colTong_Thu.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] {
     new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Sum, "Tong_Thu", "{0:##,##0.###}")});
     this.colTong_Thu.Visible = true;
     //
     // gridBand4
     //
     this.gridBand4.AppearanceHeader.Options.UseTextOptions = true;
     this.gridBand4.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridBand4.Caption = "Chi Tiền";
     this.gridBand4.Columns.Add(this.colChi_Giam_Cong_No);
     this.gridBand4.Columns.Add(this.colChi_Tang_Cong_No);
     this.gridBand4.Columns.Add(this.colTong_Chi);
     this.gridBand4.Name = "gridBand4";
     this.gridBand4.VisibleIndex = 3;
     this.gridBand4.Width = 304;
     //
     // colChi_Giam_Cong_No
     //
     this.colChi_Giam_Cong_No.AppearanceHeader.Options.UseTextOptions = true;
     this.colChi_Giam_Cong_No.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colChi_Giam_Cong_No.Caption = "Giảm Công Nợ";
     this.colChi_Giam_Cong_No.ColumnEdit = this.rptMayTinh;
     this.colChi_Giam_Cong_No.FieldName = "Chi_Giam_Cong_No";
     this.colChi_Giam_Cong_No.Name = "colChi_Giam_Cong_No";
     this.colChi_Giam_Cong_No.OptionsColumn.ReadOnly = true;
     this.colChi_Giam_Cong_No.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colChi_Giam_Cong_No.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] {
     new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Sum, "Chi_Giam_Cong_No", "{0:##,##0.###}")});
     this.colChi_Giam_Cong_No.Visible = true;
     this.colChi_Giam_Cong_No.Width = 114;
     //
     // colChi_Tang_Cong_No
     //
     this.colChi_Tang_Cong_No.AppearanceHeader.Options.UseTextOptions = true;
     this.colChi_Tang_Cong_No.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colChi_Tang_Cong_No.Caption = "Tăng Công Nợ";
     this.colChi_Tang_Cong_No.ColumnEdit = this.rptMayTinh;
     this.colChi_Tang_Cong_No.FieldName = "Chi_Tang_Cong_No";
     this.colChi_Tang_Cong_No.Name = "colChi_Tang_Cong_No";
     this.colChi_Tang_Cong_No.OptionsColumn.ReadOnly = true;
     this.colChi_Tang_Cong_No.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colChi_Tang_Cong_No.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] {
     new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Sum, "Chi_Tang_Cong_No", "{0:##,##0.###}")});
     this.colChi_Tang_Cong_No.Visible = true;
     this.colChi_Tang_Cong_No.Width = 115;
     //
     // colTong_Chi
     //
     this.colTong_Chi.AppearanceHeader.Options.UseTextOptions = true;
     this.colTong_Chi.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colTong_Chi.Caption = "Tổng Chi";
     this.colTong_Chi.ColumnEdit = this.rptMayTinh;
     this.colTong_Chi.FieldName = "Tong_Chi";
     this.colTong_Chi.Name = "colTong_Chi";
     this.colTong_Chi.OptionsColumn.ReadOnly = true;
     this.colTong_Chi.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colTong_Chi.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] {
     new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Sum, "Tong_Chi", "{0:##,##0.###}")});
     this.colTong_Chi.Visible = true;
     //
     // gridBand5
     //
     this.gridBand5.Columns.Add(this.colCong_No_Con_Lai);
     this.gridBand5.Columns.Add(this.colDia_Chi);
     this.gridBand5.Columns.Add(this.colHinh_Thuc_Cong_No);
     this.gridBand5.Columns.Add(this.colLoai_Chung_Tu);
     this.gridBand5.Columns.Add(this.colHo_Ten);
     this.gridBand5.Columns.Add(this.colLy_Do);
     this.gridBand5.Columns.Add(this.colGhi_Chu);
     this.gridBand5.Name = "gridBand5";
     this.gridBand5.VisibleIndex = 4;
     this.gridBand5.Width = 538;
     //
     // colCong_No_Con_Lai
     //
     this.colCong_No_Con_Lai.AppearanceHeader.Options.UseTextOptions = true;
     this.colCong_No_Con_Lai.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colCong_No_Con_Lai.Caption = "Công Nợ Còn Lại";
     this.colCong_No_Con_Lai.ColumnEdit = this.rptMayTinh;
     this.colCong_No_Con_Lai.FieldName = "Cong_No_Con_Lai";
     this.colCong_No_Con_Lai.Name = "colCong_No_Con_Lai";
     this.colCong_No_Con_Lai.OptionsColumn.ReadOnly = true;
     this.colCong_No_Con_Lai.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colCong_No_Con_Lai.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] {
     new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Sum, "Cong_No_Con_Lai", "{0:##,##0.###}")});
     this.colCong_No_Con_Lai.Visible = true;
     this.colCong_No_Con_Lai.Width = 99;
     //
     // colDia_Chi
     //
     this.colDia_Chi.AppearanceHeader.Options.UseTextOptions = true;
     this.colDia_Chi.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colDia_Chi.Caption = "Địa Chỉ";
     this.colDia_Chi.FieldName = "Dia_Chi";
     this.colDia_Chi.Name = "colDia_Chi";
     this.colDia_Chi.OptionsColumn.ReadOnly = true;
     this.colDia_Chi.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     //
     // colHinh_Thuc_Cong_No
     //
     this.colHinh_Thuc_Cong_No.AppearanceHeader.Options.UseTextOptions = true;
     this.colHinh_Thuc_Cong_No.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colHinh_Thuc_Cong_No.Caption = "Hình Thức Công Nợ";
     this.colHinh_Thuc_Cong_No.ColumnEdit = this.rptHinhThucCongNo;
     this.colHinh_Thuc_Cong_No.FieldName = "Hinh_Thuc_Cong_No";
     this.colHinh_Thuc_Cong_No.Name = "colHinh_Thuc_Cong_No";
     this.colHinh_Thuc_Cong_No.OptionsColumn.ReadOnly = true;
     this.colHinh_Thuc_Cong_No.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colHinh_Thuc_Cong_No.Visible = true;
     this.colHinh_Thuc_Cong_No.Width = 120;
     //
     // rptHinhThucCongNo
     //
     this.rptHinhThucCongNo.AutoHeight = false;
     this.rptHinhThucCongNo.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.rptHinhThucCongNo.DataSource = this.hinhThucCongNoBindingSource;
     this.rptHinhThucCongNo.DisplayMember = "Ten";
     this.rptHinhThucCongNo.Name = "rptHinhThucCongNo";
     this.rptHinhThucCongNo.NullText = "";
     this.rptHinhThucCongNo.ValueMember = "Ma";
     this.rptHinhThucCongNo.View = this.gridView1;
     //
     // hinhThucCongNoBindingSource
     //
     this.hinhThucCongNoBindingSource.DataMember = "Hinh_Thuc_Cong_No";
     this.hinhThucCongNoBindingSource.DataSource = this.dsHinhThuc;
     //
     // dsHinhThuc
     //
     this.dsHinhThuc.DataSetName = "dsHinhThuc";
     this.dsHinhThuc.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
     //
     // gridView1
     //
     this.gridView1.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
     this.gridView1.Name = "gridView1";
     this.gridView1.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gridView1.OptionsView.ShowGroupPanel = false;
     //
     // colLoai_Chung_Tu
     //
     this.colLoai_Chung_Tu.AppearanceHeader.Options.UseTextOptions = true;
     this.colLoai_Chung_Tu.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colLoai_Chung_Tu.Caption = "Loại Chứng Từ";
     this.colLoai_Chung_Tu.ColumnEdit = this.rptLoaiChungTu;
     this.colLoai_Chung_Tu.FieldName = "Loai_Chung_Tu";
     this.colLoai_Chung_Tu.Name = "colLoai_Chung_Tu";
     this.colLoai_Chung_Tu.OptionsColumn.ReadOnly = true;
     this.colLoai_Chung_Tu.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colLoai_Chung_Tu.Visible = true;
     this.colLoai_Chung_Tu.Width = 94;
     //
     // rptLoaiChungTu
     //
     this.rptLoaiChungTu.AutoHeight = false;
     this.rptLoaiChungTu.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.rptLoaiChungTu.DataSource = this.loaiChungTuBindingSource;
     this.rptLoaiChungTu.DisplayMember = "Ten";
     this.rptLoaiChungTu.Name = "rptLoaiChungTu";
     this.rptLoaiChungTu.NullText = "";
     this.rptLoaiChungTu.ValueMember = "Ma";
     this.rptLoaiChungTu.View = this.repositoryItemGridLookUpEdit1View;
     //
     // loaiChungTuBindingSource
     //
     this.loaiChungTuBindingSource.DataMember = "Loai_Chung_Tu";
     this.loaiChungTuBindingSource.DataSource = this.dsHinhThuc;
     //
     // repositoryItemGridLookUpEdit1View
     //
     this.repositoryItemGridLookUpEdit1View.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
     this.repositoryItemGridLookUpEdit1View.Name = "repositoryItemGridLookUpEdit1View";
     this.repositoryItemGridLookUpEdit1View.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.repositoryItemGridLookUpEdit1View.OptionsView.ShowGroupPanel = false;
     //
     // colHo_Ten
     //
     this.colHo_Ten.AppearanceHeader.Options.UseTextOptions = true;
     this.colHo_Ten.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colHo_Ten.Caption = "Nhân Viên";
     this.colHo_Ten.FieldName = "Ho_Ten";
     this.colHo_Ten.Name = "colHo_Ten";
     this.colHo_Ten.OptionsColumn.ReadOnly = true;
     this.colHo_Ten.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colHo_Ten.Visible = true;
     //
     // colLy_Do
     //
     this.colLy_Do.AppearanceHeader.Options.UseTextOptions = true;
     this.colLy_Do.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colLy_Do.Caption = "Lý Do";
     this.colLy_Do.FieldName = "Ly_Do";
     this.colLy_Do.Name = "colLy_Do";
     this.colLy_Do.OptionsColumn.ReadOnly = true;
     this.colLy_Do.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colLy_Do.Visible = true;
     //
     // colGhi_Chu
     //
     this.colGhi_Chu.AppearanceHeader.Options.UseTextOptions = true;
     this.colGhi_Chu.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colGhi_Chu.Caption = "Ghi Chú";
     this.colGhi_Chu.FieldName = "Ghi_Chu";
     this.colGhi_Chu.Name = "colGhi_Chu";
     this.colGhi_Chu.OptionsColumn.ReadOnly = true;
     this.colGhi_Chu.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colGhi_Chu.Visible = true;
     //
     // colCong_No_Thu_Chi
     //
     this.colCong_No_Thu_Chi.AppearanceHeader.Options.UseTextOptions = true;
     this.colCong_No_Thu_Chi.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colCong_No_Thu_Chi.FieldName = "Cong_No_Thu_Chi";
     this.colCong_No_Thu_Chi.Name = "colCong_No_Thu_Chi";
     this.colCong_No_Thu_Chi.OptionsColumn.ReadOnly = true;
     this.colCong_No_Thu_Chi.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     //
     // colNhan_Vien
     //
     this.colNhan_Vien.AppearanceHeader.Options.UseTextOptions = true;
     this.colNhan_Vien.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colNhan_Vien.Caption = "Mã Nhân Viên";
     this.colNhan_Vien.FieldName = "Nhan_Vien";
     this.colNhan_Vien.Name = "colNhan_Vien";
     this.colNhan_Vien.OptionsColumn.ReadOnly = true;
     this.colNhan_Vien.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colNhan_Vien.Visible = true;
     this.colNhan_Vien.Width = 85;
     //
     // layoutControlGroup1
     //
     this.layoutControlGroup1.CustomizationFormText = "layoutControlGroup1";
     this.layoutControlGroup1.EnableIndentsWithoutBorders = DevExpress.Utils.DefaultBoolean.True;
     this.layoutControlGroup1.GroupBordersVisible = false;
     this.layoutControlGroup1.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.layoutControlItem1,
     this.layoutControlItem2,
     this.layoutControlItem3,
     this.layoutControlItem4,
     this.layoutControlItem5,
     this.layoutControlItem6});
     this.layoutControlGroup1.Location = new System.Drawing.Point(0, 0);
     this.layoutControlGroup1.Name = "layoutControlGroup1";
     this.layoutControlGroup1.Padding = new DevExpress.XtraLayout.Utils.Padding(0, 0, 0, 0);
     this.layoutControlGroup1.Size = new System.Drawing.Size(1102, 392);
     this.layoutControlGroup1.Text = "layoutControlGroup1";
     this.layoutControlGroup1.TextVisible = false;
     //
     // layoutControlItem1
     //
     this.layoutControlItem1.Control = this.gcList;
     this.layoutControlItem1.CustomizationFormText = "layoutControlItem1";
     this.layoutControlItem1.Location = new System.Drawing.Point(0, 24);
     this.layoutControlItem1.Name = "layoutControlItem1";
     this.layoutControlItem1.Size = new System.Drawing.Size(1102, 344);
     this.layoutControlItem1.Text = "layoutControlItem1";
     this.layoutControlItem1.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem1.TextToControlDistance = 0;
     this.layoutControlItem1.TextVisible = false;
     //
     // layoutControlItem2
     //
     this.layoutControlItem2.Control = this.cbChonNgay;
     this.layoutControlItem2.CustomizationFormText = "Tùy Chọn:";
     this.layoutControlItem2.Location = new System.Drawing.Point(0, 0);
     this.layoutControlItem2.MaxSize = new System.Drawing.Size(150, 24);
     this.layoutControlItem2.MinSize = new System.Drawing.Size(109, 24);
     this.layoutControlItem2.Name = "layoutControlItem2";
     this.layoutControlItem2.Size = new System.Drawing.Size(150, 24);
     this.layoutControlItem2.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem2.Text = "Tùy Chọn:";
     this.layoutControlItem2.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.CustomSize;
     this.layoutControlItem2.TextSize = new System.Drawing.Size(50, 13);
     this.layoutControlItem2.TextToControlDistance = 5;
     this.layoutControlItem2.Visibility = DevExpress.XtraLayout.Utils.LayoutVisibility.Never;
     //
     // layoutControlItem3
     //
     this.layoutControlItem3.Control = this.dtTu;
     this.layoutControlItem3.CustomizationFormText = "Từ";
     this.layoutControlItem3.Location = new System.Drawing.Point(150, 0);
     this.layoutControlItem3.MaxSize = new System.Drawing.Size(150, 24);
     this.layoutControlItem3.MinSize = new System.Drawing.Size(78, 24);
     this.layoutControlItem3.Name = "layoutControlItem3";
     this.layoutControlItem3.Size = new System.Drawing.Size(150, 24);
     this.layoutControlItem3.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem3.Text = "Từ";
     this.layoutControlItem3.TextSize = new System.Drawing.Size(20, 13);
     this.layoutControlItem3.Visibility = DevExpress.XtraLayout.Utils.LayoutVisibility.Never;
     //
     // layoutControlItem4
     //
     this.layoutControlItem4.Control = this.dtDen;
     this.layoutControlItem4.CustomizationFormText = "Đến";
     this.layoutControlItem4.Location = new System.Drawing.Point(300, 0);
     this.layoutControlItem4.MaxSize = new System.Drawing.Size(150, 24);
     this.layoutControlItem4.MinSize = new System.Drawing.Size(78, 24);
     this.layoutControlItem4.Name = "layoutControlItem4";
     this.layoutControlItem4.Size = new System.Drawing.Size(150, 24);
     this.layoutControlItem4.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem4.Text = "Đến";
     this.layoutControlItem4.TextSize = new System.Drawing.Size(20, 13);
     this.layoutControlItem4.Visibility = DevExpress.XtraLayout.Utils.LayoutVisibility.Never;
     //
     // layoutControlItem5
     //
     this.layoutControlItem5.Control = this.layoutControl2;
     this.layoutControlItem5.CustomizationFormText = "layoutControlItem5";
     this.layoutControlItem5.Location = new System.Drawing.Point(450, 0);
     this.layoutControlItem5.Name = "layoutControlItem5";
     this.layoutControlItem5.Size = new System.Drawing.Size(652, 24);
     this.layoutControlItem5.Text = "layoutControlItem5";
     this.layoutControlItem5.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem5.TextToControlDistance = 0;
     this.layoutControlItem5.TextVisible = false;
     //
     // layoutControlItem6
     //
     this.layoutControlItem6.Control = this.cbTatCa;
     this.layoutControlItem6.CustomizationFormText = "layoutControlItem6";
     this.layoutControlItem6.Location = new System.Drawing.Point(0, 368);
     this.layoutControlItem6.Name = "layoutControlItem6";
     this.layoutControlItem6.Size = new System.Drawing.Size(1102, 24);
     this.layoutControlItem6.Text = "layoutControlItem6";
     this.layoutControlItem6.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem6.TextToControlDistance = 0;
     this.layoutControlItem6.TextVisible = false;
     //
     // cong_No_Chung_TuTableAdapter
     //
     this.cong_No_Chung_TuTableAdapter.ClearBeforeFill = true;
     //
     // frmCongNoChungTu
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(1102, 416);
     this.Controls.Add(this.layoutControl1);
     this.Controls.Add(this.barDockControlLeft);
     this.Controls.Add(this.barDockControlRight);
     this.Controls.Add(this.barDockControlBottom);
     this.Controls.Add(this.barDockControlTop);
     this.Name = "frmCongNoChungTu";
     this.Text = "Công Nợ Chứng Từ";
     ((System.ComponentModel.ISupportInitialize)(this.img)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.bm)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl1)).EndInit();
     this.layoutControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtDen.Properties.CalendarTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtDen.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtTu.Properties.CalendarTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtTu.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbChonNgay.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gcList)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.congNoChungTuBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dsCongNoChungTu)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gbList)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.rptMayTinh)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.rptHinhThucCongNo)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.hinhThucCongNoBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dsHinhThuc)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.rptLoaiChungTu)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.loaiChungTuBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemGridLookUpEdit1View)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem6)).EndInit();
     this.ResumeLayout(false);
 }
コード例 #22
0
ファイル: NutritionManagement.cs プロジェクト: zesus19/c4.v2
		/// <summary> 
		/// Required method for Designer support - do not modify 
		/// the contents of this method with the code editor.
		/// </summary>
		private void InitializeComponent()
		{
			this.components = new System.ComponentModel.Container();
			System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(NutritionManagement));
			this.xtraTabControl1 = new DevExpress.XtraTab.XtraTabControl();
			this.xtraTabPage1 = new DevExpress.XtraTab.XtraTabPage();
			this.splitContainerControl1 = new DevExpress.XtraEditors.SplitContainerControl();
			this.groupControl_FoodCategory = new DevExpress.XtraEditors.GroupControl();
			this.treeList_FoodStock = new DevExpress.XtraTreeList.TreeList();
			this.treeListColumn1 = new DevExpress.XtraTreeList.Columns.TreeListColumn();
			this.imageList1 = new System.Windows.Forms.ImageList(this.components);
			this.groupControl_FoodNutModify = new DevExpress.XtraEditors.GroupControl();
			this.textEdit_FoodName = new DevExpress.XtraEditors.TextEdit();
			this.notePanel7 = new DevExpress.Utils.Frames.NotePanel();
			this.memoEdit_FoodRemark = new DevExpress.XtraEditors.MemoEdit();
			this.notePanel_FoodRemark = new DevExpress.Utils.Frames.NotePanel();
			this.textEdit_Energy = new DevExpress.XtraEditors.TextEdit();
			this.textEdit_Carbohydrate = new DevExpress.XtraEditors.TextEdit();
			this.textEdit_Fat = new DevExpress.XtraEditors.TextEdit();
			this.textEdit_Protein = new DevExpress.XtraEditors.TextEdit();
			this.notePanel_Energy = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_Carbohydrate = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_Fat = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_Protein = new DevExpress.Utils.Frames.NotePanel();
			this.comboBoxEdit_FoodCategory = new DevExpress.XtraEditors.ComboBoxEdit();
			this.notePanel_FoodCategory = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_FoodName = new DevExpress.Utils.Frames.NotePanel();
			this.groupControl_FoodNutrition = new DevExpress.XtraEditors.GroupControl();
			this.gridControl_FoodNutrition = new DevExpress.XtraGrid.GridControl();
			this.gridView1 = new DevExpress.XtraGrid.Views.Grid.GridView();
			this.gridColumn1 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn2 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn3 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn4 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn5 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn6 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.panelControl1 = new DevExpress.XtraEditors.PanelControl();
			this.simpleButton_FoodModify = new DevExpress.XtraEditors.SimpleButton();
			this.simpleButton_FoodBack = new DevExpress.XtraEditors.SimpleButton();
			this.simpleButton_FoodDelete = new DevExpress.XtraEditors.SimpleButton();
			this.simpleButton_FoodSave = new DevExpress.XtraEditors.SimpleButton();
			this.simpleButton_FoodAdd = new DevExpress.XtraEditors.SimpleButton();
			this.textEdit_FoodSearch = new DevExpress.XtraEditors.TextEdit();
			this.textEdit_BindingID = new DevExpress.XtraEditors.TextEdit();
			this.xtraTabPage2 = new DevExpress.XtraTab.XtraTabPage();
			this.splitContainerControl2 = new DevExpress.XtraEditors.SplitContainerControl();
			this.panelControl10 = new DevExpress.XtraEditors.PanelControl();
			this.gridControl_Recipe_FoodNutrition = new DevExpress.XtraGrid.GridControl();
			this.gridView4 = new DevExpress.XtraGrid.Views.Grid.GridView();
			this.gridColumn7 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn8 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn9 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn10 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn11 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn16 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.toolTipController1 = new DevExpress.Utils.ToolTipController(this.components);
			this.gridView2 = new DevExpress.XtraGrid.Views.Grid.GridView();
			this.notePanel4 = new DevExpress.Utils.Frames.NotePanel();
			this.groupControl_RecipeLogin = new DevExpress.XtraEditors.GroupControl();
			this.textEdit_RecipeLogin_FoodName = new DevExpress.XtraEditors.TextEdit();
			this.textEdit_RecipeLogin_Name = new DevExpress.XtraEditors.TextEdit();
			this.notePanel_RecipeLogin_Name = new DevExpress.Utils.Frames.NotePanel();
			this.dateEdit_RecipeLogin_Date = new DevExpress.XtraEditors.DateEdit();
			this.notePanel_RecipeLogin_Date = new DevExpress.Utils.Frames.NotePanel();
			this.textEdit_RecipeLogin_FoodTake = new DevExpress.XtraEditors.TextEdit();
			this.notePanel_RecipeLogin_FoodTake = new DevExpress.Utils.Frames.NotePanel();
			this.textEdit_RecipeLogin_BindingID = new DevExpress.XtraEditors.TextEdit();
			this.notePanel_RecipeLogin_FoodName = new DevExpress.Utils.Frames.NotePanel();
			this.groupControl_RecipeSer = new DevExpress.XtraEditors.GroupControl();
			this.comboBoxEdit_RecipeSer_FoodCategory = new DevExpress.XtraEditors.ComboBoxEdit();
			this.notePanel_RecipeSer_FoodCategory = new DevExpress.Utils.Frames.NotePanel();
			this.textEdit_RecipeSer_FoodName = new DevExpress.XtraEditors.TextEdit();
			this.notePanel_RecipeSer_FoodName = new DevExpress.Utils.Frames.NotePanel();
			this.groupControl_RecipeOpr = new DevExpress.XtraEditors.GroupControl();
			this.simpleButton_RecipeModify = new DevExpress.XtraEditors.SimpleButton();
			this.simpleButton_RecipeSave = new DevExpress.XtraEditors.SimpleButton();
			this.panelControl11 = new DevExpress.XtraEditors.PanelControl();
			this.gridControl_RecipeLogin = new DevExpress.XtraGrid.GridControl();
			this.gridView13 = new DevExpress.XtraGrid.Views.Grid.GridView();
			this.gridColumn50 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn51 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn52 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn53 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.notePanel5 = new DevExpress.Utils.Frames.NotePanel();
			this.panelControl2 = new DevExpress.XtraEditors.PanelControl();
			this.textEdit_Recipe_FoodName = new DevExpress.XtraEditors.TextEdit();
			this.notePanel_Recipe_FoodName = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_Recipe = new DevExpress.Utils.Frames.NotePanel();
			this.comboBoxEdit_Recipe_RecipeCategory = new DevExpress.XtraEditors.ComboBoxEdit();
			this.notePanel_Recipe_RecipeCategory = new DevExpress.Utils.Frames.NotePanel();
			this.dateEdit_Recipe_EndDate = new DevExpress.XtraEditors.DateEdit();
			this.notePanel_Recipe_EndDate = new DevExpress.Utils.Frames.NotePanel();
			this.dateEdit_Recipe_BegDate = new DevExpress.XtraEditors.DateEdit();
			this.notePanel_Recipe_BegDate = new DevExpress.Utils.Frames.NotePanel();
			this.xtraTabPage3 = new DevExpress.XtraTab.XtraTabPage();
			this.splitContainerControl3 = new DevExpress.XtraEditors.SplitContainerControl();
			this.groupControl_MealLogin = new DevExpress.XtraEditors.GroupControl();
			this.notePanel_MealArr = new DevExpress.Utils.Frames.NotePanel();
			this.checkEdit_Snack = new DevExpress.XtraEditors.CheckEdit();
			this.checkEdit_Dinner = new DevExpress.XtraEditors.CheckEdit();
			this.checkEdit_Lunch = new DevExpress.XtraEditors.CheckEdit();
			this.checkEdit_Breakfast = new DevExpress.XtraEditors.CheckEdit();
			this.groupControl_MealAdd = new DevExpress.XtraEditors.GroupControl();
			this.textEdit_MealName = new DevExpress.XtraEditors.TextEdit();
			this.textEdit_MealRemark = new DevExpress.XtraEditors.TextEdit();
			this.notePanel_MealRemark = new DevExpress.Utils.Frames.NotePanel();
			this.textEdit_MealID = new DevExpress.XtraEditors.TextEdit();
			this.notePanel_MealName = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_MealNameAdd = new DevExpress.Utils.Frames.NotePanel();
			this.groupControl_MealArr = new DevExpress.XtraEditors.GroupControl();
			this.splitContainerControl4 = new DevExpress.XtraEditors.SplitContainerControl();
			this.notePanel_GradeArr = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_MealArr_Grade = new DevExpress.Utils.Frames.NotePanel();
			this.checkEdit_MealArr_gThree = new DevExpress.XtraEditors.CheckEdit();
			this.notePanel_MealArr_Name = new DevExpress.Utils.Frames.NotePanel();
			this.checkEdit_MealArr_gTwo = new DevExpress.XtraEditors.CheckEdit();
			this.checkEdit_MealArr_gOne = new DevExpress.XtraEditors.CheckEdit();
			this.comboBoxEdit_MealArr_Name = new DevExpress.XtraEditors.ComboBoxEdit();
			this.checkEdit_MealArr_gFour = new DevExpress.XtraEditors.CheckEdit();
			this.checkEdit_MealArr_gFive = new DevExpress.XtraEditors.CheckEdit();
			this.checkEdit_MealArr_IsUsed = new DevExpress.XtraEditors.CheckEdit();
			this.label_Lunch = new System.Windows.Forms.Label();
			this.label_Snack = new System.Windows.Forms.Label();
			this.label_Super = new System.Windows.Forms.Label();
			this.label_Breakfast = new System.Windows.Forms.Label();
			this.notePanel_MealArr_ePreview = new DevExpress.Utils.Frames.NotePanel();
			this.groupControl_MealPreview = new DevExpress.XtraEditors.GroupControl();
			this.gridControl_MealPreview = new DevExpress.XtraGrid.GridControl();
			this.gridView5 = new DevExpress.XtraGrid.Views.Grid.GridView();
			this.gridColumn17 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn18 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn19 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn20 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.notePanel3 = new DevExpress.Utils.Frames.NotePanel();
			this.panelControl3 = new DevExpress.XtraEditors.PanelControl();
			this.simpleButton_MealBack = new DevExpress.XtraEditors.SimpleButton();
			this.simpleButton_MealAppend = new DevExpress.XtraEditors.SimpleButton();
			this.simpleButton_MealDelete = new DevExpress.XtraEditors.SimpleButton();
			this.simpleButton_MealSave = new DevExpress.XtraEditors.SimpleButton();
			this.simpleButton_MealAdd = new DevExpress.XtraEditors.SimpleButton();
			this.xtraTabPage4 = new DevExpress.XtraTab.XtraTabPage();
			this.splitContainerControl5 = new DevExpress.XtraEditors.SplitContainerControl();
			this.groupControl_Meal_Search = new DevExpress.XtraEditors.GroupControl();
			this.dateEdit_Meal_EndDate = new DevExpress.XtraEditors.DateEdit();
			this.notePanel_Meal_EndDate = new DevExpress.Utils.Frames.NotePanel();
			this.dateEdit_Meal_BegDate = new DevExpress.XtraEditors.DateEdit();
			this.notePanel_Meal_BegDate = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_Meal_Search = new DevExpress.Utils.Frames.NotePanel();
			this.groupControl_Meal_ReportPreview = new DevExpress.XtraEditors.GroupControl();
			this.panelControl4 = new DevExpress.XtraEditors.PanelControl();
			this.simpleButton_Meal_PrintReport = new DevExpress.XtraEditors.SimpleButton();
			this.simpleButton_Meal_PreviewReport = new DevExpress.XtraEditors.SimpleButton();
			this.xtraTabPage5 = new DevExpress.XtraTab.XtraTabPage();
			this.splitContainerControl6 = new DevExpress.XtraEditors.SplitContainerControl();
			this.gridControl_HInputStu = new DevExpress.XtraGrid.GridControl();
			this.gridView6 = new DevExpress.XtraGrid.Views.Grid.GridView();
			this.gridColumn21 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn22 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn23 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.groupControl_HInputSer = new DevExpress.XtraEditors.GroupControl();
			this.comboBoxEdit_HInputGender = new DevExpress.XtraEditors.ComboBoxEdit();
			this.notePanel_HInputGender = new DevExpress.Utils.Frames.NotePanel();
			this.dataNavigator_HInputNav = new DevExpress.XtraEditors.DataNavigator();
			this.textEdit_HInputNumber = new DevExpress.XtraEditors.TextEdit();
			this.textEdit_HInputName = new DevExpress.XtraEditors.TextEdit();
			this.comboBoxEdit_HInputClass = new DevExpress.XtraEditors.ComboBoxEdit();
			this.notePanel_HInputClass = new DevExpress.Utils.Frames.NotePanel();
			this.comboBoxEdit_HInputGrade = new DevExpress.XtraEditors.ComboBoxEdit();
			this.notePanel_HInputGrade = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_HInputSer = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_HInputNumber = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_HInputName = new DevExpress.Utils.Frames.NotePanel();
			this.groupControl_HInputDiagInfo = new DevExpress.XtraEditors.GroupControl();
			this.comboBoxEdit_HInputRegion = new DevExpress.XtraEditors.ComboBoxEdit();
			this.notePanel6 = new DevExpress.Utils.Frames.NotePanel();
			this.comboBoxEdit_HInputStd = new DevExpress.XtraEditors.ComboBoxEdit();
			this.notePanel_HInputStd = new DevExpress.Utils.Frames.NotePanel();
			this.textEdit_DiagCheckName = new DevExpress.XtraEditors.TextEdit();
			this.textEdit_DiagCheckBindingID = new DevExpress.XtraEditors.TextEdit();
			this.notePanel_DiagCheckName = new DevExpress.Utils.Frames.NotePanel();
			this.groupControl_HInputDiagResult = new DevExpress.XtraEditors.GroupControl();
			this.textEdit_DiagResultX = new DevExpress.XtraEditors.TextEdit();
			this.textEdit_DiagResultWHOPer = new DevExpress.XtraEditors.TextEdit();
			this.textEdit_DiagResultHeightWeight = new DevExpress.XtraEditors.TextEdit();
			this.textEdit_DiagResultUnderWeight = new DevExpress.XtraEditors.TextEdit();
			this.notePanel8 = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel9 = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel10 = new DevExpress.Utils.Frames.NotePanel();
			this.textEdit_DiagResultStunting = new DevExpress.XtraEditors.TextEdit();
			this.textEdit_DiagResultWasting = new DevExpress.XtraEditors.TextEdit();
			this.notePanel1 = new DevExpress.Utils.Frames.NotePanel();
			this.textEdit_DiagResultHeight = new DevExpress.XtraEditors.TextEdit();
			this.textEdit_DiagResultWeight = new DevExpress.XtraEditors.TextEdit();
			this.notePanel_DiagResultWeight = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_DiagResultNut = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_DiagResultWHO = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_DiagResultHeight = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_DiagResultAge = new DevExpress.Utils.Frames.NotePanel();
			this.textEdit_DiagResultWHO = new DevExpress.XtraEditors.TextEdit();
			this.textEdit_DiagResultNut = new DevExpress.XtraEditors.TextEdit();
			this.textEdit_DiagResultAge = new DevExpress.XtraEditors.TextEdit();
			this.memoEdit_DiagRemark = new DevExpress.XtraEditors.MemoEdit();
			this.notePanel_DiagRemark = new DevExpress.Utils.Frames.NotePanel();
			this.textEdit_DiagWeight = new DevExpress.XtraEditors.TextEdit();
			this.textEdit_DiagHeight = new DevExpress.XtraEditors.TextEdit();
			this.notePanel_HInputDaigInfo = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_DiagWeight = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_DiagHeight = new DevExpress.Utils.Frames.NotePanel();
			this.dateEdit_DiagCheckDate = new DevExpress.XtraEditors.DateEdit();
			this.notePanel_DiagCheckDate = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_HInputBirthday = new DevExpress.Utils.Frames.NotePanel();
			this.textEdit_HInputBirthday = new DevExpress.XtraEditors.TextEdit();
			this.notePanel_DiagCheckGender = new DevExpress.Utils.Frames.NotePanel();
			this.textEdit_DiagCheckGender = new DevExpress.XtraEditors.TextEdit();
			this.panelControl5 = new DevExpress.XtraEditors.PanelControl();
			this.simpleButton_HInputModify = new DevExpress.XtraEditors.SimpleButton();
			this.simpleButton_HInputDelete = new DevExpress.XtraEditors.SimpleButton();
			this.simpleButton_HInputSave = new DevExpress.XtraEditors.SimpleButton();
			this.simpleButton_HInputDiag = new DevExpress.XtraEditors.SimpleButton();
			this.xtraTabPage6 = new DevExpress.XtraTab.XtraTabPage();
			this.splitContainerControl7 = new DevExpress.XtraEditors.SplitContainerControl();
			this.groupControl_HOutputPrintType = new DevExpress.XtraEditors.GroupControl();
			this.checkEdit_HOutputPrintType4th = new DevExpress.XtraEditors.CheckEdit();
			this.checkEdit_HOutputPrintType3rd = new DevExpress.XtraEditors.CheckEdit();
			this.checkEdit_HOutputPrintType2nd = new DevExpress.XtraEditors.CheckEdit();
			this.checkEdit_HOutputPrintType1st = new DevExpress.XtraEditors.CheckEdit();
			this.groupControl_HOutputSer = new DevExpress.XtraEditors.GroupControl();
			this.comboBoxEdit_HOutputRegion = new DevExpress.XtraEditors.ComboBoxEdit();
			this.notePanel11 = new DevExpress.Utils.Frames.NotePanel();
			this.dateEdit_HOutputEndDate = new DevExpress.XtraEditors.DateEdit();
			this.dateEdit_HOutputBegDate = new DevExpress.XtraEditors.DateEdit();
			this.notePanel_HOutputEndDate = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_HOutputBegDate = new DevExpress.Utils.Frames.NotePanel();
			this.comboBoxEdit_HOutputGender = new DevExpress.XtraEditors.ComboBoxEdit();
			this.comboBoxEdit_HOutputResult = new DevExpress.XtraEditors.ComboBoxEdit();
			this.notePanel_HOutputResult = new DevExpress.Utils.Frames.NotePanel();
			this.comboBoxEdit_HOutputType = new DevExpress.XtraEditors.ComboBoxEdit();
			this.comboBoxEdit_HOutputAge = new DevExpress.XtraEditors.ComboBoxEdit();
			this.notePanel_HOutputType = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_HOutputAge = new DevExpress.Utils.Frames.NotePanel();
			this.textEdit_HOutputNumber = new DevExpress.XtraEditors.TextEdit();
			this.textEdit_HOutputName = new DevExpress.XtraEditors.TextEdit();
			this.comboBoxEdit_HOutputClass = new DevExpress.XtraEditors.ComboBoxEdit();
			this.notePanel_HOutputClass = new DevExpress.Utils.Frames.NotePanel();
			this.comboBoxEdit_HOutputGrade = new DevExpress.XtraEditors.ComboBoxEdit();
			this.notePanel_HOutputGrade = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_HOutputNumber = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_HOutputName = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_HOutputGender = new DevExpress.Utils.Frames.NotePanel();
			this.gridControl_HOutputNchsGrid = new DevExpress.XtraGrid.GridControl();
			this.advBandedGridView2 = new DevExpress.XtraGrid.Views.BandedGrid.AdvBandedGridView();
			this.gridBand5 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
			this.bandedGridColumn1 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.bandedGridColumn16 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.gridBand6 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
			this.bandedGridColumn19 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.bandedGridColumn17 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.bandedGridColumn23 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.bandedGridColumn18 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.gridBand7 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
			this.bandedGridColumn20 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.bandedGridColumn21 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.bandedGridColumn22 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.bandedGridColumn26 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.bandedGridColumn29 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.bandedGridColumn30 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.bandedGridColumn24 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.bandedGridColumn25 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.bandedGridColumn27 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.bandedGridColumn28 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.gridControl_HOutputGridShow = new DevExpress.XtraGrid.GridControl();
			this.advBandedGridView1 = new DevExpress.XtraGrid.Views.BandedGrid.AdvBandedGridView();
			this.gridBand1 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
			this.bandedGridColumn4 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.gridBand2 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
			this.bandedGridColumn2 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.bandedGridColumn5 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.bandedGridColumn6 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.bandedGridColumn3 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.gridBand3 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
			this.bandedGridColumn7 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.bandedGridColumn8 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.bandedGridColumn10 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.bandedGridColumn12 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.bandedGridColumn15 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.bandedGridColumn9 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.bandedGridColumn11 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.bandedGridColumn13 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.gridBand4 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
			this.bandedGridColumn14 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.panelControl6 = new DevExpress.XtraEditors.PanelControl();
			this.simpleButton_HOutputSearch = new DevExpress.XtraEditors.SimpleButton();
			this.simpleButton_HOutputPrint = new DevExpress.XtraEditors.SimpleButton();
			this.xtraTabPage7 = new DevExpress.XtraTab.XtraTabPage();
			this.splitContainerControl8 = new DevExpress.XtraEditors.SplitContainerControl();
			this.groupControl_WatchMorningRec = new DevExpress.XtraEditors.GroupControl();
			this.textEdit_WatchMorningTreat = new DevExpress.XtraEditors.TextEdit();
			this.notePanel_WatchMorningTreat = new DevExpress.Utils.Frames.NotePanel();
			this.textEdit_WatchMorningOState = new DevExpress.XtraEditors.TextEdit();
			this.notePanel_WatchMorningOState = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_WatchMorningMouth = new DevExpress.Utils.Frames.NotePanel();
			this.comboBoxEdit_WatchMorningHeat = new DevExpress.XtraEditors.ComboBoxEdit();
			this.comboBoxEdit_WatchMorningMouth = new DevExpress.XtraEditors.ComboBoxEdit();
			this.comboBoxEdit_WatchMorningSpirit = new DevExpress.XtraEditors.ComboBoxEdit();
			this.notePanel_WatchMorningHeat = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_WatchMorningSkin = new DevExpress.Utils.Frames.NotePanel();
			this.comboBoxEdit_WatchMorningSkin = new DevExpress.XtraEditors.ComboBoxEdit();
			this.notePanel_WatchMorningSpirit = new DevExpress.Utils.Frames.NotePanel();
			this.textEdit_WatchMorningNumber = new DevExpress.XtraEditors.TextEdit();
			this.textEdit_WatchMorningName = new DevExpress.XtraEditors.TextEdit();
			this.notePanel_WatchMorningNumber = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_WatchMorningName = new DevExpress.Utils.Frames.NotePanel();
			this.groupControl_WatchStuList = new DevExpress.XtraEditors.GroupControl();
			this.gridControl_WatchStuList = new DevExpress.XtraGrid.GridControl();
			this.gridView7 = new DevExpress.XtraGrid.Views.Grid.GridView();
			this.gridColumn24 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn25 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn26 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn27 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn28 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.notePanel_WatchStuList = new DevExpress.Utils.Frames.NotePanel();
			this.groupControl_WatchSer = new DevExpress.XtraEditors.GroupControl();
			this.textEdit_WatchName = new DevExpress.XtraEditors.TextEdit();
			this.dateEdit_WatchEndDate = new DevExpress.XtraEditors.DateEdit();
			this.dateEdit_WatchBegDate = new DevExpress.XtraEditors.DateEdit();
			this.notePanel_WatchEndDate = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_WatchBegDate = new DevExpress.Utils.Frames.NotePanel();
			this.comboBoxEdit_WatchState = new DevExpress.XtraEditors.ComboBoxEdit();
			this.notePanel_WatchState = new DevExpress.Utils.Frames.NotePanel();
			this.textEdit_WatchNumber = new DevExpress.XtraEditors.TextEdit();
			this.comboBoxEdit_WatchClass = new DevExpress.XtraEditors.ComboBoxEdit();
			this.notePanel_WatchClass = new DevExpress.Utils.Frames.NotePanel();
			this.comboBoxEdit_WatchGrade = new DevExpress.XtraEditors.ComboBoxEdit();
			this.notePanel_WatchGrade = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_WatchNumber = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_WatchName = new DevExpress.Utils.Frames.NotePanel();
			this.groupControl_WatchWholeDay = new DevExpress.XtraEditors.GroupControl();
			this.groupControl_WatchWholDayHandle = new DevExpress.XtraEditors.GroupControl();
			this.checkEdit_WatchWholeDayHeat = new DevExpress.XtraEditors.CheckEdit();
			this.checkEdit_WatchWholeDayCtrSeafood = new DevExpress.XtraEditors.CheckEdit();
			this.checkEdit_WatchWholeDayLifeAttention = new DevExpress.XtraEditors.CheckEdit();
			this.checkEdit_WatchWholeDayCtrAct = new DevExpress.XtraEditors.CheckEdit();
			this.groupControl_WatchWholeDayReg = new DevExpress.XtraEditors.GroupControl();
			this.textEdit_WatchWholeDayElse = new DevExpress.XtraEditors.TextEdit();
			this.notePanel_WatchWholeDayElse = new DevExpress.Utils.Frames.NotePanel();
			this.comboBoxEdit_WatchWholeDayCough = new DevExpress.XtraEditors.ComboBoxEdit();
			this.notePanel_WatchWholeDayCough = new DevExpress.Utils.Frames.NotePanel();
			this.comboBoxEdit_WatchWholeDaySleep = new DevExpress.XtraEditors.ComboBoxEdit();
			this.notePanel_WatchWholeDaySleep = new DevExpress.Utils.Frames.NotePanel();
			this.comboBoxEdit_WatchWholeDayStool = new DevExpress.XtraEditors.ComboBoxEdit();
			this.notePanel_WatchWholeDayStool = new DevExpress.Utils.Frames.NotePanel();
			this.comboBoxEdit_WatchWholeDayAppetite = new DevExpress.XtraEditors.ComboBoxEdit();
			this.notePanel_WatchWholeDayAppetite = new DevExpress.Utils.Frames.NotePanel();
			this.comboBoxEdit_WatchWholeDaySpirit = new DevExpress.XtraEditors.ComboBoxEdit();
			this.notePanel_WatchWholeDaySpirit = new DevExpress.Utils.Frames.NotePanel();
			this.comboBoxEdit_WatchWholeDayMovement = new DevExpress.XtraEditors.ComboBoxEdit();
			this.notePanel_WatchWholeDayMovement = new DevExpress.Utils.Frames.NotePanel();
			this.groupControl_WatchRecList = new DevExpress.XtraEditors.GroupControl();
			this.gridControl_WatchRecList = new DevExpress.XtraGrid.GridControl();
			this.gridView8 = new DevExpress.XtraGrid.Views.Grid.GridView();
			this.gridColumn29 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn30 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn31 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn32 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn33 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn34 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.notePanel_WatchRecList = new DevExpress.Utils.Frames.NotePanel();
			this.panelControl7 = new DevExpress.XtraEditors.PanelControl();
			this.simpleButton_WatchSearch = new DevExpress.XtraEditors.SimpleButton();
			this.simpleButton_WatchBack = new DevExpress.XtraEditors.SimpleButton();
			this.simpleButton_WatchDelete = new DevExpress.XtraEditors.SimpleButton();
			this.simpleButton_WatchReport = new DevExpress.XtraEditors.SimpleButton();
			this.simpleButton_WatchHandle = new DevExpress.XtraEditors.SimpleButton();
			this.xtraTabPage8 = new DevExpress.XtraTab.XtraTabPage();
			this.splitContainerControl9 = new DevExpress.XtraEditors.SplitContainerControl();
			this.groupControl_MedReg_StuList = new DevExpress.XtraEditors.GroupControl();
			this.gridControl_MedReg_StuList = new DevExpress.XtraGrid.GridControl();
			this.gridView9 = new DevExpress.XtraGrid.Views.Grid.GridView();
			this.gridColumn35 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn36 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn37 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn38 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.notePanel2 = new DevExpress.Utils.Frames.NotePanel();
			this.groupControl_MedReg_Ser = new DevExpress.XtraEditors.GroupControl();
			this.notePanel_MedReg_Ser = new DevExpress.Utils.Frames.NotePanel();
			this.textEdit_MedReg_Number = new DevExpress.XtraEditors.TextEdit();
			this.textEdit_MedReg_Name = new DevExpress.XtraEditors.TextEdit();
			this.comboBoxEdit_MedReg_Class = new DevExpress.XtraEditors.ComboBoxEdit();
			this.notePanel_MedReg_Class = new DevExpress.Utils.Frames.NotePanel();
			this.comboBoxEdit_MedReg_Grade = new DevExpress.XtraEditors.ComboBoxEdit();
			this.notePanel_MedReg_Grade = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_MedReg_Number = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_MedReg_Name = new DevExpress.Utils.Frames.NotePanel();
			this.groupControl_MedReg_MedInfo = new DevExpress.XtraEditors.GroupControl();
			this.textEdit_MedReg_MedName = new DevExpress.XtraEditors.TextEdit();
			this.textEdit_MedReg_Taketimes = new DevExpress.XtraEditors.TextEdit();
			this.textEdit_MedReg_MedTake = new DevExpress.XtraEditors.TextEdit();
			this.textEdit_MedReg_MedType = new DevExpress.XtraEditors.TextEdit();
			this.notePanel_MedReg_Taketimes = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_MedReg_MedTake = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_MedReg_MedType = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_MedReg_MedName = new DevExpress.Utils.Frames.NotePanel();
			this.groupControl_MedReg_MedCarrInfo = new DevExpress.XtraEditors.GroupControl();
			this.listBoxControl_MedReg_MedCarrInfo = new DevExpress.XtraEditors.ListBoxControl();
			this.simpleButton_MedReg_MedCarrDel = new DevExpress.XtraEditors.SimpleButton();
			this.simpleButton_MedReg_MedCarrAdd = new DevExpress.XtraEditors.SimpleButton();
			this.listBoxControl_MedReg_MedInfo = new DevExpress.XtraEditors.ListBoxControl();
			this.groupControl_MedReg_DiagInfo = new DevExpress.XtraEditors.GroupControl();
			this.textEdit_MedReg_Else = new DevExpress.XtraEditors.TextEdit();
			this.textEdit_MedReg_FacialSym = new DevExpress.XtraEditors.TextEdit();
			this.notePanel_MedReg_Else = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_MedReg_FacialSym = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_MedReg_SkinSym = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_MedReg_AbdomenSym = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_MedReg_EnteronSym = new DevExpress.Utils.Frames.NotePanel();
			this.textEdit_MedReg_SkinSym = new DevExpress.XtraEditors.TextEdit();
			this.textEdit_MedReg_AbdomenSym = new DevExpress.XtraEditors.TextEdit();
			this.textEdit_MedReg_EnteronSym = new DevExpress.XtraEditors.TextEdit();
			this.textEdit_MedReg_ThroatSym = new DevExpress.XtraEditors.TextEdit();
			this.notePanel__MedReg_ThroatSym = new DevExpress.Utils.Frames.NotePanel();
			this.textEdit_MedReg_LungSym = new DevExpress.XtraEditors.TextEdit();
			this.notePanel_MedReg_LungSym = new DevExpress.Utils.Frames.NotePanel();
			this.textEdit_MedReg_UpperSym = new DevExpress.XtraEditors.TextEdit();
			this.notePanel_MedReg_UpperSym = new DevExpress.Utils.Frames.NotePanel();
			this.comboBoxEdit_MedReg_Diag = new DevExpress.XtraEditors.ComboBoxEdit();
			this.notePanel_MedReg_Diag = new DevExpress.Utils.Frames.NotePanel();
			this.panelControl8 = new DevExpress.XtraEditors.PanelControl();
			this.simpleButton_MedReg_Ser = new DevExpress.XtraEditors.SimpleButton();
			this.simpleButton_MedReg_Modify = new DevExpress.XtraEditors.SimpleButton();
			this.simpleButton_MedReg_Reg = new DevExpress.XtraEditors.SimpleButton();
			this.simpleButton_MedReg_Save = new DevExpress.XtraEditors.SimpleButton();
			this.simpleButton_MedReg_Back = new DevExpress.XtraEditors.SimpleButton();
			this.xtraTabPage9 = new DevExpress.XtraTab.XtraTabPage();
			this.splitContainerControl10 = new DevExpress.XtraEditors.SplitContainerControl();
			this.groupControl_MedRec_AbnStuList = new DevExpress.XtraEditors.GroupControl();
			this.gridControl_MedRec_AbnStuList = new DevExpress.XtraGrid.GridControl();
			this.gridView10 = new DevExpress.XtraGrid.Views.Grid.GridView();
			this.gridColumn39 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn40 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn41 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn42 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn43 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.notePanel_MedRec_AbnStuList = new DevExpress.Utils.Frames.NotePanel();
			this.groupControl_MedRec_Ser = new DevExpress.XtraEditors.GroupControl();
			this.textEdit_MedRec_Number = new DevExpress.XtraEditors.TextEdit();
			this.textEdit_MedRec_Name = new DevExpress.XtraEditors.TextEdit();
			this.dateEdit_MedRec_EndDate = new DevExpress.XtraEditors.DateEdit();
			this.notePanel_MedRec_EndDate = new DevExpress.Utils.Frames.NotePanel();
			this.dateEdit_MedRec_BegDate = new DevExpress.XtraEditors.DateEdit();
			this.notePanel_MedRec_BegDate = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_MedRec_Ser = new DevExpress.Utils.Frames.NotePanel();
			this.textEdit_MedRec_DoseRecDiaID = new DevExpress.XtraEditors.TextEdit();
			this.textEdit_MedRec_AbnDiaID = new DevExpress.XtraEditors.TextEdit();
			this.comboBoxEdit_MedRec_Class = new DevExpress.XtraEditors.ComboBoxEdit();
			this.notePanel_MedRec_Class = new DevExpress.Utils.Frames.NotePanel();
			this.comboBoxEdit_MedRec_Grade = new DevExpress.XtraEditors.ComboBoxEdit();
			this.notePanel_MedRec_Grade = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_MedRec_Number = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_MedRec_Name = new DevExpress.Utils.Frames.NotePanel();
			this.groupControl_MedRec_DiagAndDoseAdd = new DevExpress.XtraEditors.GroupControl();
			this.groupControl_MedRec_DoseAdd = new DevExpress.XtraEditors.GroupControl();
			this.notePanel_MedRec_TakeRule = new DevExpress.Utils.Frames.NotePanel();
			this.listBoxControl_MedRec_MedCarrInfo = new DevExpress.XtraEditors.ListBoxControl();
			this.comboBoxEdit_MedRec_TakeRule = new DevExpress.XtraEditors.ComboBoxEdit();
			this.timeEdit_MedRec_TakeTime = new DevExpress.XtraEditors.TimeEdit();
			this.notePanel_MedRec_TakeDate = new DevExpress.Utils.Frames.NotePanel();
			this.textEdit_MedRec_MedTake = new DevExpress.XtraEditors.TextEdit();
			this.notePanel_MedRec_MedTake = new DevExpress.Utils.Frames.NotePanel();
			this.textEdit_MedRec_MedName = new DevExpress.XtraEditors.TextEdit();
			this.notePanel_MedRec_MedName = new DevExpress.Utils.Frames.NotePanel();
			this.groupControl_MedRec_DiagInfo = new DevExpress.XtraEditors.GroupControl();
			this.textEdit_MedRec_Diag = new DevExpress.XtraEditors.TextEdit();
			this.textEdit_MedRec_Else = new DevExpress.XtraEditors.TextEdit();
			this.textEdit_MedRec_FacialSym = new DevExpress.XtraEditors.TextEdit();
			this.notePanel_MedRec_Else = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_MedRec_FacialSym = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_MedRec_SkinSym = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_MedRec_AbdomenSym = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_MedRec_EnteronSym = new DevExpress.Utils.Frames.NotePanel();
			this.textEdit_MedRec_SkinSym = new DevExpress.XtraEditors.TextEdit();
			this.textEdit_MedRec_AbdomenSym = new DevExpress.XtraEditors.TextEdit();
			this.textEdit_MedRec_EnteronSym = new DevExpress.XtraEditors.TextEdit();
			this.textEdit_MedRec_ThroatSym = new DevExpress.XtraEditors.TextEdit();
			this.notePanel_MedRec_ThroatSym = new DevExpress.Utils.Frames.NotePanel();
			this.textEdit_MedRec_LungSym = new DevExpress.XtraEditors.TextEdit();
			this.notePanel_MedRec_LungSym = new DevExpress.Utils.Frames.NotePanel();
			this.textEdit_MedRec_UpperSym = new DevExpress.XtraEditors.TextEdit();
			this.notePanel_MedRec_UpperSym = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_MedRec_Diag = new DevExpress.Utils.Frames.NotePanel();
			this.groupControl_MedRec_DoseRec = new DevExpress.XtraEditors.GroupControl();
			this.gridControl_MedRec_DoseRec = new DevExpress.XtraGrid.GridControl();
			this.gridView11 = new DevExpress.XtraGrid.Views.Grid.GridView();
			this.gridColumn49 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn48 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn44 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn45 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn46 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn47 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridView12 = new DevExpress.XtraGrid.Views.Grid.GridView();
			this.notePanel_MedRec_DoseRec = new DevExpress.Utils.Frames.NotePanel();
			this.panelControl9 = new DevExpress.XtraEditors.PanelControl();
			this.simpleButton_AbnormalSer = new DevExpress.XtraEditors.SimpleButton();
			this.simpleButton_MedRec_Report = new DevExpress.XtraEditors.SimpleButton();
			this.simpleButton_MedRec_Add = new DevExpress.XtraEditors.SimpleButton();
			this.simpleButton_MedRec_Back = new DevExpress.XtraEditors.SimpleButton();
			this.barManager1 = new DevExpress.XtraBars.BarManager();
			this.popupMenu4 = new DevExpress.XtraBars.PopupMenu();
			this.barButtonItem_RecipeRefresh = new DevExpress.XtraBars.BarButtonItem();
			this.barButtonItem_RecipeDelete = new DevExpress.XtraBars.BarButtonItem();
			this.popupMenu1 = new DevExpress.XtraBars.PopupMenu();
			this.barButtonItem_MealRefresh = new DevExpress.XtraBars.BarButtonItem();
			this.popupMenu2 = new DevExpress.XtraBars.PopupMenu();
			this.barButtonItem_MedReg_MedAdd = new DevExpress.XtraBars.BarButtonItem();
			this.barButtonItem_MedReg_MedModify = new DevExpress.XtraBars.BarButtonItem();
			this.barButtonItem_MedReg_MedDel = new DevExpress.XtraBars.BarButtonItem();
			this.popupMenu3 = new DevExpress.XtraBars.PopupMenu();
			this.barButtonItem_MedRec_MultiSer = new DevExpress.XtraBars.BarButtonItem();
			this.barButtonItem_MedRec_MedDel = new DevExpress.XtraBars.BarButtonItem();
			this.barDockControlTop = new DevExpress.XtraBars.BarDockControl();
			this.barDockControlBottom = new DevExpress.XtraBars.BarDockControl();
			this.barDockControlLeft = new DevExpress.XtraBars.BarDockControl();
			this.barDockControlRight = new DevExpress.XtraBars.BarDockControl();
			this.gridView14 = new DevExpress.XtraGrid.Views.Grid.GridView();
			this.saveFileDialog_Report = new System.Windows.Forms.SaveFileDialog();
			this.gridColumn15 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn14 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn13 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn12 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridView3 = new DevExpress.XtraGrid.Views.Grid.GridView();
			this.helpProvider_NutritionInfo = new System.Windows.Forms.HelpProvider();
			((System.ComponentModel.ISupportInitialize)(this.xtraTabControl1)).BeginInit();
			this.xtraTabControl1.SuspendLayout();
			this.xtraTabPage1.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.splitContainerControl1)).BeginInit();
			this.splitContainerControl1.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_FoodCategory)).BeginInit();
			this.groupControl_FoodCategory.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.treeList_FoodStock)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_FoodNutModify)).BeginInit();
			this.groupControl_FoodNutModify.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_FoodName.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.memoEdit_FoodRemark.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_Energy.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_Carbohydrate.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_Fat.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_Protein.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_FoodCategory.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_FoodNutrition)).BeginInit();
			this.groupControl_FoodNutrition.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.gridControl_FoodNutrition)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
			this.panelControl1.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_FoodSearch.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_BindingID.Properties)).BeginInit();
			this.xtraTabPage2.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.splitContainerControl2)).BeginInit();
			this.splitContainerControl2.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.panelControl10)).BeginInit();
			this.panelControl10.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.gridControl_Recipe_FoodNutrition)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.gridView4)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.gridView2)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_RecipeLogin)).BeginInit();
			this.groupControl_RecipeLogin.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_RecipeLogin_FoodName.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_RecipeLogin_Name.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.dateEdit_RecipeLogin_Date.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_RecipeLogin_FoodTake.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_RecipeLogin_BindingID.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_RecipeSer)).BeginInit();
			this.groupControl_RecipeSer.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_RecipeSer_FoodCategory.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_RecipeSer_FoodName.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_RecipeOpr)).BeginInit();
			this.groupControl_RecipeOpr.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.panelControl11)).BeginInit();
			this.panelControl11.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.gridControl_RecipeLogin)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.gridView13)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.panelControl2)).BeginInit();
			this.panelControl2.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_Recipe_FoodName.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_Recipe_RecipeCategory.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.dateEdit_Recipe_EndDate.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.dateEdit_Recipe_BegDate.Properties)).BeginInit();
			this.xtraTabPage3.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.splitContainerControl3)).BeginInit();
			this.splitContainerControl3.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_MealLogin)).BeginInit();
			this.groupControl_MealLogin.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.checkEdit_Snack.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.checkEdit_Dinner.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.checkEdit_Lunch.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.checkEdit_Breakfast.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_MealAdd)).BeginInit();
			this.groupControl_MealAdd.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MealName.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MealRemark.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MealID.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_MealArr)).BeginInit();
			this.groupControl_MealArr.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.splitContainerControl4)).BeginInit();
			this.splitContainerControl4.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.checkEdit_MealArr_gThree.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.checkEdit_MealArr_gTwo.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.checkEdit_MealArr_gOne.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_MealArr_Name.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.checkEdit_MealArr_gFour.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.checkEdit_MealArr_gFive.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.checkEdit_MealArr_IsUsed.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_MealPreview)).BeginInit();
			this.groupControl_MealPreview.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.gridControl_MealPreview)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.gridView5)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.panelControl3)).BeginInit();
			this.panelControl3.SuspendLayout();
			this.xtraTabPage4.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.splitContainerControl5)).BeginInit();
			this.splitContainerControl5.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_Meal_Search)).BeginInit();
			this.groupControl_Meal_Search.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.dateEdit_Meal_EndDate.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.dateEdit_Meal_BegDate.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_Meal_ReportPreview)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.panelControl4)).BeginInit();
			this.panelControl4.SuspendLayout();
			this.xtraTabPage5.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.splitContainerControl6)).BeginInit();
			this.splitContainerControl6.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.gridControl_HInputStu)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.gridView6)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_HInputSer)).BeginInit();
			this.groupControl_HInputSer.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_HInputGender.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_HInputNumber.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_HInputName.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_HInputClass.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_HInputGrade.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_HInputDiagInfo)).BeginInit();
			this.groupControl_HInputDiagInfo.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_HInputRegion.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_HInputStd.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_DiagCheckName.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_DiagCheckBindingID.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_HInputDiagResult)).BeginInit();
			this.groupControl_HInputDiagResult.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_DiagResultX.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_DiagResultWHOPer.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_DiagResultHeightWeight.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_DiagResultUnderWeight.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_DiagResultStunting.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_DiagResultWasting.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_DiagResultHeight.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_DiagResultWeight.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_DiagResultWHO.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_DiagResultNut.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_DiagResultAge.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.memoEdit_DiagRemark.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_DiagWeight.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_DiagHeight.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.dateEdit_DiagCheckDate.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_HInputBirthday.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_DiagCheckGender.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.panelControl5)).BeginInit();
			this.panelControl5.SuspendLayout();
			this.xtraTabPage6.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.splitContainerControl7)).BeginInit();
			this.splitContainerControl7.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_HOutputPrintType)).BeginInit();
			this.groupControl_HOutputPrintType.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.checkEdit_HOutputPrintType4th.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.checkEdit_HOutputPrintType3rd.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.checkEdit_HOutputPrintType2nd.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.checkEdit_HOutputPrintType1st.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_HOutputSer)).BeginInit();
			this.groupControl_HOutputSer.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_HOutputRegion.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.dateEdit_HOutputEndDate.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.dateEdit_HOutputBegDate.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_HOutputGender.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_HOutputResult.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_HOutputType.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_HOutputAge.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_HOutputNumber.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_HOutputName.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_HOutputClass.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_HOutputGrade.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.gridControl_HOutputNchsGrid)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.advBandedGridView2)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.gridControl_HOutputGridShow)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.advBandedGridView1)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.panelControl6)).BeginInit();
			this.panelControl6.SuspendLayout();
			this.xtraTabPage7.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.splitContainerControl8)).BeginInit();
			this.splitContainerControl8.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_WatchMorningRec)).BeginInit();
			this.groupControl_WatchMorningRec.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_WatchMorningTreat.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_WatchMorningOState.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_WatchMorningHeat.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_WatchMorningMouth.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_WatchMorningSpirit.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_WatchMorningSkin.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_WatchMorningNumber.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_WatchMorningName.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_WatchStuList)).BeginInit();
			this.groupControl_WatchStuList.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.gridControl_WatchStuList)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.gridView7)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_WatchSer)).BeginInit();
			this.groupControl_WatchSer.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_WatchName.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.dateEdit_WatchEndDate.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.dateEdit_WatchBegDate.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_WatchState.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_WatchNumber.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_WatchClass.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_WatchGrade.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_WatchWholeDay)).BeginInit();
			this.groupControl_WatchWholeDay.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_WatchWholDayHandle)).BeginInit();
			this.groupControl_WatchWholDayHandle.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.checkEdit_WatchWholeDayHeat.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.checkEdit_WatchWholeDayCtrSeafood.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.checkEdit_WatchWholeDayLifeAttention.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.checkEdit_WatchWholeDayCtrAct.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_WatchWholeDayReg)).BeginInit();
			this.groupControl_WatchWholeDayReg.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_WatchWholeDayElse.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_WatchWholeDayCough.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_WatchWholeDaySleep.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_WatchWholeDayStool.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_WatchWholeDayAppetite.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_WatchWholeDaySpirit.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_WatchWholeDayMovement.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_WatchRecList)).BeginInit();
			this.groupControl_WatchRecList.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.gridControl_WatchRecList)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.gridView8)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.panelControl7)).BeginInit();
			this.panelControl7.SuspendLayout();
			this.xtraTabPage8.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.splitContainerControl9)).BeginInit();
			this.splitContainerControl9.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_MedReg_StuList)).BeginInit();
			this.groupControl_MedReg_StuList.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.gridControl_MedReg_StuList)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.gridView9)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_MedReg_Ser)).BeginInit();
			this.groupControl_MedReg_Ser.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MedReg_Number.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MedReg_Name.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_MedReg_Class.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_MedReg_Grade.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_MedReg_MedInfo)).BeginInit();
			this.groupControl_MedReg_MedInfo.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MedReg_MedName.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MedReg_Taketimes.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MedReg_MedTake.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MedReg_MedType.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_MedReg_MedCarrInfo)).BeginInit();
			this.groupControl_MedReg_MedCarrInfo.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.listBoxControl_MedReg_MedCarrInfo)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.listBoxControl_MedReg_MedInfo)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_MedReg_DiagInfo)).BeginInit();
			this.groupControl_MedReg_DiagInfo.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MedReg_Else.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MedReg_FacialSym.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MedReg_SkinSym.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MedReg_AbdomenSym.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MedReg_EnteronSym.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MedReg_ThroatSym.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MedReg_LungSym.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MedReg_UpperSym.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_MedReg_Diag.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.panelControl8)).BeginInit();
			this.panelControl8.SuspendLayout();
			this.xtraTabPage9.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.splitContainerControl10)).BeginInit();
			this.splitContainerControl10.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_MedRec_AbnStuList)).BeginInit();
			this.groupControl_MedRec_AbnStuList.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.gridControl_MedRec_AbnStuList)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.gridView10)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_MedRec_Ser)).BeginInit();
			this.groupControl_MedRec_Ser.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MedRec_Number.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MedRec_Name.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.dateEdit_MedRec_EndDate.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.dateEdit_MedRec_BegDate.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MedRec_DoseRecDiaID.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MedRec_AbnDiaID.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_MedRec_Class.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_MedRec_Grade.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_MedRec_DiagAndDoseAdd)).BeginInit();
			this.groupControl_MedRec_DiagAndDoseAdd.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_MedRec_DoseAdd)).BeginInit();
			this.groupControl_MedRec_DoseAdd.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.listBoxControl_MedRec_MedCarrInfo)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_MedRec_TakeRule.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.timeEdit_MedRec_TakeTime.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MedRec_MedTake.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MedRec_MedName.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_MedRec_DiagInfo)).BeginInit();
			this.groupControl_MedRec_DiagInfo.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MedRec_Diag.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MedRec_Else.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MedRec_FacialSym.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MedRec_SkinSym.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MedRec_AbdomenSym.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MedRec_EnteronSym.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MedRec_ThroatSym.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MedRec_LungSym.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MedRec_UpperSym.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_MedRec_DoseRec)).BeginInit();
			this.groupControl_MedRec_DoseRec.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.gridControl_MedRec_DoseRec)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.gridView11)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.gridView12)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.panelControl9)).BeginInit();
			this.panelControl9.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.barManager1)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.popupMenu4)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.popupMenu1)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.popupMenu2)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.popupMenu3)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.gridView14)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.gridView3)).BeginInit();
			this.SuspendLayout();
			// 
			// xtraTabControl1
			// 
			this.xtraTabControl1.AppearancePage.HeaderActive.ForeColor = System.Drawing.Color.DarkOrange;
			this.xtraTabControl1.AppearancePage.HeaderActive.Options.UseForeColor = true;
			this.xtraTabControl1.Controls.Add(this.xtraTabPage1);
			this.xtraTabControl1.Controls.Add(this.xtraTabPage2);
			this.xtraTabControl1.Controls.Add(this.xtraTabPage3);
			this.xtraTabControl1.Controls.Add(this.xtraTabPage4);
			this.xtraTabControl1.Controls.Add(this.xtraTabPage5);
			this.xtraTabControl1.Controls.Add(this.xtraTabPage6);
			this.xtraTabControl1.Controls.Add(this.xtraTabPage7);
			this.xtraTabControl1.Controls.Add(this.xtraTabPage8);
			this.xtraTabControl1.Controls.Add(this.xtraTabPage9);
			this.xtraTabControl1.Dock = System.Windows.Forms.DockStyle.Fill;
			this.xtraTabControl1.Location = new System.Drawing.Point(0, 0);
			this.xtraTabControl1.Name = "xtraTabControl1";
			this.xtraTabControl1.SelectedTabPage = this.xtraTabPage9;
			this.xtraTabControl1.Size = new System.Drawing.Size(772, 540);
			this.xtraTabControl1.TabIndex = 0;
			this.xtraTabControl1.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
																							this.xtraTabPage1,
																							this.xtraTabPage2,
																							this.xtraTabPage3,
																							this.xtraTabPage4,
																							this.xtraTabPage5,
																							this.xtraTabPage6,
																							this.xtraTabPage7,
																							this.xtraTabPage8,
																							this.xtraTabPage9});
			this.xtraTabControl1.Text = "xtraTabControl1";
			// 
			// xtraTabPage1
			// 
			this.xtraTabPage1.Appearance.PageClient.BackColor = System.Drawing.Color.WhiteSmoke;
			this.xtraTabPage1.Appearance.PageClient.Options.UseBackColor = true;
			this.xtraTabPage1.Controls.Add(this.splitContainerControl1);
			this.xtraTabPage1.Name = "xtraTabPage1";
			this.xtraTabPage1.PageVisible = false;
			this.xtraTabPage1.Size = new System.Drawing.Size(768, 515);
			this.xtraTabPage1.Text = "食物库存管理";
			// 
			// splitContainerControl1
			// 
			this.splitContainerControl1.Dock = System.Windows.Forms.DockStyle.Fill;
			this.splitContainerControl1.Location = new System.Drawing.Point(0, 0);
			this.splitContainerControl1.Name = "splitContainerControl1";
			this.splitContainerControl1.Panel1.Controls.Add(this.groupControl_FoodCategory);
			this.splitContainerControl1.Panel1.Text = "splitContainerControl1_Panel1";
			this.splitContainerControl1.Panel2.Controls.Add(this.groupControl_FoodNutModify);
			this.splitContainerControl1.Panel2.Controls.Add(this.groupControl_FoodNutrition);
			this.splitContainerControl1.Panel2.Controls.Add(this.panelControl1);
			this.splitContainerControl1.Panel2.Text = "splitContainerControl1_Panel2";
			this.splitContainerControl1.Size = new System.Drawing.Size(768, 515);
			this.splitContainerControl1.SplitterPosition = 175;
			this.splitContainerControl1.TabIndex = 0;
			this.splitContainerControl1.Text = "splitContainerControl1";
			// 
			// groupControl_FoodCategory
			// 
			this.groupControl_FoodCategory.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.groupControl_FoodCategory.AppearanceCaption.Options.UseFont = true;
			this.groupControl_FoodCategory.Controls.Add(this.treeList_FoodStock);
			this.groupControl_FoodCategory.Dock = System.Windows.Forms.DockStyle.Top;
			this.groupControl_FoodCategory.Location = new System.Drawing.Point(0, 0);
			this.groupControl_FoodCategory.Name = "groupControl_FoodCategory";
			this.groupControl_FoodCategory.Size = new System.Drawing.Size(169, 272);
			this.groupControl_FoodCategory.TabIndex = 0;
			this.groupControl_FoodCategory.Text = "食物库存分类";
			// 
			// treeList_FoodStock
			// 
			this.treeList_FoodStock.Columns.AddRange(new DevExpress.XtraTreeList.Columns.TreeListColumn[] {
																											  this.treeListColumn1});
			this.treeList_FoodStock.Dock = System.Windows.Forms.DockStyle.Fill;
			this.treeList_FoodStock.Location = new System.Drawing.Point(3, 18);
			this.treeList_FoodStock.Name = "treeList_FoodStock";
			this.treeList_FoodStock.Size = new System.Drawing.Size(163, 251);
			this.treeList_FoodStock.StateImageList = this.imageList1;
			this.treeList_FoodStock.TabIndex = 0;
			this.treeList_FoodStock.FocusedNodeChanged += new DevExpress.XtraTreeList.FocusedNodeChangedEventHandler(this.treeList_FoodStock_FocusedNodeChanged);
			// 
			// treeListColumn1
			// 
			this.treeListColumn1.Caption = "食物库存";
			this.treeListColumn1.FieldName = "食物库存";
			this.treeListColumn1.Name = "treeListColumn1";
			this.treeListColumn1.OptionsColumn.AllowEdit = false;
			this.treeListColumn1.OptionsColumn.AllowMove = false;
			this.treeListColumn1.OptionsColumn.AllowMoveToCustomizationForm = false;
			this.treeListColumn1.OptionsColumn.AllowSize = false;
			this.treeListColumn1.VisibleIndex = 0;
			// 
			// imageList1
			// 
			this.imageList1.ImageSize = new System.Drawing.Size(16, 16);
			this.imageList1.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
			this.imageList1.TransparentColor = System.Drawing.Color.Transparent;
			// 
			// groupControl_FoodNutModify
			// 
			this.groupControl_FoodNutModify.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.groupControl_FoodNutModify.AppearanceCaption.Options.UseFont = true;
			this.groupControl_FoodNutModify.Controls.Add(this.textEdit_FoodName);
			this.groupControl_FoodNutModify.Controls.Add(this.notePanel7);
			this.groupControl_FoodNutModify.Controls.Add(this.memoEdit_FoodRemark);
			this.groupControl_FoodNutModify.Controls.Add(this.notePanel_FoodRemark);
			this.groupControl_FoodNutModify.Controls.Add(this.textEdit_Energy);
			this.groupControl_FoodNutModify.Controls.Add(this.textEdit_Carbohydrate);
			this.groupControl_FoodNutModify.Controls.Add(this.textEdit_Fat);
			this.groupControl_FoodNutModify.Controls.Add(this.textEdit_Protein);
			this.groupControl_FoodNutModify.Controls.Add(this.notePanel_Energy);
			this.groupControl_FoodNutModify.Controls.Add(this.notePanel_Carbohydrate);
			this.groupControl_FoodNutModify.Controls.Add(this.notePanel_Fat);
			this.groupControl_FoodNutModify.Controls.Add(this.notePanel_Protein);
			this.groupControl_FoodNutModify.Controls.Add(this.comboBoxEdit_FoodCategory);
			this.groupControl_FoodNutModify.Controls.Add(this.notePanel_FoodCategory);
			this.groupControl_FoodNutModify.Controls.Add(this.notePanel_FoodName);
			this.groupControl_FoodNutModify.Dock = System.Windows.Forms.DockStyle.Top;
			this.groupControl_FoodNutModify.Location = new System.Drawing.Point(0, 64);
			this.groupControl_FoodNutModify.Name = "groupControl_FoodNutModify";
			this.groupControl_FoodNutModify.Size = new System.Drawing.Size(583, 272);
			this.groupControl_FoodNutModify.TabIndex = 2;
			this.groupControl_FoodNutModify.Text = "成份修改与保存";
			// 
			// textEdit_FoodName
			// 
			this.textEdit_FoodName.EditValue = "";
			this.textEdit_FoodName.Location = new System.Drawing.Point(152, 64);
			this.textEdit_FoodName.Name = "textEdit_FoodName";
			this.textEdit_FoodName.Size = new System.Drawing.Size(96, 23);
			this.textEdit_FoodName.TabIndex = 45;
			// 
			// notePanel7
			// 
			this.notePanel7.BackColor = System.Drawing.Color.LightGoldenrodYellow;
			this.notePanel7.Dock = System.Windows.Forms.DockStyle.Top;
			this.notePanel7.ForeColor = System.Drawing.Color.Gray;
			this.notePanel7.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel7.Location = new System.Drawing.Point(3, 18);
			this.notePanel7.MaxRows = 5;
			this.notePanel7.Name = "notePanel7";
			this.notePanel7.ParentAutoHeight = true;
			this.notePanel7.Size = new System.Drawing.Size(577, 23);
			this.notePanel7.TabIndex = 44;
			this.notePanel7.TabStop = false;
			this.notePanel7.Text = "注: 食物营成份以(克/斤)计算";
			// 
			// memoEdit_FoodRemark
			// 
			this.memoEdit_FoodRemark.EditValue = "";
			this.memoEdit_FoodRemark.Location = new System.Drawing.Point(272, 96);
			this.memoEdit_FoodRemark.Name = "memoEdit_FoodRemark";
			this.memoEdit_FoodRemark.Size = new System.Drawing.Size(208, 152);
			this.memoEdit_FoodRemark.TabIndex = 43;
			// 
			// notePanel_FoodRemark
			// 
			this.notePanel_FoodRemark.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_FoodRemark.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_FoodRemark.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_FoodRemark.ForeColor = System.Drawing.Color.Black;
			this.notePanel_FoodRemark.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_FoodRemark.Location = new System.Drawing.Point(272, 64);
			this.notePanel_FoodRemark.MaxRows = 5;
			this.notePanel_FoodRemark.Name = "notePanel_FoodRemark";
			this.notePanel_FoodRemark.ParentAutoHeight = true;
			this.notePanel_FoodRemark.Size = new System.Drawing.Size(208, 22);
			this.notePanel_FoodRemark.TabIndex = 42;
			this.notePanel_FoodRemark.TabStop = false;
			this.notePanel_FoodRemark.Text = "                     备  注:";
			// 
			// textEdit_Energy
			// 
			this.textEdit_Energy.EditValue = "";
			this.textEdit_Energy.Location = new System.Drawing.Point(152, 224);
			this.textEdit_Energy.Name = "textEdit_Energy";
			this.textEdit_Energy.Size = new System.Drawing.Size(96, 23);
			this.textEdit_Energy.TabIndex = 40;
			// 
			// textEdit_Carbohydrate
			// 
			this.textEdit_Carbohydrate.EditValue = "";
			this.textEdit_Carbohydrate.Location = new System.Drawing.Point(152, 192);
			this.textEdit_Carbohydrate.Name = "textEdit_Carbohydrate";
			this.textEdit_Carbohydrate.Size = new System.Drawing.Size(96, 23);
			this.textEdit_Carbohydrate.TabIndex = 39;
			// 
			// textEdit_Fat
			// 
			this.textEdit_Fat.EditValue = "";
			this.textEdit_Fat.Location = new System.Drawing.Point(152, 160);
			this.textEdit_Fat.Name = "textEdit_Fat";
			this.textEdit_Fat.Size = new System.Drawing.Size(96, 23);
			this.textEdit_Fat.TabIndex = 38;
			// 
			// textEdit_Protein
			// 
			this.textEdit_Protein.EditValue = "";
			this.textEdit_Protein.Location = new System.Drawing.Point(152, 128);
			this.textEdit_Protein.Name = "textEdit_Protein";
			this.textEdit_Protein.Size = new System.Drawing.Size(96, 23);
			this.textEdit_Protein.TabIndex = 37;
			// 
			// notePanel_Energy
			// 
			this.notePanel_Energy.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_Energy.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_Energy.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_Energy.ForeColor = System.Drawing.Color.Black;
			this.notePanel_Energy.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_Energy.Location = new System.Drawing.Point(40, 224);
			this.notePanel_Energy.MaxRows = 5;
			this.notePanel_Energy.Name = "notePanel_Energy";
			this.notePanel_Energy.ParentAutoHeight = true;
			this.notePanel_Energy.Size = new System.Drawing.Size(96, 22);
			this.notePanel_Energy.TabIndex = 36;
			this.notePanel_Energy.TabStop = false;
			this.notePanel_Energy.Text = "     热  量:";
			// 
			// notePanel_Carbohydrate
			// 
			this.notePanel_Carbohydrate.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_Carbohydrate.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_Carbohydrate.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_Carbohydrate.ForeColor = System.Drawing.Color.Black;
			this.notePanel_Carbohydrate.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_Carbohydrate.Location = new System.Drawing.Point(40, 192);
			this.notePanel_Carbohydrate.MaxRows = 5;
			this.notePanel_Carbohydrate.Name = "notePanel_Carbohydrate";
			this.notePanel_Carbohydrate.ParentAutoHeight = true;
			this.notePanel_Carbohydrate.Size = new System.Drawing.Size(96, 22);
			this.notePanel_Carbohydrate.TabIndex = 35;
			this.notePanel_Carbohydrate.TabStop = false;
			this.notePanel_Carbohydrate.Text = "碳水化合物:";
			// 
			// notePanel_Fat
			// 
			this.notePanel_Fat.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_Fat.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_Fat.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_Fat.ForeColor = System.Drawing.Color.Black;
			this.notePanel_Fat.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_Fat.Location = new System.Drawing.Point(40, 160);
			this.notePanel_Fat.MaxRows = 5;
			this.notePanel_Fat.Name = "notePanel_Fat";
			this.notePanel_Fat.ParentAutoHeight = true;
			this.notePanel_Fat.Size = new System.Drawing.Size(96, 22);
			this.notePanel_Fat.TabIndex = 34;
			this.notePanel_Fat.TabStop = false;
			this.notePanel_Fat.Text = "  脂肪含量:";
			// 
			// notePanel_Protein
			// 
			this.notePanel_Protein.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_Protein.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_Protein.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_Protein.ForeColor = System.Drawing.Color.Black;
			this.notePanel_Protein.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_Protein.Location = new System.Drawing.Point(40, 128);
			this.notePanel_Protein.MaxRows = 5;
			this.notePanel_Protein.Name = "notePanel_Protein";
			this.notePanel_Protein.ParentAutoHeight = true;
			this.notePanel_Protein.Size = new System.Drawing.Size(96, 22);
			this.notePanel_Protein.TabIndex = 33;
			this.notePanel_Protein.TabStop = false;
			this.notePanel_Protein.Text = "蛋白质含量:";
			// 
			// comboBoxEdit_FoodCategory
			// 
			this.comboBoxEdit_FoodCategory.EditValue = "其他";
			this.comboBoxEdit_FoodCategory.Location = new System.Drawing.Point(152, 96);
			this.comboBoxEdit_FoodCategory.Name = "comboBoxEdit_FoodCategory";
			// 
			// comboBoxEdit_FoodCategory.Properties
			// 
			this.comboBoxEdit_FoodCategory.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																															  new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.comboBoxEdit_FoodCategory.Properties.Items.AddRange(new object[] {
																					  "肉禽水产类",
																					  "水果类",
																					  "蔬菜类",
																					  "粮食类",
																					  "调味品",
																					  "糕点",
																					  "豆制品",
																					  "乳类",
																					  "菌藻类",
																					  "其他"});
			this.comboBoxEdit_FoodCategory.Size = new System.Drawing.Size(96, 23);
			this.comboBoxEdit_FoodCategory.TabIndex = 32;
			// 
			// notePanel_FoodCategory
			// 
			this.notePanel_FoodCategory.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_FoodCategory.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_FoodCategory.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_FoodCategory.ForeColor = System.Drawing.Color.Black;
			this.notePanel_FoodCategory.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_FoodCategory.Location = new System.Drawing.Point(40, 96);
			this.notePanel_FoodCategory.MaxRows = 5;
			this.notePanel_FoodCategory.Name = "notePanel_FoodCategory";
			this.notePanel_FoodCategory.ParentAutoHeight = true;
			this.notePanel_FoodCategory.Size = new System.Drawing.Size(96, 22);
			this.notePanel_FoodCategory.TabIndex = 31;
			this.notePanel_FoodCategory.TabStop = false;
			this.notePanel_FoodCategory.Text = "  食物类别:";
			// 
			// notePanel_FoodName
			// 
			this.notePanel_FoodName.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_FoodName.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_FoodName.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_FoodName.ForeColor = System.Drawing.Color.Black;
			this.notePanel_FoodName.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_FoodName.Location = new System.Drawing.Point(40, 64);
			this.notePanel_FoodName.MaxRows = 5;
			this.notePanel_FoodName.Name = "notePanel_FoodName";
			this.notePanel_FoodName.ParentAutoHeight = true;
			this.notePanel_FoodName.Size = new System.Drawing.Size(96, 22);
			this.notePanel_FoodName.TabIndex = 13;
			this.notePanel_FoodName.TabStop = false;
			this.notePanel_FoodName.Text = "   食物名:";
			// 
			// groupControl_FoodNutrition
			// 
			this.groupControl_FoodNutrition.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.groupControl_FoodNutrition.AppearanceCaption.Options.UseFont = true;
			this.groupControl_FoodNutrition.Controls.Add(this.gridControl_FoodNutrition);
			this.groupControl_FoodNutrition.Dock = System.Windows.Forms.DockStyle.Fill;
			this.groupControl_FoodNutrition.Location = new System.Drawing.Point(0, 64);
			this.groupControl_FoodNutrition.Name = "groupControl_FoodNutrition";
			this.groupControl_FoodNutrition.Size = new System.Drawing.Size(583, 445);
			this.groupControl_FoodNutrition.TabIndex = 1;
			this.groupControl_FoodNutrition.Text = "食物营养成份";
			// 
			// gridControl_FoodNutrition
			// 
			this.gridControl_FoodNutrition.Dock = System.Windows.Forms.DockStyle.Fill;
			// 
			// gridControl_FoodNutrition.EmbeddedNavigator
			// 
			this.gridControl_FoodNutrition.EmbeddedNavigator.Name = "";
			this.gridControl_FoodNutrition.Location = new System.Drawing.Point(3, 18);
			this.gridControl_FoodNutrition.MainView = this.gridView1;
			this.gridControl_FoodNutrition.Name = "gridControl_FoodNutrition";
			this.gridControl_FoodNutrition.Size = new System.Drawing.Size(577, 424);
			this.gridControl_FoodNutrition.TabIndex = 1;
			this.gridControl_FoodNutrition.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
																													 this.gridView1});
			this.gridControl_FoodNutrition.DoubleClick += new System.EventHandler(this.gridControl_FoodNutrition_DoubleClick);
			// 
			// gridView1
			// 
			this.gridView1.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
																							 this.gridColumn1,
																							 this.gridColumn2,
																							 this.gridColumn3,
																							 this.gridColumn4,
																							 this.gridColumn5,
																							 this.gridColumn6});
			this.gridView1.GridControl = this.gridControl_FoodNutrition;
			this.gridView1.Name = "gridView1";
			this.gridView1.OptionsCustomization.AllowFilter = false;
			this.gridView1.OptionsView.ShowFilterPanel = false;
			this.gridView1.OptionsView.ShowGroupPanel = false;
			// 
			// gridColumn1
			// 
			this.gridColumn1.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn1.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn1.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn1.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn1.Caption = "食物名称";
			this.gridColumn1.FieldName = "FoodNut_FoodName";
			this.gridColumn1.Name = "gridColumn1";
			this.gridColumn1.OptionsColumn.AllowEdit = false;
			this.gridColumn1.OptionsColumn.AllowFocus = false;
			this.gridColumn1.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn1.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn1.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn1.OptionsColumn.AllowMove = false;
			this.gridColumn1.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn1.OptionsColumn.FixedWidth = true;
			this.gridColumn1.OptionsColumn.ReadOnly = true;
			this.gridColumn1.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn1.Visible = true;
			this.gridColumn1.VisibleIndex = 0;
			// 
			// gridColumn2
			// 
			this.gridColumn2.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn2.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn2.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn2.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn2.Caption = "蛋白质";
			this.gridColumn2.FieldName = "FoodNut_Protein";
			this.gridColumn2.Name = "gridColumn2";
			this.gridColumn2.OptionsColumn.AllowEdit = false;
			this.gridColumn2.OptionsColumn.AllowFocus = false;
			this.gridColumn2.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn2.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn2.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn2.OptionsColumn.AllowMove = false;
			this.gridColumn2.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn2.OptionsColumn.FixedWidth = true;
			this.gridColumn2.OptionsColumn.ReadOnly = true;
			this.gridColumn2.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn2.Visible = true;
			this.gridColumn2.VisibleIndex = 1;
			// 
			// gridColumn3
			// 
			this.gridColumn3.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn3.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn3.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn3.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn3.Caption = "脂肪";
			this.gridColumn3.FieldName = "FoodNut_Fat";
			this.gridColumn3.Name = "gridColumn3";
			this.gridColumn3.OptionsColumn.AllowEdit = false;
			this.gridColumn3.OptionsColumn.AllowFocus = false;
			this.gridColumn3.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn3.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn3.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn3.OptionsColumn.AllowMove = false;
			this.gridColumn3.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn3.OptionsColumn.FixedWidth = true;
			this.gridColumn3.OptionsColumn.ReadOnly = true;
			this.gridColumn3.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn3.Visible = true;
			this.gridColumn3.VisibleIndex = 2;
			// 
			// gridColumn4
			// 
			this.gridColumn4.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn4.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn4.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn4.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn4.Caption = "碳水化合物";
			this.gridColumn4.FieldName = "FoodNut_Carbohydrate";
			this.gridColumn4.Name = "gridColumn4";
			this.gridColumn4.OptionsColumn.AllowEdit = false;
			this.gridColumn4.OptionsColumn.AllowFocus = false;
			this.gridColumn4.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn4.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn4.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn4.OptionsColumn.AllowMove = false;
			this.gridColumn4.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn4.OptionsColumn.FixedWidth = true;
			this.gridColumn4.OptionsColumn.ReadOnly = true;
			this.gridColumn4.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn4.Visible = true;
			this.gridColumn4.VisibleIndex = 3;
			// 
			// gridColumn5
			// 
			this.gridColumn5.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn5.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn5.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn5.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn5.Caption = "热量";
			this.gridColumn5.FieldName = "FoodNut_Energy";
			this.gridColumn5.Name = "gridColumn5";
			this.gridColumn5.OptionsColumn.AllowEdit = false;
			this.gridColumn5.OptionsColumn.AllowFocus = false;
			this.gridColumn5.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn5.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn5.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn5.OptionsColumn.AllowMove = false;
			this.gridColumn5.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn5.OptionsColumn.FixedWidth = true;
			this.gridColumn5.OptionsColumn.ReadOnly = true;
			this.gridColumn5.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn5.Visible = true;
			this.gridColumn5.VisibleIndex = 4;
			// 
			// gridColumn6
			// 
			this.gridColumn6.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn6.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn6.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn6.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn6.Caption = "备注";
			this.gridColumn6.FieldName = "FoodNut_Remark";
			this.gridColumn6.Name = "gridColumn6";
			this.gridColumn6.OptionsColumn.AllowEdit = false;
			this.gridColumn6.OptionsColumn.AllowFocus = false;
			this.gridColumn6.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn6.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn6.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn6.OptionsColumn.AllowMove = false;
			this.gridColumn6.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn6.OptionsColumn.FixedWidth = true;
			this.gridColumn6.OptionsColumn.ReadOnly = true;
			this.gridColumn6.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn6.Visible = true;
			this.gridColumn6.VisibleIndex = 5;
			// 
			// panelControl1
			// 
			this.panelControl1.Controls.Add(this.simpleButton_FoodModify);
			this.panelControl1.Controls.Add(this.simpleButton_FoodBack);
			this.panelControl1.Controls.Add(this.simpleButton_FoodDelete);
			this.panelControl1.Controls.Add(this.simpleButton_FoodSave);
			this.panelControl1.Controls.Add(this.simpleButton_FoodAdd);
			this.panelControl1.Controls.Add(this.textEdit_FoodSearch);
			this.panelControl1.Controls.Add(this.textEdit_BindingID);
			this.panelControl1.Dock = System.Windows.Forms.DockStyle.Top;
			this.panelControl1.Location = new System.Drawing.Point(0, 0);
			this.panelControl1.Name = "panelControl1";
			this.panelControl1.Size = new System.Drawing.Size(583, 64);
			this.panelControl1.TabIndex = 0;
			this.panelControl1.Text = "panelControl1";
			// 
			// simpleButton_FoodModify
			// 
			this.simpleButton_FoodModify.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.simpleButton_FoodModify.Appearance.ForeColor = System.Drawing.Color.DarkMagenta;
			this.simpleButton_FoodModify.Appearance.Options.UseFont = true;
			this.simpleButton_FoodModify.Appearance.Options.UseForeColor = true;
			this.simpleButton_FoodModify.Enabled = false;
			this.simpleButton_FoodModify.Location = new System.Drawing.Point(304, 8);
			this.simpleButton_FoodModify.Name = "simpleButton_FoodModify";
			this.simpleButton_FoodModify.Size = new System.Drawing.Size(88, 26);
			this.simpleButton_FoodModify.TabIndex = 31;
			this.simpleButton_FoodModify.Tag = 4;
			this.simpleButton_FoodModify.Text = "修  改";
			this.simpleButton_FoodModify.Click += new System.EventHandler(this.simpleButton_FoodModify_Click);
			// 
			// simpleButton_FoodBack
			// 
			this.simpleButton_FoodBack.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.simpleButton_FoodBack.Appearance.ForeColor = System.Drawing.Color.DarkMagenta;
			this.simpleButton_FoodBack.Appearance.Options.UseFont = true;
			this.simpleButton_FoodBack.Appearance.Options.UseForeColor = true;
			this.simpleButton_FoodBack.Location = new System.Drawing.Point(16, 8);
			this.simpleButton_FoodBack.Name = "simpleButton_FoodBack";
			this.simpleButton_FoodBack.Size = new System.Drawing.Size(88, 26);
			this.simpleButton_FoodBack.TabIndex = 6;
			this.simpleButton_FoodBack.Tag = 4;
			this.simpleButton_FoodBack.Text = "返  回";
			this.simpleButton_FoodBack.Click += new System.EventHandler(this.simpleButton_FoodBack_Click);
			// 
			// simpleButton_FoodDelete
			// 
			this.simpleButton_FoodDelete.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.simpleButton_FoodDelete.Appearance.ForeColor = System.Drawing.Color.DarkMagenta;
			this.simpleButton_FoodDelete.Appearance.Options.UseFont = true;
			this.simpleButton_FoodDelete.Appearance.Options.UseForeColor = true;
			this.simpleButton_FoodDelete.Location = new System.Drawing.Point(400, 8);
			this.simpleButton_FoodDelete.Name = "simpleButton_FoodDelete";
			this.simpleButton_FoodDelete.Size = new System.Drawing.Size(88, 26);
			this.simpleButton_FoodDelete.TabIndex = 4;
			this.simpleButton_FoodDelete.Tag = 4;
			this.simpleButton_FoodDelete.Text = "删  除";
			this.simpleButton_FoodDelete.Click += new System.EventHandler(this.simpleButton_FoodDelete_Click);
			// 
			// simpleButton_FoodSave
			// 
			this.simpleButton_FoodSave.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.simpleButton_FoodSave.Appearance.ForeColor = System.Drawing.Color.DarkMagenta;
			this.simpleButton_FoodSave.Appearance.Options.UseFont = true;
			this.simpleButton_FoodSave.Appearance.Options.UseForeColor = true;
			this.simpleButton_FoodSave.Enabled = false;
			this.simpleButton_FoodSave.Location = new System.Drawing.Point(208, 8);
			this.simpleButton_FoodSave.Name = "simpleButton_FoodSave";
			this.simpleButton_FoodSave.Size = new System.Drawing.Size(88, 26);
			this.simpleButton_FoodSave.TabIndex = 3;
			this.simpleButton_FoodSave.Tag = 4;
			this.simpleButton_FoodSave.Text = "保  存";
			this.simpleButton_FoodSave.Click += new System.EventHandler(this.simpleButton_FoodSave_Click);
			// 
			// simpleButton_FoodAdd
			// 
			this.simpleButton_FoodAdd.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.simpleButton_FoodAdd.Appearance.ForeColor = System.Drawing.Color.DarkMagenta;
			this.simpleButton_FoodAdd.Appearance.Options.UseFont = true;
			this.simpleButton_FoodAdd.Appearance.Options.UseForeColor = true;
			this.simpleButton_FoodAdd.Location = new System.Drawing.Point(112, 8);
			this.simpleButton_FoodAdd.Name = "simpleButton_FoodAdd";
			this.simpleButton_FoodAdd.Size = new System.Drawing.Size(88, 26);
			this.simpleButton_FoodAdd.TabIndex = 2;
			this.simpleButton_FoodAdd.Tag = 4;
			this.simpleButton_FoodAdd.Text = "新  增";
			this.simpleButton_FoodAdd.Click += new System.EventHandler(this.simpleButton_FoodAdd_Click);
			// 
			// textEdit_FoodSearch
			// 
			this.textEdit_FoodSearch.Dock = System.Windows.Forms.DockStyle.Bottom;
			this.textEdit_FoodSearch.EditValue = "";
			this.textEdit_FoodSearch.Location = new System.Drawing.Point(3, 38);
			this.textEdit_FoodSearch.Name = "textEdit_FoodSearch";
			this.textEdit_FoodSearch.Size = new System.Drawing.Size(577, 23);
			this.textEdit_FoodSearch.TabIndex = 0;
			this.textEdit_FoodSearch.EditValueChanged += new System.EventHandler(this.textEdit_FoodSearch_EditValueChanged);
			// 
			// textEdit_BindingID
			// 
			this.textEdit_BindingID.EditValue = "";
			this.textEdit_BindingID.Location = new System.Drawing.Point(536, 48);
			this.textEdit_BindingID.Name = "textEdit_BindingID";
			// 
			// textEdit_BindingID.Properties
			// 
			this.textEdit_BindingID.Properties.AutoHeight = false;
			this.textEdit_BindingID.Size = new System.Drawing.Size(8, 8);
			this.textEdit_BindingID.TabIndex = 30;
			// 
			// xtraTabPage2
			// 
			this.xtraTabPage2.Appearance.PageClient.BackColor = System.Drawing.Color.WhiteSmoke;
			this.xtraTabPage2.Appearance.PageClient.Options.UseBackColor = true;
			this.xtraTabPage2.Controls.Add(this.splitContainerControl2);
			this.xtraTabPage2.Name = "xtraTabPage2";
			this.xtraTabPage2.PageVisible = false;
			this.xtraTabPage2.Size = new System.Drawing.Size(768, 515);
			this.xtraTabPage2.Text = "每日食谱安排";
			// 
			// splitContainerControl2
			// 
			this.splitContainerControl2.Dock = System.Windows.Forms.DockStyle.Fill;
			this.splitContainerControl2.Location = new System.Drawing.Point(0, 0);
			this.splitContainerControl2.Name = "splitContainerControl2";
			this.splitContainerControl2.Panel1.Controls.Add(this.panelControl10);
			this.splitContainerControl2.Panel1.Controls.Add(this.groupControl_RecipeLogin);
			this.splitContainerControl2.Panel1.Controls.Add(this.groupControl_RecipeSer);
			this.splitContainerControl2.Panel1.Controls.Add(this.groupControl_RecipeOpr);
			this.splitContainerControl2.Panel1.Text = "splitContainerControl2_Panel1";
			this.splitContainerControl2.Panel2.Controls.Add(this.panelControl11);
			this.splitContainerControl2.Panel2.Controls.Add(this.panelControl2);
			this.splitContainerControl2.Panel2.Text = "splitContainerControl2_Panel2";
			this.splitContainerControl2.Size = new System.Drawing.Size(768, 515);
			this.splitContainerControl2.SplitterPosition = 270;
			this.splitContainerControl2.TabIndex = 0;
			this.splitContainerControl2.Text = "splitContainerControl2";
			// 
			// panelControl10
			// 
			this.panelControl10.Controls.Add(this.gridControl_Recipe_FoodNutrition);
			this.panelControl10.Controls.Add(this.notePanel4);
			this.panelControl10.Dock = System.Windows.Forms.DockStyle.Fill;
			this.panelControl10.Location = new System.Drawing.Point(0, 312);
			this.panelControl10.Name = "panelControl10";
			this.panelControl10.Size = new System.Drawing.Size(264, 197);
			this.panelControl10.TabIndex = 41;
			this.panelControl10.Text = "panelControl10";
			// 
			// gridControl_Recipe_FoodNutrition
			// 
			this.gridControl_Recipe_FoodNutrition.Dock = System.Windows.Forms.DockStyle.Fill;
			// 
			// gridControl_Recipe_FoodNutrition.EmbeddedNavigator
			// 
			this.gridControl_Recipe_FoodNutrition.EmbeddedNavigator.Name = "";
			this.gridControl_Recipe_FoodNutrition.Location = new System.Drawing.Point(3, 26);
			this.gridControl_Recipe_FoodNutrition.MainView = this.gridView4;
			this.gridControl_Recipe_FoodNutrition.Name = "gridControl_Recipe_FoodNutrition";
			this.gridControl_Recipe_FoodNutrition.Size = new System.Drawing.Size(258, 168);
			this.gridControl_Recipe_FoodNutrition.TabIndex = 47;
			this.gridControl_Recipe_FoodNutrition.ToolTipController = this.toolTipController1;
			this.gridControl_Recipe_FoodNutrition.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
																															this.gridView4,
																															this.gridView2});
			this.gridControl_Recipe_FoodNutrition.DoubleClick += new System.EventHandler(this.gridControl_Recipe_FoodNutrition_DoubleClick);
			// 
			// gridView4
			// 
			this.gridView4.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
																							 this.gridColumn7,
																							 this.gridColumn8,
																							 this.gridColumn9,
																							 this.gridColumn10,
																							 this.gridColumn11,
																							 this.gridColumn16});
			this.gridView4.GridControl = this.gridControl_Recipe_FoodNutrition;
			this.gridView4.Name = "gridView4";
			this.gridView4.OptionsCustomization.AllowFilter = false;
			this.gridView4.OptionsView.ShowFilterPanel = false;
			this.gridView4.OptionsView.ShowGroupPanel = false;
			// 
			// gridColumn7
			// 
			this.gridColumn7.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn7.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn7.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn7.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn7.Caption = "食物名";
			this.gridColumn7.FieldName = "FoodNut_FoodName";
			this.gridColumn7.Name = "gridColumn7";
			this.gridColumn7.OptionsColumn.AllowEdit = false;
			this.gridColumn7.OptionsColumn.AllowFocus = false;
			this.gridColumn7.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn7.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn7.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn7.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn7.OptionsColumn.ReadOnly = true;
			this.gridColumn7.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn7.Visible = true;
			this.gridColumn7.VisibleIndex = 0;
			// 
			// gridColumn8
			// 
			this.gridColumn8.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn8.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn8.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn8.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn8.Caption = "蛋白质";
			this.gridColumn8.FieldName = "FoodNut_Protein";
			this.gridColumn8.Name = "gridColumn8";
			this.gridColumn8.OptionsColumn.AllowEdit = false;
			this.gridColumn8.OptionsColumn.AllowFocus = false;
			this.gridColumn8.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn8.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn8.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn8.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn8.OptionsColumn.ReadOnly = true;
			this.gridColumn8.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn8.Visible = true;
			this.gridColumn8.VisibleIndex = 1;
			// 
			// gridColumn9
			// 
			this.gridColumn9.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn9.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn9.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn9.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn9.Caption = "脂肪";
			this.gridColumn9.FieldName = "FoodNut_Fat";
			this.gridColumn9.Name = "gridColumn9";
			this.gridColumn9.OptionsColumn.AllowEdit = false;
			this.gridColumn9.OptionsColumn.AllowFocus = false;
			this.gridColumn9.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn9.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn9.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn9.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn9.OptionsColumn.ReadOnly = true;
			this.gridColumn9.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn9.Visible = true;
			this.gridColumn9.VisibleIndex = 2;
			// 
			// gridColumn10
			// 
			this.gridColumn10.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn10.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn10.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn10.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn10.Caption = "碳水化合物";
			this.gridColumn10.FieldName = "FoodNut_Carbohydrate";
			this.gridColumn10.Name = "gridColumn10";
			this.gridColumn10.OptionsColumn.AllowEdit = false;
			this.gridColumn10.OptionsColumn.AllowFocus = false;
			this.gridColumn10.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn10.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn10.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn10.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn10.OptionsColumn.ReadOnly = true;
			this.gridColumn10.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn10.Visible = true;
			this.gridColumn10.VisibleIndex = 3;
			// 
			// gridColumn11
			// 
			this.gridColumn11.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn11.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn11.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn11.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn11.Caption = "能量";
			this.gridColumn11.FieldName = "FoodNut_Energy";
			this.gridColumn11.Name = "gridColumn11";
			this.gridColumn11.OptionsColumn.AllowEdit = false;
			this.gridColumn11.OptionsColumn.AllowFocus = false;
			this.gridColumn11.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn11.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn11.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn11.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn11.OptionsColumn.ReadOnly = true;
			this.gridColumn11.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn11.Visible = true;
			this.gridColumn11.VisibleIndex = 4;
			// 
			// gridColumn16
			// 
			this.gridColumn16.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn16.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn16.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn16.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn16.Caption = "备注";
			this.gridColumn16.FieldName = "FoodNut_Remark";
			this.gridColumn16.Name = "gridColumn16";
			this.gridColumn16.OptionsColumn.AllowEdit = false;
			this.gridColumn16.OptionsColumn.AllowFocus = false;
			this.gridColumn16.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn16.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn16.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn16.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn16.OptionsColumn.ReadOnly = true;
			this.gridColumn16.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn16.Visible = true;
			this.gridColumn16.VisibleIndex = 5;
			// 
			// toolTipController1
			// 
			this.toolTipController1.GetActiveObjectInfo += new DevExpress.Utils.ToolTipControllerGetActiveObjectInfoEventHandler(this.toolTipController1_GetActiveObjectInfo);
			// 
			// gridView2
			// 
			this.gridView2.GridControl = this.gridControl_Recipe_FoodNutrition;
			this.gridView2.Name = "gridView2";
			// 
			// notePanel4
			// 
			this.notePanel4.BackColor = System.Drawing.Color.LightGoldenrodYellow;
			this.notePanel4.Dock = System.Windows.Forms.DockStyle.Top;
			this.notePanel4.ForeColor = System.Drawing.Color.OrangeRed;
			this.notePanel4.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel4.Location = new System.Drawing.Point(3, 3);
			this.notePanel4.MaxRows = 5;
			this.notePanel4.Name = "notePanel4";
			this.notePanel4.ParentAutoHeight = true;
			this.notePanel4.Size = new System.Drawing.Size(258, 23);
			this.notePanel4.TabIndex = 46;
			this.notePanel4.TabStop = false;
			this.notePanel4.Text = "双击在食物用料登记处获取食物名称";
			// 
			// groupControl_RecipeLogin
			// 
			this.groupControl_RecipeLogin.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.groupControl_RecipeLogin.AppearanceCaption.Options.UseFont = true;
			this.groupControl_RecipeLogin.Controls.Add(this.textEdit_RecipeLogin_FoodName);
			this.groupControl_RecipeLogin.Controls.Add(this.textEdit_RecipeLogin_Name);
			this.groupControl_RecipeLogin.Controls.Add(this.notePanel_RecipeLogin_Name);
			this.groupControl_RecipeLogin.Controls.Add(this.dateEdit_RecipeLogin_Date);
			this.groupControl_RecipeLogin.Controls.Add(this.notePanel_RecipeLogin_Date);
			this.groupControl_RecipeLogin.Controls.Add(this.textEdit_RecipeLogin_FoodTake);
			this.groupControl_RecipeLogin.Controls.Add(this.notePanel_RecipeLogin_FoodTake);
			this.groupControl_RecipeLogin.Controls.Add(this.textEdit_RecipeLogin_BindingID);
			this.groupControl_RecipeLogin.Controls.Add(this.notePanel_RecipeLogin_FoodName);
			this.groupControl_RecipeLogin.Dock = System.Windows.Forms.DockStyle.Top;
			this.groupControl_RecipeLogin.Location = new System.Drawing.Point(0, 152);
			this.groupControl_RecipeLogin.Name = "groupControl_RecipeLogin";
			this.groupControl_RecipeLogin.Size = new System.Drawing.Size(264, 160);
			this.groupControl_RecipeLogin.TabIndex = 40;
			this.groupControl_RecipeLogin.Text = "食物用料登记";
			// 
			// textEdit_RecipeLogin_FoodName
			// 
			this.textEdit_RecipeLogin_FoodName.EditValue = "";
			this.textEdit_RecipeLogin_FoodName.Location = new System.Drawing.Point(128, 24);
			this.textEdit_RecipeLogin_FoodName.Name = "textEdit_RecipeLogin_FoodName";
			// 
			// textEdit_RecipeLogin_FoodName.Properties
			// 
			this.textEdit_RecipeLogin_FoodName.Properties.Enabled = false;
			this.textEdit_RecipeLogin_FoodName.Size = new System.Drawing.Size(88, 23);
			this.textEdit_RecipeLogin_FoodName.TabIndex = 34;
			// 
			// textEdit_RecipeLogin_Name
			// 
			this.textEdit_RecipeLogin_Name.EditValue = "";
			this.textEdit_RecipeLogin_Name.Location = new System.Drawing.Point(128, 120);
			this.textEdit_RecipeLogin_Name.Name = "textEdit_RecipeLogin_Name";
			this.textEdit_RecipeLogin_Name.Size = new System.Drawing.Size(88, 23);
			this.textEdit_RecipeLogin_Name.TabIndex = 33;
			// 
			// notePanel_RecipeLogin_Name
			// 
			this.notePanel_RecipeLogin_Name.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_RecipeLogin_Name.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_RecipeLogin_Name.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_RecipeLogin_Name.ForeColor = System.Drawing.Color.Black;
			this.notePanel_RecipeLogin_Name.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_RecipeLogin_Name.Location = new System.Drawing.Point(40, 120);
			this.notePanel_RecipeLogin_Name.MaxRows = 5;
			this.notePanel_RecipeLogin_Name.Name = "notePanel_RecipeLogin_Name";
			this.notePanel_RecipeLogin_Name.ParentAutoHeight = true;
			this.notePanel_RecipeLogin_Name.Size = new System.Drawing.Size(80, 22);
			this.notePanel_RecipeLogin_Name.TabIndex = 32;
			this.notePanel_RecipeLogin_Name.TabStop = false;
			this.notePanel_RecipeLogin_Name.Text = "菜谱名称:";
			// 
			// dateEdit_RecipeLogin_Date
			// 
			this.dateEdit_RecipeLogin_Date.EditValue = new System.DateTime(2005, 11, 17, 0, 0, 0, 0);
			this.dateEdit_RecipeLogin_Date.Location = new System.Drawing.Point(128, 88);
			this.dateEdit_RecipeLogin_Date.Name = "dateEdit_RecipeLogin_Date";
			// 
			// dateEdit_RecipeLogin_Date.Properties
			// 
			this.dateEdit_RecipeLogin_Date.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																															  new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.dateEdit_RecipeLogin_Date.Properties.Enabled = false;
			this.dateEdit_RecipeLogin_Date.Properties.Mask.EditMask = "d";
			this.dateEdit_RecipeLogin_Date.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.DateTime;
			this.dateEdit_RecipeLogin_Date.Size = new System.Drawing.Size(88, 23);
			this.dateEdit_RecipeLogin_Date.TabIndex = 31;
			// 
			// notePanel_RecipeLogin_Date
			// 
			this.notePanel_RecipeLogin_Date.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_RecipeLogin_Date.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_RecipeLogin_Date.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_RecipeLogin_Date.ForeColor = System.Drawing.Color.Black;
			this.notePanel_RecipeLogin_Date.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_RecipeLogin_Date.Location = new System.Drawing.Point(40, 88);
			this.notePanel_RecipeLogin_Date.MaxRows = 5;
			this.notePanel_RecipeLogin_Date.Name = "notePanel_RecipeLogin_Date";
			this.notePanel_RecipeLogin_Date.ParentAutoHeight = true;
			this.notePanel_RecipeLogin_Date.Size = new System.Drawing.Size(80, 22);
			this.notePanel_RecipeLogin_Date.TabIndex = 30;
			this.notePanel_RecipeLogin_Date.TabStop = false;
			this.notePanel_RecipeLogin_Date.Text = "登记日期:";
			// 
			// textEdit_RecipeLogin_FoodTake
			// 
			this.textEdit_RecipeLogin_FoodTake.EditValue = "";
			this.textEdit_RecipeLogin_FoodTake.Location = new System.Drawing.Point(128, 56);
			this.textEdit_RecipeLogin_FoodTake.Name = "textEdit_RecipeLogin_FoodTake";
			this.textEdit_RecipeLogin_FoodTake.Size = new System.Drawing.Size(88, 23);
			this.textEdit_RecipeLogin_FoodTake.TabIndex = 29;
			// 
			// notePanel_RecipeLogin_FoodTake
			// 
			this.notePanel_RecipeLogin_FoodTake.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_RecipeLogin_FoodTake.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_RecipeLogin_FoodTake.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_RecipeLogin_FoodTake.ForeColor = System.Drawing.Color.Black;
			this.notePanel_RecipeLogin_FoodTake.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_RecipeLogin_FoodTake.Location = new System.Drawing.Point(40, 56);
			this.notePanel_RecipeLogin_FoodTake.MaxRows = 5;
			this.notePanel_RecipeLogin_FoodTake.Name = "notePanel_RecipeLogin_FoodTake";
			this.notePanel_RecipeLogin_FoodTake.ParentAutoHeight = true;
			this.notePanel_RecipeLogin_FoodTake.Size = new System.Drawing.Size(80, 22);
			this.notePanel_RecipeLogin_FoodTake.TabIndex = 28;
			this.notePanel_RecipeLogin_FoodTake.TabStop = false;
			this.notePanel_RecipeLogin_FoodTake.Text = "  摄入量:";
			// 
			// textEdit_RecipeLogin_BindingID
			// 
			this.textEdit_RecipeLogin_BindingID.EditValue = "";
			this.textEdit_RecipeLogin_BindingID.Location = new System.Drawing.Point(200, 24);
			this.textEdit_RecipeLogin_BindingID.Name = "textEdit_RecipeLogin_BindingID";
			// 
			// textEdit_RecipeLogin_BindingID.Properties
			// 
			this.textEdit_RecipeLogin_BindingID.Properties.AutoHeight = false;
			this.textEdit_RecipeLogin_BindingID.Properties.Enabled = false;
			this.textEdit_RecipeLogin_BindingID.Size = new System.Drawing.Size(8, 16);
			this.textEdit_RecipeLogin_BindingID.TabIndex = 27;
			// 
			// notePanel_RecipeLogin_FoodName
			// 
			this.notePanel_RecipeLogin_FoodName.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_RecipeLogin_FoodName.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_RecipeLogin_FoodName.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_RecipeLogin_FoodName.ForeColor = System.Drawing.Color.Black;
			this.notePanel_RecipeLogin_FoodName.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_RecipeLogin_FoodName.Location = new System.Drawing.Point(40, 24);
			this.notePanel_RecipeLogin_FoodName.MaxRows = 5;
			this.notePanel_RecipeLogin_FoodName.Name = "notePanel_RecipeLogin_FoodName";
			this.notePanel_RecipeLogin_FoodName.ParentAutoHeight = true;
			this.notePanel_RecipeLogin_FoodName.Size = new System.Drawing.Size(80, 22);
			this.notePanel_RecipeLogin_FoodName.TabIndex = 26;
			this.notePanel_RecipeLogin_FoodName.TabStop = false;
			this.notePanel_RecipeLogin_FoodName.Text = "食物名称:";
			// 
			// groupControl_RecipeSer
			// 
			this.groupControl_RecipeSer.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.groupControl_RecipeSer.Appearance.Options.UseFont = true;
			this.groupControl_RecipeSer.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.groupControl_RecipeSer.AppearanceCaption.Options.UseFont = true;
			this.groupControl_RecipeSer.Controls.Add(this.comboBoxEdit_RecipeSer_FoodCategory);
			this.groupControl_RecipeSer.Controls.Add(this.notePanel_RecipeSer_FoodCategory);
			this.groupControl_RecipeSer.Controls.Add(this.textEdit_RecipeSer_FoodName);
			this.groupControl_RecipeSer.Controls.Add(this.notePanel_RecipeSer_FoodName);
			this.groupControl_RecipeSer.Dock = System.Windows.Forms.DockStyle.Top;
			this.groupControl_RecipeSer.Location = new System.Drawing.Point(0, 56);
			this.groupControl_RecipeSer.Name = "groupControl_RecipeSer";
			this.groupControl_RecipeSer.Size = new System.Drawing.Size(264, 96);
			this.groupControl_RecipeSer.TabIndex = 39;
			this.groupControl_RecipeSer.Text = "食物查询";
			// 
			// comboBoxEdit_RecipeSer_FoodCategory
			// 
			this.comboBoxEdit_RecipeSer_FoodCategory.EditValue = "全部";
			this.comboBoxEdit_RecipeSer_FoodCategory.Location = new System.Drawing.Point(128, 56);
			this.comboBoxEdit_RecipeSer_FoodCategory.Name = "comboBoxEdit_RecipeSer_FoodCategory";
			// 
			// comboBoxEdit_RecipeSer_FoodCategory.Properties
			// 
			this.comboBoxEdit_RecipeSer_FoodCategory.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																																		new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.comboBoxEdit_RecipeSer_FoodCategory.Properties.Items.AddRange(new object[] {
																								"肉禽水产类",
																								"水果类",
																								"蔬菜类",
																								"粮食类",
																								"调味品",
																								"糕点",
																								"豆制品",
																								"乳类",
																								"菌藻类",
																								"其他"});
			this.comboBoxEdit_RecipeSer_FoodCategory.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
			this.comboBoxEdit_RecipeSer_FoodCategory.Size = new System.Drawing.Size(88, 23);
			this.comboBoxEdit_RecipeSer_FoodCategory.TabIndex = 27;
			this.comboBoxEdit_RecipeSer_FoodCategory.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit_RecipeSer_FoodCategory_SelectedIndexChanged);
			// 
			// notePanel_RecipeSer_FoodCategory
			// 
			this.notePanel_RecipeSer_FoodCategory.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_RecipeSer_FoodCategory.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_RecipeSer_FoodCategory.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_RecipeSer_FoodCategory.ForeColor = System.Drawing.Color.Black;
			this.notePanel_RecipeSer_FoodCategory.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_RecipeSer_FoodCategory.Location = new System.Drawing.Point(40, 56);
			this.notePanel_RecipeSer_FoodCategory.MaxRows = 5;
			this.notePanel_RecipeSer_FoodCategory.Name = "notePanel_RecipeSer_FoodCategory";
			this.notePanel_RecipeSer_FoodCategory.ParentAutoHeight = true;
			this.notePanel_RecipeSer_FoodCategory.Size = new System.Drawing.Size(80, 22);
			this.notePanel_RecipeSer_FoodCategory.TabIndex = 26;
			this.notePanel_RecipeSer_FoodCategory.TabStop = false;
			this.notePanel_RecipeSer_FoodCategory.Text = "食物分类:";
			// 
			// textEdit_RecipeSer_FoodName
			// 
			this.textEdit_RecipeSer_FoodName.EditValue = "";
			this.textEdit_RecipeSer_FoodName.Location = new System.Drawing.Point(128, 24);
			this.textEdit_RecipeSer_FoodName.Name = "textEdit_RecipeSer_FoodName";
			this.textEdit_RecipeSer_FoodName.Size = new System.Drawing.Size(88, 23);
			this.textEdit_RecipeSer_FoodName.TabIndex = 25;
			this.textEdit_RecipeSer_FoodName.EditValueChanged += new System.EventHandler(this.textEdit_RecipeSer_FoodName_EditValueChanged);
			// 
			// notePanel_RecipeSer_FoodName
			// 
			this.notePanel_RecipeSer_FoodName.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_RecipeSer_FoodName.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_RecipeSer_FoodName.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_RecipeSer_FoodName.ForeColor = System.Drawing.Color.Black;
			this.notePanel_RecipeSer_FoodName.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_RecipeSer_FoodName.Location = new System.Drawing.Point(40, 24);
			this.notePanel_RecipeSer_FoodName.MaxRows = 5;
			this.notePanel_RecipeSer_FoodName.Name = "notePanel_RecipeSer_FoodName";
			this.notePanel_RecipeSer_FoodName.ParentAutoHeight = true;
			this.notePanel_RecipeSer_FoodName.Size = new System.Drawing.Size(80, 22);
			this.notePanel_RecipeSer_FoodName.TabIndex = 24;
			this.notePanel_RecipeSer_FoodName.TabStop = false;
			this.notePanel_RecipeSer_FoodName.Text = "食物名称:";
			// 
			// groupControl_RecipeOpr
			// 
			this.groupControl_RecipeOpr.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.groupControl_RecipeOpr.AppearanceCaption.Options.UseFont = true;
			this.groupControl_RecipeOpr.Controls.Add(this.simpleButton_RecipeModify);
			this.groupControl_RecipeOpr.Controls.Add(this.simpleButton_RecipeSave);
			this.groupControl_RecipeOpr.Dock = System.Windows.Forms.DockStyle.Top;
			this.groupControl_RecipeOpr.Location = new System.Drawing.Point(0, 0);
			this.groupControl_RecipeOpr.Name = "groupControl_RecipeOpr";
			this.groupControl_RecipeOpr.Size = new System.Drawing.Size(264, 56);
			this.groupControl_RecipeOpr.TabIndex = 38;
			this.groupControl_RecipeOpr.Text = "食谱操作";
			// 
			// simpleButton_RecipeModify
			// 
			this.simpleButton_RecipeModify.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.simpleButton_RecipeModify.Appearance.ForeColor = System.Drawing.Color.DarkMagenta;
			this.simpleButton_RecipeModify.Appearance.Options.UseFont = true;
			this.simpleButton_RecipeModify.Appearance.Options.UseForeColor = true;
			this.simpleButton_RecipeModify.Enabled = false;
			this.simpleButton_RecipeModify.Location = new System.Drawing.Point(144, 24);
			this.simpleButton_RecipeModify.Name = "simpleButton_RecipeModify";
			this.simpleButton_RecipeModify.Size = new System.Drawing.Size(72, 26);
			this.simpleButton_RecipeModify.TabIndex = 40;
			this.simpleButton_RecipeModify.Tag = 4;
			this.simpleButton_RecipeModify.Text = "修改";
			this.simpleButton_RecipeModify.Click += new System.EventHandler(this.simpleButton_RecipeModify_Click);
			// 
			// simpleButton_RecipeSave
			// 
			this.simpleButton_RecipeSave.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.simpleButton_RecipeSave.Appearance.ForeColor = System.Drawing.Color.DarkMagenta;
			this.simpleButton_RecipeSave.Appearance.Options.UseFont = true;
			this.simpleButton_RecipeSave.Appearance.Options.UseForeColor = true;
			this.simpleButton_RecipeSave.Enabled = false;
			this.simpleButton_RecipeSave.Location = new System.Drawing.Point(48, 24);
			this.simpleButton_RecipeSave.Name = "simpleButton_RecipeSave";
			this.simpleButton_RecipeSave.Size = new System.Drawing.Size(72, 26);
			this.simpleButton_RecipeSave.TabIndex = 38;
			this.simpleButton_RecipeSave.Tag = 4;
			this.simpleButton_RecipeSave.Text = "保存";
			this.simpleButton_RecipeSave.Click += new System.EventHandler(this.simpleButton_RecipeSave_Click);
			// 
			// panelControl11
			// 
			this.panelControl11.Controls.Add(this.gridControl_RecipeLogin);
			this.panelControl11.Controls.Add(this.notePanel5);
			this.panelControl11.Dock = System.Windows.Forms.DockStyle.Fill;
			this.panelControl11.Location = new System.Drawing.Point(0, 112);
			this.panelControl11.Name = "panelControl11";
			this.panelControl11.Size = new System.Drawing.Size(488, 397);
			this.panelControl11.TabIndex = 26;
			this.panelControl11.Text = "panelControl11";
			// 
			// gridControl_RecipeLogin
			// 
			this.gridControl_RecipeLogin.Dock = System.Windows.Forms.DockStyle.Fill;
			// 
			// gridControl_RecipeLogin.EmbeddedNavigator
			// 
			this.gridControl_RecipeLogin.EmbeddedNavigator.Name = "";
			this.gridControl_RecipeLogin.Location = new System.Drawing.Point(3, 26);
			this.gridControl_RecipeLogin.MainView = this.gridView13;
			this.gridControl_RecipeLogin.Name = "gridControl_RecipeLogin";
			this.barManager1.SetPopupContextMenu(this.gridControl_RecipeLogin, this.popupMenu4);
			this.gridControl_RecipeLogin.Size = new System.Drawing.Size(482, 368);
			this.gridControl_RecipeLogin.TabIndex = 34;
			this.gridControl_RecipeLogin.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
																												   this.gridView13});
			this.gridControl_RecipeLogin.Click += new System.EventHandler(this.gridControl_RecipeLogin_Click);
			// 
			// gridView13
			// 
			this.gridView13.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
																							  this.gridColumn50,
																							  this.gridColumn51,
																							  this.gridColumn52,
																							  this.gridColumn53});
			this.gridView13.GridControl = this.gridControl_RecipeLogin;
			this.gridView13.Name = "gridView13";
			this.gridView13.OptionsCustomization.AllowFilter = false;
			this.gridView13.OptionsView.ShowFilterPanel = false;
			this.gridView13.OptionsView.ShowGroupPanel = false;
			// 
			// gridColumn50
			// 
			this.gridColumn50.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn50.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn50.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn50.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn50.Caption = "食物名称";
			this.gridColumn50.FieldName = "FoodNut_FoodName";
			this.gridColumn50.Name = "gridColumn50";
			this.gridColumn50.OptionsColumn.AllowEdit = false;
			this.gridColumn50.OptionsColumn.AllowFocus = false;
			this.gridColumn50.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn50.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn50.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn50.OptionsColumn.AllowMove = false;
			this.gridColumn50.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn50.OptionsColumn.FixedWidth = true;
			this.gridColumn50.OptionsColumn.ReadOnly = true;
			this.gridColumn50.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn50.Visible = true;
			this.gridColumn50.VisibleIndex = 0;
			// 
			// gridColumn51
			// 
			this.gridColumn51.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn51.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn51.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn51.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn51.Caption = "登记日期";
			this.gridColumn51.FieldName = "ACCFood_AddTime";
			this.gridColumn51.Name = "gridColumn51";
			this.gridColumn51.OptionsColumn.AllowEdit = false;
			this.gridColumn51.OptionsColumn.AllowFocus = false;
			this.gridColumn51.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn51.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn51.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn51.OptionsColumn.AllowMove = false;
			this.gridColumn51.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn51.OptionsColumn.FixedWidth = true;
			this.gridColumn51.OptionsColumn.ReadOnly = true;
			this.gridColumn51.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn51.Visible = true;
			this.gridColumn51.VisibleIndex = 1;
			// 
			// gridColumn52
			// 
			this.gridColumn52.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn52.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn52.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn52.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn52.Caption = "摄入量";
			this.gridColumn52.FieldName = "ACCFood_TakeAmount";
			this.gridColumn52.Name = "gridColumn52";
			this.gridColumn52.OptionsColumn.AllowEdit = false;
			this.gridColumn52.OptionsColumn.AllowFocus = false;
			this.gridColumn52.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn52.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn52.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn52.OptionsColumn.AllowMove = false;
			this.gridColumn52.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn52.OptionsColumn.FixedWidth = true;
			this.gridColumn52.OptionsColumn.ReadOnly = true;
			this.gridColumn52.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn52.Visible = true;
			this.gridColumn52.VisibleIndex = 2;
			// 
			// gridColumn53
			// 
			this.gridColumn53.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn53.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn53.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn53.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn53.Caption = "菜谱名称";
			this.gridColumn53.FieldName = "ACCFood_Remark";
			this.gridColumn53.Name = "gridColumn53";
			this.gridColumn53.OptionsColumn.AllowEdit = false;
			this.gridColumn53.OptionsColumn.AllowFocus = false;
			this.gridColumn53.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn53.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn53.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn53.OptionsColumn.AllowMove = false;
			this.gridColumn53.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn53.OptionsColumn.FixedWidth = true;
			this.gridColumn53.OptionsColumn.ReadOnly = true;
			this.gridColumn53.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn53.Visible = true;
			this.gridColumn53.VisibleIndex = 3;
			// 
			// notePanel5
			// 
			this.notePanel5.BackColor = System.Drawing.Color.LightGoldenrodYellow;
			this.notePanel5.Dock = System.Windows.Forms.DockStyle.Top;
			this.notePanel5.ForeColor = System.Drawing.Color.OrangeRed;
			this.notePanel5.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel5.Location = new System.Drawing.Point(3, 3);
			this.notePanel5.MaxRows = 5;
			this.notePanel5.Name = "notePanel5";
			this.notePanel5.ParentAutoHeight = true;
			this.notePanel5.Size = new System.Drawing.Size(482, 23);
			this.notePanel5.TabIndex = 33;
			this.notePanel5.TabStop = false;
			this.notePanel5.Text = "选中一行可以在食物用料登记处对当日的食谱用料进行修改";
			// 
			// panelControl2
			// 
			this.panelControl2.Controls.Add(this.textEdit_Recipe_FoodName);
			this.panelControl2.Controls.Add(this.notePanel_Recipe_FoodName);
			this.panelControl2.Controls.Add(this.notePanel_Recipe);
			this.panelControl2.Controls.Add(this.comboBoxEdit_Recipe_RecipeCategory);
			this.panelControl2.Controls.Add(this.notePanel_Recipe_RecipeCategory);
			this.panelControl2.Controls.Add(this.dateEdit_Recipe_EndDate);
			this.panelControl2.Controls.Add(this.notePanel_Recipe_EndDate);
			this.panelControl2.Controls.Add(this.dateEdit_Recipe_BegDate);
			this.panelControl2.Controls.Add(this.notePanel_Recipe_BegDate);
			this.panelControl2.Dock = System.Windows.Forms.DockStyle.Top;
			this.panelControl2.Location = new System.Drawing.Point(0, 0);
			this.panelControl2.Name = "panelControl2";
			this.panelControl2.Size = new System.Drawing.Size(488, 112);
			this.panelControl2.TabIndex = 25;
			this.panelControl2.Text = "panelControl2";
			// 
			// textEdit_Recipe_FoodName
			// 
			this.textEdit_Recipe_FoodName.EditValue = "";
			this.textEdit_Recipe_FoodName.Location = new System.Drawing.Point(352, 40);
			this.textEdit_Recipe_FoodName.Name = "textEdit_Recipe_FoodName";
			this.textEdit_Recipe_FoodName.Size = new System.Drawing.Size(88, 23);
			this.textEdit_Recipe_FoodName.TabIndex = 34;
			this.textEdit_Recipe_FoodName.EditValueChanged += new System.EventHandler(this.textEdit_Recipe_FoodName_EditValueChanged);
			// 
			// notePanel_Recipe_FoodName
			// 
			this.notePanel_Recipe_FoodName.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_Recipe_FoodName.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_Recipe_FoodName.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_Recipe_FoodName.ForeColor = System.Drawing.Color.Black;
			this.notePanel_Recipe_FoodName.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_Recipe_FoodName.Location = new System.Drawing.Point(256, 40);
			this.notePanel_Recipe_FoodName.MaxRows = 5;
			this.notePanel_Recipe_FoodName.Name = "notePanel_Recipe_FoodName";
			this.notePanel_Recipe_FoodName.ParentAutoHeight = true;
			this.notePanel_Recipe_FoodName.Size = new System.Drawing.Size(80, 22);
			this.notePanel_Recipe_FoodName.TabIndex = 33;
			this.notePanel_Recipe_FoodName.TabStop = false;
			this.notePanel_Recipe_FoodName.Text = "食物名称:";
			// 
			// notePanel_Recipe
			// 
			this.notePanel_Recipe.BackColor = System.Drawing.Color.LightGoldenrodYellow;
			this.notePanel_Recipe.Dock = System.Windows.Forms.DockStyle.Top;
			this.notePanel_Recipe.ForeColor = System.Drawing.Color.OrangeRed;
			this.notePanel_Recipe.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_Recipe.Location = new System.Drawing.Point(3, 3);
			this.notePanel_Recipe.MaxRows = 5;
			this.notePanel_Recipe.Name = "notePanel_Recipe";
			this.notePanel_Recipe.ParentAutoHeight = true;
			this.notePanel_Recipe.Size = new System.Drawing.Size(482, 23);
			this.notePanel_Recipe.TabIndex = 32;
			this.notePanel_Recipe.TabStop = false;
			this.notePanel_Recipe.Text = "查询您已设置的食谱,摄入量以\"斤\"计算";
			// 
			// comboBoxEdit_Recipe_RecipeCategory
			// 
			this.comboBoxEdit_Recipe_RecipeCategory.EditValue = "全部";
			this.comboBoxEdit_Recipe_RecipeCategory.Location = new System.Drawing.Point(152, 40);
			this.comboBoxEdit_Recipe_RecipeCategory.Name = "comboBoxEdit_Recipe_RecipeCategory";
			// 
			// comboBoxEdit_Recipe_RecipeCategory.Properties
			// 
			this.comboBoxEdit_Recipe_RecipeCategory.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																																	   new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.comboBoxEdit_Recipe_RecipeCategory.Properties.Items.AddRange(new object[] {
																							   "全部",
																							   "肉禽水产类",
																							   "水果类",
																							   "蔬菜类",
																							   "粮食类",
																							   "调味品",
																							   "糕点",
																							   "豆制品",
																							   "乳类",
																							   "菌藻类",
																							   "其他"});
			this.comboBoxEdit_Recipe_RecipeCategory.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
			this.comboBoxEdit_Recipe_RecipeCategory.Size = new System.Drawing.Size(88, 23);
			this.comboBoxEdit_Recipe_RecipeCategory.TabIndex = 30;
			this.comboBoxEdit_Recipe_RecipeCategory.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit_Recipe_RecipeCategory_SelectedIndexChanged);
			// 
			// notePanel_Recipe_RecipeCategory
			// 
			this.notePanel_Recipe_RecipeCategory.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_Recipe_RecipeCategory.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_Recipe_RecipeCategory.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_Recipe_RecipeCategory.ForeColor = System.Drawing.Color.Black;
			this.notePanel_Recipe_RecipeCategory.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_Recipe_RecipeCategory.Location = new System.Drawing.Point(56, 40);
			this.notePanel_Recipe_RecipeCategory.MaxRows = 5;
			this.notePanel_Recipe_RecipeCategory.Name = "notePanel_Recipe_RecipeCategory";
			this.notePanel_Recipe_RecipeCategory.ParentAutoHeight = true;
			this.notePanel_Recipe_RecipeCategory.Size = new System.Drawing.Size(80, 22);
			this.notePanel_Recipe_RecipeCategory.TabIndex = 29;
			this.notePanel_Recipe_RecipeCategory.TabStop = false;
			this.notePanel_Recipe_RecipeCategory.Text = "食谱分类:";
			// 
			// dateEdit_Recipe_EndDate
			// 
			this.dateEdit_Recipe_EndDate.EditValue = new System.DateTime(2005, 11, 17, 0, 0, 0, 0);
			this.dateEdit_Recipe_EndDate.Location = new System.Drawing.Point(352, 72);
			this.dateEdit_Recipe_EndDate.Name = "dateEdit_Recipe_EndDate";
			// 
			// dateEdit_Recipe_EndDate.Properties
			// 
			this.dateEdit_Recipe_EndDate.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																															new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.dateEdit_Recipe_EndDate.Properties.Mask.EditMask = "d";
			this.dateEdit_Recipe_EndDate.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.DateTime;
			this.dateEdit_Recipe_EndDate.Size = new System.Drawing.Size(88, 23);
			this.dateEdit_Recipe_EndDate.TabIndex = 28;
			// 
			// notePanel_Recipe_EndDate
			// 
			this.notePanel_Recipe_EndDate.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_Recipe_EndDate.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_Recipe_EndDate.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_Recipe_EndDate.ForeColor = System.Drawing.Color.Black;
			this.notePanel_Recipe_EndDate.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_Recipe_EndDate.Location = new System.Drawing.Point(256, 72);
			this.notePanel_Recipe_EndDate.MaxRows = 5;
			this.notePanel_Recipe_EndDate.Name = "notePanel_Recipe_EndDate";
			this.notePanel_Recipe_EndDate.ParentAutoHeight = true;
			this.notePanel_Recipe_EndDate.Size = new System.Drawing.Size(80, 22);
			this.notePanel_Recipe_EndDate.TabIndex = 27;
			this.notePanel_Recipe_EndDate.TabStop = false;
			this.notePanel_Recipe_EndDate.Text = "结束时间:";
			// 
			// dateEdit_Recipe_BegDate
			// 
			this.dateEdit_Recipe_BegDate.EditValue = new System.DateTime(2005, 11, 17, 0, 0, 0, 0);
			this.dateEdit_Recipe_BegDate.Location = new System.Drawing.Point(152, 72);
			this.dateEdit_Recipe_BegDate.Name = "dateEdit_Recipe_BegDate";
			// 
			// dateEdit_Recipe_BegDate.Properties
			// 
			this.dateEdit_Recipe_BegDate.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																															new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.dateEdit_Recipe_BegDate.Properties.Mask.EditMask = "d";
			this.dateEdit_Recipe_BegDate.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.DateTime;
			this.dateEdit_Recipe_BegDate.Size = new System.Drawing.Size(88, 23);
			this.dateEdit_Recipe_BegDate.TabIndex = 26;
			// 
			// notePanel_Recipe_BegDate
			// 
			this.notePanel_Recipe_BegDate.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_Recipe_BegDate.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_Recipe_BegDate.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_Recipe_BegDate.ForeColor = System.Drawing.Color.Black;
			this.notePanel_Recipe_BegDate.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_Recipe_BegDate.Location = new System.Drawing.Point(56, 72);
			this.notePanel_Recipe_BegDate.MaxRows = 5;
			this.notePanel_Recipe_BegDate.Name = "notePanel_Recipe_BegDate";
			this.notePanel_Recipe_BegDate.ParentAutoHeight = true;
			this.notePanel_Recipe_BegDate.Size = new System.Drawing.Size(80, 22);
			this.notePanel_Recipe_BegDate.TabIndex = 25;
			this.notePanel_Recipe_BegDate.TabStop = false;
			this.notePanel_Recipe_BegDate.Text = "起始时间:";
			// 
			// xtraTabPage3
			// 
			this.xtraTabPage3.Appearance.PageClient.BackColor = System.Drawing.Color.WhiteSmoke;
			this.xtraTabPage3.Appearance.PageClient.Options.UseBackColor = true;
			this.xtraTabPage3.Controls.Add(this.splitContainerControl3);
			this.xtraTabPage3.Name = "xtraTabPage3";
			this.xtraTabPage3.PageVisible = false;
			this.xtraTabPage3.Size = new System.Drawing.Size(768, 515);
			this.xtraTabPage3.Text = "集体膳食安排";
			// 
			// splitContainerControl3
			// 
			this.splitContainerControl3.Dock = System.Windows.Forms.DockStyle.Fill;
			this.splitContainerControl3.Location = new System.Drawing.Point(0, 0);
			this.splitContainerControl3.Name = "splitContainerControl3";
			this.splitContainerControl3.Panel1.Controls.Add(this.groupControl_MealLogin);
			this.splitContainerControl3.Panel1.Controls.Add(this.groupControl_MealAdd);
			this.splitContainerControl3.Panel1.Text = "splitContainerControl3_Panel1";
			this.splitContainerControl3.Panel2.Controls.Add(this.groupControl_MealArr);
			this.splitContainerControl3.Panel2.Controls.Add(this.groupControl_MealPreview);
			this.splitContainerControl3.Panel2.Controls.Add(this.panelControl3);
			this.splitContainerControl3.Panel2.Text = "splitContainerControl3_Panel2";
			this.splitContainerControl3.Size = new System.Drawing.Size(768, 515);
			this.splitContainerControl3.SplitterPosition = 239;
			this.splitContainerControl3.TabIndex = 0;
			this.splitContainerControl3.Text = "splitContainerControl3";
			// 
			// groupControl_MealLogin
			// 
			this.groupControl_MealLogin.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.groupControl_MealLogin.AppearanceCaption.Options.UseFont = true;
			this.groupControl_MealLogin.Controls.Add(this.notePanel_MealArr);
			this.groupControl_MealLogin.Controls.Add(this.checkEdit_Snack);
			this.groupControl_MealLogin.Controls.Add(this.checkEdit_Dinner);
			this.groupControl_MealLogin.Controls.Add(this.checkEdit_Lunch);
			this.groupControl_MealLogin.Controls.Add(this.checkEdit_Breakfast);
			this.groupControl_MealLogin.Dock = System.Windows.Forms.DockStyle.Top;
			this.groupControl_MealLogin.Location = new System.Drawing.Point(0, 152);
			this.groupControl_MealLogin.Name = "groupControl_MealLogin";
			this.groupControl_MealLogin.Size = new System.Drawing.Size(233, 144);
			this.groupControl_MealLogin.TabIndex = 1;
			this.groupControl_MealLogin.Text = "用餐登记";
			// 
			// notePanel_MealArr
			// 
			this.notePanel_MealArr.BackColor = System.Drawing.Color.LightGoldenrodYellow;
			this.notePanel_MealArr.Dock = System.Windows.Forms.DockStyle.Top;
			this.notePanel_MealArr.ForeColor = System.Drawing.Color.OrangeRed;
			this.notePanel_MealArr.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_MealArr.Location = new System.Drawing.Point(3, 18);
			this.notePanel_MealArr.MaxRows = 5;
			this.notePanel_MealArr.Name = "notePanel_MealArr";
			this.notePanel_MealArr.ParentAutoHeight = true;
			this.notePanel_MealArr.Size = new System.Drawing.Size(227, 23);
			this.notePanel_MealArr.TabIndex = 34;
			this.notePanel_MealArr.TabStop = false;
			this.notePanel_MealArr.Text = "添加您的膳食安排";
			// 
			// checkEdit_Snack
			// 
			this.checkEdit_Snack.Location = new System.Drawing.Point(128, 96);
			this.checkEdit_Snack.Name = "checkEdit_Snack";
			// 
			// checkEdit_Snack.Properties
			// 
			this.checkEdit_Snack.Properties.Caption = "点心";
			this.checkEdit_Snack.Size = new System.Drawing.Size(56, 19);
			this.checkEdit_Snack.TabIndex = 3;
			// 
			// checkEdit_Dinner
			// 
			this.checkEdit_Dinner.Location = new System.Drawing.Point(48, 96);
			this.checkEdit_Dinner.Name = "checkEdit_Dinner";
			// 
			// checkEdit_Dinner.Properties
			// 
			this.checkEdit_Dinner.Properties.Caption = "晚餐";
			this.checkEdit_Dinner.Size = new System.Drawing.Size(56, 19);
			this.checkEdit_Dinner.TabIndex = 2;
			// 
			// checkEdit_Lunch
			// 
			this.checkEdit_Lunch.Location = new System.Drawing.Point(128, 64);
			this.checkEdit_Lunch.Name = "checkEdit_Lunch";
			// 
			// checkEdit_Lunch.Properties
			// 
			this.checkEdit_Lunch.Properties.Caption = "午餐";
			this.checkEdit_Lunch.Size = new System.Drawing.Size(56, 19);
			this.checkEdit_Lunch.TabIndex = 1;
			// 
			// checkEdit_Breakfast
			// 
			this.checkEdit_Breakfast.Location = new System.Drawing.Point(48, 64);
			this.checkEdit_Breakfast.Name = "checkEdit_Breakfast";
			// 
			// checkEdit_Breakfast.Properties
			// 
			this.checkEdit_Breakfast.Properties.Caption = "早餐";
			this.checkEdit_Breakfast.Size = new System.Drawing.Size(56, 19);
			this.checkEdit_Breakfast.TabIndex = 0;
			// 
			// groupControl_MealAdd
			// 
			this.groupControl_MealAdd.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.groupControl_MealAdd.AppearanceCaption.Options.UseFont = true;
			this.groupControl_MealAdd.Controls.Add(this.textEdit_MealName);
			this.groupControl_MealAdd.Controls.Add(this.textEdit_MealRemark);
			this.groupControl_MealAdd.Controls.Add(this.notePanel_MealRemark);
			this.groupControl_MealAdd.Controls.Add(this.textEdit_MealID);
			this.groupControl_MealAdd.Controls.Add(this.notePanel_MealName);
			this.groupControl_MealAdd.Controls.Add(this.notePanel_MealNameAdd);
			this.groupControl_MealAdd.Dock = System.Windows.Forms.DockStyle.Top;
			this.groupControl_MealAdd.Location = new System.Drawing.Point(0, 0);
			this.groupControl_MealAdd.Name = "groupControl_MealAdd";
			this.groupControl_MealAdd.Size = new System.Drawing.Size(233, 152);
			this.groupControl_MealAdd.TabIndex = 0;
			this.groupControl_MealAdd.Text = "膳食添加";
			// 
			// textEdit_MealName
			// 
			this.textEdit_MealName.EditValue = "";
			this.textEdit_MealName.Location = new System.Drawing.Point(112, 64);
			this.textEdit_MealName.Name = "textEdit_MealName";
			this.textEdit_MealName.Size = new System.Drawing.Size(96, 23);
			this.textEdit_MealName.TabIndex = 38;
			// 
			// textEdit_MealRemark
			// 
			this.textEdit_MealRemark.EditValue = "";
			this.textEdit_MealRemark.Location = new System.Drawing.Point(112, 96);
			this.textEdit_MealRemark.Name = "textEdit_MealRemark";
			this.textEdit_MealRemark.Size = new System.Drawing.Size(96, 23);
			this.textEdit_MealRemark.TabIndex = 37;
			// 
			// notePanel_MealRemark
			// 
			this.notePanel_MealRemark.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_MealRemark.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_MealRemark.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_MealRemark.ForeColor = System.Drawing.Color.Black;
			this.notePanel_MealRemark.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_MealRemark.Location = new System.Drawing.Point(24, 96);
			this.notePanel_MealRemark.MaxRows = 5;
			this.notePanel_MealRemark.Name = "notePanel_MealRemark";
			this.notePanel_MealRemark.ParentAutoHeight = true;
			this.notePanel_MealRemark.Size = new System.Drawing.Size(80, 22);
			this.notePanel_MealRemark.TabIndex = 36;
			this.notePanel_MealRemark.TabStop = false;
			this.notePanel_MealRemark.Text = "膳食说明:";
			// 
			// textEdit_MealID
			// 
			this.textEdit_MealID.EditValue = "";
			this.textEdit_MealID.Location = new System.Drawing.Point(184, 64);
			this.textEdit_MealID.Name = "textEdit_MealID";
			// 
			// textEdit_MealID.Properties
			// 
			this.textEdit_MealID.Properties.AutoHeight = false;
			this.textEdit_MealID.Size = new System.Drawing.Size(8, 16);
			this.textEdit_MealID.TabIndex = 35;
			// 
			// notePanel_MealName
			// 
			this.notePanel_MealName.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_MealName.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_MealName.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_MealName.ForeColor = System.Drawing.Color.Black;
			this.notePanel_MealName.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_MealName.Location = new System.Drawing.Point(24, 61);
			this.notePanel_MealName.MaxRows = 5;
			this.notePanel_MealName.Name = "notePanel_MealName";
			this.notePanel_MealName.ParentAutoHeight = true;
			this.notePanel_MealName.Size = new System.Drawing.Size(80, 22);
			this.notePanel_MealName.TabIndex = 34;
			this.notePanel_MealName.TabStop = false;
			this.notePanel_MealName.Text = "膳食名称:";
			// 
			// notePanel_MealNameAdd
			// 
			this.notePanel_MealNameAdd.BackColor = System.Drawing.Color.LightGoldenrodYellow;
			this.notePanel_MealNameAdd.Dock = System.Windows.Forms.DockStyle.Top;
			this.notePanel_MealNameAdd.ForeColor = System.Drawing.Color.OrangeRed;
			this.notePanel_MealNameAdd.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_MealNameAdd.Location = new System.Drawing.Point(3, 18);
			this.notePanel_MealNameAdd.MaxRows = 5;
			this.notePanel_MealNameAdd.Name = "notePanel_MealNameAdd";
			this.notePanel_MealNameAdd.ParentAutoHeight = true;
			this.notePanel_MealNameAdd.Size = new System.Drawing.Size(227, 23);
			this.notePanel_MealNameAdd.TabIndex = 33;
			this.notePanel_MealNameAdd.TabStop = false;
			this.notePanel_MealNameAdd.Text = "添加您的膳食名称";
			// 
			// groupControl_MealArr
			// 
			this.groupControl_MealArr.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.groupControl_MealArr.AppearanceCaption.Options.UseFont = true;
			this.groupControl_MealArr.Controls.Add(this.splitContainerControl4);
			this.groupControl_MealArr.Dock = System.Windows.Forms.DockStyle.Top;
			this.groupControl_MealArr.Location = new System.Drawing.Point(0, 312);
			this.groupControl_MealArr.Name = "groupControl_MealArr";
			this.groupControl_MealArr.Size = new System.Drawing.Size(519, 224);
			this.groupControl_MealArr.TabIndex = 2;
			this.groupControl_MealArr.Text = "膳食设置";
			this.groupControl_MealArr.Visible = false;
			// 
			// splitContainerControl4
			// 
			this.splitContainerControl4.Dock = System.Windows.Forms.DockStyle.Fill;
			this.splitContainerControl4.Location = new System.Drawing.Point(3, 18);
			this.splitContainerControl4.Name = "splitContainerControl4";
			this.splitContainerControl4.Panel1.Controls.Add(this.notePanel_GradeArr);
			this.splitContainerControl4.Panel1.Controls.Add(this.notePanel_MealArr_Grade);
			this.splitContainerControl4.Panel1.Controls.Add(this.checkEdit_MealArr_gThree);
			this.splitContainerControl4.Panel1.Controls.Add(this.notePanel_MealArr_Name);
			this.splitContainerControl4.Panel1.Controls.Add(this.checkEdit_MealArr_gTwo);
			this.splitContainerControl4.Panel1.Controls.Add(this.checkEdit_MealArr_gOne);
			this.splitContainerControl4.Panel1.Controls.Add(this.comboBoxEdit_MealArr_Name);
			this.splitContainerControl4.Panel1.Controls.Add(this.checkEdit_MealArr_gFour);
			this.splitContainerControl4.Panel1.Controls.Add(this.checkEdit_MealArr_gFive);
			this.splitContainerControl4.Panel1.Controls.Add(this.checkEdit_MealArr_IsUsed);
			this.splitContainerControl4.Panel1.Text = "splitContainerControl4_Panel1";
			this.splitContainerControl4.Panel2.Controls.Add(this.label_Lunch);
			this.splitContainerControl4.Panel2.Controls.Add(this.label_Snack);
			this.splitContainerControl4.Panel2.Controls.Add(this.label_Super);
			this.splitContainerControl4.Panel2.Controls.Add(this.label_Breakfast);
			this.splitContainerControl4.Panel2.Controls.Add(this.notePanel_MealArr_ePreview);
			this.splitContainerControl4.Panel2.Text = "splitContainerControl4_Panel2";
			this.splitContainerControl4.Size = new System.Drawing.Size(513, 203);
			this.splitContainerControl4.SplitterPosition = 242;
			this.splitContainerControl4.TabIndex = 0;
			this.splitContainerControl4.Text = "splitContainerControl4";
			// 
			// notePanel_GradeArr
			// 
			this.notePanel_GradeArr.BackColor = System.Drawing.Color.LightGoldenrodYellow;
			this.notePanel_GradeArr.Dock = System.Windows.Forms.DockStyle.Top;
			this.notePanel_GradeArr.ForeColor = System.Drawing.Color.OrangeRed;
			this.notePanel_GradeArr.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_GradeArr.Location = new System.Drawing.Point(0, 0);
			this.notePanel_GradeArr.MaxRows = 5;
			this.notePanel_GradeArr.Name = "notePanel_GradeArr";
			this.notePanel_GradeArr.ParentAutoHeight = true;
			this.notePanel_GradeArr.Size = new System.Drawing.Size(236, 23);
			this.notePanel_GradeArr.TabIndex = 44;
			this.notePanel_GradeArr.TabStop = false;
			this.notePanel_GradeArr.Text = "膳食适用年级安排";
			// 
			// notePanel_MealArr_Grade
			// 
			this.notePanel_MealArr_Grade.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_MealArr_Grade.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_MealArr_Grade.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_MealArr_Grade.ForeColor = System.Drawing.Color.Black;
			this.notePanel_MealArr_Grade.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_MealArr_Grade.Location = new System.Drawing.Point(16, 72);
			this.notePanel_MealArr_Grade.MaxRows = 5;
			this.notePanel_MealArr_Grade.Name = "notePanel_MealArr_Grade";
			this.notePanel_MealArr_Grade.ParentAutoHeight = true;
			this.notePanel_MealArr_Grade.Size = new System.Drawing.Size(80, 22);
			this.notePanel_MealArr_Grade.TabIndex = 37;
			this.notePanel_MealArr_Grade.TabStop = false;
			this.notePanel_MealArr_Grade.Text = "适用年级:";
			// 
			// checkEdit_MealArr_gThree
			// 
			this.checkEdit_MealArr_gThree.Location = new System.Drawing.Point(112, 96);
			this.checkEdit_MealArr_gThree.Name = "checkEdit_MealArr_gThree";
			// 
			// checkEdit_MealArr_gThree.Properties
			// 
			this.checkEdit_MealArr_gThree.Properties.Caption = "中班";
			this.checkEdit_MealArr_gThree.Size = new System.Drawing.Size(56, 19);
			this.checkEdit_MealArr_gThree.TabIndex = 40;
			// 
			// notePanel_MealArr_Name
			// 
			this.notePanel_MealArr_Name.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_MealArr_Name.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_MealArr_Name.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_MealArr_Name.ForeColor = System.Drawing.Color.Black;
			this.notePanel_MealArr_Name.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_MealArr_Name.Location = new System.Drawing.Point(16, 40);
			this.notePanel_MealArr_Name.MaxRows = 5;
			this.notePanel_MealArr_Name.Name = "notePanel_MealArr_Name";
			this.notePanel_MealArr_Name.ParentAutoHeight = true;
			this.notePanel_MealArr_Name.Size = new System.Drawing.Size(80, 22);
			this.notePanel_MealArr_Name.TabIndex = 35;
			this.notePanel_MealArr_Name.TabStop = false;
			this.notePanel_MealArr_Name.Text = "餐次名称:";
			// 
			// checkEdit_MealArr_gTwo
			// 
			this.checkEdit_MealArr_gTwo.Location = new System.Drawing.Point(168, 72);
			this.checkEdit_MealArr_gTwo.Name = "checkEdit_MealArr_gTwo";
			// 
			// checkEdit_MealArr_gTwo.Properties
			// 
			this.checkEdit_MealArr_gTwo.Properties.Caption = "小班";
			this.checkEdit_MealArr_gTwo.Size = new System.Drawing.Size(48, 19);
			this.checkEdit_MealArr_gTwo.TabIndex = 39;
			// 
			// checkEdit_MealArr_gOne
			// 
			this.checkEdit_MealArr_gOne.Location = new System.Drawing.Point(112, 72);
			this.checkEdit_MealArr_gOne.Name = "checkEdit_MealArr_gOne";
			// 
			// checkEdit_MealArr_gOne.Properties
			// 
			this.checkEdit_MealArr_gOne.Properties.Caption = "托班";
			this.checkEdit_MealArr_gOne.Size = new System.Drawing.Size(56, 19);
			this.checkEdit_MealArr_gOne.TabIndex = 38;
			// 
			// comboBoxEdit_MealArr_Name
			// 
			this.comboBoxEdit_MealArr_Name.EditValue = "";
			this.comboBoxEdit_MealArr_Name.Location = new System.Drawing.Point(112, 40);
			this.comboBoxEdit_MealArr_Name.Name = "comboBoxEdit_MealArr_Name";
			// 
			// comboBoxEdit_MealArr_Name.Properties
			// 
			this.comboBoxEdit_MealArr_Name.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																															  new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.comboBoxEdit_MealArr_Name.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
			this.comboBoxEdit_MealArr_Name.Size = new System.Drawing.Size(104, 23);
			this.comboBoxEdit_MealArr_Name.TabIndex = 36;
			this.comboBoxEdit_MealArr_Name.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit_MealArr_Name_SelectedIndexChanged);
			// 
			// checkEdit_MealArr_gFour
			// 
			this.checkEdit_MealArr_gFour.Location = new System.Drawing.Point(168, 96);
			this.checkEdit_MealArr_gFour.Name = "checkEdit_MealArr_gFour";
			// 
			// checkEdit_MealArr_gFour.Properties
			// 
			this.checkEdit_MealArr_gFour.Properties.Caption = "大班";
			this.checkEdit_MealArr_gFour.Size = new System.Drawing.Size(48, 19);
			this.checkEdit_MealArr_gFour.TabIndex = 41;
			// 
			// checkEdit_MealArr_gFive
			// 
			this.checkEdit_MealArr_gFive.Location = new System.Drawing.Point(112, 120);
			this.checkEdit_MealArr_gFive.Name = "checkEdit_MealArr_gFive";
			// 
			// checkEdit_MealArr_gFive.Properties
			// 
			this.checkEdit_MealArr_gFive.Properties.Caption = "特色班";
			this.checkEdit_MealArr_gFive.Size = new System.Drawing.Size(72, 19);
			this.checkEdit_MealArr_gFive.TabIndex = 42;
			// 
			// checkEdit_MealArr_IsUsed
			// 
			this.checkEdit_MealArr_IsUsed.Location = new System.Drawing.Point(112, 144);
			this.checkEdit_MealArr_IsUsed.Name = "checkEdit_MealArr_IsUsed";
			// 
			// checkEdit_MealArr_IsUsed.Properties
			// 
			this.checkEdit_MealArr_IsUsed.Properties.Caption = "是否启用";
			this.checkEdit_MealArr_IsUsed.Size = new System.Drawing.Size(72, 19);
			this.checkEdit_MealArr_IsUsed.TabIndex = 43;
			// 
			// label_Lunch
			// 
			this.label_Lunch.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
			this.label_Lunch.ForeColor = System.Drawing.Color.Tomato;
			this.label_Lunch.Location = new System.Drawing.Point(136, 56);
			this.label_Lunch.Name = "label_Lunch";
			this.label_Lunch.Size = new System.Drawing.Size(88, 24);
			this.label_Lunch.TabIndex = 53;
			this.label_Lunch.Text = "午餐:  35%";
			// 
			// label_Snack
			// 
			this.label_Snack.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
			this.label_Snack.ForeColor = System.Drawing.Color.Tomato;
			this.label_Snack.Location = new System.Drawing.Point(136, 104);
			this.label_Snack.Name = "label_Snack";
			this.label_Snack.Size = new System.Drawing.Size(88, 24);
			this.label_Snack.TabIndex = 52;
			this.label_Snack.Text = "点心:  15%";
			// 
			// label_Super
			// 
			this.label_Super.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
			this.label_Super.ForeColor = System.Drawing.Color.Tomato;
			this.label_Super.Location = new System.Drawing.Point(24, 104);
			this.label_Super.Name = "label_Super";
			this.label_Super.Size = new System.Drawing.Size(88, 24);
			this.label_Super.TabIndex = 51;
			this.label_Super.Text = "晚餐:  30%";
			// 
			// label_Breakfast
			// 
			this.label_Breakfast.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
			this.label_Breakfast.ForeColor = System.Drawing.Color.Tomato;
			this.label_Breakfast.Location = new System.Drawing.Point(24, 56);
			this.label_Breakfast.Name = "label_Breakfast";
			this.label_Breakfast.Size = new System.Drawing.Size(88, 24);
			this.label_Breakfast.TabIndex = 50;
			this.label_Breakfast.Text = "早餐:  20%";
			// 
			// notePanel_MealArr_ePreview
			// 
			this.notePanel_MealArr_ePreview.BackColor = System.Drawing.Color.LightGoldenrodYellow;
			this.notePanel_MealArr_ePreview.Dock = System.Windows.Forms.DockStyle.Top;
			this.notePanel_MealArr_ePreview.ForeColor = System.Drawing.Color.OrangeRed;
			this.notePanel_MealArr_ePreview.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_MealArr_ePreview.Location = new System.Drawing.Point(0, 0);
			this.notePanel_MealArr_ePreview.MaxRows = 5;
			this.notePanel_MealArr_ePreview.Name = "notePanel_MealArr_ePreview";
			this.notePanel_MealArr_ePreview.ParentAutoHeight = true;
			this.notePanel_MealArr_ePreview.Size = new System.Drawing.Size(261, 23);
			this.notePanel_MealArr_ePreview.TabIndex = 45;
			this.notePanel_MealArr_ePreview.TabStop = false;
			this.notePanel_MealArr_ePreview.Text = "热量分配一览";
			// 
			// groupControl_MealPreview
			// 
			this.groupControl_MealPreview.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.groupControl_MealPreview.AppearanceCaption.Options.UseFont = true;
			this.groupControl_MealPreview.Controls.Add(this.gridControl_MealPreview);
			this.groupControl_MealPreview.Controls.Add(this.notePanel3);
			this.groupControl_MealPreview.Dock = System.Windows.Forms.DockStyle.Top;
			this.groupControl_MealPreview.Location = new System.Drawing.Point(0, 48);
			this.groupControl_MealPreview.Name = "groupControl_MealPreview";
			this.groupControl_MealPreview.Size = new System.Drawing.Size(519, 264);
			this.groupControl_MealPreview.TabIndex = 1;
			this.groupControl_MealPreview.Text = "餐次设置一览";
			// 
			// gridControl_MealPreview
			// 
			this.gridControl_MealPreview.Dock = System.Windows.Forms.DockStyle.Fill;
			// 
			// gridControl_MealPreview.EmbeddedNavigator
			// 
			this.gridControl_MealPreview.EmbeddedNavigator.Name = "";
			this.gridControl_MealPreview.Location = new System.Drawing.Point(3, 41);
			this.gridControl_MealPreview.MainView = this.gridView5;
			this.gridControl_MealPreview.Name = "gridControl_MealPreview";
			this.barManager1.SetPopupContextMenu(this.gridControl_MealPreview, this.popupMenu1);
			this.gridControl_MealPreview.Size = new System.Drawing.Size(513, 220);
			this.gridControl_MealPreview.TabIndex = 36;
			this.gridControl_MealPreview.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
																												   this.gridView5});
			this.gridControl_MealPreview.DoubleClick += new System.EventHandler(this.gridControl_MealPreview_DoubleClick);
			// 
			// gridView5
			// 
			this.gridView5.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
																							 this.gridColumn17,
																							 this.gridColumn18,
																							 this.gridColumn19,
																							 this.gridColumn20});
			this.gridView5.GridControl = this.gridControl_MealPreview;
			this.gridView5.Name = "gridView5";
			this.gridView5.OptionsCustomization.AllowFilter = false;
			this.gridView5.OptionsView.ShowFilterPanel = false;
			this.gridView5.OptionsView.ShowGroupPanel = false;
			// 
			// gridColumn17
			// 
			this.gridColumn17.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn17.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn17.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn17.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn17.Caption = "膳食名称";
			this.gridColumn17.FieldName = "FoodArr_Name";
			this.gridColumn17.Name = "gridColumn17";
			this.gridColumn17.OptionsColumn.AllowEdit = false;
			this.gridColumn17.OptionsColumn.AllowFocus = false;
			this.gridColumn17.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn17.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn17.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn17.OptionsColumn.AllowMove = false;
			this.gridColumn17.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn17.OptionsColumn.ReadOnly = true;
			this.gridColumn17.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn17.Visible = true;
			this.gridColumn17.VisibleIndex = 0;
			this.gridColumn17.Width = 92;
			// 
			// gridColumn18
			// 
			this.gridColumn18.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn18.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn18.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn18.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn18.Caption = "膳食说明";
			this.gridColumn18.FieldName = "FoodArr_Remark";
			this.gridColumn18.Name = "gridColumn18";
			this.gridColumn18.OptionsColumn.AllowEdit = false;
			this.gridColumn18.OptionsColumn.AllowFocus = false;
			this.gridColumn18.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn18.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn18.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn18.OptionsColumn.AllowMove = false;
			this.gridColumn18.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn18.OptionsColumn.ReadOnly = true;
			this.gridColumn18.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn18.Visible = true;
			this.gridColumn18.VisibleIndex = 1;
			this.gridColumn18.Width = 188;
			// 
			// gridColumn19
			// 
			this.gridColumn19.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn19.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn19.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn19.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn19.Caption = "适用年级";
			this.gridColumn19.FieldName = "FoodArr_SuitAge";
			this.gridColumn19.Name = "gridColumn19";
			this.gridColumn19.OptionsColumn.AllowEdit = false;
			this.gridColumn19.OptionsColumn.AllowFocus = false;
			this.gridColumn19.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn19.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn19.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn19.OptionsColumn.AllowMove = false;
			this.gridColumn19.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn19.OptionsColumn.ReadOnly = true;
			this.gridColumn19.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn19.Visible = true;
			this.gridColumn19.VisibleIndex = 2;
			this.gridColumn19.Width = 163;
			// 
			// gridColumn20
			// 
			this.gridColumn20.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn20.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn20.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn20.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn20.Caption = "是否起用";
			this.gridColumn20.FieldName = "FoodArr_ISUsed";
			this.gridColumn20.Name = "gridColumn20";
			this.gridColumn20.OptionsColumn.AllowEdit = false;
			this.gridColumn20.OptionsColumn.AllowFocus = false;
			this.gridColumn20.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn20.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn20.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn20.OptionsColumn.AllowMove = false;
			this.gridColumn20.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn20.OptionsColumn.ReadOnly = true;
			this.gridColumn20.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn20.Visible = true;
			this.gridColumn20.VisibleIndex = 3;
			this.gridColumn20.Width = 55;
			// 
			// notePanel3
			// 
			this.notePanel3.BackColor = System.Drawing.Color.LightGoldenrodYellow;
			this.notePanel3.Dock = System.Windows.Forms.DockStyle.Top;
			this.notePanel3.ForeColor = System.Drawing.Color.OrangeRed;
			this.notePanel3.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel3.Location = new System.Drawing.Point(3, 18);
			this.notePanel3.MaxRows = 5;
			this.notePanel3.Name = "notePanel3";
			this.notePanel3.ParentAutoHeight = true;
			this.notePanel3.Size = new System.Drawing.Size(513, 23);
			this.notePanel3.TabIndex = 35;
			this.notePanel3.TabStop = false;
			this.notePanel3.Text = "双击进行幼儿餐适用年级登记";
			// 
			// panelControl3
			// 
			this.panelControl3.Controls.Add(this.simpleButton_MealBack);
			this.panelControl3.Controls.Add(this.simpleButton_MealAppend);
			this.panelControl3.Controls.Add(this.simpleButton_MealDelete);
			this.panelControl3.Controls.Add(this.simpleButton_MealSave);
			this.panelControl3.Controls.Add(this.simpleButton_MealAdd);
			this.panelControl3.Dock = System.Windows.Forms.DockStyle.Top;
			this.panelControl3.Location = new System.Drawing.Point(0, 0);
			this.panelControl3.Name = "panelControl3";
			this.panelControl3.Size = new System.Drawing.Size(519, 48);
			this.panelControl3.TabIndex = 0;
			this.panelControl3.Text = "panelControl3";
			// 
			// simpleButton_MealBack
			// 
			this.simpleButton_MealBack.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.simpleButton_MealBack.Appearance.ForeColor = System.Drawing.Color.DarkMagenta;
			this.simpleButton_MealBack.Appearance.Options.UseFont = true;
			this.simpleButton_MealBack.Appearance.Options.UseForeColor = true;
			this.simpleButton_MealBack.Location = new System.Drawing.Point(8, 8);
			this.simpleButton_MealBack.Name = "simpleButton_MealBack";
			this.simpleButton_MealBack.Size = new System.Drawing.Size(72, 26);
			this.simpleButton_MealBack.TabIndex = 47;
			this.simpleButton_MealBack.Tag = 4;
			this.simpleButton_MealBack.Text = "返回";
			this.simpleButton_MealBack.Click += new System.EventHandler(this.simpleButton_MealBack_Click);
			// 
			// simpleButton_MealAppend
			// 
			this.simpleButton_MealAppend.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.simpleButton_MealAppend.Appearance.ForeColor = System.Drawing.Color.DarkMagenta;
			this.simpleButton_MealAppend.Appearance.Options.UseFont = true;
			this.simpleButton_MealAppend.Appearance.Options.UseForeColor = true;
			this.simpleButton_MealAppend.Location = new System.Drawing.Point(88, 8);
			this.simpleButton_MealAppend.Name = "simpleButton_MealAppend";
			this.simpleButton_MealAppend.Size = new System.Drawing.Size(72, 26);
			this.simpleButton_MealAppend.TabIndex = 46;
			this.simpleButton_MealAppend.Tag = 4;
			this.simpleButton_MealAppend.Text = "新建膳食";
			this.simpleButton_MealAppend.Click += new System.EventHandler(this.simpleButton_MealAppend_Click);
			// 
			// simpleButton_MealDelete
			// 
			this.simpleButton_MealDelete.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.simpleButton_MealDelete.Appearance.ForeColor = System.Drawing.Color.DarkMagenta;
			this.simpleButton_MealDelete.Appearance.Options.UseFont = true;
			this.simpleButton_MealDelete.Appearance.Options.UseForeColor = true;
			this.simpleButton_MealDelete.Location = new System.Drawing.Point(248, 8);
			this.simpleButton_MealDelete.Name = "simpleButton_MealDelete";
			this.simpleButton_MealDelete.Size = new System.Drawing.Size(72, 26);
			this.simpleButton_MealDelete.TabIndex = 45;
			this.simpleButton_MealDelete.Tag = 4;
			this.simpleButton_MealDelete.Text = "膳食删除";
			this.simpleButton_MealDelete.Click += new System.EventHandler(this.simpleButton_MealDelete_Click);
			// 
			// simpleButton_MealSave
			// 
			this.simpleButton_MealSave.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.simpleButton_MealSave.Appearance.ForeColor = System.Drawing.Color.DarkMagenta;
			this.simpleButton_MealSave.Appearance.Options.UseFont = true;
			this.simpleButton_MealSave.Appearance.Options.UseForeColor = true;
			this.simpleButton_MealSave.Enabled = false;
			this.simpleButton_MealSave.Location = new System.Drawing.Point(328, 8);
			this.simpleButton_MealSave.Name = "simpleButton_MealSave";
			this.simpleButton_MealSave.Size = new System.Drawing.Size(80, 26);
			this.simpleButton_MealSave.TabIndex = 43;
			this.simpleButton_MealSave.Tag = 4;
			this.simpleButton_MealSave.Text = "幼儿餐保存";
			this.simpleButton_MealSave.Click += new System.EventHandler(this.simpleButton_MealSave_Click);
			// 
			// simpleButton_MealAdd
			// 
			this.simpleButton_MealAdd.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.simpleButton_MealAdd.Appearance.ForeColor = System.Drawing.Color.DarkMagenta;
			this.simpleButton_MealAdd.Appearance.Options.UseFont = true;
			this.simpleButton_MealAdd.Appearance.Options.UseForeColor = true;
			this.simpleButton_MealAdd.Location = new System.Drawing.Point(168, 8);
			this.simpleButton_MealAdd.Name = "simpleButton_MealAdd";
			this.simpleButton_MealAdd.Size = new System.Drawing.Size(72, 26);
			this.simpleButton_MealAdd.TabIndex = 41;
			this.simpleButton_MealAdd.Tag = 4;
			this.simpleButton_MealAdd.Text = "膳食保存";
			this.simpleButton_MealAdd.Click += new System.EventHandler(this.simpleButton_MealAdd_Click);
			// 
			// xtraTabPage4
			// 
			this.xtraTabPage4.Appearance.PageClient.BackColor = System.Drawing.Color.WhiteSmoke;
			this.xtraTabPage4.Appearance.PageClient.Options.UseBackColor = true;
			this.xtraTabPage4.Controls.Add(this.splitContainerControl5);
			this.xtraTabPage4.Name = "xtraTabPage4";
			this.xtraTabPage4.PageVisible = false;
			this.xtraTabPage4.Size = new System.Drawing.Size(768, 515);
			this.xtraTabPage4.Text = "膳食营养综合统计表";
			// 
			// splitContainerControl5
			// 
			this.splitContainerControl5.Dock = System.Windows.Forms.DockStyle.Fill;
			this.splitContainerControl5.Location = new System.Drawing.Point(0, 0);
			this.splitContainerControl5.Name = "splitContainerControl5";
			this.splitContainerControl5.Panel1.Controls.Add(this.groupControl_Meal_Search);
			this.splitContainerControl5.Panel1.Text = "splitContainerControl5_Panel1";
			this.splitContainerControl5.Panel2.Controls.Add(this.groupControl_Meal_ReportPreview);
			this.splitContainerControl5.Panel2.Controls.Add(this.panelControl4);
			this.splitContainerControl5.Panel2.Text = "splitContainerControl5_Panel2";
			this.splitContainerControl5.Size = new System.Drawing.Size(768, 515);
			this.splitContainerControl5.SplitterPosition = 241;
			this.splitContainerControl5.TabIndex = 0;
			this.splitContainerControl5.Text = "splitContainerControl5";
			// 
			// groupControl_Meal_Search
			// 
			this.groupControl_Meal_Search.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.groupControl_Meal_Search.AppearanceCaption.Options.UseFont = true;
			this.groupControl_Meal_Search.Controls.Add(this.dateEdit_Meal_EndDate);
			this.groupControl_Meal_Search.Controls.Add(this.notePanel_Meal_EndDate);
			this.groupControl_Meal_Search.Controls.Add(this.dateEdit_Meal_BegDate);
			this.groupControl_Meal_Search.Controls.Add(this.notePanel_Meal_BegDate);
			this.groupControl_Meal_Search.Controls.Add(this.notePanel_Meal_Search);
			this.groupControl_Meal_Search.Dock = System.Windows.Forms.DockStyle.Top;
			this.groupControl_Meal_Search.Location = new System.Drawing.Point(0, 0);
			this.groupControl_Meal_Search.Name = "groupControl_Meal_Search";
			this.groupControl_Meal_Search.Size = new System.Drawing.Size(235, 176);
			this.groupControl_Meal_Search.TabIndex = 0;
			this.groupControl_Meal_Search.Text = "统计条件";
			// 
			// dateEdit_Meal_EndDate
			// 
			this.dateEdit_Meal_EndDate.EditValue = new System.DateTime(2005, 11, 24, 0, 0, 0, 0);
			this.dateEdit_Meal_EndDate.Location = new System.Drawing.Point(112, 104);
			this.dateEdit_Meal_EndDate.Name = "dateEdit_Meal_EndDate";
			// 
			// dateEdit_Meal_EndDate.Properties
			// 
			this.dateEdit_Meal_EndDate.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																														  new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.dateEdit_Meal_EndDate.Properties.Mask.EditMask = "d";
			this.dateEdit_Meal_EndDate.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.DateTime;
			this.dateEdit_Meal_EndDate.Size = new System.Drawing.Size(88, 23);
			this.dateEdit_Meal_EndDate.TabIndex = 38;
			// 
			// notePanel_Meal_EndDate
			// 
			this.notePanel_Meal_EndDate.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_Meal_EndDate.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_Meal_EndDate.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_Meal_EndDate.ForeColor = System.Drawing.Color.Black;
			this.notePanel_Meal_EndDate.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_Meal_EndDate.Location = new System.Drawing.Point(24, 104);
			this.notePanel_Meal_EndDate.MaxRows = 5;
			this.notePanel_Meal_EndDate.Name = "notePanel_Meal_EndDate";
			this.notePanel_Meal_EndDate.ParentAutoHeight = true;
			this.notePanel_Meal_EndDate.Size = new System.Drawing.Size(80, 22);
			this.notePanel_Meal_EndDate.TabIndex = 37;
			this.notePanel_Meal_EndDate.TabStop = false;
			this.notePanel_Meal_EndDate.Text = "截止日期:";
			// 
			// dateEdit_Meal_BegDate
			// 
			this.dateEdit_Meal_BegDate.EditValue = new System.DateTime(2005, 11, 24, 0, 0, 0, 0);
			this.dateEdit_Meal_BegDate.Location = new System.Drawing.Point(112, 64);
			this.dateEdit_Meal_BegDate.Name = "dateEdit_Meal_BegDate";
			// 
			// dateEdit_Meal_BegDate.Properties
			// 
			this.dateEdit_Meal_BegDate.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																														  new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.dateEdit_Meal_BegDate.Properties.Mask.EditMask = "d";
			this.dateEdit_Meal_BegDate.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.DateTime;
			this.dateEdit_Meal_BegDate.Size = new System.Drawing.Size(88, 23);
			this.dateEdit_Meal_BegDate.TabIndex = 36;
			// 
			// notePanel_Meal_BegDate
			// 
			this.notePanel_Meal_BegDate.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_Meal_BegDate.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_Meal_BegDate.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_Meal_BegDate.ForeColor = System.Drawing.Color.Black;
			this.notePanel_Meal_BegDate.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_Meal_BegDate.Location = new System.Drawing.Point(24, 64);
			this.notePanel_Meal_BegDate.MaxRows = 5;
			this.notePanel_Meal_BegDate.Name = "notePanel_Meal_BegDate";
			this.notePanel_Meal_BegDate.ParentAutoHeight = true;
			this.notePanel_Meal_BegDate.Size = new System.Drawing.Size(80, 22);
			this.notePanel_Meal_BegDate.TabIndex = 35;
			this.notePanel_Meal_BegDate.TabStop = false;
			this.notePanel_Meal_BegDate.Text = "起始日期:";
			// 
			// notePanel_Meal_Search
			// 
			this.notePanel_Meal_Search.BackColor = System.Drawing.Color.LightGoldenrodYellow;
			this.notePanel_Meal_Search.Dock = System.Windows.Forms.DockStyle.Top;
			this.notePanel_Meal_Search.ForeColor = System.Drawing.Color.OrangeRed;
			this.notePanel_Meal_Search.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_Meal_Search.Location = new System.Drawing.Point(3, 18);
			this.notePanel_Meal_Search.MaxRows = 5;
			this.notePanel_Meal_Search.Name = "notePanel_Meal_Search";
			this.notePanel_Meal_Search.ParentAutoHeight = true;
			this.notePanel_Meal_Search.Size = new System.Drawing.Size(229, 23);
			this.notePanel_Meal_Search.TabIndex = 34;
			this.notePanel_Meal_Search.TabStop = false;
			this.notePanel_Meal_Search.Text = "指定统计的时间范围";
			// 
			// groupControl_Meal_ReportPreview
			// 
			this.groupControl_Meal_ReportPreview.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.groupControl_Meal_ReportPreview.AppearanceCaption.Options.UseFont = true;
			this.groupControl_Meal_ReportPreview.Dock = System.Windows.Forms.DockStyle.Fill;
			this.groupControl_Meal_ReportPreview.Location = new System.Drawing.Point(0, 48);
			this.groupControl_Meal_ReportPreview.Name = "groupControl_Meal_ReportPreview";
			this.groupControl_Meal_ReportPreview.Size = new System.Drawing.Size(517, 461);
			this.groupControl_Meal_ReportPreview.TabIndex = 1;
			this.groupControl_Meal_ReportPreview.Text = "图形报表预览";
			// 
			// panelControl4
			// 
			this.panelControl4.Controls.Add(this.simpleButton_Meal_PrintReport);
			this.panelControl4.Controls.Add(this.simpleButton_Meal_PreviewReport);
			this.panelControl4.Dock = System.Windows.Forms.DockStyle.Top;
			this.panelControl4.Location = new System.Drawing.Point(0, 0);
			this.panelControl4.Name = "panelControl4";
			this.panelControl4.Size = new System.Drawing.Size(517, 48);
			this.panelControl4.TabIndex = 0;
			this.panelControl4.Text = "panelControl4";
			// 
			// simpleButton_Meal_PrintReport
			// 
			this.simpleButton_Meal_PrintReport.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.simpleButton_Meal_PrintReport.Appearance.ForeColor = System.Drawing.Color.DarkMagenta;
			this.simpleButton_Meal_PrintReport.Appearance.Options.UseFont = true;
			this.simpleButton_Meal_PrintReport.Appearance.Options.UseForeColor = true;
			this.simpleButton_Meal_PrintReport.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton_Meal_PrintReport.Image")));
			this.simpleButton_Meal_PrintReport.Location = new System.Drawing.Point(128, 11);
			this.simpleButton_Meal_PrintReport.Name = "simpleButton_Meal_PrintReport";
			this.simpleButton_Meal_PrintReport.Size = new System.Drawing.Size(96, 26);
			this.simpleButton_Meal_PrintReport.TabIndex = 7;
			this.simpleButton_Meal_PrintReport.Tag = 4;
			this.simpleButton_Meal_PrintReport.Text = "图形打印";
			// 
			// simpleButton_Meal_PreviewReport
			// 
			this.simpleButton_Meal_PreviewReport.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.simpleButton_Meal_PreviewReport.Appearance.ForeColor = System.Drawing.Color.DarkMagenta;
			this.simpleButton_Meal_PreviewReport.Appearance.Options.UseFont = true;
			this.simpleButton_Meal_PreviewReport.Appearance.Options.UseForeColor = true;
			this.simpleButton_Meal_PreviewReport.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton_Meal_PreviewReport.Image")));
			this.simpleButton_Meal_PreviewReport.Location = new System.Drawing.Point(16, 11);
			this.simpleButton_Meal_PreviewReport.Name = "simpleButton_Meal_PreviewReport";
			this.simpleButton_Meal_PreviewReport.Size = new System.Drawing.Size(92, 26);
			this.simpleButton_Meal_PreviewReport.TabIndex = 6;
			this.simpleButton_Meal_PreviewReport.Tag = 4;
			this.simpleButton_Meal_PreviewReport.Text = "报  表";
			this.simpleButton_Meal_PreviewReport.Click += new System.EventHandler(this.simpleButton_Meal_PreviewReport_Click);
			// 
			// xtraTabPage5
			// 
			this.xtraTabPage5.Appearance.PageClient.BackColor = System.Drawing.Color.WhiteSmoke;
			this.xtraTabPage5.Appearance.PageClient.Options.UseBackColor = true;
			this.xtraTabPage5.Controls.Add(this.splitContainerControl6);
			this.xtraTabPage5.Name = "xtraTabPage5";
			this.xtraTabPage5.Size = new System.Drawing.Size(768, 515);
			this.xtraTabPage5.Text = "幼儿身体评测登记";
			// 
			// splitContainerControl6
			// 
			this.splitContainerControl6.Dock = System.Windows.Forms.DockStyle.Fill;
			this.splitContainerControl6.Location = new System.Drawing.Point(0, 0);
			this.splitContainerControl6.Name = "splitContainerControl6";
			this.splitContainerControl6.Panel1.Controls.Add(this.gridControl_HInputStu);
			this.splitContainerControl6.Panel1.Controls.Add(this.groupControl_HInputSer);
			this.splitContainerControl6.Panel1.Text = "splitContainerControl6_Panel1";
			this.splitContainerControl6.Panel2.Controls.Add(this.groupControl_HInputDiagInfo);
			this.splitContainerControl6.Panel2.Controls.Add(this.panelControl5);
			this.splitContainerControl6.Panel2.Text = "splitContainerControl6_Panel2";
			this.splitContainerControl6.Size = new System.Drawing.Size(768, 515);
			this.splitContainerControl6.SplitterPosition = 204;
			this.splitContainerControl6.TabIndex = 0;
			this.splitContainerControl6.Text = "splitContainerControl6";
			// 
			// gridControl_HInputStu
			// 
			this.gridControl_HInputStu.Dock = System.Windows.Forms.DockStyle.Fill;
			// 
			// gridControl_HInputStu.EmbeddedNavigator
			// 
			this.gridControl_HInputStu.EmbeddedNavigator.Name = "";
			this.gridControl_HInputStu.Location = new System.Drawing.Point(0, 256);
			this.gridControl_HInputStu.MainView = this.gridView6;
			this.gridControl_HInputStu.Name = "gridControl_HInputStu";
			this.gridControl_HInputStu.Size = new System.Drawing.Size(198, 253);
			this.gridControl_HInputStu.TabIndex = 1;
			this.gridControl_HInputStu.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
																												 this.gridView6});
			this.gridControl_HInputStu.DoubleClick += new System.EventHandler(this.gridControl_HInputStu_DoubleClick);
			// 
			// gridView6
			// 
			this.gridView6.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
																							 this.gridColumn21,
																							 this.gridColumn22,
																							 this.gridColumn23});
			this.gridView6.GridControl = this.gridControl_HInputStu;
			this.gridView6.Name = "gridView6";
			this.gridView6.OptionsCustomization.AllowFilter = false;
			this.gridView6.OptionsView.ShowFilterPanel = false;
			this.gridView6.OptionsView.ShowGroupPanel = false;
			this.gridView6.FocusedRowChanged += new DevExpress.XtraGrid.Views.Base.FocusedRowChangedEventHandler(this.gridView6_FocusedRowChanged);
			// 
			// gridColumn21
			// 
			this.gridColumn21.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn21.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn21.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn21.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn21.Caption = "学号";
			this.gridColumn21.FieldName = "info_stuNumber";
			this.gridColumn21.Name = "gridColumn21";
			this.gridColumn21.OptionsColumn.AllowEdit = false;
			this.gridColumn21.OptionsColumn.AllowFocus = false;
			this.gridColumn21.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn21.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn21.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn21.OptionsColumn.AllowMove = false;
			this.gridColumn21.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn21.OptionsColumn.ReadOnly = true;
			this.gridColumn21.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn21.Visible = true;
			this.gridColumn21.VisibleIndex = 0;
			this.gridColumn21.Width = 62;
			// 
			// gridColumn22
			// 
			this.gridColumn22.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn22.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn22.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn22.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn22.Caption = "姓名";
			this.gridColumn22.FieldName = "info_stuName";
			this.gridColumn22.Name = "gridColumn22";
			this.gridColumn22.OptionsColumn.AllowEdit = false;
			this.gridColumn22.OptionsColumn.AllowFocus = false;
			this.gridColumn22.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn22.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn22.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn22.OptionsColumn.AllowMove = false;
			this.gridColumn22.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn22.OptionsColumn.ReadOnly = true;
			this.gridColumn22.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn22.Visible = true;
			this.gridColumn22.VisibleIndex = 1;
			this.gridColumn22.Width = 58;
			// 
			// gridColumn23
			// 
			this.gridColumn23.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn23.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn23.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn23.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn23.Caption = "班级";
			this.gridColumn23.FieldName = "info_className";
			this.gridColumn23.Name = "gridColumn23";
			this.gridColumn23.OptionsColumn.AllowEdit = false;
			this.gridColumn23.OptionsColumn.AllowFocus = false;
			this.gridColumn23.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn23.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn23.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn23.OptionsColumn.AllowMove = false;
			this.gridColumn23.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn23.OptionsColumn.ReadOnly = true;
			this.gridColumn23.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn23.Visible = true;
			this.gridColumn23.VisibleIndex = 2;
			this.gridColumn23.Width = 61;
			// 
			// groupControl_HInputSer
			// 
			this.groupControl_HInputSer.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.groupControl_HInputSer.AppearanceCaption.Options.UseFont = true;
			this.groupControl_HInputSer.Controls.Add(this.comboBoxEdit_HInputGender);
			this.groupControl_HInputSer.Controls.Add(this.notePanel_HInputGender);
			this.groupControl_HInputSer.Controls.Add(this.dataNavigator_HInputNav);
			this.groupControl_HInputSer.Controls.Add(this.textEdit_HInputNumber);
			this.groupControl_HInputSer.Controls.Add(this.textEdit_HInputName);
			this.groupControl_HInputSer.Controls.Add(this.comboBoxEdit_HInputClass);
			this.groupControl_HInputSer.Controls.Add(this.notePanel_HInputClass);
			this.groupControl_HInputSer.Controls.Add(this.comboBoxEdit_HInputGrade);
			this.groupControl_HInputSer.Controls.Add(this.notePanel_HInputGrade);
			this.groupControl_HInputSer.Controls.Add(this.notePanel_HInputSer);
			this.groupControl_HInputSer.Controls.Add(this.notePanel_HInputNumber);
			this.groupControl_HInputSer.Controls.Add(this.notePanel_HInputName);
			this.groupControl_HInputSer.Dock = System.Windows.Forms.DockStyle.Top;
			this.groupControl_HInputSer.Location = new System.Drawing.Point(0, 0);
			this.groupControl_HInputSer.Name = "groupControl_HInputSer";
			this.groupControl_HInputSer.Size = new System.Drawing.Size(198, 256);
			this.groupControl_HInputSer.TabIndex = 0;
			this.groupControl_HInputSer.Text = "信息查询";
			// 
			// comboBoxEdit_HInputGender
			// 
			this.comboBoxEdit_HInputGender.EditValue = "全部";
			this.comboBoxEdit_HInputGender.Location = new System.Drawing.Point(88, 184);
			this.comboBoxEdit_HInputGender.Name = "comboBoxEdit_HInputGender";
			// 
			// comboBoxEdit_HInputGender.Properties
			// 
			this.comboBoxEdit_HInputGender.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																															  new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.comboBoxEdit_HInputGender.Properties.Items.AddRange(new object[] {
																					  "全部",
																					  "男",
																					  "女"});
			this.comboBoxEdit_HInputGender.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
			this.comboBoxEdit_HInputGender.Size = new System.Drawing.Size(88, 23);
			this.comboBoxEdit_HInputGender.TabIndex = 45;
			this.comboBoxEdit_HInputGender.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit_HInputGender_SelectedIndexChanged);
			// 
			// notePanel_HInputGender
			// 
			this.notePanel_HInputGender.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_HInputGender.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_HInputGender.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_HInputGender.ForeColor = System.Drawing.Color.Black;
			this.notePanel_HInputGender.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_HInputGender.Location = new System.Drawing.Point(16, 184);
			this.notePanel_HInputGender.MaxRows = 5;
			this.notePanel_HInputGender.Name = "notePanel_HInputGender";
			this.notePanel_HInputGender.ParentAutoHeight = true;
			this.notePanel_HInputGender.Size = new System.Drawing.Size(64, 22);
			this.notePanel_HInputGender.TabIndex = 43;
			this.notePanel_HInputGender.TabStop = false;
			this.notePanel_HInputGender.Text = "性  别:";
			// 
			// dataNavigator_HInputNav
			// 
			this.dataNavigator_HInputNav.Buttons.Append.Hint = "新建卡";
			this.dataNavigator_HInputNav.Buttons.Append.Visible = false;
			this.dataNavigator_HInputNav.Buttons.CancelEdit.Visible = false;
			this.dataNavigator_HInputNav.Buttons.EndEdit.Visible = false;
			this.dataNavigator_HInputNav.Buttons.First.Hint = "第一条记录";
			this.dataNavigator_HInputNav.Buttons.Last.Hint = "最后一条记录";
			this.dataNavigator_HInputNav.Buttons.Next.Hint = "下一条记录";
			this.dataNavigator_HInputNav.Buttons.NextPage.Visible = false;
			this.dataNavigator_HInputNav.Buttons.Prev.Hint = "上一条记录";
			this.dataNavigator_HInputNav.Buttons.PrevPage.Visible = false;
			this.dataNavigator_HInputNav.Buttons.Remove.Visible = false;
			this.dataNavigator_HInputNav.Dock = System.Windows.Forms.DockStyle.Bottom;
			this.dataNavigator_HInputNav.Location = new System.Drawing.Point(3, 225);
			this.dataNavigator_HInputNav.Name = "dataNavigator_HInputNav";
			this.dataNavigator_HInputNav.ShowToolTips = true;
			this.dataNavigator_HInputNav.Size = new System.Drawing.Size(192, 28);
			this.dataNavigator_HInputNav.TabIndex = 41;
			this.dataNavigator_HInputNav.Text = "dataNavigator1";
			this.dataNavigator_HInputNav.TextLocation = DevExpress.XtraEditors.NavigatorButtonsTextLocation.End;
			// 
			// textEdit_HInputNumber
			// 
			this.textEdit_HInputNumber.EditValue = "";
			this.textEdit_HInputNumber.Location = new System.Drawing.Point(88, 152);
			this.textEdit_HInputNumber.Name = "textEdit_HInputNumber";
			this.textEdit_HInputNumber.Size = new System.Drawing.Size(88, 23);
			this.textEdit_HInputNumber.TabIndex = 40;
			this.textEdit_HInputNumber.EditValueChanged += new System.EventHandler(this.textEdit_HInputNumber_EditValueChanged);
			// 
			// textEdit_HInputName
			// 
			this.textEdit_HInputName.EditValue = "";
			this.textEdit_HInputName.Location = new System.Drawing.Point(88, 120);
			this.textEdit_HInputName.Name = "textEdit_HInputName";
			this.textEdit_HInputName.Size = new System.Drawing.Size(88, 23);
			this.textEdit_HInputName.TabIndex = 39;
			this.textEdit_HInputName.EditValueChanged += new System.EventHandler(this.textEdit_HInputName_EditValueChanged);
			// 
			// comboBoxEdit_HInputClass
			// 
			this.comboBoxEdit_HInputClass.EditValue = "全部";
			this.comboBoxEdit_HInputClass.Location = new System.Drawing.Point(88, 88);
			this.comboBoxEdit_HInputClass.Name = "comboBoxEdit_HInputClass";
			// 
			// comboBoxEdit_HInputClass.Properties
			// 
			this.comboBoxEdit_HInputClass.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																															 new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.comboBoxEdit_HInputClass.Properties.Items.AddRange(new object[] {
																					 "全部"});
			this.comboBoxEdit_HInputClass.Size = new System.Drawing.Size(88, 23);
			this.comboBoxEdit_HInputClass.TabIndex = 38;
			this.comboBoxEdit_HInputClass.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit_HInputClass_SelectedIndexChanged);
			// 
			// notePanel_HInputClass
			// 
			this.notePanel_HInputClass.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_HInputClass.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_HInputClass.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_HInputClass.ForeColor = System.Drawing.Color.Black;
			this.notePanel_HInputClass.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_HInputClass.Location = new System.Drawing.Point(16, 88);
			this.notePanel_HInputClass.MaxRows = 5;
			this.notePanel_HInputClass.Name = "notePanel_HInputClass";
			this.notePanel_HInputClass.ParentAutoHeight = true;
			this.notePanel_HInputClass.Size = new System.Drawing.Size(64, 22);
			this.notePanel_HInputClass.TabIndex = 37;
			this.notePanel_HInputClass.TabStop = false;
			this.notePanel_HInputClass.Text = "班  级:";
			// 
			// comboBoxEdit_HInputGrade
			// 
			this.comboBoxEdit_HInputGrade.EditValue = "全部";
			this.comboBoxEdit_HInputGrade.Location = new System.Drawing.Point(88, 56);
			this.comboBoxEdit_HInputGrade.Name = "comboBoxEdit_HInputGrade";
			// 
			// comboBoxEdit_HInputGrade.Properties
			// 
			this.comboBoxEdit_HInputGrade.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																															 new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.comboBoxEdit_HInputGrade.Properties.Items.AddRange(new object[] {
																					 "全部"});
			this.comboBoxEdit_HInputGrade.Size = new System.Drawing.Size(88, 23);
			this.comboBoxEdit_HInputGrade.TabIndex = 36;
			this.comboBoxEdit_HInputGrade.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit_HInputGrade_SelectedIndexChanged);
			// 
			// notePanel_HInputGrade
			// 
			this.notePanel_HInputGrade.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_HInputGrade.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_HInputGrade.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_HInputGrade.ForeColor = System.Drawing.Color.Black;
			this.notePanel_HInputGrade.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_HInputGrade.Location = new System.Drawing.Point(16, 56);
			this.notePanel_HInputGrade.MaxRows = 5;
			this.notePanel_HInputGrade.Name = "notePanel_HInputGrade";
			this.notePanel_HInputGrade.ParentAutoHeight = true;
			this.notePanel_HInputGrade.Size = new System.Drawing.Size(64, 22);
			this.notePanel_HInputGrade.TabIndex = 35;
			this.notePanel_HInputGrade.TabStop = false;
			this.notePanel_HInputGrade.Text = "年  级:";
			// 
			// notePanel_HInputSer
			// 
			this.notePanel_HInputSer.BackColor = System.Drawing.Color.LightGoldenrodYellow;
			this.notePanel_HInputSer.Dock = System.Windows.Forms.DockStyle.Top;
			this.notePanel_HInputSer.ForeColor = System.Drawing.Color.OrangeRed;
			this.notePanel_HInputSer.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_HInputSer.Location = new System.Drawing.Point(3, 18);
			this.notePanel_HInputSer.MaxRows = 5;
			this.notePanel_HInputSer.Name = "notePanel_HInputSer";
			this.notePanel_HInputSer.ParentAutoHeight = true;
			this.notePanel_HInputSer.Size = new System.Drawing.Size(192, 23);
			this.notePanel_HInputSer.TabIndex = 23;
			this.notePanel_HInputSer.TabStop = false;
			this.notePanel_HInputSer.Text = "检索您的幼儿";
			// 
			// notePanel_HInputNumber
			// 
			this.notePanel_HInputNumber.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_HInputNumber.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_HInputNumber.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_HInputNumber.ForeColor = System.Drawing.Color.Black;
			this.notePanel_HInputNumber.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_HInputNumber.Location = new System.Drawing.Point(16, 152);
			this.notePanel_HInputNumber.MaxRows = 5;
			this.notePanel_HInputNumber.Name = "notePanel_HInputNumber";
			this.notePanel_HInputNumber.ParentAutoHeight = true;
			this.notePanel_HInputNumber.Size = new System.Drawing.Size(64, 22);
			this.notePanel_HInputNumber.TabIndex = 32;
			this.notePanel_HInputNumber.TabStop = false;
			this.notePanel_HInputNumber.Text = "学  号:";
			// 
			// notePanel_HInputName
			// 
			this.notePanel_HInputName.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_HInputName.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_HInputName.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_HInputName.ForeColor = System.Drawing.Color.Black;
			this.notePanel_HInputName.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_HInputName.Location = new System.Drawing.Point(16, 120);
			this.notePanel_HInputName.MaxRows = 5;
			this.notePanel_HInputName.Name = "notePanel_HInputName";
			this.notePanel_HInputName.ParentAutoHeight = true;
			this.notePanel_HInputName.Size = new System.Drawing.Size(64, 22);
			this.notePanel_HInputName.TabIndex = 31;
			this.notePanel_HInputName.TabStop = false;
			this.notePanel_HInputName.Text = "姓  名:";
			// 
			// groupControl_HInputDiagInfo
			// 
			this.groupControl_HInputDiagInfo.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.groupControl_HInputDiagInfo.AppearanceCaption.Options.UseFont = true;
			this.groupControl_HInputDiagInfo.Controls.Add(this.comboBoxEdit_HInputRegion);
			this.groupControl_HInputDiagInfo.Controls.Add(this.notePanel6);
			this.groupControl_HInputDiagInfo.Controls.Add(this.comboBoxEdit_HInputStd);
			this.groupControl_HInputDiagInfo.Controls.Add(this.notePanel_HInputStd);
			this.groupControl_HInputDiagInfo.Controls.Add(this.textEdit_DiagCheckName);
			this.groupControl_HInputDiagInfo.Controls.Add(this.textEdit_DiagCheckBindingID);
			this.groupControl_HInputDiagInfo.Controls.Add(this.notePanel_DiagCheckName);
			this.groupControl_HInputDiagInfo.Controls.Add(this.groupControl_HInputDiagResult);
			this.groupControl_HInputDiagInfo.Controls.Add(this.memoEdit_DiagRemark);
			this.groupControl_HInputDiagInfo.Controls.Add(this.notePanel_DiagRemark);
			this.groupControl_HInputDiagInfo.Controls.Add(this.textEdit_DiagWeight);
			this.groupControl_HInputDiagInfo.Controls.Add(this.textEdit_DiagHeight);
			this.groupControl_HInputDiagInfo.Controls.Add(this.notePanel_HInputDaigInfo);
			this.groupControl_HInputDiagInfo.Controls.Add(this.notePanel_DiagWeight);
			this.groupControl_HInputDiagInfo.Controls.Add(this.notePanel_DiagHeight);
			this.groupControl_HInputDiagInfo.Controls.Add(this.dateEdit_DiagCheckDate);
			this.groupControl_HInputDiagInfo.Controls.Add(this.notePanel_DiagCheckDate);
			this.groupControl_HInputDiagInfo.Controls.Add(this.notePanel_HInputBirthday);
			this.groupControl_HInputDiagInfo.Controls.Add(this.textEdit_HInputBirthday);
			this.groupControl_HInputDiagInfo.Controls.Add(this.notePanel_DiagCheckGender);
			this.groupControl_HInputDiagInfo.Controls.Add(this.textEdit_DiagCheckGender);
			this.groupControl_HInputDiagInfo.Dock = System.Windows.Forms.DockStyle.Top;
			this.groupControl_HInputDiagInfo.Location = new System.Drawing.Point(0, 48);
			this.groupControl_HInputDiagInfo.Name = "groupControl_HInputDiagInfo";
			this.groupControl_HInputDiagInfo.Size = new System.Drawing.Size(554, 432);
			this.groupControl_HInputDiagInfo.TabIndex = 1;
			this.groupControl_HInputDiagInfo.Text = "诊断信息";
			this.groupControl_HInputDiagInfo.Paint += new System.Windows.Forms.PaintEventHandler(this.groupControl_HInputDiagInfo_Paint);
			// 
			// comboBoxEdit_HInputRegion
			// 
			this.comboBoxEdit_HInputRegion.EditValue = "上海标准";
			this.comboBoxEdit_HInputRegion.Location = new System.Drawing.Point(136, 152);
			this.comboBoxEdit_HInputRegion.Name = "comboBoxEdit_HInputRegion";
			// 
			// comboBoxEdit_HInputRegion.Properties
			// 
			this.comboBoxEdit_HInputRegion.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																															  new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.comboBoxEdit_HInputRegion.Properties.Items.AddRange(new object[] {
																					  "上海标准",
																					  "全国标准"});
			this.comboBoxEdit_HInputRegion.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
			this.comboBoxEdit_HInputRegion.Size = new System.Drawing.Size(88, 23);
			this.comboBoxEdit_HInputRegion.TabIndex = 55;
			this.comboBoxEdit_HInputRegion.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit_HInputRegion_SelectedIndexChanged);
			// 
			// notePanel6
			// 
			this.notePanel6.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel6.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel6.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel6.ForeColor = System.Drawing.Color.Black;
			this.notePanel6.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel6.Location = new System.Drawing.Point(40, 152);
			this.notePanel6.MaxRows = 5;
			this.notePanel6.Name = "notePanel6";
			this.notePanel6.ParentAutoHeight = true;
			this.notePanel6.Size = new System.Drawing.Size(80, 22);
			this.notePanel6.TabIndex = 54;
			this.notePanel6.TabStop = false;
			this.notePanel6.Text = "地区标准:";
			// 
			// comboBoxEdit_HInputStd
			// 
			this.comboBoxEdit_HInputStd.EditValue = "市区标准";
			this.comboBoxEdit_HInputStd.Location = new System.Drawing.Point(136, 184);
			this.comboBoxEdit_HInputStd.Name = "comboBoxEdit_HInputStd";
			// 
			// comboBoxEdit_HInputStd.Properties
			// 
			this.comboBoxEdit_HInputStd.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																														   new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.comboBoxEdit_HInputStd.Properties.Items.AddRange(new object[] {
																				   "市区标准",
																				   "郊区标准"});
			this.comboBoxEdit_HInputStd.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
			this.comboBoxEdit_HInputStd.Size = new System.Drawing.Size(88, 23);
			this.comboBoxEdit_HInputStd.TabIndex = 53;
			this.comboBoxEdit_HInputStd.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit_HInputStd_SelectedIndexChanged);
			// 
			// notePanel_HInputStd
			// 
			this.notePanel_HInputStd.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_HInputStd.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_HInputStd.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_HInputStd.ForeColor = System.Drawing.Color.Black;
			this.notePanel_HInputStd.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_HInputStd.Location = new System.Drawing.Point(40, 184);
			this.notePanel_HInputStd.MaxRows = 5;
			this.notePanel_HInputStd.Name = "notePanel_HInputStd";
			this.notePanel_HInputStd.ParentAutoHeight = true;
			this.notePanel_HInputStd.Size = new System.Drawing.Size(80, 22);
			this.notePanel_HInputStd.TabIndex = 52;
			this.notePanel_HInputStd.TabStop = false;
			this.notePanel_HInputStd.Text = "市郊标准:";
			// 
			// textEdit_DiagCheckName
			// 
			this.textEdit_DiagCheckName.EditValue = "";
			this.textEdit_DiagCheckName.Location = new System.Drawing.Point(136, 56);
			this.textEdit_DiagCheckName.Name = "textEdit_DiagCheckName";
			// 
			// textEdit_DiagCheckName.Properties
			// 
			this.textEdit_DiagCheckName.Properties.Enabled = false;
			this.textEdit_DiagCheckName.Size = new System.Drawing.Size(88, 23);
			this.textEdit_DiagCheckName.TabIndex = 49;
			// 
			// textEdit_DiagCheckBindingID
			// 
			this.textEdit_DiagCheckBindingID.EditValue = "";
			this.textEdit_DiagCheckBindingID.Location = new System.Drawing.Point(200, 64);
			this.textEdit_DiagCheckBindingID.Name = "textEdit_DiagCheckBindingID";
			// 
			// textEdit_DiagCheckBindingID.Properties
			// 
			this.textEdit_DiagCheckBindingID.Properties.AutoHeight = false;
			this.textEdit_DiagCheckBindingID.Properties.Enabled = false;
			this.textEdit_DiagCheckBindingID.Size = new System.Drawing.Size(16, 8);
			this.textEdit_DiagCheckBindingID.TabIndex = 48;
			// 
			// notePanel_DiagCheckName
			// 
			this.notePanel_DiagCheckName.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_DiagCheckName.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_DiagCheckName.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_DiagCheckName.ForeColor = System.Drawing.Color.Black;
			this.notePanel_DiagCheckName.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_DiagCheckName.Location = new System.Drawing.Point(40, 56);
			this.notePanel_DiagCheckName.MaxRows = 5;
			this.notePanel_DiagCheckName.Name = "notePanel_DiagCheckName";
			this.notePanel_DiagCheckName.ParentAutoHeight = true;
			this.notePanel_DiagCheckName.Size = new System.Drawing.Size(80, 22);
			this.notePanel_DiagCheckName.TabIndex = 47;
			this.notePanel_DiagCheckName.TabStop = false;
			this.notePanel_DiagCheckName.Text = "幼儿姓名:";
			// 
			// groupControl_HInputDiagResult
			// 
			this.groupControl_HInputDiagResult.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.groupControl_HInputDiagResult.AppearanceCaption.Options.UseFont = true;
			this.groupControl_HInputDiagResult.Controls.Add(this.textEdit_DiagResultX);
			this.groupControl_HInputDiagResult.Controls.Add(this.textEdit_DiagResultWHOPer);
			this.groupControl_HInputDiagResult.Controls.Add(this.textEdit_DiagResultHeightWeight);
			this.groupControl_HInputDiagResult.Controls.Add(this.textEdit_DiagResultUnderWeight);
			this.groupControl_HInputDiagResult.Controls.Add(this.notePanel8);
			this.groupControl_HInputDiagResult.Controls.Add(this.notePanel9);
			this.groupControl_HInputDiagResult.Controls.Add(this.notePanel10);
			this.groupControl_HInputDiagResult.Controls.Add(this.textEdit_DiagResultStunting);
			this.groupControl_HInputDiagResult.Controls.Add(this.textEdit_DiagResultWasting);
			this.groupControl_HInputDiagResult.Controls.Add(this.notePanel1);
			this.groupControl_HInputDiagResult.Controls.Add(this.textEdit_DiagResultHeight);
			this.groupControl_HInputDiagResult.Controls.Add(this.textEdit_DiagResultWeight);
			this.groupControl_HInputDiagResult.Controls.Add(this.notePanel_DiagResultWeight);
			this.groupControl_HInputDiagResult.Controls.Add(this.notePanel_DiagResultNut);
			this.groupControl_HInputDiagResult.Controls.Add(this.notePanel_DiagResultWHO);
			this.groupControl_HInputDiagResult.Controls.Add(this.notePanel_DiagResultHeight);
			this.groupControl_HInputDiagResult.Controls.Add(this.notePanel_DiagResultAge);
			this.groupControl_HInputDiagResult.Controls.Add(this.textEdit_DiagResultWHO);
			this.groupControl_HInputDiagResult.Controls.Add(this.textEdit_DiagResultNut);
			this.groupControl_HInputDiagResult.Controls.Add(this.textEdit_DiagResultAge);
			this.groupControl_HInputDiagResult.Dock = System.Windows.Forms.DockStyle.Right;
			this.groupControl_HInputDiagResult.Location = new System.Drawing.Point(231, 41);
			this.groupControl_HInputDiagResult.Name = "groupControl_HInputDiagResult";
			this.groupControl_HInputDiagResult.Size = new System.Drawing.Size(320, 388);
			this.groupControl_HInputDiagResult.TabIndex = 46;
			this.groupControl_HInputDiagResult.Text = "诊断结果";
			// 
			// textEdit_DiagResultX
			// 
			this.textEdit_DiagResultX.EditValue = "";
			this.textEdit_DiagResultX.Location = new System.Drawing.Point(248, 224);
			this.textEdit_DiagResultX.Name = "textEdit_DiagResultX";
			// 
			// textEdit_DiagResultX.Properties
			// 
			this.textEdit_DiagResultX.Properties.Enabled = false;
			this.textEdit_DiagResultX.Size = new System.Drawing.Size(88, 23);
			this.textEdit_DiagResultX.TabIndex = 76;
			this.textEdit_DiagResultX.Visible = false;
			// 
			// textEdit_DiagResultWHOPer
			// 
			this.textEdit_DiagResultWHOPer.EditValue = "";
			this.textEdit_DiagResultWHOPer.Location = new System.Drawing.Point(248, 184);
			this.textEdit_DiagResultWHOPer.Name = "textEdit_DiagResultWHOPer";
			// 
			// textEdit_DiagResultWHOPer.Properties
			// 
			this.textEdit_DiagResultWHOPer.Properties.Enabled = false;
			this.textEdit_DiagResultWHOPer.Size = new System.Drawing.Size(88, 23);
			this.textEdit_DiagResultWHOPer.TabIndex = 75;
			this.textEdit_DiagResultWHOPer.Visible = false;
			// 
			// textEdit_DiagResultHeightWeight
			// 
			this.textEdit_DiagResultHeightWeight.EditValue = "";
			this.textEdit_DiagResultHeightWeight.Location = new System.Drawing.Point(248, 144);
			this.textEdit_DiagResultHeightWeight.Name = "textEdit_DiagResultHeightWeight";
			// 
			// textEdit_DiagResultHeightWeight.Properties
			// 
			this.textEdit_DiagResultHeightWeight.Properties.Enabled = false;
			this.textEdit_DiagResultHeightWeight.Size = new System.Drawing.Size(88, 23);
			this.textEdit_DiagResultHeightWeight.TabIndex = 74;
			this.textEdit_DiagResultHeightWeight.Visible = false;
			// 
			// textEdit_DiagResultUnderWeight
			// 
			this.textEdit_DiagResultUnderWeight.EditValue = "";
			this.textEdit_DiagResultUnderWeight.Location = new System.Drawing.Point(152, 264);
			this.textEdit_DiagResultUnderWeight.Name = "textEdit_DiagResultUnderWeight";
			// 
			// textEdit_DiagResultUnderWeight.Properties
			// 
			this.textEdit_DiagResultUnderWeight.Properties.Enabled = false;
			this.textEdit_DiagResultUnderWeight.Size = new System.Drawing.Size(88, 23);
			this.textEdit_DiagResultUnderWeight.TabIndex = 70;
			// 
			// notePanel8
			// 
			this.notePanel8.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel8.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel8.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel8.ForeColor = System.Drawing.Color.Black;
			this.notePanel8.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel8.Location = new System.Drawing.Point(40, 264);
			this.notePanel8.MaxRows = 5;
			this.notePanel8.Name = "notePanel8";
			this.notePanel8.ParentAutoHeight = true;
			this.notePanel8.Size = new System.Drawing.Size(96, 22);
			this.notePanel8.TabIndex = 68;
			this.notePanel8.TabStop = false;
			this.notePanel8.Text = "  体重低下:";
			// 
			// notePanel9
			// 
			this.notePanel9.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel9.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel9.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel9.ForeColor = System.Drawing.Color.Black;
			this.notePanel9.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel9.Location = new System.Drawing.Point(40, 344);
			this.notePanel9.MaxRows = 5;
			this.notePanel9.Name = "notePanel9";
			this.notePanel9.ParentAutoHeight = true;
			this.notePanel9.Size = new System.Drawing.Size(96, 22);
			this.notePanel9.TabIndex = 71;
			this.notePanel9.TabStop = false;
			this.notePanel9.Text = "  消瘦情况:";
			// 
			// notePanel10
			// 
			this.notePanel10.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel10.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel10.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel10.ForeColor = System.Drawing.Color.Black;
			this.notePanel10.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel10.Location = new System.Drawing.Point(40, 304);
			this.notePanel10.MaxRows = 5;
			this.notePanel10.Name = "notePanel10";
			this.notePanel10.ParentAutoHeight = true;
			this.notePanel10.Size = new System.Drawing.Size(96, 22);
			this.notePanel10.TabIndex = 69;
			this.notePanel10.TabStop = false;
			this.notePanel10.Text = "   生长迟缓:";
			// 
			// textEdit_DiagResultStunting
			// 
			this.textEdit_DiagResultStunting.EditValue = "";
			this.textEdit_DiagResultStunting.Location = new System.Drawing.Point(152, 304);
			this.textEdit_DiagResultStunting.Name = "textEdit_DiagResultStunting";
			// 
			// textEdit_DiagResultStunting.Properties
			// 
			this.textEdit_DiagResultStunting.Properties.Enabled = false;
			this.textEdit_DiagResultStunting.Size = new System.Drawing.Size(88, 23);
			this.textEdit_DiagResultStunting.TabIndex = 72;
			// 
			// textEdit_DiagResultWasting
			// 
			this.textEdit_DiagResultWasting.EditValue = "";
			this.textEdit_DiagResultWasting.Location = new System.Drawing.Point(152, 344);
			this.textEdit_DiagResultWasting.Name = "textEdit_DiagResultWasting";
			// 
			// textEdit_DiagResultWasting.Properties
			// 
			this.textEdit_DiagResultWasting.Properties.Enabled = false;
			this.textEdit_DiagResultWasting.Size = new System.Drawing.Size(88, 23);
			this.textEdit_DiagResultWasting.TabIndex = 73;
			// 
			// notePanel1
			// 
			this.notePanel1.BackColor = System.Drawing.Color.LightGoldenrodYellow;
			this.notePanel1.Dock = System.Windows.Forms.DockStyle.Top;
			this.notePanel1.ForeColor = System.Drawing.Color.OrangeRed;
			this.notePanel1.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel1.Location = new System.Drawing.Point(3, 18);
			this.notePanel1.MaxRows = 5;
			this.notePanel1.Name = "notePanel1";
			this.notePanel1.ParentAutoHeight = true;
			this.notePanel1.Size = new System.Drawing.Size(314, 23);
			this.notePanel1.TabIndex = 67;
			this.notePanel1.TabStop = false;
			this.notePanel1.Text = "儿童体格发育评价标准";
			// 
			// textEdit_DiagResultHeight
			// 
			this.textEdit_DiagResultHeight.EditValue = "";
			this.textEdit_DiagResultHeight.Location = new System.Drawing.Point(152, 104);
			this.textEdit_DiagResultHeight.Name = "textEdit_DiagResultHeight";
			// 
			// textEdit_DiagResultHeight.Properties
			// 
			this.textEdit_DiagResultHeight.Properties.Enabled = false;
			this.textEdit_DiagResultHeight.Size = new System.Drawing.Size(88, 23);
			this.textEdit_DiagResultHeight.TabIndex = 62;
			// 
			// textEdit_DiagResultWeight
			// 
			this.textEdit_DiagResultWeight.EditValue = "";
			this.textEdit_DiagResultWeight.Location = new System.Drawing.Point(152, 144);
			this.textEdit_DiagResultWeight.Name = "textEdit_DiagResultWeight";
			// 
			// textEdit_DiagResultWeight.Properties
			// 
			this.textEdit_DiagResultWeight.Properties.Enabled = false;
			this.textEdit_DiagResultWeight.Size = new System.Drawing.Size(88, 23);
			this.textEdit_DiagResultWeight.TabIndex = 63;
			// 
			// notePanel_DiagResultWeight
			// 
			this.notePanel_DiagResultWeight.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_DiagResultWeight.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_DiagResultWeight.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_DiagResultWeight.ForeColor = System.Drawing.Color.Black;
			this.notePanel_DiagResultWeight.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_DiagResultWeight.Location = new System.Drawing.Point(40, 144);
			this.notePanel_DiagResultWeight.MaxRows = 5;
			this.notePanel_DiagResultWeight.Name = "notePanel_DiagResultWeight";
			this.notePanel_DiagResultWeight.ParentAutoHeight = true;
			this.notePanel_DiagResultWeight.Size = new System.Drawing.Size(96, 22);
			this.notePanel_DiagResultWeight.TabIndex = 60;
			this.notePanel_DiagResultWeight.TabStop = false;
			this.notePanel_DiagResultWeight.Text = "  体重评价:";
			// 
			// notePanel_DiagResultNut
			// 
			this.notePanel_DiagResultNut.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_DiagResultNut.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_DiagResultNut.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_DiagResultNut.ForeColor = System.Drawing.Color.Black;
			this.notePanel_DiagResultNut.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_DiagResultNut.Location = new System.Drawing.Point(40, 224);
			this.notePanel_DiagResultNut.MaxRows = 5;
			this.notePanel_DiagResultNut.Name = "notePanel_DiagResultNut";
			this.notePanel_DiagResultNut.ParentAutoHeight = true;
			this.notePanel_DiagResultNut.Size = new System.Drawing.Size(96, 22);
			this.notePanel_DiagResultNut.TabIndex = 64;
			this.notePanel_DiagResultNut.TabStop = false;
			this.notePanel_DiagResultNut.Text = "  营养诊断:";
			// 
			// notePanel_DiagResultWHO
			// 
			this.notePanel_DiagResultWHO.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_DiagResultWHO.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_DiagResultWHO.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_DiagResultWHO.ForeColor = System.Drawing.Color.Black;
			this.notePanel_DiagResultWHO.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_DiagResultWHO.Location = new System.Drawing.Point(40, 184);
			this.notePanel_DiagResultWHO.MaxRows = 5;
			this.notePanel_DiagResultWHO.Name = "notePanel_DiagResultWHO";
			this.notePanel_DiagResultWHO.ParentAutoHeight = true;
			this.notePanel_DiagResultWHO.Size = new System.Drawing.Size(96, 22);
			this.notePanel_DiagResultWHO.TabIndex = 61;
			this.notePanel_DiagResultWHO.TabStop = false;
			this.notePanel_DiagResultWHO.Text = "肥胖儿诊断:";
			// 
			// notePanel_DiagResultHeight
			// 
			this.notePanel_DiagResultHeight.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_DiagResultHeight.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_DiagResultHeight.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_DiagResultHeight.ForeColor = System.Drawing.Color.Black;
			this.notePanel_DiagResultHeight.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_DiagResultHeight.Location = new System.Drawing.Point(40, 104);
			this.notePanel_DiagResultHeight.MaxRows = 5;
			this.notePanel_DiagResultHeight.Name = "notePanel_DiagResultHeight";
			this.notePanel_DiagResultHeight.ParentAutoHeight = true;
			this.notePanel_DiagResultHeight.Size = new System.Drawing.Size(96, 22);
			this.notePanel_DiagResultHeight.TabIndex = 59;
			this.notePanel_DiagResultHeight.TabStop = false;
			this.notePanel_DiagResultHeight.Text = "  身高评价:";
			// 
			// notePanel_DiagResultAge
			// 
			this.notePanel_DiagResultAge.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_DiagResultAge.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_DiagResultAge.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_DiagResultAge.ForeColor = System.Drawing.Color.Black;
			this.notePanel_DiagResultAge.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_DiagResultAge.Location = new System.Drawing.Point(40, 64);
			this.notePanel_DiagResultAge.MaxRows = 5;
			this.notePanel_DiagResultAge.Name = "notePanel_DiagResultAge";
			this.notePanel_DiagResultAge.ParentAutoHeight = true;
			this.notePanel_DiagResultAge.Size = new System.Drawing.Size(96, 22);
			this.notePanel_DiagResultAge.TabIndex = 57;
			this.notePanel_DiagResultAge.TabStop = false;
			this.notePanel_DiagResultAge.Text = "  幼儿年龄:";
			// 
			// textEdit_DiagResultWHO
			// 
			this.textEdit_DiagResultWHO.EditValue = "";
			this.textEdit_DiagResultWHO.Location = new System.Drawing.Point(152, 184);
			this.textEdit_DiagResultWHO.Name = "textEdit_DiagResultWHO";
			// 
			// textEdit_DiagResultWHO.Properties
			// 
			this.textEdit_DiagResultWHO.Properties.Enabled = false;
			this.textEdit_DiagResultWHO.Size = new System.Drawing.Size(88, 23);
			this.textEdit_DiagResultWHO.TabIndex = 65;
			// 
			// textEdit_DiagResultNut
			// 
			this.textEdit_DiagResultNut.EditValue = "";
			this.textEdit_DiagResultNut.Location = new System.Drawing.Point(152, 224);
			this.textEdit_DiagResultNut.Name = "textEdit_DiagResultNut";
			// 
			// textEdit_DiagResultNut.Properties
			// 
			this.textEdit_DiagResultNut.Properties.Enabled = false;
			this.textEdit_DiagResultNut.Size = new System.Drawing.Size(88, 23);
			this.textEdit_DiagResultNut.TabIndex = 66;
			// 
			// textEdit_DiagResultAge
			// 
			this.textEdit_DiagResultAge.EditValue = "";
			this.textEdit_DiagResultAge.Location = new System.Drawing.Point(152, 64);
			this.textEdit_DiagResultAge.Name = "textEdit_DiagResultAge";
			// 
			// textEdit_DiagResultAge.Properties
			// 
			this.textEdit_DiagResultAge.Properties.Enabled = false;
			this.textEdit_DiagResultAge.Size = new System.Drawing.Size(88, 23);
			this.textEdit_DiagResultAge.TabIndex = 58;
			// 
			// memoEdit_DiagRemark
			// 
			this.memoEdit_DiagRemark.EditValue = "";
			this.memoEdit_DiagRemark.Location = new System.Drawing.Point(40, 344);
			this.memoEdit_DiagRemark.Name = "memoEdit_DiagRemark";
			this.memoEdit_DiagRemark.Size = new System.Drawing.Size(184, 80);
			this.memoEdit_DiagRemark.TabIndex = 45;
			// 
			// notePanel_DiagRemark
			// 
			this.notePanel_DiagRemark.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_DiagRemark.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_DiagRemark.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_DiagRemark.ForeColor = System.Drawing.Color.Black;
			this.notePanel_DiagRemark.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_DiagRemark.Location = new System.Drawing.Point(40, 312);
			this.notePanel_DiagRemark.MaxRows = 5;
			this.notePanel_DiagRemark.Name = "notePanel_DiagRemark";
			this.notePanel_DiagRemark.ParentAutoHeight = true;
			this.notePanel_DiagRemark.Size = new System.Drawing.Size(184, 22);
			this.notePanel_DiagRemark.TabIndex = 44;
			this.notePanel_DiagRemark.TabStop = false;
			this.notePanel_DiagRemark.Text = "             测评备注:";
			// 
			// textEdit_DiagWeight
			// 
			this.textEdit_DiagWeight.EditValue = "";
			this.textEdit_DiagWeight.Location = new System.Drawing.Point(136, 280);
			this.textEdit_DiagWeight.Name = "textEdit_DiagWeight";
			this.textEdit_DiagWeight.Size = new System.Drawing.Size(88, 23);
			this.textEdit_DiagWeight.TabIndex = 43;
			// 
			// textEdit_DiagHeight
			// 
			this.textEdit_DiagHeight.EditValue = "";
			this.textEdit_DiagHeight.Location = new System.Drawing.Point(136, 248);
			this.textEdit_DiagHeight.Name = "textEdit_DiagHeight";
			this.textEdit_DiagHeight.Size = new System.Drawing.Size(88, 23);
			this.textEdit_DiagHeight.TabIndex = 42;
			// 
			// notePanel_HInputDaigInfo
			// 
			this.notePanel_HInputDaigInfo.BackColor = System.Drawing.Color.LightGoldenrodYellow;
			this.notePanel_HInputDaigInfo.Dock = System.Windows.Forms.DockStyle.Top;
			this.notePanel_HInputDaigInfo.ForeColor = System.Drawing.Color.OrangeRed;
			this.notePanel_HInputDaigInfo.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_HInputDaigInfo.Location = new System.Drawing.Point(3, 18);
			this.notePanel_HInputDaigInfo.MaxRows = 5;
			this.notePanel_HInputDaigInfo.Name = "notePanel_HInputDaigInfo";
			this.notePanel_HInputDaigInfo.ParentAutoHeight = true;
			this.notePanel_HInputDaigInfo.Size = new System.Drawing.Size(548, 23);
			this.notePanel_HInputDaigInfo.TabIndex = 41;
			this.notePanel_HInputDaigInfo.TabStop = false;
			this.notePanel_HInputDaigInfo.Text = "全国标准没有市郊之分(最后3项评测属全国标准,上海地区不会对该几项做评测)";
			// 
			// notePanel_DiagWeight
			// 
			this.notePanel_DiagWeight.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_DiagWeight.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_DiagWeight.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_DiagWeight.ForeColor = System.Drawing.Color.Black;
			this.notePanel_DiagWeight.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_DiagWeight.Location = new System.Drawing.Point(40, 280);
			this.notePanel_DiagWeight.MaxRows = 5;
			this.notePanel_DiagWeight.Name = "notePanel_DiagWeight";
			this.notePanel_DiagWeight.ParentAutoHeight = true;
			this.notePanel_DiagWeight.Size = new System.Drawing.Size(80, 22);
			this.notePanel_DiagWeight.TabIndex = 40;
			this.notePanel_DiagWeight.TabStop = false;
			this.notePanel_DiagWeight.Text = "幼儿体重:";
			// 
			// notePanel_DiagHeight
			// 
			this.notePanel_DiagHeight.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_DiagHeight.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_DiagHeight.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_DiagHeight.ForeColor = System.Drawing.Color.Black;
			this.notePanel_DiagHeight.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_DiagHeight.Location = new System.Drawing.Point(40, 248);
			this.notePanel_DiagHeight.MaxRows = 5;
			this.notePanel_DiagHeight.Name = "notePanel_DiagHeight";
			this.notePanel_DiagHeight.ParentAutoHeight = true;
			this.notePanel_DiagHeight.Size = new System.Drawing.Size(80, 22);
			this.notePanel_DiagHeight.TabIndex = 39;
			this.notePanel_DiagHeight.TabStop = false;
			this.notePanel_DiagHeight.Text = "幼儿身高:";
			// 
			// dateEdit_DiagCheckDate
			// 
			this.dateEdit_DiagCheckDate.EditValue = new System.DateTime(2005, 12, 1, 0, 0, 0, 0);
			this.dateEdit_DiagCheckDate.Location = new System.Drawing.Point(136, 216);
			this.dateEdit_DiagCheckDate.Name = "dateEdit_DiagCheckDate";
			// 
			// dateEdit_DiagCheckDate.Properties
			// 
			this.dateEdit_DiagCheckDate.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																														   new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.dateEdit_DiagCheckDate.Properties.DisplayFormat.FormatString = "yyyy-MM-dd";
			this.dateEdit_DiagCheckDate.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
			this.dateEdit_DiagCheckDate.Properties.Mask.EditMask = "d";
			this.dateEdit_DiagCheckDate.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.DateTime;
			this.dateEdit_DiagCheckDate.Size = new System.Drawing.Size(88, 23);
			this.dateEdit_DiagCheckDate.TabIndex = 38;
			// 
			// notePanel_DiagCheckDate
			// 
			this.notePanel_DiagCheckDate.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_DiagCheckDate.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_DiagCheckDate.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_DiagCheckDate.ForeColor = System.Drawing.Color.Black;
			this.notePanel_DiagCheckDate.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_DiagCheckDate.Location = new System.Drawing.Point(40, 216);
			this.notePanel_DiagCheckDate.MaxRows = 5;
			this.notePanel_DiagCheckDate.Name = "notePanel_DiagCheckDate";
			this.notePanel_DiagCheckDate.ParentAutoHeight = true;
			this.notePanel_DiagCheckDate.Size = new System.Drawing.Size(80, 22);
			this.notePanel_DiagCheckDate.TabIndex = 36;
			this.notePanel_DiagCheckDate.TabStop = false;
			this.notePanel_DiagCheckDate.Text = "体检日期:";
			// 
			// notePanel_HInputBirthday
			// 
			this.notePanel_HInputBirthday.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_HInputBirthday.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_HInputBirthday.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_HInputBirthday.ForeColor = System.Drawing.Color.Black;
			this.notePanel_HInputBirthday.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_HInputBirthday.Location = new System.Drawing.Point(40, 120);
			this.notePanel_HInputBirthday.MaxRows = 5;
			this.notePanel_HInputBirthday.Name = "notePanel_HInputBirthday";
			this.notePanel_HInputBirthday.ParentAutoHeight = true;
			this.notePanel_HInputBirthday.Size = new System.Drawing.Size(80, 22);
			this.notePanel_HInputBirthday.TabIndex = 46;
			this.notePanel_HInputBirthday.TabStop = false;
			this.notePanel_HInputBirthday.Text = "幼儿生日:";
			// 
			// textEdit_HInputBirthday
			// 
			this.textEdit_HInputBirthday.EditValue = "";
			this.textEdit_HInputBirthday.Location = new System.Drawing.Point(136, 120);
			this.textEdit_HInputBirthday.Name = "textEdit_HInputBirthday";
			// 
			// textEdit_HInputBirthday.Properties
			// 
			this.textEdit_HInputBirthday.Properties.DisplayFormat.FormatString = "yyyy-MM-dd";
			this.textEdit_HInputBirthday.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
			this.textEdit_HInputBirthday.Properties.Enabled = false;
			this.textEdit_HInputBirthday.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.DateTime;
			this.textEdit_HInputBirthday.Properties.ReadOnly = true;
			this.textEdit_HInputBirthday.Size = new System.Drawing.Size(88, 23);
			this.textEdit_HInputBirthday.TabIndex = 47;
			// 
			// notePanel_DiagCheckGender
			// 
			this.notePanel_DiagCheckGender.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_DiagCheckGender.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_DiagCheckGender.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_DiagCheckGender.ForeColor = System.Drawing.Color.Black;
			this.notePanel_DiagCheckGender.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_DiagCheckGender.Location = new System.Drawing.Point(40, 88);
			this.notePanel_DiagCheckGender.MaxRows = 5;
			this.notePanel_DiagCheckGender.Name = "notePanel_DiagCheckGender";
			this.notePanel_DiagCheckGender.ParentAutoHeight = true;
			this.notePanel_DiagCheckGender.Size = new System.Drawing.Size(80, 22);
			this.notePanel_DiagCheckGender.TabIndex = 50;
			this.notePanel_DiagCheckGender.TabStop = false;
			this.notePanel_DiagCheckGender.Text = "幼儿性别:";
			// 
			// textEdit_DiagCheckGender
			// 
			this.textEdit_DiagCheckGender.EditValue = "";
			this.textEdit_DiagCheckGender.Location = new System.Drawing.Point(136, 88);
			this.textEdit_DiagCheckGender.Name = "textEdit_DiagCheckGender";
			// 
			// textEdit_DiagCheckGender.Properties
			// 
			this.textEdit_DiagCheckGender.Properties.Enabled = false;
			this.textEdit_DiagCheckGender.Size = new System.Drawing.Size(88, 23);
			this.textEdit_DiagCheckGender.TabIndex = 51;
			// 
			// panelControl5
			// 
			this.panelControl5.Controls.Add(this.simpleButton_HInputModify);
			this.panelControl5.Controls.Add(this.simpleButton_HInputDelete);
			this.panelControl5.Controls.Add(this.simpleButton_HInputSave);
			this.panelControl5.Controls.Add(this.simpleButton_HInputDiag);
			this.panelControl5.Dock = System.Windows.Forms.DockStyle.Top;
			this.panelControl5.Location = new System.Drawing.Point(0, 0);
			this.panelControl5.Name = "panelControl5";
			this.panelControl5.Size = new System.Drawing.Size(554, 48);
			this.panelControl5.TabIndex = 0;
			this.panelControl5.Text = "panelControl5";
			// 
			// simpleButton_HInputModify
			// 
			this.simpleButton_HInputModify.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.simpleButton_HInputModify.Appearance.ForeColor = System.Drawing.Color.DarkMagenta;
			this.simpleButton_HInputModify.Appearance.Options.UseFont = true;
			this.simpleButton_HInputModify.Appearance.Options.UseForeColor = true;
			this.simpleButton_HInputModify.Enabled = false;
			this.simpleButton_HInputModify.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton_HInputModify.Image")));
			this.simpleButton_HInputModify.Location = new System.Drawing.Point(136, 8);
			this.simpleButton_HInputModify.Name = "simpleButton_HInputModify";
			this.simpleButton_HInputModify.Size = new System.Drawing.Size(92, 26);
			this.simpleButton_HInputModify.TabIndex = 12;
			this.simpleButton_HInputModify.Tag = 4;
			this.simpleButton_HInputModify.Text = "修  改";
			this.simpleButton_HInputModify.Click += new System.EventHandler(this.simpleButton_HInputModify_Click);
			// 
			// simpleButton_HInputDelete
			// 
			this.simpleButton_HInputDelete.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.simpleButton_HInputDelete.Appearance.ForeColor = System.Drawing.Color.DarkMagenta;
			this.simpleButton_HInputDelete.Appearance.Options.UseFont = true;
			this.simpleButton_HInputDelete.Appearance.Options.UseForeColor = true;
			this.simpleButton_HInputDelete.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton_HInputDelete.Image")));
			this.simpleButton_HInputDelete.Location = new System.Drawing.Point(240, 8);
			this.simpleButton_HInputDelete.Name = "simpleButton_HInputDelete";
			this.simpleButton_HInputDelete.Size = new System.Drawing.Size(92, 26);
			this.simpleButton_HInputDelete.TabIndex = 11;
			this.simpleButton_HInputDelete.Tag = 4;
			this.simpleButton_HInputDelete.Text = "删  除";
			this.simpleButton_HInputDelete.Click += new System.EventHandler(this.simpleButton_HInputDelete_Click);
			// 
			// simpleButton_HInputSave
			// 
			this.simpleButton_HInputSave.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.simpleButton_HInputSave.Appearance.ForeColor = System.Drawing.Color.DarkMagenta;
			this.simpleButton_HInputSave.Appearance.Options.UseFont = true;
			this.simpleButton_HInputSave.Appearance.Options.UseForeColor = true;
			this.simpleButton_HInputSave.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton_HInputSave.Image")));
			this.simpleButton_HInputSave.Location = new System.Drawing.Point(240, 24);
			this.simpleButton_HInputSave.Name = "simpleButton_HInputSave";
			this.simpleButton_HInputSave.Size = new System.Drawing.Size(8, 8);
			this.simpleButton_HInputSave.TabIndex = 9;
			this.simpleButton_HInputSave.Tag = 4;
			this.simpleButton_HInputSave.Text = "保  存";
			this.simpleButton_HInputSave.Click += new System.EventHandler(this.simpleButton_HInputSave_Click);
			// 
			// simpleButton_HInputDiag
			// 
			this.simpleButton_HInputDiag.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.simpleButton_HInputDiag.Appearance.ForeColor = System.Drawing.Color.DarkMagenta;
			this.simpleButton_HInputDiag.Appearance.Options.UseFont = true;
			this.simpleButton_HInputDiag.Appearance.Options.UseForeColor = true;
			this.simpleButton_HInputDiag.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton_HInputDiag.Image")));
			this.simpleButton_HInputDiag.Location = new System.Drawing.Point(8, 8);
			this.simpleButton_HInputDiag.Name = "simpleButton_HInputDiag";
			this.simpleButton_HInputDiag.Size = new System.Drawing.Size(112, 26);
			this.simpleButton_HInputDiag.TabIndex = 8;
			this.simpleButton_HInputDiag.Tag = 4;
			this.simpleButton_HInputDiag.Text = "诊断并保存";
			this.simpleButton_HInputDiag.Click += new System.EventHandler(this.simpleButton_HInputDiag_Click);
			// 
			// xtraTabPage6
			// 
			this.xtraTabPage6.Appearance.PageClient.BackColor = System.Drawing.Color.WhiteSmoke;
			this.xtraTabPage6.Appearance.PageClient.Options.UseBackColor = true;
			this.xtraTabPage6.Controls.Add(this.splitContainerControl7);
			this.xtraTabPage6.Name = "xtraTabPage6";
			this.xtraTabPage6.Size = new System.Drawing.Size(768, 515);
			this.xtraTabPage6.Text = "幼儿评测结果浏览及打印";
			// 
			// splitContainerControl7
			// 
			this.splitContainerControl7.Dock = System.Windows.Forms.DockStyle.Fill;
			this.splitContainerControl7.Location = new System.Drawing.Point(0, 0);
			this.splitContainerControl7.Name = "splitContainerControl7";
			this.splitContainerControl7.Panel1.Controls.Add(this.groupControl_HOutputPrintType);
			this.splitContainerControl7.Panel1.Controls.Add(this.groupControl_HOutputSer);
			this.splitContainerControl7.Panel1.Text = "splitContainerControl7_Panel1";
			this.splitContainerControl7.Panel2.Controls.Add(this.gridControl_HOutputNchsGrid);
			this.splitContainerControl7.Panel2.Controls.Add(this.gridControl_HOutputGridShow);
			this.splitContainerControl7.Panel2.Controls.Add(this.panelControl6);
			this.splitContainerControl7.Panel2.Text = "splitContainerControl7_Panel2";
			this.splitContainerControl7.Size = new System.Drawing.Size(768, 515);
			this.splitContainerControl7.SplitterPosition = 250;
			this.splitContainerControl7.TabIndex = 0;
			this.splitContainerControl7.Text = "splitContainerControl7";
			// 
			// groupControl_HOutputPrintType
			// 
			this.groupControl_HOutputPrintType.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.groupControl_HOutputPrintType.AppearanceCaption.Options.UseFont = true;
			this.groupControl_HOutputPrintType.Controls.Add(this.checkEdit_HOutputPrintType4th);
			this.groupControl_HOutputPrintType.Controls.Add(this.checkEdit_HOutputPrintType3rd);
			this.groupControl_HOutputPrintType.Controls.Add(this.checkEdit_HOutputPrintType2nd);
			this.groupControl_HOutputPrintType.Controls.Add(this.checkEdit_HOutputPrintType1st);
			this.groupControl_HOutputPrintType.Dock = System.Windows.Forms.DockStyle.Fill;
			this.groupControl_HOutputPrintType.Location = new System.Drawing.Point(0, 376);
			this.groupControl_HOutputPrintType.Name = "groupControl_HOutputPrintType";
			this.groupControl_HOutputPrintType.Size = new System.Drawing.Size(244, 133);
			this.groupControl_HOutputPrintType.TabIndex = 1;
			this.groupControl_HOutputPrintType.Text = "报表格式及选项目";
			// 
			// checkEdit_HOutputPrintType4th
			// 
			this.checkEdit_HOutputPrintType4th.Location = new System.Drawing.Point(8, 96);
			this.checkEdit_HOutputPrintType4th.Name = "checkEdit_HOutputPrintType4th";
			// 
			// checkEdit_HOutputPrintType4th.Properties
			// 
			this.checkEdit_HOutputPrintType4th.Properties.Caption = "是否生成个人体格评价详细表(限全国)";
			this.checkEdit_HOutputPrintType4th.Size = new System.Drawing.Size(224, 19);
			this.checkEdit_HOutputPrintType4th.TabIndex = 59;
			// 
			// checkEdit_HOutputPrintType3rd
			// 
			this.checkEdit_HOutputPrintType3rd.Location = new System.Drawing.Point(8, 72);
			this.checkEdit_HOutputPrintType3rd.Name = "checkEdit_HOutputPrintType3rd";
			// 
			// checkEdit_HOutputPrintType3rd.Properties
			// 
			this.checkEdit_HOutputPrintType3rd.Properties.Caption = "是否生成身高体重超均值统计(限上海)";
			this.checkEdit_HOutputPrintType3rd.Size = new System.Drawing.Size(224, 19);
			this.checkEdit_HOutputPrintType3rd.TabIndex = 57;
			// 
			// checkEdit_HOutputPrintType2nd
			// 
			this.checkEdit_HOutputPrintType2nd.Location = new System.Drawing.Point(8, 48);
			this.checkEdit_HOutputPrintType2nd.Name = "checkEdit_HOutputPrintType2nd";
			// 
			// checkEdit_HOutputPrintType2nd.Properties
			// 
			this.checkEdit_HOutputPrintType2nd.Properties.Caption = "是否生成身高体重均值统计";
			this.checkEdit_HOutputPrintType2nd.Size = new System.Drawing.Size(224, 19);
			this.checkEdit_HOutputPrintType2nd.TabIndex = 56;
			// 
			// checkEdit_HOutputPrintType1st
			// 
			this.checkEdit_HOutputPrintType1st.Location = new System.Drawing.Point(8, 24);
			this.checkEdit_HOutputPrintType1st.Name = "checkEdit_HOutputPrintType1st";
			// 
			// checkEdit_HOutputPrintType1st.Properties
			// 
			this.checkEdit_HOutputPrintType1st.Properties.Caption = "是否按幼儿所在班级划分";
			this.checkEdit_HOutputPrintType1st.Size = new System.Drawing.Size(224, 19);
			this.checkEdit_HOutputPrintType1st.TabIndex = 55;
			// 
			// groupControl_HOutputSer
			// 
			this.groupControl_HOutputSer.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.groupControl_HOutputSer.AppearanceCaption.Options.UseFont = true;
			this.groupControl_HOutputSer.Controls.Add(this.comboBoxEdit_HOutputRegion);
			this.groupControl_HOutputSer.Controls.Add(this.notePanel11);
			this.groupControl_HOutputSer.Controls.Add(this.dateEdit_HOutputEndDate);
			this.groupControl_HOutputSer.Controls.Add(this.dateEdit_HOutputBegDate);
			this.groupControl_HOutputSer.Controls.Add(this.notePanel_HOutputEndDate);
			this.groupControl_HOutputSer.Controls.Add(this.notePanel_HOutputBegDate);
			this.groupControl_HOutputSer.Controls.Add(this.comboBoxEdit_HOutputGender);
			this.groupControl_HOutputSer.Controls.Add(this.comboBoxEdit_HOutputResult);
			this.groupControl_HOutputSer.Controls.Add(this.notePanel_HOutputResult);
			this.groupControl_HOutputSer.Controls.Add(this.comboBoxEdit_HOutputType);
			this.groupControl_HOutputSer.Controls.Add(this.comboBoxEdit_HOutputAge);
			this.groupControl_HOutputSer.Controls.Add(this.notePanel_HOutputType);
			this.groupControl_HOutputSer.Controls.Add(this.notePanel_HOutputAge);
			this.groupControl_HOutputSer.Controls.Add(this.textEdit_HOutputNumber);
			this.groupControl_HOutputSer.Controls.Add(this.textEdit_HOutputName);
			this.groupControl_HOutputSer.Controls.Add(this.comboBoxEdit_HOutputClass);
			this.groupControl_HOutputSer.Controls.Add(this.notePanel_HOutputClass);
			this.groupControl_HOutputSer.Controls.Add(this.comboBoxEdit_HOutputGrade);
			this.groupControl_HOutputSer.Controls.Add(this.notePanel_HOutputGrade);
			this.groupControl_HOutputSer.Controls.Add(this.notePanel_HOutputNumber);
			this.groupControl_HOutputSer.Controls.Add(this.notePanel_HOutputName);
			this.groupControl_HOutputSer.Controls.Add(this.notePanel_HOutputGender);
			this.groupControl_HOutputSer.Dock = System.Windows.Forms.DockStyle.Top;
			this.groupControl_HOutputSer.Location = new System.Drawing.Point(0, 0);
			this.groupControl_HOutputSer.Name = "groupControl_HOutputSer";
			this.groupControl_HOutputSer.Size = new System.Drawing.Size(244, 376);
			this.groupControl_HOutputSer.TabIndex = 0;
			this.groupControl_HOutputSer.Text = "信息查询";
			// 
			// comboBoxEdit_HOutputRegion
			// 
			this.comboBoxEdit_HOutputRegion.EditValue = "上海标准";
			this.comboBoxEdit_HOutputRegion.Location = new System.Drawing.Point(136, 184);
			this.comboBoxEdit_HOutputRegion.Name = "comboBoxEdit_HOutputRegion";
			// 
			// comboBoxEdit_HOutputRegion.Properties
			// 
			this.comboBoxEdit_HOutputRegion.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																															   new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.comboBoxEdit_HOutputRegion.Properties.Items.AddRange(new object[] {
																					   "上海标准",
																					   "全国标准"});
			this.comboBoxEdit_HOutputRegion.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
			this.comboBoxEdit_HOutputRegion.Size = new System.Drawing.Size(88, 23);
			this.comboBoxEdit_HOutputRegion.TabIndex = 61;
			this.comboBoxEdit_HOutputRegion.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit_HOutputRegion_SelectedIndexChanged);
			// 
			// notePanel11
			// 
			this.notePanel11.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel11.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel11.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel11.ForeColor = System.Drawing.Color.Black;
			this.notePanel11.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel11.Location = new System.Drawing.Point(24, 184);
			this.notePanel11.MaxRows = 5;
			this.notePanel11.Name = "notePanel11";
			this.notePanel11.ParentAutoHeight = true;
			this.notePanel11.Size = new System.Drawing.Size(83, 22);
			this.notePanel11.TabIndex = 60;
			this.notePanel11.TabStop = false;
			this.notePanel11.Text = "地区标准:";
			// 
			// dateEdit_HOutputEndDate
			// 
			this.dateEdit_HOutputEndDate.EditValue = new System.DateTime(2005, 12, 1, 0, 0, 0, 0);
			this.dateEdit_HOutputEndDate.Location = new System.Drawing.Point(136, 344);
			this.dateEdit_HOutputEndDate.Name = "dateEdit_HOutputEndDate";
			// 
			// dateEdit_HOutputEndDate.Properties
			// 
			this.dateEdit_HOutputEndDate.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																															new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.dateEdit_HOutputEndDate.Properties.Mask.EditMask = "d";
			this.dateEdit_HOutputEndDate.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.DateTime;
			this.dateEdit_HOutputEndDate.Size = new System.Drawing.Size(88, 23);
			this.dateEdit_HOutputEndDate.TabIndex = 59;
			// 
			// dateEdit_HOutputBegDate
			// 
			this.dateEdit_HOutputBegDate.EditValue = new System.DateTime(2005, 12, 1, 0, 0, 0, 0);
			this.dateEdit_HOutputBegDate.Location = new System.Drawing.Point(136, 312);
			this.dateEdit_HOutputBegDate.Name = "dateEdit_HOutputBegDate";
			// 
			// dateEdit_HOutputBegDate.Properties
			// 
			this.dateEdit_HOutputBegDate.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																															new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.dateEdit_HOutputBegDate.Properties.Mask.EditMask = "d";
			this.dateEdit_HOutputBegDate.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.DateTime;
			this.dateEdit_HOutputBegDate.Size = new System.Drawing.Size(88, 23);
			this.dateEdit_HOutputBegDate.TabIndex = 58;
			// 
			// notePanel_HOutputEndDate
			// 
			this.notePanel_HOutputEndDate.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_HOutputEndDate.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_HOutputEndDate.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_HOutputEndDate.ForeColor = System.Drawing.Color.Black;
			this.notePanel_HOutputEndDate.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_HOutputEndDate.Location = new System.Drawing.Point(24, 344);
			this.notePanel_HOutputEndDate.MaxRows = 5;
			this.notePanel_HOutputEndDate.Name = "notePanel_HOutputEndDate";
			this.notePanel_HOutputEndDate.ParentAutoHeight = true;
			this.notePanel_HOutputEndDate.Size = new System.Drawing.Size(83, 22);
			this.notePanel_HOutputEndDate.TabIndex = 57;
			this.notePanel_HOutputEndDate.TabStop = false;
			this.notePanel_HOutputEndDate.Text = "截止时间:";
			// 
			// notePanel_HOutputBegDate
			// 
			this.notePanel_HOutputBegDate.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_HOutputBegDate.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_HOutputBegDate.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_HOutputBegDate.ForeColor = System.Drawing.Color.Black;
			this.notePanel_HOutputBegDate.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_HOutputBegDate.Location = new System.Drawing.Point(24, 312);
			this.notePanel_HOutputBegDate.MaxRows = 5;
			this.notePanel_HOutputBegDate.Name = "notePanel_HOutputBegDate";
			this.notePanel_HOutputBegDate.ParentAutoHeight = true;
			this.notePanel_HOutputBegDate.Size = new System.Drawing.Size(83, 22);
			this.notePanel_HOutputBegDate.TabIndex = 56;
			this.notePanel_HOutputBegDate.TabStop = false;
			this.notePanel_HOutputBegDate.Text = "起始时间:";
			// 
			// comboBoxEdit_HOutputGender
			// 
			this.comboBoxEdit_HOutputGender.EditValue = "全部";
			this.comboBoxEdit_HOutputGender.Location = new System.Drawing.Point(136, 152);
			this.comboBoxEdit_HOutputGender.Name = "comboBoxEdit_HOutputGender";
			// 
			// comboBoxEdit_HOutputGender.Properties
			// 
			this.comboBoxEdit_HOutputGender.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																															   new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.comboBoxEdit_HOutputGender.Properties.Items.AddRange(new object[] {
																					   "全部",
																					   "男",
																					   "女"});
			this.comboBoxEdit_HOutputGender.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
			this.comboBoxEdit_HOutputGender.Size = new System.Drawing.Size(88, 23);
			this.comboBoxEdit_HOutputGender.TabIndex = 55;
			this.comboBoxEdit_HOutputGender.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit_HOutputGender_SelectedIndexChanged);
			// 
			// comboBoxEdit_HOutputResult
			// 
			this.comboBoxEdit_HOutputResult.EditValue = "全部";
			this.comboBoxEdit_HOutputResult.Location = new System.Drawing.Point(136, 280);
			this.comboBoxEdit_HOutputResult.Name = "comboBoxEdit_HOutputResult";
			// 
			// comboBoxEdit_HOutputResult.Properties
			// 
			this.comboBoxEdit_HOutputResult.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																															   new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.comboBoxEdit_HOutputResult.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
			this.comboBoxEdit_HOutputResult.Size = new System.Drawing.Size(88, 23);
			this.comboBoxEdit_HOutputResult.TabIndex = 54;
			this.comboBoxEdit_HOutputResult.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit_HOutputResult_SelectedIndexChanged);
			// 
			// notePanel_HOutputResult
			// 
			this.notePanel_HOutputResult.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_HOutputResult.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_HOutputResult.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_HOutputResult.ForeColor = System.Drawing.Color.Black;
			this.notePanel_HOutputResult.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_HOutputResult.Location = new System.Drawing.Point(24, 280);
			this.notePanel_HOutputResult.MaxRows = 5;
			this.notePanel_HOutputResult.Name = "notePanel_HOutputResult";
			this.notePanel_HOutputResult.ParentAutoHeight = true;
			this.notePanel_HOutputResult.Size = new System.Drawing.Size(83, 22);
			this.notePanel_HOutputResult.TabIndex = 53;
			this.notePanel_HOutputResult.TabStop = false;
			this.notePanel_HOutputResult.Text = "诊断结果:";
			// 
			// comboBoxEdit_HOutputType
			// 
			this.comboBoxEdit_HOutputType.EditValue = "全部";
			this.comboBoxEdit_HOutputType.Location = new System.Drawing.Point(136, 248);
			this.comboBoxEdit_HOutputType.Name = "comboBoxEdit_HOutputType";
			// 
			// comboBoxEdit_HOutputType.Properties
			// 
			this.comboBoxEdit_HOutputType.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																															 new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.comboBoxEdit_HOutputType.Properties.Items.AddRange(new object[] {
																					 "全部",
																					 "身高评价",
																					 "体重评价",
																					 "肥胖评价",
																					 "营养评价"});
			this.comboBoxEdit_HOutputType.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
			this.comboBoxEdit_HOutputType.Size = new System.Drawing.Size(88, 23);
			this.comboBoxEdit_HOutputType.TabIndex = 52;
			this.comboBoxEdit_HOutputType.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit_HOutputType_SelectedIndexChanged);
			// 
			// comboBoxEdit_HOutputAge
			// 
			this.comboBoxEdit_HOutputAge.EditValue = "全部";
			this.comboBoxEdit_HOutputAge.Location = new System.Drawing.Point(136, 216);
			this.comboBoxEdit_HOutputAge.Name = "comboBoxEdit_HOutputAge";
			// 
			// comboBoxEdit_HOutputAge.Properties
			// 
			this.comboBoxEdit_HOutputAge.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																															new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.comboBoxEdit_HOutputAge.Properties.Items.AddRange(new object[] {
																					"全部",
																					"0-1岁组",
																					"1岁组",
																					"2岁组",
																					"3岁组",
																					"4岁组",
																					"5岁组",
																					"6-7岁组"});
			this.comboBoxEdit_HOutputAge.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
			this.comboBoxEdit_HOutputAge.Size = new System.Drawing.Size(88, 23);
			this.comboBoxEdit_HOutputAge.TabIndex = 51;
			this.comboBoxEdit_HOutputAge.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit_HOutputAge_SelectedIndexChanged);
			// 
			// notePanel_HOutputType
			// 
			this.notePanel_HOutputType.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_HOutputType.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_HOutputType.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_HOutputType.ForeColor = System.Drawing.Color.Black;
			this.notePanel_HOutputType.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_HOutputType.Location = new System.Drawing.Point(24, 248);
			this.notePanel_HOutputType.MaxRows = 5;
			this.notePanel_HOutputType.Name = "notePanel_HOutputType";
			this.notePanel_HOutputType.ParentAutoHeight = true;
			this.notePanel_HOutputType.Size = new System.Drawing.Size(83, 22);
			this.notePanel_HOutputType.TabIndex = 50;
			this.notePanel_HOutputType.TabStop = false;
			this.notePanel_HOutputType.Text = "诊断项目:";
			// 
			// notePanel_HOutputAge
			// 
			this.notePanel_HOutputAge.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_HOutputAge.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_HOutputAge.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_HOutputAge.ForeColor = System.Drawing.Color.Black;
			this.notePanel_HOutputAge.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_HOutputAge.Location = new System.Drawing.Point(24, 216);
			this.notePanel_HOutputAge.MaxRows = 5;
			this.notePanel_HOutputAge.Name = "notePanel_HOutputAge";
			this.notePanel_HOutputAge.ParentAutoHeight = true;
			this.notePanel_HOutputAge.Size = new System.Drawing.Size(83, 22);
			this.notePanel_HOutputAge.TabIndex = 49;
			this.notePanel_HOutputAge.TabStop = false;
			this.notePanel_HOutputAge.Text = "幼儿年龄:";
			// 
			// textEdit_HOutputNumber
			// 
			this.textEdit_HOutputNumber.EditValue = "";
			this.textEdit_HOutputNumber.Location = new System.Drawing.Point(136, 120);
			this.textEdit_HOutputNumber.Name = "textEdit_HOutputNumber";
			this.textEdit_HOutputNumber.Size = new System.Drawing.Size(88, 23);
			this.textEdit_HOutputNumber.TabIndex = 48;
			this.textEdit_HOutputNumber.EditValueChanged += new System.EventHandler(this.textEdit_HOutputNumber_EditValueChanged);
			// 
			// textEdit_HOutputName
			// 
			this.textEdit_HOutputName.EditValue = "";
			this.textEdit_HOutputName.Location = new System.Drawing.Point(136, 88);
			this.textEdit_HOutputName.Name = "textEdit_HOutputName";
			this.textEdit_HOutputName.Size = new System.Drawing.Size(88, 23);
			this.textEdit_HOutputName.TabIndex = 47;
			this.textEdit_HOutputName.EditValueChanged += new System.EventHandler(this.textEdit_HOutputName_EditValueChanged);
			// 
			// comboBoxEdit_HOutputClass
			// 
			this.comboBoxEdit_HOutputClass.EditValue = "全部";
			this.comboBoxEdit_HOutputClass.Location = new System.Drawing.Point(136, 56);
			this.comboBoxEdit_HOutputClass.Name = "comboBoxEdit_HOutputClass";
			// 
			// comboBoxEdit_HOutputClass.Properties
			// 
			this.comboBoxEdit_HOutputClass.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																															  new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.comboBoxEdit_HOutputClass.Properties.Items.AddRange(new object[] {
																					  "全部"});
			this.comboBoxEdit_HOutputClass.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
			this.comboBoxEdit_HOutputClass.Size = new System.Drawing.Size(88, 23);
			this.comboBoxEdit_HOutputClass.TabIndex = 46;
			this.comboBoxEdit_HOutputClass.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit_HOutputClass_SelectedIndexChanged);
			// 
			// notePanel_HOutputClass
			// 
			this.notePanel_HOutputClass.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_HOutputClass.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_HOutputClass.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_HOutputClass.ForeColor = System.Drawing.Color.Black;
			this.notePanel_HOutputClass.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_HOutputClass.Location = new System.Drawing.Point(24, 56);
			this.notePanel_HOutputClass.MaxRows = 5;
			this.notePanel_HOutputClass.Name = "notePanel_HOutputClass";
			this.notePanel_HOutputClass.ParentAutoHeight = true;
			this.notePanel_HOutputClass.Size = new System.Drawing.Size(83, 22);
			this.notePanel_HOutputClass.TabIndex = 45;
			this.notePanel_HOutputClass.TabStop = false;
			this.notePanel_HOutputClass.Text = "  班  级:";
			// 
			// comboBoxEdit_HOutputGrade
			// 
			this.comboBoxEdit_HOutputGrade.EditValue = "全部";
			this.comboBoxEdit_HOutputGrade.Location = new System.Drawing.Point(136, 24);
			this.comboBoxEdit_HOutputGrade.Name = "comboBoxEdit_HOutputGrade";
			// 
			// comboBoxEdit_HOutputGrade.Properties
			// 
			this.comboBoxEdit_HOutputGrade.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																															  new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.comboBoxEdit_HOutputGrade.Properties.Items.AddRange(new object[] {
																					  "全部"});
			this.comboBoxEdit_HOutputGrade.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
			this.comboBoxEdit_HOutputGrade.Size = new System.Drawing.Size(88, 23);
			this.comboBoxEdit_HOutputGrade.TabIndex = 44;
			this.comboBoxEdit_HOutputGrade.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit_HOutputGrade_SelectedIndexChanged);
			// 
			// notePanel_HOutputGrade
			// 
			this.notePanel_HOutputGrade.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_HOutputGrade.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_HOutputGrade.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_HOutputGrade.ForeColor = System.Drawing.Color.Black;
			this.notePanel_HOutputGrade.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_HOutputGrade.Location = new System.Drawing.Point(24, 24);
			this.notePanel_HOutputGrade.MaxRows = 5;
			this.notePanel_HOutputGrade.Name = "notePanel_HOutputGrade";
			this.notePanel_HOutputGrade.ParentAutoHeight = true;
			this.notePanel_HOutputGrade.Size = new System.Drawing.Size(83, 22);
			this.notePanel_HOutputGrade.TabIndex = 43;
			this.notePanel_HOutputGrade.TabStop = false;
			this.notePanel_HOutputGrade.Text = "  年  级:";
			// 
			// notePanel_HOutputNumber
			// 
			this.notePanel_HOutputNumber.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_HOutputNumber.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_HOutputNumber.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_HOutputNumber.ForeColor = System.Drawing.Color.Black;
			this.notePanel_HOutputNumber.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_HOutputNumber.Location = new System.Drawing.Point(24, 120);
			this.notePanel_HOutputNumber.MaxRows = 5;
			this.notePanel_HOutputNumber.Name = "notePanel_HOutputNumber";
			this.notePanel_HOutputNumber.ParentAutoHeight = true;
			this.notePanel_HOutputNumber.Size = new System.Drawing.Size(83, 22);
			this.notePanel_HOutputNumber.TabIndex = 42;
			this.notePanel_HOutputNumber.TabStop = false;
			this.notePanel_HOutputNumber.Text = "  学  号:";
			// 
			// notePanel_HOutputName
			// 
			this.notePanel_HOutputName.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_HOutputName.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_HOutputName.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_HOutputName.ForeColor = System.Drawing.Color.Black;
			this.notePanel_HOutputName.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_HOutputName.Location = new System.Drawing.Point(24, 88);
			this.notePanel_HOutputName.MaxRows = 5;
			this.notePanel_HOutputName.Name = "notePanel_HOutputName";
			this.notePanel_HOutputName.ParentAutoHeight = true;
			this.notePanel_HOutputName.Size = new System.Drawing.Size(83, 22);
			this.notePanel_HOutputName.TabIndex = 41;
			this.notePanel_HOutputName.TabStop = false;
			this.notePanel_HOutputName.Text = "  姓  名:";
			// 
			// notePanel_HOutputGender
			// 
			this.notePanel_HOutputGender.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_HOutputGender.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_HOutputGender.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_HOutputGender.ForeColor = System.Drawing.Color.Black;
			this.notePanel_HOutputGender.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_HOutputGender.Location = new System.Drawing.Point(24, 152);
			this.notePanel_HOutputGender.MaxRows = 5;
			this.notePanel_HOutputGender.Name = "notePanel_HOutputGender";
			this.notePanel_HOutputGender.ParentAutoHeight = true;
			this.notePanel_HOutputGender.Size = new System.Drawing.Size(83, 22);
			this.notePanel_HOutputGender.TabIndex = 42;
			this.notePanel_HOutputGender.TabStop = false;
			this.notePanel_HOutputGender.Text = "  性  别:";
			// 
			// gridControl_HOutputNchsGrid
			// 
			this.gridControl_HOutputNchsGrid.Dock = System.Windows.Forms.DockStyle.Fill;
			// 
			// gridControl_HOutputNchsGrid.EmbeddedNavigator
			// 
			this.gridControl_HOutputNchsGrid.EmbeddedNavigator.Name = "";
			this.gridControl_HOutputNchsGrid.Location = new System.Drawing.Point(0, 48);
			this.gridControl_HOutputNchsGrid.MainView = this.advBandedGridView2;
			this.gridControl_HOutputNchsGrid.Name = "gridControl_HOutputNchsGrid";
			this.gridControl_HOutputNchsGrid.Size = new System.Drawing.Size(508, 461);
			this.gridControl_HOutputNchsGrid.TabIndex = 2;
			this.gridControl_HOutputNchsGrid.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
																													   this.advBandedGridView2});
			// 
			// advBandedGridView2
			// 
			this.advBandedGridView2.Bands.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.GridBand[] {
																										   this.gridBand5,
																										   this.gridBand6,
																										   this.gridBand7});
			this.advBandedGridView2.Columns.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn[] {
																													 this.bandedGridColumn1,
																													 this.bandedGridColumn16,
																													 this.bandedGridColumn17,
																													 this.bandedGridColumn18,
																													 this.bandedGridColumn19,
																													 this.bandedGridColumn20,
																													 this.bandedGridColumn21,
																													 this.bandedGridColumn22,
																													 this.bandedGridColumn23,
																													 this.bandedGridColumn24,
																													 this.bandedGridColumn25,
																													 this.bandedGridColumn26,
																													 this.bandedGridColumn27,
																													 this.bandedGridColumn28,
																													 this.bandedGridColumn29,
																													 this.bandedGridColumn30});
			this.advBandedGridView2.GridControl = this.gridControl_HOutputNchsGrid;
			this.advBandedGridView2.Name = "advBandedGridView2";
			this.advBandedGridView2.OptionsCustomization.AllowFilter = false;
			this.advBandedGridView2.OptionsCustomization.AllowGroup = false;
			this.advBandedGridView2.OptionsView.ShowFilterPanel = false;
			this.advBandedGridView2.OptionsView.ShowGroupPanel = false;
			// 
			// gridBand5
			// 
			this.gridBand5.AppearanceHeader.Options.UseTextOptions = true;
			this.gridBand5.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridBand5.Caption = "基本信息";
			this.gridBand5.Columns.Add(this.bandedGridColumn1);
			this.gridBand5.Columns.Add(this.bandedGridColumn16);
			this.gridBand5.MinWidth = 20;
			this.gridBand5.Name = "gridBand5";
			this.gridBand5.Width = 63;
			// 
			// bandedGridColumn1
			// 
			this.bandedGridColumn1.AppearanceCell.Options.UseTextOptions = true;
			this.bandedGridColumn1.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn1.AppearanceHeader.Options.UseTextOptions = true;
			this.bandedGridColumn1.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn1.Caption = "姓名";
			this.bandedGridColumn1.FieldName = "info_stuName";
			this.bandedGridColumn1.Name = "bandedGridColumn1";
			this.bandedGridColumn1.OptionsColumn.AllowEdit = false;
			this.bandedGridColumn1.OptionsColumn.AllowFocus = false;
			this.bandedGridColumn1.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn1.OptionsColumn.AllowIncrementalSearch = false;
			this.bandedGridColumn1.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.True;
			this.bandedGridColumn1.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.bandedGridColumn1.OptionsColumn.ReadOnly = true;
			this.bandedGridColumn1.OptionsColumn.ShowInCustomizationForm = false;
			this.bandedGridColumn1.Visible = true;
			this.bandedGridColumn1.Width = 63;
			// 
			// bandedGridColumn16
			// 
			this.bandedGridColumn16.AppearanceCell.Options.UseTextOptions = true;
			this.bandedGridColumn16.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn16.AppearanceHeader.Options.UseTextOptions = true;
			this.bandedGridColumn16.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn16.Caption = "学号";
			this.bandedGridColumn16.FieldName = "nchsanaly_stunumber";
			this.bandedGridColumn16.Name = "bandedGridColumn16";
			this.bandedGridColumn16.OptionsColumn.AllowEdit = false;
			this.bandedGridColumn16.OptionsColumn.AllowFocus = false;
			this.bandedGridColumn16.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn16.OptionsColumn.AllowIncrementalSearch = false;
			this.bandedGridColumn16.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.True;
			this.bandedGridColumn16.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.bandedGridColumn16.OptionsColumn.ReadOnly = true;
			this.bandedGridColumn16.OptionsColumn.ShowInCustomizationForm = false;
			this.bandedGridColumn16.RowIndex = 1;
			this.bandedGridColumn16.Visible = true;
			this.bandedGridColumn16.Width = 63;
			// 
			// gridBand6
			// 
			this.gridBand6.AppearanceHeader.Options.UseTextOptions = true;
			this.gridBand6.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridBand6.Caption = "扩展信息";
			this.gridBand6.Columns.Add(this.bandedGridColumn19);
			this.gridBand6.Columns.Add(this.bandedGridColumn17);
			this.gridBand6.Columns.Add(this.bandedGridColumn23);
			this.gridBand6.Columns.Add(this.bandedGridColumn18);
			this.gridBand6.Name = "gridBand6";
			this.gridBand6.Width = 135;
			// 
			// bandedGridColumn19
			// 
			this.bandedGridColumn19.AppearanceCell.Options.UseTextOptions = true;
			this.bandedGridColumn19.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn19.AppearanceHeader.Options.UseTextOptions = true;
			this.bandedGridColumn19.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn19.Caption = "出生年月";
			this.bandedGridColumn19.FieldName = "info_stuBirthday";
			this.bandedGridColumn19.Name = "bandedGridColumn19";
			this.bandedGridColumn19.OptionsColumn.AllowEdit = false;
			this.bandedGridColumn19.OptionsColumn.AllowFocus = false;
			this.bandedGridColumn19.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn19.OptionsColumn.AllowIncrementalSearch = false;
			this.bandedGridColumn19.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.True;
			this.bandedGridColumn19.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.bandedGridColumn19.OptionsColumn.ReadOnly = true;
			this.bandedGridColumn19.OptionsColumn.ShowInCustomizationForm = false;
			this.bandedGridColumn19.Visible = true;
			this.bandedGridColumn19.Width = 60;
			// 
			// bandedGridColumn17
			// 
			this.bandedGridColumn17.AppearanceCell.Options.UseTextOptions = true;
			this.bandedGridColumn17.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn17.AppearanceHeader.Options.UseTextOptions = true;
			this.bandedGridColumn17.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn17.Caption = "班级";
			this.bandedGridColumn17.FieldName = "info_className";
			this.bandedGridColumn17.Name = "bandedGridColumn17";
			this.bandedGridColumn17.OptionsColumn.AllowEdit = false;
			this.bandedGridColumn17.OptionsColumn.AllowFocus = false;
			this.bandedGridColumn17.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn17.OptionsColumn.AllowIncrementalSearch = false;
			this.bandedGridColumn17.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.True;
			this.bandedGridColumn17.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.bandedGridColumn17.OptionsColumn.ReadOnly = true;
			this.bandedGridColumn17.OptionsColumn.ShowInCustomizationForm = false;
			this.bandedGridColumn17.Visible = true;
			this.bandedGridColumn17.Width = 65;
			// 
			// bandedGridColumn23
			// 
			this.bandedGridColumn23.AppearanceCell.Options.UseTextOptions = true;
			this.bandedGridColumn23.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn23.AppearanceHeader.Options.UseTextOptions = true;
			this.bandedGridColumn23.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn23.Caption = "幼儿年龄";
			this.bandedGridColumn23.FieldName = "nchsanaly_realage";
			this.bandedGridColumn23.Name = "bandedGridColumn23";
			this.bandedGridColumn23.OptionsColumn.AllowEdit = false;
			this.bandedGridColumn23.OptionsColumn.AllowFocus = false;
			this.bandedGridColumn23.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn23.OptionsColumn.AllowIncrementalSearch = false;
			this.bandedGridColumn23.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.True;
			this.bandedGridColumn23.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.bandedGridColumn23.OptionsColumn.ReadOnly = true;
			this.bandedGridColumn23.OptionsColumn.ShowInCustomizationForm = false;
			this.bandedGridColumn23.RowIndex = 1;
			this.bandedGridColumn23.Visible = true;
			this.bandedGridColumn23.Width = 64;
			// 
			// bandedGridColumn18
			// 
			this.bandedGridColumn18.AppearanceCell.Options.UseTextOptions = true;
			this.bandedGridColumn18.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn18.AppearanceHeader.Options.UseTextOptions = true;
			this.bandedGridColumn18.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn18.Caption = "性别";
			this.bandedGridColumn18.FieldName = "info_stuGender";
			this.bandedGridColumn18.Name = "bandedGridColumn18";
			this.bandedGridColumn18.OptionsColumn.AllowEdit = false;
			this.bandedGridColumn18.OptionsColumn.AllowFocus = false;
			this.bandedGridColumn18.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn18.OptionsColumn.AllowIncrementalSearch = false;
			this.bandedGridColumn18.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.True;
			this.bandedGridColumn18.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.bandedGridColumn18.OptionsColumn.ReadOnly = true;
			this.bandedGridColumn18.OptionsColumn.ShowInCustomizationForm = false;
			this.bandedGridColumn18.RowIndex = 1;
			this.bandedGridColumn18.Visible = true;
			this.bandedGridColumn18.Width = 71;
			// 
			// gridBand7
			// 
			this.gridBand7.AppearanceHeader.Options.UseTextOptions = true;
			this.gridBand7.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridBand7.Caption = "评测信息";
			this.gridBand7.Columns.Add(this.bandedGridColumn20);
			this.gridBand7.Columns.Add(this.bandedGridColumn21);
			this.gridBand7.Columns.Add(this.bandedGridColumn22);
			this.gridBand7.Columns.Add(this.bandedGridColumn26);
			this.gridBand7.Columns.Add(this.bandedGridColumn29);
			this.gridBand7.Columns.Add(this.bandedGridColumn30);
			this.gridBand7.Columns.Add(this.bandedGridColumn24);
			this.gridBand7.Columns.Add(this.bandedGridColumn25);
			this.gridBand7.Columns.Add(this.bandedGridColumn27);
			this.gridBand7.Columns.Add(this.bandedGridColumn28);
			this.gridBand7.Name = "gridBand7";
			this.gridBand7.Width = 340;
			// 
			// bandedGridColumn20
			// 
			this.bandedGridColumn20.AppearanceCell.Options.UseTextOptions = true;
			this.bandedGridColumn20.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn20.AppearanceHeader.Options.UseTextOptions = true;
			this.bandedGridColumn20.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn20.Caption = "体检日期";
			this.bandedGridColumn20.FieldName = "nchsanaly_checktime";
			this.bandedGridColumn20.Name = "bandedGridColumn20";
			this.bandedGridColumn20.OptionsColumn.AllowEdit = false;
			this.bandedGridColumn20.OptionsColumn.AllowFocus = false;
			this.bandedGridColumn20.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn20.OptionsColumn.AllowIncrementalSearch = false;
			this.bandedGridColumn20.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.True;
			this.bandedGridColumn20.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.bandedGridColumn20.OptionsColumn.ReadOnly = true;
			this.bandedGridColumn20.OptionsColumn.ShowInCustomizationForm = false;
			this.bandedGridColumn20.Visible = true;
			this.bandedGridColumn20.Width = 80;
			// 
			// bandedGridColumn21
			// 
			this.bandedGridColumn21.AppearanceCell.Options.UseTextOptions = true;
			this.bandedGridColumn21.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn21.AppearanceHeader.Options.UseTextOptions = true;
			this.bandedGridColumn21.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn21.Caption = "身高(cm)";
			this.bandedGridColumn21.FieldName = "nchsanaly_height";
			this.bandedGridColumn21.Name = "bandedGridColumn21";
			this.bandedGridColumn21.OptionsColumn.AllowEdit = false;
			this.bandedGridColumn21.OptionsColumn.AllowFocus = false;
			this.bandedGridColumn21.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn21.OptionsColumn.AllowIncrementalSearch = false;
			this.bandedGridColumn21.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.True;
			this.bandedGridColumn21.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.bandedGridColumn21.OptionsColumn.ReadOnly = true;
			this.bandedGridColumn21.OptionsColumn.ShowInCustomizationForm = false;
			this.bandedGridColumn21.Visible = true;
			this.bandedGridColumn21.Width = 59;
			// 
			// bandedGridColumn22
			// 
			this.bandedGridColumn22.AppearanceCell.Options.UseTextOptions = true;
			this.bandedGridColumn22.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn22.AppearanceHeader.Options.UseTextOptions = true;
			this.bandedGridColumn22.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn22.Caption = "体重(kg)";
			this.bandedGridColumn22.FieldName = "nchsanaly_weight";
			this.bandedGridColumn22.Name = "bandedGridColumn22";
			this.bandedGridColumn22.OptionsColumn.AllowEdit = false;
			this.bandedGridColumn22.OptionsColumn.AllowFocus = false;
			this.bandedGridColumn22.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn22.OptionsColumn.AllowIncrementalSearch = false;
			this.bandedGridColumn22.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.True;
			this.bandedGridColumn22.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.bandedGridColumn22.OptionsColumn.ReadOnly = true;
			this.bandedGridColumn22.OptionsColumn.ShowInCustomizationForm = false;
			this.bandedGridColumn22.Visible = true;
			this.bandedGridColumn22.Width = 59;
			// 
			// bandedGridColumn26
			// 
			this.bandedGridColumn26.AppearanceCell.Options.UseTextOptions = true;
			this.bandedGridColumn26.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn26.AppearanceHeader.Options.UseTextOptions = true;
			this.bandedGridColumn26.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn26.Caption = "肥胖";
			this.bandedGridColumn26.FieldName = "nchsanaly_obesity";
			this.bandedGridColumn26.Name = "bandedGridColumn26";
			this.bandedGridColumn26.OptionsColumn.AllowEdit = false;
			this.bandedGridColumn26.OptionsColumn.AllowFocus = false;
			this.bandedGridColumn26.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn26.OptionsColumn.AllowIncrementalSearch = false;
			this.bandedGridColumn26.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.True;
			this.bandedGridColumn26.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.bandedGridColumn26.OptionsColumn.ReadOnly = true;
			this.bandedGridColumn26.OptionsColumn.ShowInCustomizationForm = false;
			this.bandedGridColumn26.Visible = true;
			this.bandedGridColumn26.Width = 62;
			// 
			// bandedGridColumn29
			// 
			this.bandedGridColumn29.AppearanceCell.Options.UseTextOptions = true;
			this.bandedGridColumn29.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn29.AppearanceHeader.Options.UseTextOptions = true;
			this.bandedGridColumn29.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn29.Caption = "消瘦";
			this.bandedGridColumn29.FieldName = "nchsanaly_wasting";
			this.bandedGridColumn29.Name = "bandedGridColumn29";
			this.bandedGridColumn29.OptionsColumn.AllowEdit = false;
			this.bandedGridColumn29.OptionsColumn.AllowFocus = false;
			this.bandedGridColumn29.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn29.OptionsColumn.AllowIncrementalSearch = false;
			this.bandedGridColumn29.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.True;
			this.bandedGridColumn29.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.bandedGridColumn29.OptionsColumn.ReadOnly = true;
			this.bandedGridColumn29.OptionsColumn.ShowInCustomizationForm = false;
			this.bandedGridColumn29.Visible = true;
			this.bandedGridColumn29.Width = 80;
			// 
			// bandedGridColumn30
			// 
			this.bandedGridColumn30.AppearanceCell.Options.UseTextOptions = true;
			this.bandedGridColumn30.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn30.AppearanceHeader.Options.UseTextOptions = true;
			this.bandedGridColumn30.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn30.Caption = "体重低下";
			this.bandedGridColumn30.FieldName = "nchsanaly_underweight";
			this.bandedGridColumn30.MinWidth = 10;
			this.bandedGridColumn30.Name = "bandedGridColumn30";
			this.bandedGridColumn30.OptionsColumn.AllowEdit = false;
			this.bandedGridColumn30.OptionsColumn.AllowFocus = false;
			this.bandedGridColumn30.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn30.OptionsColumn.AllowIncrementalSearch = false;
			this.bandedGridColumn30.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.True;
			this.bandedGridColumn30.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.bandedGridColumn30.OptionsColumn.ReadOnly = true;
			this.bandedGridColumn30.OptionsColumn.ShowInCustomizationForm = false;
			this.bandedGridColumn30.RowIndex = 1;
			this.bandedGridColumn30.Visible = true;
			this.bandedGridColumn30.Width = 80;
			// 
			// bandedGridColumn24
			// 
			this.bandedGridColumn24.AppearanceCell.Options.UseTextOptions = true;
			this.bandedGridColumn24.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn24.AppearanceHeader.Options.UseTextOptions = true;
			this.bandedGridColumn24.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn24.Caption = "身高评价";
			this.bandedGridColumn24.FieldName = "nchsanaly_heightresult";
			this.bandedGridColumn24.Name = "bandedGridColumn24";
			this.bandedGridColumn24.OptionsColumn.AllowEdit = false;
			this.bandedGridColumn24.OptionsColumn.AllowFocus = false;
			this.bandedGridColumn24.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn24.OptionsColumn.AllowIncrementalSearch = false;
			this.bandedGridColumn24.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.True;
			this.bandedGridColumn24.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.bandedGridColumn24.OptionsColumn.ReadOnly = true;
			this.bandedGridColumn24.OptionsColumn.ShowInCustomizationForm = false;
			this.bandedGridColumn24.RowIndex = 1;
			this.bandedGridColumn24.Visible = true;
			this.bandedGridColumn24.Width = 59;
			// 
			// bandedGridColumn25
			// 
			this.bandedGridColumn25.AppearanceCell.Options.UseTextOptions = true;
			this.bandedGridColumn25.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn25.AppearanceHeader.Options.UseTextOptions = true;
			this.bandedGridColumn25.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn25.Caption = "体重评价";
			this.bandedGridColumn25.FieldName = "nchsanaly_weightresult";
			this.bandedGridColumn25.Name = "bandedGridColumn25";
			this.bandedGridColumn25.OptionsColumn.AllowEdit = false;
			this.bandedGridColumn25.OptionsColumn.AllowFocus = false;
			this.bandedGridColumn25.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn25.OptionsColumn.AllowIncrementalSearch = false;
			this.bandedGridColumn25.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.True;
			this.bandedGridColumn25.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.bandedGridColumn25.OptionsColumn.ReadOnly = true;
			this.bandedGridColumn25.OptionsColumn.ShowInCustomizationForm = false;
			this.bandedGridColumn25.RowIndex = 1;
			this.bandedGridColumn25.Visible = true;
			this.bandedGridColumn25.Width = 59;
			// 
			// bandedGridColumn27
			// 
			this.bandedGridColumn27.AppearanceCell.Options.UseTextOptions = true;
			this.bandedGridColumn27.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn27.AppearanceHeader.Options.UseTextOptions = true;
			this.bandedGridColumn27.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn27.Caption = "营养";
			this.bandedGridColumn27.FieldName = "nchsanaly_nut";
			this.bandedGridColumn27.Name = "bandedGridColumn27";
			this.bandedGridColumn27.OptionsColumn.AllowEdit = false;
			this.bandedGridColumn27.OptionsColumn.AllowFocus = false;
			this.bandedGridColumn27.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn27.OptionsColumn.AllowIncrementalSearch = false;
			this.bandedGridColumn27.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.True;
			this.bandedGridColumn27.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.bandedGridColumn27.OptionsColumn.ReadOnly = true;
			this.bandedGridColumn27.OptionsColumn.ShowInCustomizationForm = false;
			this.bandedGridColumn27.RowIndex = 1;
			this.bandedGridColumn27.Visible = true;
			this.bandedGridColumn27.Width = 62;
			// 
			// bandedGridColumn28
			// 
			this.bandedGridColumn28.AppearanceCell.Options.UseTextOptions = true;
			this.bandedGridColumn28.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn28.AppearanceHeader.Options.UseTextOptions = true;
			this.bandedGridColumn28.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn28.Caption = "发育";
			this.bandedGridColumn28.FieldName = "nchsanaly_stunting";
			this.bandedGridColumn28.Name = "bandedGridColumn28";
			this.bandedGridColumn28.OptionsColumn.AllowEdit = false;
			this.bandedGridColumn28.OptionsColumn.AllowFocus = false;
			this.bandedGridColumn28.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn28.OptionsColumn.AllowIncrementalSearch = false;
			this.bandedGridColumn28.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.True;
			this.bandedGridColumn28.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.bandedGridColumn28.OptionsColumn.ReadOnly = true;
			this.bandedGridColumn28.OptionsColumn.ShowInCustomizationForm = false;
			this.bandedGridColumn28.RowIndex = 1;
			this.bandedGridColumn28.Visible = true;
			this.bandedGridColumn28.Width = 80;
			// 
			// gridControl_HOutputGridShow
			// 
			this.gridControl_HOutputGridShow.Dock = System.Windows.Forms.DockStyle.Fill;
			// 
			// gridControl_HOutputGridShow.EmbeddedNavigator
			// 
			this.gridControl_HOutputGridShow.EmbeddedNavigator.Name = "";
			this.gridControl_HOutputGridShow.Location = new System.Drawing.Point(0, 48);
			this.gridControl_HOutputGridShow.MainView = this.advBandedGridView1;
			this.gridControl_HOutputGridShow.Name = "gridControl_HOutputGridShow";
			this.gridControl_HOutputGridShow.Size = new System.Drawing.Size(508, 461);
			this.gridControl_HOutputGridShow.TabIndex = 1;
			this.gridControl_HOutputGridShow.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
																													   this.advBandedGridView1});
			// 
			// advBandedGridView1
			// 
			this.advBandedGridView1.Bands.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.GridBand[] {
																										   this.gridBand1,
																										   this.gridBand2,
																										   this.gridBand3,
																										   this.gridBand4});
			this.advBandedGridView1.Columns.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn[] {
																													 this.bandedGridColumn2,
																													 this.bandedGridColumn3,
																													 this.bandedGridColumn4,
																													 this.bandedGridColumn5,
																													 this.bandedGridColumn6,
																													 this.bandedGridColumn7,
																													 this.bandedGridColumn8,
																													 this.bandedGridColumn9,
																													 this.bandedGridColumn10,
																													 this.bandedGridColumn11,
																													 this.bandedGridColumn12,
																													 this.bandedGridColumn13,
																													 this.bandedGridColumn14,
																													 this.bandedGridColumn15});
			this.advBandedGridView1.GridControl = this.gridControl_HOutputGridShow;
			this.advBandedGridView1.Name = "advBandedGridView1";
			this.advBandedGridView1.OptionsCustomization.AllowFilter = false;
			this.advBandedGridView1.OptionsView.ShowFilterPanel = false;
			this.advBandedGridView1.OptionsView.ShowGroupPanel = false;
			// 
			// gridBand1
			// 
			this.gridBand1.AppearanceHeader.Options.UseTextOptions = true;
			this.gridBand1.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridBand1.Caption = "基本信息";
			this.gridBand1.Columns.Add(this.bandedGridColumn4);
			this.gridBand1.Name = "gridBand1";
			this.gridBand1.Width = 59;
			// 
			// bandedGridColumn4
			// 
			this.bandedGridColumn4.AppearanceCell.Options.UseTextOptions = true;
			this.bandedGridColumn4.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn4.AppearanceHeader.Options.UseTextOptions = true;
			this.bandedGridColumn4.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn4.AutoFillDown = true;
			this.bandedGridColumn4.Caption = "姓名";
			this.bandedGridColumn4.FieldName = "info_stuName";
			this.bandedGridColumn4.Name = "bandedGridColumn4";
			this.bandedGridColumn4.OptionsColumn.AllowEdit = false;
			this.bandedGridColumn4.OptionsColumn.AllowFocus = false;
			this.bandedGridColumn4.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn4.OptionsColumn.AllowIncrementalSearch = false;
			this.bandedGridColumn4.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn4.OptionsColumn.AllowMove = false;
			this.bandedGridColumn4.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn4.OptionsColumn.ReadOnly = true;
			this.bandedGridColumn4.OptionsColumn.ShowInCustomizationForm = false;
			this.bandedGridColumn4.Visible = true;
			this.bandedGridColumn4.Width = 59;
			// 
			// gridBand2
			// 
			this.gridBand2.AppearanceHeader.Options.UseTextOptions = true;
			this.gridBand2.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridBand2.Caption = "扩展信息";
			this.gridBand2.Columns.Add(this.bandedGridColumn2);
			this.gridBand2.Columns.Add(this.bandedGridColumn5);
			this.gridBand2.Columns.Add(this.bandedGridColumn6);
			this.gridBand2.Columns.Add(this.bandedGridColumn3);
			this.gridBand2.Name = "gridBand2";
			this.gridBand2.Width = 123;
			// 
			// bandedGridColumn2
			// 
			this.bandedGridColumn2.AppearanceCell.Options.UseTextOptions = true;
			this.bandedGridColumn2.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn2.AppearanceHeader.Options.UseTextOptions = true;
			this.bandedGridColumn2.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn2.Caption = "学号";
			this.bandedGridColumn2.FieldName = "HealthAnaly_StuID";
			this.bandedGridColumn2.MinWidth = 10;
			this.bandedGridColumn2.Name = "bandedGridColumn2";
			this.bandedGridColumn2.OptionsColumn.AllowEdit = false;
			this.bandedGridColumn2.OptionsColumn.AllowFocus = false;
			this.bandedGridColumn2.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn2.OptionsColumn.AllowIncrementalSearch = false;
			this.bandedGridColumn2.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn2.OptionsColumn.AllowMove = false;
			this.bandedGridColumn2.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.bandedGridColumn2.OptionsColumn.ReadOnly = true;
			this.bandedGridColumn2.OptionsColumn.ShowInCustomizationForm = false;
			this.bandedGridColumn2.Visible = true;
			this.bandedGridColumn2.Width = 58;
			// 
			// bandedGridColumn5
			// 
			this.bandedGridColumn5.AppearanceCell.Options.UseTextOptions = true;
			this.bandedGridColumn5.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn5.AppearanceHeader.Options.UseTextOptions = true;
			this.bandedGridColumn5.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn5.Caption = "性别";
			this.bandedGridColumn5.FieldName = "info_stuGender";
			this.bandedGridColumn5.MinWidth = 10;
			this.bandedGridColumn5.Name = "bandedGridColumn5";
			this.bandedGridColumn5.OptionsColumn.AllowEdit = false;
			this.bandedGridColumn5.OptionsColumn.AllowFocus = false;
			this.bandedGridColumn5.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn5.OptionsColumn.AllowIncrementalSearch = false;
			this.bandedGridColumn5.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn5.OptionsColumn.AllowMove = false;
			this.bandedGridColumn5.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn5.OptionsColumn.ReadOnly = true;
			this.bandedGridColumn5.OptionsColumn.ShowInCustomizationForm = false;
			this.bandedGridColumn5.RowIndex = 1;
			this.bandedGridColumn5.Visible = true;
			this.bandedGridColumn5.Width = 58;
			// 
			// bandedGridColumn6
			// 
			this.bandedGridColumn6.AppearanceCell.Options.UseTextOptions = true;
			this.bandedGridColumn6.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn6.AppearanceHeader.Options.UseTextOptions = true;
			this.bandedGridColumn6.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn6.Caption = "出生年月";
			this.bandedGridColumn6.FieldName = "info_stuBirthday";
			this.bandedGridColumn6.Name = "bandedGridColumn6";
			this.bandedGridColumn6.OptionsColumn.AllowEdit = false;
			this.bandedGridColumn6.OptionsColumn.AllowFocus = false;
			this.bandedGridColumn6.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn6.OptionsColumn.AllowIncrementalSearch = false;
			this.bandedGridColumn6.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn6.OptionsColumn.AllowMove = false;
			this.bandedGridColumn6.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn6.OptionsColumn.ReadOnly = true;
			this.bandedGridColumn6.OptionsColumn.ShowInCustomizationForm = false;
			this.bandedGridColumn6.RowIndex = 1;
			this.bandedGridColumn6.Visible = true;
			this.bandedGridColumn6.Width = 65;
			// 
			// bandedGridColumn3
			// 
			this.bandedGridColumn3.AppearanceCell.Options.UseTextOptions = true;
			this.bandedGridColumn3.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn3.AppearanceHeader.Options.UseTextOptions = true;
			this.bandedGridColumn3.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn3.Caption = "班级";
			this.bandedGridColumn3.FieldName = "info_className";
			this.bandedGridColumn3.MinWidth = 10;
			this.bandedGridColumn3.Name = "bandedGridColumn3";
			this.bandedGridColumn3.OptionsColumn.AllowEdit = false;
			this.bandedGridColumn3.OptionsColumn.AllowFocus = false;
			this.bandedGridColumn3.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn3.OptionsColumn.AllowIncrementalSearch = false;
			this.bandedGridColumn3.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn3.OptionsColumn.AllowMove = false;
			this.bandedGridColumn3.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn3.OptionsColumn.ReadOnly = true;
			this.bandedGridColumn3.OptionsColumn.ShowInCustomizationForm = false;
			this.bandedGridColumn3.Visible = true;
			this.bandedGridColumn3.Width = 65;
			// 
			// gridBand3
			// 
			this.gridBand3.AppearanceHeader.Options.UseTextOptions = true;
			this.gridBand3.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridBand3.Caption = "评测信息";
			this.gridBand3.Columns.Add(this.bandedGridColumn7);
			this.gridBand3.Columns.Add(this.bandedGridColumn8);
			this.gridBand3.Columns.Add(this.bandedGridColumn10);
			this.gridBand3.Columns.Add(this.bandedGridColumn12);
			this.gridBand3.Columns.Add(this.bandedGridColumn15);
			this.gridBand3.Columns.Add(this.bandedGridColumn9);
			this.gridBand3.Columns.Add(this.bandedGridColumn11);
			this.gridBand3.Columns.Add(this.bandedGridColumn13);
			this.gridBand3.Name = "gridBand3";
			this.gridBand3.Width = 283;
			// 
			// bandedGridColumn7
			// 
			this.bandedGridColumn7.AppearanceCell.Options.UseTextOptions = true;
			this.bandedGridColumn7.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn7.AppearanceHeader.Options.UseTextOptions = true;
			this.bandedGridColumn7.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn7.Caption = "体检日期";
			this.bandedGridColumn7.FieldName = "HealthAnaly_CheckTime";
			this.bandedGridColumn7.Name = "bandedGridColumn7";
			this.bandedGridColumn7.OptionsColumn.AllowEdit = false;
			this.bandedGridColumn7.OptionsColumn.AllowFocus = false;
			this.bandedGridColumn7.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn7.OptionsColumn.AllowIncrementalSearch = false;
			this.bandedGridColumn7.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn7.OptionsColumn.AllowMove = false;
			this.bandedGridColumn7.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn7.OptionsColumn.ReadOnly = true;
			this.bandedGridColumn7.OptionsColumn.ShowInCustomizationForm = false;
			this.bandedGridColumn7.Visible = true;
			this.bandedGridColumn7.Width = 70;
			// 
			// bandedGridColumn8
			// 
			this.bandedGridColumn8.AppearanceCell.Options.UseTextOptions = true;
			this.bandedGridColumn8.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn8.AppearanceHeader.Options.UseTextOptions = true;
			this.bandedGridColumn8.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn8.Caption = "身高(cm)";
			this.bandedGridColumn8.FieldName = "HealthAnaly_Height";
			this.bandedGridColumn8.Name = "bandedGridColumn8";
			this.bandedGridColumn8.OptionsColumn.AllowEdit = false;
			this.bandedGridColumn8.OptionsColumn.AllowFocus = false;
			this.bandedGridColumn8.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn8.OptionsColumn.AllowIncrementalSearch = false;
			this.bandedGridColumn8.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn8.OptionsColumn.AllowMove = false;
			this.bandedGridColumn8.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn8.OptionsColumn.ReadOnly = true;
			this.bandedGridColumn8.OptionsColumn.ShowInCustomizationForm = false;
			this.bandedGridColumn8.Visible = true;
			this.bandedGridColumn8.Width = 65;
			// 
			// bandedGridColumn10
			// 
			this.bandedGridColumn10.AppearanceCell.Options.UseTextOptions = true;
			this.bandedGridColumn10.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn10.AppearanceHeader.Options.UseTextOptions = true;
			this.bandedGridColumn10.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn10.Caption = "体重(kg)";
			this.bandedGridColumn10.FieldName = "HealthAnaly_Weight";
			this.bandedGridColumn10.MinWidth = 10;
			this.bandedGridColumn10.Name = "bandedGridColumn10";
			this.bandedGridColumn10.OptionsColumn.AllowEdit = false;
			this.bandedGridColumn10.OptionsColumn.AllowFocus = false;
			this.bandedGridColumn10.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn10.OptionsColumn.AllowIncrementalSearch = false;
			this.bandedGridColumn10.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn10.OptionsColumn.AllowMove = false;
			this.bandedGridColumn10.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn10.OptionsColumn.ReadOnly = true;
			this.bandedGridColumn10.OptionsColumn.ShowInCustomizationForm = false;
			this.bandedGridColumn10.Visible = true;
			this.bandedGridColumn10.Width = 62;
			// 
			// bandedGridColumn12
			// 
			this.bandedGridColumn12.AppearanceCell.Options.UseTextOptions = true;
			this.bandedGridColumn12.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn12.AppearanceHeader.Options.UseTextOptions = true;
			this.bandedGridColumn12.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn12.Caption = "肥胖";
			this.bandedGridColumn12.FieldName = "HealthAnaly_FatCircs";
			this.bandedGridColumn12.Name = "bandedGridColumn12";
			this.bandedGridColumn12.OptionsColumn.AllowEdit = false;
			this.bandedGridColumn12.OptionsColumn.AllowFocus = false;
			this.bandedGridColumn12.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn12.OptionsColumn.AllowIncrementalSearch = false;
			this.bandedGridColumn12.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn12.OptionsColumn.AllowMove = false;
			this.bandedGridColumn12.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn12.OptionsColumn.ReadOnly = true;
			this.bandedGridColumn12.OptionsColumn.ShowInCustomizationForm = false;
			this.bandedGridColumn12.Visible = true;
			this.bandedGridColumn12.Width = 86;
			// 
			// bandedGridColumn15
			// 
			this.bandedGridColumn15.AppearanceCell.Options.UseTextOptions = true;
			this.bandedGridColumn15.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn15.AppearanceHeader.Options.UseTextOptions = true;
			this.bandedGridColumn15.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn15.Caption = "幼儿年龄";
			this.bandedGridColumn15.FieldName = "HealthAnaly_RealAge";
			this.bandedGridColumn15.MinWidth = 10;
			this.bandedGridColumn15.Name = "bandedGridColumn15";
			this.bandedGridColumn15.OptionsColumn.AllowEdit = false;
			this.bandedGridColumn15.OptionsColumn.AllowFocus = false;
			this.bandedGridColumn15.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn15.OptionsColumn.AllowIncrementalSearch = false;
			this.bandedGridColumn15.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn15.OptionsColumn.AllowMove = false;
			this.bandedGridColumn15.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn15.OptionsColumn.ReadOnly = true;
			this.bandedGridColumn15.OptionsColumn.ShowInCustomizationForm = false;
			this.bandedGridColumn15.RowIndex = 1;
			this.bandedGridColumn15.Visible = true;
			this.bandedGridColumn15.Width = 70;
			// 
			// bandedGridColumn9
			// 
			this.bandedGridColumn9.AppearanceCell.Options.UseTextOptions = true;
			this.bandedGridColumn9.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn9.AppearanceHeader.Options.UseTextOptions = true;
			this.bandedGridColumn9.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn9.Caption = "身高评价";
			this.bandedGridColumn9.FieldName = "HealthAnaly_HeightAnaly";
			this.bandedGridColumn9.MinWidth = 10;
			this.bandedGridColumn9.Name = "bandedGridColumn9";
			this.bandedGridColumn9.OptionsColumn.AllowEdit = false;
			this.bandedGridColumn9.OptionsColumn.AllowFocus = false;
			this.bandedGridColumn9.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn9.OptionsColumn.AllowIncrementalSearch = false;
			this.bandedGridColumn9.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn9.OptionsColumn.AllowMove = false;
			this.bandedGridColumn9.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn9.OptionsColumn.ReadOnly = true;
			this.bandedGridColumn9.OptionsColumn.ShowInCustomizationForm = false;
			this.bandedGridColumn9.RowIndex = 1;
			this.bandedGridColumn9.Visible = true;
			this.bandedGridColumn9.Width = 65;
			// 
			// bandedGridColumn11
			// 
			this.bandedGridColumn11.AppearanceCell.Options.UseTextOptions = true;
			this.bandedGridColumn11.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn11.AppearanceHeader.Options.UseTextOptions = true;
			this.bandedGridColumn11.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn11.Caption = "体重评价";
			this.bandedGridColumn11.FieldName = "HealthAnaly_WeightAnaly";
			this.bandedGridColumn11.Name = "bandedGridColumn11";
			this.bandedGridColumn11.OptionsColumn.AllowEdit = false;
			this.bandedGridColumn11.OptionsColumn.AllowFocus = false;
			this.bandedGridColumn11.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn11.OptionsColumn.AllowIncrementalSearch = false;
			this.bandedGridColumn11.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn11.OptionsColumn.AllowMove = false;
			this.bandedGridColumn11.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn11.OptionsColumn.ReadOnly = true;
			this.bandedGridColumn11.OptionsColumn.ShowInCustomizationForm = false;
			this.bandedGridColumn11.RowIndex = 1;
			this.bandedGridColumn11.Visible = true;
			this.bandedGridColumn11.Width = 62;
			// 
			// bandedGridColumn13
			// 
			this.bandedGridColumn13.AppearanceCell.Options.UseTextOptions = true;
			this.bandedGridColumn13.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn13.AppearanceHeader.Options.UseTextOptions = true;
			this.bandedGridColumn13.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn13.Caption = "营养";
			this.bandedGridColumn13.FieldName = "HealthAnaly_NutCircs";
			this.bandedGridColumn13.MinWidth = 10;
			this.bandedGridColumn13.Name = "bandedGridColumn13";
			this.bandedGridColumn13.OptionsColumn.AllowEdit = false;
			this.bandedGridColumn13.OptionsColumn.AllowFocus = false;
			this.bandedGridColumn13.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn13.OptionsColumn.AllowIncrementalSearch = false;
			this.bandedGridColumn13.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn13.OptionsColumn.AllowMove = false;
			this.bandedGridColumn13.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn13.OptionsColumn.ReadOnly = true;
			this.bandedGridColumn13.OptionsColumn.ShowInCustomizationForm = false;
			this.bandedGridColumn13.RowIndex = 1;
			this.bandedGridColumn13.Visible = true;
			this.bandedGridColumn13.Width = 86;
			// 
			// gridBand4
			// 
			this.gridBand4.AppearanceHeader.Options.UseTextOptions = true;
			this.gridBand4.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridBand4.Caption = "备注信息";
			this.gridBand4.Columns.Add(this.bandedGridColumn14);
			this.gridBand4.Name = "gridBand4";
			this.gridBand4.Width = 75;
			// 
			// bandedGridColumn14
			// 
			this.bandedGridColumn14.AppearanceCell.Options.UseTextOptions = true;
			this.bandedGridColumn14.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn14.AppearanceHeader.Options.UseTextOptions = true;
			this.bandedGridColumn14.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn14.AutoFillDown = true;
			this.bandedGridColumn14.Caption = "备注";
			this.bandedGridColumn14.FieldName = "HealthAnaly_Remark";
			this.bandedGridColumn14.Name = "bandedGridColumn14";
			this.bandedGridColumn14.OptionsColumn.AllowEdit = false;
			this.bandedGridColumn14.OptionsColumn.AllowFocus = false;
			this.bandedGridColumn14.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn14.OptionsColumn.AllowIncrementalSearch = false;
			this.bandedGridColumn14.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn14.OptionsColumn.AllowMove = false;
			this.bandedGridColumn14.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn14.OptionsColumn.ReadOnly = true;
			this.bandedGridColumn14.OptionsColumn.ShowInCustomizationForm = false;
			this.bandedGridColumn14.Visible = true;
			// 
			// panelControl6
			// 
			this.panelControl6.Controls.Add(this.simpleButton_HOutputSearch);
			this.panelControl6.Controls.Add(this.simpleButton_HOutputPrint);
			this.panelControl6.Dock = System.Windows.Forms.DockStyle.Top;
			this.panelControl6.Location = new System.Drawing.Point(0, 0);
			this.panelControl6.Name = "panelControl6";
			this.panelControl6.Size = new System.Drawing.Size(508, 48);
			this.panelControl6.TabIndex = 0;
			this.panelControl6.Text = "panelControl6";
			// 
			// simpleButton_HOutputSearch
			// 
			this.simpleButton_HOutputSearch.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.simpleButton_HOutputSearch.Appearance.ForeColor = System.Drawing.Color.DarkMagenta;
			this.simpleButton_HOutputSearch.Appearance.Options.UseFont = true;
			this.simpleButton_HOutputSearch.Appearance.Options.UseForeColor = true;
			this.simpleButton_HOutputSearch.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton_HOutputSearch.Image")));
			this.simpleButton_HOutputSearch.Location = new System.Drawing.Point(16, 8);
			this.simpleButton_HOutputSearch.Name = "simpleButton_HOutputSearch";
			this.simpleButton_HOutputSearch.Size = new System.Drawing.Size(96, 26);
			this.simpleButton_HOutputSearch.TabIndex = 14;
			this.simpleButton_HOutputSearch.Tag = 4;
			this.simpleButton_HOutputSearch.Text = "检  索";
			this.simpleButton_HOutputSearch.Click += new System.EventHandler(this.simpleButton_HOutputSearch_Click);
			// 
			// simpleButton_HOutputPrint
			// 
			this.simpleButton_HOutputPrint.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.simpleButton_HOutputPrint.Appearance.ForeColor = System.Drawing.Color.DarkMagenta;
			this.simpleButton_HOutputPrint.Appearance.Options.UseFont = true;
			this.simpleButton_HOutputPrint.Appearance.Options.UseForeColor = true;
			this.simpleButton_HOutputPrint.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton_HOutputPrint.Image")));
			this.simpleButton_HOutputPrint.Location = new System.Drawing.Point(128, 8);
			this.simpleButton_HOutputPrint.Name = "simpleButton_HOutputPrint";
			this.simpleButton_HOutputPrint.Size = new System.Drawing.Size(96, 26);
			this.simpleButton_HOutputPrint.TabIndex = 12;
			this.simpleButton_HOutputPrint.Tag = 4;
			this.simpleButton_HOutputPrint.Text = "报  表";
			this.simpleButton_HOutputPrint.Click += new System.EventHandler(this.simpleButton_HOutputPrint_Click);
			// 
			// xtraTabPage7
			// 
			this.xtraTabPage7.Controls.Add(this.splitContainerControl8);
			this.xtraTabPage7.Name = "xtraTabPage7";
			this.xtraTabPage7.Size = new System.Drawing.Size(768, 515);
			this.xtraTabPage7.Text = "晨检及全日观察";
			// 
			// splitContainerControl8
			// 
			this.splitContainerControl8.Dock = System.Windows.Forms.DockStyle.Fill;
			this.splitContainerControl8.Location = new System.Drawing.Point(0, 0);
			this.splitContainerControl8.Name = "splitContainerControl8";
			this.splitContainerControl8.Panel1.Controls.Add(this.groupControl_WatchMorningRec);
			this.splitContainerControl8.Panel1.Controls.Add(this.groupControl_WatchStuList);
			this.splitContainerControl8.Panel1.Controls.Add(this.groupControl_WatchSer);
			this.splitContainerControl8.Panel1.Text = "splitContainerControl8_Panel1";
			this.splitContainerControl8.Panel2.Controls.Add(this.groupControl_WatchWholeDay);
			this.splitContainerControl8.Panel2.Controls.Add(this.groupControl_WatchRecList);
			this.splitContainerControl8.Panel2.Controls.Add(this.panelControl7);
			this.splitContainerControl8.Panel2.Text = "splitContainerControl8_Panel2";
			this.splitContainerControl8.Size = new System.Drawing.Size(768, 515);
			this.splitContainerControl8.SplitterPosition = 294;
			this.splitContainerControl8.TabIndex = 0;
			this.splitContainerControl8.Text = "splitContainerControl8";
			// 
			// groupControl_WatchMorningRec
			// 
			this.groupControl_WatchMorningRec.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.groupControl_WatchMorningRec.AppearanceCaption.Options.UseFont = true;
			this.groupControl_WatchMorningRec.Controls.Add(this.textEdit_WatchMorningTreat);
			this.groupControl_WatchMorningRec.Controls.Add(this.notePanel_WatchMorningTreat);
			this.groupControl_WatchMorningRec.Controls.Add(this.textEdit_WatchMorningOState);
			this.groupControl_WatchMorningRec.Controls.Add(this.notePanel_WatchMorningOState);
			this.groupControl_WatchMorningRec.Controls.Add(this.notePanel_WatchMorningMouth);
			this.groupControl_WatchMorningRec.Controls.Add(this.comboBoxEdit_WatchMorningHeat);
			this.groupControl_WatchMorningRec.Controls.Add(this.comboBoxEdit_WatchMorningMouth);
			this.groupControl_WatchMorningRec.Controls.Add(this.comboBoxEdit_WatchMorningSpirit);
			this.groupControl_WatchMorningRec.Controls.Add(this.notePanel_WatchMorningHeat);
			this.groupControl_WatchMorningRec.Controls.Add(this.notePanel_WatchMorningSkin);
			this.groupControl_WatchMorningRec.Controls.Add(this.comboBoxEdit_WatchMorningSkin);
			this.groupControl_WatchMorningRec.Controls.Add(this.notePanel_WatchMorningSpirit);
			this.groupControl_WatchMorningRec.Controls.Add(this.textEdit_WatchMorningNumber);
			this.groupControl_WatchMorningRec.Controls.Add(this.textEdit_WatchMorningName);
			this.groupControl_WatchMorningRec.Controls.Add(this.notePanel_WatchMorningNumber);
			this.groupControl_WatchMorningRec.Controls.Add(this.notePanel_WatchMorningName);
			this.groupControl_WatchMorningRec.Dock = System.Windows.Forms.DockStyle.Top;
			this.groupControl_WatchMorningRec.Location = new System.Drawing.Point(0, 280);
			this.groupControl_WatchMorningRec.Name = "groupControl_WatchMorningRec";
			this.groupControl_WatchMorningRec.Size = new System.Drawing.Size(288, 248);
			this.groupControl_WatchMorningRec.TabIndex = 30;
			this.groupControl_WatchMorningRec.Text = "晨检检查情况";
			this.groupControl_WatchMorningRec.Visible = false;
			// 
			// textEdit_WatchMorningTreat
			// 
			this.textEdit_WatchMorningTreat.EditValue = "";
			this.textEdit_WatchMorningTreat.Location = new System.Drawing.Point(80, 200);
			this.textEdit_WatchMorningTreat.Name = "textEdit_WatchMorningTreat";
			this.textEdit_WatchMorningTreat.Size = new System.Drawing.Size(184, 23);
			this.textEdit_WatchMorningTreat.TabIndex = 85;
			// 
			// notePanel_WatchMorningTreat
			// 
			this.notePanel_WatchMorningTreat.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_WatchMorningTreat.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_WatchMorningTreat.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_WatchMorningTreat.ForeColor = System.Drawing.Color.Black;
			this.notePanel_WatchMorningTreat.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_WatchMorningTreat.Location = new System.Drawing.Point(16, 200);
			this.notePanel_WatchMorningTreat.MaxRows = 5;
			this.notePanel_WatchMorningTreat.Name = "notePanel_WatchMorningTreat";
			this.notePanel_WatchMorningTreat.ParentAutoHeight = true;
			this.notePanel_WatchMorningTreat.Size = new System.Drawing.Size(56, 22);
			this.notePanel_WatchMorningTreat.TabIndex = 84;
			this.notePanel_WatchMorningTreat.TabStop = false;
			this.notePanel_WatchMorningTreat.Text = "处理:";
			// 
			// textEdit_WatchMorningOState
			// 
			this.textEdit_WatchMorningOState.EditValue = "";
			this.textEdit_WatchMorningOState.Location = new System.Drawing.Point(80, 160);
			this.textEdit_WatchMorningOState.Name = "textEdit_WatchMorningOState";
			this.textEdit_WatchMorningOState.Size = new System.Drawing.Size(184, 23);
			this.textEdit_WatchMorningOState.TabIndex = 83;
			// 
			// notePanel_WatchMorningOState
			// 
			this.notePanel_WatchMorningOState.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_WatchMorningOState.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_WatchMorningOState.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_WatchMorningOState.ForeColor = System.Drawing.Color.Black;
			this.notePanel_WatchMorningOState.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_WatchMorningOState.Location = new System.Drawing.Point(16, 160);
			this.notePanel_WatchMorningOState.MaxRows = 5;
			this.notePanel_WatchMorningOState.Name = "notePanel_WatchMorningOState";
			this.notePanel_WatchMorningOState.ParentAutoHeight = true;
			this.notePanel_WatchMorningOState.Size = new System.Drawing.Size(56, 22);
			this.notePanel_WatchMorningOState.TabIndex = 82;
			this.notePanel_WatchMorningOState.TabStop = false;
			this.notePanel_WatchMorningOState.Text = "代诉:";
			// 
			// notePanel_WatchMorningMouth
			// 
			this.notePanel_WatchMorningMouth.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_WatchMorningMouth.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_WatchMorningMouth.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_WatchMorningMouth.ForeColor = System.Drawing.Color.Black;
			this.notePanel_WatchMorningMouth.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_WatchMorningMouth.Location = new System.Drawing.Point(16, 120);
			this.notePanel_WatchMorningMouth.MaxRows = 5;
			this.notePanel_WatchMorningMouth.Name = "notePanel_WatchMorningMouth";
			this.notePanel_WatchMorningMouth.ParentAutoHeight = true;
			this.notePanel_WatchMorningMouth.Size = new System.Drawing.Size(56, 22);
			this.notePanel_WatchMorningMouth.TabIndex = 78;
			this.notePanel_WatchMorningMouth.TabStop = false;
			this.notePanel_WatchMorningMouth.Text = "口腔:";
			// 
			// comboBoxEdit_WatchMorningHeat
			// 
			this.comboBoxEdit_WatchMorningHeat.EditValue = "正常";
			this.comboBoxEdit_WatchMorningHeat.Location = new System.Drawing.Point(80, 80);
			this.comboBoxEdit_WatchMorningHeat.Name = "comboBoxEdit_WatchMorningHeat";
			// 
			// comboBoxEdit_WatchMorningHeat.Properties
			// 
			this.comboBoxEdit_WatchMorningHeat.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																																  new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.comboBoxEdit_WatchMorningHeat.Properties.Items.AddRange(new object[] {
																						  "正常",
																						  "偏高",
																						  "偏低"});
			this.comboBoxEdit_WatchMorningHeat.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
			this.comboBoxEdit_WatchMorningHeat.Size = new System.Drawing.Size(56, 23);
			this.comboBoxEdit_WatchMorningHeat.TabIndex = 76;
			// 
			// comboBoxEdit_WatchMorningMouth
			// 
			this.comboBoxEdit_WatchMorningMouth.EditValue = "好";
			this.comboBoxEdit_WatchMorningMouth.Location = new System.Drawing.Point(80, 120);
			this.comboBoxEdit_WatchMorningMouth.Name = "comboBoxEdit_WatchMorningMouth";
			// 
			// comboBoxEdit_WatchMorningMouth.Properties
			// 
			this.comboBoxEdit_WatchMorningMouth.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																																   new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.comboBoxEdit_WatchMorningMouth.Properties.Items.AddRange(new object[] {
																						   "好",
																						   "中",
																						   "差"});
			this.comboBoxEdit_WatchMorningMouth.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
			this.comboBoxEdit_WatchMorningMouth.Size = new System.Drawing.Size(56, 23);
			this.comboBoxEdit_WatchMorningMouth.TabIndex = 81;
			// 
			// comboBoxEdit_WatchMorningSpirit
			// 
			this.comboBoxEdit_WatchMorningSpirit.EditValue = "好";
			this.comboBoxEdit_WatchMorningSpirit.Location = new System.Drawing.Point(208, 80);
			this.comboBoxEdit_WatchMorningSpirit.Name = "comboBoxEdit_WatchMorningSpirit";
			// 
			// comboBoxEdit_WatchMorningSpirit.Properties
			// 
			this.comboBoxEdit_WatchMorningSpirit.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																																	new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.comboBoxEdit_WatchMorningSpirit.Properties.Items.AddRange(new object[] {
																							"好",
																							"中",
																							"差"});
			this.comboBoxEdit_WatchMorningSpirit.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
			this.comboBoxEdit_WatchMorningSpirit.Size = new System.Drawing.Size(56, 23);
			this.comboBoxEdit_WatchMorningSpirit.TabIndex = 77;
			// 
			// notePanel_WatchMorningHeat
			// 
			this.notePanel_WatchMorningHeat.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_WatchMorningHeat.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_WatchMorningHeat.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_WatchMorningHeat.ForeColor = System.Drawing.Color.Black;
			this.notePanel_WatchMorningHeat.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_WatchMorningHeat.Location = new System.Drawing.Point(16, 80);
			this.notePanel_WatchMorningHeat.MaxRows = 5;
			this.notePanel_WatchMorningHeat.Name = "notePanel_WatchMorningHeat";
			this.notePanel_WatchMorningHeat.ParentAutoHeight = true;
			this.notePanel_WatchMorningHeat.Size = new System.Drawing.Size(56, 22);
			this.notePanel_WatchMorningHeat.TabIndex = 74;
			this.notePanel_WatchMorningHeat.TabStop = false;
			this.notePanel_WatchMorningHeat.Text = "体温:";
			// 
			// notePanel_WatchMorningSkin
			// 
			this.notePanel_WatchMorningSkin.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_WatchMorningSkin.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_WatchMorningSkin.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_WatchMorningSkin.ForeColor = System.Drawing.Color.Black;
			this.notePanel_WatchMorningSkin.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_WatchMorningSkin.Location = new System.Drawing.Point(144, 120);
			this.notePanel_WatchMorningSkin.MaxRows = 5;
			this.notePanel_WatchMorningSkin.Name = "notePanel_WatchMorningSkin";
			this.notePanel_WatchMorningSkin.ParentAutoHeight = true;
			this.notePanel_WatchMorningSkin.Size = new System.Drawing.Size(56, 22);
			this.notePanel_WatchMorningSkin.TabIndex = 79;
			this.notePanel_WatchMorningSkin.TabStop = false;
			this.notePanel_WatchMorningSkin.Text = "皮肤:";
			// 
			// comboBoxEdit_WatchMorningSkin
			// 
			this.comboBoxEdit_WatchMorningSkin.EditValue = "好";
			this.comboBoxEdit_WatchMorningSkin.Location = new System.Drawing.Point(208, 120);
			this.comboBoxEdit_WatchMorningSkin.Name = "comboBoxEdit_WatchMorningSkin";
			// 
			// comboBoxEdit_WatchMorningSkin.Properties
			// 
			this.comboBoxEdit_WatchMorningSkin.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																																  new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.comboBoxEdit_WatchMorningSkin.Properties.Items.AddRange(new object[] {
																						  "好",
																						  "中",
																						  "差"});
			this.comboBoxEdit_WatchMorningSkin.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
			this.comboBoxEdit_WatchMorningSkin.Size = new System.Drawing.Size(56, 23);
			this.comboBoxEdit_WatchMorningSkin.TabIndex = 80;
			// 
			// notePanel_WatchMorningSpirit
			// 
			this.notePanel_WatchMorningSpirit.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_WatchMorningSpirit.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_WatchMorningSpirit.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_WatchMorningSpirit.ForeColor = System.Drawing.Color.Black;
			this.notePanel_WatchMorningSpirit.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_WatchMorningSpirit.Location = new System.Drawing.Point(144, 80);
			this.notePanel_WatchMorningSpirit.MaxRows = 5;
			this.notePanel_WatchMorningSpirit.Name = "notePanel_WatchMorningSpirit";
			this.notePanel_WatchMorningSpirit.ParentAutoHeight = true;
			this.notePanel_WatchMorningSpirit.Size = new System.Drawing.Size(56, 22);
			this.notePanel_WatchMorningSpirit.TabIndex = 75;
			this.notePanel_WatchMorningSpirit.TabStop = false;
			this.notePanel_WatchMorningSpirit.Text = "精神:";
			// 
			// textEdit_WatchMorningNumber
			// 
			this.textEdit_WatchMorningNumber.EditValue = "";
			this.textEdit_WatchMorningNumber.Location = new System.Drawing.Point(208, 40);
			this.textEdit_WatchMorningNumber.Name = "textEdit_WatchMorningNumber";
			// 
			// textEdit_WatchMorningNumber.Properties
			// 
			this.textEdit_WatchMorningNumber.Properties.Enabled = false;
			this.textEdit_WatchMorningNumber.Size = new System.Drawing.Size(56, 23);
			this.textEdit_WatchMorningNumber.TabIndex = 60;
			// 
			// textEdit_WatchMorningName
			// 
			this.textEdit_WatchMorningName.EditValue = "";
			this.textEdit_WatchMorningName.Location = new System.Drawing.Point(80, 40);
			this.textEdit_WatchMorningName.Name = "textEdit_WatchMorningName";
			// 
			// textEdit_WatchMorningName.Properties
			// 
			this.textEdit_WatchMorningName.Properties.Enabled = false;
			this.textEdit_WatchMorningName.Size = new System.Drawing.Size(56, 23);
			this.textEdit_WatchMorningName.TabIndex = 59;
			// 
			// notePanel_WatchMorningNumber
			// 
			this.notePanel_WatchMorningNumber.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_WatchMorningNumber.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_WatchMorningNumber.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_WatchMorningNumber.ForeColor = System.Drawing.Color.Black;
			this.notePanel_WatchMorningNumber.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_WatchMorningNumber.Location = new System.Drawing.Point(144, 40);
			this.notePanel_WatchMorningNumber.MaxRows = 5;
			this.notePanel_WatchMorningNumber.Name = "notePanel_WatchMorningNumber";
			this.notePanel_WatchMorningNumber.ParentAutoHeight = true;
			this.notePanel_WatchMorningNumber.Size = new System.Drawing.Size(56, 22);
			this.notePanel_WatchMorningNumber.TabIndex = 58;
			this.notePanel_WatchMorningNumber.TabStop = false;
			this.notePanel_WatchMorningNumber.Text = "学号:";
			// 
			// notePanel_WatchMorningName
			// 
			this.notePanel_WatchMorningName.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_WatchMorningName.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_WatchMorningName.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_WatchMorningName.ForeColor = System.Drawing.Color.Black;
			this.notePanel_WatchMorningName.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_WatchMorningName.Location = new System.Drawing.Point(16, 40);
			this.notePanel_WatchMorningName.MaxRows = 5;
			this.notePanel_WatchMorningName.Name = "notePanel_WatchMorningName";
			this.notePanel_WatchMorningName.ParentAutoHeight = true;
			this.notePanel_WatchMorningName.Size = new System.Drawing.Size(56, 22);
			this.notePanel_WatchMorningName.TabIndex = 57;
			this.notePanel_WatchMorningName.TabStop = false;
			this.notePanel_WatchMorningName.Text = "姓名:";
			// 
			// groupControl_WatchStuList
			// 
			this.groupControl_WatchStuList.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.groupControl_WatchStuList.AppearanceCaption.Options.UseFont = true;
			this.groupControl_WatchStuList.Controls.Add(this.gridControl_WatchStuList);
			this.groupControl_WatchStuList.Controls.Add(this.notePanel_WatchStuList);
			this.groupControl_WatchStuList.Dock = System.Windows.Forms.DockStyle.Fill;
			this.groupControl_WatchStuList.Location = new System.Drawing.Point(0, 280);
			this.groupControl_WatchStuList.Name = "groupControl_WatchStuList";
			this.groupControl_WatchStuList.Size = new System.Drawing.Size(288, 229);
			this.groupControl_WatchStuList.TabIndex = 1;
			this.groupControl_WatchStuList.Text = "今天入园幼儿记录";
			// 
			// gridControl_WatchStuList
			// 
			this.gridControl_WatchStuList.Dock = System.Windows.Forms.DockStyle.Fill;
			// 
			// gridControl_WatchStuList.EmbeddedNavigator
			// 
			this.gridControl_WatchStuList.EmbeddedNavigator.Name = "";
			this.gridControl_WatchStuList.Location = new System.Drawing.Point(3, 41);
			this.gridControl_WatchStuList.MainView = this.gridView7;
			this.gridControl_WatchStuList.Name = "gridControl_WatchStuList";
			this.gridControl_WatchStuList.Size = new System.Drawing.Size(282, 185);
			this.gridControl_WatchStuList.TabIndex = 25;
			this.gridControl_WatchStuList.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
																													this.gridView7});
			this.gridControl_WatchStuList.DoubleClick += new System.EventHandler(this.gridControl_WatchStuList_DoubleClick);
			// 
			// gridView7
			// 
			this.gridView7.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
																							 this.gridColumn24,
																							 this.gridColumn25,
																							 this.gridColumn26,
																							 this.gridColumn27,
																							 this.gridColumn28});
			this.gridView7.GridControl = this.gridControl_WatchStuList;
			this.gridView7.Name = "gridView7";
			this.gridView7.OptionsCustomization.AllowFilter = false;
			this.gridView7.OptionsView.ShowFilterPanel = false;
			this.gridView7.OptionsView.ShowGroupPanel = false;
			// 
			// gridColumn24
			// 
			this.gridColumn24.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn24.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn24.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn24.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn24.Caption = "学号";
			this.gridColumn24.FieldName = "info_stuNumber";
			this.gridColumn24.Name = "gridColumn24";
			this.gridColumn24.OptionsColumn.AllowEdit = false;
			this.gridColumn24.OptionsColumn.AllowFocus = false;
			this.gridColumn24.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn24.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn24.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn24.OptionsColumn.AllowMove = false;
			this.gridColumn24.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn24.OptionsColumn.ReadOnly = true;
			this.gridColumn24.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn24.Visible = true;
			this.gridColumn24.VisibleIndex = 0;
			// 
			// gridColumn25
			// 
			this.gridColumn25.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn25.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn25.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn25.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn25.Caption = "姓名";
			this.gridColumn25.FieldName = "info_stuName";
			this.gridColumn25.Name = "gridColumn25";
			this.gridColumn25.OptionsColumn.AllowEdit = false;
			this.gridColumn25.OptionsColumn.AllowFocus = false;
			this.gridColumn25.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn25.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn25.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn25.OptionsColumn.AllowMove = false;
			this.gridColumn25.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn25.OptionsColumn.ReadOnly = true;
			this.gridColumn25.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn25.Visible = true;
			this.gridColumn25.VisibleIndex = 1;
			// 
			// gridColumn26
			// 
			this.gridColumn26.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn26.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn26.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn26.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn26.Caption = "班级";
			this.gridColumn26.FieldName = "info_className";
			this.gridColumn26.Name = "gridColumn26";
			this.gridColumn26.OptionsColumn.AllowEdit = false;
			this.gridColumn26.OptionsColumn.AllowFocus = false;
			this.gridColumn26.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn26.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn26.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn26.OptionsColumn.AllowMove = false;
			this.gridColumn26.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn26.OptionsColumn.ReadOnly = true;
			this.gridColumn26.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn26.Visible = true;
			this.gridColumn26.VisibleIndex = 2;
			// 
			// gridColumn27
			// 
			this.gridColumn27.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn27.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn27.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn27.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn27.Caption = "晨检";
			this.gridColumn27.FieldName = "state_flowStateName";
			this.gridColumn27.Name = "gridColumn27";
			this.gridColumn27.OptionsColumn.AllowEdit = false;
			this.gridColumn27.OptionsColumn.AllowFocus = false;
			this.gridColumn27.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn27.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn27.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn27.OptionsColumn.AllowMove = false;
			this.gridColumn27.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn27.OptionsColumn.ReadOnly = true;
			this.gridColumn27.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn27.Visible = true;
			this.gridColumn27.VisibleIndex = 3;
			// 
			// gridColumn28
			// 
			this.gridColumn28.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn28.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn28.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn28.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn28.Caption = "时间";
			this.gridColumn28.FieldName = "flow_stuFlowEnterDate";
			this.gridColumn28.Name = "gridColumn28";
			this.gridColumn28.OptionsColumn.AllowEdit = false;
			this.gridColumn28.OptionsColumn.AllowFocus = false;
			this.gridColumn28.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn28.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn28.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn28.OptionsColumn.AllowMove = false;
			this.gridColumn28.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn28.OptionsColumn.ReadOnly = true;
			this.gridColumn28.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn28.Visible = true;
			this.gridColumn28.VisibleIndex = 4;
			// 
			// notePanel_WatchStuList
			// 
			this.notePanel_WatchStuList.BackColor = System.Drawing.Color.LightGoldenrodYellow;
			this.notePanel_WatchStuList.Dock = System.Windows.Forms.DockStyle.Top;
			this.notePanel_WatchStuList.ForeColor = System.Drawing.Color.OrangeRed;
			this.notePanel_WatchStuList.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_WatchStuList.Location = new System.Drawing.Point(3, 18);
			this.notePanel_WatchStuList.MaxRows = 5;
			this.notePanel_WatchStuList.Name = "notePanel_WatchStuList";
			this.notePanel_WatchStuList.ParentAutoHeight = true;
			this.notePanel_WatchStuList.Size = new System.Drawing.Size(282, 23);
			this.notePanel_WatchStuList.TabIndex = 24;
			this.notePanel_WatchStuList.TabStop = false;
			this.notePanel_WatchStuList.Text = "双击进入晨检观察登记";
			// 
			// groupControl_WatchSer
			// 
			this.groupControl_WatchSer.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.groupControl_WatchSer.AppearanceCaption.Options.UseFont = true;
			this.groupControl_WatchSer.Controls.Add(this.textEdit_WatchName);
			this.groupControl_WatchSer.Controls.Add(this.dateEdit_WatchEndDate);
			this.groupControl_WatchSer.Controls.Add(this.dateEdit_WatchBegDate);
			this.groupControl_WatchSer.Controls.Add(this.notePanel_WatchEndDate);
			this.groupControl_WatchSer.Controls.Add(this.notePanel_WatchBegDate);
			this.groupControl_WatchSer.Controls.Add(this.comboBoxEdit_WatchState);
			this.groupControl_WatchSer.Controls.Add(this.notePanel_WatchState);
			this.groupControl_WatchSer.Controls.Add(this.textEdit_WatchNumber);
			this.groupControl_WatchSer.Controls.Add(this.comboBoxEdit_WatchClass);
			this.groupControl_WatchSer.Controls.Add(this.notePanel_WatchClass);
			this.groupControl_WatchSer.Controls.Add(this.comboBoxEdit_WatchGrade);
			this.groupControl_WatchSer.Controls.Add(this.notePanel_WatchGrade);
			this.groupControl_WatchSer.Controls.Add(this.notePanel_WatchNumber);
			this.groupControl_WatchSer.Controls.Add(this.notePanel_WatchName);
			this.groupControl_WatchSer.Dock = System.Windows.Forms.DockStyle.Top;
			this.groupControl_WatchSer.Location = new System.Drawing.Point(0, 0);
			this.groupControl_WatchSer.Name = "groupControl_WatchSer";
			this.groupControl_WatchSer.Size = new System.Drawing.Size(288, 280);
			this.groupControl_WatchSer.TabIndex = 0;
			this.groupControl_WatchSer.Text = "信息查询";
			// 
			// textEdit_WatchName
			// 
			this.textEdit_WatchName.EditValue = "";
			this.textEdit_WatchName.Location = new System.Drawing.Point(144, 96);
			this.textEdit_WatchName.Name = "textEdit_WatchName";
			this.textEdit_WatchName.Size = new System.Drawing.Size(88, 23);
			this.textEdit_WatchName.TabIndex = 63;
			// 
			// dateEdit_WatchEndDate
			// 
			this.dateEdit_WatchEndDate.EditValue = new System.DateTime(2005, 3, 17, 0, 0, 0, 0);
			this.dateEdit_WatchEndDate.Location = new System.Drawing.Point(144, 238);
			this.dateEdit_WatchEndDate.Name = "dateEdit_WatchEndDate";
			// 
			// dateEdit_WatchEndDate.Properties
			// 
			this.dateEdit_WatchEndDate.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																														  new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.dateEdit_WatchEndDate.Properties.Mask.EditMask = "d";
			this.dateEdit_WatchEndDate.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.DateTime;
			this.dateEdit_WatchEndDate.Size = new System.Drawing.Size(88, 23);
			this.dateEdit_WatchEndDate.TabIndex = 62;
			// 
			// dateEdit_WatchBegDate
			// 
			this.dateEdit_WatchBegDate.EditValue = new System.DateTime(2005, 3, 17, 0, 0, 0, 0);
			this.dateEdit_WatchBegDate.Location = new System.Drawing.Point(144, 196);
			this.dateEdit_WatchBegDate.Name = "dateEdit_WatchBegDate";
			// 
			// dateEdit_WatchBegDate.Properties
			// 
			this.dateEdit_WatchBegDate.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																														  new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.dateEdit_WatchBegDate.Properties.Mask.EditMask = "d";
			this.dateEdit_WatchBegDate.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.DateTime;
			this.dateEdit_WatchBegDate.Size = new System.Drawing.Size(88, 23);
			this.dateEdit_WatchBegDate.TabIndex = 61;
			// 
			// notePanel_WatchEndDate
			// 
			this.notePanel_WatchEndDate.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_WatchEndDate.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_WatchEndDate.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_WatchEndDate.ForeColor = System.Drawing.Color.Black;
			this.notePanel_WatchEndDate.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_WatchEndDate.Location = new System.Drawing.Point(48, 232);
			this.notePanel_WatchEndDate.MaxRows = 5;
			this.notePanel_WatchEndDate.Name = "notePanel_WatchEndDate";
			this.notePanel_WatchEndDate.ParentAutoHeight = true;
			this.notePanel_WatchEndDate.Size = new System.Drawing.Size(80, 35);
			this.notePanel_WatchEndDate.TabIndex = 60;
			this.notePanel_WatchEndDate.TabStop = false;
			this.notePanel_WatchEndDate.Text = "全日观察  截止时间:";
			// 
			// notePanel_WatchBegDate
			// 
			this.notePanel_WatchBegDate.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_WatchBegDate.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_WatchBegDate.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_WatchBegDate.ForeColor = System.Drawing.Color.Black;
			this.notePanel_WatchBegDate.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_WatchBegDate.Location = new System.Drawing.Point(48, 190);
			this.notePanel_WatchBegDate.MaxRows = 5;
			this.notePanel_WatchBegDate.Name = "notePanel_WatchBegDate";
			this.notePanel_WatchBegDate.ParentAutoHeight = true;
			this.notePanel_WatchBegDate.Size = new System.Drawing.Size(80, 35);
			this.notePanel_WatchBegDate.TabIndex = 59;
			this.notePanel_WatchBegDate.TabStop = false;
			this.notePanel_WatchBegDate.Text = "全日观察  起始时间:";
			// 
			// comboBoxEdit_WatchState
			// 
			this.comboBoxEdit_WatchState.EditValue = "全部";
			this.comboBoxEdit_WatchState.Location = new System.Drawing.Point(144, 160);
			this.comboBoxEdit_WatchState.Name = "comboBoxEdit_WatchState";
			// 
			// comboBoxEdit_WatchState.Properties
			// 
			this.comboBoxEdit_WatchState.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																															new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.comboBoxEdit_WatchState.Properties.Items.AddRange(new object[] {
																					"全部",
																					"健康",
																					"观察",
																					"服药"});
			this.comboBoxEdit_WatchState.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
			this.comboBoxEdit_WatchState.Size = new System.Drawing.Size(88, 23);
			this.comboBoxEdit_WatchState.TabIndex = 58;
			this.comboBoxEdit_WatchState.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit_WatchState_SelectedIndexChanged);
			// 
			// notePanel_WatchState
			// 
			this.notePanel_WatchState.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_WatchState.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_WatchState.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_WatchState.ForeColor = System.Drawing.Color.Black;
			this.notePanel_WatchState.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_WatchState.Location = new System.Drawing.Point(48, 160);
			this.notePanel_WatchState.MaxRows = 5;
			this.notePanel_WatchState.Name = "notePanel_WatchState";
			this.notePanel_WatchState.ParentAutoHeight = true;
			this.notePanel_WatchState.Size = new System.Drawing.Size(80, 22);
			this.notePanel_WatchState.TabIndex = 57;
			this.notePanel_WatchState.TabStop = false;
			this.notePanel_WatchState.Text = "  状  态:";
			// 
			// textEdit_WatchNumber
			// 
			this.textEdit_WatchNumber.EditValue = "";
			this.textEdit_WatchNumber.Location = new System.Drawing.Point(144, 128);
			this.textEdit_WatchNumber.Name = "textEdit_WatchNumber";
			this.textEdit_WatchNumber.Size = new System.Drawing.Size(88, 23);
			this.textEdit_WatchNumber.TabIndex = 56;
			this.textEdit_WatchNumber.EditValueChanged += new System.EventHandler(this.textEdit_WatchNumber_EditValueChanged);
			// 
			// comboBoxEdit_WatchClass
			// 
			this.comboBoxEdit_WatchClass.EditValue = "全部";
			this.comboBoxEdit_WatchClass.Location = new System.Drawing.Point(144, 64);
			this.comboBoxEdit_WatchClass.Name = "comboBoxEdit_WatchClass";
			// 
			// comboBoxEdit_WatchClass.Properties
			// 
			this.comboBoxEdit_WatchClass.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																															new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.comboBoxEdit_WatchClass.Properties.Items.AddRange(new object[] {
																					"全部"});
			this.comboBoxEdit_WatchClass.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
			this.comboBoxEdit_WatchClass.Size = new System.Drawing.Size(88, 23);
			this.comboBoxEdit_WatchClass.TabIndex = 54;
			this.comboBoxEdit_WatchClass.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit_WatchClass_SelectedIndexChanged);
			// 
			// notePanel_WatchClass
			// 
			this.notePanel_WatchClass.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_WatchClass.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_WatchClass.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_WatchClass.ForeColor = System.Drawing.Color.Black;
			this.notePanel_WatchClass.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_WatchClass.Location = new System.Drawing.Point(48, 64);
			this.notePanel_WatchClass.MaxRows = 5;
			this.notePanel_WatchClass.Name = "notePanel_WatchClass";
			this.notePanel_WatchClass.ParentAutoHeight = true;
			this.notePanel_WatchClass.Size = new System.Drawing.Size(80, 22);
			this.notePanel_WatchClass.TabIndex = 53;
			this.notePanel_WatchClass.TabStop = false;
			this.notePanel_WatchClass.Text = "  班  级:";
			// 
			// comboBoxEdit_WatchGrade
			// 
			this.comboBoxEdit_WatchGrade.EditValue = "全部";
			this.comboBoxEdit_WatchGrade.Location = new System.Drawing.Point(144, 32);
			this.comboBoxEdit_WatchGrade.Name = "comboBoxEdit_WatchGrade";
			// 
			// comboBoxEdit_WatchGrade.Properties
			// 
			this.comboBoxEdit_WatchGrade.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																															new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.comboBoxEdit_WatchGrade.Properties.Items.AddRange(new object[] {
																					"全部"});
			this.comboBoxEdit_WatchGrade.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
			this.comboBoxEdit_WatchGrade.Size = new System.Drawing.Size(88, 23);
			this.comboBoxEdit_WatchGrade.TabIndex = 52;
			this.comboBoxEdit_WatchGrade.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit_WatchGrade_SelectedIndexChanged);
			// 
			// notePanel_WatchGrade
			// 
			this.notePanel_WatchGrade.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_WatchGrade.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_WatchGrade.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_WatchGrade.ForeColor = System.Drawing.Color.Black;
			this.notePanel_WatchGrade.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_WatchGrade.Location = new System.Drawing.Point(48, 32);
			this.notePanel_WatchGrade.MaxRows = 5;
			this.notePanel_WatchGrade.Name = "notePanel_WatchGrade";
			this.notePanel_WatchGrade.ParentAutoHeight = true;
			this.notePanel_WatchGrade.Size = new System.Drawing.Size(80, 22);
			this.notePanel_WatchGrade.TabIndex = 51;
			this.notePanel_WatchGrade.TabStop = false;
			this.notePanel_WatchGrade.Text = "  年  级:";
			// 
			// notePanel_WatchNumber
			// 
			this.notePanel_WatchNumber.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_WatchNumber.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_WatchNumber.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_WatchNumber.ForeColor = System.Drawing.Color.Black;
			this.notePanel_WatchNumber.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_WatchNumber.Location = new System.Drawing.Point(48, 128);
			this.notePanel_WatchNumber.MaxRows = 5;
			this.notePanel_WatchNumber.Name = "notePanel_WatchNumber";
			this.notePanel_WatchNumber.ParentAutoHeight = true;
			this.notePanel_WatchNumber.Size = new System.Drawing.Size(80, 22);
			this.notePanel_WatchNumber.TabIndex = 50;
			this.notePanel_WatchNumber.TabStop = false;
			this.notePanel_WatchNumber.Text = "  学  号:";
			// 
			// notePanel_WatchName
			// 
			this.notePanel_WatchName.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_WatchName.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_WatchName.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_WatchName.ForeColor = System.Drawing.Color.Black;
			this.notePanel_WatchName.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_WatchName.Location = new System.Drawing.Point(48, 96);
			this.notePanel_WatchName.MaxRows = 5;
			this.notePanel_WatchName.Name = "notePanel_WatchName";
			this.notePanel_WatchName.ParentAutoHeight = true;
			this.notePanel_WatchName.Size = new System.Drawing.Size(80, 22);
			this.notePanel_WatchName.TabIndex = 49;
			this.notePanel_WatchName.TabStop = false;
			this.notePanel_WatchName.Text = "  姓  名:";
			// 
			// groupControl_WatchWholeDay
			// 
			this.groupControl_WatchWholeDay.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.groupControl_WatchWholeDay.AppearanceCaption.Options.UseFont = true;
			this.groupControl_WatchWholeDay.Controls.Add(this.groupControl_WatchWholDayHandle);
			this.groupControl_WatchWholeDay.Controls.Add(this.groupControl_WatchWholeDayReg);
			this.groupControl_WatchWholeDay.Dock = System.Windows.Forms.DockStyle.Top;
			this.groupControl_WatchWholeDay.Location = new System.Drawing.Point(0, 509);
			this.groupControl_WatchWholeDay.Name = "groupControl_WatchWholeDay";
			this.groupControl_WatchWholeDay.Size = new System.Drawing.Size(464, 336);
			this.groupControl_WatchWholeDay.TabIndex = 2;
			this.groupControl_WatchWholeDay.Text = "全日观察登记";
			this.groupControl_WatchWholeDay.Visible = false;
			// 
			// groupControl_WatchWholDayHandle
			// 
			this.groupControl_WatchWholDayHandle.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.groupControl_WatchWholDayHandle.AppearanceCaption.Options.UseFont = true;
			this.groupControl_WatchWholDayHandle.Controls.Add(this.checkEdit_WatchWholeDayHeat);
			this.groupControl_WatchWholDayHandle.Controls.Add(this.checkEdit_WatchWholeDayCtrSeafood);
			this.groupControl_WatchWholDayHandle.Controls.Add(this.checkEdit_WatchWholeDayLifeAttention);
			this.groupControl_WatchWholDayHandle.Controls.Add(this.checkEdit_WatchWholeDayCtrAct);
			this.groupControl_WatchWholDayHandle.Dock = System.Windows.Forms.DockStyle.Fill;
			this.groupControl_WatchWholDayHandle.Location = new System.Drawing.Point(3, 192);
			this.groupControl_WatchWholDayHandle.Name = "groupControl_WatchWholDayHandle";
			this.groupControl_WatchWholDayHandle.Size = new System.Drawing.Size(458, 141);
			this.groupControl_WatchWholDayHandle.TabIndex = 1;
			this.groupControl_WatchWholDayHandle.Text = "处理情况";
			// 
			// checkEdit_WatchWholeDayHeat
			// 
			this.checkEdit_WatchWholeDayHeat.Location = new System.Drawing.Point(272, 80);
			this.checkEdit_WatchWholeDayHeat.Name = "checkEdit_WatchWholeDayHeat";
			// 
			// checkEdit_WatchWholeDayHeat.Properties
			// 
			this.checkEdit_WatchWholeDayHeat.Properties.Caption = "按时测体温";
			this.checkEdit_WatchWholeDayHeat.Size = new System.Drawing.Size(104, 19);
			this.checkEdit_WatchWholeDayHeat.TabIndex = 3;
			// 
			// checkEdit_WatchWholeDayCtrSeafood
			// 
			this.checkEdit_WatchWholeDayCtrSeafood.Location = new System.Drawing.Point(128, 80);
			this.checkEdit_WatchWholeDayCtrSeafood.Name = "checkEdit_WatchWholeDayCtrSeafood";
			// 
			// checkEdit_WatchWholeDayCtrSeafood.Properties
			// 
			this.checkEdit_WatchWholeDayCtrSeafood.Properties.Caption = "忌海鲜";
			this.checkEdit_WatchWholeDayCtrSeafood.Size = new System.Drawing.Size(104, 19);
			this.checkEdit_WatchWholeDayCtrSeafood.TabIndex = 2;
			// 
			// checkEdit_WatchWholeDayLifeAttention
			// 
			this.checkEdit_WatchWholeDayLifeAttention.Location = new System.Drawing.Point(272, 40);
			this.checkEdit_WatchWholeDayLifeAttention.Name = "checkEdit_WatchWholeDayLifeAttention";
			// 
			// checkEdit_WatchWholeDayLifeAttention.Properties
			// 
			this.checkEdit_WatchWholeDayLifeAttention.Properties.Caption = "注意生活护理";
			this.checkEdit_WatchWholeDayLifeAttention.Size = new System.Drawing.Size(104, 19);
			this.checkEdit_WatchWholeDayLifeAttention.TabIndex = 1;
			// 
			// checkEdit_WatchWholeDayCtrAct
			// 
			this.checkEdit_WatchWholeDayCtrAct.Location = new System.Drawing.Point(128, 40);
			this.checkEdit_WatchWholeDayCtrAct.Name = "checkEdit_WatchWholeDayCtrAct";
			// 
			// checkEdit_WatchWholeDayCtrAct.Properties
			// 
			this.checkEdit_WatchWholeDayCtrAct.Properties.Caption = "控制运动量";
			this.checkEdit_WatchWholeDayCtrAct.Size = new System.Drawing.Size(104, 19);
			this.checkEdit_WatchWholeDayCtrAct.TabIndex = 0;
			// 
			// groupControl_WatchWholeDayReg
			// 
			this.groupControl_WatchWholeDayReg.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.groupControl_WatchWholeDayReg.AppearanceCaption.Options.UseFont = true;
			this.groupControl_WatchWholeDayReg.Controls.Add(this.textEdit_WatchWholeDayElse);
			this.groupControl_WatchWholeDayReg.Controls.Add(this.notePanel_WatchWholeDayElse);
			this.groupControl_WatchWholeDayReg.Controls.Add(this.comboBoxEdit_WatchWholeDayCough);
			this.groupControl_WatchWholeDayReg.Controls.Add(this.notePanel_WatchWholeDayCough);
			this.groupControl_WatchWholeDayReg.Controls.Add(this.comboBoxEdit_WatchWholeDaySleep);
			this.groupControl_WatchWholeDayReg.Controls.Add(this.notePanel_WatchWholeDaySleep);
			this.groupControl_WatchWholeDayReg.Controls.Add(this.comboBoxEdit_WatchWholeDayStool);
			this.groupControl_WatchWholeDayReg.Controls.Add(this.notePanel_WatchWholeDayStool);
			this.groupControl_WatchWholeDayReg.Controls.Add(this.comboBoxEdit_WatchWholeDayAppetite);
			this.groupControl_WatchWholeDayReg.Controls.Add(this.notePanel_WatchWholeDayAppetite);
			this.groupControl_WatchWholeDayReg.Controls.Add(this.comboBoxEdit_WatchWholeDaySpirit);
			this.groupControl_WatchWholeDayReg.Controls.Add(this.notePanel_WatchWholeDaySpirit);
			this.groupControl_WatchWholeDayReg.Controls.Add(this.comboBoxEdit_WatchWholeDayMovement);
			this.groupControl_WatchWholeDayReg.Controls.Add(this.notePanel_WatchWholeDayMovement);
			this.groupControl_WatchWholeDayReg.Dock = System.Windows.Forms.DockStyle.Top;
			this.groupControl_WatchWholeDayReg.Location = new System.Drawing.Point(3, 18);
			this.groupControl_WatchWholeDayReg.Name = "groupControl_WatchWholeDayReg";
			this.groupControl_WatchWholeDayReg.Size = new System.Drawing.Size(458, 174);
			this.groupControl_WatchWholeDayReg.TabIndex = 0;
			this.groupControl_WatchWholeDayReg.Text = "体温,精神,食欲等情况";
			// 
			// textEdit_WatchWholeDayElse
			// 
			this.textEdit_WatchWholeDayElse.EditValue = "";
			this.textEdit_WatchWholeDayElse.Location = new System.Drawing.Point(120, 120);
			this.textEdit_WatchWholeDayElse.Name = "textEdit_WatchWholeDayElse";
			this.textEdit_WatchWholeDayElse.Size = new System.Drawing.Size(336, 23);
			this.textEdit_WatchWholeDayElse.TabIndex = 89;
			// 
			// notePanel_WatchWholeDayElse
			// 
			this.notePanel_WatchWholeDayElse.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_WatchWholeDayElse.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_WatchWholeDayElse.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_WatchWholeDayElse.ForeColor = System.Drawing.Color.Black;
			this.notePanel_WatchWholeDayElse.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_WatchWholeDayElse.Location = new System.Drawing.Point(24, 120);
			this.notePanel_WatchWholeDayElse.MaxRows = 5;
			this.notePanel_WatchWholeDayElse.Name = "notePanel_WatchWholeDayElse";
			this.notePanel_WatchWholeDayElse.ParentAutoHeight = true;
			this.notePanel_WatchWholeDayElse.Size = new System.Drawing.Size(88, 22);
			this.notePanel_WatchWholeDayElse.TabIndex = 88;
			this.notePanel_WatchWholeDayElse.TabStop = false;
			this.notePanel_WatchWholeDayElse.Text = " 其他情况:";
			// 
			// comboBoxEdit_WatchWholeDayCough
			// 
			this.comboBoxEdit_WatchWholeDayCough.EditValue = "有";
			this.comboBoxEdit_WatchWholeDayCough.Location = new System.Drawing.Point(408, 80);
			this.comboBoxEdit_WatchWholeDayCough.Name = "comboBoxEdit_WatchWholeDayCough";
			// 
			// comboBoxEdit_WatchWholeDayCough.Properties
			// 
			this.comboBoxEdit_WatchWholeDayCough.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																																	new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.comboBoxEdit_WatchWholeDayCough.Properties.Items.AddRange(new object[] {
																							"有",
																							"无"});
			this.comboBoxEdit_WatchWholeDayCough.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
			this.comboBoxEdit_WatchWholeDayCough.Size = new System.Drawing.Size(48, 23);
			this.comboBoxEdit_WatchWholeDayCough.TabIndex = 87;
			// 
			// notePanel_WatchWholeDayCough
			// 
			this.notePanel_WatchWholeDayCough.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_WatchWholeDayCough.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_WatchWholeDayCough.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_WatchWholeDayCough.ForeColor = System.Drawing.Color.Black;
			this.notePanel_WatchWholeDayCough.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_WatchWholeDayCough.Location = new System.Drawing.Point(328, 80);
			this.notePanel_WatchWholeDayCough.MaxRows = 5;
			this.notePanel_WatchWholeDayCough.Name = "notePanel_WatchWholeDayCough";
			this.notePanel_WatchWholeDayCough.ParentAutoHeight = true;
			this.notePanel_WatchWholeDayCough.Size = new System.Drawing.Size(72, 22);
			this.notePanel_WatchWholeDayCough.TabIndex = 86;
			this.notePanel_WatchWholeDayCough.TabStop = false;
			this.notePanel_WatchWholeDayCough.Text = " 咳  嗽:";
			// 
			// comboBoxEdit_WatchWholeDaySleep
			// 
			this.comboBoxEdit_WatchWholeDaySleep.EditValue = "好";
			this.comboBoxEdit_WatchWholeDaySleep.Location = new System.Drawing.Point(272, 80);
			this.comboBoxEdit_WatchWholeDaySleep.Name = "comboBoxEdit_WatchWholeDaySleep";
			// 
			// comboBoxEdit_WatchWholeDaySleep.Properties
			// 
			this.comboBoxEdit_WatchWholeDaySleep.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																																	new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.comboBoxEdit_WatchWholeDaySleep.Properties.Items.AddRange(new object[] {
																							"好",
																							"中",
																							"差"});
			this.comboBoxEdit_WatchWholeDaySleep.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
			this.comboBoxEdit_WatchWholeDaySleep.Size = new System.Drawing.Size(48, 23);
			this.comboBoxEdit_WatchWholeDaySleep.TabIndex = 85;
			// 
			// notePanel_WatchWholeDaySleep
			// 
			this.notePanel_WatchWholeDaySleep.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_WatchWholeDaySleep.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_WatchWholeDaySleep.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_WatchWholeDaySleep.ForeColor = System.Drawing.Color.Black;
			this.notePanel_WatchWholeDaySleep.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_WatchWholeDaySleep.Location = new System.Drawing.Point(192, 80);
			this.notePanel_WatchWholeDaySleep.MaxRows = 5;
			this.notePanel_WatchWholeDaySleep.Name = "notePanel_WatchWholeDaySleep";
			this.notePanel_WatchWholeDaySleep.ParentAutoHeight = true;
			this.notePanel_WatchWholeDaySleep.Size = new System.Drawing.Size(72, 22);
			this.notePanel_WatchWholeDaySleep.TabIndex = 84;
			this.notePanel_WatchWholeDaySleep.TabStop = false;
			this.notePanel_WatchWholeDaySleep.Text = " 睡  眠:";
			// 
			// comboBoxEdit_WatchWholeDayStool
			// 
			this.comboBoxEdit_WatchWholeDayStool.EditValue = "好";
			this.comboBoxEdit_WatchWholeDayStool.Location = new System.Drawing.Point(120, 80);
			this.comboBoxEdit_WatchWholeDayStool.Name = "comboBoxEdit_WatchWholeDayStool";
			// 
			// comboBoxEdit_WatchWholeDayStool.Properties
			// 
			this.comboBoxEdit_WatchWholeDayStool.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																																	new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.comboBoxEdit_WatchWholeDayStool.Properties.Items.AddRange(new object[] {
																							"好",
																							"中",
																							"差"});
			this.comboBoxEdit_WatchWholeDayStool.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
			this.comboBoxEdit_WatchWholeDayStool.Size = new System.Drawing.Size(64, 23);
			this.comboBoxEdit_WatchWholeDayStool.TabIndex = 83;
			// 
			// notePanel_WatchWholeDayStool
			// 
			this.notePanel_WatchWholeDayStool.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_WatchWholeDayStool.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_WatchWholeDayStool.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_WatchWholeDayStool.ForeColor = System.Drawing.Color.Black;
			this.notePanel_WatchWholeDayStool.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_WatchWholeDayStool.Location = new System.Drawing.Point(24, 80);
			this.notePanel_WatchWholeDayStool.MaxRows = 5;
			this.notePanel_WatchWholeDayStool.Name = "notePanel_WatchWholeDayStool";
			this.notePanel_WatchWholeDayStool.ParentAutoHeight = true;
			this.notePanel_WatchWholeDayStool.Size = new System.Drawing.Size(88, 22);
			this.notePanel_WatchWholeDayStool.TabIndex = 82;
			this.notePanel_WatchWholeDayStool.TabStop = false;
			this.notePanel_WatchWholeDayStool.Text = "   大小便:";
			// 
			// comboBoxEdit_WatchWholeDayAppetite
			// 
			this.comboBoxEdit_WatchWholeDayAppetite.EditValue = "好";
			this.comboBoxEdit_WatchWholeDayAppetite.Location = new System.Drawing.Point(408, 40);
			this.comboBoxEdit_WatchWholeDayAppetite.Name = "comboBoxEdit_WatchWholeDayAppetite";
			// 
			// comboBoxEdit_WatchWholeDayAppetite.Properties
			// 
			this.comboBoxEdit_WatchWholeDayAppetite.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																																	   new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.comboBoxEdit_WatchWholeDayAppetite.Properties.Items.AddRange(new object[] {
																							   "好",
																							   "中",
																							   "差"});
			this.comboBoxEdit_WatchWholeDayAppetite.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
			this.comboBoxEdit_WatchWholeDayAppetite.Size = new System.Drawing.Size(48, 23);
			this.comboBoxEdit_WatchWholeDayAppetite.TabIndex = 81;
			// 
			// notePanel_WatchWholeDayAppetite
			// 
			this.notePanel_WatchWholeDayAppetite.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_WatchWholeDayAppetite.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_WatchWholeDayAppetite.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_WatchWholeDayAppetite.ForeColor = System.Drawing.Color.Black;
			this.notePanel_WatchWholeDayAppetite.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_WatchWholeDayAppetite.Location = new System.Drawing.Point(328, 40);
			this.notePanel_WatchWholeDayAppetite.MaxRows = 5;
			this.notePanel_WatchWholeDayAppetite.Name = "notePanel_WatchWholeDayAppetite";
			this.notePanel_WatchWholeDayAppetite.ParentAutoHeight = true;
			this.notePanel_WatchWholeDayAppetite.Size = new System.Drawing.Size(72, 22);
			this.notePanel_WatchWholeDayAppetite.TabIndex = 80;
			this.notePanel_WatchWholeDayAppetite.TabStop = false;
			this.notePanel_WatchWholeDayAppetite.Text = " 食  欲:";
			// 
			// comboBoxEdit_WatchWholeDaySpirit
			// 
			this.comboBoxEdit_WatchWholeDaySpirit.EditValue = "好";
			this.comboBoxEdit_WatchWholeDaySpirit.Location = new System.Drawing.Point(272, 40);
			this.comboBoxEdit_WatchWholeDaySpirit.Name = "comboBoxEdit_WatchWholeDaySpirit";
			// 
			// comboBoxEdit_WatchWholeDaySpirit.Properties
			// 
			this.comboBoxEdit_WatchWholeDaySpirit.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																																	 new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.comboBoxEdit_WatchWholeDaySpirit.Properties.Items.AddRange(new object[] {
																							 "好",
																							 "中",
																							 "差"});
			this.comboBoxEdit_WatchWholeDaySpirit.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
			this.comboBoxEdit_WatchWholeDaySpirit.Size = new System.Drawing.Size(48, 23);
			this.comboBoxEdit_WatchWholeDaySpirit.TabIndex = 79;
			// 
			// notePanel_WatchWholeDaySpirit
			// 
			this.notePanel_WatchWholeDaySpirit.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_WatchWholeDaySpirit.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_WatchWholeDaySpirit.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_WatchWholeDaySpirit.ForeColor = System.Drawing.Color.Black;
			this.notePanel_WatchWholeDaySpirit.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_WatchWholeDaySpirit.Location = new System.Drawing.Point(192, 40);
			this.notePanel_WatchWholeDaySpirit.MaxRows = 5;
			this.notePanel_WatchWholeDaySpirit.Name = "notePanel_WatchWholeDaySpirit";
			this.notePanel_WatchWholeDaySpirit.ParentAutoHeight = true;
			this.notePanel_WatchWholeDaySpirit.Size = new System.Drawing.Size(72, 22);
			this.notePanel_WatchWholeDaySpirit.TabIndex = 78;
			this.notePanel_WatchWholeDaySpirit.TabStop = false;
			this.notePanel_WatchWholeDaySpirit.Text = " 精  神:";
			// 
			// comboBoxEdit_WatchWholeDayMovement
			// 
			this.comboBoxEdit_WatchWholeDayMovement.EditValue = "强";
			this.comboBoxEdit_WatchWholeDayMovement.Location = new System.Drawing.Point(120, 40);
			this.comboBoxEdit_WatchWholeDayMovement.Name = "comboBoxEdit_WatchWholeDayMovement";
			// 
			// comboBoxEdit_WatchWholeDayMovement.Properties
			// 
			this.comboBoxEdit_WatchWholeDayMovement.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																																	   new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.comboBoxEdit_WatchWholeDayMovement.Properties.Items.AddRange(new object[] {
																							   "强",
																							   "中",
																							   "弱"});
			this.comboBoxEdit_WatchWholeDayMovement.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
			this.comboBoxEdit_WatchWholeDayMovement.Size = new System.Drawing.Size(64, 23);
			this.comboBoxEdit_WatchWholeDayMovement.TabIndex = 77;
			// 
			// notePanel_WatchWholeDayMovement
			// 
			this.notePanel_WatchWholeDayMovement.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_WatchWholeDayMovement.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_WatchWholeDayMovement.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_WatchWholeDayMovement.ForeColor = System.Drawing.Color.Black;
			this.notePanel_WatchWholeDayMovement.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_WatchWholeDayMovement.Location = new System.Drawing.Point(24, 40);
			this.notePanel_WatchWholeDayMovement.MaxRows = 5;
			this.notePanel_WatchWholeDayMovement.Name = "notePanel_WatchWholeDayMovement";
			this.notePanel_WatchWholeDayMovement.ParentAutoHeight = true;
			this.notePanel_WatchWholeDayMovement.Size = new System.Drawing.Size(88, 22);
			this.notePanel_WatchWholeDayMovement.TabIndex = 50;
			this.notePanel_WatchWholeDayMovement.TabStop = false;
			this.notePanel_WatchWholeDayMovement.Text = "一日活动:";
			// 
			// groupControl_WatchRecList
			// 
			this.groupControl_WatchRecList.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.groupControl_WatchRecList.AppearanceCaption.Options.UseFont = true;
			this.groupControl_WatchRecList.Controls.Add(this.gridControl_WatchRecList);
			this.groupControl_WatchRecList.Controls.Add(this.notePanel_WatchRecList);
			this.groupControl_WatchRecList.Dock = System.Windows.Forms.DockStyle.Top;
			this.groupControl_WatchRecList.Location = new System.Drawing.Point(0, 40);
			this.groupControl_WatchRecList.Name = "groupControl_WatchRecList";
			this.groupControl_WatchRecList.Size = new System.Drawing.Size(464, 469);
			this.groupControl_WatchRecList.TabIndex = 1;
			this.groupControl_WatchRecList.Text = "幼儿观察列表";
			// 
			// gridControl_WatchRecList
			// 
			this.gridControl_WatchRecList.Dock = System.Windows.Forms.DockStyle.Fill;
			// 
			// gridControl_WatchRecList.EmbeddedNavigator
			// 
			this.gridControl_WatchRecList.EmbeddedNavigator.Name = "";
			this.gridControl_WatchRecList.Location = new System.Drawing.Point(3, 41);
			this.gridControl_WatchRecList.MainView = this.gridView8;
			this.gridControl_WatchRecList.Name = "gridControl_WatchRecList";
			this.gridControl_WatchRecList.Size = new System.Drawing.Size(458, 425);
			this.gridControl_WatchRecList.TabIndex = 26;
			this.gridControl_WatchRecList.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
																													this.gridView8});
			this.gridControl_WatchRecList.DoubleClick += new System.EventHandler(this.gridControl_WatchRecList_DoubleClick);
			// 
			// gridView8
			// 
			this.gridView8.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
																							 this.gridColumn29,
																							 this.gridColumn30,
																							 this.gridColumn31,
																							 this.gridColumn32,
																							 this.gridColumn33,
																							 this.gridColumn34});
			this.gridView8.GridControl = this.gridControl_WatchRecList;
			this.gridView8.Name = "gridView8";
			this.gridView8.OptionsCustomization.AllowFilter = false;
			this.gridView8.OptionsView.ShowFilterPanel = false;
			this.gridView8.OptionsView.ShowGroupPanel = false;
			// 
			// gridColumn29
			// 
			this.gridColumn29.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn29.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn29.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn29.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn29.Caption = "幼儿序号";
			this.gridColumn29.FieldName = "info_stuOrderNumber";
			this.gridColumn29.Name = "gridColumn29";
			this.gridColumn29.OptionsColumn.AllowEdit = false;
			this.gridColumn29.OptionsColumn.AllowFocus = false;
			this.gridColumn29.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn29.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn29.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn29.OptionsColumn.AllowMove = false;
			this.gridColumn29.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn29.OptionsColumn.ReadOnly = true;
			this.gridColumn29.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn29.Visible = true;
			this.gridColumn29.VisibleIndex = 0;
			this.gridColumn29.Width = 60;
			// 
			// gridColumn30
			// 
			this.gridColumn30.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn30.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn30.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn30.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn30.Caption = "幼儿学号";
			this.gridColumn30.FieldName = "stu_id";
			this.gridColumn30.Name = "gridColumn30";
			this.gridColumn30.OptionsColumn.AllowEdit = false;
			this.gridColumn30.OptionsColumn.AllowFocus = false;
			this.gridColumn30.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn30.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn30.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn30.OptionsColumn.AllowMove = false;
			this.gridColumn30.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn30.OptionsColumn.ReadOnly = true;
			this.gridColumn30.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn30.Visible = true;
			this.gridColumn30.VisibleIndex = 1;
			this.gridColumn30.Width = 65;
			// 
			// gridColumn31
			// 
			this.gridColumn31.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn31.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn31.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn31.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn31.Caption = "幼儿姓名";
			this.gridColumn31.FieldName = "stu_name";
			this.gridColumn31.Name = "gridColumn31";
			this.gridColumn31.OptionsColumn.AllowEdit = false;
			this.gridColumn31.OptionsColumn.AllowFocus = false;
			this.gridColumn31.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn31.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn31.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn31.OptionsColumn.AllowMove = false;
			this.gridColumn31.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn31.OptionsColumn.ReadOnly = true;
			this.gridColumn31.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn31.Visible = true;
			this.gridColumn31.VisibleIndex = 2;
			this.gridColumn31.Width = 77;
			// 
			// gridColumn32
			// 
			this.gridColumn32.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn32.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn32.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn32.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn32.Caption = "幼儿班级";
			this.gridColumn32.FieldName = "info_className";
			this.gridColumn32.Name = "gridColumn32";
			this.gridColumn32.OptionsColumn.AllowEdit = false;
			this.gridColumn32.OptionsColumn.AllowFocus = false;
			this.gridColumn32.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn32.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn32.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn32.OptionsColumn.AllowMove = false;
			this.gridColumn32.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn32.OptionsColumn.ReadOnly = true;
			this.gridColumn32.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn32.Visible = true;
			this.gridColumn32.VisibleIndex = 3;
			this.gridColumn32.Width = 77;
			// 
			// gridColumn33
			// 
			this.gridColumn33.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn33.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn33.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn33.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn33.Caption = "观察时间";
			this.gridColumn33.FieldName = "observeTime";
			this.gridColumn33.Name = "gridColumn33";
			this.gridColumn33.OptionsColumn.AllowEdit = false;
			this.gridColumn33.OptionsColumn.AllowFocus = false;
			this.gridColumn33.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn33.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn33.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn33.OptionsColumn.AllowMove = false;
			this.gridColumn33.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn33.OptionsColumn.ReadOnly = true;
			this.gridColumn33.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn33.Visible = true;
			this.gridColumn33.VisibleIndex = 4;
			this.gridColumn33.Width = 81;
			// 
			// gridColumn34
			// 
			this.gridColumn34.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn34.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn34.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn34.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn34.Caption = "教师签名";
			this.gridColumn34.FieldName = "dailyReg_teacherSign";
			this.gridColumn34.Name = "gridColumn34";
			this.gridColumn34.OptionsColumn.AllowEdit = false;
			this.gridColumn34.OptionsColumn.AllowFocus = false;
			this.gridColumn34.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn34.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn34.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn34.OptionsColumn.AllowMove = false;
			this.gridColumn34.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn34.OptionsColumn.ReadOnly = true;
			this.gridColumn34.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn34.Visible = true;
			this.gridColumn34.VisibleIndex = 5;
			this.gridColumn34.Width = 95;
			// 
			// notePanel_WatchRecList
			// 
			this.notePanel_WatchRecList.BackColor = System.Drawing.Color.LightGoldenrodYellow;
			this.notePanel_WatchRecList.Dock = System.Windows.Forms.DockStyle.Top;
			this.notePanel_WatchRecList.ForeColor = System.Drawing.Color.OrangeRed;
			this.notePanel_WatchRecList.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_WatchRecList.Location = new System.Drawing.Point(3, 18);
			this.notePanel_WatchRecList.MaxRows = 5;
			this.notePanel_WatchRecList.Name = "notePanel_WatchRecList";
			this.notePanel_WatchRecList.ParentAutoHeight = true;
			this.notePanel_WatchRecList.Size = new System.Drawing.Size(458, 23);
			this.notePanel_WatchRecList.TabIndex = 25;
			this.notePanel_WatchRecList.TabStop = false;
			this.notePanel_WatchRecList.Text = "双击进入幼儿全日观察";
			// 
			// panelControl7
			// 
			this.panelControl7.Controls.Add(this.simpleButton_WatchSearch);
			this.panelControl7.Controls.Add(this.simpleButton_WatchBack);
			this.panelControl7.Controls.Add(this.simpleButton_WatchDelete);
			this.panelControl7.Controls.Add(this.simpleButton_WatchReport);
			this.panelControl7.Controls.Add(this.simpleButton_WatchHandle);
			this.panelControl7.Dock = System.Windows.Forms.DockStyle.Top;
			this.panelControl7.Location = new System.Drawing.Point(0, 0);
			this.panelControl7.Name = "panelControl7";
			this.panelControl7.Size = new System.Drawing.Size(464, 40);
			this.panelControl7.TabIndex = 0;
			this.panelControl7.Text = "panelControl7";
			// 
			// simpleButton_WatchSearch
			// 
			this.simpleButton_WatchSearch.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.simpleButton_WatchSearch.Appearance.ForeColor = System.Drawing.Color.DarkMagenta;
			this.simpleButton_WatchSearch.Appearance.Options.UseFont = true;
			this.simpleButton_WatchSearch.Appearance.Options.UseForeColor = true;
			this.simpleButton_WatchSearch.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton_WatchSearch.Image")));
			this.simpleButton_WatchSearch.Location = new System.Drawing.Point(8, 9);
			this.simpleButton_WatchSearch.Name = "simpleButton_WatchSearch";
			this.simpleButton_WatchSearch.Size = new System.Drawing.Size(72, 26);
			this.simpleButton_WatchSearch.TabIndex = 21;
			this.simpleButton_WatchSearch.Tag = 4;
			this.simpleButton_WatchSearch.Text = "检索";
			this.simpleButton_WatchSearch.Click += new System.EventHandler(this.simpleButton_WatchSearch_Click);
			// 
			// simpleButton_WatchBack
			// 
			this.simpleButton_WatchBack.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.simpleButton_WatchBack.Appearance.ForeColor = System.Drawing.Color.DarkMagenta;
			this.simpleButton_WatchBack.Appearance.Options.UseFont = true;
			this.simpleButton_WatchBack.Appearance.Options.UseForeColor = true;
			this.simpleButton_WatchBack.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton_WatchBack.Image")));
			this.simpleButton_WatchBack.Location = new System.Drawing.Point(88, 8);
			this.simpleButton_WatchBack.Name = "simpleButton_WatchBack";
			this.simpleButton_WatchBack.Size = new System.Drawing.Size(72, 26);
			this.simpleButton_WatchBack.TabIndex = 19;
			this.simpleButton_WatchBack.Tag = 4;
			this.simpleButton_WatchBack.Text = "返回";
			this.simpleButton_WatchBack.Click += new System.EventHandler(this.simpleButton_WatchBack_Click);
			// 
			// simpleButton_WatchDelete
			// 
			this.simpleButton_WatchDelete.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.simpleButton_WatchDelete.Appearance.ForeColor = System.Drawing.Color.DarkMagenta;
			this.simpleButton_WatchDelete.Appearance.Options.UseFont = true;
			this.simpleButton_WatchDelete.Appearance.Options.UseForeColor = true;
			this.simpleButton_WatchDelete.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton_WatchDelete.Image")));
			this.simpleButton_WatchDelete.Location = new System.Drawing.Point(248, 8);
			this.simpleButton_WatchDelete.Name = "simpleButton_WatchDelete";
			this.simpleButton_WatchDelete.Size = new System.Drawing.Size(72, 26);
			this.simpleButton_WatchDelete.TabIndex = 18;
			this.simpleButton_WatchDelete.Tag = 4;
			this.simpleButton_WatchDelete.Text = "删除";
			this.simpleButton_WatchDelete.Click += new System.EventHandler(this.simpleButton_WatchDelete_Click);
			// 
			// simpleButton_WatchReport
			// 
			this.simpleButton_WatchReport.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.simpleButton_WatchReport.Appearance.ForeColor = System.Drawing.Color.DarkMagenta;
			this.simpleButton_WatchReport.Appearance.Options.UseFont = true;
			this.simpleButton_WatchReport.Appearance.Options.UseForeColor = true;
			this.simpleButton_WatchReport.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton_WatchReport.Image")));
			this.simpleButton_WatchReport.Location = new System.Drawing.Point(328, 8);
			this.simpleButton_WatchReport.Name = "simpleButton_WatchReport";
			this.simpleButton_WatchReport.Size = new System.Drawing.Size(72, 26);
			this.simpleButton_WatchReport.TabIndex = 16;
			this.simpleButton_WatchReport.Tag = 4;
			this.simpleButton_WatchReport.Text = "报表";
			this.simpleButton_WatchReport.Click += new System.EventHandler(this.simpleButton_WatchReport_Click);
			// 
			// simpleButton_WatchHandle
			// 
			this.simpleButton_WatchHandle.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.simpleButton_WatchHandle.Appearance.ForeColor = System.Drawing.Color.DarkMagenta;
			this.simpleButton_WatchHandle.Appearance.Options.UseFont = true;
			this.simpleButton_WatchHandle.Appearance.Options.UseForeColor = true;
			this.simpleButton_WatchHandle.Enabled = false;
			this.simpleButton_WatchHandle.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton_WatchHandle.Image")));
			this.simpleButton_WatchHandle.Location = new System.Drawing.Point(168, 8);
			this.simpleButton_WatchHandle.Name = "simpleButton_WatchHandle";
			this.simpleButton_WatchHandle.Size = new System.Drawing.Size(72, 26);
			this.simpleButton_WatchHandle.TabIndex = 14;
			this.simpleButton_WatchHandle.Tag = 4;
			this.simpleButton_WatchHandle.Text = "保存";
			this.simpleButton_WatchHandle.Click += new System.EventHandler(this.simpleButton_WatchHandle_Click);
			// 
			// xtraTabPage8
			// 
			this.xtraTabPage8.Appearance.PageClient.BackColor = System.Drawing.Color.WhiteSmoke;
			this.xtraTabPage8.Appearance.PageClient.Options.UseBackColor = true;
			this.xtraTabPage8.Controls.Add(this.splitContainerControl9);
			this.xtraTabPage8.Name = "xtraTabPage8";
			this.xtraTabPage8.PageVisible = false;
			this.xtraTabPage8.Size = new System.Drawing.Size(768, 515);
			this.xtraTabPage8.Text = "服药登记";
			// 
			// splitContainerControl9
			// 
			this.splitContainerControl9.Dock = System.Windows.Forms.DockStyle.Fill;
			this.splitContainerControl9.Location = new System.Drawing.Point(0, 0);
			this.splitContainerControl9.Name = "splitContainerControl9";
			this.splitContainerControl9.Panel1.Controls.Add(this.groupControl_MedReg_StuList);
			this.splitContainerControl9.Panel1.Controls.Add(this.groupControl_MedReg_Ser);
			this.splitContainerControl9.Panel1.Text = "splitContainerControl9_Panel1";
			this.splitContainerControl9.Panel2.Controls.Add(this.groupControl_MedReg_MedInfo);
			this.splitContainerControl9.Panel2.Controls.Add(this.groupControl_MedReg_MedCarrInfo);
			this.splitContainerControl9.Panel2.Controls.Add(this.groupControl_MedReg_DiagInfo);
			this.splitContainerControl9.Panel2.Controls.Add(this.panelControl8);
			this.splitContainerControl9.Panel2.Text = "splitContainerControl9_Panel2";
			this.splitContainerControl9.Size = new System.Drawing.Size(768, 515);
			this.splitContainerControl9.SplitterPosition = 289;
			this.splitContainerControl9.TabIndex = 0;
			this.splitContainerControl9.Text = "splitContainerControl9";
			// 
			// groupControl_MedReg_StuList
			// 
			this.groupControl_MedReg_StuList.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.groupControl_MedReg_StuList.AppearanceCaption.Options.UseFont = true;
			this.groupControl_MedReg_StuList.Controls.Add(this.gridControl_MedReg_StuList);
			this.groupControl_MedReg_StuList.Controls.Add(this.notePanel2);
			this.groupControl_MedReg_StuList.Dock = System.Windows.Forms.DockStyle.Fill;
			this.groupControl_MedReg_StuList.Location = new System.Drawing.Point(0, 208);
			this.groupControl_MedReg_StuList.Name = "groupControl_MedReg_StuList";
			this.groupControl_MedReg_StuList.Size = new System.Drawing.Size(283, 301);
			this.groupControl_MedReg_StuList.TabIndex = 2;
			this.groupControl_MedReg_StuList.Text = "今天需要服药的幼儿";
			// 
			// gridControl_MedReg_StuList
			// 
			this.gridControl_MedReg_StuList.Dock = System.Windows.Forms.DockStyle.Fill;
			// 
			// gridControl_MedReg_StuList.EmbeddedNavigator
			// 
			this.gridControl_MedReg_StuList.EmbeddedNavigator.Name = "";
			this.gridControl_MedReg_StuList.Location = new System.Drawing.Point(3, 41);
			this.gridControl_MedReg_StuList.MainView = this.gridView9;
			this.gridControl_MedReg_StuList.Name = "gridControl_MedReg_StuList";
			this.gridControl_MedReg_StuList.Size = new System.Drawing.Size(277, 257);
			this.gridControl_MedReg_StuList.TabIndex = 59;
			this.gridControl_MedReg_StuList.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
																													  this.gridView9});
			this.gridControl_MedReg_StuList.DoubleClick += new System.EventHandler(this.gridControl_MedReg_StuList_DoubleClick);
			// 
			// gridView9
			// 
			this.gridView9.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
																							 this.gridColumn35,
																							 this.gridColumn36,
																							 this.gridColumn37,
																							 this.gridColumn38});
			this.gridView9.GridControl = this.gridControl_MedReg_StuList;
			this.gridView9.Name = "gridView9";
			this.gridView9.OptionsCustomization.AllowFilter = false;
			this.gridView9.OptionsView.ShowFilterPanel = false;
			this.gridView9.OptionsView.ShowGroupPanel = false;
			// 
			// gridColumn35
			// 
			this.gridColumn35.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn35.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn35.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn35.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn35.Caption = "学号";
			this.gridColumn35.FieldName = "info_stuNumber";
			this.gridColumn35.Name = "gridColumn35";
			this.gridColumn35.OptionsColumn.AllowEdit = false;
			this.gridColumn35.OptionsColumn.AllowFocus = false;
			this.gridColumn35.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn35.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn35.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn35.OptionsColumn.AllowMove = false;
			this.gridColumn35.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn35.OptionsColumn.ReadOnly = true;
			this.gridColumn35.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn35.Visible = true;
			this.gridColumn35.VisibleIndex = 0;
			this.gridColumn35.Width = 48;
			// 
			// gridColumn36
			// 
			this.gridColumn36.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn36.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn36.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn36.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn36.Caption = "姓名";
			this.gridColumn36.FieldName = "info_stuName";
			this.gridColumn36.Name = "gridColumn36";
			this.gridColumn36.OptionsColumn.AllowEdit = false;
			this.gridColumn36.OptionsColumn.AllowFocus = false;
			this.gridColumn36.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn36.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn36.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn36.OptionsColumn.AllowMove = false;
			this.gridColumn36.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn36.OptionsColumn.ReadOnly = true;
			this.gridColumn36.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn36.Visible = true;
			this.gridColumn36.VisibleIndex = 1;
			this.gridColumn36.Width = 56;
			// 
			// gridColumn37
			// 
			this.gridColumn37.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn37.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn37.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn37.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn37.Caption = "班级";
			this.gridColumn37.FieldName = "info_className";
			this.gridColumn37.Name = "gridColumn37";
			this.gridColumn37.OptionsColumn.AllowEdit = false;
			this.gridColumn37.OptionsColumn.AllowFocus = false;
			this.gridColumn37.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn37.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn37.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn37.OptionsColumn.AllowMove = false;
			this.gridColumn37.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn37.OptionsColumn.ReadOnly = true;
			this.gridColumn37.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn37.Visible = true;
			this.gridColumn37.VisibleIndex = 2;
			this.gridColumn37.Width = 55;
			// 
			// gridColumn38
			// 
			this.gridColumn38.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn38.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn38.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn38.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn38.Caption = "晨检时间";
			this.gridColumn38.DisplayFormat.FormatString = "yyyy-MM-dd hh:mm:ss";
			this.gridColumn38.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
			this.gridColumn38.FieldName = "flow_stuFlowEnterDate";
			this.gridColumn38.Name = "gridColumn38";
			this.gridColumn38.OptionsColumn.AllowEdit = false;
			this.gridColumn38.OptionsColumn.AllowFocus = false;
			this.gridColumn38.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn38.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn38.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn38.OptionsColumn.AllowMove = false;
			this.gridColumn38.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn38.OptionsColumn.ReadOnly = true;
			this.gridColumn38.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn38.Visible = true;
			this.gridColumn38.VisibleIndex = 3;
			this.gridColumn38.Width = 101;
			// 
			// notePanel2
			// 
			this.notePanel2.BackColor = System.Drawing.Color.LightGoldenrodYellow;
			this.notePanel2.Dock = System.Windows.Forms.DockStyle.Top;
			this.notePanel2.ForeColor = System.Drawing.Color.OrangeRed;
			this.notePanel2.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel2.Location = new System.Drawing.Point(3, 18);
			this.notePanel2.MaxRows = 5;
			this.notePanel2.Name = "notePanel2";
			this.notePanel2.ParentAutoHeight = true;
			this.notePanel2.Size = new System.Drawing.Size(277, 23);
			this.notePanel2.TabIndex = 58;
			this.notePanel2.TabStop = false;
			this.notePanel2.Text = "双击进行晨检诊断及药品携带信息管理";
			// 
			// groupControl_MedReg_Ser
			// 
			this.groupControl_MedReg_Ser.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.groupControl_MedReg_Ser.AppearanceCaption.Options.UseFont = true;
			this.groupControl_MedReg_Ser.Controls.Add(this.notePanel_MedReg_Ser);
			this.groupControl_MedReg_Ser.Controls.Add(this.textEdit_MedReg_Number);
			this.groupControl_MedReg_Ser.Controls.Add(this.textEdit_MedReg_Name);
			this.groupControl_MedReg_Ser.Controls.Add(this.comboBoxEdit_MedReg_Class);
			this.groupControl_MedReg_Ser.Controls.Add(this.notePanel_MedReg_Class);
			this.groupControl_MedReg_Ser.Controls.Add(this.comboBoxEdit_MedReg_Grade);
			this.groupControl_MedReg_Ser.Controls.Add(this.notePanel_MedReg_Grade);
			this.groupControl_MedReg_Ser.Controls.Add(this.notePanel_MedReg_Number);
			this.groupControl_MedReg_Ser.Controls.Add(this.notePanel_MedReg_Name);
			this.groupControl_MedReg_Ser.Dock = System.Windows.Forms.DockStyle.Top;
			this.groupControl_MedReg_Ser.Location = new System.Drawing.Point(0, 0);
			this.groupControl_MedReg_Ser.Name = "groupControl_MedReg_Ser";
			this.groupControl_MedReg_Ser.Size = new System.Drawing.Size(283, 208);
			this.groupControl_MedReg_Ser.TabIndex = 1;
			this.groupControl_MedReg_Ser.Text = "信息查询";
			// 
			// notePanel_MedReg_Ser
			// 
			this.notePanel_MedReg_Ser.BackColor = System.Drawing.Color.LightGoldenrodYellow;
			this.notePanel_MedReg_Ser.Dock = System.Windows.Forms.DockStyle.Top;
			this.notePanel_MedReg_Ser.ForeColor = System.Drawing.Color.OrangeRed;
			this.notePanel_MedReg_Ser.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_MedReg_Ser.Location = new System.Drawing.Point(3, 18);
			this.notePanel_MedReg_Ser.MaxRows = 5;
			this.notePanel_MedReg_Ser.Name = "notePanel_MedReg_Ser";
			this.notePanel_MedReg_Ser.ParentAutoHeight = true;
			this.notePanel_MedReg_Ser.Size = new System.Drawing.Size(277, 23);
			this.notePanel_MedReg_Ser.TabIndex = 57;
			this.notePanel_MedReg_Ser.TabStop = false;
			this.notePanel_MedReg_Ser.Text = "检索您的幼儿";
			// 
			// textEdit_MedReg_Number
			// 
			this.textEdit_MedReg_Number.EditValue = "";
			this.textEdit_MedReg_Number.Location = new System.Drawing.Point(144, 160);
			this.textEdit_MedReg_Number.Name = "textEdit_MedReg_Number";
			this.textEdit_MedReg_Number.Size = new System.Drawing.Size(88, 23);
			this.textEdit_MedReg_Number.TabIndex = 56;
			this.textEdit_MedReg_Number.EditValueChanged += new System.EventHandler(this.textEdit_MedReg_Number_EditValueChanged);
			// 
			// textEdit_MedReg_Name
			// 
			this.textEdit_MedReg_Name.EditValue = "";
			this.textEdit_MedReg_Name.Location = new System.Drawing.Point(144, 128);
			this.textEdit_MedReg_Name.Name = "textEdit_MedReg_Name";
			this.textEdit_MedReg_Name.Size = new System.Drawing.Size(88, 23);
			this.textEdit_MedReg_Name.TabIndex = 55;
			this.textEdit_MedReg_Name.EditValueChanged += new System.EventHandler(this.textEdit_MedReg_Name_EditValueChanged);
			// 
			// comboBoxEdit_MedReg_Class
			// 
			this.comboBoxEdit_MedReg_Class.EditValue = "全部";
			this.comboBoxEdit_MedReg_Class.Location = new System.Drawing.Point(144, 96);
			this.comboBoxEdit_MedReg_Class.Name = "comboBoxEdit_MedReg_Class";
			// 
			// comboBoxEdit_MedReg_Class.Properties
			// 
			this.comboBoxEdit_MedReg_Class.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																															  new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.comboBoxEdit_MedReg_Class.Properties.Items.AddRange(new object[] {
																					  "全部"});
			this.comboBoxEdit_MedReg_Class.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
			this.comboBoxEdit_MedReg_Class.Size = new System.Drawing.Size(88, 23);
			this.comboBoxEdit_MedReg_Class.TabIndex = 54;
			this.comboBoxEdit_MedReg_Class.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit_MedReg_Class_SelectedIndexChanged);
			// 
			// notePanel_MedReg_Class
			// 
			this.notePanel_MedReg_Class.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_MedReg_Class.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_MedReg_Class.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_MedReg_Class.ForeColor = System.Drawing.Color.Black;
			this.notePanel_MedReg_Class.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_MedReg_Class.Location = new System.Drawing.Point(48, 96);
			this.notePanel_MedReg_Class.MaxRows = 5;
			this.notePanel_MedReg_Class.Name = "notePanel_MedReg_Class";
			this.notePanel_MedReg_Class.ParentAutoHeight = true;
			this.notePanel_MedReg_Class.Size = new System.Drawing.Size(80, 22);
			this.notePanel_MedReg_Class.TabIndex = 53;
			this.notePanel_MedReg_Class.TabStop = false;
			this.notePanel_MedReg_Class.Text = "  班  级:";
			// 
			// comboBoxEdit_MedReg_Grade
			// 
			this.comboBoxEdit_MedReg_Grade.EditValue = "全部";
			this.comboBoxEdit_MedReg_Grade.Location = new System.Drawing.Point(144, 64);
			this.comboBoxEdit_MedReg_Grade.Name = "comboBoxEdit_MedReg_Grade";
			// 
			// comboBoxEdit_MedReg_Grade.Properties
			// 
			this.comboBoxEdit_MedReg_Grade.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																															  new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.comboBoxEdit_MedReg_Grade.Properties.Items.AddRange(new object[] {
																					  "全部"});
			this.comboBoxEdit_MedReg_Grade.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
			this.comboBoxEdit_MedReg_Grade.Size = new System.Drawing.Size(88, 23);
			this.comboBoxEdit_MedReg_Grade.TabIndex = 52;
			this.comboBoxEdit_MedReg_Grade.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit_MedReg_Grade_SelectedIndexChanged);
			// 
			// notePanel_MedReg_Grade
			// 
			this.notePanel_MedReg_Grade.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_MedReg_Grade.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_MedReg_Grade.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_MedReg_Grade.ForeColor = System.Drawing.Color.Black;
			this.notePanel_MedReg_Grade.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_MedReg_Grade.Location = new System.Drawing.Point(48, 64);
			this.notePanel_MedReg_Grade.MaxRows = 5;
			this.notePanel_MedReg_Grade.Name = "notePanel_MedReg_Grade";
			this.notePanel_MedReg_Grade.ParentAutoHeight = true;
			this.notePanel_MedReg_Grade.Size = new System.Drawing.Size(80, 22);
			this.notePanel_MedReg_Grade.TabIndex = 51;
			this.notePanel_MedReg_Grade.TabStop = false;
			this.notePanel_MedReg_Grade.Text = "  年  级:";
			// 
			// notePanel_MedReg_Number
			// 
			this.notePanel_MedReg_Number.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_MedReg_Number.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_MedReg_Number.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_MedReg_Number.ForeColor = System.Drawing.Color.Black;
			this.notePanel_MedReg_Number.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_MedReg_Number.Location = new System.Drawing.Point(48, 160);
			this.notePanel_MedReg_Number.MaxRows = 5;
			this.notePanel_MedReg_Number.Name = "notePanel_MedReg_Number";
			this.notePanel_MedReg_Number.ParentAutoHeight = true;
			this.notePanel_MedReg_Number.Size = new System.Drawing.Size(80, 22);
			this.notePanel_MedReg_Number.TabIndex = 50;
			this.notePanel_MedReg_Number.TabStop = false;
			this.notePanel_MedReg_Number.Text = "  学  号:";
			// 
			// notePanel_MedReg_Name
			// 
			this.notePanel_MedReg_Name.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_MedReg_Name.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_MedReg_Name.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_MedReg_Name.ForeColor = System.Drawing.Color.Black;
			this.notePanel_MedReg_Name.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_MedReg_Name.Location = new System.Drawing.Point(48, 128);
			this.notePanel_MedReg_Name.MaxRows = 5;
			this.notePanel_MedReg_Name.Name = "notePanel_MedReg_Name";
			this.notePanel_MedReg_Name.ParentAutoHeight = true;
			this.notePanel_MedReg_Name.Size = new System.Drawing.Size(80, 22);
			this.notePanel_MedReg_Name.TabIndex = 49;
			this.notePanel_MedReg_Name.TabStop = false;
			this.notePanel_MedReg_Name.Text = "  姓  名:";
			// 
			// groupControl_MedReg_MedInfo
			// 
			this.groupControl_MedReg_MedInfo.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.groupControl_MedReg_MedInfo.AppearanceCaption.Options.UseFont = true;
			this.groupControl_MedReg_MedInfo.Controls.Add(this.textEdit_MedReg_MedName);
			this.groupControl_MedReg_MedInfo.Controls.Add(this.textEdit_MedReg_Taketimes);
			this.groupControl_MedReg_MedInfo.Controls.Add(this.textEdit_MedReg_MedTake);
			this.groupControl_MedReg_MedInfo.Controls.Add(this.textEdit_MedReg_MedType);
			this.groupControl_MedReg_MedInfo.Controls.Add(this.notePanel_MedReg_Taketimes);
			this.groupControl_MedReg_MedInfo.Controls.Add(this.notePanel_MedReg_MedTake);
			this.groupControl_MedReg_MedInfo.Controls.Add(this.notePanel_MedReg_MedType);
			this.groupControl_MedReg_MedInfo.Controls.Add(this.notePanel_MedReg_MedName);
			this.groupControl_MedReg_MedInfo.Dock = System.Windows.Forms.DockStyle.Fill;
			this.groupControl_MedReg_MedInfo.Location = new System.Drawing.Point(0, 520);
			this.groupControl_MedReg_MedInfo.Name = "groupControl_MedReg_MedInfo";
			this.groupControl_MedReg_MedInfo.Size = new System.Drawing.Size(469, -11);
			this.groupControl_MedReg_MedInfo.TabIndex = 3;
			this.groupControl_MedReg_MedInfo.Text = "添加药品信息";
			this.groupControl_MedReg_MedInfo.Visible = false;
			// 
			// textEdit_MedReg_MedName
			// 
			this.textEdit_MedReg_MedName.EditValue = "";
			this.textEdit_MedReg_MedName.Location = new System.Drawing.Point(232, 32);
			this.textEdit_MedReg_MedName.Name = "textEdit_MedReg_MedName";
			this.textEdit_MedReg_MedName.Size = new System.Drawing.Size(96, 23);
			this.textEdit_MedReg_MedName.TabIndex = 60;
			// 
			// textEdit_MedReg_Taketimes
			// 
			this.textEdit_MedReg_Taketimes.EditValue = "";
			this.textEdit_MedReg_Taketimes.Location = new System.Drawing.Point(232, 152);
			this.textEdit_MedReg_Taketimes.Name = "textEdit_MedReg_Taketimes";
			this.textEdit_MedReg_Taketimes.Size = new System.Drawing.Size(96, 23);
			this.textEdit_MedReg_Taketimes.TabIndex = 59;
			// 
			// textEdit_MedReg_MedTake
			// 
			this.textEdit_MedReg_MedTake.EditValue = "";
			this.textEdit_MedReg_MedTake.Location = new System.Drawing.Point(232, 112);
			this.textEdit_MedReg_MedTake.Name = "textEdit_MedReg_MedTake";
			this.textEdit_MedReg_MedTake.Size = new System.Drawing.Size(96, 23);
			this.textEdit_MedReg_MedTake.TabIndex = 58;
			// 
			// textEdit_MedReg_MedType
			// 
			this.textEdit_MedReg_MedType.EditValue = "";
			this.textEdit_MedReg_MedType.Location = new System.Drawing.Point(232, 72);
			this.textEdit_MedReg_MedType.Name = "textEdit_MedReg_MedType";
			this.textEdit_MedReg_MedType.Size = new System.Drawing.Size(96, 23);
			this.textEdit_MedReg_MedType.TabIndex = 57;
			// 
			// notePanel_MedReg_Taketimes
			// 
			this.notePanel_MedReg_Taketimes.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_MedReg_Taketimes.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_MedReg_Taketimes.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_MedReg_Taketimes.ForeColor = System.Drawing.Color.Black;
			this.notePanel_MedReg_Taketimes.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_MedReg_Taketimes.Location = new System.Drawing.Point(128, 152);
			this.notePanel_MedReg_Taketimes.MaxRows = 5;
			this.notePanel_MedReg_Taketimes.Name = "notePanel_MedReg_Taketimes";
			this.notePanel_MedReg_Taketimes.ParentAutoHeight = true;
			this.notePanel_MedReg_Taketimes.Size = new System.Drawing.Size(80, 22);
			this.notePanel_MedReg_Taketimes.TabIndex = 55;
			this.notePanel_MedReg_Taketimes.TabStop = false;
			this.notePanel_MedReg_Taketimes.Text = "服用次数:";
			// 
			// notePanel_MedReg_MedTake
			// 
			this.notePanel_MedReg_MedTake.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_MedReg_MedTake.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_MedReg_MedTake.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_MedReg_MedTake.ForeColor = System.Drawing.Color.Black;
			this.notePanel_MedReg_MedTake.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_MedReg_MedTake.Location = new System.Drawing.Point(128, 112);
			this.notePanel_MedReg_MedTake.MaxRows = 5;
			this.notePanel_MedReg_MedTake.Name = "notePanel_MedReg_MedTake";
			this.notePanel_MedReg_MedTake.ParentAutoHeight = true;
			this.notePanel_MedReg_MedTake.Size = new System.Drawing.Size(80, 22);
			this.notePanel_MedReg_MedTake.TabIndex = 54;
			this.notePanel_MedReg_MedTake.TabStop = false;
			this.notePanel_MedReg_MedTake.Text = "服用剂量:";
			// 
			// notePanel_MedReg_MedType
			// 
			this.notePanel_MedReg_MedType.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_MedReg_MedType.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_MedReg_MedType.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_MedReg_MedType.ForeColor = System.Drawing.Color.Black;
			this.notePanel_MedReg_MedType.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_MedReg_MedType.Location = new System.Drawing.Point(128, 72);
			this.notePanel_MedReg_MedType.MaxRows = 5;
			this.notePanel_MedReg_MedType.Name = "notePanel_MedReg_MedType";
			this.notePanel_MedReg_MedType.ParentAutoHeight = true;
			this.notePanel_MedReg_MedType.Size = new System.Drawing.Size(80, 22);
			this.notePanel_MedReg_MedType.TabIndex = 53;
			this.notePanel_MedReg_MedType.TabStop = false;
			this.notePanel_MedReg_MedType.Text = "  种  类:";
			// 
			// notePanel_MedReg_MedName
			// 
			this.notePanel_MedReg_MedName.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_MedReg_MedName.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_MedReg_MedName.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_MedReg_MedName.ForeColor = System.Drawing.Color.Black;
			this.notePanel_MedReg_MedName.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_MedReg_MedName.Location = new System.Drawing.Point(128, 32);
			this.notePanel_MedReg_MedName.MaxRows = 5;
			this.notePanel_MedReg_MedName.Name = "notePanel_MedReg_MedName";
			this.notePanel_MedReg_MedName.ParentAutoHeight = true;
			this.notePanel_MedReg_MedName.Size = new System.Drawing.Size(80, 22);
			this.notePanel_MedReg_MedName.TabIndex = 52;
			this.notePanel_MedReg_MedName.TabStop = false;
			this.notePanel_MedReg_MedName.Text = "  名  称:";
			// 
			// groupControl_MedReg_MedCarrInfo
			// 
			this.groupControl_MedReg_MedCarrInfo.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.groupControl_MedReg_MedCarrInfo.AppearanceCaption.Options.UseFont = true;
			this.groupControl_MedReg_MedCarrInfo.Controls.Add(this.listBoxControl_MedReg_MedCarrInfo);
			this.groupControl_MedReg_MedCarrInfo.Controls.Add(this.simpleButton_MedReg_MedCarrDel);
			this.groupControl_MedReg_MedCarrInfo.Controls.Add(this.simpleButton_MedReg_MedCarrAdd);
			this.groupControl_MedReg_MedCarrInfo.Controls.Add(this.listBoxControl_MedReg_MedInfo);
			this.groupControl_MedReg_MedCarrInfo.Dock = System.Windows.Forms.DockStyle.Top;
			this.groupControl_MedReg_MedCarrInfo.Location = new System.Drawing.Point(0, 368);
			this.groupControl_MedReg_MedCarrInfo.Name = "groupControl_MedReg_MedCarrInfo";
			this.groupControl_MedReg_MedCarrInfo.Size = new System.Drawing.Size(469, 152);
			this.groupControl_MedReg_MedCarrInfo.TabIndex = 2;
			this.groupControl_MedReg_MedCarrInfo.Text = "幼儿药品携带信息";
			// 
			// listBoxControl_MedReg_MedCarrInfo
			// 
			this.listBoxControl_MedReg_MedCarrInfo.ItemHeight = 16;
			this.listBoxControl_MedReg_MedCarrInfo.Location = new System.Drawing.Point(280, 24);
			this.listBoxControl_MedReg_MedCarrInfo.Name = "listBoxControl_MedReg_MedCarrInfo";
			this.listBoxControl_MedReg_MedCarrInfo.Size = new System.Drawing.Size(200, 112);
			this.listBoxControl_MedReg_MedCarrInfo.TabIndex = 3;
			this.listBoxControl_MedReg_MedCarrInfo.Click += new System.EventHandler(this.listBoxControl_MedReg_MedCarrInfo_Click);
			this.listBoxControl_MedReg_MedCarrInfo.DoubleClick += new System.EventHandler(this.listBoxControl_MedReg_MedCarrInfo_DoubleClick);
			this.listBoxControl_MedReg_MedCarrInfo.SelectedValueChanged += new System.EventHandler(this.listBoxControl_MedReg_MedCarrInfo_SelectedValueChanged);
			// 
			// simpleButton_MedReg_MedCarrDel
			// 
			this.simpleButton_MedReg_MedCarrDel.Enabled = false;
			this.simpleButton_MedReg_MedCarrDel.Location = new System.Drawing.Point(192, 88);
			this.simpleButton_MedReg_MedCarrDel.Name = "simpleButton_MedReg_MedCarrDel";
			this.simpleButton_MedReg_MedCarrDel.Size = new System.Drawing.Size(64, 24);
			this.simpleButton_MedReg_MedCarrDel.TabIndex = 2;
			this.simpleButton_MedReg_MedCarrDel.Text = "< 删除";
			this.simpleButton_MedReg_MedCarrDel.Click += new System.EventHandler(this.simpleButton_MedReg_MedCarrDel_Click);
			// 
			// simpleButton_MedReg_MedCarrAdd
			// 
			this.simpleButton_MedReg_MedCarrAdd.Enabled = false;
			this.simpleButton_MedReg_MedCarrAdd.Location = new System.Drawing.Point(192, 48);
			this.simpleButton_MedReg_MedCarrAdd.Name = "simpleButton_MedReg_MedCarrAdd";
			this.simpleButton_MedReg_MedCarrAdd.Size = new System.Drawing.Size(64, 24);
			this.simpleButton_MedReg_MedCarrAdd.TabIndex = 1;
			this.simpleButton_MedReg_MedCarrAdd.Text = "添加 >";
			this.simpleButton_MedReg_MedCarrAdd.Click += new System.EventHandler(this.simpleButton_MedReg_MedCarrAdd_Click);
			// 
			// listBoxControl_MedReg_MedInfo
			// 
			this.listBoxControl_MedReg_MedInfo.ItemHeight = 16;
			this.listBoxControl_MedReg_MedInfo.Location = new System.Drawing.Point(24, 24);
			this.listBoxControl_MedReg_MedInfo.Name = "listBoxControl_MedReg_MedInfo";
			this.barManager1.SetPopupContextMenu(this.listBoxControl_MedReg_MedInfo, this.popupMenu2);
			this.listBoxControl_MedReg_MedInfo.Size = new System.Drawing.Size(152, 112);
			this.listBoxControl_MedReg_MedInfo.TabIndex = 0;
			this.listBoxControl_MedReg_MedInfo.Click += new System.EventHandler(this.listBoxControl_MedReg_MedInfo_Click);
			this.listBoxControl_MedReg_MedInfo.DoubleClick += new System.EventHandler(this.listBoxControl_MedReg_MedInfo_DoubleClick);
			this.listBoxControl_MedReg_MedInfo.SelectedValueChanged += new System.EventHandler(this.listBoxControl_MedReg_MedInfo_SelectedValueChanged);
			// 
			// groupControl_MedReg_DiagInfo
			// 
			this.groupControl_MedReg_DiagInfo.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.groupControl_MedReg_DiagInfo.AppearanceCaption.Options.UseFont = true;
			this.groupControl_MedReg_DiagInfo.Controls.Add(this.textEdit_MedReg_Else);
			this.groupControl_MedReg_DiagInfo.Controls.Add(this.textEdit_MedReg_FacialSym);
			this.groupControl_MedReg_DiagInfo.Controls.Add(this.notePanel_MedReg_Else);
			this.groupControl_MedReg_DiagInfo.Controls.Add(this.notePanel_MedReg_FacialSym);
			this.groupControl_MedReg_DiagInfo.Controls.Add(this.notePanel_MedReg_SkinSym);
			this.groupControl_MedReg_DiagInfo.Controls.Add(this.notePanel_MedReg_AbdomenSym);
			this.groupControl_MedReg_DiagInfo.Controls.Add(this.notePanel_MedReg_EnteronSym);
			this.groupControl_MedReg_DiagInfo.Controls.Add(this.textEdit_MedReg_SkinSym);
			this.groupControl_MedReg_DiagInfo.Controls.Add(this.textEdit_MedReg_AbdomenSym);
			this.groupControl_MedReg_DiagInfo.Controls.Add(this.textEdit_MedReg_EnteronSym);
			this.groupControl_MedReg_DiagInfo.Controls.Add(this.textEdit_MedReg_ThroatSym);
			this.groupControl_MedReg_DiagInfo.Controls.Add(this.notePanel__MedReg_ThroatSym);
			this.groupControl_MedReg_DiagInfo.Controls.Add(this.textEdit_MedReg_LungSym);
			this.groupControl_MedReg_DiagInfo.Controls.Add(this.notePanel_MedReg_LungSym);
			this.groupControl_MedReg_DiagInfo.Controls.Add(this.textEdit_MedReg_UpperSym);
			this.groupControl_MedReg_DiagInfo.Controls.Add(this.notePanel_MedReg_UpperSym);
			this.groupControl_MedReg_DiagInfo.Controls.Add(this.comboBoxEdit_MedReg_Diag);
			this.groupControl_MedReg_DiagInfo.Controls.Add(this.notePanel_MedReg_Diag);
			this.groupControl_MedReg_DiagInfo.Dock = System.Windows.Forms.DockStyle.Top;
			this.groupControl_MedReg_DiagInfo.Location = new System.Drawing.Point(0, 48);
			this.groupControl_MedReg_DiagInfo.Name = "groupControl_MedReg_DiagInfo";
			this.groupControl_MedReg_DiagInfo.Size = new System.Drawing.Size(469, 320);
			this.groupControl_MedReg_DiagInfo.TabIndex = 1;
			this.groupControl_MedReg_DiagInfo.Text = "诊断信息";
			// 
			// textEdit_MedReg_Else
			// 
			this.textEdit_MedReg_Else.EditValue = "";
			this.textEdit_MedReg_Else.Location = new System.Drawing.Point(144, 280);
			this.textEdit_MedReg_Else.Name = "textEdit_MedReg_Else";
			this.textEdit_MedReg_Else.Size = new System.Drawing.Size(256, 23);
			this.textEdit_MedReg_Else.TabIndex = 70;
			// 
			// textEdit_MedReg_FacialSym
			// 
			this.textEdit_MedReg_FacialSym.EditValue = "";
			this.textEdit_MedReg_FacialSym.Location = new System.Drawing.Point(144, 248);
			this.textEdit_MedReg_FacialSym.Name = "textEdit_MedReg_FacialSym";
			this.textEdit_MedReg_FacialSym.Size = new System.Drawing.Size(256, 23);
			this.textEdit_MedReg_FacialSym.TabIndex = 69;
			// 
			// notePanel_MedReg_Else
			// 
			this.notePanel_MedReg_Else.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_MedReg_Else.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_MedReg_Else.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_MedReg_Else.ForeColor = System.Drawing.Color.Black;
			this.notePanel_MedReg_Else.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_MedReg_Else.Location = new System.Drawing.Point(24, 280);
			this.notePanel_MedReg_Else.MaxRows = 5;
			this.notePanel_MedReg_Else.Name = "notePanel_MedReg_Else";
			this.notePanel_MedReg_Else.ParentAutoHeight = true;
			this.notePanel_MedReg_Else.Size = new System.Drawing.Size(96, 22);
			this.notePanel_MedReg_Else.TabIndex = 68;
			this.notePanel_MedReg_Else.TabStop = false;
			this.notePanel_MedReg_Else.Text = "  其他症状:";
			// 
			// notePanel_MedReg_FacialSym
			// 
			this.notePanel_MedReg_FacialSym.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_MedReg_FacialSym.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_MedReg_FacialSym.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_MedReg_FacialSym.ForeColor = System.Drawing.Color.Black;
			this.notePanel_MedReg_FacialSym.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_MedReg_FacialSym.Location = new System.Drawing.Point(24, 248);
			this.notePanel_MedReg_FacialSym.MaxRows = 5;
			this.notePanel_MedReg_FacialSym.Name = "notePanel_MedReg_FacialSym";
			this.notePanel_MedReg_FacialSym.ParentAutoHeight = true;
			this.notePanel_MedReg_FacialSym.Size = new System.Drawing.Size(96, 22);
			this.notePanel_MedReg_FacialSym.TabIndex = 67;
			this.notePanel_MedReg_FacialSym.TabStop = false;
			this.notePanel_MedReg_FacialSym.Text = "  五官症状:";
			// 
			// notePanel_MedReg_SkinSym
			// 
			this.notePanel_MedReg_SkinSym.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_MedReg_SkinSym.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_MedReg_SkinSym.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_MedReg_SkinSym.ForeColor = System.Drawing.Color.Black;
			this.notePanel_MedReg_SkinSym.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_MedReg_SkinSym.Location = new System.Drawing.Point(24, 216);
			this.notePanel_MedReg_SkinSym.MaxRows = 5;
			this.notePanel_MedReg_SkinSym.Name = "notePanel_MedReg_SkinSym";
			this.notePanel_MedReg_SkinSym.ParentAutoHeight = true;
			this.notePanel_MedReg_SkinSym.Size = new System.Drawing.Size(96, 22);
			this.notePanel_MedReg_SkinSym.TabIndex = 66;
			this.notePanel_MedReg_SkinSym.TabStop = false;
			this.notePanel_MedReg_SkinSym.Text = "  皮肤症状:";
			// 
			// notePanel_MedReg_AbdomenSym
			// 
			this.notePanel_MedReg_AbdomenSym.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_MedReg_AbdomenSym.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_MedReg_AbdomenSym.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_MedReg_AbdomenSym.ForeColor = System.Drawing.Color.Black;
			this.notePanel_MedReg_AbdomenSym.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_MedReg_AbdomenSym.Location = new System.Drawing.Point(24, 184);
			this.notePanel_MedReg_AbdomenSym.MaxRows = 5;
			this.notePanel_MedReg_AbdomenSym.Name = "notePanel_MedReg_AbdomenSym";
			this.notePanel_MedReg_AbdomenSym.ParentAutoHeight = true;
			this.notePanel_MedReg_AbdomenSym.Size = new System.Drawing.Size(96, 22);
			this.notePanel_MedReg_AbdomenSym.TabIndex = 65;
			this.notePanel_MedReg_AbdomenSym.TabStop = false;
			this.notePanel_MedReg_AbdomenSym.Text = "  腹部症状:";
			// 
			// notePanel_MedReg_EnteronSym
			// 
			this.notePanel_MedReg_EnteronSym.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_MedReg_EnteronSym.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_MedReg_EnteronSym.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_MedReg_EnteronSym.ForeColor = System.Drawing.Color.Black;
			this.notePanel_MedReg_EnteronSym.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_MedReg_EnteronSym.Location = new System.Drawing.Point(24, 152);
			this.notePanel_MedReg_EnteronSym.MaxRows = 5;
			this.notePanel_MedReg_EnteronSym.Name = "notePanel_MedReg_EnteronSym";
			this.notePanel_MedReg_EnteronSym.ParentAutoHeight = true;
			this.notePanel_MedReg_EnteronSym.Size = new System.Drawing.Size(96, 22);
			this.notePanel_MedReg_EnteronSym.TabIndex = 64;
			this.notePanel_MedReg_EnteronSym.TabStop = false;
			this.notePanel_MedReg_EnteronSym.Text = "消化道症状:";
			// 
			// textEdit_MedReg_SkinSym
			// 
			this.textEdit_MedReg_SkinSym.EditValue = "";
			this.textEdit_MedReg_SkinSym.Location = new System.Drawing.Point(144, 216);
			this.textEdit_MedReg_SkinSym.Name = "textEdit_MedReg_SkinSym";
			this.textEdit_MedReg_SkinSym.Size = new System.Drawing.Size(256, 23);
			this.textEdit_MedReg_SkinSym.TabIndex = 63;
			// 
			// textEdit_MedReg_AbdomenSym
			// 
			this.textEdit_MedReg_AbdomenSym.EditValue = "";
			this.textEdit_MedReg_AbdomenSym.Location = new System.Drawing.Point(144, 184);
			this.textEdit_MedReg_AbdomenSym.Name = "textEdit_MedReg_AbdomenSym";
			this.textEdit_MedReg_AbdomenSym.Size = new System.Drawing.Size(256, 23);
			this.textEdit_MedReg_AbdomenSym.TabIndex = 62;
			// 
			// textEdit_MedReg_EnteronSym
			// 
			this.textEdit_MedReg_EnteronSym.EditValue = "";
			this.textEdit_MedReg_EnteronSym.Location = new System.Drawing.Point(144, 152);
			this.textEdit_MedReg_EnteronSym.Name = "textEdit_MedReg_EnteronSym";
			this.textEdit_MedReg_EnteronSym.Size = new System.Drawing.Size(256, 23);
			this.textEdit_MedReg_EnteronSym.TabIndex = 61;
			// 
			// textEdit_MedReg_ThroatSym
			// 
			this.textEdit_MedReg_ThroatSym.EditValue = "";
			this.textEdit_MedReg_ThroatSym.Location = new System.Drawing.Point(144, 120);
			this.textEdit_MedReg_ThroatSym.Name = "textEdit_MedReg_ThroatSym";
			this.textEdit_MedReg_ThroatSym.Size = new System.Drawing.Size(256, 23);
			this.textEdit_MedReg_ThroatSym.TabIndex = 60;
			// 
			// notePanel__MedReg_ThroatSym
			// 
			this.notePanel__MedReg_ThroatSym.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel__MedReg_ThroatSym.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel__MedReg_ThroatSym.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel__MedReg_ThroatSym.ForeColor = System.Drawing.Color.Black;
			this.notePanel__MedReg_ThroatSym.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel__MedReg_ThroatSym.Location = new System.Drawing.Point(24, 120);
			this.notePanel__MedReg_ThroatSym.MaxRows = 5;
			this.notePanel__MedReg_ThroatSym.Name = "notePanel__MedReg_ThroatSym";
			this.notePanel__MedReg_ThroatSym.ParentAutoHeight = true;
			this.notePanel__MedReg_ThroatSym.Size = new System.Drawing.Size(96, 22);
			this.notePanel__MedReg_ThroatSym.TabIndex = 59;
			this.notePanel__MedReg_ThroatSym.TabStop = false;
			this.notePanel__MedReg_ThroatSym.Text = "咽喉部症状:";
			// 
			// textEdit_MedReg_LungSym
			// 
			this.textEdit_MedReg_LungSym.EditValue = "";
			this.textEdit_MedReg_LungSym.Location = new System.Drawing.Point(144, 88);
			this.textEdit_MedReg_LungSym.Name = "textEdit_MedReg_LungSym";
			this.textEdit_MedReg_LungSym.Size = new System.Drawing.Size(256, 23);
			this.textEdit_MedReg_LungSym.TabIndex = 58;
			// 
			// notePanel_MedReg_LungSym
			// 
			this.notePanel_MedReg_LungSym.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_MedReg_LungSym.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_MedReg_LungSym.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_MedReg_LungSym.ForeColor = System.Drawing.Color.Black;
			this.notePanel_MedReg_LungSym.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_MedReg_LungSym.Location = new System.Drawing.Point(24, 88);
			this.notePanel_MedReg_LungSym.MaxRows = 5;
			this.notePanel_MedReg_LungSym.Name = "notePanel_MedReg_LungSym";
			this.notePanel_MedReg_LungSym.ParentAutoHeight = true;
			this.notePanel_MedReg_LungSym.Size = new System.Drawing.Size(96, 22);
			this.notePanel_MedReg_LungSym.TabIndex = 57;
			this.notePanel_MedReg_LungSym.TabStop = false;
			this.notePanel_MedReg_LungSym.Text = "  肺部症状:";
			// 
			// textEdit_MedReg_UpperSym
			// 
			this.textEdit_MedReg_UpperSym.EditValue = "";
			this.textEdit_MedReg_UpperSym.Location = new System.Drawing.Point(144, 56);
			this.textEdit_MedReg_UpperSym.Name = "textEdit_MedReg_UpperSym";
			this.textEdit_MedReg_UpperSym.Size = new System.Drawing.Size(256, 23);
			this.textEdit_MedReg_UpperSym.TabIndex = 56;
			// 
			// notePanel_MedReg_UpperSym
			// 
			this.notePanel_MedReg_UpperSym.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_MedReg_UpperSym.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_MedReg_UpperSym.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_MedReg_UpperSym.ForeColor = System.Drawing.Color.Black;
			this.notePanel_MedReg_UpperSym.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_MedReg_UpperSym.Location = new System.Drawing.Point(24, 56);
			this.notePanel_MedReg_UpperSym.MaxRows = 5;
			this.notePanel_MedReg_UpperSym.Name = "notePanel_MedReg_UpperSym";
			this.notePanel_MedReg_UpperSym.ParentAutoHeight = true;
			this.notePanel_MedReg_UpperSym.Size = new System.Drawing.Size(96, 22);
			this.notePanel_MedReg_UpperSym.TabIndex = 54;
			this.notePanel_MedReg_UpperSym.TabStop = false;
			this.notePanel_MedReg_UpperSym.Text = "  上感症状:";
			// 
			// comboBoxEdit_MedReg_Diag
			// 
			this.comboBoxEdit_MedReg_Diag.EditValue = "";
			this.comboBoxEdit_MedReg_Diag.Location = new System.Drawing.Point(144, 24);
			this.comboBoxEdit_MedReg_Diag.Name = "comboBoxEdit_MedReg_Diag";
			// 
			// comboBoxEdit_MedReg_Diag.Properties
			// 
			this.comboBoxEdit_MedReg_Diag.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																															 new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.comboBoxEdit_MedReg_Diag.Properties.Items.AddRange(new object[] {
																					 "上感",
																					 "预防",
																					 "保健",
																					 "肺炎",
																					 "气管炎",
																					 "胃炎",
																					 "消化不良",
																					 "皮疹",
																					 "荨麻疹",
																					 "口腔溃疡",
																					 "口角炎",
																					 "浓疱疹",
																					 "腹痛",
																					 "腹泻",
																					 "中耳炎",
																					 "牙龈炎",
																					 "牙痛",
																					 "鼻出血",
																					 "外伤"});
			this.comboBoxEdit_MedReg_Diag.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
			this.comboBoxEdit_MedReg_Diag.Size = new System.Drawing.Size(104, 23);
			this.comboBoxEdit_MedReg_Diag.TabIndex = 53;
			// 
			// notePanel_MedReg_Diag
			// 
			this.notePanel_MedReg_Diag.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_MedReg_Diag.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_MedReg_Diag.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_MedReg_Diag.ForeColor = System.Drawing.Color.Black;
			this.notePanel_MedReg_Diag.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_MedReg_Diag.Location = new System.Drawing.Point(24, 24);
			this.notePanel_MedReg_Diag.MaxRows = 5;
			this.notePanel_MedReg_Diag.Name = "notePanel_MedReg_Diag";
			this.notePanel_MedReg_Diag.ParentAutoHeight = true;
			this.notePanel_MedReg_Diag.Size = new System.Drawing.Size(96, 22);
			this.notePanel_MedReg_Diag.TabIndex = 52;
			this.notePanel_MedReg_Diag.TabStop = false;
			this.notePanel_MedReg_Diag.Text = "  症状诊断:";
			// 
			// panelControl8
			// 
			this.panelControl8.Controls.Add(this.simpleButton_MedReg_Ser);
			this.panelControl8.Controls.Add(this.simpleButton_MedReg_Modify);
			this.panelControl8.Controls.Add(this.simpleButton_MedReg_Reg);
			this.panelControl8.Controls.Add(this.simpleButton_MedReg_Save);
			this.panelControl8.Controls.Add(this.simpleButton_MedReg_Back);
			this.panelControl8.Dock = System.Windows.Forms.DockStyle.Top;
			this.panelControl8.Location = new System.Drawing.Point(0, 0);
			this.panelControl8.Name = "panelControl8";
			this.panelControl8.Size = new System.Drawing.Size(469, 48);
			this.panelControl8.TabIndex = 0;
			this.panelControl8.Text = "panelControl8";
			// 
			// simpleButton_MedReg_Ser
			// 
			this.simpleButton_MedReg_Ser.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.simpleButton_MedReg_Ser.Appearance.ForeColor = System.Drawing.Color.DarkMagenta;
			this.simpleButton_MedReg_Ser.Appearance.Options.UseFont = true;
			this.simpleButton_MedReg_Ser.Appearance.Options.UseForeColor = true;
			this.simpleButton_MedReg_Ser.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton_MedReg_Ser.Image")));
			this.simpleButton_MedReg_Ser.Location = new System.Drawing.Point(8, 8);
			this.simpleButton_MedReg_Ser.Name = "simpleButton_MedReg_Ser";
			this.simpleButton_MedReg_Ser.Size = new System.Drawing.Size(80, 26);
			this.simpleButton_MedReg_Ser.TabIndex = 23;
			this.simpleButton_MedReg_Ser.Tag = 4;
			this.simpleButton_MedReg_Ser.Text = "检  索";
			this.simpleButton_MedReg_Ser.Click += new System.EventHandler(this.simpleButton_MedReg_Ser_Click);
			// 
			// simpleButton_MedReg_Modify
			// 
			this.simpleButton_MedReg_Modify.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.simpleButton_MedReg_Modify.Appearance.ForeColor = System.Drawing.Color.DarkMagenta;
			this.simpleButton_MedReg_Modify.Appearance.Options.UseFont = true;
			this.simpleButton_MedReg_Modify.Appearance.Options.UseForeColor = true;
			this.simpleButton_MedReg_Modify.Enabled = false;
			this.simpleButton_MedReg_Modify.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton_MedReg_Modify.Image")));
			this.simpleButton_MedReg_Modify.Location = new System.Drawing.Point(392, 8);
			this.simpleButton_MedReg_Modify.Name = "simpleButton_MedReg_Modify";
			this.simpleButton_MedReg_Modify.Size = new System.Drawing.Size(96, 26);
			this.simpleButton_MedReg_Modify.TabIndex = 22;
			this.simpleButton_MedReg_Modify.Tag = 4;
			this.simpleButton_MedReg_Modify.Text = "药品修改";
			this.simpleButton_MedReg_Modify.Click += new System.EventHandler(this.simpleButton_MedReg_Modify_Click);
			// 
			// simpleButton_MedReg_Reg
			// 
			this.simpleButton_MedReg_Reg.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.simpleButton_MedReg_Reg.Appearance.ForeColor = System.Drawing.Color.DarkMagenta;
			this.simpleButton_MedReg_Reg.Appearance.Options.UseFont = true;
			this.simpleButton_MedReg_Reg.Appearance.Options.UseForeColor = true;
			this.simpleButton_MedReg_Reg.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton_MedReg_Reg.Image")));
			this.simpleButton_MedReg_Reg.Location = new System.Drawing.Point(184, 8);
			this.simpleButton_MedReg_Reg.Name = "simpleButton_MedReg_Reg";
			this.simpleButton_MedReg_Reg.Size = new System.Drawing.Size(96, 26);
			this.simpleButton_MedReg_Reg.TabIndex = 20;
			this.simpleButton_MedReg_Reg.Tag = 4;
			this.simpleButton_MedReg_Reg.Text = "诊断登记";
			this.simpleButton_MedReg_Reg.Click += new System.EventHandler(this.simpleButton_MedReg_Reg_Click);
			// 
			// simpleButton_MedReg_Save
			// 
			this.simpleButton_MedReg_Save.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.simpleButton_MedReg_Save.Appearance.ForeColor = System.Drawing.Color.DarkMagenta;
			this.simpleButton_MedReg_Save.Appearance.Options.UseFont = true;
			this.simpleButton_MedReg_Save.Appearance.Options.UseForeColor = true;
			this.simpleButton_MedReg_Save.Enabled = false;
			this.simpleButton_MedReg_Save.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton_MedReg_Save.Image")));
			this.simpleButton_MedReg_Save.Location = new System.Drawing.Point(288, 8);
			this.simpleButton_MedReg_Save.Name = "simpleButton_MedReg_Save";
			this.simpleButton_MedReg_Save.Size = new System.Drawing.Size(96, 26);
			this.simpleButton_MedReg_Save.TabIndex = 20;
			this.simpleButton_MedReg_Save.Tag = 4;
			this.simpleButton_MedReg_Save.Text = "药品保存";
			this.simpleButton_MedReg_Save.Click += new System.EventHandler(this.simpleButton_MedReg_Save_Click);
			// 
			// simpleButton_MedReg_Back
			// 
			this.simpleButton_MedReg_Back.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.simpleButton_MedReg_Back.Appearance.ForeColor = System.Drawing.Color.DarkMagenta;
			this.simpleButton_MedReg_Back.Appearance.Options.UseFont = true;
			this.simpleButton_MedReg_Back.Appearance.Options.UseForeColor = true;
			this.simpleButton_MedReg_Back.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton_MedReg_Back.Image")));
			this.simpleButton_MedReg_Back.Location = new System.Drawing.Point(96, 8);
			this.simpleButton_MedReg_Back.Name = "simpleButton_MedReg_Back";
			this.simpleButton_MedReg_Back.Size = new System.Drawing.Size(80, 26);
			this.simpleButton_MedReg_Back.TabIndex = 21;
			this.simpleButton_MedReg_Back.Tag = 4;
			this.simpleButton_MedReg_Back.Text = "返  回";
			this.simpleButton_MedReg_Back.Click += new System.EventHandler(this.simpleButton_MedReg_Back_Click);
			// 
			// xtraTabPage9
			// 
			this.xtraTabPage9.Appearance.PageClient.BackColor = System.Drawing.Color.WhiteSmoke;
			this.xtraTabPage9.Appearance.PageClient.Options.UseBackColor = true;
			this.xtraTabPage9.Controls.Add(this.splitContainerControl10);
			this.xtraTabPage9.Name = "xtraTabPage9";
			this.xtraTabPage9.PageVisible = false;
			this.xtraTabPage9.Size = new System.Drawing.Size(768, 515);
			this.xtraTabPage9.Text = "服药记录";
			// 
			// splitContainerControl10
			// 
			this.splitContainerControl10.Dock = System.Windows.Forms.DockStyle.Fill;
			this.splitContainerControl10.Location = new System.Drawing.Point(0, 0);
			this.splitContainerControl10.Name = "splitContainerControl10";
			this.splitContainerControl10.Panel1.Controls.Add(this.groupControl_MedRec_AbnStuList);
			this.splitContainerControl10.Panel1.Controls.Add(this.groupControl_MedRec_Ser);
			this.splitContainerControl10.Panel1.Text = "splitContainerControl10_Panel1";
			this.splitContainerControl10.Panel2.Controls.Add(this.groupControl_MedRec_DiagAndDoseAdd);
			this.splitContainerControl10.Panel2.Controls.Add(this.groupControl_MedRec_DoseRec);
			this.splitContainerControl10.Panel2.Controls.Add(this.panelControl9);
			this.splitContainerControl10.Panel2.Text = "splitContainerControl10_Panel2";
			this.splitContainerControl10.Size = new System.Drawing.Size(768, 515);
			this.splitContainerControl10.SplitterPosition = 281;
			this.splitContainerControl10.TabIndex = 0;
			this.splitContainerControl10.Text = "splitContainerControl10";
			// 
			// groupControl_MedRec_AbnStuList
			// 
			this.groupControl_MedRec_AbnStuList.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.groupControl_MedRec_AbnStuList.AppearanceCaption.Options.UseFont = true;
			this.groupControl_MedRec_AbnStuList.Controls.Add(this.gridControl_MedRec_AbnStuList);
			this.groupControl_MedRec_AbnStuList.Controls.Add(this.notePanel_MedRec_AbnStuList);
			this.groupControl_MedRec_AbnStuList.Dock = System.Windows.Forms.DockStyle.Fill;
			this.groupControl_MedRec_AbnStuList.Location = new System.Drawing.Point(0, 256);
			this.groupControl_MedRec_AbnStuList.Name = "groupControl_MedRec_AbnStuList";
			this.groupControl_MedRec_AbnStuList.Size = new System.Drawing.Size(275, 253);
			this.groupControl_MedRec_AbnStuList.TabIndex = 3;
			this.groupControl_MedRec_AbnStuList.Text = "晨检异常幼儿列表";
			// 
			// gridControl_MedRec_AbnStuList
			// 
			this.gridControl_MedRec_AbnStuList.Dock = System.Windows.Forms.DockStyle.Fill;
			// 
			// gridControl_MedRec_AbnStuList.EmbeddedNavigator
			// 
			this.gridControl_MedRec_AbnStuList.EmbeddedNavigator.Name = "";
			this.gridControl_MedRec_AbnStuList.Location = new System.Drawing.Point(3, 41);
			this.gridControl_MedRec_AbnStuList.MainView = this.gridView10;
			this.gridControl_MedRec_AbnStuList.Name = "gridControl_MedRec_AbnStuList";
			this.gridControl_MedRec_AbnStuList.Size = new System.Drawing.Size(269, 209);
			this.gridControl_MedRec_AbnStuList.TabIndex = 59;
			this.gridControl_MedRec_AbnStuList.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
																														 this.gridView10});
			this.gridControl_MedRec_AbnStuList.DoubleClick += new System.EventHandler(this.gridControl_MedRec_AbnStuList_DoubleClick);
			// 
			// gridView10
			// 
			this.gridView10.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
																							  this.gridColumn39,
																							  this.gridColumn40,
																							  this.gridColumn41,
																							  this.gridColumn42,
																							  this.gridColumn43});
			this.gridView10.GridControl = this.gridControl_MedRec_AbnStuList;
			this.gridView10.Name = "gridView10";
			this.gridView10.OptionsCustomization.AllowFilter = false;
			this.gridView10.OptionsView.ShowFilterPanel = false;
			this.gridView10.OptionsView.ShowGroupPanel = false;
			// 
			// gridColumn39
			// 
			this.gridColumn39.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn39.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn39.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn39.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn39.Caption = "学号";
			this.gridColumn39.FieldName = "info_stuNumber";
			this.gridColumn39.Name = "gridColumn39";
			this.gridColumn39.OptionsColumn.AllowEdit = false;
			this.gridColumn39.OptionsColumn.AllowFocus = false;
			this.gridColumn39.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn39.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn39.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn39.OptionsColumn.AllowMove = false;
			this.gridColumn39.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn39.OptionsColumn.ReadOnly = true;
			this.gridColumn39.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn39.Visible = true;
			this.gridColumn39.VisibleIndex = 0;
			this.gridColumn39.Width = 48;
			// 
			// gridColumn40
			// 
			this.gridColumn40.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn40.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn40.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn40.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn40.Caption = "姓名";
			this.gridColumn40.FieldName = "info_stuName";
			this.gridColumn40.Name = "gridColumn40";
			this.gridColumn40.OptionsColumn.AllowEdit = false;
			this.gridColumn40.OptionsColumn.AllowFocus = false;
			this.gridColumn40.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn40.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn40.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn40.OptionsColumn.AllowMove = false;
			this.gridColumn40.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn40.OptionsColumn.ReadOnly = true;
			this.gridColumn40.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn40.Visible = true;
			this.gridColumn40.VisibleIndex = 1;
			this.gridColumn40.Width = 47;
			// 
			// gridColumn41
			// 
			this.gridColumn41.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn41.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn41.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn41.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn41.Caption = "班级";
			this.gridColumn41.FieldName = "info_className";
			this.gridColumn41.Name = "gridColumn41";
			this.gridColumn41.OptionsColumn.AllowEdit = false;
			this.gridColumn41.OptionsColumn.AllowFocus = false;
			this.gridColumn41.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn41.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn41.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn41.OptionsColumn.AllowMove = false;
			this.gridColumn41.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn41.OptionsColumn.ReadOnly = true;
			this.gridColumn41.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn41.Visible = true;
			this.gridColumn41.VisibleIndex = 2;
			this.gridColumn41.Width = 49;
			// 
			// gridColumn42
			// 
			this.gridColumn42.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn42.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn42.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn42.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn42.Caption = "登记日期";
			this.gridColumn42.DisplayFormat.FormatString = "yyyy-MM-dd HH:mm:ss";
			this.gridColumn42.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
			this.gridColumn42.FieldName = "register_Time";
			this.gridColumn42.Name = "gridColumn42";
			this.gridColumn42.OptionsColumn.AllowEdit = false;
			this.gridColumn42.OptionsColumn.AllowFocus = false;
			this.gridColumn42.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn42.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn42.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn42.OptionsColumn.AllowMove = false;
			this.gridColumn42.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn42.OptionsColumn.ReadOnly = true;
			this.gridColumn42.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn42.Visible = true;
			this.gridColumn42.VisibleIndex = 3;
			this.gridColumn42.Width = 57;
			// 
			// gridColumn43
			// 
			this.gridColumn43.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn43.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn43.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn43.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn43.Caption = "登记教师";
			this.gridColumn43.FieldName = "teacher_Sign";
			this.gridColumn43.Name = "gridColumn43";
			this.gridColumn43.OptionsColumn.AllowEdit = false;
			this.gridColumn43.OptionsColumn.AllowFocus = false;
			this.gridColumn43.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn43.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn43.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn43.OptionsColumn.AllowMove = false;
			this.gridColumn43.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn43.OptionsColumn.ReadOnly = true;
			this.gridColumn43.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn43.Visible = true;
			this.gridColumn43.VisibleIndex = 4;
			this.gridColumn43.Width = 63;
			// 
			// notePanel_MedRec_AbnStuList
			// 
			this.notePanel_MedRec_AbnStuList.BackColor = System.Drawing.Color.LightGoldenrodYellow;
			this.notePanel_MedRec_AbnStuList.Dock = System.Windows.Forms.DockStyle.Top;
			this.notePanel_MedRec_AbnStuList.ForeColor = System.Drawing.Color.OrangeRed;
			this.notePanel_MedRec_AbnStuList.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_MedRec_AbnStuList.Location = new System.Drawing.Point(3, 18);
			this.notePanel_MedRec_AbnStuList.MaxRows = 5;
			this.notePanel_MedRec_AbnStuList.Name = "notePanel_MedRec_AbnStuList";
			this.notePanel_MedRec_AbnStuList.ParentAutoHeight = true;
			this.notePanel_MedRec_AbnStuList.Size = new System.Drawing.Size(269, 23);
			this.notePanel_MedRec_AbnStuList.TabIndex = 58;
			this.notePanel_MedRec_AbnStuList.TabStop = false;
			this.notePanel_MedRec_AbnStuList.Text = "双击显示特定幼儿";
			// 
			// groupControl_MedRec_Ser
			// 
			this.groupControl_MedRec_Ser.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.groupControl_MedRec_Ser.AppearanceCaption.Options.UseFont = true;
			this.groupControl_MedRec_Ser.Controls.Add(this.textEdit_MedRec_Number);
			this.groupControl_MedRec_Ser.Controls.Add(this.textEdit_MedRec_Name);
			this.groupControl_MedRec_Ser.Controls.Add(this.dateEdit_MedRec_EndDate);
			this.groupControl_MedRec_Ser.Controls.Add(this.notePanel_MedRec_EndDate);
			this.groupControl_MedRec_Ser.Controls.Add(this.dateEdit_MedRec_BegDate);
			this.groupControl_MedRec_Ser.Controls.Add(this.notePanel_MedRec_BegDate);
			this.groupControl_MedRec_Ser.Controls.Add(this.notePanel_MedRec_Ser);
			this.groupControl_MedRec_Ser.Controls.Add(this.textEdit_MedRec_DoseRecDiaID);
			this.groupControl_MedRec_Ser.Controls.Add(this.textEdit_MedRec_AbnDiaID);
			this.groupControl_MedRec_Ser.Controls.Add(this.comboBoxEdit_MedRec_Class);
			this.groupControl_MedRec_Ser.Controls.Add(this.notePanel_MedRec_Class);
			this.groupControl_MedRec_Ser.Controls.Add(this.comboBoxEdit_MedRec_Grade);
			this.groupControl_MedRec_Ser.Controls.Add(this.notePanel_MedRec_Grade);
			this.groupControl_MedRec_Ser.Controls.Add(this.notePanel_MedRec_Number);
			this.groupControl_MedRec_Ser.Controls.Add(this.notePanel_MedRec_Name);
			this.groupControl_MedRec_Ser.Dock = System.Windows.Forms.DockStyle.Top;
			this.groupControl_MedRec_Ser.Location = new System.Drawing.Point(0, 0);
			this.groupControl_MedRec_Ser.Name = "groupControl_MedRec_Ser";
			this.groupControl_MedRec_Ser.Size = new System.Drawing.Size(275, 256);
			this.groupControl_MedRec_Ser.TabIndex = 2;
			this.groupControl_MedRec_Ser.Text = "晨检异常幼儿查询";
			// 
			// textEdit_MedRec_Number
			// 
			this.textEdit_MedRec_Number.EditValue = "";
			this.textEdit_MedRec_Number.Location = new System.Drawing.Point(144, 152);
			this.textEdit_MedRec_Number.Name = "textEdit_MedRec_Number";
			this.textEdit_MedRec_Number.Size = new System.Drawing.Size(88, 23);
			this.textEdit_MedRec_Number.TabIndex = 63;
			this.textEdit_MedRec_Number.EditValueChanged += new System.EventHandler(this.textEdit_MedRec_Number_EditValueChanged);
			// 
			// textEdit_MedRec_Name
			// 
			this.textEdit_MedRec_Name.EditValue = "";
			this.textEdit_MedRec_Name.Location = new System.Drawing.Point(144, 120);
			this.textEdit_MedRec_Name.Name = "textEdit_MedRec_Name";
			this.textEdit_MedRec_Name.Size = new System.Drawing.Size(88, 23);
			this.textEdit_MedRec_Name.TabIndex = 62;
			this.textEdit_MedRec_Name.EditValueChanged += new System.EventHandler(this.textEdit_MedRec_Name_EditValueChanged);
			// 
			// dateEdit_MedRec_EndDate
			// 
			this.dateEdit_MedRec_EndDate.EditValue = new System.DateTime(2005, 1, 24, 0, 0, 0, 0);
			this.dateEdit_MedRec_EndDate.Location = new System.Drawing.Point(144, 216);
			this.dateEdit_MedRec_EndDate.Name = "dateEdit_MedRec_EndDate";
			// 
			// dateEdit_MedRec_EndDate.Properties
			// 
			this.dateEdit_MedRec_EndDate.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																															new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.dateEdit_MedRec_EndDate.Properties.Mask.EditMask = "d";
			this.dateEdit_MedRec_EndDate.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.DateTime;
			this.dateEdit_MedRec_EndDate.Size = new System.Drawing.Size(88, 23);
			this.dateEdit_MedRec_EndDate.TabIndex = 61;
			// 
			// notePanel_MedRec_EndDate
			// 
			this.notePanel_MedRec_EndDate.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_MedRec_EndDate.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_MedRec_EndDate.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_MedRec_EndDate.ForeColor = System.Drawing.Color.Black;
			this.notePanel_MedRec_EndDate.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_MedRec_EndDate.Location = new System.Drawing.Point(40, 216);
			this.notePanel_MedRec_EndDate.MaxRows = 5;
			this.notePanel_MedRec_EndDate.Name = "notePanel_MedRec_EndDate";
			this.notePanel_MedRec_EndDate.ParentAutoHeight = true;
			this.notePanel_MedRec_EndDate.Size = new System.Drawing.Size(80, 22);
			this.notePanel_MedRec_EndDate.TabIndex = 60;
			this.notePanel_MedRec_EndDate.TabStop = false;
			this.notePanel_MedRec_EndDate.Text = "结束日期:";
			// 
			// dateEdit_MedRec_BegDate
			// 
			this.dateEdit_MedRec_BegDate.EditValue = new System.DateTime(2005, 1, 24, 0, 0, 0, 0);
			this.dateEdit_MedRec_BegDate.Location = new System.Drawing.Point(144, 184);
			this.dateEdit_MedRec_BegDate.Name = "dateEdit_MedRec_BegDate";
			// 
			// dateEdit_MedRec_BegDate.Properties
			// 
			this.dateEdit_MedRec_BegDate.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																															new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.dateEdit_MedRec_BegDate.Properties.Mask.EditMask = "d";
			this.dateEdit_MedRec_BegDate.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.DateTime;
			this.dateEdit_MedRec_BegDate.Size = new System.Drawing.Size(88, 23);
			this.dateEdit_MedRec_BegDate.TabIndex = 59;
			// 
			// notePanel_MedRec_BegDate
			// 
			this.notePanel_MedRec_BegDate.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_MedRec_BegDate.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_MedRec_BegDate.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_MedRec_BegDate.ForeColor = System.Drawing.Color.Black;
			this.notePanel_MedRec_BegDate.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_MedRec_BegDate.Location = new System.Drawing.Point(40, 184);
			this.notePanel_MedRec_BegDate.MaxRows = 5;
			this.notePanel_MedRec_BegDate.Name = "notePanel_MedRec_BegDate";
			this.notePanel_MedRec_BegDate.ParentAutoHeight = true;
			this.notePanel_MedRec_BegDate.Size = new System.Drawing.Size(80, 22);
			this.notePanel_MedRec_BegDate.TabIndex = 58;
			this.notePanel_MedRec_BegDate.TabStop = false;
			this.notePanel_MedRec_BegDate.Text = "起始日期:";
			// 
			// notePanel_MedRec_Ser
			// 
			this.notePanel_MedRec_Ser.BackColor = System.Drawing.Color.LightGoldenrodYellow;
			this.notePanel_MedRec_Ser.Dock = System.Windows.Forms.DockStyle.Top;
			this.notePanel_MedRec_Ser.ForeColor = System.Drawing.Color.OrangeRed;
			this.notePanel_MedRec_Ser.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_MedRec_Ser.Location = new System.Drawing.Point(3, 18);
			this.notePanel_MedRec_Ser.MaxRows = 5;
			this.notePanel_MedRec_Ser.Name = "notePanel_MedRec_Ser";
			this.notePanel_MedRec_Ser.ParentAutoHeight = true;
			this.notePanel_MedRec_Ser.Size = new System.Drawing.Size(269, 23);
			this.notePanel_MedRec_Ser.TabIndex = 57;
			this.notePanel_MedRec_Ser.TabStop = false;
			this.notePanel_MedRec_Ser.Text = "检索您的幼儿";
			// 
			// textEdit_MedRec_DoseRecDiaID
			// 
			this.textEdit_MedRec_DoseRecDiaID.EditValue = "";
			this.textEdit_MedRec_DoseRecDiaID.Location = new System.Drawing.Point(192, 160);
			this.textEdit_MedRec_DoseRecDiaID.Name = "textEdit_MedRec_DoseRecDiaID";
			// 
			// textEdit_MedRec_DoseRecDiaID.Properties
			// 
			this.textEdit_MedRec_DoseRecDiaID.Properties.AutoHeight = false;
			this.textEdit_MedRec_DoseRecDiaID.Size = new System.Drawing.Size(8, 8);
			this.textEdit_MedRec_DoseRecDiaID.TabIndex = 56;
			// 
			// textEdit_MedRec_AbnDiaID
			// 
			this.textEdit_MedRec_AbnDiaID.EditValue = "";
			this.textEdit_MedRec_AbnDiaID.Location = new System.Drawing.Point(184, 128);
			this.textEdit_MedRec_AbnDiaID.Name = "textEdit_MedRec_AbnDiaID";
			// 
			// textEdit_MedRec_AbnDiaID.Properties
			// 
			this.textEdit_MedRec_AbnDiaID.Properties.AutoHeight = false;
			this.textEdit_MedRec_AbnDiaID.Size = new System.Drawing.Size(8, 8);
			this.textEdit_MedRec_AbnDiaID.TabIndex = 55;
			// 
			// comboBoxEdit_MedRec_Class
			// 
			this.comboBoxEdit_MedRec_Class.EditValue = "全部";
			this.comboBoxEdit_MedRec_Class.Location = new System.Drawing.Point(144, 88);
			this.comboBoxEdit_MedRec_Class.Name = "comboBoxEdit_MedRec_Class";
			// 
			// comboBoxEdit_MedRec_Class.Properties
			// 
			this.comboBoxEdit_MedRec_Class.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																															  new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.comboBoxEdit_MedRec_Class.Properties.Items.AddRange(new object[] {
																					  "全部"});
			this.comboBoxEdit_MedRec_Class.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
			this.comboBoxEdit_MedRec_Class.Size = new System.Drawing.Size(88, 23);
			this.comboBoxEdit_MedRec_Class.TabIndex = 54;
			this.comboBoxEdit_MedRec_Class.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit_MedRec_Class_SelectedIndexChanged);
			// 
			// notePanel_MedRec_Class
			// 
			this.notePanel_MedRec_Class.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_MedRec_Class.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_MedRec_Class.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_MedRec_Class.ForeColor = System.Drawing.Color.Black;
			this.notePanel_MedRec_Class.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_MedRec_Class.Location = new System.Drawing.Point(40, 88);
			this.notePanel_MedRec_Class.MaxRows = 5;
			this.notePanel_MedRec_Class.Name = "notePanel_MedRec_Class";
			this.notePanel_MedRec_Class.ParentAutoHeight = true;
			this.notePanel_MedRec_Class.Size = new System.Drawing.Size(80, 22);
			this.notePanel_MedRec_Class.TabIndex = 53;
			this.notePanel_MedRec_Class.TabStop = false;
			this.notePanel_MedRec_Class.Text = "  班  级:";
			// 
			// comboBoxEdit_MedRec_Grade
			// 
			this.comboBoxEdit_MedRec_Grade.EditValue = "全部";
			this.comboBoxEdit_MedRec_Grade.Location = new System.Drawing.Point(144, 56);
			this.comboBoxEdit_MedRec_Grade.Name = "comboBoxEdit_MedRec_Grade";
			// 
			// comboBoxEdit_MedRec_Grade.Properties
			// 
			this.comboBoxEdit_MedRec_Grade.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																															  new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.comboBoxEdit_MedRec_Grade.Properties.Items.AddRange(new object[] {
																					  "全部"});
			this.comboBoxEdit_MedRec_Grade.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
			this.comboBoxEdit_MedRec_Grade.Size = new System.Drawing.Size(88, 23);
			this.comboBoxEdit_MedRec_Grade.TabIndex = 52;
			this.comboBoxEdit_MedRec_Grade.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit_MedRec_Grade_SelectedIndexChanged);
			// 
			// notePanel_MedRec_Grade
			// 
			this.notePanel_MedRec_Grade.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_MedRec_Grade.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_MedRec_Grade.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_MedRec_Grade.ForeColor = System.Drawing.Color.Black;
			this.notePanel_MedRec_Grade.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_MedRec_Grade.Location = new System.Drawing.Point(40, 56);
			this.notePanel_MedRec_Grade.MaxRows = 5;
			this.notePanel_MedRec_Grade.Name = "notePanel_MedRec_Grade";
			this.notePanel_MedRec_Grade.ParentAutoHeight = true;
			this.notePanel_MedRec_Grade.Size = new System.Drawing.Size(80, 22);
			this.notePanel_MedRec_Grade.TabIndex = 51;
			this.notePanel_MedRec_Grade.TabStop = false;
			this.notePanel_MedRec_Grade.Text = "  年  级:";
			// 
			// notePanel_MedRec_Number
			// 
			this.notePanel_MedRec_Number.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_MedRec_Number.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_MedRec_Number.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_MedRec_Number.ForeColor = System.Drawing.Color.Black;
			this.notePanel_MedRec_Number.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_MedRec_Number.Location = new System.Drawing.Point(40, 152);
			this.notePanel_MedRec_Number.MaxRows = 5;
			this.notePanel_MedRec_Number.Name = "notePanel_MedRec_Number";
			this.notePanel_MedRec_Number.ParentAutoHeight = true;
			this.notePanel_MedRec_Number.Size = new System.Drawing.Size(80, 22);
			this.notePanel_MedRec_Number.TabIndex = 50;
			this.notePanel_MedRec_Number.TabStop = false;
			this.notePanel_MedRec_Number.Text = "  学  号:";
			// 
			// notePanel_MedRec_Name
			// 
			this.notePanel_MedRec_Name.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_MedRec_Name.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_MedRec_Name.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_MedRec_Name.ForeColor = System.Drawing.Color.Black;
			this.notePanel_MedRec_Name.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_MedRec_Name.Location = new System.Drawing.Point(40, 120);
			this.notePanel_MedRec_Name.MaxRows = 5;
			this.notePanel_MedRec_Name.Name = "notePanel_MedRec_Name";
			this.notePanel_MedRec_Name.ParentAutoHeight = true;
			this.notePanel_MedRec_Name.Size = new System.Drawing.Size(80, 22);
			this.notePanel_MedRec_Name.TabIndex = 49;
			this.notePanel_MedRec_Name.TabStop = false;
			this.notePanel_MedRec_Name.Text = "  姓  名:";
			// 
			// groupControl_MedRec_DiagAndDoseAdd
			// 
			this.groupControl_MedRec_DiagAndDoseAdd.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.groupControl_MedRec_DiagAndDoseAdd.AppearanceCaption.Options.UseFont = true;
			this.groupControl_MedRec_DiagAndDoseAdd.Controls.Add(this.groupControl_MedRec_DoseAdd);
			this.groupControl_MedRec_DiagAndDoseAdd.Controls.Add(this.groupControl_MedRec_DiagInfo);
			this.groupControl_MedRec_DiagAndDoseAdd.Dock = System.Windows.Forms.DockStyle.Fill;
			this.groupControl_MedRec_DiagAndDoseAdd.Location = new System.Drawing.Point(0, 48);
			this.groupControl_MedRec_DiagAndDoseAdd.Name = "groupControl_MedRec_DiagAndDoseAdd";
			this.groupControl_MedRec_DiagAndDoseAdd.Size = new System.Drawing.Size(477, 461);
			this.groupControl_MedRec_DiagAndDoseAdd.TabIndex = 2;
			this.groupControl_MedRec_DiagAndDoseAdd.Text = "晨检诊断及服药添加";
			this.groupControl_MedRec_DiagAndDoseAdd.Visible = false;
			// 
			// groupControl_MedRec_DoseAdd
			// 
			this.groupControl_MedRec_DoseAdd.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.groupControl_MedRec_DoseAdd.AppearanceCaption.Options.UseFont = true;
			this.groupControl_MedRec_DoseAdd.Controls.Add(this.notePanel_MedRec_TakeRule);
			this.groupControl_MedRec_DoseAdd.Controls.Add(this.listBoxControl_MedRec_MedCarrInfo);
			this.groupControl_MedRec_DoseAdd.Controls.Add(this.comboBoxEdit_MedRec_TakeRule);
			this.groupControl_MedRec_DoseAdd.Controls.Add(this.timeEdit_MedRec_TakeTime);
			this.groupControl_MedRec_DoseAdd.Controls.Add(this.notePanel_MedRec_TakeDate);
			this.groupControl_MedRec_DoseAdd.Controls.Add(this.textEdit_MedRec_MedTake);
			this.groupControl_MedRec_DoseAdd.Controls.Add(this.notePanel_MedRec_MedTake);
			this.groupControl_MedRec_DoseAdd.Controls.Add(this.textEdit_MedRec_MedName);
			this.groupControl_MedRec_DoseAdd.Controls.Add(this.notePanel_MedRec_MedName);
			this.groupControl_MedRec_DoseAdd.Dock = System.Windows.Forms.DockStyle.Fill;
			this.groupControl_MedRec_DoseAdd.Location = new System.Drawing.Point(3, 272);
			this.groupControl_MedRec_DoseAdd.Name = "groupControl_MedRec_DoseAdd";
			this.groupControl_MedRec_DoseAdd.Size = new System.Drawing.Size(471, 186);
			this.groupControl_MedRec_DoseAdd.TabIndex = 3;
			this.groupControl_MedRec_DoseAdd.Text = "添加服药记录";
			// 
			// notePanel_MedRec_TakeRule
			// 
			this.notePanel_MedRec_TakeRule.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_MedRec_TakeRule.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_MedRec_TakeRule.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_MedRec_TakeRule.ForeColor = System.Drawing.Color.Black;
			this.notePanel_MedRec_TakeRule.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_MedRec_TakeRule.Location = new System.Drawing.Point(224, 128);
			this.notePanel_MedRec_TakeRule.MaxRows = 5;
			this.notePanel_MedRec_TakeRule.Name = "notePanel_MedRec_TakeRule";
			this.notePanel_MedRec_TakeRule.ParentAutoHeight = true;
			this.notePanel_MedRec_TakeRule.Size = new System.Drawing.Size(80, 22);
			this.notePanel_MedRec_TakeRule.TabIndex = 65;
			this.notePanel_MedRec_TakeRule.TabStop = false;
			this.notePanel_MedRec_TakeRule.Text = "服药规定:";
			// 
			// listBoxControl_MedRec_MedCarrInfo
			// 
			this.listBoxControl_MedRec_MedCarrInfo.ItemHeight = 16;
			this.listBoxControl_MedRec_MedCarrInfo.Location = new System.Drawing.Point(56, 32);
			this.listBoxControl_MedRec_MedCarrInfo.Name = "listBoxControl_MedRec_MedCarrInfo";
			this.listBoxControl_MedRec_MedCarrInfo.Size = new System.Drawing.Size(152, 120);
			this.listBoxControl_MedRec_MedCarrInfo.TabIndex = 64;
			this.listBoxControl_MedRec_MedCarrInfo.DoubleClick += new System.EventHandler(this.listBoxControl_MedRec_MedCarrInfo_DoubleClick);
			// 
			// comboBoxEdit_MedRec_TakeRule
			// 
			this.comboBoxEdit_MedRec_TakeRule.EditValue = "";
			this.comboBoxEdit_MedRec_TakeRule.Location = new System.Drawing.Point(312, 128);
			this.comboBoxEdit_MedRec_TakeRule.Name = "comboBoxEdit_MedRec_TakeRule";
			// 
			// comboBoxEdit_MedRec_TakeRule.Properties
			// 
			this.comboBoxEdit_MedRec_TakeRule.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																																 new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.comboBoxEdit_MedRec_TakeRule.Properties.Items.AddRange(new object[] {
																						 "饭前服用",
																						 "饭后服用"});
			this.comboBoxEdit_MedRec_TakeRule.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
			this.comboBoxEdit_MedRec_TakeRule.Size = new System.Drawing.Size(80, 23);
			this.comboBoxEdit_MedRec_TakeRule.TabIndex = 63;
			// 
			// timeEdit_MedRec_TakeTime
			// 
			this.timeEdit_MedRec_TakeTime.EditValue = new System.DateTime(2005, 1, 24, 0, 0, 0, 0);
			this.timeEdit_MedRec_TakeTime.Location = new System.Drawing.Point(312, 96);
			this.timeEdit_MedRec_TakeTime.Name = "timeEdit_MedRec_TakeTime";
			// 
			// timeEdit_MedRec_TakeTime.Properties
			// 
			this.timeEdit_MedRec_TakeTime.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																															 new DevExpress.XtraEditors.Controls.EditorButton()});
			this.timeEdit_MedRec_TakeTime.Properties.DisplayFormat.FormatString = "HH:mm:ss";
			this.timeEdit_MedRec_TakeTime.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
			this.timeEdit_MedRec_TakeTime.Properties.Mask.EditMask = "T";
			this.timeEdit_MedRec_TakeTime.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.DateTime;
			this.timeEdit_MedRec_TakeTime.Properties.UseCtrlIncrement = true;
			this.timeEdit_MedRec_TakeTime.Size = new System.Drawing.Size(80, 23);
			this.timeEdit_MedRec_TakeTime.TabIndex = 61;
			// 
			// notePanel_MedRec_TakeDate
			// 
			this.notePanel_MedRec_TakeDate.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_MedRec_TakeDate.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_MedRec_TakeDate.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_MedRec_TakeDate.ForeColor = System.Drawing.Color.Black;
			this.notePanel_MedRec_TakeDate.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_MedRec_TakeDate.Location = new System.Drawing.Point(224, 96);
			this.notePanel_MedRec_TakeDate.MaxRows = 5;
			this.notePanel_MedRec_TakeDate.Name = "notePanel_MedRec_TakeDate";
			this.notePanel_MedRec_TakeDate.ParentAutoHeight = true;
			this.notePanel_MedRec_TakeDate.Size = new System.Drawing.Size(80, 22);
			this.notePanel_MedRec_TakeDate.TabIndex = 60;
			this.notePanel_MedRec_TakeDate.TabStop = false;
			this.notePanel_MedRec_TakeDate.Text = "服药时间:";
			// 
			// textEdit_MedRec_MedTake
			// 
			this.textEdit_MedRec_MedTake.EditValue = "";
			this.textEdit_MedRec_MedTake.Location = new System.Drawing.Point(312, 64);
			this.textEdit_MedRec_MedTake.Name = "textEdit_MedRec_MedTake";
			this.textEdit_MedRec_MedTake.Size = new System.Drawing.Size(80, 23);
			this.textEdit_MedRec_MedTake.TabIndex = 59;
			// 
			// notePanel_MedRec_MedTake
			// 
			this.notePanel_MedRec_MedTake.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_MedRec_MedTake.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_MedRec_MedTake.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_MedRec_MedTake.ForeColor = System.Drawing.Color.Black;
			this.notePanel_MedRec_MedTake.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_MedRec_MedTake.Location = new System.Drawing.Point(224, 64);
			this.notePanel_MedRec_MedTake.MaxRows = 5;
			this.notePanel_MedRec_MedTake.Name = "notePanel_MedRec_MedTake";
			this.notePanel_MedRec_MedTake.ParentAutoHeight = true;
			this.notePanel_MedRec_MedTake.Size = new System.Drawing.Size(80, 22);
			this.notePanel_MedRec_MedTake.TabIndex = 58;
			this.notePanel_MedRec_MedTake.TabStop = false;
			this.notePanel_MedRec_MedTake.Text = "服药剂量:";
			// 
			// textEdit_MedRec_MedName
			// 
			this.textEdit_MedRec_MedName.EditValue = "";
			this.textEdit_MedRec_MedName.Location = new System.Drawing.Point(312, 32);
			this.textEdit_MedRec_MedName.Name = "textEdit_MedRec_MedName";
			this.textEdit_MedRec_MedName.Size = new System.Drawing.Size(80, 23);
			this.textEdit_MedRec_MedName.TabIndex = 57;
			// 
			// notePanel_MedRec_MedName
			// 
			this.notePanel_MedRec_MedName.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_MedRec_MedName.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_MedRec_MedName.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_MedRec_MedName.ForeColor = System.Drawing.Color.Black;
			this.notePanel_MedRec_MedName.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_MedRec_MedName.Location = new System.Drawing.Point(224, 32);
			this.notePanel_MedRec_MedName.MaxRows = 5;
			this.notePanel_MedRec_MedName.Name = "notePanel_MedRec_MedName";
			this.notePanel_MedRec_MedName.ParentAutoHeight = true;
			this.notePanel_MedRec_MedName.Size = new System.Drawing.Size(80, 22);
			this.notePanel_MedRec_MedName.TabIndex = 53;
			this.notePanel_MedRec_MedName.TabStop = false;
			this.notePanel_MedRec_MedName.Text = "服药名称:";
			// 
			// groupControl_MedRec_DiagInfo
			// 
			this.groupControl_MedRec_DiagInfo.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.groupControl_MedRec_DiagInfo.AppearanceCaption.Options.UseFont = true;
			this.groupControl_MedRec_DiagInfo.Controls.Add(this.textEdit_MedRec_Diag);
			this.groupControl_MedRec_DiagInfo.Controls.Add(this.textEdit_MedRec_Else);
			this.groupControl_MedRec_DiagInfo.Controls.Add(this.textEdit_MedRec_FacialSym);
			this.groupControl_MedRec_DiagInfo.Controls.Add(this.notePanel_MedRec_Else);
			this.groupControl_MedRec_DiagInfo.Controls.Add(this.notePanel_MedRec_FacialSym);
			this.groupControl_MedRec_DiagInfo.Controls.Add(this.notePanel_MedRec_SkinSym);
			this.groupControl_MedRec_DiagInfo.Controls.Add(this.notePanel_MedRec_AbdomenSym);
			this.groupControl_MedRec_DiagInfo.Controls.Add(this.notePanel_MedRec_EnteronSym);
			this.groupControl_MedRec_DiagInfo.Controls.Add(this.textEdit_MedRec_SkinSym);
			this.groupControl_MedRec_DiagInfo.Controls.Add(this.textEdit_MedRec_AbdomenSym);
			this.groupControl_MedRec_DiagInfo.Controls.Add(this.textEdit_MedRec_EnteronSym);
			this.groupControl_MedRec_DiagInfo.Controls.Add(this.textEdit_MedRec_ThroatSym);
			this.groupControl_MedRec_DiagInfo.Controls.Add(this.notePanel_MedRec_ThroatSym);
			this.groupControl_MedRec_DiagInfo.Controls.Add(this.textEdit_MedRec_LungSym);
			this.groupControl_MedRec_DiagInfo.Controls.Add(this.notePanel_MedRec_LungSym);
			this.groupControl_MedRec_DiagInfo.Controls.Add(this.textEdit_MedRec_UpperSym);
			this.groupControl_MedRec_DiagInfo.Controls.Add(this.notePanel_MedRec_UpperSym);
			this.groupControl_MedRec_DiagInfo.Controls.Add(this.notePanel_MedRec_Diag);
			this.groupControl_MedRec_DiagInfo.Dock = System.Windows.Forms.DockStyle.Top;
			this.groupControl_MedRec_DiagInfo.Location = new System.Drawing.Point(3, 18);
			this.groupControl_MedRec_DiagInfo.Name = "groupControl_MedRec_DiagInfo";
			this.groupControl_MedRec_DiagInfo.Size = new System.Drawing.Size(471, 254);
			this.groupControl_MedRec_DiagInfo.TabIndex = 2;
			this.groupControl_MedRec_DiagInfo.Text = "诊断信息";
			// 
			// textEdit_MedRec_Diag
			// 
			this.textEdit_MedRec_Diag.EditValue = "";
			this.textEdit_MedRec_Diag.Location = new System.Drawing.Point(176, 24);
			this.textEdit_MedRec_Diag.Name = "textEdit_MedRec_Diag";
			// 
			// textEdit_MedRec_Diag.Properties
			// 
			this.textEdit_MedRec_Diag.Properties.Enabled = false;
			this.textEdit_MedRec_Diag.Size = new System.Drawing.Size(256, 23);
			this.textEdit_MedRec_Diag.TabIndex = 71;
			// 
			// textEdit_MedRec_Else
			// 
			this.textEdit_MedRec_Else.EditValue = "";
			this.textEdit_MedRec_Else.Location = new System.Drawing.Point(176, 216);
			this.textEdit_MedRec_Else.Name = "textEdit_MedRec_Else";
			// 
			// textEdit_MedRec_Else.Properties
			// 
			this.textEdit_MedRec_Else.Properties.Enabled = false;
			this.textEdit_MedRec_Else.Size = new System.Drawing.Size(256, 23);
			this.textEdit_MedRec_Else.TabIndex = 70;
			// 
			// textEdit_MedRec_FacialSym
			// 
			this.textEdit_MedRec_FacialSym.EditValue = "";
			this.textEdit_MedRec_FacialSym.Location = new System.Drawing.Point(176, 192);
			this.textEdit_MedRec_FacialSym.Name = "textEdit_MedRec_FacialSym";
			// 
			// textEdit_MedRec_FacialSym.Properties
			// 
			this.textEdit_MedRec_FacialSym.Properties.Enabled = false;
			this.textEdit_MedRec_FacialSym.Size = new System.Drawing.Size(256, 23);
			this.textEdit_MedRec_FacialSym.TabIndex = 69;
			// 
			// notePanel_MedRec_Else
			// 
			this.notePanel_MedRec_Else.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_MedRec_Else.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_MedRec_Else.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_MedRec_Else.ForeColor = System.Drawing.Color.Black;
			this.notePanel_MedRec_Else.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_MedRec_Else.Location = new System.Drawing.Point(64, 216);
			this.notePanel_MedRec_Else.MaxRows = 5;
			this.notePanel_MedRec_Else.Name = "notePanel_MedRec_Else";
			this.notePanel_MedRec_Else.ParentAutoHeight = true;
			this.notePanel_MedRec_Else.Size = new System.Drawing.Size(96, 22);
			this.notePanel_MedRec_Else.TabIndex = 68;
			this.notePanel_MedRec_Else.TabStop = false;
			this.notePanel_MedRec_Else.Text = "  其他症状:";
			// 
			// notePanel_MedRec_FacialSym
			// 
			this.notePanel_MedRec_FacialSym.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_MedRec_FacialSym.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_MedRec_FacialSym.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_MedRec_FacialSym.ForeColor = System.Drawing.Color.Black;
			this.notePanel_MedRec_FacialSym.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_MedRec_FacialSym.Location = new System.Drawing.Point(64, 192);
			this.notePanel_MedRec_FacialSym.MaxRows = 5;
			this.notePanel_MedRec_FacialSym.Name = "notePanel_MedRec_FacialSym";
			this.notePanel_MedRec_FacialSym.ParentAutoHeight = true;
			this.notePanel_MedRec_FacialSym.Size = new System.Drawing.Size(96, 22);
			this.notePanel_MedRec_FacialSym.TabIndex = 67;
			this.notePanel_MedRec_FacialSym.TabStop = false;
			this.notePanel_MedRec_FacialSym.Text = "  五官症状:";
			// 
			// notePanel_MedRec_SkinSym
			// 
			this.notePanel_MedRec_SkinSym.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_MedRec_SkinSym.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_MedRec_SkinSym.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_MedRec_SkinSym.ForeColor = System.Drawing.Color.Black;
			this.notePanel_MedRec_SkinSym.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_MedRec_SkinSym.Location = new System.Drawing.Point(64, 168);
			this.notePanel_MedRec_SkinSym.MaxRows = 5;
			this.notePanel_MedRec_SkinSym.Name = "notePanel_MedRec_SkinSym";
			this.notePanel_MedRec_SkinSym.ParentAutoHeight = true;
			this.notePanel_MedRec_SkinSym.Size = new System.Drawing.Size(96, 22);
			this.notePanel_MedRec_SkinSym.TabIndex = 66;
			this.notePanel_MedRec_SkinSym.TabStop = false;
			this.notePanel_MedRec_SkinSym.Text = "  皮肤症状:";
			// 
			// notePanel_MedRec_AbdomenSym
			// 
			this.notePanel_MedRec_AbdomenSym.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_MedRec_AbdomenSym.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_MedRec_AbdomenSym.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_MedRec_AbdomenSym.ForeColor = System.Drawing.Color.Black;
			this.notePanel_MedRec_AbdomenSym.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_MedRec_AbdomenSym.Location = new System.Drawing.Point(64, 144);
			this.notePanel_MedRec_AbdomenSym.MaxRows = 5;
			this.notePanel_MedRec_AbdomenSym.Name = "notePanel_MedRec_AbdomenSym";
			this.notePanel_MedRec_AbdomenSym.ParentAutoHeight = true;
			this.notePanel_MedRec_AbdomenSym.Size = new System.Drawing.Size(96, 22);
			this.notePanel_MedRec_AbdomenSym.TabIndex = 65;
			this.notePanel_MedRec_AbdomenSym.TabStop = false;
			this.notePanel_MedRec_AbdomenSym.Text = "  腹部症状:";
			// 
			// notePanel_MedRec_EnteronSym
			// 
			this.notePanel_MedRec_EnteronSym.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_MedRec_EnteronSym.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_MedRec_EnteronSym.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_MedRec_EnteronSym.ForeColor = System.Drawing.Color.Black;
			this.notePanel_MedRec_EnteronSym.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_MedRec_EnteronSym.Location = new System.Drawing.Point(64, 120);
			this.notePanel_MedRec_EnteronSym.MaxRows = 5;
			this.notePanel_MedRec_EnteronSym.Name = "notePanel_MedRec_EnteronSym";
			this.notePanel_MedRec_EnteronSym.ParentAutoHeight = true;
			this.notePanel_MedRec_EnteronSym.Size = new System.Drawing.Size(96, 22);
			this.notePanel_MedRec_EnteronSym.TabIndex = 64;
			this.notePanel_MedRec_EnteronSym.TabStop = false;
			this.notePanel_MedRec_EnteronSym.Text = "消化道症状:";
			// 
			// textEdit_MedRec_SkinSym
			// 
			this.textEdit_MedRec_SkinSym.EditValue = "";
			this.textEdit_MedRec_SkinSym.Location = new System.Drawing.Point(176, 168);
			this.textEdit_MedRec_SkinSym.Name = "textEdit_MedRec_SkinSym";
			// 
			// textEdit_MedRec_SkinSym.Properties
			// 
			this.textEdit_MedRec_SkinSym.Properties.Enabled = false;
			this.textEdit_MedRec_SkinSym.Size = new System.Drawing.Size(256, 23);
			this.textEdit_MedRec_SkinSym.TabIndex = 63;
			// 
			// textEdit_MedRec_AbdomenSym
			// 
			this.textEdit_MedRec_AbdomenSym.EditValue = "";
			this.textEdit_MedRec_AbdomenSym.Location = new System.Drawing.Point(176, 144);
			this.textEdit_MedRec_AbdomenSym.Name = "textEdit_MedRec_AbdomenSym";
			// 
			// textEdit_MedRec_AbdomenSym.Properties
			// 
			this.textEdit_MedRec_AbdomenSym.Properties.Enabled = false;
			this.textEdit_MedRec_AbdomenSym.Size = new System.Drawing.Size(256, 23);
			this.textEdit_MedRec_AbdomenSym.TabIndex = 62;
			// 
			// textEdit_MedRec_EnteronSym
			// 
			this.textEdit_MedRec_EnteronSym.EditValue = "";
			this.textEdit_MedRec_EnteronSym.Location = new System.Drawing.Point(176, 120);
			this.textEdit_MedRec_EnteronSym.Name = "textEdit_MedRec_EnteronSym";
			// 
			// textEdit_MedRec_EnteronSym.Properties
			// 
			this.textEdit_MedRec_EnteronSym.Properties.Enabled = false;
			this.textEdit_MedRec_EnteronSym.Size = new System.Drawing.Size(256, 23);
			this.textEdit_MedRec_EnteronSym.TabIndex = 61;
			// 
			// textEdit_MedRec_ThroatSym
			// 
			this.textEdit_MedRec_ThroatSym.EditValue = "";
			this.textEdit_MedRec_ThroatSym.Location = new System.Drawing.Point(176, 96);
			this.textEdit_MedRec_ThroatSym.Name = "textEdit_MedRec_ThroatSym";
			// 
			// textEdit_MedRec_ThroatSym.Properties
			// 
			this.textEdit_MedRec_ThroatSym.Properties.Enabled = false;
			this.textEdit_MedRec_ThroatSym.Size = new System.Drawing.Size(256, 23);
			this.textEdit_MedRec_ThroatSym.TabIndex = 60;
			// 
			// notePanel_MedRec_ThroatSym
			// 
			this.notePanel_MedRec_ThroatSym.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_MedRec_ThroatSym.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_MedRec_ThroatSym.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_MedRec_ThroatSym.ForeColor = System.Drawing.Color.Black;
			this.notePanel_MedRec_ThroatSym.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_MedRec_ThroatSym.Location = new System.Drawing.Point(64, 96);
			this.notePanel_MedRec_ThroatSym.MaxRows = 5;
			this.notePanel_MedRec_ThroatSym.Name = "notePanel_MedRec_ThroatSym";
			this.notePanel_MedRec_ThroatSym.ParentAutoHeight = true;
			this.notePanel_MedRec_ThroatSym.Size = new System.Drawing.Size(96, 22);
			this.notePanel_MedRec_ThroatSym.TabIndex = 59;
			this.notePanel_MedRec_ThroatSym.TabStop = false;
			this.notePanel_MedRec_ThroatSym.Text = "咽喉部症状:";
			// 
			// textEdit_MedRec_LungSym
			// 
			this.textEdit_MedRec_LungSym.EditValue = "";
			this.textEdit_MedRec_LungSym.Location = new System.Drawing.Point(176, 72);
			this.textEdit_MedRec_LungSym.Name = "textEdit_MedRec_LungSym";
			// 
			// textEdit_MedRec_LungSym.Properties
			// 
			this.textEdit_MedRec_LungSym.Properties.Enabled = false;
			this.textEdit_MedRec_LungSym.Size = new System.Drawing.Size(256, 23);
			this.textEdit_MedRec_LungSym.TabIndex = 58;
			// 
			// notePanel_MedRec_LungSym
			// 
			this.notePanel_MedRec_LungSym.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_MedRec_LungSym.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_MedRec_LungSym.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_MedRec_LungSym.ForeColor = System.Drawing.Color.Black;
			this.notePanel_MedRec_LungSym.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_MedRec_LungSym.Location = new System.Drawing.Point(64, 72);
			this.notePanel_MedRec_LungSym.MaxRows = 5;
			this.notePanel_MedRec_LungSym.Name = "notePanel_MedRec_LungSym";
			this.notePanel_MedRec_LungSym.ParentAutoHeight = true;
			this.notePanel_MedRec_LungSym.Size = new System.Drawing.Size(96, 22);
			this.notePanel_MedRec_LungSym.TabIndex = 57;
			this.notePanel_MedRec_LungSym.TabStop = false;
			this.notePanel_MedRec_LungSym.Text = "  肺部症状:";
			// 
			// textEdit_MedRec_UpperSym
			// 
			this.textEdit_MedRec_UpperSym.EditValue = "";
			this.textEdit_MedRec_UpperSym.Location = new System.Drawing.Point(176, 48);
			this.textEdit_MedRec_UpperSym.Name = "textEdit_MedRec_UpperSym";
			// 
			// textEdit_MedRec_UpperSym.Properties
			// 
			this.textEdit_MedRec_UpperSym.Properties.Enabled = false;
			this.textEdit_MedRec_UpperSym.Size = new System.Drawing.Size(256, 23);
			this.textEdit_MedRec_UpperSym.TabIndex = 56;
			// 
			// notePanel_MedRec_UpperSym
			// 
			this.notePanel_MedRec_UpperSym.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_MedRec_UpperSym.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_MedRec_UpperSym.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_MedRec_UpperSym.ForeColor = System.Drawing.Color.Black;
			this.notePanel_MedRec_UpperSym.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_MedRec_UpperSym.Location = new System.Drawing.Point(64, 48);
			this.notePanel_MedRec_UpperSym.MaxRows = 5;
			this.notePanel_MedRec_UpperSym.Name = "notePanel_MedRec_UpperSym";
			this.notePanel_MedRec_UpperSym.ParentAutoHeight = true;
			this.notePanel_MedRec_UpperSym.Size = new System.Drawing.Size(96, 22);
			this.notePanel_MedRec_UpperSym.TabIndex = 54;
			this.notePanel_MedRec_UpperSym.TabStop = false;
			this.notePanel_MedRec_UpperSym.Text = "  上感症状:";
			// 
			// notePanel_MedRec_Diag
			// 
			this.notePanel_MedRec_Diag.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_MedRec_Diag.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_MedRec_Diag.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_MedRec_Diag.ForeColor = System.Drawing.Color.Black;
			this.notePanel_MedRec_Diag.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_MedRec_Diag.Location = new System.Drawing.Point(64, 24);
			this.notePanel_MedRec_Diag.MaxRows = 5;
			this.notePanel_MedRec_Diag.Name = "notePanel_MedRec_Diag";
			this.notePanel_MedRec_Diag.ParentAutoHeight = true;
			this.notePanel_MedRec_Diag.Size = new System.Drawing.Size(96, 22);
			this.notePanel_MedRec_Diag.TabIndex = 52;
			this.notePanel_MedRec_Diag.TabStop = false;
			this.notePanel_MedRec_Diag.Text = "  症状诊断:";
			// 
			// groupControl_MedRec_DoseRec
			// 
			this.groupControl_MedRec_DoseRec.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.groupControl_MedRec_DoseRec.AppearanceCaption.Options.UseFont = true;
			this.groupControl_MedRec_DoseRec.Controls.Add(this.gridControl_MedRec_DoseRec);
			this.groupControl_MedRec_DoseRec.Controls.Add(this.notePanel_MedRec_DoseRec);
			this.groupControl_MedRec_DoseRec.Dock = System.Windows.Forms.DockStyle.Fill;
			this.groupControl_MedRec_DoseRec.Location = new System.Drawing.Point(0, 48);
			this.groupControl_MedRec_DoseRec.Name = "groupControl_MedRec_DoseRec";
			this.groupControl_MedRec_DoseRec.Size = new System.Drawing.Size(477, 461);
			this.groupControl_MedRec_DoseRec.TabIndex = 1;
			this.groupControl_MedRec_DoseRec.Text = "幼儿服药记录追踪";
			// 
			// gridControl_MedRec_DoseRec
			// 
			this.gridControl_MedRec_DoseRec.Dock = System.Windows.Forms.DockStyle.Fill;
			// 
			// gridControl_MedRec_DoseRec.EmbeddedNavigator
			// 
			this.gridControl_MedRec_DoseRec.EmbeddedNavigator.Name = "";
			this.gridControl_MedRec_DoseRec.Location = new System.Drawing.Point(3, 41);
			this.gridControl_MedRec_DoseRec.MainView = this.gridView11;
			this.gridControl_MedRec_DoseRec.Name = "gridControl_MedRec_DoseRec";
			this.barManager1.SetPopupContextMenu(this.gridControl_MedRec_DoseRec, this.popupMenu3);
			this.gridControl_MedRec_DoseRec.Size = new System.Drawing.Size(471, 417);
			this.gridControl_MedRec_DoseRec.TabIndex = 59;
			this.gridControl_MedRec_DoseRec.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
																													  this.gridView11,
																													  this.gridView12});
			this.gridControl_MedRec_DoseRec.DoubleClick += new System.EventHandler(this.gridControl_MedRec_DoseRec_DoubleClick);
			// 
			// gridView11
			// 
			this.gridView11.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
																							  this.gridColumn49,
																							  this.gridColumn48,
																							  this.gridColumn44,
																							  this.gridColumn45,
																							  this.gridColumn46,
																							  this.gridColumn47});
			this.gridView11.GridControl = this.gridControl_MedRec_DoseRec;
			this.gridView11.Name = "gridView11";
			this.gridView11.OptionsCustomization.AllowFilter = false;
			this.gridView11.OptionsView.ShowFilterPanel = false;
			this.gridView11.OptionsView.ShowGroupPanel = false;
			// 
			// gridColumn49
			// 
			this.gridColumn49.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn49.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn49.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn49.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn49.Caption = "幼儿学号";
			this.gridColumn49.FieldName = "info_stuNumber";
			this.gridColumn49.Name = "gridColumn49";
			this.gridColumn49.OptionsColumn.AllowEdit = false;
			this.gridColumn49.OptionsColumn.AllowFocus = false;
			this.gridColumn49.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn49.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn49.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn49.OptionsColumn.AllowMove = false;
			this.gridColumn49.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn49.OptionsColumn.ReadOnly = true;
			this.gridColumn49.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn49.Visible = true;
			this.gridColumn49.VisibleIndex = 0;
			this.gridColumn49.Width = 66;
			// 
			// gridColumn48
			// 
			this.gridColumn48.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn48.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn48.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn48.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn48.Caption = "幼儿姓名";
			this.gridColumn48.FieldName = "info_stuName";
			this.gridColumn48.Name = "gridColumn48";
			this.gridColumn48.OptionsColumn.AllowEdit = false;
			this.gridColumn48.OptionsColumn.AllowFocus = false;
			this.gridColumn48.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn48.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn48.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn48.OptionsColumn.AllowMove = false;
			this.gridColumn48.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn48.OptionsColumn.ReadOnly = true;
			this.gridColumn48.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn48.Visible = true;
			this.gridColumn48.VisibleIndex = 1;
			this.gridColumn48.Width = 68;
			// 
			// gridColumn44
			// 
			this.gridColumn44.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn44.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn44.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn44.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn44.Caption = "药品名称";
			this.gridColumn44.FieldName = "medicine_Name";
			this.gridColumn44.Name = "gridColumn44";
			this.gridColumn44.OptionsColumn.AllowEdit = false;
			this.gridColumn44.OptionsColumn.AllowFocus = false;
			this.gridColumn44.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn44.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn44.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn44.OptionsColumn.AllowMove = false;
			this.gridColumn44.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn44.OptionsColumn.ReadOnly = true;
			this.gridColumn44.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn44.Visible = true;
			this.gridColumn44.VisibleIndex = 2;
			this.gridColumn44.Width = 69;
			// 
			// gridColumn45
			// 
			this.gridColumn45.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn45.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn45.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn45.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn45.Caption = "服用剂量";
			this.gridColumn45.FieldName = "medicine_dose";
			this.gridColumn45.Name = "gridColumn45";
			this.gridColumn45.OptionsColumn.AllowEdit = false;
			this.gridColumn45.OptionsColumn.AllowFocus = false;
			this.gridColumn45.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn45.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn45.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn45.OptionsColumn.AllowMove = false;
			this.gridColumn45.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn45.OptionsColumn.ReadOnly = true;
			this.gridColumn45.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn45.Visible = true;
			this.gridColumn45.VisibleIndex = 3;
			this.gridColumn45.Width = 57;
			// 
			// gridColumn46
			// 
			this.gridColumn46.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn46.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn46.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn46.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn46.Caption = "服用时间";
			this.gridColumn46.DisplayFormat.FormatString = "yyyy-MM-dd HH:mm:ss";
			this.gridColumn46.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
			this.gridColumn46.FieldName = "medicine_time";
			this.gridColumn46.Name = "gridColumn46";
			this.gridColumn46.OptionsColumn.AllowEdit = false;
			this.gridColumn46.OptionsColumn.AllowFocus = false;
			this.gridColumn46.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn46.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn46.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn46.OptionsColumn.AllowMove = false;
			this.gridColumn46.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn46.OptionsColumn.ReadOnly = true;
			this.gridColumn46.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn46.Visible = true;
			this.gridColumn46.VisibleIndex = 4;
			this.gridColumn46.Width = 124;
			// 
			// gridColumn47
			// 
			this.gridColumn47.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn47.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn47.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn47.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn47.Caption = "负责教师";
			this.gridColumn47.FieldName = "teacher_signature";
			this.gridColumn47.Name = "gridColumn47";
			this.gridColumn47.OptionsColumn.AllowEdit = false;
			this.gridColumn47.OptionsColumn.AllowFocus = false;
			this.gridColumn47.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn47.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn47.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn47.OptionsColumn.AllowMove = false;
			this.gridColumn47.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn47.OptionsColumn.ReadOnly = true;
			this.gridColumn47.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn47.Visible = true;
			this.gridColumn47.VisibleIndex = 5;
			this.gridColumn47.Width = 70;
			// 
			// gridView12
			// 
			this.gridView12.GridControl = this.gridControl_MedRec_DoseRec;
			this.gridView12.Name = "gridView12";
			// 
			// notePanel_MedRec_DoseRec
			// 
			this.notePanel_MedRec_DoseRec.BackColor = System.Drawing.Color.LightGoldenrodYellow;
			this.notePanel_MedRec_DoseRec.Dock = System.Windows.Forms.DockStyle.Top;
			this.notePanel_MedRec_DoseRec.ForeColor = System.Drawing.Color.OrangeRed;
			this.notePanel_MedRec_DoseRec.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_MedRec_DoseRec.Location = new System.Drawing.Point(3, 18);
			this.notePanel_MedRec_DoseRec.MaxRows = 5;
			this.notePanel_MedRec_DoseRec.Name = "notePanel_MedRec_DoseRec";
			this.notePanel_MedRec_DoseRec.ParentAutoHeight = true;
			this.notePanel_MedRec_DoseRec.Size = new System.Drawing.Size(471, 23);
			this.notePanel_MedRec_DoseRec.TabIndex = 58;
			this.notePanel_MedRec_DoseRec.TabStop = false;
			this.notePanel_MedRec_DoseRec.Text = "双击进行服药记录添加";
			// 
			// panelControl9
			// 
			this.panelControl9.Controls.Add(this.simpleButton_AbnormalSer);
			this.panelControl9.Controls.Add(this.simpleButton_MedRec_Report);
			this.panelControl9.Controls.Add(this.simpleButton_MedRec_Add);
			this.panelControl9.Controls.Add(this.simpleButton_MedRec_Back);
			this.panelControl9.Dock = System.Windows.Forms.DockStyle.Top;
			this.panelControl9.Location = new System.Drawing.Point(0, 0);
			this.panelControl9.Name = "panelControl9";
			this.panelControl9.Size = new System.Drawing.Size(477, 48);
			this.panelControl9.TabIndex = 0;
			this.panelControl9.Text = "panelControl9";
			// 
			// simpleButton_AbnormalSer
			// 
			this.simpleButton_AbnormalSer.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.simpleButton_AbnormalSer.Appearance.ForeColor = System.Drawing.Color.DarkMagenta;
			this.simpleButton_AbnormalSer.Appearance.Options.UseFont = true;
			this.simpleButton_AbnormalSer.Appearance.Options.UseForeColor = true;
			this.simpleButton_AbnormalSer.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton_AbnormalSer.Image")));
			this.simpleButton_AbnormalSer.Location = new System.Drawing.Point(16, 8);
			this.simpleButton_AbnormalSer.Name = "simpleButton_AbnormalSer";
			this.simpleButton_AbnormalSer.Size = new System.Drawing.Size(80, 26);
			this.simpleButton_AbnormalSer.TabIndex = 26;
			this.simpleButton_AbnormalSer.Tag = 4;
			this.simpleButton_AbnormalSer.Text = "检  索";
			this.simpleButton_AbnormalSer.Click += new System.EventHandler(this.simpleButton_AbnormalSer_Click);
			// 
			// simpleButton_MedRec_Report
			// 
			this.simpleButton_MedRec_Report.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.simpleButton_MedRec_Report.Appearance.ForeColor = System.Drawing.Color.DarkMagenta;
			this.simpleButton_MedRec_Report.Appearance.Options.UseFont = true;
			this.simpleButton_MedRec_Report.Appearance.Options.UseForeColor = true;
			this.simpleButton_MedRec_Report.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton_MedRec_Report.Image")));
			this.simpleButton_MedRec_Report.Location = new System.Drawing.Point(296, 8);
			this.simpleButton_MedRec_Report.Name = "simpleButton_MedRec_Report";
			this.simpleButton_MedRec_Report.Size = new System.Drawing.Size(80, 26);
			this.simpleButton_MedRec_Report.TabIndex = 25;
			this.simpleButton_MedRec_Report.Tag = 4;
			this.simpleButton_MedRec_Report.Text = "报  表";
			this.simpleButton_MedRec_Report.Click += new System.EventHandler(this.simpleButton_MedRec_Report_Click);
			// 
			// simpleButton_MedRec_Add
			// 
			this.simpleButton_MedRec_Add.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.simpleButton_MedRec_Add.Appearance.ForeColor = System.Drawing.Color.DarkMagenta;
			this.simpleButton_MedRec_Add.Appearance.Options.UseFont = true;
			this.simpleButton_MedRec_Add.Appearance.Options.UseForeColor = true;
			this.simpleButton_MedRec_Add.Enabled = false;
			this.simpleButton_MedRec_Add.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton_MedRec_Add.Image")));
			this.simpleButton_MedRec_Add.Location = new System.Drawing.Point(192, 8);
			this.simpleButton_MedRec_Add.Name = "simpleButton_MedRec_Add";
			this.simpleButton_MedRec_Add.Size = new System.Drawing.Size(96, 26);
			this.simpleButton_MedRec_Add.TabIndex = 23;
			this.simpleButton_MedRec_Add.Tag = 4;
			this.simpleButton_MedRec_Add.Text = "服药添加";
			this.simpleButton_MedRec_Add.Click += new System.EventHandler(this.simpleButton_MedRec_Add_Click);
			// 
			// simpleButton_MedRec_Back
			// 
			this.simpleButton_MedRec_Back.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.simpleButton_MedRec_Back.Appearance.ForeColor = System.Drawing.Color.DarkMagenta;
			this.simpleButton_MedRec_Back.Appearance.Options.UseFont = true;
			this.simpleButton_MedRec_Back.Appearance.Options.UseForeColor = true;
			this.simpleButton_MedRec_Back.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton_MedRec_Back.Image")));
			this.simpleButton_MedRec_Back.Location = new System.Drawing.Point(104, 8);
			this.simpleButton_MedRec_Back.Name = "simpleButton_MedRec_Back";
			this.simpleButton_MedRec_Back.Size = new System.Drawing.Size(80, 26);
			this.simpleButton_MedRec_Back.TabIndex = 22;
			this.simpleButton_MedRec_Back.Tag = 4;
			this.simpleButton_MedRec_Back.Text = "返  回";
			this.simpleButton_MedRec_Back.Click += new System.EventHandler(this.simpleButton_MedRec_Back_Click);
			// 
			// barManager1
			// 
			this.barManager1.DockControls.Add(this.barDockControlTop);
			this.barManager1.DockControls.Add(this.barDockControlBottom);
			this.barManager1.DockControls.Add(this.barDockControlLeft);
			this.barManager1.DockControls.Add(this.barDockControlRight);
			this.barManager1.Form = this;
			this.barManager1.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
																				  this.barButtonItem_MealRefresh,
																				  this.barButtonItem_MedReg_MedAdd,
																				  this.barButtonItem_MedReg_MedModify,
																				  this.barButtonItem_MedReg_MedDel,
																				  this.barButtonItem_MedRec_MultiSer,
																				  this.barButtonItem_MedRec_MedDel,
																				  this.barButtonItem_RecipeRefresh,
																				  this.barButtonItem_RecipeDelete});
			this.barManager1.MaxItemId = 8;
			// 
			// popupMenu4
			// 
			this.popupMenu4.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
																									new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem_RecipeRefresh),
																									new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem_RecipeDelete)});
			this.popupMenu4.Manager = this.barManager1;
			this.popupMenu4.Name = "popupMenu4";
			// 
			// barButtonItem_RecipeRefresh
			// 
			this.barButtonItem_RecipeRefresh.Caption = "刷新";
			this.barButtonItem_RecipeRefresh.Id = 6;
			this.barButtonItem_RecipeRefresh.Name = "barButtonItem_RecipeRefresh";
			this.barButtonItem_RecipeRefresh.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem_RecipeRefresh_ItemClick);
			// 
			// barButtonItem_RecipeDelete
			// 
			this.barButtonItem_RecipeDelete.Caption = "删除";
			this.barButtonItem_RecipeDelete.Id = 7;
			this.barButtonItem_RecipeDelete.Name = "barButtonItem_RecipeDelete";
			this.barButtonItem_RecipeDelete.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem_RecipeDelete_ItemClick);
			// 
			// popupMenu1
			// 
			this.popupMenu1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
																									new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem_MealRefresh)});
			this.popupMenu1.Manager = this.barManager1;
			this.popupMenu1.Name = "popupMenu1";
			// 
			// barButtonItem_MealRefresh
			// 
			this.barButtonItem_MealRefresh.Caption = "刷新";
			this.barButtonItem_MealRefresh.Id = 0;
			this.barButtonItem_MealRefresh.Name = "barButtonItem_MealRefresh";
			this.barButtonItem_MealRefresh.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem_MealRefresh_ItemClick);
			// 
			// popupMenu2
			// 
			this.popupMenu2.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
																									new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem_MedReg_MedAdd),
																									new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem_MedReg_MedModify),
																									new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem_MedReg_MedDel)});
			this.popupMenu2.Manager = this.barManager1;
			this.popupMenu2.Name = "popupMenu2";
			// 
			// barButtonItem_MedReg_MedAdd
			// 
			this.barButtonItem_MedReg_MedAdd.Caption = "添加药品信息";
			this.barButtonItem_MedReg_MedAdd.Id = 1;
			this.barButtonItem_MedReg_MedAdd.Name = "barButtonItem_MedReg_MedAdd";
			this.barButtonItem_MedReg_MedAdd.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem_MedReg_MedAdd_ItemClick);
			// 
			// barButtonItem_MedReg_MedModify
			// 
			this.barButtonItem_MedReg_MedModify.Caption = "修改药品信息";
			this.barButtonItem_MedReg_MedModify.Id = 2;
			this.barButtonItem_MedReg_MedModify.Name = "barButtonItem_MedReg_MedModify";
			this.barButtonItem_MedReg_MedModify.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem_MedReg_MedModify_ItemClick);
			// 
			// barButtonItem_MedReg_MedDel
			// 
			this.barButtonItem_MedReg_MedDel.Caption = "删除药品信息";
			this.barButtonItem_MedReg_MedDel.Id = 3;
			this.barButtonItem_MedReg_MedDel.Name = "barButtonItem_MedReg_MedDel";
			this.barButtonItem_MedReg_MedDel.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem_MedReg_MedDel_ItemClick);
			// 
			// popupMenu3
			// 
			this.popupMenu3.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
																									new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem_MedRec_MultiSer),
																									new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem_MedRec_MedDel)});
			this.popupMenu3.Manager = this.barManager1;
			this.popupMenu3.Name = "popupMenu3";
			// 
			// barButtonItem_MedRec_MultiSer
			// 
			this.barButtonItem_MedRec_MultiSer.Caption = "返回多人查询模式";
			this.barButtonItem_MedRec_MultiSer.Id = 4;
			this.barButtonItem_MedRec_MultiSer.Name = "barButtonItem_MedRec_MultiSer";
			this.barButtonItem_MedRec_MultiSer.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem_MedRec_MultiSer_ItemClick);
			// 
			// barButtonItem_MedRec_MedDel
			// 
			this.barButtonItem_MedRec_MedDel.Caption = "删除幼儿服药记录";
			this.barButtonItem_MedRec_MedDel.Id = 5;
			this.barButtonItem_MedRec_MedDel.Name = "barButtonItem_MedRec_MedDel";
			this.barButtonItem_MedRec_MedDel.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem_MedRec_MedDel_ItemClick);
			// 
			// gridView14
			// 
			this.gridView14.GridControl = null;
			this.gridView14.Name = "gridView14";
			// 
			// gridColumn15
			// 
			this.gridColumn15.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn15.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn15.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn15.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn15.Caption = "菜谱名称";
			this.gridColumn15.FieldName = "ACCFood_Remark";
			this.gridColumn15.Name = "gridColumn15";
			this.gridColumn15.OptionsColumn.AllowEdit = false;
			this.gridColumn15.OptionsColumn.AllowFocus = false;
			this.gridColumn15.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn15.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn15.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn15.OptionsColumn.AllowMove = false;
			this.gridColumn15.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn15.OptionsColumn.FixedWidth = true;
			this.gridColumn15.OptionsColumn.ReadOnly = true;
			this.gridColumn15.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn15.Visible = true;
			this.gridColumn15.VisibleIndex = 3;
			// 
			// gridColumn14
			// 
			this.gridColumn14.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn14.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn14.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn14.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn14.Caption = "摄入量";
			this.gridColumn14.FieldName = "ACCFood_TakeAmount";
			this.gridColumn14.Name = "gridColumn14";
			this.gridColumn14.OptionsColumn.AllowEdit = false;
			this.gridColumn14.OptionsColumn.AllowFocus = false;
			this.gridColumn14.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn14.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn14.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn14.OptionsColumn.AllowMove = false;
			this.gridColumn14.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn14.OptionsColumn.FixedWidth = true;
			this.gridColumn14.OptionsColumn.ReadOnly = true;
			this.gridColumn14.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn14.Visible = true;
			this.gridColumn14.VisibleIndex = 2;
			// 
			// gridColumn13
			// 
			this.gridColumn13.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn13.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn13.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn13.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn13.Caption = "登记日期";
			this.gridColumn13.FieldName = "ACCFood_AddTime";
			this.gridColumn13.Name = "gridColumn13";
			this.gridColumn13.OptionsColumn.AllowEdit = false;
			this.gridColumn13.OptionsColumn.AllowFocus = false;
			this.gridColumn13.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn13.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn13.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn13.OptionsColumn.AllowMove = false;
			this.gridColumn13.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn13.OptionsColumn.FixedWidth = true;
			this.gridColumn13.OptionsColumn.ReadOnly = true;
			this.gridColumn13.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn13.Visible = true;
			this.gridColumn13.VisibleIndex = 1;
			// 
			// gridColumn12
			// 
			this.gridColumn12.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn12.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn12.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn12.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn12.Caption = "食物名称";
			this.gridColumn12.FieldName = "FoodNut_FoodName";
			this.gridColumn12.Name = "gridColumn12";
			this.gridColumn12.OptionsColumn.AllowEdit = false;
			this.gridColumn12.OptionsColumn.AllowFocus = false;
			this.gridColumn12.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn12.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn12.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn12.OptionsColumn.AllowMove = false;
			this.gridColumn12.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn12.OptionsColumn.FixedWidth = true;
			this.gridColumn12.OptionsColumn.ReadOnly = true;
			this.gridColumn12.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn12.Visible = true;
			this.gridColumn12.VisibleIndex = 0;
			// 
			// gridView3
			// 
			this.gridView3.GridControl = null;
			this.gridView3.Name = "gridView3";
			this.gridView3.OptionsCustomization.AllowFilter = false;
			this.gridView3.OptionsView.ShowFilterPanel = false;
			this.gridView3.OptionsView.ShowGroupPanel = false;
			// 
			// NutritionManagement
			// 
			this.Controls.Add(this.xtraTabControl1);
			this.Controls.Add(this.barDockControlLeft);
			this.Controls.Add(this.barDockControlRight);
			this.Controls.Add(this.barDockControlBottom);
			this.Controls.Add(this.barDockControlTop);
			this.Name = "NutritionManagement";
			this.Size = new System.Drawing.Size(772, 540);
			this.Load += new System.EventHandler(this.NutritionManagement_Load);
			((System.ComponentModel.ISupportInitialize)(this.xtraTabControl1)).EndInit();
			this.xtraTabControl1.ResumeLayout(false);
			this.xtraTabPage1.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.splitContainerControl1)).EndInit();
			this.splitContainerControl1.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.groupControl_FoodCategory)).EndInit();
			this.groupControl_FoodCategory.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.treeList_FoodStock)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_FoodNutModify)).EndInit();
			this.groupControl_FoodNutModify.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.textEdit_FoodName.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.memoEdit_FoodRemark.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_Energy.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_Carbohydrate.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_Fat.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_Protein.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_FoodCategory.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_FoodNutrition)).EndInit();
			this.groupControl_FoodNutrition.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.gridControl_FoodNutrition)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
			this.panelControl1.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.textEdit_FoodSearch.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_BindingID.Properties)).EndInit();
			this.xtraTabPage2.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.splitContainerControl2)).EndInit();
			this.splitContainerControl2.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.panelControl10)).EndInit();
			this.panelControl10.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.gridControl_Recipe_FoodNutrition)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.gridView4)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.gridView2)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_RecipeLogin)).EndInit();
			this.groupControl_RecipeLogin.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.textEdit_RecipeLogin_FoodName.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_RecipeLogin_Name.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.dateEdit_RecipeLogin_Date.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_RecipeLogin_FoodTake.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_RecipeLogin_BindingID.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_RecipeSer)).EndInit();
			this.groupControl_RecipeSer.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_RecipeSer_FoodCategory.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_RecipeSer_FoodName.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_RecipeOpr)).EndInit();
			this.groupControl_RecipeOpr.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.panelControl11)).EndInit();
			this.panelControl11.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.gridControl_RecipeLogin)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.gridView13)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.panelControl2)).EndInit();
			this.panelControl2.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.textEdit_Recipe_FoodName.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_Recipe_RecipeCategory.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.dateEdit_Recipe_EndDate.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.dateEdit_Recipe_BegDate.Properties)).EndInit();
			this.xtraTabPage3.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.splitContainerControl3)).EndInit();
			this.splitContainerControl3.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.groupControl_MealLogin)).EndInit();
			this.groupControl_MealLogin.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.checkEdit_Snack.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.checkEdit_Dinner.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.checkEdit_Lunch.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.checkEdit_Breakfast.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_MealAdd)).EndInit();
			this.groupControl_MealAdd.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MealName.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MealRemark.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MealID.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_MealArr)).EndInit();
			this.groupControl_MealArr.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.splitContainerControl4)).EndInit();
			this.splitContainerControl4.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.checkEdit_MealArr_gThree.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.checkEdit_MealArr_gTwo.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.checkEdit_MealArr_gOne.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_MealArr_Name.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.checkEdit_MealArr_gFour.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.checkEdit_MealArr_gFive.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.checkEdit_MealArr_IsUsed.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_MealPreview)).EndInit();
			this.groupControl_MealPreview.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.gridControl_MealPreview)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.gridView5)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.panelControl3)).EndInit();
			this.panelControl3.ResumeLayout(false);
			this.xtraTabPage4.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.splitContainerControl5)).EndInit();
			this.splitContainerControl5.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.groupControl_Meal_Search)).EndInit();
			this.groupControl_Meal_Search.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.dateEdit_Meal_EndDate.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.dateEdit_Meal_BegDate.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_Meal_ReportPreview)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.panelControl4)).EndInit();
			this.panelControl4.ResumeLayout(false);
			this.xtraTabPage5.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.splitContainerControl6)).EndInit();
			this.splitContainerControl6.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.gridControl_HInputStu)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.gridView6)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_HInputSer)).EndInit();
			this.groupControl_HInputSer.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_HInputGender.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_HInputNumber.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_HInputName.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_HInputClass.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_HInputGrade.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_HInputDiagInfo)).EndInit();
			this.groupControl_HInputDiagInfo.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_HInputRegion.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_HInputStd.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_DiagCheckName.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_DiagCheckBindingID.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_HInputDiagResult)).EndInit();
			this.groupControl_HInputDiagResult.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.textEdit_DiagResultX.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_DiagResultWHOPer.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_DiagResultHeightWeight.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_DiagResultUnderWeight.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_DiagResultStunting.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_DiagResultWasting.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_DiagResultHeight.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_DiagResultWeight.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_DiagResultWHO.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_DiagResultNut.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_DiagResultAge.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.memoEdit_DiagRemark.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_DiagWeight.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_DiagHeight.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.dateEdit_DiagCheckDate.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_HInputBirthday.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_DiagCheckGender.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.panelControl5)).EndInit();
			this.panelControl5.ResumeLayout(false);
			this.xtraTabPage6.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.splitContainerControl7)).EndInit();
			this.splitContainerControl7.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.groupControl_HOutputPrintType)).EndInit();
			this.groupControl_HOutputPrintType.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.checkEdit_HOutputPrintType4th.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.checkEdit_HOutputPrintType3rd.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.checkEdit_HOutputPrintType2nd.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.checkEdit_HOutputPrintType1st.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_HOutputSer)).EndInit();
			this.groupControl_HOutputSer.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_HOutputRegion.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.dateEdit_HOutputEndDate.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.dateEdit_HOutputBegDate.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_HOutputGender.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_HOutputResult.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_HOutputType.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_HOutputAge.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_HOutputNumber.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_HOutputName.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_HOutputClass.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_HOutputGrade.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.gridControl_HOutputNchsGrid)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.advBandedGridView2)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.gridControl_HOutputGridShow)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.advBandedGridView1)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.panelControl6)).EndInit();
			this.panelControl6.ResumeLayout(false);
			this.xtraTabPage7.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.splitContainerControl8)).EndInit();
			this.splitContainerControl8.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.groupControl_WatchMorningRec)).EndInit();
			this.groupControl_WatchMorningRec.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.textEdit_WatchMorningTreat.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_WatchMorningOState.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_WatchMorningHeat.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_WatchMorningMouth.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_WatchMorningSpirit.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_WatchMorningSkin.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_WatchMorningNumber.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_WatchMorningName.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_WatchStuList)).EndInit();
			this.groupControl_WatchStuList.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.gridControl_WatchStuList)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.gridView7)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_WatchSer)).EndInit();
			this.groupControl_WatchSer.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.textEdit_WatchName.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.dateEdit_WatchEndDate.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.dateEdit_WatchBegDate.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_WatchState.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_WatchNumber.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_WatchClass.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_WatchGrade.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_WatchWholeDay)).EndInit();
			this.groupControl_WatchWholeDay.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.groupControl_WatchWholDayHandle)).EndInit();
			this.groupControl_WatchWholDayHandle.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.checkEdit_WatchWholeDayHeat.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.checkEdit_WatchWholeDayCtrSeafood.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.checkEdit_WatchWholeDayLifeAttention.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.checkEdit_WatchWholeDayCtrAct.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_WatchWholeDayReg)).EndInit();
			this.groupControl_WatchWholeDayReg.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.textEdit_WatchWholeDayElse.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_WatchWholeDayCough.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_WatchWholeDaySleep.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_WatchWholeDayStool.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_WatchWholeDayAppetite.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_WatchWholeDaySpirit.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_WatchWholeDayMovement.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_WatchRecList)).EndInit();
			this.groupControl_WatchRecList.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.gridControl_WatchRecList)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.gridView8)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.panelControl7)).EndInit();
			this.panelControl7.ResumeLayout(false);
			this.xtraTabPage8.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.splitContainerControl9)).EndInit();
			this.splitContainerControl9.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.groupControl_MedReg_StuList)).EndInit();
			this.groupControl_MedReg_StuList.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.gridControl_MedReg_StuList)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.gridView9)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_MedReg_Ser)).EndInit();
			this.groupControl_MedReg_Ser.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MedReg_Number.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MedReg_Name.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_MedReg_Class.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_MedReg_Grade.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_MedReg_MedInfo)).EndInit();
			this.groupControl_MedReg_MedInfo.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MedReg_MedName.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MedReg_Taketimes.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MedReg_MedTake.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MedReg_MedType.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_MedReg_MedCarrInfo)).EndInit();
			this.groupControl_MedReg_MedCarrInfo.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.listBoxControl_MedReg_MedCarrInfo)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.listBoxControl_MedReg_MedInfo)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_MedReg_DiagInfo)).EndInit();
			this.groupControl_MedReg_DiagInfo.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MedReg_Else.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MedReg_FacialSym.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MedReg_SkinSym.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MedReg_AbdomenSym.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MedReg_EnteronSym.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MedReg_ThroatSym.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MedReg_LungSym.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MedReg_UpperSym.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_MedReg_Diag.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.panelControl8)).EndInit();
			this.panelControl8.ResumeLayout(false);
			this.xtraTabPage9.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.splitContainerControl10)).EndInit();
			this.splitContainerControl10.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.groupControl_MedRec_AbnStuList)).EndInit();
			this.groupControl_MedRec_AbnStuList.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.gridControl_MedRec_AbnStuList)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.gridView10)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_MedRec_Ser)).EndInit();
			this.groupControl_MedRec_Ser.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MedRec_Number.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MedRec_Name.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.dateEdit_MedRec_EndDate.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.dateEdit_MedRec_BegDate.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MedRec_DoseRecDiaID.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MedRec_AbnDiaID.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_MedRec_Class.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_MedRec_Grade.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_MedRec_DiagAndDoseAdd)).EndInit();
			this.groupControl_MedRec_DiagAndDoseAdd.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.groupControl_MedRec_DoseAdd)).EndInit();
			this.groupControl_MedRec_DoseAdd.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.listBoxControl_MedRec_MedCarrInfo)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_MedRec_TakeRule.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.timeEdit_MedRec_TakeTime.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MedRec_MedTake.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MedRec_MedName.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_MedRec_DiagInfo)).EndInit();
			this.groupControl_MedRec_DiagInfo.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MedRec_Diag.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MedRec_Else.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MedRec_FacialSym.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MedRec_SkinSym.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MedRec_AbdomenSym.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MedRec_EnteronSym.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MedRec_ThroatSym.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MedRec_LungSym.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MedRec_UpperSym.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_MedRec_DoseRec)).EndInit();
			this.groupControl_MedRec_DoseRec.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.gridControl_MedRec_DoseRec)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.gridView11)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.gridView12)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.panelControl9)).EndInit();
			this.panelControl9.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.barManager1)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.popupMenu4)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.popupMenu1)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.popupMenu2)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.popupMenu3)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.gridView14)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.gridView3)).EndInit();
			this.ResumeLayout(false);

		}
コード例 #23
0
        /// <summary>
        /// Required method for Designer support - do not modify
        protected void InitializeComponent()
        {
            this.components = new System.ComponentModel.Container();
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmQLKhoLuuBetaCam));
            this.barManager1 = new DevExpress.XtraBars.BarManager(this.components);
            this.MainBar = new DevExpress.XtraBars.Bar();
            this.capNhatViTri = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItemAdd = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItemXem = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItemDelete = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItemUpdate = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItemPrint = new DevExpress.XtraBars.BarButtonItem();
            this.popupMenu1 = new DevExpress.XtraBars.PopupMenu(this.components);
            this.barButtonItem4 = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItemCommit = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItemNoCommit = new DevExpress.XtraBars.BarButtonItem();
            this.barSubItem1 = new DevExpress.XtraBars.BarSubItem();
            this.barButtonItemSearch = new DevExpress.XtraBars.BarButtonItem();
            this.popupMenuFilter = new DevExpress.XtraBars.PopupMenu(this.components);
            this.barCheckItemFilter = new DevExpress.XtraBars.BarCheckItem();
            this.barButtonItemClose = new DevExpress.XtraBars.BarButtonItem();
            this.barDockControlTop = new DevExpress.XtraBars.BarDockControl();
            this.barDockControlBottom = new DevExpress.XtraBars.BarDockControl();
            this.barDockControlLeft = new DevExpress.XtraBars.BarDockControl();
            this.barDockControlRight = new DevExpress.XtraBars.BarDockControl();
            this.barStaticItem1 = new DevExpress.XtraBars.BarStaticItem();
            this.barButtonItem1 = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItem2 = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItem3 = new DevExpress.XtraBars.BarButtonItem();
            this.splitContainerControl1 = new DevExpress.XtraEditors.SplitContainerControl();
            this.gridControlMaster = new DevExpress.XtraGrid.GridControl();
            this.gridViewMaster = new DevExpress.XtraGrid.Views.BandedGrid.PLBandedGridView();
            this.gridBandChuongTrinh = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
            this.Col_PM_Category = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_PM_MaChuongTrinh = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_PM_TenChuongTrinh = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_PM_TietMuc = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.gridBandPostMaster = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
            this.Col_PM_PostMaster = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_PM_TongTap = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_PM_LoaiLuu = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_PM_Ke = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_PM_Ngan = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_PM_Tang = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_PM_PopUp = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_PM_ThoiLuongChung = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_PM_TTDinhKem = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_PM_ThanhLy = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_PM_NgayNhapKho = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_PM_TTHD = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_PM_DVDNgayDuyet = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_PM_DVDNgayHoanTat = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.xtraTabControlDetail = new DevExpress.XtraTab.XtraTabControl();
            this.xtraTabPageDetail = new DevExpress.XtraTab.XtraTabPage();
            this.popupControlContainerFilter = new DevExpress.XtraBars.PopupControlContainer(this.components);
            this.PhongBan = new ProtocolVN.Framework.Win.PLDMTreeMultiChoice();
            this.plLabel7 = new DevExpress.XtraEditors.LabelControl();
            this.PostMaster = new ProtocolVN.Framework.Win.PLMultiCombobox();
            this.label10 = new DevExpress.XtraEditors.LabelControl();
            this.Category = new ProtocolVN.App.VideoLibrary.PLTextEditAutocomplete();
            this.plLabel5 = new DevExpress.XtraEditors.LabelControl();
            this.LoaiLuuTru = new ProtocolVN.Framework.Win.PLMultiCombobox();
            this.TietMuc = new ProtocolVN.Framework.Win.PLMultiCombobox();
            this.plLabel6 = new DevExpress.XtraEditors.LabelControl();
            this.label5 = new DevExpress.XtraEditors.LabelControl();
            this.NoiDung = new ProtocolVN.App.VideoLibrary.PLTextEditAutocomplete();
            this.cboTang = new ProtocolVN.Framework.Win.PLCombobox();
            this.cboNgan = new ProtocolVN.Framework.Win.PLCombobox();
            this.cboKe = new ProtocolVN.Framework.Win.PLCombobox();
            this.ngay = new ProtocolVN.Framework.Win.Trial.PLDateSelection();
            this.plLabel3 = new DevExpress.XtraEditors.LabelControl();
            this.plLabel4 = new DevExpress.XtraEditors.LabelControl();
            this.labelControl4 = new DevExpress.XtraEditors.LabelControl();
            this.plLabel2 = new DevExpress.XtraEditors.LabelControl();
            this.plLabel1 = new DevExpress.XtraEditors.LabelControl();
            ((System.ComponentModel.ISupportInitialize)(this.barManager1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.popupMenu1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.popupMenuFilter)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl1)).BeginInit();
            this.splitContainerControl1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.gridControlMaster)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridViewMaster)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.xtraTabControlDetail)).BeginInit();
            this.xtraTabControlDetail.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.popupControlContainerFilter)).BeginInit();
            this.popupControlContainerFilter.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.PostMaster.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.Category.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.LoaiLuuTru.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.TietMuc.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.NoiDung.Properties)).BeginInit();
            this.SuspendLayout();
            //
            // barManager1
            //
            this.barManager1.Bars.AddRange(new DevExpress.XtraBars.Bar[] {
            this.MainBar});
            this.barManager1.DockControls.Add(this.barDockControlTop);
            this.barManager1.DockControls.Add(this.barDockControlBottom);
            this.barManager1.DockControls.Add(this.barDockControlLeft);
            this.barManager1.DockControls.Add(this.barDockControlRight);
            this.barManager1.Form = this;
            this.barManager1.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
            this.barButtonItemAdd,
            this.barButtonItemDelete,
            this.barButtonItemUpdate,
            this.barButtonItemPrint,
            this.barStaticItem1,
            this.barButtonItem1,
            this.barButtonItem2,
            this.barButtonItemCommit,
            this.barButtonItemNoCommit,
            this.barSubItem1,
            this.barButtonItemXem,
            this.barButtonItemSearch,
            this.barButtonItemClose,
            this.barCheckItemFilter,
            this.barButtonItem3,
            this.barButtonItem4,
            this.capNhatViTri});
            this.barManager1.MaxItemId = 38;
            //
            // MainBar
            //
            this.MainBar.BarName = "MainBar";
            this.MainBar.DockCol = 0;
            this.MainBar.DockRow = 0;
            this.MainBar.DockStyle = DevExpress.XtraBars.BarDockStyle.Top;
            this.MainBar.FloatLocation = new System.Drawing.Point(39, 133);
            this.MainBar.FloatSize = new System.Drawing.Size(72, 73);
            this.MainBar.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.capNhatViTri),
            new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.Caption, this.barButtonItemAdd, "&Thêm", true),
            new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemXem),
            new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemDelete),
            new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemUpdate),
            new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemPrint),
            new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemCommit, true),
            new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemNoCommit),
            new DevExpress.XtraBars.LinkPersistInfo(this.barSubItem1, true),
            new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemSearch, true),
            new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemClose, true)});
            this.MainBar.OptionsBar.AllowQuickCustomization = false;
            this.MainBar.OptionsBar.DrawDragBorder = false;
            this.MainBar.OptionsBar.RotateWhenVertical = false;
            this.MainBar.OptionsBar.UseWholeRow = true;
            this.MainBar.Text = "Custom 1";
            //
            // capNhatViTri
            //
            this.capNhatViTri.Caption = "Cập nhật vị trí";
            this.capNhatViTri.Id = 37;
            this.capNhatViTri.Name = "capNhatViTri";
            this.capNhatViTri.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
            this.capNhatViTri.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.capNhatViTri_ItemClick);
            //
            // barButtonItemAdd
            //
            this.barButtonItemAdd.Caption = "Thêm";
            this.barButtonItemAdd.Id = 0;
            this.barButtonItemAdd.Name = "barButtonItemAdd";
            this.barButtonItemAdd.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
            //
            // barButtonItemXem
            //
            this.barButtonItemXem.Caption = "X&em";
            this.barButtonItemXem.Id = 24;
            this.barButtonItemXem.Name = "barButtonItemXem";
            this.barButtonItemXem.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
            //
            // barButtonItemDelete
            //
            this.barButtonItemDelete.Caption = "&Xóa";
            this.barButtonItemDelete.Id = 1;
            this.barButtonItemDelete.Name = "barButtonItemDelete";
            this.barButtonItemDelete.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
            //
            // barButtonItemUpdate
            //
            this.barButtonItemUpdate.Caption = "&Sửa";
            this.barButtonItemUpdate.Id = 2;
            this.barButtonItemUpdate.Name = "barButtonItemUpdate";
            this.barButtonItemUpdate.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
            //
            // barButtonItemPrint
            //
            this.barButtonItemPrint.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown;
            this.barButtonItemPrint.Caption = "&In";
            this.barButtonItemPrint.DropDownControl = this.popupMenu1;
            this.barButtonItemPrint.Id = 3;
            this.barButtonItemPrint.Name = "barButtonItemPrint";
            this.barButtonItemPrint.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
            //
            // popupMenu1
            //
            this.popupMenu1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem4)});
            this.popupMenu1.Manager = this.barManager1;
            this.popupMenu1.Name = "popupMenu1";
            //
            // barButtonItem4
            //
            this.barButtonItem4.Caption = "Xem trước";
            this.barButtonItem4.Id = 33;
            this.barButtonItem4.Name = "barButtonItem4";
            //
            // barButtonItemCommit
            //
            this.barButtonItemCommit.Caption = "&Duyệt";
            this.barButtonItemCommit.Id = 17;
            this.barButtonItemCommit.Name = "barButtonItemCommit";
            this.barButtonItemCommit.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
            //
            // barButtonItemNoCommit
            //
            this.barButtonItemNoCommit.Caption = "&Không duyệt";
            this.barButtonItemNoCommit.Id = 18;
            this.barButtonItemNoCommit.Name = "barButtonItemNoCommit";
            this.barButtonItemNoCommit.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
            //
            // barSubItem1
            //
            this.barSubItem1.Caption = "Nghiệp vụ";
            this.barSubItem1.Id = 20;
            this.barSubItem1.Name = "barSubItem1";
            this.barSubItem1.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
            //
            // barButtonItemSearch
            //
            this.barButtonItemSearch.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown;
            this.barButtonItemSearch.Caption = "Tì&m kiếm";
            this.barButtonItemSearch.DropDownControl = this.popupMenuFilter;
            this.barButtonItemSearch.Id = 27;
            this.barButtonItemSearch.Name = "barButtonItemSearch";
            this.barButtonItemSearch.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
            //
            // popupMenuFilter
            //
            this.popupMenuFilter.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.barCheckItemFilter)});
            this.popupMenuFilter.Manager = this.barManager1;
            this.popupMenuFilter.Name = "popupMenuFilter";
            //
            // barCheckItemFilter
            //
            this.barCheckItemFilter.Caption = "Điều &kiện lọc";
            this.barCheckItemFilter.Checked = true;
            this.barCheckItemFilter.Id = 29;
            this.barCheckItemFilter.Name = "barCheckItemFilter";
            this.barCheckItemFilter.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
            //
            // barButtonItemClose
            //
            this.barButtonItemClose.Caption = "Đón&g";
            this.barButtonItemClose.Id = 28;
            this.barButtonItemClose.Name = "barButtonItemClose";
            this.barButtonItemClose.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
            //
            // barDockControlTop
            //
            this.barDockControlTop.Dock = System.Windows.Forms.DockStyle.Top;
            this.barDockControlTop.Location = new System.Drawing.Point(0, 0);
            this.barDockControlTop.Size = new System.Drawing.Size(943, 24);
            //
            // barDockControlBottom
            //
            this.barDockControlBottom.Dock = System.Windows.Forms.DockStyle.Bottom;
            this.barDockControlBottom.Location = new System.Drawing.Point(0, 497);
            this.barDockControlBottom.Size = new System.Drawing.Size(943, 0);
            //
            // barDockControlLeft
            //
            this.barDockControlLeft.Dock = System.Windows.Forms.DockStyle.Left;
            this.barDockControlLeft.Location = new System.Drawing.Point(0, 24);
            this.barDockControlLeft.Size = new System.Drawing.Size(0, 473);
            //
            // barDockControlRight
            //
            this.barDockControlRight.Dock = System.Windows.Forms.DockStyle.Right;
            this.barDockControlRight.Location = new System.Drawing.Point(943, 24);
            this.barDockControlRight.Size = new System.Drawing.Size(0, 473);
            //
            // barStaticItem1
            //
            this.barStaticItem1.AutoSize = DevExpress.XtraBars.BarStaticItemSize.None;
            this.barStaticItem1.Border = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
            this.barStaticItem1.Id = 13;
            this.barStaticItem1.Name = "barStaticItem1";
            this.barStaticItem1.TextAlignment = System.Drawing.StringAlignment.Near;
            this.barStaticItem1.Width = 100;
            //
            // barButtonItem1
            //
            this.barButtonItem1.Caption = "barButtonItem1";
            this.barButtonItem1.Id = 14;
            this.barButtonItem1.Name = "barButtonItem1";
            //
            // barButtonItem2
            //
            this.barButtonItem2.Caption = "barButtonItem2";
            this.barButtonItem2.Id = 15;
            this.barButtonItem2.Name = "barButtonItem2";
            //
            // barButtonItem3
            //
            this.barButtonItem3.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown;
            this.barButtonItem3.Caption = "In";
            this.barButtonItem3.Id = 30;
            this.barButtonItem3.Name = "barButtonItem3";
            //
            // splitContainerControl1
            //
            this.splitContainerControl1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.splitContainerControl1.Horizontal = false;
            this.splitContainerControl1.Location = new System.Drawing.Point(0, 108);
            this.splitContainerControl1.Name = "splitContainerControl1";
            this.splitContainerControl1.Panel1.Controls.Add(this.gridControlMaster);
            this.splitContainerControl1.Panel1.Text = "splitContainerControl1_Panel1";
            this.splitContainerControl1.Panel2.CaptionLocation = DevExpress.Utils.Locations.Left;
            this.splitContainerControl1.Panel2.Controls.Add(this.xtraTabControlDetail);
            this.splitContainerControl1.Panel2.ShowCaption = true;
            this.splitContainerControl1.Panel2.Text = "splitContainerControl1_Panel2";
            this.splitContainerControl1.Size = new System.Drawing.Size(943, 389);
            this.splitContainerControl1.SplitterPosition = 428;
            this.splitContainerControl1.TabIndex = 4;
            this.splitContainerControl1.Text = "splitContainerControl1";
            //
            // gridControlMaster
            //
            this.gridControlMaster.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("gridControlMaster.BackgroundImage")));
            this.gridControlMaster.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
            this.gridControlMaster.Dock = System.Windows.Forms.DockStyle.Fill;
            this.gridControlMaster.Location = new System.Drawing.Point(0, 0);
            this.gridControlMaster.MainView = this.gridViewMaster;
            this.gridControlMaster.Name = "gridControlMaster";
            this.gridControlMaster.Size = new System.Drawing.Size(943, 383);
            this.gridControlMaster.TabIndex = 12;
            this.gridControlMaster.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
            this.gridViewMaster});
            //
            // gridViewMaster
            //
            this.gridViewMaster.Appearance.HeaderPanel.Options.UseTextOptions = true;
            this.gridViewMaster.Appearance.HeaderPanel.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridViewMaster.Bands.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.GridBand[] {
            this.gridBandChuongTrinh,
            this.gridBandPostMaster});
            this.gridViewMaster.Columns.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn[] {
            this.Col_PM_MaChuongTrinh,
            this.Col_PM_TenChuongTrinh,
            this.Col_PM_TietMuc,
            this.Col_PM_PostMaster,
            this.Col_PM_ThanhLy,
            this.Col_PM_LoaiLuu,
            this.Col_PM_TongTap,
            this.Col_PM_Ke,
            this.Col_PM_Ngan,
            this.Col_PM_Tang,
            this.Col_PM_PopUp,
            this.Col_PM_TTDinhKem,
            this.Col_PM_NgayNhapKho,
            this.Col_PM_DVDNgayDuyet,
            this.Col_PM_DVDNgayHoanTat,
            this.Col_PM_TTHD,
            this.Col_PM_ThoiLuongChung,
            this.Col_PM_Category});
            this.gridViewMaster.GridControl = this.gridControlMaster;
            this.gridViewMaster.GroupCount = 2;
            this.gridViewMaster.IndicatorWidth = 40;
            this.gridViewMaster.Name = "gridViewMaster";
            this.gridViewMaster.OptionsLayout.Columns.AddNewColumns = false;
            this.gridViewMaster.OptionsNavigation.AutoFocusNewRow = true;
            this.gridViewMaster.OptionsNavigation.EnterMoveNextColumn = true;
            this.gridViewMaster.OptionsPrint.UsePrintStyles = true;
            this.gridViewMaster.OptionsView.ColumnAutoWidth = false;
            this.gridViewMaster.OptionsView.EnableAppearanceEvenRow = true;
            this.gridViewMaster.OptionsView.EnableAppearanceOddRow = true;
            this.gridViewMaster.OptionsView.NewItemRowPosition = DevExpress.XtraGrid.Views.Grid.NewItemRowPosition.Bottom;
            this.gridViewMaster.OptionsView.ShowViewCaption = true;
            this.gridViewMaster.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
            new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.Col_PM_Category, DevExpress.Data.ColumnSortOrder.Ascending),
            new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.Col_PM_PostMaster, DevExpress.Data.ColumnSortOrder.Ascending)});
            this.gridViewMaster.ViewCaption = "Post/Master (Cấp 2)";
            //
            // gridBandChuongTrinh
            //
            this.gridBandChuongTrinh.AppearanceHeader.Options.UseTextOptions = true;
            this.gridBandChuongTrinh.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridBandChuongTrinh.Caption = "Thông tin chương trình";
            this.gridBandChuongTrinh.Columns.Add(this.Col_PM_Category);
            this.gridBandChuongTrinh.Columns.Add(this.Col_PM_MaChuongTrinh);
            this.gridBandChuongTrinh.Columns.Add(this.Col_PM_TenChuongTrinh);
            this.gridBandChuongTrinh.Columns.Add(this.Col_PM_TietMuc);
            this.gridBandChuongTrinh.Name = "gridBandChuongTrinh";
            this.gridBandChuongTrinh.Width = 297;
            //
            // Col_PM_Category
            //
            this.Col_PM_Category.Caption = "Category";
            this.Col_PM_Category.Name = "Col_PM_Category";
            this.Col_PM_Category.Visible = true;
            this.Col_PM_Category.Width = 58;
            //
            // Col_PM_MaChuongTrinh
            //
            this.Col_PM_MaChuongTrinh.Caption = "Mã chương trình";
            this.Col_PM_MaChuongTrinh.Name = "Col_PM_MaChuongTrinh";
            this.Col_PM_MaChuongTrinh.Visible = true;
            this.Col_PM_MaChuongTrinh.Width = 90;
            //
            // Col_PM_TenChuongTrinh
            //
            this.Col_PM_TenChuongTrinh.Caption = "Tên chương trình";
            this.Col_PM_TenChuongTrinh.Name = "Col_PM_TenChuongTrinh";
            this.Col_PM_TenChuongTrinh.Visible = true;
            this.Col_PM_TenChuongTrinh.Width = 94;
            //
            // Col_PM_TietMuc
            //
            this.Col_PM_TietMuc.Caption = " Tiết mục";
            this.Col_PM_TietMuc.Name = "Col_PM_TietMuc";
            this.Col_PM_TietMuc.Visible = true;
            this.Col_PM_TietMuc.Width = 55;
            //
            // gridBandPostMaster
            //
            this.gridBandPostMaster.AppearanceHeader.Options.UseTextOptions = true;
            this.gridBandPostMaster.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridBandPostMaster.Caption = "Thông tin Post/Master";
            this.gridBandPostMaster.Columns.Add(this.Col_PM_PostMaster);
            this.gridBandPostMaster.Columns.Add(this.Col_PM_TongTap);
            this.gridBandPostMaster.Columns.Add(this.Col_PM_LoaiLuu);
            this.gridBandPostMaster.Columns.Add(this.Col_PM_Ke);
            this.gridBandPostMaster.Columns.Add(this.Col_PM_Ngan);
            this.gridBandPostMaster.Columns.Add(this.Col_PM_Tang);
            this.gridBandPostMaster.Columns.Add(this.Col_PM_PopUp);
            this.gridBandPostMaster.Columns.Add(this.Col_PM_ThoiLuongChung);
            this.gridBandPostMaster.Columns.Add(this.Col_PM_TTDinhKem);
            this.gridBandPostMaster.Columns.Add(this.Col_PM_ThanhLy);
            this.gridBandPostMaster.Columns.Add(this.Col_PM_NgayNhapKho);
            this.gridBandPostMaster.Columns.Add(this.Col_PM_TTHD);
            this.gridBandPostMaster.Columns.Add(this.Col_PM_DVDNgayDuyet);
            this.gridBandPostMaster.Columns.Add(this.Col_PM_DVDNgayHoanTat);
            this.gridBandPostMaster.Name = "gridBandPostMaster";
            this.gridBandPostMaster.Width = 942;
            //
            // Col_PM_PostMaster
            //
            this.Col_PM_PostMaster.Caption = "Post/Master";
            this.Col_PM_PostMaster.Name = "Col_PM_PostMaster";
            this.Col_PM_PostMaster.OptionsColumn.AllowMove = false;
            this.Col_PM_PostMaster.OptionsColumn.AllowShowHide = false;
            this.Col_PM_PostMaster.Visible = true;
            this.Col_PM_PostMaster.Width = 70;
            //
            // Col_PM_TongTap
            //
            this.Col_PM_TongTap.Caption = "Số tập gốc/cắt";
            this.Col_PM_TongTap.Name = "Col_PM_TongTap";
            this.Col_PM_TongTap.Visible = true;
            this.Col_PM_TongTap.Width = 82;
            //
            // Col_PM_LoaiLuu
            //
            this.Col_PM_LoaiLuu.Caption = "Loại lưu trữ";
            this.Col_PM_LoaiLuu.Name = "Col_PM_LoaiLuu";
            this.Col_PM_LoaiLuu.Visible = true;
            this.Col_PM_LoaiLuu.Width = 67;
            //
            // Col_PM_Ke
            //
            this.Col_PM_Ke.Caption = "Kệ";
            this.Col_PM_Ke.Name = "Col_PM_Ke";
            this.Col_PM_Ke.Visible = true;
            this.Col_PM_Ke.Width = 24;
            //
            // Col_PM_Ngan
            //
            this.Col_PM_Ngan.Caption = "Ngăn";
            this.Col_PM_Ngan.Name = "Col_PM_Ngan";
            this.Col_PM_Ngan.Visible = true;
            this.Col_PM_Ngan.Width = 37;
            //
            // Col_PM_Tang
            //
            this.Col_PM_Tang.Caption = "Tầng";
            this.Col_PM_Tang.Name = "Col_PM_Tang";
            this.Col_PM_Tang.Visible = true;
            this.Col_PM_Tang.Width = 36;
            //
            // Col_PM_PopUp
            //
            this.Col_PM_PopUp.Caption = "Pop Up";
            this.Col_PM_PopUp.Name = "Col_PM_PopUp";
            this.Col_PM_PopUp.Visible = true;
            this.Col_PM_PopUp.Width = 46;
            //
            // Col_PM_ThoiLuongChung
            //
            this.Col_PM_ThoiLuongChung.Caption = "Thời lượng chung";
            this.Col_PM_ThoiLuongChung.Name = "Col_PM_ThoiLuongChung";
            this.Col_PM_ThoiLuongChung.Visible = true;
            this.Col_PM_ThoiLuongChung.Width = 94;
            //
            // Col_PM_TTDinhKem
            //
            this.Col_PM_TTDinhKem.Caption = "TT Đính kèm";
            this.Col_PM_TTDinhKem.Name = "Col_PM_TTDinhKem";
            this.Col_PM_TTDinhKem.Visible = true;
            this.Col_PM_TTDinhKem.Width = 71;
            //
            // Col_PM_ThanhLy
            //
            this.Col_PM_ThanhLy.Caption = "Thanh lý";
            this.Col_PM_ThanhLy.Name = "Col_PM_ThanhLy";
            this.Col_PM_ThanhLy.Visible = true;
            this.Col_PM_ThanhLy.Width = 53;
            //
            // Col_PM_NgayNhapKho
            //
            this.Col_PM_NgayNhapKho.Caption = "Ngày nhập kho";
            this.Col_PM_NgayNhapKho.Name = "Col_PM_NgayNhapKho";
            this.Col_PM_NgayNhapKho.Visible = true;
            this.Col_PM_NgayNhapKho.Width = 84;
            //
            // Col_PM_TTHD
            //
            this.Col_PM_TTHD.Caption = "Thông tin HD";
            this.Col_PM_TTHD.Name = "Col_PM_TTHD";
            this.Col_PM_TTHD.Visible = true;
            this.Col_PM_TTHD.Width = 84;
            //
            // Col_PM_DVDNgayDuyet
            //
            this.Col_PM_DVDNgayDuyet.Caption = "DVD ngày duyệt";
            this.Col_PM_DVDNgayDuyet.Name = "Col_PM_DVDNgayDuyet";
            this.Col_PM_DVDNgayDuyet.Visible = true;
            this.Col_PM_DVDNgayDuyet.Width = 90;
            //
            // Col_PM_DVDNgayHoanTat
            //
            this.Col_PM_DVDNgayHoanTat.Caption = "DVD Ngày hoàn tất";
            this.Col_PM_DVDNgayHoanTat.Name = "Col_PM_DVDNgayHoanTat";
            this.Col_PM_DVDNgayHoanTat.Visible = true;
            this.Col_PM_DVDNgayHoanTat.Width = 104;
            //
            // xtraTabControlDetail
            //
            this.xtraTabControlDetail.Dock = System.Windows.Forms.DockStyle.Fill;
            this.xtraTabControlDetail.Location = new System.Drawing.Point(0, 0);
            this.xtraTabControlDetail.Name = "xtraTabControlDetail";
            this.xtraTabControlDetail.SelectedTabPage = this.xtraTabPageDetail;
            this.xtraTabControlDetail.Size = new System.Drawing.Size(0, 0);
            this.xtraTabControlDetail.TabIndex = 0;
            this.xtraTabControlDetail.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
            this.xtraTabPageDetail});
            //
            // xtraTabPageDetail
            //
            this.xtraTabPageDetail.Name = "xtraTabPageDetail";
            this.xtraTabPageDetail.Size = new System.Drawing.Size(0, 0);
            this.xtraTabPageDetail.Text = "Chi tiết";
            //
            // popupControlContainerFilter
            //
            this.popupControlContainerFilter.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
            this.popupControlContainerFilter.Controls.Add(this.PhongBan);
            this.popupControlContainerFilter.Controls.Add(this.plLabel7);
            this.popupControlContainerFilter.Controls.Add(this.PostMaster);
            this.popupControlContainerFilter.Controls.Add(this.label10);
            this.popupControlContainerFilter.Controls.Add(this.Category);
            this.popupControlContainerFilter.Controls.Add(this.plLabel5);
            this.popupControlContainerFilter.Controls.Add(this.LoaiLuuTru);
            this.popupControlContainerFilter.Controls.Add(this.TietMuc);
            this.popupControlContainerFilter.Controls.Add(this.plLabel6);
            this.popupControlContainerFilter.Controls.Add(this.label5);
            this.popupControlContainerFilter.Controls.Add(this.NoiDung);
            this.popupControlContainerFilter.Controls.Add(this.cboTang);
            this.popupControlContainerFilter.Controls.Add(this.cboNgan);
            this.popupControlContainerFilter.Controls.Add(this.cboKe);
            this.popupControlContainerFilter.Controls.Add(this.ngay);
            this.popupControlContainerFilter.Controls.Add(this.plLabel3);
            this.popupControlContainerFilter.Controls.Add(this.plLabel4);
            this.popupControlContainerFilter.Controls.Add(this.labelControl4);
            this.popupControlContainerFilter.Controls.Add(this.plLabel2);
            this.popupControlContainerFilter.Controls.Add(this.plLabel1);
            this.popupControlContainerFilter.Dock = System.Windows.Forms.DockStyle.Top;
            this.popupControlContainerFilter.Location = new System.Drawing.Point(0, 24);
            this.popupControlContainerFilter.Manager = this.barManager1;
            this.popupControlContainerFilter.Name = "popupControlContainerFilter";
            this.popupControlContainerFilter.Size = new System.Drawing.Size(943, 84);
            this.popupControlContainerFilter.TabIndex = 0;
            this.popupControlContainerFilter.Visible = false;
            //
            // PhongBan
            //
            this.PhongBan.Location = new System.Drawing.Point(71, 56);
            this.PhongBan.Name = "PhongBan";
            this.PhongBan.Size = new System.Drawing.Size(167, 20);
            this.PhongBan.TabIndex = 252;
            //
            // plLabel7
            //
            this.plLabel7.Location = new System.Drawing.Point(4, 59);
            this.plLabel7.Name = "plLabel7";
            this.plLabel7.Size = new System.Drawing.Size(51, 13);
            this.plLabel7.TabIndex = 253;
            this.plLabel7.Text = "Phòng ban";
            this.plLabel7.ToolTip = "Phòng ban (Cấp 1)";

            //
            // PostMaster
            //
            this.PostMaster.DataSource = null;
            this.PostMaster.DisplayField = null;
            this.PostMaster.Location = new System.Drawing.Point(71, 7);
            this.PostMaster.Name = "PostMaster";
            this.PostMaster.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.PostMaster.Size = new System.Drawing.Size(162, 20);
            this.PostMaster.TabIndex = 251;
            this.PostMaster.ValueField = null;
            //
            // label10
            //
            this.label10.Location = new System.Drawing.Point(6, 11);
            this.label10.Name = "label10";
            this.label10.Size = new System.Drawing.Size(58, 13);
            this.label10.TabIndex = 250;
            this.label10.Text = "Post/Master";

            //
            // Category
            //
            this.Category._DataSource = null;
            this.Category._GetField = null;
            this.Category.Location = new System.Drawing.Point(71, 31);
            this.Category.Name = "Category";
            this.Category.Properties.CloseUpKey = new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None);
            this.Category.Size = new System.Drawing.Size(162, 20);
            this.Category.TabIndex = 249;
            //
            // plLabel5
            //
            this.plLabel5.Location = new System.Drawing.Point(7, 34);
            this.plLabel5.Name = "plLabel5";
            this.plLabel5.Size = new System.Drawing.Size(45, 13);
            this.plLabel5.TabIndex = 248;
            this.plLabel5.Text = "Category";

            //
            // LoaiLuuTru
            //
            this.LoaiLuuTru.DataSource = null;
            this.LoaiLuuTru.DisplayField = null;
            this.LoaiLuuTru.Location = new System.Drawing.Point(755, 3);
            this.LoaiLuuTru.Name = "LoaiLuuTru";
            this.LoaiLuuTru.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.LoaiLuuTru.Size = new System.Drawing.Size(185, 20);
            this.LoaiLuuTru.TabIndex = 246;
            this.LoaiLuuTru.ValueField = null;
            //
            // TietMuc
            //
            this.TietMuc.DataSource = null;
            this.TietMuc.DisplayField = null;
            this.TietMuc.Location = new System.Drawing.Point(755, 27);
            this.TietMuc.Name = "TietMuc";
            this.TietMuc.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.TietMuc.Size = new System.Drawing.Size(185, 20);
            this.TietMuc.TabIndex = 246;
            this.TietMuc.ValueField = null;
            //
            // plLabel6
            //
            this.plLabel6.Location = new System.Drawing.Point(692, 6);
            this.plLabel6.Name = "plLabel6";
            this.plLabel6.Size = new System.Drawing.Size(55, 13);
            this.plLabel6.TabIndex = 247;
            this.plLabel6.Text = "Loại lưu trữ";

            //
            // label5
            //
            this.label5.Location = new System.Drawing.Point(692, 30);
            this.label5.Name = "label5";
            this.label5.Size = new System.Drawing.Size(40, 13);
            this.label5.TabIndex = 247;
            this.label5.Text = "Tiết mục";

            //
            // NoiDung
            //
            this.NoiDung._DataSource = null;
            this.NoiDung._GetField = null;
            this.NoiDung.Location = new System.Drawing.Point(302, 31);
            this.NoiDung.Name = "NoiDung";
            this.NoiDung.Properties.CloseUpKey = new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None);
            this.NoiDung.Size = new System.Drawing.Size(373, 20);
            this.NoiDung.TabIndex = 245;
            //
            // cboTang
            //
            this.cboTang.DataSource = null;
            this.cboTang.DisplayField = null;
            this.cboTang.Location = new System.Drawing.Point(592, 6);
            this.cboTang.Name = "cboTang";
            this.cboTang.Size = new System.Drawing.Size(83, 20);
            this.cboTang.TabIndex = 244;
            this.cboTang.ValueField = null;
            //
            // cboNgan
            //
            this.cboNgan.DataSource = null;
            this.cboNgan.DisplayField = null;
            this.cboNgan.Location = new System.Drawing.Point(451, 7);
            this.cboNgan.Name = "cboNgan";
            this.cboNgan.Size = new System.Drawing.Size(92, 20);
            this.cboNgan.TabIndex = 243;
            this.cboNgan.ValueField = null;
            //
            // cboKe
            //
            this.cboKe.DataSource = null;
            this.cboKe.DisplayField = null;
            this.cboKe.Location = new System.Drawing.Point(301, 7);
            this.cboKe.Name = "cboKe";
            this.cboKe.Size = new System.Drawing.Size(107, 20);
            this.cboKe.TabIndex = 242;
            this.cboKe.ValueField = null;
            //
            // ngay
            //
            this.ngay.Caption = "Từ ngày 5/11/2012 đến ngày 5/18/2012";
            this.ngay.Default = ProtocolVN.Framework.Win.Trial.SelectionTypes.FromDateToDate;
            this.ngay.FirstFrom = new System.DateTime(2012, 5, 11, 4, 13, 4, 526);
            this.ngay.FirstTo = new System.DateTime(2012, 5, 18, 4, 13, 4, 526);
            this.ngay.FromDate = new System.DateTime(2012, 5, 11, 4, 13, 4, 526);
            this.ngay.Location = new System.Drawing.Point(302, 54);
            this.ngay.Name = "ngay";
            this.ngay.ReturnType = ProtocolVN.Framework.Win.Trial.TimeType.Date;
            this.ngay.SecondFrom = new System.DateTime(2012, 5, 11, 4, 13, 4, 526);
            this.ngay.SecondTo = new System.DateTime(2012, 5, 18, 4, 13, 4, 526);
            this.ngay.SelectedType = ProtocolVN.Framework.Win.Trial.SelectionTypes.FromDateToDate;
            this.ngay.Size = new System.Drawing.Size(373, 20);
            this.ngay.TabIndex = 196;
            this.ngay.ToDate = new System.DateTime(2012, 5, 18, 4, 13, 4, 526);
            this.ngay.Types = ((ProtocolVN.Framework.Win.Trial.SelectionTypes)(((((((((ProtocolVN.Framework.Win.Trial.SelectionTypes.OneDate | ProtocolVN.Framework.Win.Trial.SelectionTypes.OneMonth)
                        | ProtocolVN.Framework.Win.Trial.SelectionTypes.OneQuarter)
                        | ProtocolVN.Framework.Win.Trial.SelectionTypes.OneYear)
                        | ProtocolVN.Framework.Win.Trial.SelectionTypes.SixMonths)
                        | ProtocolVN.Framework.Win.Trial.SelectionTypes.FromDateToDate)
                        | ProtocolVN.Framework.Win.Trial.SelectionTypes.FromMonthToMonth)
                        | ProtocolVN.Framework.Win.Trial.SelectionTypes.FromQuarterToQuarter)
                        | ProtocolVN.Framework.Win.Trial.SelectionTypes.FromYearToYear)));
            //
            // plLabel3
            //
            this.plLabel3.Location = new System.Drawing.Point(558, 10);
            this.plLabel3.Name = "plLabel3";
            this.plLabel3.Size = new System.Drawing.Size(24, 13);
            this.plLabel3.TabIndex = 195;
            this.plLabel3.Text = "Tầng";

            //
            // plLabel4
            //
            this.plLabel4.Location = new System.Drawing.Point(244, 59);
            this.plLabel4.Name = "plLabel4";
            this.plLabel4.Size = new System.Drawing.Size(52, 13);
            this.plLabel4.TabIndex = 188;
            this.plLabel4.Text = "Ngày nhập";

            //
            // labelControl4
            //
            this.labelControl4.Location = new System.Drawing.Point(244, 34);
            this.labelControl4.Name = "labelControl4";
            this.labelControl4.Size = new System.Drawing.Size(34, 13);
            this.labelControl4.TabIndex = 188;
            this.labelControl4.Text = "Tên CT";

            //
            // plLabel2
            //
            this.plLabel2.Location = new System.Drawing.Point(414, 10);
            this.plLabel2.Name = "plLabel2";
            this.plLabel2.Size = new System.Drawing.Size(25, 13);
            this.plLabel2.TabIndex = 193;
            this.plLabel2.Text = "Ngăn";

            //
            // plLabel1
            //
            this.plLabel1.Location = new System.Drawing.Point(247, 10);
            this.plLabel1.Name = "plLabel1";
            this.plLabel1.Size = new System.Drawing.Size(12, 13);
            this.plLabel1.TabIndex = 192;
            this.plLabel1.Text = "Kệ";

            //
            // frmQLKhoLuuBetaCam
            //
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(943, 497);
            this.Controls.Add(this.splitContainerControl1);
            this.Controls.Add(this.popupControlContainerFilter);
            this.Controls.Add(this.barDockControlLeft);
            this.Controls.Add(this.barDockControlRight);
            this.Controls.Add(this.barDockControlBottom);
            this.Controls.Add(this.barDockControlTop);
            this.Name = "frmQLKhoLuuBetaCam";
            this.ShowInTaskbar = false;
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
            this.Text = "Quản lý kho lưu Betacam";
            this.Load += new System.EventHandler(this.frmQLKhoLuuBetaCam_Load);
            ((System.ComponentModel.ISupportInitialize)(this.barManager1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.popupMenu1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.popupMenuFilter)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl1)).EndInit();
            this.splitContainerControl1.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.gridControlMaster)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridViewMaster)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.xtraTabControlDetail)).EndInit();
            this.xtraTabControlDetail.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.popupControlContainerFilter)).EndInit();
            this.popupControlContainerFilter.ResumeLayout(false);
            this.popupControlContainerFilter.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.PostMaster.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.Category.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.LoaiLuuTru.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.TietMuc.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.NoiDung.Properties)).EndInit();
            this.ResumeLayout(false);
        }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Frm_reporte_historialxestacion));
     this.gridView2 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn3 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn4 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn5 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn6 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn7 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn8 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Dgb_ControlStock = new DevExpress.XtraGrid.GridControl();
     this.cmMenuGrid2 = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.Ext_Stock = new System.Windows.Forms.ToolStripMenuItem();
     this.dgb_mainStock = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.productid = new DevExpress.XtraGrid.Columns.GridColumn();
     this.productname = new DevExpress.XtraGrid.Columns.GridColumn();
     this.nserie = new DevExpress.XtraGrid.Columns.GridColumn();
     this._stock = new DevExpress.XtraGrid.Columns.GridColumn();
     this._fechdoc = new DevExpress.XtraGrid.Columns.GridColumn();
     this.cardView1 = new DevExpress.XtraGrid.Views.Card.CardView();
     this.xfechdoc = new DevExpress.XtraGrid.Columns.GridColumn();
     this.dTStockBindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.dT_Stock = new BapFormulariosNet.D60ALMACEN.REPORTES.DT_Stock();
     this.bapEmpresa02DataSetBindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.cmMenuGrid = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.exportarAExcelToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.bandedGridView2 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridView();
     this.gridBand2 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.Examinar_Historial = new DevExpress.XtraGrid.GridControl();
     this.gridView1 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this._xfechdoc = new DevExpress.XtraGrid.Columns.GridColumn();
     this._xtipodoc = new DevExpress.XtraGrid.Columns.GridColumn();
     this._xserdoc = new DevExpress.XtraGrid.Columns.GridColumn();
     this._xnumdoc = new DevExpress.XtraGrid.Columns.GridColumn();
     this._xcantidad = new DevExpress.XtraGrid.Columns.GridColumn();
     this._xmotivo = new DevExpress.XtraGrid.Columns.GridColumn();
     this._xperdni = new DevExpress.XtraGrid.Columns.GridColumn();
     this._xnombrelargo = new DevExpress.XtraGrid.Columns.GridColumn();
     this._xglosa = new DevExpress.XtraGrid.Columns.GridColumn();
     this.layoutView1 = new DevExpress.XtraGrid.Views.Layout.LayoutView();
     this.bandedGridColumn1 = new DevExpress.XtraGrid.Columns.LayoutViewColumn();
     this.layoutViewField_bandedGridColumn1 = new DevExpress.XtraGrid.Views.Layout.LayoutViewField();
     this.bandedGridColumn2 = new DevExpress.XtraGrid.Columns.LayoutViewColumn();
     this.layoutViewField_bandedGridColumn2 = new DevExpress.XtraGrid.Views.Layout.LayoutViewField();
     this.bandedGridColumn3 = new DevExpress.XtraGrid.Columns.LayoutViewColumn();
     this.layoutViewField_bandedGridColumn3 = new DevExpress.XtraGrid.Views.Layout.LayoutViewField();
     this.bandedGridColumn4 = new DevExpress.XtraGrid.Columns.LayoutViewColumn();
     this.layoutViewField_bandedGridColumn4 = new DevExpress.XtraGrid.Views.Layout.LayoutViewField();
     this.bandedGridColumn5 = new DevExpress.XtraGrid.Columns.LayoutViewColumn();
     this.layoutViewField_bandedGridColumn5 = new DevExpress.XtraGrid.Views.Layout.LayoutViewField();
     this.bandedGridColumn6 = new DevExpress.XtraGrid.Columns.LayoutViewColumn();
     this.layoutViewField_bandedGridColumn6 = new DevExpress.XtraGrid.Views.Layout.LayoutViewField();
     this.bandedGridColumn7 = new DevExpress.XtraGrid.Columns.LayoutViewColumn();
     this.layoutViewField_bandedGridColumn7 = new DevExpress.XtraGrid.Views.Layout.LayoutViewField();
     this.bandedGridColumn8 = new DevExpress.XtraGrid.Columns.LayoutViewColumn();
     this.layoutViewField_bandedGridColumn8 = new DevExpress.XtraGrid.Views.Layout.LayoutViewField();
     this.layoutViewCard1 = new DevExpress.XtraGrid.Views.Layout.LayoutViewCard();
     this.Mensaje = new System.Windows.Forms.ToolTip(this.components);
     this.peso = new System.Windows.Forms.TextBox();
     this.label30 = new System.Windows.Forms.Label();
     this.label3 = new System.Windows.Forms.Label();
     this.cencosid = new System.Windows.Forms.TextBox();
     this.cencosname = new System.Windows.Forms.TextBox();
     this.label6 = new System.Windows.Forms.Label();
     this.unmedpeso = new System.Windows.Forms.TextBox();
     this.panel1 = new System.Windows.Forms.Panel();
     this.label11 = new System.Windows.Forms.Label();
     this.label31 = new System.Windows.Forms.Label();
     this.label1 = new System.Windows.Forms.Label();
     this.cmb_estacion = new System.Windows.Forms.ComboBox();
     this.sfdhistorial = new System.Windows.Forms.SaveFileDialog();
     this.groupControl1 = new DevExpress.XtraEditors.GroupControl();
     this.label2 = new System.Windows.Forms.Label();
     this.btn_print = new DevExpress.XtraEditors.SimpleButton();
     ((System.ComponentModel.ISupportInitialize)(this.gridView2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Dgb_ControlStock)).BeginInit();
     this.cmMenuGrid2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dgb_mainStock)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cardView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dTStockBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dT_Stock)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.bapEmpresa02DataSetBindingSource)).BeginInit();
     this.cmMenuGrid.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.bandedGridView2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Examinar_Historial)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutViewField_bandedGridColumn1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutViewField_bandedGridColumn2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutViewField_bandedGridColumn3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutViewField_bandedGridColumn4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutViewField_bandedGridColumn5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutViewField_bandedGridColumn6)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutViewField_bandedGridColumn7)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutViewField_bandedGridColumn8)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutViewCard1)).BeginInit();
     this.panel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
     this.groupControl1.SuspendLayout();
     this.SuspendLayout();
     //
     // gridView2
     //
     this.gridView2.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn1,
     this.gridColumn2,
     this.gridColumn3,
     this.gridColumn4,
     this.gridColumn5,
     this.gridColumn6,
     this.gridColumn7,
     this.gridColumn8});
     this.gridView2.GridControl = this.Dgb_ControlStock;
     this.gridView2.Name = "gridView2";
     this.gridView2.OptionsView.ShowGroupPanel = false;
     this.gridView2.VertScrollVisibility = DevExpress.XtraGrid.Views.Base.ScrollVisibility.Never;
     //
     // gridColumn1
     //
     this.gridColumn1.Caption = "fecha";
     this.gridColumn1.FieldName = "fechdoc";
     this.gridColumn1.Name = "gridColumn1";
     this.gridColumn1.Visible = true;
     this.gridColumn1.VisibleIndex = 0;
     //
     // gridColumn2
     //
     this.gridColumn2.Name = "gridColumn2";
     this.gridColumn2.Visible = true;
     this.gridColumn2.VisibleIndex = 1;
     //
     // gridColumn3
     //
     this.gridColumn3.Name = "gridColumn3";
     this.gridColumn3.Visible = true;
     this.gridColumn3.VisibleIndex = 2;
     //
     // gridColumn4
     //
     this.gridColumn4.Name = "gridColumn4";
     this.gridColumn4.Visible = true;
     this.gridColumn4.VisibleIndex = 3;
     //
     // gridColumn5
     //
     this.gridColumn5.Name = "gridColumn5";
     this.gridColumn5.Visible = true;
     this.gridColumn5.VisibleIndex = 4;
     //
     // gridColumn6
     //
     this.gridColumn6.Name = "gridColumn6";
     this.gridColumn6.Visible = true;
     this.gridColumn6.VisibleIndex = 5;
     //
     // gridColumn7
     //
     this.gridColumn7.Name = "gridColumn7";
     this.gridColumn7.Visible = true;
     this.gridColumn7.VisibleIndex = 6;
     //
     // gridColumn8
     //
     this.gridColumn8.Name = "gridColumn8";
     this.gridColumn8.Visible = true;
     this.gridColumn8.VisibleIndex = 7;
     //
     // Dgb_ControlStock
     //
     this.Dgb_ControlStock.ContextMenuStrip = this.cmMenuGrid2;
     this.Dgb_ControlStock.EmbeddedNavigator.Buttons.Append.Visible = false;
     this.Dgb_ControlStock.EmbeddedNavigator.Buttons.CancelEdit.Visible = false;
     this.Dgb_ControlStock.EmbeddedNavigator.Buttons.Edit.Visible = false;
     this.Dgb_ControlStock.EmbeddedNavigator.Buttons.EnabledAutoRepeat = false;
     this.Dgb_ControlStock.EmbeddedNavigator.Buttons.EndEdit.Visible = false;
     this.Dgb_ControlStock.EmbeddedNavigator.Buttons.Remove.Visible = false;
     this.Dgb_ControlStock.EmbeddedNavigator.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Office2003;
     this.Dgb_ControlStock.Location = new System.Drawing.Point(4, 94);
     this.Dgb_ControlStock.MainView = this.dgb_mainStock;
     this.Dgb_ControlStock.Name = "Dgb_ControlStock";
     this.Dgb_ControlStock.Size = new System.Drawing.Size(797, 198);
     this.Dgb_ControlStock.TabIndex = 69;
     this.Dgb_ControlStock.UseEmbeddedNavigator = true;
     this.Dgb_ControlStock.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.dgb_mainStock,
     this.cardView1,
     this.gridView2});
     this.Dgb_ControlStock.KeyUp += new System.Windows.Forms.KeyEventHandler(this.Dgb_ControlStock_KeyUp);
     this.Dgb_ControlStock.MouseClick += new System.Windows.Forms.MouseEventHandler(this.Dgb_ControlStock_MouseClick);
     //
     // cmMenuGrid2
     //
     this.cmMenuGrid2.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.Ext_Stock});
     this.cmMenuGrid2.Name = "cmMenuGrid2";
     this.cmMenuGrid2.Size = new System.Drawing.Size(156, 26);
     //
     // Ext_Stock
     //
     this.Ext_Stock.Name = "Ext_Stock";
     this.Ext_Stock.Size = new System.Drawing.Size(155, 22);
     this.Ext_Stock.Text = "Exportar a Excel";
     this.Ext_Stock.Click += new System.EventHandler(this.Ext_Stock_Click);
     //
     // dgb_mainStock
     //
     this.dgb_mainStock.Appearance.ColumnFilterButtonActive.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(156)))), ((int)(((byte)(212)))), ((int)(((byte)(204)))));
     this.dgb_mainStock.Appearance.ColumnFilterButtonActive.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(181)))), ((int)(((byte)(223)))), ((int)(((byte)(217)))));
     this.dgb_mainStock.Appearance.ColumnFilterButtonActive.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(156)))), ((int)(((byte)(212)))), ((int)(((byte)(204)))));
     this.dgb_mainStock.Appearance.ColumnFilterButtonActive.ForeColor = System.Drawing.Color.Blue;
     this.dgb_mainStock.Appearance.ColumnFilterButtonActive.Options.UseBackColor = true;
     this.dgb_mainStock.Appearance.ColumnFilterButtonActive.Options.UseBorderColor = true;
     this.dgb_mainStock.Appearance.ColumnFilterButtonActive.Options.UseForeColor = true;
     this.dgb_mainStock.Appearance.Empty.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(156)))), ((int)(((byte)(212)))), ((int)(((byte)(204)))));
     this.dgb_mainStock.Appearance.Empty.Options.UseBackColor = true;
     this.dgb_mainStock.Appearance.FilterCloseButton.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(212)))), ((int)(((byte)(208)))), ((int)(((byte)(200)))));
     this.dgb_mainStock.Appearance.FilterCloseButton.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(104)))), ((int)(((byte)(138)))), ((int)(((byte)(131)))));
     this.dgb_mainStock.Appearance.FilterCloseButton.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(212)))), ((int)(((byte)(208)))), ((int)(((byte)(200)))));
     this.dgb_mainStock.Appearance.FilterCloseButton.ForeColor = System.Drawing.Color.Black;
     this.dgb_mainStock.Appearance.FilterCloseButton.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.ForwardDiagonal;
     this.dgb_mainStock.Appearance.FilterCloseButton.Options.UseBackColor = true;
     this.dgb_mainStock.Appearance.FilterCloseButton.Options.UseBorderColor = true;
     this.dgb_mainStock.Appearance.FilterCloseButton.Options.UseForeColor = true;
     this.dgb_mainStock.Appearance.FilterPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(14)))), ((int)(((byte)(48)))), ((int)(((byte)(41)))));
     this.dgb_mainStock.Appearance.FilterPanel.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(212)))), ((int)(((byte)(208)))), ((int)(((byte)(200)))));
     this.dgb_mainStock.Appearance.FilterPanel.ForeColor = System.Drawing.Color.White;
     this.dgb_mainStock.Appearance.FilterPanel.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.ForwardDiagonal;
     this.dgb_mainStock.Appearance.FilterPanel.Options.UseBackColor = true;
     this.dgb_mainStock.Appearance.FilterPanel.Options.UseForeColor = true;
     this.dgb_mainStock.Appearance.FixedLine.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(2)))), ((int)(((byte)(74)))), ((int)(((byte)(66)))));
     this.dgb_mainStock.Appearance.FixedLine.Options.UseBackColor = true;
     this.dgb_mainStock.Appearance.FocusedCell.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(200)))), ((int)(((byte)(224)))), ((int)(((byte)(216)))));
     this.dgb_mainStock.Appearance.FocusedCell.ForeColor = System.Drawing.Color.Black;
     this.dgb_mainStock.Appearance.FocusedCell.Options.UseBackColor = true;
     this.dgb_mainStock.Appearance.FocusedCell.Options.UseForeColor = true;
     this.dgb_mainStock.Appearance.FocusedRow.BackColor = System.Drawing.Color.Tomato;
     this.dgb_mainStock.Appearance.FocusedRow.BackColor2 = System.Drawing.Color.Tomato;
     this.dgb_mainStock.Appearance.FocusedRow.ForeColor = System.Drawing.Color.White;
     this.dgb_mainStock.Appearance.FocusedRow.Options.UseBackColor = true;
     this.dgb_mainStock.Appearance.FocusedRow.Options.UseForeColor = true;
     this.dgb_mainStock.Appearance.FooterPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(136)))), ((int)(((byte)(192)))), ((int)(((byte)(184)))));
     this.dgb_mainStock.Appearance.FooterPanel.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(136)))), ((int)(((byte)(192)))), ((int)(((byte)(184)))));
     this.dgb_mainStock.Appearance.FooterPanel.ForeColor = System.Drawing.Color.Black;
     this.dgb_mainStock.Appearance.FooterPanel.Options.UseBackColor = true;
     this.dgb_mainStock.Appearance.FooterPanel.Options.UseBorderColor = true;
     this.dgb_mainStock.Appearance.FooterPanel.Options.UseForeColor = true;
     this.dgb_mainStock.Appearance.GroupButton.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(136)))), ((int)(((byte)(192)))), ((int)(((byte)(184)))));
     this.dgb_mainStock.Appearance.GroupButton.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(136)))), ((int)(((byte)(192)))), ((int)(((byte)(184)))));
     this.dgb_mainStock.Appearance.GroupButton.ForeColor = System.Drawing.Color.Black;
     this.dgb_mainStock.Appearance.GroupButton.Options.UseBackColor = true;
     this.dgb_mainStock.Appearance.GroupButton.Options.UseBorderColor = true;
     this.dgb_mainStock.Appearance.GroupButton.Options.UseForeColor = true;
     this.dgb_mainStock.Appearance.GroupFooter.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(146)))), ((int)(((byte)(202)))), ((int)(((byte)(194)))));
     this.dgb_mainStock.Appearance.GroupFooter.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(146)))), ((int)(((byte)(202)))), ((int)(((byte)(194)))));
     this.dgb_mainStock.Appearance.GroupFooter.ForeColor = System.Drawing.Color.Black;
     this.dgb_mainStock.Appearance.GroupFooter.Options.UseBackColor = true;
     this.dgb_mainStock.Appearance.GroupFooter.Options.UseBorderColor = true;
     this.dgb_mainStock.Appearance.GroupFooter.Options.UseForeColor = true;
     this.dgb_mainStock.Appearance.GroupPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(44)))), ((int)(((byte)(78)))), ((int)(((byte)(71)))));
     this.dgb_mainStock.Appearance.GroupPanel.BackColor2 = System.Drawing.Color.White;
     this.dgb_mainStock.Appearance.GroupPanel.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
     this.dgb_mainStock.Appearance.GroupPanel.ForeColor = System.Drawing.Color.White;
     this.dgb_mainStock.Appearance.GroupPanel.Options.UseBackColor = true;
     this.dgb_mainStock.Appearance.GroupPanel.Options.UseFont = true;
     this.dgb_mainStock.Appearance.GroupPanel.Options.UseForeColor = true;
     this.dgb_mainStock.Appearance.GroupRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(72)))), ((int)(((byte)(144)))), ((int)(((byte)(136)))));
     this.dgb_mainStock.Appearance.GroupRow.ForeColor = System.Drawing.Color.Silver;
     this.dgb_mainStock.Appearance.GroupRow.Options.UseBackColor = true;
     this.dgb_mainStock.Appearance.GroupRow.Options.UseForeColor = true;
     this.dgb_mainStock.Appearance.HeaderPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(136)))), ((int)(((byte)(192)))), ((int)(((byte)(184)))));
     this.dgb_mainStock.Appearance.HeaderPanel.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(136)))), ((int)(((byte)(192)))), ((int)(((byte)(184)))));
     this.dgb_mainStock.Appearance.HeaderPanel.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
     this.dgb_mainStock.Appearance.HeaderPanel.ForeColor = System.Drawing.Color.Black;
     this.dgb_mainStock.Appearance.HeaderPanel.Options.UseBackColor = true;
     this.dgb_mainStock.Appearance.HeaderPanel.Options.UseBorderColor = true;
     this.dgb_mainStock.Appearance.HeaderPanel.Options.UseFont = true;
     this.dgb_mainStock.Appearance.HeaderPanel.Options.UseForeColor = true;
     this.dgb_mainStock.Appearance.HideSelectionRow.BackColor = System.Drawing.Color.Gray;
     this.dgb_mainStock.Appearance.HideSelectionRow.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(212)))), ((int)(((byte)(208)))), ((int)(((byte)(200)))));
     this.dgb_mainStock.Appearance.HideSelectionRow.Options.UseBackColor = true;
     this.dgb_mainStock.Appearance.HideSelectionRow.Options.UseForeColor = true;
     this.dgb_mainStock.Appearance.HorzLine.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(136)))), ((int)(((byte)(192)))), ((int)(((byte)(184)))));
     this.dgb_mainStock.Appearance.HorzLine.Options.UseBackColor = true;
     this.dgb_mainStock.Appearance.Preview.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(196)))), ((int)(((byte)(252)))), ((int)(((byte)(244)))));
     this.dgb_mainStock.Appearance.Preview.BackColor2 = System.Drawing.Color.White;
     this.dgb_mainStock.Appearance.Preview.ForeColor = System.Drawing.Color.Navy;
     this.dgb_mainStock.Appearance.Preview.Options.UseBackColor = true;
     this.dgb_mainStock.Appearance.Preview.Options.UseForeColor = true;
     this.dgb_mainStock.Appearance.Row.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(200)))), ((int)(((byte)(224)))), ((int)(((byte)(216)))));
     this.dgb_mainStock.Appearance.Row.ForeColor = System.Drawing.Color.Black;
     this.dgb_mainStock.Appearance.Row.Options.UseBackColor = true;
     this.dgb_mainStock.Appearance.Row.Options.UseForeColor = true;
     this.dgb_mainStock.Appearance.RowSeparator.BackColor = System.Drawing.Color.White;
     this.dgb_mainStock.Appearance.RowSeparator.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(156)))), ((int)(((byte)(212)))), ((int)(((byte)(204)))));
     this.dgb_mainStock.Appearance.RowSeparator.Options.UseBackColor = true;
     this.dgb_mainStock.Appearance.SelectedRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(10)))), ((int)(((byte)(10)))), ((int)(((byte)(138)))));
     this.dgb_mainStock.Appearance.SelectedRow.ForeColor = System.Drawing.Color.White;
     this.dgb_mainStock.Appearance.SelectedRow.Options.UseBackColor = true;
     this.dgb_mainStock.Appearance.SelectedRow.Options.UseForeColor = true;
     this.dgb_mainStock.Appearance.TopNewRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(215)))), ((int)(((byte)(232)))), ((int)(((byte)(226)))));
     this.dgb_mainStock.Appearance.TopNewRow.Options.UseBackColor = true;
     this.dgb_mainStock.Appearance.VertLine.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(136)))), ((int)(((byte)(192)))), ((int)(((byte)(184)))));
     this.dgb_mainStock.Appearance.VertLine.Options.UseBackColor = true;
     this.dgb_mainStock.AppearancePrint.HeaderPanel.BackColor = System.Drawing.Color.Teal;
     this.dgb_mainStock.AppearancePrint.HeaderPanel.ForeColor = System.Drawing.Color.White;
     this.dgb_mainStock.AppearancePrint.HeaderPanel.Options.UseBackColor = true;
     this.dgb_mainStock.AppearancePrint.HeaderPanel.Options.UseForeColor = true;
     this.dgb_mainStock.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.productid,
     this.productname,
     this.nserie,
     this._stock,
     this._fechdoc});
     this.dgb_mainStock.GridControl = this.Dgb_ControlStock;
     this.dgb_mainStock.Name = "dgb_mainStock";
     this.dgb_mainStock.OptionsView.ShowGroupPanel = false;
     this.dgb_mainStock.PaintStyleName = "Flat";
     //
     // productid
     //
     this.productid.Caption = "Codigo";
     this.productid.FieldName = "productid";
     this.productid.Name = "productid";
     this.productid.OptionsColumn.AllowEdit = false;
     this.productid.Visible = true;
     this.productid.VisibleIndex = 0;
     this.productid.Width = 84;
     //
     // productname
     //
     this.productname.Caption = "Producto";
     this.productname.FieldName = "productname";
     this.productname.Name = "productname";
     this.productname.OptionsColumn.AllowEdit = false;
     this.productname.Visible = true;
     this.productname.VisibleIndex = 1;
     this.productname.Width = 431;
     //
     // nserie
     //
     this.nserie.Caption = "N°-Serie";
     this.nserie.FieldName = "nserie";
     this.nserie.Name = "nserie";
     this.nserie.OptionsColumn.AllowEdit = false;
     this.nserie.Visible = true;
     this.nserie.VisibleIndex = 2;
     this.nserie.Width = 99;
     //
     // _stock
     //
     this._stock.Caption = "Stock";
     this._stock.FieldName = "stock";
     this._stock.Name = "_stock";
     this._stock.OptionsColumn.AllowEdit = false;
     this._stock.Visible = true;
     this._stock.VisibleIndex = 3;
     this._stock.Width = 66;
     //
     // _fechdoc
     //
     this._fechdoc.Caption = "Fecha";
     this._fechdoc.FieldName = "fechdoc";
     this._fechdoc.Name = "_fechdoc";
     this._fechdoc.OptionsColumn.AllowEdit = false;
     this._fechdoc.Width = 99;
     //
     // cardView1
     //
     this.cardView1.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.xfechdoc});
     this.cardView1.FocusedCardTopFieldIndex = 0;
     this.cardView1.GridControl = this.Dgb_ControlStock;
     this.cardView1.Name = "cardView1";
     this.cardView1.VertScrollVisibility = DevExpress.XtraGrid.Views.Base.ScrollVisibility.Auto;
     //
     // xfechdoc
     //
     this.xfechdoc.Caption = "Fecha";
     this.xfechdoc.FieldName = "fechdoc";
     this.xfechdoc.Name = "xfechdoc";
     this.xfechdoc.Visible = true;
     this.xfechdoc.VisibleIndex = 0;
     //
     // dTStockBindingSource
     //
     this.dTStockBindingSource.DataSource = this.dT_Stock;
     this.dTStockBindingSource.Position = 0;
     //
     // dT_Stock
     //
     this.dT_Stock.DataSetName = "DT_Stock";
     this.dT_Stock.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
     //
     // cmMenuGrid
     //
     this.cmMenuGrid.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.exportarAExcelToolStripMenuItem});
     this.cmMenuGrid.Name = "cmMenuGrid";
     this.cmMenuGrid.Size = new System.Drawing.Size(156, 26);
     //
     // exportarAExcelToolStripMenuItem
     //
     this.exportarAExcelToolStripMenuItem.Name = "exportarAExcelToolStripMenuItem";
     this.exportarAExcelToolStripMenuItem.Size = new System.Drawing.Size(155, 22);
     this.exportarAExcelToolStripMenuItem.Text = "Exportar a Excel";
     this.exportarAExcelToolStripMenuItem.Click += new System.EventHandler(this.exportarAExcelToolStripMenuItem_Click);
     //
     // bandedGridView2
     //
     this.bandedGridView2.Bands.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.GridBand[] {
     this.gridBand2});
     this.bandedGridView2.GridControl = this.Examinar_Historial;
     this.bandedGridView2.Name = "bandedGridView2";
     //
     // gridBand2
     //
     this.gridBand2.Caption = "gridBand2";
     this.gridBand2.Name = "gridBand2";
     this.gridBand2.VisibleIndex = 0;
     //
     // Examinar_Historial
     //
     this.Examinar_Historial.ContextMenuStrip = this.cmMenuGrid;
     this.Examinar_Historial.EmbeddedNavigator.Buttons.Append.Enabled = false;
     this.Examinar_Historial.EmbeddedNavigator.Buttons.Append.Visible = false;
     this.Examinar_Historial.EmbeddedNavigator.Buttons.CancelEdit.Visible = false;
     this.Examinar_Historial.EmbeddedNavigator.Buttons.Edit.Visible = false;
     this.Examinar_Historial.EmbeddedNavigator.Buttons.EndEdit.Visible = false;
     this.Examinar_Historial.EmbeddedNavigator.Buttons.Remove.Enabled = false;
     this.Examinar_Historial.EmbeddedNavigator.Buttons.Remove.Visible = false;
     this.Examinar_Historial.EmbeddedNavigator.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Office2003;
     this.Examinar_Historial.Location = new System.Drawing.Point(1, 318);
     this.Examinar_Historial.MainView = this.gridView1;
     this.Examinar_Historial.Name = "Examinar_Historial";
     this.Examinar_Historial.Size = new System.Drawing.Size(1049, 233);
     this.Examinar_Historial.TabIndex = 67;
     this.Examinar_Historial.UseEmbeddedNavigator = true;
     this.Examinar_Historial.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridView1,
     this.layoutView1,
     this.bandedGridView2});
     //
     // gridView1
     //
     this.gridView1.Appearance.ColumnFilterButton.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(136)))), ((int)(((byte)(192)))), ((int)(((byte)(184)))));
     this.gridView1.Appearance.ColumnFilterButton.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(156)))), ((int)(((byte)(212)))), ((int)(((byte)(204)))));
     this.gridView1.Appearance.ColumnFilterButton.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(136)))), ((int)(((byte)(192)))), ((int)(((byte)(184)))));
     this.gridView1.Appearance.ColumnFilterButton.ForeColor = System.Drawing.Color.Gray;
     this.gridView1.Appearance.ColumnFilterButton.Options.UseBackColor = true;
     this.gridView1.Appearance.ColumnFilterButton.Options.UseBorderColor = true;
     this.gridView1.Appearance.ColumnFilterButton.Options.UseForeColor = true;
     this.gridView1.Appearance.ColumnFilterButtonActive.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(156)))), ((int)(((byte)(212)))), ((int)(((byte)(204)))));
     this.gridView1.Appearance.ColumnFilterButtonActive.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(181)))), ((int)(((byte)(223)))), ((int)(((byte)(217)))));
     this.gridView1.Appearance.ColumnFilterButtonActive.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(156)))), ((int)(((byte)(212)))), ((int)(((byte)(204)))));
     this.gridView1.Appearance.ColumnFilterButtonActive.ForeColor = System.Drawing.Color.Blue;
     this.gridView1.Appearance.ColumnFilterButtonActive.Options.UseBackColor = true;
     this.gridView1.Appearance.ColumnFilterButtonActive.Options.UseBorderColor = true;
     this.gridView1.Appearance.ColumnFilterButtonActive.Options.UseForeColor = true;
     this.gridView1.Appearance.Empty.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(156)))), ((int)(((byte)(212)))), ((int)(((byte)(204)))));
     this.gridView1.Appearance.Empty.Options.UseBackColor = true;
     this.gridView1.Appearance.FilterCloseButton.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(212)))), ((int)(((byte)(208)))), ((int)(((byte)(200)))));
     this.gridView1.Appearance.FilterCloseButton.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(104)))), ((int)(((byte)(138)))), ((int)(((byte)(131)))));
     this.gridView1.Appearance.FilterCloseButton.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(212)))), ((int)(((byte)(208)))), ((int)(((byte)(200)))));
     this.gridView1.Appearance.FilterCloseButton.ForeColor = System.Drawing.Color.Black;
     this.gridView1.Appearance.FilterCloseButton.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.ForwardDiagonal;
     this.gridView1.Appearance.FilterCloseButton.Options.UseBackColor = true;
     this.gridView1.Appearance.FilterCloseButton.Options.UseBorderColor = true;
     this.gridView1.Appearance.FilterCloseButton.Options.UseForeColor = true;
     this.gridView1.Appearance.FilterPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(14)))), ((int)(((byte)(48)))), ((int)(((byte)(41)))));
     this.gridView1.Appearance.FilterPanel.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(212)))), ((int)(((byte)(208)))), ((int)(((byte)(200)))));
     this.gridView1.Appearance.FilterPanel.ForeColor = System.Drawing.Color.White;
     this.gridView1.Appearance.FilterPanel.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.ForwardDiagonal;
     this.gridView1.Appearance.FilterPanel.Options.UseBackColor = true;
     this.gridView1.Appearance.FilterPanel.Options.UseForeColor = true;
     this.gridView1.Appearance.FixedLine.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(2)))), ((int)(((byte)(74)))), ((int)(((byte)(66)))));
     this.gridView1.Appearance.FixedLine.Options.UseBackColor = true;
     this.gridView1.Appearance.FocusedCell.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(200)))), ((int)(((byte)(224)))), ((int)(((byte)(216)))));
     this.gridView1.Appearance.FocusedCell.ForeColor = System.Drawing.Color.Black;
     this.gridView1.Appearance.FocusedCell.Options.UseBackColor = true;
     this.gridView1.Appearance.FocusedCell.Options.UseForeColor = true;
     this.gridView1.Appearance.FocusedRow.BackColor = System.Drawing.Color.Tomato;
     this.gridView1.Appearance.FocusedRow.BackColor2 = System.Drawing.Color.Tomato;
     this.gridView1.Appearance.FocusedRow.ForeColor = System.Drawing.Color.White;
     this.gridView1.Appearance.FocusedRow.Options.UseBackColor = true;
     this.gridView1.Appearance.FocusedRow.Options.UseForeColor = true;
     this.gridView1.Appearance.FooterPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(136)))), ((int)(((byte)(192)))), ((int)(((byte)(184)))));
     this.gridView1.Appearance.FooterPanel.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(136)))), ((int)(((byte)(192)))), ((int)(((byte)(184)))));
     this.gridView1.Appearance.FooterPanel.ForeColor = System.Drawing.Color.Black;
     this.gridView1.Appearance.FooterPanel.Options.UseBackColor = true;
     this.gridView1.Appearance.FooterPanel.Options.UseBorderColor = true;
     this.gridView1.Appearance.FooterPanel.Options.UseForeColor = true;
     this.gridView1.Appearance.GroupButton.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(136)))), ((int)(((byte)(192)))), ((int)(((byte)(184)))));
     this.gridView1.Appearance.GroupButton.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(136)))), ((int)(((byte)(192)))), ((int)(((byte)(184)))));
     this.gridView1.Appearance.GroupButton.ForeColor = System.Drawing.Color.Black;
     this.gridView1.Appearance.GroupButton.Options.UseBackColor = true;
     this.gridView1.Appearance.GroupButton.Options.UseBorderColor = true;
     this.gridView1.Appearance.GroupButton.Options.UseForeColor = true;
     this.gridView1.Appearance.GroupFooter.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(146)))), ((int)(((byte)(202)))), ((int)(((byte)(194)))));
     this.gridView1.Appearance.GroupFooter.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(146)))), ((int)(((byte)(202)))), ((int)(((byte)(194)))));
     this.gridView1.Appearance.GroupFooter.ForeColor = System.Drawing.Color.Black;
     this.gridView1.Appearance.GroupFooter.Options.UseBackColor = true;
     this.gridView1.Appearance.GroupFooter.Options.UseBorderColor = true;
     this.gridView1.Appearance.GroupFooter.Options.UseForeColor = true;
     this.gridView1.Appearance.GroupPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(44)))), ((int)(((byte)(78)))), ((int)(((byte)(71)))));
     this.gridView1.Appearance.GroupPanel.BackColor2 = System.Drawing.Color.White;
     this.gridView1.Appearance.GroupPanel.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
     this.gridView1.Appearance.GroupPanel.ForeColor = System.Drawing.Color.White;
     this.gridView1.Appearance.GroupPanel.Options.UseBackColor = true;
     this.gridView1.Appearance.GroupPanel.Options.UseFont = true;
     this.gridView1.Appearance.GroupPanel.Options.UseForeColor = true;
     this.gridView1.Appearance.GroupRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(72)))), ((int)(((byte)(144)))), ((int)(((byte)(136)))));
     this.gridView1.Appearance.GroupRow.ForeColor = System.Drawing.Color.Silver;
     this.gridView1.Appearance.GroupRow.Options.UseBackColor = true;
     this.gridView1.Appearance.GroupRow.Options.UseForeColor = true;
     this.gridView1.Appearance.HeaderPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(136)))), ((int)(((byte)(192)))), ((int)(((byte)(184)))));
     this.gridView1.Appearance.HeaderPanel.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(136)))), ((int)(((byte)(192)))), ((int)(((byte)(184)))));
     this.gridView1.Appearance.HeaderPanel.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
     this.gridView1.Appearance.HeaderPanel.ForeColor = System.Drawing.Color.Black;
     this.gridView1.Appearance.HeaderPanel.Options.UseBackColor = true;
     this.gridView1.Appearance.HeaderPanel.Options.UseBorderColor = true;
     this.gridView1.Appearance.HeaderPanel.Options.UseFont = true;
     this.gridView1.Appearance.HeaderPanel.Options.UseForeColor = true;
     this.gridView1.Appearance.HideSelectionRow.BackColor = System.Drawing.Color.Gray;
     this.gridView1.Appearance.HideSelectionRow.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(212)))), ((int)(((byte)(208)))), ((int)(((byte)(200)))));
     this.gridView1.Appearance.HideSelectionRow.Options.UseBackColor = true;
     this.gridView1.Appearance.HideSelectionRow.Options.UseForeColor = true;
     this.gridView1.Appearance.HorzLine.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(136)))), ((int)(((byte)(192)))), ((int)(((byte)(184)))));
     this.gridView1.Appearance.HorzLine.Options.UseBackColor = true;
     this.gridView1.Appearance.Preview.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(196)))), ((int)(((byte)(252)))), ((int)(((byte)(244)))));
     this.gridView1.Appearance.Preview.BackColor2 = System.Drawing.Color.White;
     this.gridView1.Appearance.Preview.ForeColor = System.Drawing.Color.Navy;
     this.gridView1.Appearance.Preview.Options.UseBackColor = true;
     this.gridView1.Appearance.Preview.Options.UseForeColor = true;
     this.gridView1.Appearance.Row.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(200)))), ((int)(((byte)(224)))), ((int)(((byte)(216)))));
     this.gridView1.Appearance.Row.ForeColor = System.Drawing.Color.Black;
     this.gridView1.Appearance.Row.Options.UseBackColor = true;
     this.gridView1.Appearance.Row.Options.UseForeColor = true;
     this.gridView1.Appearance.RowSeparator.BackColor = System.Drawing.Color.White;
     this.gridView1.Appearance.RowSeparator.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(156)))), ((int)(((byte)(212)))), ((int)(((byte)(204)))));
     this.gridView1.Appearance.RowSeparator.Options.UseBackColor = true;
     this.gridView1.Appearance.SelectedRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(10)))), ((int)(((byte)(10)))), ((int)(((byte)(138)))));
     this.gridView1.Appearance.SelectedRow.ForeColor = System.Drawing.Color.White;
     this.gridView1.Appearance.SelectedRow.Options.UseBackColor = true;
     this.gridView1.Appearance.SelectedRow.Options.UseForeColor = true;
     this.gridView1.Appearance.TopNewRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(215)))), ((int)(((byte)(232)))), ((int)(((byte)(226)))));
     this.gridView1.Appearance.TopNewRow.Options.UseBackColor = true;
     this.gridView1.Appearance.VertLine.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(136)))), ((int)(((byte)(192)))), ((int)(((byte)(184)))));
     this.gridView1.Appearance.VertLine.Options.UseBackColor = true;
     this.gridView1.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Office2003;
     this.gridView1.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this._xfechdoc,
     this._xtipodoc,
     this._xserdoc,
     this._xnumdoc,
     this._xcantidad,
     this._xmotivo,
     this._xperdni,
     this._xnombrelargo,
     this._xglosa});
     this.gridView1.GridControl = this.Examinar_Historial;
     this.gridView1.Name = "gridView1";
     this.gridView1.OptionsView.ShowGroupPanel = false;
     this.gridView1.PaintStyleName = "Flat";
     //
     // _xfechdoc
     //
     this._xfechdoc.Caption = "Fecha";
     this._xfechdoc.FieldName = "fechdoc";
     this._xfechdoc.Name = "_xfechdoc";
     this._xfechdoc.OptionsColumn.AllowEdit = false;
     this._xfechdoc.Visible = true;
     this._xfechdoc.VisibleIndex = 0;
     this._xfechdoc.Width = 81;
     //
     // _xtipodoc
     //
     this._xtipodoc.Caption = "TipDoc";
     this._xtipodoc.FieldName = "tipodoc";
     this._xtipodoc.Name = "_xtipodoc";
     this._xtipodoc.OptionsColumn.AllowEdit = false;
     this._xtipodoc.Visible = true;
     this._xtipodoc.VisibleIndex = 1;
     this._xtipodoc.Width = 50;
     //
     // _xserdoc
     //
     this._xserdoc.Caption = "SerDoc";
     this._xserdoc.FieldName = "serdoc";
     this._xserdoc.Name = "_xserdoc";
     this._xserdoc.OptionsColumn.AllowEdit = false;
     this._xserdoc.Visible = true;
     this._xserdoc.VisibleIndex = 2;
     this._xserdoc.Width = 50;
     //
     // _xnumdoc
     //
     this._xnumdoc.Caption = "NumDoc";
     this._xnumdoc.FieldName = "numdoc";
     this._xnumdoc.Name = "_xnumdoc";
     this._xnumdoc.OptionsColumn.AllowEdit = false;
     this._xnumdoc.Visible = true;
     this._xnumdoc.VisibleIndex = 3;
     this._xnumdoc.Width = 68;
     //
     // _xcantidad
     //
     this._xcantidad.Caption = "Cantidad";
     this._xcantidad.FieldName = "cantidad";
     this._xcantidad.Name = "_xcantidad";
     this._xcantidad.OptionsColumn.AllowEdit = false;
     this._xcantidad.Visible = true;
     this._xcantidad.VisibleIndex = 4;
     this._xcantidad.Width = 58;
     //
     // _xmotivo
     //
     this._xmotivo.Caption = "Motivo";
     this._xmotivo.FieldName = "motivo";
     this._xmotivo.Name = "_xmotivo";
     this._xmotivo.OptionsColumn.AllowEdit = false;
     this._xmotivo.Visible = true;
     this._xmotivo.VisibleIndex = 5;
     this._xmotivo.Width = 195;
     //
     // _xperdni
     //
     this._xperdni.Caption = "Dni";
     this._xperdni.FieldName = "perdni";
     this._xperdni.Name = "_xperdni";
     this._xperdni.OptionsColumn.AllowEdit = false;
     this._xperdni.Visible = true;
     this._xperdni.VisibleIndex = 6;
     this._xperdni.Width = 80;
     //
     // _xnombrelargo
     //
     this._xnombrelargo.Caption = "Personal";
     this._xnombrelargo.FieldName = "nombrelargo";
     this._xnombrelargo.Name = "_xnombrelargo";
     this._xnombrelargo.OptionsColumn.AllowEdit = false;
     this._xnombrelargo.Visible = true;
     this._xnombrelargo.VisibleIndex = 7;
     this._xnombrelargo.Width = 202;
     //
     // _xglosa
     //
     this._xglosa.Caption = "Glosa";
     this._xglosa.FieldName = "glosa";
     this._xglosa.Name = "_xglosa";
     this._xglosa.Visible = true;
     this._xglosa.VisibleIndex = 8;
     this._xglosa.Width = 250;
     //
     // layoutView1
     //
     this.layoutView1.Columns.AddRange(new DevExpress.XtraGrid.Columns.LayoutViewColumn[] {
     this.bandedGridColumn1,
     this.bandedGridColumn2,
     this.bandedGridColumn3,
     this.bandedGridColumn4,
     this.bandedGridColumn5,
     this.bandedGridColumn6,
     this.bandedGridColumn7,
     this.bandedGridColumn8});
     this.layoutView1.GridControl = this.Examinar_Historial;
     this.layoutView1.Name = "layoutView1";
     this.layoutView1.TemplateCard = this.layoutViewCard1;
     //
     // bandedGridColumn1
     //
     this.bandedGridColumn1.Caption = "Fecha";
     this.bandedGridColumn1.FieldName = "fechdoc";
     this.bandedGridColumn1.LayoutViewField = this.layoutViewField_bandedGridColumn1;
     this.bandedGridColumn1.Name = "bandedGridColumn1";
     this.bandedGridColumn1.OptionsColumn.AllowEdit = false;
     this.bandedGridColumn1.Width = 91;
     //
     // layoutViewField_bandedGridColumn1
     //
     this.layoutViewField_bandedGridColumn1.EditorPreferredWidth = 148;
     this.layoutViewField_bandedGridColumn1.Location = new System.Drawing.Point(0, 0);
     this.layoutViewField_bandedGridColumn1.Name = "layoutViewField_bandedGridColumn1";
     this.layoutViewField_bandedGridColumn1.Size = new System.Drawing.Size(203, 24);
     this.layoutViewField_bandedGridColumn1.TextSize = new System.Drawing.Size(47, 13);
     //
     // bandedGridColumn2
     //
     this.bandedGridColumn2.Caption = "TipDoc";
     this.bandedGridColumn2.FieldName = "tipodoc";
     this.bandedGridColumn2.LayoutViewField = this.layoutViewField_bandedGridColumn2;
     this.bandedGridColumn2.Name = "bandedGridColumn2";
     this.bandedGridColumn2.OptionsColumn.AllowEdit = false;
     this.bandedGridColumn2.Width = 43;
     //
     // layoutViewField_bandedGridColumn2
     //
     this.layoutViewField_bandedGridColumn2.EditorPreferredWidth = 148;
     this.layoutViewField_bandedGridColumn2.Location = new System.Drawing.Point(0, 24);
     this.layoutViewField_bandedGridColumn2.Name = "layoutViewField_bandedGridColumn2";
     this.layoutViewField_bandedGridColumn2.Size = new System.Drawing.Size(203, 24);
     this.layoutViewField_bandedGridColumn2.TextSize = new System.Drawing.Size(47, 13);
     //
     // bandedGridColumn3
     //
     this.bandedGridColumn3.Caption = "SerDoc";
     this.bandedGridColumn3.FieldName = "serdoc";
     this.bandedGridColumn3.LayoutViewField = this.layoutViewField_bandedGridColumn3;
     this.bandedGridColumn3.Name = "bandedGridColumn3";
     this.bandedGridColumn3.OptionsColumn.AllowEdit = false;
     this.bandedGridColumn3.Width = 43;
     //
     // layoutViewField_bandedGridColumn3
     //
     this.layoutViewField_bandedGridColumn3.EditorPreferredWidth = 148;
     this.layoutViewField_bandedGridColumn3.Location = new System.Drawing.Point(0, 48);
     this.layoutViewField_bandedGridColumn3.Name = "layoutViewField_bandedGridColumn3";
     this.layoutViewField_bandedGridColumn3.Size = new System.Drawing.Size(203, 24);
     this.layoutViewField_bandedGridColumn3.TextSize = new System.Drawing.Size(47, 13);
     //
     // bandedGridColumn4
     //
     this.bandedGridColumn4.Caption = "NumDoc";
     this.bandedGridColumn4.FieldName = "numdoc";
     this.bandedGridColumn4.LayoutViewField = this.layoutViewField_bandedGridColumn4;
     this.bandedGridColumn4.Name = "bandedGridColumn4";
     this.bandedGridColumn4.OptionsColumn.AllowEdit = false;
     this.bandedGridColumn4.Width = 70;
     //
     // layoutViewField_bandedGridColumn4
     //
     this.layoutViewField_bandedGridColumn4.EditorPreferredWidth = 148;
     this.layoutViewField_bandedGridColumn4.Location = new System.Drawing.Point(0, 72);
     this.layoutViewField_bandedGridColumn4.Name = "layoutViewField_bandedGridColumn4";
     this.layoutViewField_bandedGridColumn4.Size = new System.Drawing.Size(203, 24);
     this.layoutViewField_bandedGridColumn4.TextSize = new System.Drawing.Size(47, 13);
     //
     // bandedGridColumn5
     //
     this.bandedGridColumn5.Caption = "Cantidad";
     this.bandedGridColumn5.FieldName = "cantidad";
     this.bandedGridColumn5.LayoutViewField = this.layoutViewField_bandedGridColumn5;
     this.bandedGridColumn5.Name = "bandedGridColumn5";
     this.bandedGridColumn5.OptionsColumn.AllowEdit = false;
     this.bandedGridColumn5.Width = 90;
     //
     // layoutViewField_bandedGridColumn5
     //
     this.layoutViewField_bandedGridColumn5.EditorPreferredWidth = 148;
     this.layoutViewField_bandedGridColumn5.Location = new System.Drawing.Point(0, 96);
     this.layoutViewField_bandedGridColumn5.Name = "layoutViewField_bandedGridColumn5";
     this.layoutViewField_bandedGridColumn5.Size = new System.Drawing.Size(203, 24);
     this.layoutViewField_bandedGridColumn5.TextSize = new System.Drawing.Size(47, 13);
     //
     // bandedGridColumn6
     //
     this.bandedGridColumn6.Caption = "Motivo";
     this.bandedGridColumn6.FieldName = "motivo";
     this.bandedGridColumn6.LayoutViewField = this.layoutViewField_bandedGridColumn6;
     this.bandedGridColumn6.Name = "bandedGridColumn6";
     this.bandedGridColumn6.OptionsColumn.AllowEdit = false;
     this.bandedGridColumn6.Width = 154;
     //
     // layoutViewField_bandedGridColumn6
     //
     this.layoutViewField_bandedGridColumn6.EditorPreferredWidth = 148;
     this.layoutViewField_bandedGridColumn6.Location = new System.Drawing.Point(0, 120);
     this.layoutViewField_bandedGridColumn6.Name = "layoutViewField_bandedGridColumn6";
     this.layoutViewField_bandedGridColumn6.Size = new System.Drawing.Size(203, 24);
     this.layoutViewField_bandedGridColumn6.TextSize = new System.Drawing.Size(47, 13);
     //
     // bandedGridColumn7
     //
     this.bandedGridColumn7.Caption = "Dni";
     this.bandedGridColumn7.FieldName = "perdni";
     this.bandedGridColumn7.LayoutViewField = this.layoutViewField_bandedGridColumn7;
     this.bandedGridColumn7.Name = "bandedGridColumn7";
     this.bandedGridColumn7.OptionsColumn.AllowEdit = false;
     this.bandedGridColumn7.Width = 77;
     //
     // layoutViewField_bandedGridColumn7
     //
     this.layoutViewField_bandedGridColumn7.EditorPreferredWidth = 148;
     this.layoutViewField_bandedGridColumn7.Location = new System.Drawing.Point(0, 144);
     this.layoutViewField_bandedGridColumn7.Name = "layoutViewField_bandedGridColumn7";
     this.layoutViewField_bandedGridColumn7.Size = new System.Drawing.Size(203, 24);
     this.layoutViewField_bandedGridColumn7.TextSize = new System.Drawing.Size(47, 13);
     //
     // bandedGridColumn8
     //
     this.bandedGridColumn8.Caption = "Personal";
     this.bandedGridColumn8.FieldName = "nombrelargo";
     this.bandedGridColumn8.LayoutViewField = this.layoutViewField_bandedGridColumn8;
     this.bandedGridColumn8.Name = "bandedGridColumn8";
     this.bandedGridColumn8.OptionsColumn.AllowEdit = false;
     this.bandedGridColumn8.Width = 257;
     //
     // layoutViewField_bandedGridColumn8
     //
     this.layoutViewField_bandedGridColumn8.EditorPreferredWidth = 148;
     this.layoutViewField_bandedGridColumn8.Location = new System.Drawing.Point(0, 168);
     this.layoutViewField_bandedGridColumn8.Name = "layoutViewField_bandedGridColumn8";
     this.layoutViewField_bandedGridColumn8.Size = new System.Drawing.Size(203, 24);
     this.layoutViewField_bandedGridColumn8.TextSize = new System.Drawing.Size(47, 13);
     //
     // layoutViewCard1
     //
     this.layoutViewCard1.ExpandButtonLocation = DevExpress.Utils.GroupElementLocation.AfterText;
     this.layoutViewCard1.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.layoutViewField_bandedGridColumn1,
     this.layoutViewField_bandedGridColumn2,
     this.layoutViewField_bandedGridColumn3,
     this.layoutViewField_bandedGridColumn4,
     this.layoutViewField_bandedGridColumn5,
     this.layoutViewField_bandedGridColumn6,
     this.layoutViewField_bandedGridColumn7,
     this.layoutViewField_bandedGridColumn8});
     this.layoutViewCard1.Name = "layoutViewCard1";
     //
     // peso
     //
     this.peso.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.peso.Location = new System.Drawing.Point(366, 650);
     this.peso.Name = "peso";
     this.peso.Size = new System.Drawing.Size(124, 20);
     this.peso.TabIndex = 49;
     this.peso.Text = "ventas al exterior";
     //
     // label30
     //
     this.label30.AutoSize = true;
     this.label30.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label30.Location = new System.Drawing.Point(299, 650);
     this.label30.Name = "label30";
     this.label30.Size = new System.Drawing.Size(61, 13);
     this.label30.TabIndex = 59;
     this.label30.Text = "Med. Peso:";
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.Font = new System.Drawing.Font("Times New Roman", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label3.Location = new System.Drawing.Point(10, 7);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(91, 17);
     this.label3.TabIndex = 16;
     this.label3.Text = "CentroCosto:";
     //
     // cencosid
     //
     this.cencosid.Location = new System.Drawing.Point(102, 6);
     this.cencosid.MaxLength = 5;
     this.cencosid.Name = "cencosid";
     this.cencosid.Size = new System.Drawing.Size(39, 21);
     this.cencosid.TabIndex = 17;
     this.cencosid.KeyDown += new System.Windows.Forms.KeyEventHandler(this.cencosid_KeyDown);
     //
     // cencosname
     //
     this.cencosname.Location = new System.Drawing.Point(142, 6);
     this.cencosname.Name = "cencosname";
     this.cencosname.ReadOnly = true;
     this.cencosname.Size = new System.Drawing.Size(191, 21);
     this.cencosname.TabIndex = 18;
     //
     // label6
     //
     this.label6.AutoSize = true;
     this.label6.Font = new System.Drawing.Font("Times New Roman", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label6.Location = new System.Drawing.Point(349, 9);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(76, 17);
     this.label6.TabIndex = 19;
     this.label6.Text = "Estacion-T:";
     //
     // unmedpeso
     //
     this.unmedpeso.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.unmedpeso.Location = new System.Drawing.Point(112, 650);
     this.unmedpeso.Name = "unmedpeso";
     this.unmedpeso.Size = new System.Drawing.Size(148, 20);
     this.unmedpeso.TabIndex = 48;
     this.unmedpeso.Text = "ventas al exterior";
     //
     // panel1
     //
     this.panel1.BackColor = System.Drawing.Color.Teal;
     this.panel1.Controls.Add(this.label11);
     this.panel1.Location = new System.Drawing.Point(-4, -25);
     this.panel1.Name = "panel1";
     this.panel1.Size = new System.Drawing.Size(1065, 54);
     this.panel1.TabIndex = 2;
     //
     // label11
     //
     this.label11.AutoSize = true;
     this.label11.BackColor = System.Drawing.Color.Transparent;
     this.label11.Font = new System.Drawing.Font("Microsoft Sans Serif", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label11.ForeColor = System.Drawing.Color.White;
     this.label11.Location = new System.Drawing.Point(340, 28);
     this.label11.Name = "label11";
     this.label11.Size = new System.Drawing.Size(208, 24);
     this.label11.TabIndex = 5;
     this.label11.Text = "Historial por Estacion";
     //
     // label31
     //
     this.label31.AutoSize = true;
     this.label31.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label31.Location = new System.Drawing.Point(28, 650);
     this.label31.Name = "label31";
     this.label31.Size = new System.Drawing.Size(62, 13);
     this.label31.TabIndex = 57;
     this.label31.Text = "Unid. Peso:";
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.BackColor = System.Drawing.Color.Transparent;
     this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label1.ForeColor = System.Drawing.Color.Black;
     this.label1.Location = new System.Drawing.Point(6, 300);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(68, 17);
     this.label1.TabIndex = 64;
     this.label1.Text = "Historial";
     //
     // cmb_estacion
     //
     this.cmb_estacion.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cmb_estacion.FormattingEnabled = true;
     this.cmb_estacion.Location = new System.Drawing.Point(425, 7);
     this.cmb_estacion.Name = "cmb_estacion";
     this.cmb_estacion.Size = new System.Drawing.Size(54, 21);
     this.cmb_estacion.TabIndex = 66;
     this.cmb_estacion.SelectedIndexChanged += new System.EventHandler(this.cmb_estacion_SelectedIndexChanged);
     //
     // sfdhistorial
     //
     this.sfdhistorial.Filter = "Archivos Excel | *.xls";
     //
     // groupControl1
     //
     this.groupControl1.Appearance.BackColor = System.Drawing.Color.Teal;
     this.groupControl1.Appearance.ForeColor = System.Drawing.Color.White;
     this.groupControl1.Appearance.Options.UseBackColor = true;
     this.groupControl1.Appearance.Options.UseForeColor = true;
     this.groupControl1.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.groupControl1.Controls.Add(this.cmb_estacion);
     this.groupControl1.Controls.Add(this.label3);
     this.groupControl1.Controls.Add(this.cencosid);
     this.groupControl1.Controls.Add(this.cencosname);
     this.groupControl1.Controls.Add(this.label6);
     this.groupControl1.Location = new System.Drawing.Point(1, 32);
     this.groupControl1.Name = "groupControl1";
     this.groupControl1.Size = new System.Drawing.Size(1049, 36);
     this.groupControl1.TabIndex = 71;
     this.groupControl1.Text = "»» Parametros ";
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.BackColor = System.Drawing.Color.Transparent;
     this.label2.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label2.ForeColor = System.Drawing.Color.Black;
     this.label2.Location = new System.Drawing.Point(10, 74);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(48, 17);
     this.label2.TabIndex = 65;
     this.label2.Text = "Stock";
     //
     // btn_print
     //
     this.btn_print.Cursor = System.Windows.Forms.Cursors.Hand;
     this.btn_print.Image = ((System.Drawing.Image)(resources.GetObject("btn_print.Image")));
     this.btn_print.Location = new System.Drawing.Point(807, 279);
     this.btn_print.Name = "btn_print";
     this.btn_print.Size = new System.Drawing.Size(40, 33);
     this.btn_print.TabIndex = 72;
     this.btn_print.ToolTip = "ImPrimir Historial";
     this.btn_print.ToolTipIconType = DevExpress.Utils.ToolTipIconType.Information;
     this.btn_print.Click += new System.EventHandler(this.btn_print_Click);
     //
     // Frm_reporte_historialxestacion
     //
     this.Appearance.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(217)))), ((int)(((byte)(218)))), ((int)(((byte)(224)))));
     this.Appearance.Options.UseBackColor = true;
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     this.ClientSize = new System.Drawing.Size(1052, 551);
     this.Controls.Add(this.btn_print);
     this.Controls.Add(this.groupControl1);
     this.Controls.Add(this.panel1);
     this.Controls.Add(this.Dgb_ControlStock);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.Examinar_Historial);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.peso);
     this.Controls.Add(this.label30);
     this.Controls.Add(this.unmedpeso);
     this.Controls.Add(this.label31);
     this.DoubleBuffered = true;
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.KeyPreview = true;
     this.MaximizeBox = false;
     this.Name = "Frm_reporte_historialxestacion";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Historial x Estacion";
     this.Load += new System.EventHandler(this.Frm_reporte_historialxestacion_Load);
     ((System.ComponentModel.ISupportInitialize)(this.gridView2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Dgb_ControlStock)).EndInit();
     this.cmMenuGrid2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.dgb_mainStock)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cardView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dTStockBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dT_Stock)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.bapEmpresa02DataSetBindingSource)).EndInit();
     this.cmMenuGrid.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.bandedGridView2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Examinar_Historial)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutViewField_bandedGridColumn1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutViewField_bandedGridColumn2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutViewField_bandedGridColumn3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutViewField_bandedGridColumn4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutViewField_bandedGridColumn5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutViewField_bandedGridColumn6)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutViewField_bandedGridColumn7)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutViewField_bandedGridColumn8)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutViewCard1)).EndInit();
     this.panel1.ResumeLayout(false);
     this.panel1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
     this.groupControl1.ResumeLayout(false);
     this.groupControl1.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
コード例 #25
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmTheKho));
     this.img = new DevExpress.Utils.ImageCollection(this.components);
     this.bm = new DevExpress.XtraBars.BarManager(this.components);
     this.bar2 = new DevExpress.XtraBars.Bar();
     this.bbiXem = new DevExpress.XtraBars.BarButtonItem();
     this.bbiSua = new DevExpress.XtraBars.BarButtonItem();
     this.bbiXoa = new DevExpress.XtraBars.BarButtonItem();
     this.bbiXuatExcel = new DevExpress.XtraBars.BarButtonItem();
     this.bbiDong = new DevExpress.XtraBars.BarButtonItem();
     this.barDockControlTop = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlBottom = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlLeft = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlRight = new DevExpress.XtraBars.BarDockControl();
     this.layoutControl1 = new DevExpress.XtraLayout.LayoutControl();
     this.layoutControl2 = new DevExpress.XtraLayout.LayoutControl();
     this.layoutControlGroup2 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.dtDen = new DevExpress.XtraEditors.DateEdit();
     this.dtTu = new DevExpress.XtraEditors.DateEdit();
     this.cbChonNgay = new DevExpress.XtraEditors.ComboBoxEdit();
     this.gcList = new DevExpress.XtraGrid.GridControl();
     this.theKhoTheoNgayBindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.dsTheKho = new Do_An_Quan_Ly_Kho.TheKho.DataSet.dsTheKho();
     this.gbList = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridView();
     this.gridBand1 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.colNgay = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.colMa_Chung_Tu = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.colMa_Hoa_Don = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.colMa_Hang_Hoa = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.colTen_Hang = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.colDon_Vi = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.colLoai_Chung_Tu = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.colMa_Kho_Hang = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.colTen_Kho = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.colDien_Giai = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.colSo_Luong_Thuc = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.rptMayTinh = new DevExpress.XtraEditors.Repository.RepositoryItemCalcEdit();
     this.colNgay_Sap_Xep = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridBand2 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.colSo_Luong_Nhap = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.colSo_Luong_Xuat = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.colSo_Luong_Ton = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridBand3 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.colLy_Do = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.colGhi_Chu = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.layoutControlGroup1 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlItem1 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem2 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem3 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem4 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem5 = new DevExpress.XtraLayout.LayoutControlItem();
     ((System.ComponentModel.ISupportInitialize)(this.img)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.bm)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl1)).BeginInit();
     this.layoutControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtDen.Properties.CalendarTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtDen.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtTu.Properties.CalendarTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtTu.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbChonNgay.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gcList)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.theKhoTheoNgayBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dsTheKho)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gbList)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.rptMayTinh)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem5)).BeginInit();
     this.SuspendLayout();
     //
     // img
     //
     this.img.ImageStream = ((DevExpress.Utils.ImageCollectionStreamer)(resources.GetObject("img.ImageStream")));
     this.img.Images.SetKeyName(0, "abort.png");
     this.img.Images.SetKeyName(1, "about.png");
     this.img.Images.SetKeyName(2, "accept.png");
     this.img.Images.SetKeyName(3, "add.png");
     this.img.Images.SetKeyName(4, "application.png");
     this.img.Images.SetKeyName(5, "apply.png");
     this.img.Images.SetKeyName(6, "attention.png");
     this.img.Images.SetKeyName(7, "back.png");
     this.img.Images.SetKeyName(8, "cancel.png");
     this.img.Images.SetKeyName(9, "circulation.png");
     this.img.Images.SetKeyName(10, "close.png");
     this.img.Images.SetKeyName(11, "create.png");
     this.img.Images.SetKeyName(12, "cut.png");
     this.img.Images.SetKeyName(13, "danger.png");
     this.img.Images.SetKeyName(14, "delete.png");
     this.img.Images.SetKeyName(15, "down.png");
     this.img.Images.SetKeyName(16, "erase.png");
     this.img.Images.SetKeyName(17, "error.png");
     this.img.Images.SetKeyName(18, "forward.png");
     this.img.Images.SetKeyName(19, "help.png");
     this.img.Images.SetKeyName(20, "info.png");
     this.img.Images.SetKeyName(21, "information.png");
     this.img.Images.SetKeyName(22, "logout.png");
     this.img.Images.SetKeyName(23, "minus.png");
     this.img.Images.SetKeyName(24, "move.png");
     this.img.Images.SetKeyName(25, "next.png");
     this.img.Images.SetKeyName(26, "no entry.png");
     this.img.Images.SetKeyName(27, "no.png");
     this.img.Images.SetKeyName(28, "OK.png");
     this.img.Images.SetKeyName(29, "options.png");
     this.img.Images.SetKeyName(30, "plus.png");
     this.img.Images.SetKeyName(31, "previous.png");
     this.img.Images.SetKeyName(32, "problem.png");
     this.img.Images.SetKeyName(33, "question.png");
     this.img.Images.SetKeyName(34, "redo.png");
     this.img.Images.SetKeyName(35, "refresh.png");
     this.img.Images.SetKeyName(36, "remove.png");
     this.img.Images.SetKeyName(37, "renew.png");
     this.img.Images.SetKeyName(38, "repeat.png");
     this.img.Images.SetKeyName(39, "run.png");
     this.img.Images.SetKeyName(40, "save.png");
     this.img.Images.SetKeyName(41, "search.png");
     this.img.Images.SetKeyName(42, "settings.png");
     this.img.Images.SetKeyName(43, "stop.png");
     this.img.Images.SetKeyName(44, "switch.png");
     this.img.Images.SetKeyName(45, "sync.png");
     this.img.Images.SetKeyName(46, "system.png");
     this.img.Images.SetKeyName(47, "turn off.png");
     this.img.Images.SetKeyName(48, "undo.png");
     this.img.Images.SetKeyName(49, "up.png");
     this.img.Images.SetKeyName(50, "update.png");
     this.img.Images.SetKeyName(51, "view.png");
     this.img.Images.SetKeyName(52, "warning.png");
     this.img.Images.SetKeyName(53, "yes.png");
     this.img.Images.SetKeyName(54, "document-excel-icon - Copy - Copy - Copy.png");
     this.img.Images.SetKeyName(55, "document-excel-icon - Copy - Copy (2).png");
     this.img.Images.SetKeyName(56, "document-excel-icon - Copy (2) - Copy.png");
     this.img.Images.SetKeyName(57, "document-excel-icon - Copy (3).png");
     this.img.Images.SetKeyName(58, "Dust_factory_gas_industry_oil_plant_pollution_building_company_production_smoke-5" +
     "12 - Copy.png");
     this.img.Images.SetKeyName(59, "Excel-icon (1) - Copy - Copy - Copy.png");
     this.img.Images.SetKeyName(60, "Excel-icon (1) - Copy - Copy.png");
     this.img.Images.SetKeyName(61, "Excel-icon (1) - Copy.png");
     this.img.Images.SetKeyName(62, "Excel-icon (1).png");
     this.img.Images.SetKeyName(63, "Excel-icon (2) - Copy - Copy.png");
     this.img.Images.SetKeyName(64, "Excel-icon (2) - Copy.png");
     this.img.Images.SetKeyName(65, "Excel-icon (2).png");
     this.img.Images.SetKeyName(66, "Excel-icon.png");
     //
     // bm
     //
     this.bm.Bars.AddRange(new DevExpress.XtraBars.Bar[] {
     this.bar2});
     this.bm.DockControls.Add(this.barDockControlTop);
     this.bm.DockControls.Add(this.barDockControlBottom);
     this.bm.DockControls.Add(this.barDockControlLeft);
     this.bm.DockControls.Add(this.barDockControlRight);
     this.bm.Form = this;
     this.bm.Images = this.img;
     this.bm.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
     this.bbiXem,
     this.bbiSua,
     this.bbiXoa,
     this.bbiDong,
     this.bbiXuatExcel});
     this.bm.LargeImages = this.img;
     this.bm.MainMenu = this.bar2;
     this.bm.MaxItemId = 13;
     //
     // bar2
     //
     this.bar2.BarName = "Main menu";
     this.bar2.DockCol = 0;
     this.bar2.DockRow = 0;
     this.bar2.DockStyle = DevExpress.XtraBars.BarDockStyle.Top;
     this.bar2.FloatLocation = new System.Drawing.Point(49, 160);
     this.bar2.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.bbiXem, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.bbiSua),
     new DevExpress.XtraBars.LinkPersistInfo(this.bbiXoa),
     new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.PaintStyle, this.bbiXuatExcel, DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph),
     new DevExpress.XtraBars.LinkPersistInfo(this.bbiDong)});
     this.bar2.OptionsBar.AllowDelete = true;
     this.bar2.OptionsBar.DrawSizeGrip = true;
     this.bar2.Text = "Main menu";
     //
     // bbiXem
     //
     this.bbiXem.Caption = "Xem";
     this.bbiXem.Id = 0;
     this.bbiXem.ImageIndex = 35;
     this.bbiXem.Name = "bbiXem";
     this.bbiXem.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.bbiXem.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbiXem_ItemClick);
     //
     // bbiSua
     //
     this.bbiSua.Caption = "Sửa";
     this.bbiSua.Id = 1;
     this.bbiSua.ImageIndex = 29;
     this.bbiSua.Name = "bbiSua";
     this.bbiSua.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.bbiSua.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
     //
     // bbiXoa
     //
     this.bbiXoa.Caption = "Xóa";
     this.bbiXoa.Id = 2;
     this.bbiXoa.ImageIndex = 16;
     this.bbiXoa.Name = "bbiXoa";
     this.bbiXoa.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.bbiXoa.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
     //
     // bbiXuatExcel
     //
     this.bbiXuatExcel.Caption = "Xuất Excel";
     this.bbiXuatExcel.Id = 12;
     this.bbiXuatExcel.ImageIndex = 59;
     this.bbiXuatExcel.Name = "bbiXuatExcel";
     //
     // bbiDong
     //
     this.bbiDong.Caption = "Đóng";
     this.bbiDong.Id = 6;
     this.bbiDong.ImageIndex = 10;
     this.bbiDong.Name = "bbiDong";
     this.bbiDong.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // barDockControlTop
     //
     this.barDockControlTop.CausesValidation = false;
     this.barDockControlTop.Dock = System.Windows.Forms.DockStyle.Top;
     this.barDockControlTop.Location = new System.Drawing.Point(0, 0);
     this.barDockControlTop.Size = new System.Drawing.Size(1102, 24);
     //
     // barDockControlBottom
     //
     this.barDockControlBottom.CausesValidation = false;
     this.barDockControlBottom.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.barDockControlBottom.Location = new System.Drawing.Point(0, 416);
     this.barDockControlBottom.Size = new System.Drawing.Size(1102, 0);
     //
     // barDockControlLeft
     //
     this.barDockControlLeft.CausesValidation = false;
     this.barDockControlLeft.Dock = System.Windows.Forms.DockStyle.Left;
     this.barDockControlLeft.Location = new System.Drawing.Point(0, 24);
     this.barDockControlLeft.Size = new System.Drawing.Size(0, 392);
     //
     // barDockControlRight
     //
     this.barDockControlRight.CausesValidation = false;
     this.barDockControlRight.Dock = System.Windows.Forms.DockStyle.Right;
     this.barDockControlRight.Location = new System.Drawing.Point(1102, 24);
     this.barDockControlRight.Size = new System.Drawing.Size(0, 392);
     //
     // layoutControl1
     //
     this.layoutControl1.Controls.Add(this.layoutControl2);
     this.layoutControl1.Controls.Add(this.dtDen);
     this.layoutControl1.Controls.Add(this.dtTu);
     this.layoutControl1.Controls.Add(this.cbChonNgay);
     this.layoutControl1.Controls.Add(this.gcList);
     this.layoutControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.layoutControl1.Location = new System.Drawing.Point(0, 24);
     this.layoutControl1.Name = "layoutControl1";
     this.layoutControl1.Root = this.layoutControlGroup1;
     this.layoutControl1.Size = new System.Drawing.Size(1102, 392);
     this.layoutControl1.TabIndex = 4;
     this.layoutControl1.Text = "layoutControl1";
     //
     // layoutControl2
     //
     this.layoutControl2.Location = new System.Drawing.Point(452, 2);
     this.layoutControl2.Name = "layoutControl2";
     this.layoutControl2.Root = this.layoutControlGroup2;
     this.layoutControl2.Size = new System.Drawing.Size(648, 20);
     this.layoutControl2.TabIndex = 8;
     this.layoutControl2.Text = "layoutControl2";
     //
     // layoutControlGroup2
     //
     this.layoutControlGroup2.CustomizationFormText = "layoutControlGroup2";
     this.layoutControlGroup2.EnableIndentsWithoutBorders = DevExpress.Utils.DefaultBoolean.True;
     this.layoutControlGroup2.GroupBordersVisible = false;
     this.layoutControlGroup2.Location = new System.Drawing.Point(0, 0);
     this.layoutControlGroup2.Name = "layoutControlGroup2";
     this.layoutControlGroup2.Size = new System.Drawing.Size(648, 20);
     this.layoutControlGroup2.Text = "layoutControlGroup2";
     this.layoutControlGroup2.TextVisible = false;
     //
     // dtDen
     //
     this.dtDen.EditValue = null;
     this.dtDen.Location = new System.Drawing.Point(325, 2);
     this.dtDen.MenuManager = this.bm;
     this.dtDen.Name = "dtDen";
     this.dtDen.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.dtDen.Properties.CalendarTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.dtDen.Size = new System.Drawing.Size(123, 20);
     this.dtDen.StyleController = this.layoutControl1;
     this.dtDen.TabIndex = 7;
     //
     // dtTu
     //
     this.dtTu.EditValue = null;
     this.dtTu.Location = new System.Drawing.Point(175, 2);
     this.dtTu.MenuManager = this.bm;
     this.dtTu.Name = "dtTu";
     this.dtTu.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.dtTu.Properties.CalendarTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.dtTu.Size = new System.Drawing.Size(123, 20);
     this.dtTu.StyleController = this.layoutControl1;
     this.dtTu.TabIndex = 6;
     //
     // cbChonNgay
     //
     this.cbChonNgay.Location = new System.Drawing.Point(57, 2);
     this.cbChonNgay.MenuManager = this.bm;
     this.cbChonNgay.Name = "cbChonNgay";
     this.cbChonNgay.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cbChonNgay.Properties.Items.AddRange(new object[] {
     "Tháng 1",
     "Tháng 2",
     "Tháng 3",
     "Tháng 4",
     "Tháng 5",
     "Tháng 6",
     "Tháng 7",
     "Tháng 8",
     "Tháng 9",
     "Tháng 10",
     "Tháng 11",
     "Tháng 12"});
     this.cbChonNgay.Size = new System.Drawing.Size(91, 20);
     this.cbChonNgay.StyleController = this.layoutControl1;
     this.cbChonNgay.TabIndex = 5;
     this.cbChonNgay.SelectedIndexChanged += new System.EventHandler(this.cbChonNgay_SelectedIndexChanged);
     //
     // gcList
     //
     this.gcList.Cursor = System.Windows.Forms.Cursors.Default;
     this.gcList.DataSource = this.theKhoTheoNgayBindingSource;
     this.gcList.Location = new System.Drawing.Point(2, 26);
     this.gcList.MainView = this.gbList;
     this.gcList.MenuManager = this.bm;
     this.gcList.Name = "gcList";
     this.gcList.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.rptMayTinh});
     this.gcList.Size = new System.Drawing.Size(1098, 364);
     this.gcList.TabIndex = 4;
     this.gcList.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gbList});
     //
     // theKhoTheoNgayBindingSource
     //
     this.theKhoTheoNgayBindingSource.DataMember = "The_Kho_Theo_Ngay";
     this.theKhoTheoNgayBindingSource.DataSource = this.dsTheKho;
     //
     // dsTheKho
     //
     this.dsTheKho.DataSetName = "dsTheKho";
     this.dsTheKho.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
     //
     // gbList
     //
     this.gbList.Appearance.GroupRow.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
     this.gbList.Appearance.GroupRow.ForeColor = System.Drawing.Color.Red;
     this.gbList.Appearance.GroupRow.Options.UseFont = true;
     this.gbList.Appearance.GroupRow.Options.UseForeColor = true;
     this.gbList.Bands.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.GridBand[] {
     this.gridBand1,
     this.gridBand2,
     this.gridBand3});
     this.gbList.Columns.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn[] {
     this.colMa_Chung_Tu,
     this.colNgay,
     this.colMa_Hoa_Don,
     this.colLy_Do,
     this.colMa_Hang_Hoa,
     this.colTen_Hang,
     this.colDon_Vi,
     this.colLoai_Chung_Tu,
     this.colDien_Giai,
     this.colMa_Kho_Hang,
     this.colTen_Kho,
     this.colSo_Luong_Nhap,
     this.colSo_Luong_Xuat,
     this.colSo_Luong_Thuc,
     this.colSo_Luong_Ton,
     this.colGhi_Chu,
     this.colNgay_Sap_Xep});
     this.gbList.GridControl = this.gcList;
     this.gbList.GroupCount = 2;
     this.gbList.GroupPanelText = "Kéo cột và thả vào đây để nhóm dữ liệu";
     this.gbList.GroupSummary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] {
     new DevExpress.XtraGrid.GridGroupSummaryItem(DevExpress.Data.SummaryItemType.Sum, "So_Luong_Nhap", this.colSo_Luong_Nhap, "{0:##,##0.###}"),
     new DevExpress.XtraGrid.GridGroupSummaryItem(DevExpress.Data.SummaryItemType.Sum, "So_Luong_Xuat", this.colSo_Luong_Xuat, "{0:##,##0.###}"),
     new DevExpress.XtraGrid.GridGroupSummaryItem(DevExpress.Data.SummaryItemType.Sum, "So_Luong_Thuc", this.colSo_Luong_Ton, "{0:##,##0.###}")});
     this.gbList.IndicatorWidth = 40;
     this.gbList.Name = "gbList";
     this.gbList.OptionsBehavior.AutoExpandAllGroups = true;
     this.gbList.OptionsView.ColumnAutoWidth = false;
     this.gbList.OptionsView.ShowAutoFilterRow = true;
     this.gbList.OptionsView.ShowFooter = true;
     this.gbList.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.colTen_Kho, DevExpress.Data.ColumnSortOrder.Ascending),
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.colMa_Hang_Hoa, DevExpress.Data.ColumnSortOrder.Ascending)});
     this.gbList.CustomDrawRowIndicator += new DevExpress.XtraGrid.Views.Grid.RowIndicatorCustomDrawEventHandler(this.gbList_CustomDrawRowIndicator);
     //
     // gridBand1
     //
     this.gridBand1.Columns.Add(this.colNgay);
     this.gridBand1.Columns.Add(this.colMa_Chung_Tu);
     this.gridBand1.Columns.Add(this.colMa_Hoa_Don);
     this.gridBand1.Columns.Add(this.colMa_Hang_Hoa);
     this.gridBand1.Columns.Add(this.colTen_Hang);
     this.gridBand1.Columns.Add(this.colDon_Vi);
     this.gridBand1.Columns.Add(this.colLoai_Chung_Tu);
     this.gridBand1.Columns.Add(this.colMa_Kho_Hang);
     this.gridBand1.Columns.Add(this.colTen_Kho);
     this.gridBand1.Columns.Add(this.colDien_Giai);
     this.gridBand1.Columns.Add(this.colSo_Luong_Thuc);
     this.gridBand1.Columns.Add(this.colNgay_Sap_Xep);
     this.gridBand1.Name = "gridBand1";
     this.gridBand1.VisibleIndex = 0;
     this.gridBand1.Width = 626;
     //
     // colNgay
     //
     this.colNgay.AppearanceHeader.Options.UseTextOptions = true;
     this.colNgay.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colNgay.Caption = "Ngày";
     this.colNgay.FieldName = "Ngay";
     this.colNgay.Name = "colNgay";
     this.colNgay.OptionsColumn.ReadOnly = true;
     this.colNgay.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colNgay.Visible = true;
     //
     // colMa_Chung_Tu
     //
     this.colMa_Chung_Tu.AppearanceHeader.Options.UseTextOptions = true;
     this.colMa_Chung_Tu.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colMa_Chung_Tu.Caption = "Mã Chứng Từ";
     this.colMa_Chung_Tu.FieldName = "Ma_Chung_Tu";
     this.colMa_Chung_Tu.Name = "colMa_Chung_Tu";
     this.colMa_Chung_Tu.OptionsColumn.ReadOnly = true;
     this.colMa_Chung_Tu.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colMa_Chung_Tu.Visible = true;
     this.colMa_Chung_Tu.Width = 79;
     //
     // colMa_Hoa_Don
     //
     this.colMa_Hoa_Don.AppearanceHeader.Options.UseTextOptions = true;
     this.colMa_Hoa_Don.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colMa_Hoa_Don.Caption = "Mã Hóa Đơn";
     this.colMa_Hoa_Don.FieldName = "Ma_Hoa_Don";
     this.colMa_Hoa_Don.Name = "colMa_Hoa_Don";
     this.colMa_Hoa_Don.OptionsColumn.ReadOnly = true;
     this.colMa_Hoa_Don.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colMa_Hoa_Don.Visible = true;
     //
     // colMa_Hang_Hoa
     //
     this.colMa_Hang_Hoa.AppearanceHeader.Options.UseTextOptions = true;
     this.colMa_Hang_Hoa.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colMa_Hang_Hoa.Caption = "Mã Hàng Hóa";
     this.colMa_Hang_Hoa.FieldName = "Ma_Hang_Hoa";
     this.colMa_Hang_Hoa.Name = "colMa_Hang_Hoa";
     this.colMa_Hang_Hoa.OptionsColumn.ReadOnly = true;
     this.colMa_Hang_Hoa.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colMa_Hang_Hoa.Visible = true;
     this.colMa_Hang_Hoa.Width = 97;
     //
     // colTen_Hang
     //
     this.colTen_Hang.AppearanceHeader.Options.UseTextOptions = true;
     this.colTen_Hang.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colTen_Hang.Caption = "Tên Hàng";
     this.colTen_Hang.FieldName = "Ten_Hang";
     this.colTen_Hang.Name = "colTen_Hang";
     this.colTen_Hang.OptionsColumn.ReadOnly = true;
     this.colTen_Hang.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colTen_Hang.Visible = true;
     //
     // colDon_Vi
     //
     this.colDon_Vi.AppearanceHeader.Options.UseTextOptions = true;
     this.colDon_Vi.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colDon_Vi.Caption = "Đơn Vị";
     this.colDon_Vi.FieldName = "Don_Vi";
     this.colDon_Vi.Name = "colDon_Vi";
     this.colDon_Vi.OptionsColumn.ReadOnly = true;
     this.colDon_Vi.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colDon_Vi.Visible = true;
     //
     // colLoai_Chung_Tu
     //
     this.colLoai_Chung_Tu.AppearanceHeader.Options.UseTextOptions = true;
     this.colLoai_Chung_Tu.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colLoai_Chung_Tu.FieldName = "Loai_Chung_Tu";
     this.colLoai_Chung_Tu.Name = "colLoai_Chung_Tu";
     this.colLoai_Chung_Tu.OptionsColumn.ReadOnly = true;
     this.colLoai_Chung_Tu.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     //
     // colMa_Kho_Hang
     //
     this.colMa_Kho_Hang.AppearanceHeader.Options.UseTextOptions = true;
     this.colMa_Kho_Hang.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colMa_Kho_Hang.FieldName = "Ma_Kho_Hang";
     this.colMa_Kho_Hang.Name = "colMa_Kho_Hang";
     this.colMa_Kho_Hang.OptionsColumn.ReadOnly = true;
     this.colMa_Kho_Hang.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     //
     // colTen_Kho
     //
     this.colTen_Kho.AppearanceHeader.Options.UseTextOptions = true;
     this.colTen_Kho.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colTen_Kho.Caption = "Tên Kho";
     this.colTen_Kho.FieldName = "Ten_Kho";
     this.colTen_Kho.Name = "colTen_Kho";
     this.colTen_Kho.OptionsColumn.ReadOnly = true;
     this.colTen_Kho.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colTen_Kho.Visible = true;
     //
     // colDien_Giai
     //
     this.colDien_Giai.AppearanceHeader.Options.UseTextOptions = true;
     this.colDien_Giai.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colDien_Giai.Caption = "Diễn Giải";
     this.colDien_Giai.FieldName = "Dien_Giai";
     this.colDien_Giai.Name = "colDien_Giai";
     this.colDien_Giai.OptionsColumn.ReadOnly = true;
     this.colDien_Giai.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colDien_Giai.Visible = true;
     //
     // colSo_Luong_Thuc
     //
     this.colSo_Luong_Thuc.AppearanceHeader.Options.UseTextOptions = true;
     this.colSo_Luong_Thuc.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSo_Luong_Thuc.ColumnEdit = this.rptMayTinh;
     this.colSo_Luong_Thuc.FieldName = "So_Luong_Thuc";
     this.colSo_Luong_Thuc.Name = "colSo_Luong_Thuc";
     this.colSo_Luong_Thuc.OptionsColumn.ReadOnly = true;
     this.colSo_Luong_Thuc.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     //
     // rptMayTinh
     //
     this.rptMayTinh.AutoHeight = false;
     this.rptMayTinh.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.rptMayTinh.DisplayFormat.FormatString = "{0:##,##0.###}";
     this.rptMayTinh.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Custom;
     this.rptMayTinh.EditFormat.FormatString = "{0:##,##0.###}";
     this.rptMayTinh.EditFormat.FormatType = DevExpress.Utils.FormatType.Custom;
     this.rptMayTinh.Name = "rptMayTinh";
     //
     // colNgay_Sap_Xep
     //
     this.colNgay_Sap_Xep.AppearanceHeader.Options.UseTextOptions = true;
     this.colNgay_Sap_Xep.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colNgay_Sap_Xep.FieldName = "Ngay_Sap_Xep";
     this.colNgay_Sap_Xep.Name = "colNgay_Sap_Xep";
     this.colNgay_Sap_Xep.OptionsColumn.ReadOnly = true;
     this.colNgay_Sap_Xep.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     //
     // gridBand2
     //
     this.gridBand2.AppearanceHeader.Options.UseTextOptions = true;
     this.gridBand2.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridBand2.Caption = "Số Lượng";
     this.gridBand2.Columns.Add(this.colSo_Luong_Nhap);
     this.gridBand2.Columns.Add(this.colSo_Luong_Xuat);
     this.gridBand2.Columns.Add(this.colSo_Luong_Ton);
     this.gridBand2.Name = "gridBand2";
     this.gridBand2.VisibleIndex = 1;
     this.gridBand2.Width = 225;
     //
     // colSo_Luong_Nhap
     //
     this.colSo_Luong_Nhap.AppearanceHeader.Options.UseTextOptions = true;
     this.colSo_Luong_Nhap.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSo_Luong_Nhap.Caption = "Nhập";
     this.colSo_Luong_Nhap.ColumnEdit = this.rptMayTinh;
     this.colSo_Luong_Nhap.FieldName = "So_Luong_Nhap";
     this.colSo_Luong_Nhap.Name = "colSo_Luong_Nhap";
     this.colSo_Luong_Nhap.OptionsColumn.ReadOnly = true;
     this.colSo_Luong_Nhap.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colSo_Luong_Nhap.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] {
     new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Sum, "So_Luong_Nhap", "{0:##,##0.###}")});
     this.colSo_Luong_Nhap.Visible = true;
     //
     // colSo_Luong_Xuat
     //
     this.colSo_Luong_Xuat.AppearanceHeader.Options.UseTextOptions = true;
     this.colSo_Luong_Xuat.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSo_Luong_Xuat.Caption = "Xuất";
     this.colSo_Luong_Xuat.ColumnEdit = this.rptMayTinh;
     this.colSo_Luong_Xuat.FieldName = "So_Luong_Xuat";
     this.colSo_Luong_Xuat.Name = "colSo_Luong_Xuat";
     this.colSo_Luong_Xuat.OptionsColumn.ReadOnly = true;
     this.colSo_Luong_Xuat.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colSo_Luong_Xuat.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] {
     new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Sum, "So_Luong_Xuat", "{0:##,##0.###}")});
     this.colSo_Luong_Xuat.Visible = true;
     //
     // colSo_Luong_Ton
     //
     this.colSo_Luong_Ton.AppearanceHeader.Options.UseTextOptions = true;
     this.colSo_Luong_Ton.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSo_Luong_Ton.Caption = "Tồn";
     this.colSo_Luong_Ton.ColumnEdit = this.rptMayTinh;
     this.colSo_Luong_Ton.FieldName = "So_Luong_Ton";
     this.colSo_Luong_Ton.Name = "colSo_Luong_Ton";
     this.colSo_Luong_Ton.OptionsColumn.ReadOnly = true;
     this.colSo_Luong_Ton.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colSo_Luong_Ton.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] {
     new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Sum, "So_Luong_Thuc", "{0:##,##0.###}")});
     this.colSo_Luong_Ton.Visible = true;
     //
     // gridBand3
     //
     this.gridBand3.Columns.Add(this.colLy_Do);
     this.gridBand3.Columns.Add(this.colGhi_Chu);
     this.gridBand3.Name = "gridBand3";
     this.gridBand3.VisibleIndex = 2;
     this.gridBand3.Width = 150;
     //
     // colLy_Do
     //
     this.colLy_Do.AppearanceHeader.Options.UseTextOptions = true;
     this.colLy_Do.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colLy_Do.Caption = "Lý Do";
     this.colLy_Do.FieldName = "Ly_Do";
     this.colLy_Do.Name = "colLy_Do";
     this.colLy_Do.OptionsColumn.ReadOnly = true;
     this.colLy_Do.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colLy_Do.Visible = true;
     //
     // colGhi_Chu
     //
     this.colGhi_Chu.AppearanceHeader.Options.UseTextOptions = true;
     this.colGhi_Chu.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colGhi_Chu.Caption = "Ghi Chú";
     this.colGhi_Chu.FieldName = "Ghi_Chu";
     this.colGhi_Chu.Name = "colGhi_Chu";
     this.colGhi_Chu.OptionsColumn.ReadOnly = true;
     this.colGhi_Chu.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colGhi_Chu.Visible = true;
     //
     // layoutControlGroup1
     //
     this.layoutControlGroup1.CustomizationFormText = "layoutControlGroup1";
     this.layoutControlGroup1.EnableIndentsWithoutBorders = DevExpress.Utils.DefaultBoolean.True;
     this.layoutControlGroup1.GroupBordersVisible = false;
     this.layoutControlGroup1.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.layoutControlItem1,
     this.layoutControlItem2,
     this.layoutControlItem3,
     this.layoutControlItem4,
     this.layoutControlItem5});
     this.layoutControlGroup1.Location = new System.Drawing.Point(0, 0);
     this.layoutControlGroup1.Name = "layoutControlGroup1";
     this.layoutControlGroup1.Padding = new DevExpress.XtraLayout.Utils.Padding(0, 0, 0, 0);
     this.layoutControlGroup1.Size = new System.Drawing.Size(1102, 392);
     this.layoutControlGroup1.Text = "layoutControlGroup1";
     this.layoutControlGroup1.TextVisible = false;
     //
     // layoutControlItem1
     //
     this.layoutControlItem1.Control = this.gcList;
     this.layoutControlItem1.CustomizationFormText = "layoutControlItem1";
     this.layoutControlItem1.Location = new System.Drawing.Point(0, 24);
     this.layoutControlItem1.Name = "layoutControlItem1";
     this.layoutControlItem1.Size = new System.Drawing.Size(1102, 368);
     this.layoutControlItem1.Text = "layoutControlItem1";
     this.layoutControlItem1.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem1.TextToControlDistance = 0;
     this.layoutControlItem1.TextVisible = false;
     //
     // layoutControlItem2
     //
     this.layoutControlItem2.Control = this.cbChonNgay;
     this.layoutControlItem2.CustomizationFormText = "Tùy Chọn:";
     this.layoutControlItem2.Location = new System.Drawing.Point(0, 0);
     this.layoutControlItem2.MaxSize = new System.Drawing.Size(150, 24);
     this.layoutControlItem2.MinSize = new System.Drawing.Size(109, 24);
     this.layoutControlItem2.Name = "layoutControlItem2";
     this.layoutControlItem2.Size = new System.Drawing.Size(150, 24);
     this.layoutControlItem2.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem2.Text = "Tùy Chọn:";
     this.layoutControlItem2.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.CustomSize;
     this.layoutControlItem2.TextSize = new System.Drawing.Size(50, 13);
     this.layoutControlItem2.TextToControlDistance = 5;
     //
     // layoutControlItem3
     //
     this.layoutControlItem3.Control = this.dtTu;
     this.layoutControlItem3.CustomizationFormText = "Từ";
     this.layoutControlItem3.Location = new System.Drawing.Point(150, 0);
     this.layoutControlItem3.MaxSize = new System.Drawing.Size(150, 24);
     this.layoutControlItem3.MinSize = new System.Drawing.Size(78, 24);
     this.layoutControlItem3.Name = "layoutControlItem3";
     this.layoutControlItem3.Size = new System.Drawing.Size(150, 24);
     this.layoutControlItem3.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem3.Text = "Từ";
     this.layoutControlItem3.TextSize = new System.Drawing.Size(20, 13);
     //
     // layoutControlItem4
     //
     this.layoutControlItem4.Control = this.dtDen;
     this.layoutControlItem4.CustomizationFormText = "Đến";
     this.layoutControlItem4.Location = new System.Drawing.Point(300, 0);
     this.layoutControlItem4.MaxSize = new System.Drawing.Size(150, 24);
     this.layoutControlItem4.MinSize = new System.Drawing.Size(78, 24);
     this.layoutControlItem4.Name = "layoutControlItem4";
     this.layoutControlItem4.Size = new System.Drawing.Size(150, 24);
     this.layoutControlItem4.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem4.Text = "Đến";
     this.layoutControlItem4.TextSize = new System.Drawing.Size(20, 13);
     //
     // layoutControlItem5
     //
     this.layoutControlItem5.Control = this.layoutControl2;
     this.layoutControlItem5.CustomizationFormText = "layoutControlItem5";
     this.layoutControlItem5.Location = new System.Drawing.Point(450, 0);
     this.layoutControlItem5.Name = "layoutControlItem5";
     this.layoutControlItem5.Size = new System.Drawing.Size(652, 24);
     this.layoutControlItem5.Text = "layoutControlItem5";
     this.layoutControlItem5.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem5.TextToControlDistance = 0;
     this.layoutControlItem5.TextVisible = false;
     //
     // frmTheKho
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(1102, 416);
     this.Controls.Add(this.layoutControl1);
     this.Controls.Add(this.barDockControlLeft);
     this.Controls.Add(this.barDockControlRight);
     this.Controls.Add(this.barDockControlBottom);
     this.Controls.Add(this.barDockControlTop);
     this.Name = "frmTheKho";
     this.Text = "Thẻ Kho";
     ((System.ComponentModel.ISupportInitialize)(this.img)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.bm)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl1)).EndInit();
     this.layoutControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtDen.Properties.CalendarTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtDen.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtTu.Properties.CalendarTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtTu.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbChonNgay.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gcList)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.theKhoTheoNgayBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dsTheKho)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gbList)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.rptMayTinh)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem5)).EndInit();
     this.ResumeLayout(false);
 }
コード例 #26
0
        private void DataGridView_ResetLaiCot()
        {
            try
            {
                //xoa tat ca cac cot
                this.bandedGridViewDataBC.Bands.Clear();
                this.bandedGridViewDataBC.Columns.Clear();

                DevExpress.XtraGrid.Views.BandedGrid.GridBand         gridBand_tgian              = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
                DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn gridColumn_XepLichHocId     = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
                DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn gridColumn_ThoiGianHoc      = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
                DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn clm_PhieuGhiDanh_Stt        = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
                DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn gridColumn_ThoiGianHoc_Full = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
                //================
                this.bandedGridViewDataBC.Bands.Add(gridBand_tgian);

                this.bandedGridViewDataBC.Columns.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn[] { gridColumn_XepLichHocId, gridColumn_ThoiGianHoc, clm_PhieuGhiDanh_Stt, gridColumn_ThoiGianHoc_Full });
                //=================
                // gridBand_tgian
                gridBand_tgian.Caption = "gridBand_tgian";
                gridBand_tgian.Columns.Add(gridColumn_XepLichHocId);
                gridBand_tgian.Columns.Add(clm_PhieuGhiDanh_Stt);
                gridBand_tgian.Columns.Add(gridColumn_ThoiGianHoc);
                gridBand_tgian.Columns.Add(gridColumn_ThoiGianHoc_Full);
                gridBand_tgian.Name = "gridBand_tgian";
                gridBand_tgian.OptionsBand.ShowCaption = false;
                gridBand_tgian.VisibleIndex            = 0;
                gridBand_tgian.Width = 205;
                // gridColumn_XepLichHocId
                gridColumn_XepLichHocId.Caption   = "XepLichHocId";
                gridColumn_XepLichHocId.FieldName = "XepLichHocId";
                gridColumn_XepLichHocId.Name      = "gridColumn_XepLichHocId";
                // gridColumn_ThoiGianHoc
                gridColumn_ThoiGianHoc.Caption   = "ThoiGianHoc";
                gridColumn_ThoiGianHoc.FieldName = "ThoiGianHoc";
                gridColumn_ThoiGianHoc.Name      = "gridColumn_ThoiGianHoc";
                // clm_PhieuGhiDanh_Stt
                clm_PhieuGhiDanh_Stt.AppearanceCell.Font                     = new System.Drawing.Font("Tahoma", 9.75F);
                clm_PhieuGhiDanh_Stt.AppearanceCell.Options.UseFont          = true;
                clm_PhieuGhiDanh_Stt.AppearanceCell.Options.UseTextOptions   = true;
                clm_PhieuGhiDanh_Stt.AppearanceCell.TextOptions.HAlignment   = DevExpress.Utils.HorzAlignment.Center;
                clm_PhieuGhiDanh_Stt.AppearanceHeader.Font                   = new System.Drawing.Font("Tahoma", 9.75F);
                clm_PhieuGhiDanh_Stt.AppearanceHeader.ForeColor              = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(192)))));
                clm_PhieuGhiDanh_Stt.AppearanceHeader.Options.UseFont        = true;
                clm_PhieuGhiDanh_Stt.AppearanceHeader.Options.UseForeColor   = true;
                clm_PhieuGhiDanh_Stt.AppearanceHeader.Options.UseTextOptions = true;
                clm_PhieuGhiDanh_Stt.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
                clm_PhieuGhiDanh_Stt.Caption   = "STT";
                clm_PhieuGhiDanh_Stt.FieldName = "stt";
                clm_PhieuGhiDanh_Stt.Name      = "clm_PhieuGhiDanh_Stt";
                clm_PhieuGhiDanh_Stt.OptionsColumn.AllowEdit = false;
                clm_PhieuGhiDanh_Stt.OptionsColumn.ReadOnly  = true;
                clm_PhieuGhiDanh_Stt.Visible = true;
                clm_PhieuGhiDanh_Stt.Width   = 45;
                // gridColumn_tgian
                //
                gridColumn_ThoiGianHoc_Full.AppearanceCell.Font                     = new System.Drawing.Font("Tahoma", 9.75F);
                gridColumn_ThoiGianHoc_Full.AppearanceCell.Options.UseFont          = true;
                gridColumn_ThoiGianHoc_Full.AppearanceHeader.Font                   = new System.Drawing.Font("Tahoma", 9.75F);
                gridColumn_ThoiGianHoc_Full.AppearanceHeader.ForeColor              = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(192)))));
                gridColumn_ThoiGianHoc_Full.AppearanceHeader.Options.UseFont        = true;
                gridColumn_ThoiGianHoc_Full.AppearanceHeader.Options.UseForeColor   = true;
                gridColumn_ThoiGianHoc_Full.AppearanceHeader.Options.UseTextOptions = true;
                gridColumn_ThoiGianHoc_Full.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
                gridColumn_ThoiGianHoc_Full.Caption   = "Thời gian";
                gridColumn_ThoiGianHoc_Full.FieldName = "ThoiGianHoc_Full";
                gridColumn_ThoiGianHoc_Full.Name      = "gridColumn_tgian";
                gridColumn_ThoiGianHoc_Full.OptionsColumn.AllowEdit = false;
                gridColumn_ThoiGianHoc_Full.OptionsColumn.ReadOnly  = true;
                gridColumn_ThoiGianHoc_Full.Visible = true;
                gridColumn_ThoiGianHoc_Full.Width   = 160;
            }
            catch (Exception ex)
            {
                O2S_Common.Logging.LogSystem.Warn(ex);
            }
        }
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            this.components = new System.ComponentModel.Container();
            DevExpress.XtraEditors.DXErrorProvider.ConditionValidationRule conditionValidationRule1 = new DevExpress.XtraEditors.DXErrorProvider.ConditionValidationRule();
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(HubToHubTransfer));
            DevExpress.XtraGrid.StyleFormatCondition styleFormatCondition1 = new DevExpress.XtraGrid.StyleFormatCondition();
            this.repositoryItemCheckEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
            this.layoutControlItem13 = new DevExpress.XtraLayout.LayoutControlItem();
            this.txtRefNo = new DevExpress.XtraEditors.TextEdit();
            this.layoutForFacility = new DevExpress.XtraLayout.LayoutControlItem();
            this.lkForHub = new DevExpress.XtraEditors.LookUpEdit();
            this.btnSaveAndForward = new DevExpress.XtraEditors.SimpleButton();
            this.txtContactPerson = new DevExpress.XtraEditors.TextEdit();
            this.layoutControlItem52 = new DevExpress.XtraLayout.LayoutControlItem();
            this.lkCategoires = new DevExpress.XtraEditors.LookUpEdit();
            this.layoutControlItem31 = new DevExpress.XtraLayout.LayoutControlItem();
            this.txtItemName = new DevExpress.XtraEditors.TextEdit();
            this.layoutControlItem8 = new DevExpress.XtraLayout.LayoutControlItem();
            this.layoutControlItem18 = new DevExpress.XtraLayout.LayoutControlItem();
            this.orderGrid = new DevExpress.XtraGrid.GridControl();
            this.gridOrderView = new DevExpress.XtraGrid.Views.Grid.GridView();
            this.gridColumn11 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn13 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn18 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn17 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn16 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn15 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colExpiryDate = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colBatch = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colUnitPrice = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colPacks = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colQtyPerPacks = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colApprovedPacks = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn19 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn22 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn23 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn24 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn25 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colLocationID = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colBalance = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn26 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn27 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn31 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.ExpireDateEditor = new DevExpress.XtraEditors.Repository.RepositoryItemDateEdit();
            this.repositoryItemButtonEdit2 = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
            this.repositoryItemPacks = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
            this.gridRecieveView1 = new DevExpress.XtraGrid.Views.BandedGrid.AdvBandedGridView();
            this.gridBand1 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
            this.gridColumn3 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.gridColumn1 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.gridColumn10 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.gridColumn2 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.gridColumn4 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.gridColumn5 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.gridColumn6 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.gridColumn7 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.gridColumn8 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.gridColumn12 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.gridColumn9 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.layoutControlGroup14 = new DevExpress.XtraLayout.LayoutControlGroup();
            this.layoutControlItem29 = new DevExpress.XtraLayout.LayoutControlItem();
            this.gridItemsChoice = new DevExpress.XtraGrid.GridControl();
            this.gridItemChoiceView = new DevExpress.XtraGrid.Views.Grid.GridView();
            this.gridColumn30 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn28 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colItemName = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn14 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn29 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn66 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn67 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn21 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn20 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.emptySpaceItem1 = new DevExpress.XtraLayout.EmptySpaceItem();
            this.layoutControlItem12 = new DevExpress.XtraLayout.LayoutControlItem();
            this.btnCancelOne = new DevExpress.XtraEditors.SimpleButton();
            this.layoutControlItem5 = new DevExpress.XtraLayout.LayoutControlItem();
            this.emptySpaceItem4 = new DevExpress.XtraLayout.EmptySpaceItem();
            this.emptySpaceItem3 = new DevExpress.XtraLayout.EmptySpaceItem();
            this.emptySpaceItem2 = new DevExpress.XtraLayout.EmptySpaceItem();
            this.layoutControlItem3 = new DevExpress.XtraLayout.LayoutControlItem();
            this.lkAccountType = new DevExpress.XtraEditors.GridLookUpEdit();
            this.gridLookUpEdit1View = new DevExpress.XtraGrid.Views.Grid.GridView();
            this.ID = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn96 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.ParentID = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn97 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn98 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.layoutFromStore = new DevExpress.XtraLayout.LayoutControlItem();
            this.lkFromStore = new DevExpress.XtraEditors.LookUpEdit();
            this.layoutControlGroup10 = new DevExpress.XtraLayout.LayoutControlGroup();
            this.emptySpaceItem10 = new DevExpress.XtraLayout.EmptySpaceItem();
            this.printOrder = new DevExpress.XtraPrinting.PrintableComponentLink(this.components);
            this.printingSystem1 = new DevExpress.XtraPrinting.PrintingSystem(this.components);
            this.printableComponentLink1 = new DevExpress.XtraPrinting.PrintableComponentLink(this.components);
            this.emptySpaceItem23 = new DevExpress.XtraLayout.EmptySpaceItem();
            this.emptySpaceItem22 = new DevExpress.XtraLayout.EmptySpaceItem();
            this.popupMenu1 = new DevExpress.XtraBars.PopupMenu(this.components);
            this.layoutControlGroup9 = new DevExpress.XtraLayout.LayoutControlGroup();
            this.layoutControlGroup8 = new DevExpress.XtraLayout.LayoutControlGroup();
            this.emptySpaceItem15 = new DevExpress.XtraLayout.EmptySpaceItem();
            this.boxSizedList = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
            this.repositoryItemSpinEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemSpinEdit();
            this.layoutControl4 = new DevExpress.XtraLayout.LayoutControl();
            this.repositoryItemDateEdit3 = new DevExpress.XtraEditors.Repository.RepositoryItemDateEdit();
            this.repositoryItemButtonEdit4 = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
            this.dxValidation1stTab = new DevExpress.XtraEditors.DXErrorProvider.DXValidationProvider(this.components);
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem13)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.txtRefNo.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutForFacility)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.lkForHub.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.txtContactPerson.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem52)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.lkCategoires.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem31)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.txtItemName.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem8)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem18)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.orderGrid)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridOrderView)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.ExpireDateEditor)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.ExpireDateEditor.VistaTimeProperties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEdit2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemPacks)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridRecieveView1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup14)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem29)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridItemsChoice)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridItemChoiceView)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem12)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem5)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem4)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem3)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem3)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.lkAccountType.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridLookUpEdit1View)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutFromStore)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.lkFromStore.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup10)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem10)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.printOrder.ImageCollection)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.printingSystem1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.printableComponentLink1.ImageCollection)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem23)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem22)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.popupMenu1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup9)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup8)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem15)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.boxSizedList)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemSpinEdit1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutControl4)).BeginInit();
            this.layoutControl4.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit3)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit3.VistaTimeProperties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEdit4)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.dxValidation1stTab)).BeginInit();
            this.SuspendLayout();
            //
            // repositoryItemCheckEdit1
            //
            this.repositoryItemCheckEdit1.AutoHeight = false;
            this.repositoryItemCheckEdit1.Name = "repositoryItemCheckEdit1";
            this.repositoryItemCheckEdit1.NullStyle = DevExpress.XtraEditors.Controls.StyleIndeterminate.Unchecked;
            this.repositoryItemCheckEdit1.ValueGrayed = false;
            //
            // layoutControlItem13
            //
            this.layoutControlItem13.Control = this.txtRefNo;
            this.layoutControlItem13.CustomizationFormText = "Order Number";
            this.layoutControlItem13.Location = new System.Drawing.Point(697, 24);
            this.layoutControlItem13.Name = "layoutControlItem13";
            this.layoutControlItem13.Size = new System.Drawing.Size(422, 24);
            this.layoutControlItem13.Text = "Order Number";
            this.layoutControlItem13.TextSize = new System.Drawing.Size(80, 13);
            //
            // txtRefNo
            //
            this.txtRefNo.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.txtRefNo.Enabled = false;
            this.txtRefNo.Location = new System.Drawing.Point(783, 28);
            this.txtRefNo.Name = "txtRefNo";
            this.txtRefNo.Size = new System.Drawing.Size(336, 20);
            this.txtRefNo.TabIndex = 15;
            //
            // layoutForFacility
            //
            this.layoutForFacility.Control = this.lkForHub;
            this.layoutForFacility.CustomizationFormText = "For Facility";
            this.layoutForFacility.Location = new System.Drawing.Point(274, 48);
            this.layoutForFacility.Name = "layoutForFacility";
            this.layoutForFacility.Size = new System.Drawing.Size(571, 48);
            this.layoutForFacility.Text = "For Hub";
            this.layoutForFacility.TextSize = new System.Drawing.Size(80, 13);
            //
            // lkForHub
            //
            this.lkForHub.EditValue = "1";
            this.lkForHub.Location = new System.Drawing.Point(360, 52);
            this.lkForHub.Name = "lkForHub";
            this.lkForHub.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.lkForHub.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
            new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Name", "Hub Name"),
            new DevExpress.XtraEditors.Controls.LookUpColumnInfo("ID", "Name4", 20, DevExpress.Utils.FormatType.None, "", false, DevExpress.Utils.HorzAlignment.Default)});
            this.lkForHub.Properties.DisplayMember = "Name";
            this.lkForHub.Properties.NullText = "Select Issue Location";
            this.lkForHub.Properties.ValueMember = "ID";
            this.lkForHub.Size = new System.Drawing.Size(485, 20);
            this.lkForHub.TabIndex = 22;
            conditionValidationRule1.ConditionOperator = DevExpress.XtraEditors.DXErrorProvider.ConditionOperator.NotEquals;
            conditionValidationRule1.ErrorText = "This value is not valid";
            this.dxValidation1stTab.SetValidationRule(this.lkForHub, conditionValidationRule1);
            this.lkForHub.EditValueChanged += new System.EventHandler(this.lkForHub_EditValueChanged);
            //
            // btnSaveAndForward
            //
            this.btnSaveAndForward.Image = ((System.Drawing.Image)(resources.GetObject("btnSaveAndForward.Image")));
            this.btnSaveAndForward.Location = new System.Drawing.Point(876, 549);
            this.btnSaveAndForward.Name = "btnSaveAndForward";
            this.btnSaveAndForward.Size = new System.Drawing.Size(140, 22);
            this.btnSaveAndForward.TabIndex = 25;
            this.btnSaveAndForward.Text = "Save and Print";
            this.btnSaveAndForward.Click += new System.EventHandler(this.btnSaveAndForward_Click);
            //
            // txtContactPerson
            //
            this.txtContactPerson.Location = new System.Drawing.Point(786, 4);
            this.txtContactPerson.Name = "txtContactPerson";
            this.txtContactPerson.Size = new System.Drawing.Size(333, 20);
            this.txtContactPerson.TabIndex = 39;
            //
            // layoutControlItem52
            //
            this.layoutControlItem52.Control = this.lkCategoires;
            this.layoutControlItem52.CustomizationFormText = "Categories";
            this.layoutControlItem52.Location = new System.Drawing.Point(0, 0);
            this.layoutControlItem52.MaxSize = new System.Drawing.Size(273, 24);
            this.layoutControlItem52.MinSize = new System.Drawing.Size(273, 24);
            this.layoutControlItem52.Name = "layoutControlItem52";
            this.layoutControlItem52.Size = new System.Drawing.Size(273, 24);
            this.layoutControlItem52.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
            this.layoutControlItem52.Text = "Categories";
            this.layoutControlItem52.TextSize = new System.Drawing.Size(80, 13);
            //
            // lkCategoires
            //
            this.lkCategoires.Location = new System.Drawing.Point(86, 4);
            this.lkCategoires.Name = "lkCategoires";
            this.lkCategoires.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.lkCategoires.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
            new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Name", "Name")});
            this.lkCategoires.Properties.DisplayMember = "Name";
            this.lkCategoires.Properties.NullText = "";
            this.lkCategoires.Properties.ValueMember = "ID";
            this.lkCategoires.Size = new System.Drawing.Size(187, 20);
            this.lkCategoires.TabIndex = 23;
            this.lkCategoires.EditValueChanged += new System.EventHandler(this.lkCategoires_EditValueChanged);
            //
            // layoutControlItem31
            //
            this.layoutControlItem31.Control = this.txtItemName;
            this.layoutControlItem31.CustomizationFormText = "layoutControlItem31";
            this.layoutControlItem31.Location = new System.Drawing.Point(0, 48);
            this.layoutControlItem31.Name = "layoutControlItem31";
            this.layoutControlItem31.Size = new System.Drawing.Size(274, 24);
            this.layoutControlItem31.Text = "Filter Drug Name";
            this.layoutControlItem31.TextSize = new System.Drawing.Size(80, 13);
            //
            // txtItemName
            //
            this.txtItemName.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.txtItemName.Location = new System.Drawing.Point(86, 52);
            this.txtItemName.Name = "txtItemName";
            this.txtItemName.Size = new System.Drawing.Size(188, 20);
            this.txtItemName.TabIndex = 4;
            this.txtItemName.EditValueChanged += new System.EventHandler(this.txtItemName_EditValueChanged);
            //
            // layoutControlItem8
            //
            this.layoutControlItem8.Control = this.btnSaveAndForward;
            this.layoutControlItem8.CustomizationFormText = "layoutControlItem8";
            this.layoutControlItem8.Location = new System.Drawing.Point(872, 545);
            this.layoutControlItem8.Name = "layoutControlItem8";
            this.layoutControlItem8.Size = new System.Drawing.Size(144, 26);
            this.layoutControlItem8.Text = "layoutControlItem8";
            this.layoutControlItem8.TextSize = new System.Drawing.Size(0, 0);
            this.layoutControlItem8.TextToControlDistance = 0;
            this.layoutControlItem8.TextVisible = false;
            //
            // layoutControlItem18
            //
            this.layoutControlItem18.Control = this.orderGrid;
            this.layoutControlItem18.CustomizationFormText = "layoutControlItem18";
            this.layoutControlItem18.Location = new System.Drawing.Point(271, 96);
            this.layoutControlItem18.Name = "layoutControlItem18";
            this.layoutControlItem18.Size = new System.Drawing.Size(848, 449);
            this.layoutControlItem18.Text = "layoutControlItem18";
            this.layoutControlItem18.TextSize = new System.Drawing.Size(0, 0);
            this.layoutControlItem18.TextToControlDistance = 0;
            this.layoutControlItem18.TextVisible = false;
            //
            // orderGrid
            //
            this.orderGrid.Location = new System.Drawing.Point(275, 100);
            this.orderGrid.MainView = this.gridOrderView;
            this.orderGrid.Name = "orderGrid";
            this.orderGrid.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
            this.ExpireDateEditor,
            this.repositoryItemButtonEdit2,
            this.repositoryItemPacks});
            this.orderGrid.Size = new System.Drawing.Size(844, 445);
            this.orderGrid.TabIndex = 11;
            this.orderGrid.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
            this.gridOrderView,
            this.gridRecieveView1});
            this.orderGrid.Click += new System.EventHandler(this.orderGrid_Click);
            //
            // gridOrderView
            //
            this.gridOrderView.Appearance.FocusedCell.BackColor = System.Drawing.Color.SkyBlue;
            this.gridOrderView.Appearance.FocusedCell.Options.UseBackColor = true;
            this.gridOrderView.Appearance.FocusedRow.BackColor = System.Drawing.Color.CornflowerBlue;
            this.gridOrderView.Appearance.FocusedRow.Options.UseBackColor = true;
            this.gridOrderView.Appearance.SelectedRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(192)))), ((int)(((byte)(255)))));
            this.gridOrderView.Appearance.SelectedRow.Options.UseBackColor = true;
            this.gridOrderView.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
            this.gridColumn11,
            this.gridColumn13,
            this.gridColumn18,
            this.gridColumn17,
            this.gridColumn16,
            this.gridColumn15,
            this.colExpiryDate,
            this.colBatch,
            this.colUnitPrice,
            this.colPacks,
            this.colQtyPerPacks,
            this.colApprovedPacks,
            this.gridColumn19,
            this.gridColumn22,
            this.gridColumn23,
            this.gridColumn24,
            this.gridColumn25,
            this.colLocationID,
            this.colBalance,
            this.gridColumn26,
            this.gridColumn27,
            this.gridColumn31});
            styleFormatCondition1.Appearance.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            styleFormatCondition1.Appearance.Options.UseBackColor = true;
            styleFormatCondition1.Condition = DevExpress.XtraGrid.FormatConditionEnum.Expression;
            styleFormatCondition1.Expression = "[SKUBU] is null";
            this.gridOrderView.FormatConditions.AddRange(new DevExpress.XtraGrid.StyleFormatCondition[] {
            styleFormatCondition1});
            this.gridOrderView.GridControl = this.orderGrid;
            this.gridOrderView.GroupCount = 1;
            this.gridOrderView.IndicatorWidth = 40;
            this.gridOrderView.Name = "gridOrderView";
            this.gridOrderView.OptionsCustomization.AllowColumnMoving = false;
            this.gridOrderView.OptionsCustomization.AllowColumnResizing = false;
            this.gridOrderView.OptionsCustomization.AllowFilter = false;
            this.gridOrderView.OptionsCustomization.AllowQuickHideColumns = false;
            this.gridOrderView.OptionsCustomization.AllowSort = false;
            this.gridOrderView.OptionsMenu.EnableColumnMenu = false;
            this.gridOrderView.OptionsPrint.PrintDetails = true;
            this.gridOrderView.OptionsPrint.PrintFooter = false;
            this.gridOrderView.OptionsPrint.PrintGroupFooter = false;
            this.gridOrderView.OptionsPrint.PrintHorzLines = false;
            this.gridOrderView.OptionsPrint.PrintPreview = true;
            this.gridOrderView.OptionsPrint.PrintVertLines = false;
            this.gridOrderView.OptionsView.AllowCellMerge = true;
            this.gridOrderView.OptionsView.ShowGroupPanel = false;
            this.gridOrderView.OptionsView.ShowIndicator = false;
            this.gridOrderView.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
            new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.gridColumn19, DevExpress.Data.ColumnSortOrder.Ascending)});
            this.gridOrderView.CellValueChanged += new DevExpress.XtraGrid.Views.Base.CellValueChangedEventHandler(this.gridOrderView_CellValueChanged);
            //
            // gridColumn11
            //
            this.gridColumn11.AppearanceCell.BackColor = System.Drawing.Color.WhiteSmoke;
            this.gridColumn11.AppearanceCell.Options.UseBackColor = true;
            this.gridColumn11.Caption = "Stock Code";
            this.gridColumn11.FieldName = "StockCode";
            this.gridColumn11.Name = "gridColumn11";
            this.gridColumn11.OptionsColumn.AllowEdit = false;
            this.gridColumn11.OptionsColumn.AllowFocus = false;
            this.gridColumn11.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn11.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn11.Width = 25;
            //
            // gridColumn13
            //
            this.gridColumn13.AppearanceCell.BackColor = System.Drawing.Color.WhiteSmoke;
            this.gridColumn13.AppearanceCell.Options.UseBackColor = true;
            this.gridColumn13.Caption = "Item Name";
            this.gridColumn13.FieldName = "FullItemName";
            this.gridColumn13.Name = "gridColumn13";
            this.gridColumn13.OptionsColumn.AllowEdit = false;
            this.gridColumn13.OptionsColumn.AllowFocus = false;
            this.gridColumn13.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.True;
            this.gridColumn13.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.True;
            this.gridColumn13.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn13.ShowButtonMode = DevExpress.XtraGrid.Views.Base.ShowButtonModeEnum.ShowAlways;
            this.gridColumn13.Visible = true;
            this.gridColumn13.VisibleIndex = 0;
            this.gridColumn13.Width = 206;
            //
            // gridColumn18
            //
            this.gridColumn18.AppearanceCell.BackColor = System.Drawing.Color.WhiteSmoke;
            this.gridColumn18.AppearanceCell.Options.UseBackColor = true;
            this.gridColumn18.Caption = "Manufacturer";
            this.gridColumn18.FieldName = "Manufacturer";
            this.gridColumn18.Name = "gridColumn18";
            this.gridColumn18.OptionsColumn.AllowEdit = false;
            this.gridColumn18.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn18.OptionsColumn.ReadOnly = true;
            this.gridColumn18.Visible = true;
            this.gridColumn18.VisibleIndex = 1;
            this.gridColumn18.Width = 108;
            //
            // gridColumn17
            //
            this.gridColumn17.AppearanceCell.BackColor = System.Drawing.Color.WhiteSmoke;
            this.gridColumn17.AppearanceCell.Options.UseBackColor = true;
            this.gridColumn17.Caption = "Unit";
            this.gridColumn17.FieldName = "Unit";
            this.gridColumn17.Name = "gridColumn17";
            this.gridColumn17.OptionsColumn.AllowEdit = false;
            this.gridColumn17.OptionsColumn.AllowFocus = false;
            this.gridColumn17.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.True;
            this.gridColumn17.Visible = true;
            this.gridColumn17.VisibleIndex = 2;
            this.gridColumn17.Width = 41;
            //
            // gridColumn16
            //
            this.gridColumn16.AppearanceCell.BackColor = System.Drawing.Color.WhiteSmoke;
            this.gridColumn16.AppearanceCell.Options.UseBackColor = true;
            this.gridColumn16.Caption = "Supplier";
            this.gridColumn16.FieldName = "Supplier";
            this.gridColumn16.Name = "gridColumn16";
            this.gridColumn16.OptionsColumn.AllowEdit = false;
            this.gridColumn16.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn16.OptionsColumn.ReadOnly = true;
            this.gridColumn16.Visible = true;
            this.gridColumn16.VisibleIndex = 3;
            this.gridColumn16.Width = 108;
            //
            // gridColumn15
            //
            this.gridColumn15.AppearanceCell.BackColor = System.Drawing.Color.WhiteSmoke;
            this.gridColumn15.AppearanceCell.Options.UseBackColor = true;
            this.gridColumn15.Caption = "Location";
            this.gridColumn15.FieldName = "Location";
            this.gridColumn15.Name = "gridColumn15";
            this.gridColumn15.OptionsColumn.AllowEdit = false;
            this.gridColumn15.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn15.OptionsColumn.ReadOnly = true;
            this.gridColumn15.Visible = true;
            this.gridColumn15.VisibleIndex = 4;
            this.gridColumn15.Width = 63;
            //
            // colExpiryDate
            //
            this.colExpiryDate.AppearanceCell.BackColor = System.Drawing.Color.WhiteSmoke;
            this.colExpiryDate.AppearanceCell.Options.UseBackColor = true;
            this.colExpiryDate.Caption = "Exp Date";
            this.colExpiryDate.DisplayFormat.FormatString = "M, dd yyyy";
            this.colExpiryDate.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
            this.colExpiryDate.FieldName = "ExpDate";
            this.colExpiryDate.Name = "colExpiryDate";
            this.colExpiryDate.OptionsColumn.AllowEdit = false;
            this.colExpiryDate.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
            this.colExpiryDate.OptionsColumn.ReadOnly = true;
            this.colExpiryDate.Visible = true;
            this.colExpiryDate.VisibleIndex = 6;
            this.colExpiryDate.Width = 65;
            //
            // colBatch
            //
            this.colBatch.AppearanceCell.BackColor = System.Drawing.Color.WhiteSmoke;
            this.colBatch.AppearanceCell.Options.UseBackColor = true;
            this.colBatch.Caption = "Batch No";
            this.colBatch.FieldName = "BatchNo";
            this.colBatch.Name = "colBatch";
            this.colBatch.OptionsColumn.AllowEdit = false;
            this.colBatch.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
            this.colBatch.OptionsColumn.ReadOnly = true;
            this.colBatch.Visible = true;
            this.colBatch.VisibleIndex = 5;
            this.colBatch.Width = 67;
            //
            // colUnitPrice
            //
            this.colUnitPrice.AppearanceCell.BackColor = System.Drawing.Color.WhiteSmoke;
            this.colUnitPrice.AppearanceCell.Options.UseBackColor = true;
            this.colUnitPrice.Caption = "Unit Price";
            this.colUnitPrice.FieldName = "UnitPrice";
            this.colUnitPrice.Name = "colUnitPrice";
            this.colUnitPrice.OptionsColumn.AllowEdit = false;
            this.colUnitPrice.Visible = true;
            this.colUnitPrice.VisibleIndex = 7;
            this.colUnitPrice.Width = 55;
            //
            // colPacks
            //
            this.colPacks.AppearanceCell.BackColor = System.Drawing.Color.WhiteSmoke;
            this.colPacks.AppearanceCell.Options.UseBackColor = true;
            this.colPacks.Caption = "Packs";
            this.colPacks.FieldName = "Packs";
            this.colPacks.Name = "colPacks";
            this.colPacks.OptionsColumn.AllowEdit = false;
            this.colPacks.Visible = true;
            this.colPacks.VisibleIndex = 8;
            this.colPacks.Width = 44;
            //
            // colQtyPerPacks
            //
            this.colQtyPerPacks.AppearanceCell.BackColor = System.Drawing.Color.WhiteSmoke;
            this.colQtyPerPacks.AppearanceCell.Options.UseBackColor = true;
            this.colQtyPerPacks.Caption = "Qty Per Pack";
            this.colQtyPerPacks.FieldName = "QtyPerPack";
            this.colQtyPerPacks.Name = "colQtyPerPacks";
            this.colQtyPerPacks.OptionsColumn.AllowEdit = false;
            this.colQtyPerPacks.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
            this.colQtyPerPacks.Width = 42;
            //
            // colApprovedPacks
            //
            this.colApprovedPacks.Caption = "Approved Packs";
            this.colApprovedPacks.FieldName = "ApprovedPacks";
            this.colApprovedPacks.Name = "colApprovedPacks";
            this.colApprovedPacks.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
            this.colApprovedPacks.OptionsColumn.FixedWidth = true;
            this.colApprovedPacks.Visible = true;
            this.colApprovedPacks.VisibleIndex = 9;
            this.colApprovedPacks.Width = 85;
            //
            // gridColumn19
            //
            this.gridColumn19.AppearanceCell.BackColor = System.Drawing.Color.WhiteSmoke;
            this.gridColumn19.AppearanceCell.Options.UseBackColor = true;
            this.gridColumn19.Caption = "Account Type";
            this.gridColumn19.FieldName = "account";
            this.gridColumn19.GroupInterval = DevExpress.XtraGrid.ColumnGroupInterval.Value;
            this.gridColumn19.Name = "gridColumn19";
            this.gridColumn19.OptionsColumn.AllowEdit = false;
            this.gridColumn19.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.True;
            this.gridColumn19.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn19.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] {
            new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Count)});
            this.gridColumn19.Width = 59;
            //
            // gridColumn22
            //
            this.gridColumn22.AppearanceCell.BackColor = System.Drawing.Color.WhiteSmoke;
            this.gridColumn22.AppearanceCell.Options.UseBackColor = true;
            this.gridColumn22.Caption = "Receive Doc";
            this.gridColumn22.FieldName = "ReceiveDocID";
            this.gridColumn22.Name = "gridColumn22";
            this.gridColumn22.OptionsColumn.AllowEdit = false;
            //
            // gridColumn23
            //
            this.gridColumn23.AppearanceCell.BackColor = System.Drawing.Color.WhiteSmoke;
            this.gridColumn23.AppearanceCell.Options.UseBackColor = true;
            this.gridColumn23.Caption = "Cost";
            this.gridColumn23.FieldName = "Cost";
            this.gridColumn23.Name = "gridColumn23";
            this.gridColumn23.OptionsColumn.AllowEdit = false;
            //
            // gridColumn24
            //
            this.gridColumn24.AppearanceCell.BackColor = System.Drawing.Color.WhiteSmoke;
            this.gridColumn24.AppearanceCell.Options.UseBackColor = true;
            this.gridColumn24.Caption = "ItemID";
            this.gridColumn24.FieldName = "ItemID";
            this.gridColumn24.Name = "gridColumn24";
            this.gridColumn24.OptionsColumn.AllowEdit = false;
            //
            // gridColumn25
            //
            this.gridColumn25.AppearanceCell.BackColor = System.Drawing.Color.WhiteSmoke;
            this.gridColumn25.AppearanceCell.Options.UseBackColor = true;
            this.gridColumn25.Caption = "UnitID";
            this.gridColumn25.FieldName = "UnitID";
            this.gridColumn25.Name = "gridColumn25";
            this.gridColumn25.OptionsColumn.AllowEdit = false;
            //
            // colLocationID
            //
            this.colLocationID.AppearanceCell.BackColor = System.Drawing.Color.WhiteSmoke;
            this.colLocationID.AppearanceCell.Options.UseBackColor = true;
            this.colLocationID.Caption = "LocationID";
            this.colLocationID.FieldName = "LocationID";
            this.colLocationID.Name = "colLocationID";
            this.colLocationID.OptionsColumn.AllowEdit = false;
            //
            // colBalance
            //
            this.colBalance.AppearanceCell.BackColor = System.Drawing.Color.WhiteSmoke;
            this.colBalance.AppearanceCell.Options.UseBackColor = true;
            this.colBalance.Caption = "Balance";
            this.colBalance.FieldName = "Balance";
            this.colBalance.Name = "colBalance";
            this.colBalance.OptionsColumn.AllowEdit = false;
            this.colBalance.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
            this.colBalance.OptionsColumn.ReadOnly = true;
            this.colBalance.Width = 36;
            //
            // gridColumn26
            //
            this.gridColumn26.Caption = "StoreID";
            this.gridColumn26.FieldName = "StoreID";
            this.gridColumn26.Name = "gridColumn26";
            //
            // gridColumn27
            //
            this.gridColumn27.Caption = "gridColumn27";
            this.gridColumn27.FieldName = "ManufacturerID";
            this.gridColumn27.Name = "gridColumn27";
            //
            // gridColumn31
            //
            this.gridColumn31.Caption = "gridColumn31";
            this.gridColumn31.FieldName = "ReceivingLocationID";
            this.gridColumn31.Name = "gridColumn31";
            //
            // ExpireDateEditor
            //
            this.ExpireDateEditor.AutoHeight = false;
            this.ExpireDateEditor.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.ExpireDateEditor.DisplayFormat.FormatString = "mm-DD-YYYY";
            this.ExpireDateEditor.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
            this.ExpireDateEditor.EditFormat.FormatString = "mm-DD-YYYY";
            this.ExpireDateEditor.EditFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
            this.ExpireDateEditor.ExportMode = DevExpress.XtraEditors.Repository.ExportMode.Value;
            this.ExpireDateEditor.Name = "ExpireDateEditor";
            this.ExpireDateEditor.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton()});
            //
            // repositoryItemButtonEdit2
            //
            this.repositoryItemButtonEdit2.AutoHeight = false;
            this.repositoryItemButtonEdit2.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Plus)});
            this.repositoryItemButtonEdit2.Name = "repositoryItemButtonEdit2";
            this.repositoryItemButtonEdit2.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.HideTextEditor;
            //
            // repositoryItemPacks
            //
            this.repositoryItemPacks.AutoHeight = false;
            this.repositoryItemPacks.Name = "repositoryItemPacks";
            this.repositoryItemPacks.EditValueChanged += new System.EventHandler(this.repositoryItemPacks_EditValueChanged);
            //
            // gridRecieveView1
            //
            this.gridRecieveView1.Bands.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.GridBand[] {
            this.gridBand1});
            this.gridRecieveView1.Columns.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn[] {
            this.gridColumn3,
            this.gridColumn1,
            this.gridColumn10,
            this.gridColumn6,
            this.gridColumn2,
            this.gridColumn4,
            this.gridColumn5,
            this.gridColumn7,
            this.gridColumn8,
            this.gridColumn9,
            this.gridColumn12});
            this.gridRecieveView1.GridControl = this.orderGrid;
            this.gridRecieveView1.Name = "gridRecieveView1";
            this.gridRecieveView1.OptionsView.ShowGroupPanel = false;
            //
            // gridBand1
            //
            this.gridBand1.Caption = "gridBand1";
            this.gridBand1.Columns.Add(this.gridColumn3);
            this.gridBand1.Columns.Add(this.gridColumn1);
            this.gridBand1.Columns.Add(this.gridColumn10);
            this.gridBand1.Columns.Add(this.gridColumn2);
            this.gridBand1.Columns.Add(this.gridColumn4);
            this.gridBand1.Columns.Add(this.gridColumn5);
            this.gridBand1.Columns.Add(this.gridColumn6);
            this.gridBand1.Columns.Add(this.gridColumn7);
            this.gridBand1.Columns.Add(this.gridColumn8);
            this.gridBand1.Columns.Add(this.gridColumn12);
            this.gridBand1.Columns.Add(this.gridColumn9);
            this.gridBand1.Name = "gridBand1";
            this.gridBand1.Width = 1117;
            //
            // gridColumn3
            //
            this.gridColumn3.Caption = "Stock Code";
            this.gridColumn3.FieldName = "Stock Code";
            this.gridColumn3.Name = "gridColumn3";
            this.gridColumn3.OptionsColumn.AllowEdit = false;
            this.gridColumn3.OptionsColumn.AllowFocus = false;
            this.gridColumn3.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn3.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.True;
            this.gridColumn3.Visible = true;
            this.gridColumn3.Width = 104;
            //
            // gridColumn1
            //
            this.gridColumn1.Caption = "Item Name";
            this.gridColumn1.FieldName = "Item Name";
            this.gridColumn1.Name = "gridColumn1";
            this.gridColumn1.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.True;
            this.gridColumn1.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.True;
            this.gridColumn1.Visible = true;
            this.gridColumn1.Width = 104;
            //
            // gridColumn10
            //
            this.gridColumn10.Caption = "Manufacturer";
            this.gridColumn10.FieldName = "Manufacturer";
            this.gridColumn10.Name = "gridColumn10";
            this.gridColumn10.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn10.Visible = true;
            //
            // gridColumn2
            //
            this.gridColumn2.Caption = "Pack Qty";
            this.gridColumn2.FieldName = "AppovedQty";
            this.gridColumn2.Name = "gridColumn2";
            this.gridColumn2.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn2.Visible = true;
            this.gridColumn2.Width = 104;
            //
            // gridColumn4
            //
            this.gridColumn4.Caption = "Reciving Box Size";
            this.gridColumn4.Name = "gridColumn4";
            this.gridColumn4.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn4.Visible = true;
            this.gridColumn4.Width = 104;
            //
            // gridColumn5
            //
            this.gridColumn5.Caption = "BU Qty";
            this.gridColumn5.Name = "gridColumn5";
            this.gridColumn5.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn5.Visible = true;
            this.gridColumn5.Width = 104;
            //
            // gridColumn6
            //
            this.gridColumn6.Caption = "Unit";
            this.gridColumn6.FieldName = "Unit";
            this.gridColumn6.Name = "gridColumn6";
            this.gridColumn6.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn6.Visible = true;
            this.gridColumn6.Width = 104;
            //
            // gridColumn7
            //
            this.gridColumn7.Caption = "Price/Pack";
            this.gridColumn7.Name = "gridColumn7";
            this.gridColumn7.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn7.Visible = true;
            this.gridColumn7.Width = 104;
            //
            // gridColumn8
            //
            this.gridColumn8.Caption = "Batch No";
            this.gridColumn8.FieldName = "BatchNo";
            this.gridColumn8.Name = "gridColumn8";
            this.gridColumn8.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn8.Visible = true;
            this.gridColumn8.Width = 144;
            //
            // gridColumn12
            //
            this.gridColumn12.ColumnEdit = this.repositoryItemButtonEdit2;
            this.gridColumn12.ImageAlignment = System.Drawing.StringAlignment.Center;
            this.gridColumn12.Name = "gridColumn12";
            this.gridColumn12.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn12.ShowButtonMode = DevExpress.XtraGrid.Views.Base.ShowButtonModeEnum.ShowAlways;
            this.gridColumn12.Visible = true;
            this.gridColumn12.Width = 25;
            //
            // gridColumn9
            //
            this.gridColumn9.Caption = "Expiry Date";
            this.gridColumn9.ColumnEdit = this.ExpireDateEditor;
            this.gridColumn9.FieldName = "ExpDate";
            this.gridColumn9.Name = "gridColumn9";
            this.gridColumn9.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn9.Visible = true;
            this.gridColumn9.Width = 145;
            //
            // layoutControlGroup14
            //
            this.layoutControlGroup14.CustomizationFormText = "Root";
            this.layoutControlGroup14.EnableIndentsWithoutBorders = DevExpress.Utils.DefaultBoolean.True;
            this.layoutControlGroup14.GroupBordersVisible = false;
            this.layoutControlGroup14.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
            this.layoutControlItem29,
            this.emptySpaceItem1,
            this.layoutControlItem12,
            this.layoutControlItem18,
            this.layoutControlItem8,
            this.layoutControlItem5,
            this.layoutControlItem13,
            this.layoutForFacility,
            this.emptySpaceItem4,
            this.emptySpaceItem3,
            this.emptySpaceItem2,
            this.layoutControlItem52,
            this.layoutControlItem3,
            this.layoutControlItem31,
            this.layoutFromStore});
            this.layoutControlGroup14.Location = new System.Drawing.Point(0, 0);
            this.layoutControlGroup14.Name = "Root";
            this.layoutControlGroup14.OptionsItemText.TextToControlDistance = 2;
            this.layoutControlGroup14.Padding = new DevExpress.XtraLayout.Utils.Padding(2, 2, 2, 2);
            this.layoutControlGroup14.Size = new System.Drawing.Size(1123, 575);
            this.layoutControlGroup14.Text = "Root";
            this.layoutControlGroup14.TextVisible = false;
            //
            // layoutControlItem29
            //
            this.layoutControlItem29.Control = this.gridItemsChoice;
            this.layoutControlItem29.CustomizationFormText = "layoutControlItem29";
            this.layoutControlItem29.Location = new System.Drawing.Point(0, 96);
            this.layoutControlItem29.Name = "layoutControlItem29";
            this.layoutControlItem29.Size = new System.Drawing.Size(271, 449);
            this.layoutControlItem29.Text = "layoutControlItem29";
            this.layoutControlItem29.TextSize = new System.Drawing.Size(0, 0);
            this.layoutControlItem29.TextToControlDistance = 0;
            this.layoutControlItem29.TextVisible = false;
            //
            // gridItemsChoice
            //
            this.gridItemsChoice.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.gridItemsChoice.Location = new System.Drawing.Point(4, 100);
            this.gridItemsChoice.MainView = this.gridItemChoiceView;
            this.gridItemsChoice.Name = "gridItemsChoice";
            this.gridItemsChoice.Size = new System.Drawing.Size(267, 445);
            this.gridItemsChoice.TabIndex = 11;
            this.gridItemsChoice.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
            this.gridItemChoiceView});
            //
            // gridItemChoiceView
            //
            this.gridItemChoiceView.Appearance.FocusedRow.BackColor = System.Drawing.Color.Gray;
            this.gridItemChoiceView.Appearance.FocusedRow.Options.UseBackColor = true;
            this.gridItemChoiceView.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
            this.gridColumn30,
            this.gridColumn28,
            this.colItemName,
            this.gridColumn14,
            this.gridColumn29,
            this.gridColumn66,
            this.gridColumn67,
            this.gridColumn21,
            this.gridColumn20});
            this.gridItemChoiceView.GridControl = this.gridItemsChoice;
            this.gridItemChoiceView.GroupSummary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] {
            new DevExpress.XtraGrid.GridGroupSummaryItem(DevExpress.Data.SummaryItemType.None, "", null, "")});
            this.gridItemChoiceView.Name = "gridItemChoiceView";
            this.gridItemChoiceView.OptionsBehavior.AllowDeleteRows = DevExpress.Utils.DefaultBoolean.False;
            this.gridItemChoiceView.OptionsCustomization.AllowColumnMoving = false;
            this.gridItemChoiceView.OptionsCustomization.AllowColumnResizing = false;
            this.gridItemChoiceView.OptionsCustomization.AllowFilter = false;
            this.gridItemChoiceView.OptionsCustomization.AllowGroup = false;
            this.gridItemChoiceView.OptionsDetail.AllowExpandEmptyDetails = true;
            this.gridItemChoiceView.OptionsDetail.EnableDetailToolTip = true;
            this.gridItemChoiceView.OptionsDetail.SmartDetailExpandButtonMode = DevExpress.XtraGrid.Views.Grid.DetailExpandButtonMode.AlwaysEnabled;
            this.gridItemChoiceView.OptionsDetail.SmartDetailHeight = true;
            this.gridItemChoiceView.OptionsFilter.UseNewCustomFilterDialog = true;
            this.gridItemChoiceView.OptionsPrint.EnableAppearanceEvenRow = true;
            this.gridItemChoiceView.OptionsPrint.EnableAppearanceOddRow = true;
            this.gridItemChoiceView.OptionsSelection.EnableAppearanceFocusedCell = false;
            this.gridItemChoiceView.OptionsSelection.EnableAppearanceHideSelection = false;
            this.gridItemChoiceView.OptionsSelection.MultiSelect = true;
            this.gridItemChoiceView.OptionsView.EnableAppearanceEvenRow = true;
            this.gridItemChoiceView.OptionsView.EnableAppearanceOddRow = true;
            this.gridItemChoiceView.OptionsView.ShowFilterPanelMode = DevExpress.XtraGrid.Views.Base.ShowFilterPanelMode.Never;
            this.gridItemChoiceView.OptionsView.ShowGroupPanel = false;
            this.gridItemChoiceView.OptionsView.ShowIndicator = false;
            this.gridItemChoiceView.RowClick += new DevExpress.XtraGrid.Views.Grid.RowClickEventHandler(this.gridItemChoiceView_RowClick);
            //
            // gridColumn30
            //
            this.gridColumn30.ColumnEdit = this.repositoryItemCheckEdit1;
            this.gridColumn30.FieldName = "IsSelected";
            this.gridColumn30.Name = "gridColumn30";
            this.gridColumn30.OptionsColumn.AllowEdit = false;
            this.gridColumn30.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Like;
            this.gridColumn30.Visible = true;
            this.gridColumn30.VisibleIndex = 0;
            this.gridColumn30.Width = 20;
            //
            // gridColumn28
            //
            this.gridColumn28.Caption = "Stock Code";
            this.gridColumn28.FieldName = "StockCode";
            this.gridColumn28.Name = "gridColumn28";
            this.gridColumn28.OptionsColumn.AllowEdit = false;
            this.gridColumn28.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn28.Width = 89;
            //
            // colItemName
            //
            this.colItemName.Caption = "Item Name";
            this.colItemName.FieldName = "FullItemName";
            this.colItemName.Name = "colItemName";
            this.colItemName.OptionsColumn.AllowEdit = false;
            this.colItemName.Visible = true;
            this.colItemName.VisibleIndex = 1;
            this.colItemName.Width = 368;
            //
            // gridColumn14
            //
            this.gridColumn14.Caption = "Type";
            this.gridColumn14.FieldName = "CommodityType";
            this.gridColumn14.Name = "gridColumn14";
            this.gridColumn14.OptionsColumn.AllowEdit = false;
            this.gridColumn14.OptionsColumn.AllowFocus = false;
            //
            // gridColumn29
            //
            this.gridColumn29.Caption = "Unit";
            this.gridColumn29.FieldName = "Unit";
            this.gridColumn29.Name = "gridColumn29";
            this.gridColumn29.OptionsColumn.AllowEdit = false;
            this.gridColumn29.Visible = true;
            this.gridColumn29.VisibleIndex = 2;
            this.gridColumn29.Width = 69;
            //
            // gridColumn66
            //
            this.gridColumn66.Caption = "gridColumn66";
            this.gridColumn66.FieldName = "SubCategoryID";
            this.gridColumn66.Name = "gridColumn66";
            //
            // gridColumn67
            //
            this.gridColumn67.Caption = "gridColumn67";
            this.gridColumn67.FieldName = "CategoryID";
            this.gridColumn67.Name = "gridColumn67";
            //
            // gridColumn21
            //
            this.gridColumn21.Caption = "gridColumn21";
            this.gridColumn21.FieldName = "TypeID";
            this.gridColumn21.Name = "gridColumn21";
            //
            // gridColumn20
            //
            this.gridColumn20.Caption = "gridColumn20";
            this.gridColumn20.FieldName = "StoreID";
            this.gridColumn20.Name = "gridColumn20";
            //
            // emptySpaceItem1
            //
            this.emptySpaceItem1.AllowHotTrack = false;
            this.emptySpaceItem1.CustomizationFormText = "emptySpaceItem1";
            this.emptySpaceItem1.Location = new System.Drawing.Point(0, 545);
            this.emptySpaceItem1.Name = "emptySpaceItem1";
            this.emptySpaceItem1.Size = new System.Drawing.Size(872, 26);
            this.emptySpaceItem1.Text = "emptySpaceItem1";
            this.emptySpaceItem1.TextSize = new System.Drawing.Size(0, 0);
            //
            // layoutControlItem12
            //
            this.layoutControlItem12.Control = this.btnCancelOne;
            this.layoutControlItem12.CustomizationFormText = "layoutControlItem12";
            this.layoutControlItem12.Location = new System.Drawing.Point(1016, 545);
            this.layoutControlItem12.MaxSize = new System.Drawing.Size(103, 24);
            this.layoutControlItem12.MinSize = new System.Drawing.Size(103, 24);
            this.layoutControlItem12.Name = "layoutControlItem12";
            this.layoutControlItem12.Size = new System.Drawing.Size(103, 26);
            this.layoutControlItem12.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
            this.layoutControlItem12.Text = "layoutControlItem12";
            this.layoutControlItem12.TextSize = new System.Drawing.Size(0, 0);
            this.layoutControlItem12.TextToControlDistance = 0;
            this.layoutControlItem12.TextVisible = false;
            //
            // btnCancelOne
            //
            this.btnCancelOne.Image = ((System.Drawing.Image)(resources.GetObject("btnCancelOne.Image")));
            this.btnCancelOne.Location = new System.Drawing.Point(1020, 549);
            this.btnCancelOne.Name = "btnCancelOne";
            this.btnCancelOne.Size = new System.Drawing.Size(99, 20);
            this.btnCancelOne.TabIndex = 20;
            this.btnCancelOne.Text = "Cancel";
            this.btnCancelOne.Click += new System.EventHandler(this.btnCancelOne_Click);
            //
            // layoutControlItem5
            //
            this.layoutControlItem5.AppearanceItemCaption.Options.UseTextOptions = true;
            this.layoutControlItem5.AppearanceItemCaption.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
            this.layoutControlItem5.Control = this.txtContactPerson;
            this.layoutControlItem5.CustomizationFormText = "Contact Person";
            this.layoutControlItem5.Location = new System.Drawing.Point(697, 0);
            this.layoutControlItem5.Name = "layoutControlItem5";
            this.layoutControlItem5.Size = new System.Drawing.Size(422, 24);
            this.layoutControlItem5.Text = "Contact Person";
            this.layoutControlItem5.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.CustomSize;
            this.layoutControlItem5.TextSize = new System.Drawing.Size(80, 13);
            this.layoutControlItem5.TextToControlDistance = 5;
            //
            // emptySpaceItem4
            //
            this.emptySpaceItem4.AllowHotTrack = false;
            this.emptySpaceItem4.CustomizationFormText = "emptySpaceItem4";
            this.emptySpaceItem4.Location = new System.Drawing.Point(845, 48);
            this.emptySpaceItem4.Name = "emptySpaceItem4";
            this.emptySpaceItem4.Size = new System.Drawing.Size(274, 48);
            this.emptySpaceItem4.Text = "emptySpaceItem4";
            this.emptySpaceItem4.TextSize = new System.Drawing.Size(0, 0);
            //
            // emptySpaceItem3
            //
            this.emptySpaceItem3.AllowHotTrack = false;
            this.emptySpaceItem3.CustomizationFormText = "emptySpaceItem3";
            this.emptySpaceItem3.Location = new System.Drawing.Point(273, 0);
            this.emptySpaceItem3.Name = "emptySpaceItem3";
            this.emptySpaceItem3.Size = new System.Drawing.Size(424, 24);
            this.emptySpaceItem3.Text = "emptySpaceItem3";
            this.emptySpaceItem3.TextSize = new System.Drawing.Size(0, 0);
            //
            // emptySpaceItem2
            //
            this.emptySpaceItem2.AllowHotTrack = false;
            this.emptySpaceItem2.CustomizationFormText = "emptySpaceItem2";
            this.emptySpaceItem2.Location = new System.Drawing.Point(273, 24);
            this.emptySpaceItem2.Name = "emptySpaceItem2";
            this.emptySpaceItem2.Size = new System.Drawing.Size(424, 24);
            this.emptySpaceItem2.Text = "emptySpaceItem2";
            this.emptySpaceItem2.TextSize = new System.Drawing.Size(0, 0);
            //
            // layoutControlItem3
            //
            this.layoutControlItem3.Control = this.lkAccountType;
            this.layoutControlItem3.CustomizationFormText = "Accounts";
            this.layoutControlItem3.Location = new System.Drawing.Point(0, 24);
            this.layoutControlItem3.MaxSize = new System.Drawing.Size(273, 24);
            this.layoutControlItem3.MinSize = new System.Drawing.Size(273, 24);
            this.layoutControlItem3.Name = "layoutControlItem3";
            this.layoutControlItem3.Size = new System.Drawing.Size(273, 24);
            this.layoutControlItem3.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
            this.layoutControlItem3.Text = "Accounts";
            this.layoutControlItem3.TextSize = new System.Drawing.Size(80, 13);
            //
            // lkAccountType
            //
            this.lkAccountType.EditValue = "";
            this.lkAccountType.Location = new System.Drawing.Point(86, 28);
            this.lkAccountType.Name = "lkAccountType";
            this.lkAccountType.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.lkAccountType.Properties.DisplayMember = "Name";
            this.lkAccountType.Properties.NullText = "Select Account";
            this.lkAccountType.Properties.ValueMember = "ID";
            this.lkAccountType.Properties.View = this.gridLookUpEdit1View;
            this.lkAccountType.Size = new System.Drawing.Size(187, 20);
            this.lkAccountType.TabIndex = 68;
            this.lkAccountType.EditValueChanged += new System.EventHandler(this.lkAccountType_EditValueChanged);
            //
            // gridLookUpEdit1View
            //
            this.gridLookUpEdit1View.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
            this.ID,
            this.gridColumn96,
            this.ParentID,
            this.gridColumn97,
            this.gridColumn98});
            this.gridLookUpEdit1View.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
            this.gridLookUpEdit1View.GroupCount = 3;
            this.gridLookUpEdit1View.Name = "gridLookUpEdit1View";
            this.gridLookUpEdit1View.OptionsSelection.EnableAppearanceFocusedCell = false;
            this.gridLookUpEdit1View.OptionsView.ShowGroupPanel = false;
            this.gridLookUpEdit1View.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
            new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.ParentID, DevExpress.Data.ColumnSortOrder.Ascending),
            new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.gridColumn97, DevExpress.Data.ColumnSortOrder.Ascending),
            new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.gridColumn96, DevExpress.Data.ColumnSortOrder.Ascending)});
            //
            // ID
            //
            this.ID.Caption = "ID";
            this.ID.FieldName = "ID";
            this.ID.Name = "ID";
            //
            // gridColumn96
            //
            this.gridColumn96.Caption = "Sub Account";
            this.gridColumn96.FieldName = "StoreGroupDivision";
            this.gridColumn96.Name = "gridColumn96";
            this.gridColumn96.Visible = true;
            this.gridColumn96.VisibleIndex = 0;
            //
            // ParentID
            //
            this.ParentID.Caption = "Mode";
            this.ParentID.FieldName = "StoreType";
            this.ParentID.Name = "ParentID";
            //
            // gridColumn97
            //
            this.gridColumn97.Caption = "Account";
            this.gridColumn97.FieldName = "StoreGroup";
            this.gridColumn97.Name = "gridColumn97";
            //
            // gridColumn98
            //
            this.gridColumn98.Caption = "SSA";
            this.gridColumn98.FieldName = "Name";
            this.gridColumn98.Name = "gridColumn98";
            this.gridColumn98.Visible = true;
            this.gridColumn98.VisibleIndex = 0;
            this.gridColumn98.Width = 83;
            //
            // layoutFromStore
            //
            this.layoutFromStore.Control = this.lkFromStore;
            this.layoutFromStore.CustomizationFormText = "From Store";
            this.layoutFromStore.Location = new System.Drawing.Point(0, 72);
            this.layoutFromStore.MaxSize = new System.Drawing.Size(274, 24);
            this.layoutFromStore.MinSize = new System.Drawing.Size(274, 24);
            this.layoutFromStore.Name = "layoutFromStore";
            this.layoutFromStore.Size = new System.Drawing.Size(274, 24);
            this.layoutFromStore.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
            this.layoutFromStore.Text = "From Store";
            this.layoutFromStore.TextSize = new System.Drawing.Size(80, 13);
            this.layoutFromStore.Visibility = DevExpress.XtraLayout.Utils.LayoutVisibility.Never;
            //
            // lkFromStore
            //
            this.lkFromStore.Location = new System.Drawing.Point(86, 76);
            this.lkFromStore.Name = "lkFromStore";
            this.lkFromStore.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.lkFromStore.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
            new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Name", "Stores")});
            this.lkFromStore.Properties.DisplayMember = "ID";
            this.lkFromStore.Properties.NullText = "Select Store To Transfer From";
            this.lkFromStore.Properties.ValueMember = "Name";
            this.lkFromStore.Size = new System.Drawing.Size(188, 20);
            this.lkFromStore.TabIndex = 42;
            this.lkFromStore.Visible = false;

            //
            // layoutControlGroup10
            //
            this.layoutControlGroup10.CustomizationFormText = "layoutControlGroup10";
            this.layoutControlGroup10.Location = new System.Drawing.Point(0, 126);
            this.layoutControlGroup10.Name = "layoutControlGroup10";
            this.layoutControlGroup10.OptionsItemText.TextToControlDistance = 5;
            this.layoutControlGroup10.Size = new System.Drawing.Size(717, 68);
            this.layoutControlGroup10.Text = "layoutControlGroup10";
            //
            // emptySpaceItem10
            //
            this.emptySpaceItem10.AllowHotTrack = false;
            this.emptySpaceItem10.CustomizationFormText = "emptySpaceItem10";
            this.emptySpaceItem10.Location = new System.Drawing.Point(0, 0);
            this.emptySpaceItem10.Name = "emptySpaceItem10";
            this.emptySpaceItem10.Size = new System.Drawing.Size(693, 10);
            this.emptySpaceItem10.Text = "emptySpaceItem10";
            this.emptySpaceItem10.TextSize = new System.Drawing.Size(0, 0);
            //
            // printOrder
            //
            //
            //
            //
            this.printOrder.ImageCollection.ImageStream = ((DevExpress.Utils.ImageCollectionStreamer)(resources.GetObject("printOrder.ImageCollection.ImageStream")));
            this.printOrder.Landscape = true;
            this.printOrder.PaperKind = System.Drawing.Printing.PaperKind.A4;
            this.printOrder.PrintingSystem = this.printingSystem1;
            this.printOrder.PrintingSystemBase = this.printingSystem1;
            //
            // printingSystem1
            //
            this.printingSystem1.Links.AddRange(new object[] {
            this.printableComponentLink1,
            this.printOrder});
            //
            // printableComponentLink1
            //
            //
            //
            //
            this.printableComponentLink1.ImageCollection.ImageStream = ((DevExpress.Utils.ImageCollectionStreamer)(resources.GetObject("printableComponentLink1.ImageCollection.ImageStream")));
            this.printableComponentLink1.Landscape = true;
            this.printableComponentLink1.Margins = new System.Drawing.Printing.Margins(20, 20, 20, 20);
            this.printableComponentLink1.PageHeaderFooter = new DevExpress.XtraPrinting.PageHeaderFooter(null, new DevExpress.XtraPrinting.PageFooterArea(new string[] {
                "[Time Printed]",
                "[Date Printed]",
                "[Page # of Pages #]"}, new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))), DevExpress.XtraPrinting.BrickAlignment.Near));
            this.printableComponentLink1.PaperKind = System.Drawing.Printing.PaperKind.A4;
            this.printableComponentLink1.PrintingSystem = this.printingSystem1;
            this.printableComponentLink1.PrintingSystemBase = this.printingSystem1;
            this.printableComponentLink1.RtfReportHeader = resources.GetString("printableComponentLink1.RtfReportHeader");
            //
            // emptySpaceItem23
            //
            this.emptySpaceItem23.AllowHotTrack = false;
            this.emptySpaceItem23.CustomizationFormText = "emptySpaceItem23";
            this.emptySpaceItem23.Location = new System.Drawing.Point(1179, 24);
            this.emptySpaceItem23.Name = "emptySpaceItem23";
            this.emptySpaceItem23.Size = new System.Drawing.Size(10, 455);
            this.emptySpaceItem23.Text = "emptySpaceItem23";
            this.emptySpaceItem23.TextSize = new System.Drawing.Size(0, 0);
            //
            // emptySpaceItem22
            //
            this.emptySpaceItem22.AllowHotTrack = false;
            this.emptySpaceItem22.CustomizationFormText = "emptySpaceItem22";
            this.emptySpaceItem22.Location = new System.Drawing.Point(85, 0);
            this.emptySpaceItem22.Name = "emptySpaceItem22";
            this.emptySpaceItem22.Size = new System.Drawing.Size(119, 479);
            this.emptySpaceItem22.Text = "emptySpaceItem22";
            this.emptySpaceItem22.TextSize = new System.Drawing.Size(0, 0);
            //
            // popupMenu1
            //
            this.popupMenu1.Name = "popupMenu1";
            //
            // layoutControlGroup9
            //
            this.layoutControlGroup9.CustomizationFormText = "layoutControlGroup9";
            this.layoutControlGroup9.Location = new System.Drawing.Point(0, 126);
            this.layoutControlGroup9.Name = "layoutControlGroup9";
            this.layoutControlGroup9.OptionsItemText.TextToControlDistance = 5;
            this.layoutControlGroup9.Size = new System.Drawing.Size(717, 68);
            this.layoutControlGroup9.Text = "layoutControlGroup9";
            //
            // layoutControlGroup8
            //
            this.layoutControlGroup8.CustomizationFormText = "layoutControlGroup8";
            this.layoutControlGroup8.Location = new System.Drawing.Point(0, 0);
            this.layoutControlGroup8.Name = "layoutControlGroup8";
            this.layoutControlGroup8.OptionsItemText.TextToControlDistance = 5;
            this.layoutControlGroup8.Size = new System.Drawing.Size(717, 116);
            this.layoutControlGroup8.Text = "layoutControlGroup8";
            //
            // emptySpaceItem15
            //
            this.emptySpaceItem15.AllowHotTrack = false;
            this.emptySpaceItem15.CustomizationFormText = "emptySpaceItem15";
            this.emptySpaceItem15.Location = new System.Drawing.Point(0, 116);
            this.emptySpaceItem15.Name = "emptySpaceItem15";
            this.emptySpaceItem15.Size = new System.Drawing.Size(717, 10);
            this.emptySpaceItem15.Text = "emptySpaceItem15";
            this.emptySpaceItem15.TextSize = new System.Drawing.Size(0, 0);
            //
            // boxSizedList
            //
            this.boxSizedList.AutoHeight = false;
            this.boxSizedList.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.boxSizedList.DisplayMember = "Name";
            this.boxSizedList.Name = "boxSizedList";
            this.boxSizedList.ValueMember = "ID";
            //
            // repositoryItemSpinEdit1
            //
            this.repositoryItemSpinEdit1.AutoHeight = false;
            this.repositoryItemSpinEdit1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton()});
            this.repositoryItemSpinEdit1.Name = "repositoryItemSpinEdit1";
            //
            // layoutControl4
            //
            this.layoutControl4.Controls.Add(this.lkAccountType);
            this.layoutControl4.Controls.Add(this.lkFromStore);
            this.layoutControl4.Controls.Add(this.txtRefNo);
            this.layoutControl4.Controls.Add(this.btnSaveAndForward);
            this.layoutControl4.Controls.Add(this.txtContactPerson);
            this.layoutControl4.Controls.Add(this.btnCancelOne);
            this.layoutControl4.Controls.Add(this.txtItemName);
            this.layoutControl4.Controls.Add(this.gridItemsChoice);
            this.layoutControl4.Controls.Add(this.orderGrid);
            this.layoutControl4.Controls.Add(this.lkCategoires);
            this.layoutControl4.Controls.Add(this.lkForHub);
            this.layoutControl4.Dock = System.Windows.Forms.DockStyle.Fill;
            this.layoutControl4.Location = new System.Drawing.Point(0, 0);
            this.layoutControl4.Name = "layoutControl4";
            this.layoutControl4.OptionsCustomizationForm.DesignTimeCustomizationFormPositionAndSize = new System.Drawing.Rectangle(243, 227, 514, 350);
            this.layoutControl4.OptionsView.ShareLookAndFeelWithChildren = false;
            this.layoutControl4.Root = this.layoutControlGroup14;
            this.layoutControl4.Size = new System.Drawing.Size(1123, 575);
            this.layoutControl4.TabIndex = 32;
            this.layoutControl4.Text = "layoutControl4";
            //
            // repositoryItemDateEdit3
            //
            this.repositoryItemDateEdit3.AutoHeight = false;
            this.repositoryItemDateEdit3.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.repositoryItemDateEdit3.EditFormat.FormatString = "mm-DD-YYYY";
            this.repositoryItemDateEdit3.EditFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
            this.repositoryItemDateEdit3.ExportMode = DevExpress.XtraEditors.Repository.ExportMode.DisplayText;
            this.repositoryItemDateEdit3.Name = "repositoryItemDateEdit3";
            this.repositoryItemDateEdit3.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton()});
            //
            // repositoryItemButtonEdit4
            //
            this.repositoryItemButtonEdit4.AutoHeight = false;
            this.repositoryItemButtonEdit4.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Plus)});
            this.repositoryItemButtonEdit4.Name = "repositoryItemButtonEdit4";
            this.repositoryItemButtonEdit4.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.HideTextEditor;
            //
            // HubToHubTransfer
            //
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(1123, 575);
            this.Controls.Add(this.layoutControl4);
            this.Name = "HubToHubTransfer";
            this.Text = "Hub To Hub Transfer";
            this.Load += new System.EventHandler(this.HubToHubTransfer_Load);
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem13)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.txtRefNo.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutForFacility)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.lkForHub.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.txtContactPerson.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem52)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.lkCategoires.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem31)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.txtItemName.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem8)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem18)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.orderGrid)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridOrderView)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.ExpireDateEditor.VistaTimeProperties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.ExpireDateEditor)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEdit2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemPacks)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridRecieveView1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup14)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem29)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridItemsChoice)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridItemChoiceView)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem12)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem5)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem4)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem3)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem3)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.lkAccountType.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridLookUpEdit1View)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutFromStore)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.lkFromStore.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup10)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem10)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.printOrder.ImageCollection)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.printingSystem1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.printableComponentLink1.ImageCollection)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem23)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem22)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.popupMenu1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup9)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup8)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem15)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.boxSizedList)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemSpinEdit1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutControl4)).EndInit();
            this.layoutControl4.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit3.VistaTimeProperties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit3)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEdit4)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.dxValidation1stTab)).EndInit();
            this.ResumeLayout(false);
        }
コード例 #28
0
 /// <summary> 
 /// �����֧������ķ��� - ��Ҫ
 /// ʹ�ô���༭���޸Ĵ˷��������ݡ�
 /// </summary>
 private void InitializeComponent()
 {
     this.gridControl = new DevExpress.XtraGrid.GridControl();
     this.bandedGridView1 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridView();
     this.gridBand3 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.colAreaName = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridBand4 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.colTitle = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridBand5 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.colL1 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridBand6 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.colL2 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridBand14 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.colL3 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridBand7 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.colL4 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridBand13 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.colL5 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridBand8 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.colL6 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridBand1 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.gridBand9 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.ColL11 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridBand10 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.ColL12 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridBand2 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.gridBand11 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.colL7 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridBand12 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.colL8 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridBand15 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.colL9 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridBand16 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.colL10 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridBand17 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.colS1 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridBand18 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.colS2 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridBand19 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.colS3 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridBand20 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.colS4 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridBand21 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.colS5 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridBand22 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.colS6 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridBand44 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.colS7 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridBand45 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.colS8 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridBand46 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.colS9 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridBand47 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.colS10 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.bandedGridColumn23 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.bandedGridColumn1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.bandedGridColumn2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.bandedGridColumn3 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.bandedGridColumn4 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.bandedGridColumn5 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.bandedGridColumn6 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.bandedGridColumn7 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.bandedGridColumn8 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.bandedGridColumn9 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.bandedGridColumn10 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.bandedGridColumn11 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.bandedGridColumn12 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.bandedGridColumn13 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.bandedGridColumn14 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.bandedGridColumn15 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.bandedGridColumn16 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.bandedGridColumn17 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.bandedGridColumn18 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.bandedGridColumn19 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.bandedGridColumn20 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.bandedGridColumn21 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.bandedGridColumn22 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridBand23 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.gridBand24 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.gridBand25 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.gridBand26 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.gridBand27 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.gridBand28 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.gridBand29 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.gridBand30 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.gridBand31 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.gridBand32 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.gridBand33 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.gridBand34 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.gridBand35 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.gridBand36 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.gridBand37 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.gridBand38 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.gridBand39 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.gridBand40 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.gridBand41 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.gridBand42 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.gridBand43 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     ((System.ComponentModel.ISupportInitialize)(this.gridControl)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.bandedGridView1)).BeginInit();
     this.SuspendLayout();
     //
     // gridControl
     //
     this.gridControl.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gridControl.EmbeddedNavigator.Buttons.Append.Visible = false;
     this.gridControl.EmbeddedNavigator.Buttons.CancelEdit.Visible = false;
     this.gridControl.EmbeddedNavigator.Buttons.Edit.Visible = false;
     this.gridControl.EmbeddedNavigator.Buttons.EndEdit.Visible = false;
     this.gridControl.EmbeddedNavigator.Buttons.Remove.Visible = false;
     this.gridControl.EmbeddedNavigator.Name = "";
     this.gridControl.Location = new System.Drawing.Point(0, 0);
     this.gridControl.MainView = this.bandedGridView1;
     this.gridControl.Name = "gridControl";
     this.gridControl.Size = new System.Drawing.Size(940, 319);
     this.gridControl.TabIndex = 0;
     this.gridControl.UseEmbeddedNavigator = true;
     this.gridControl.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.bandedGridView1});
     this.gridControl.DoubleClick += new System.EventHandler(this.bandedGridView1_DoubleClick);
     //
     // bandedGridView1
     //
     this.bandedGridView1.AppearancePrint.HeaderPanel.Options.UseTextOptions = true;
     this.bandedGridView1.AppearancePrint.HeaderPanel.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.bandedGridView1.Bands.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.GridBand[] {
     this.gridBand3,
     this.gridBand4,
     this.gridBand5,
     this.gridBand6,
     this.gridBand14,
     this.gridBand7,
     this.gridBand13,
     this.gridBand8,
     this.gridBand1,
     this.gridBand2,
     this.gridBand15,
     this.gridBand16,
     this.gridBand17,
     this.gridBand18,
     this.gridBand19,
     this.gridBand20,
     this.gridBand21,
     this.gridBand22,
     this.gridBand44,
     this.gridBand45,
     this.gridBand46,
     this.gridBand47});
     this.bandedGridView1.Columns.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn[] {
     this.colAreaName,
     this.colTitle,
     this.colL1,
     this.colL2,
     this.colL3,
     this.colL4,
     this.colL5,
     this.colL6,
     this.colL7,
     this.colL8,
     this.ColL11,
     this.ColL12,
     this.colL9,
     this.colL10,
     this.colS1,
     this.colS2,
     this.colS3,
     this.colS4,
     this.colS5,
     this.colS6,
     this.colS7,
     this.colS8,
     this.colS9,
     this.colS10,
     this.bandedGridColumn23});
     this.bandedGridView1.GridControl = this.gridControl;
     this.bandedGridView1.GroupPanelText = "���վ�ɿ������";
     this.bandedGridView1.Name = "bandedGridView1";
     this.bandedGridView1.OptionsBehavior.Editable = false;
     this.bandedGridView1.OptionsCustomization.AllowFilter = false;
     this.bandedGridView1.OptionsPrint.PrintHeader = false;
     this.bandedGridView1.OptionsPrint.UsePrintStyles = true;
     this.bandedGridView1.OptionsView.ColumnAutoWidth = false;
     this.bandedGridView1.OptionsView.ShowColumnHeaders = false;
     this.bandedGridView1.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.bandedGridColumn23, DevExpress.Data.ColumnSortOrder.Ascending)});
     this.bandedGridView1.CustomDrawCell += new DevExpress.XtraGrid.Views.Base.RowCellCustomDrawEventHandler(this.bandedGridView1_CustomDrawCell);
     //
     // gridBand3
     //
     this.gridBand3.Caption = "����";
     this.gridBand3.Columns.Add(this.colAreaName);
     this.gridBand3.MinWidth = 20;
     this.gridBand3.Name = "gridBand3";
     this.gridBand3.Width = 67;
     //
     // colAreaName
     //
     this.colAreaName.AppearanceHeader.Options.UseTextOptions = true;
     this.colAreaName.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colAreaName.Caption = "����";
     this.colAreaName.FieldName = "AreaName";
     this.colAreaName.Name = "colAreaName";
     this.colAreaName.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
     this.colAreaName.Visible = true;
     this.colAreaName.Width = 67;
     //
     // gridBand4
     //
     this.gridBand4.Caption = "���վ����";
     this.gridBand4.Columns.Add(this.colTitle);
     this.gridBand4.MinWidth = 20;
     this.gridBand4.Name = "gridBand4";
     this.gridBand4.Width = 84;
     //
     // colTitle
     //
     this.colTitle.AppearanceHeader.Options.UseTextOptions = true;
     this.colTitle.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colTitle.Caption = "���վ����";
     this.colTitle.FieldName = "Title";
     this.colTitle.Name = "colTitle";
     this.colTitle.Visible = true;
     this.colTitle.Width = 84;
     //
     // gridBand5
     //
     this.gridBand5.Caption = "��ѹ�ȼ�";
     this.gridBand5.Columns.Add(this.colL1);
     this.gridBand5.MinWidth = 20;
     this.gridBand5.Name = "gridBand5";
     this.gridBand5.Width = 78;
     //
     // colL1
     //
     this.colL1.AppearanceHeader.Options.UseTextOptions = true;
     this.colL1.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colL1.Caption = "��ѹ�ȼ�";
     this.colL1.FieldName = "L1";
     this.colL1.Name = "colL1";
     this.colL1.Visible = true;
     this.colL1.Width = 78;
     //
     // gridBand6
     //
     this.gridBand6.Caption = "����(MVA)";
     this.gridBand6.Columns.Add(this.colL2);
     this.gridBand6.MinWidth = 20;
     this.gridBand6.Name = "gridBand6";
     this.gridBand6.Width = 76;
     //
     // colL2
     //
     this.colL2.AppearanceHeader.Options.UseTextOptions = true;
     this.colL2.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colL2.Caption = "����(MVA)";
     this.colL2.DisplayFormat.FormatString = "n2";
     this.colL2.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.colL2.FieldName = "L2";
     this.colL2.Name = "colL2";
     this.colL2.Visible = true;
     this.colL2.Width = 76;
     //
     // gridBand14
     //
     this.gridBand14.Caption = "����̨��(̨)";
     this.gridBand14.Columns.Add(this.colL3);
     this.gridBand14.MinWidth = 20;
     this.gridBand14.Name = "gridBand14";
     this.gridBand14.Width = 97;
     //
     // colL3
     //
     this.colL3.AppearanceHeader.Options.UseTextOptions = true;
     this.colL3.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colL3.Caption = "����̨��(̨)";
     this.colL3.FieldName = "L3";
     this.colL3.Name = "colL3";
     this.colL3.Visible = true;
     this.colL3.Width = 97;
     //
     // gridBand7
     //
     this.gridBand7.Caption = "��������";
     this.gridBand7.Columns.Add(this.colL4);
     this.gridBand7.MinWidth = 20;
     this.gridBand7.Name = "gridBand7";
     this.gridBand7.Width = 92;
     //
     // colL4
     //
     this.colL4.AppearanceHeader.Options.UseTextOptions = true;
     this.colL4.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colL4.Caption = "��������";
     this.colL4.FieldName = "L4";
     this.colL4.Name = "colL4";
     this.colL4.Visible = true;
     this.colL4.Width = 92;
     //
     // gridBand13
     //
     this.gridBand13.Caption = "�޹�������(Mvar)";
     this.gridBand13.Columns.Add(this.colL5);
     this.gridBand13.MinWidth = 20;
     this.gridBand13.Name = "gridBand13";
     this.gridBand13.Width = 79;
     //
     // colL5
     //
     this.colL5.AppearanceHeader.Options.UseTextOptions = true;
     this.colL5.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colL5.Caption = "�޹�������(Mvar)";
     this.colL5.FieldName = "L5";
     this.colL5.Name = "colL5";
     this.colL5.Visible = true;
     this.colL5.Width = 79;
     //
     // gridBand8
     //
     this.gridBand8.Caption = "�޹�������������(Mvar)";
     this.gridBand8.Columns.Add(this.colL6);
     this.gridBand8.MinWidth = 20;
     this.gridBand8.Name = "gridBand8";
     this.gridBand8.Width = 84;
     //
     // colL6
     //
     this.colL6.AppearanceHeader.Options.UseTextOptions = true;
     this.colL6.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colL6.Caption = "�޹�������������(Mvar)";
     this.colL6.FieldName = "L6";
     this.colL6.Name = "colL6";
     this.colL6.Visible = true;
     this.colL6.Width = 84;
     //
     // gridBand1
     //
     this.gridBand1.Caption = "�ѳ��߼������";
     this.gridBand1.Children.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.GridBand[] {
     this.gridBand9,
     this.gridBand10});
     this.gridBand1.MinWidth = 20;
     this.gridBand1.Name = "gridBand1";
     this.gridBand1.Width = 114;
     //
     // gridBand9
     //
     this.gridBand9.Caption = "һ��";
     this.gridBand9.Columns.Add(this.ColL11);
     this.gridBand9.Name = "gridBand9";
     this.gridBand9.Width = 54;
     //
     // ColL11
     //
     this.ColL11.Caption = "�ɳ��߼������(һ��)";
     this.ColL11.FieldName = "L11";
     this.ColL11.Name = "ColL11";
     this.ColL11.Visible = true;
     this.ColL11.Width = 54;
     //
     // gridBand10
     //
     this.gridBand10.Caption = "����";
     this.gridBand10.Columns.Add(this.ColL12);
     this.gridBand10.Name = "gridBand10";
     this.gridBand10.Width = 60;
     //
     // ColL12
     //
     this.ColL12.Caption = "�ɳ��߼������(����)";
     this.ColL12.FieldName = "L12";
     this.ColL12.Name = "ColL12";
     this.ColL12.Visible = true;
     this.ColL12.Width = 60;
     //
     // gridBand2
     //
     this.gridBand2.Caption = "���ó��߼������";
     this.gridBand2.Children.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.GridBand[] {
     this.gridBand11,
     this.gridBand12});
     this.gridBand2.MinWidth = 20;
     this.gridBand2.Name = "gridBand2";
     this.gridBand2.Width = 122;
     //
     // gridBand11
     //
     this.gridBand11.Caption = "һ��";
     this.gridBand11.Columns.Add(this.colL7);
     this.gridBand11.Name = "gridBand11";
     this.gridBand11.Width = 58;
     //
     // colL7
     //
     this.colL7.AppearanceHeader.Options.UseTextOptions = true;
     this.colL7.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colL7.Caption = "���ó��߼����(һ��)";
     this.colL7.FieldName = "L7";
     this.colL7.Name = "colL7";
     this.colL7.Visible = true;
     this.colL7.Width = 58;
     //
     // gridBand12
     //
     this.gridBand12.Caption = "����";
     this.gridBand12.Columns.Add(this.colL8);
     this.gridBand12.Name = "gridBand12";
     this.gridBand12.Width = 64;
     //
     // colL8
     //
     this.colL8.AppearanceHeader.Options.UseTextOptions = true;
     this.colL8.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colL8.Caption = "���ó��߼����(����)";
     this.colL8.FieldName = "L8";
     this.colL8.Name = "colL8";
     this.colL8.Visible = true;
     this.colL8.Width = 64;
     //
     // gridBand15
     //
     this.gridBand15.Caption = "��󸺺�(MW)";
     this.gridBand15.Columns.Add(this.colL9);
     this.gridBand15.MinWidth = 20;
     this.gridBand15.Name = "gridBand15";
     this.gridBand15.Width = 93;
     //
     // colL9
     //
     this.colL9.AppearanceHeader.Options.UseTextOptions = true;
     this.colL9.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colL9.Caption = "��󸺺�(MW)";
     this.colL9.DisplayFormat.FormatString = "n2";
     this.colL9.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.colL9.FieldName = "L9";
     this.colL9.Name = "colL9";
     this.colL9.Visible = true;
     this.colL9.Width = 93;
     //
     // gridBand16
     //
     this.gridBand16.Caption = "������(%)";
     this.gridBand16.Columns.Add(this.colL10);
     this.gridBand16.MinWidth = 20;
     this.gridBand16.Name = "gridBand16";
     this.gridBand16.Width = 78;
     //
     // colL10
     //
     this.colL10.AppearanceHeader.Options.UseTextOptions = true;
     this.colL10.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colL10.Caption = "������(%)";
     this.colL10.DisplayFormat.FormatString = "n2";
     this.colL10.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.colL10.FieldName = "L10";
     this.colL10.Name = "colL10";
     this.colL10.Visible = true;
     this.colL10.Width = 78;
     //
     // gridBand17
     //
     this.gridBand17.Caption = "gridBand1";
     this.gridBand17.Columns.Add(this.colS1);
     this.gridBand17.Name = "gridBand17";
     this.gridBand17.Width = 75;
     //
     // colS1
     //
     this.colS1.AppearanceHeader.Options.UseTextOptions = true;
     this.colS1.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colS1.FieldName = "S1";
     this.colS1.Name = "colS1";
     this.colS1.Visible = true;
     //
     // gridBand18
     //
     this.gridBand18.Caption = "gridBand2";
     this.gridBand18.Columns.Add(this.colS2);
     this.gridBand18.Name = "gridBand18";
     this.gridBand18.Width = 75;
     //
     // colS2
     //
     this.colS2.AppearanceHeader.Options.UseTextOptions = true;
     this.colS2.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colS2.FieldName = "S2";
     this.colS2.Name = "colS2";
     this.colS2.Visible = true;
     //
     // gridBand19
     //
     this.gridBand19.Caption = "gridBand3";
     this.gridBand19.Columns.Add(this.colS3);
     this.gridBand19.Name = "gridBand19";
     this.gridBand19.Width = 59;
     //
     // colS3
     //
     this.colS3.AppearanceHeader.Options.UseTextOptions = true;
     this.colS3.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colS3.FieldName = "S3";
     this.colS3.Name = "colS3";
     this.colS3.Visible = true;
     this.colS3.Width = 59;
     //
     // gridBand20
     //
     this.gridBand20.Caption = "gridBand4";
     this.gridBand20.Columns.Add(this.colS4);
     this.gridBand20.Name = "gridBand20";
     this.gridBand20.Width = 57;
     //
     // colS4
     //
     this.colS4.AppearanceHeader.Options.UseTextOptions = true;
     this.colS4.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colS4.FieldName = "S4";
     this.colS4.Name = "colS4";
     this.colS4.Visible = true;
     this.colS4.Width = 57;
     //
     // gridBand21
     //
     this.gridBand21.Caption = "gridBand5";
     this.gridBand21.Columns.Add(this.colS5);
     this.gridBand21.Name = "gridBand21";
     this.gridBand21.Width = 75;
     //
     // colS5
     //
     this.colS5.AppearanceHeader.Options.UseTextOptions = true;
     this.colS5.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colS5.FieldName = "S5";
     this.colS5.Name = "colS5";
     this.colS5.Visible = true;
     //
     // gridBand22
     //
     this.gridBand22.Caption = "gridBand6";
     this.gridBand22.Columns.Add(this.colS6);
     this.gridBand22.Name = "gridBand22";
     this.gridBand22.Width = 75;
     //
     // colS6
     //
     this.colS6.AppearanceHeader.Options.UseTextOptions = true;
     this.colS6.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colS6.FieldName = "S6";
     this.colS6.Name = "colS6";
     this.colS6.Visible = true;
     //
     // gridBand44
     //
     this.gridBand44.Caption = "gridBand7";
     this.gridBand44.Columns.Add(this.colS7);
     this.gridBand44.Name = "gridBand44";
     this.gridBand44.Width = 75;
     //
     // colS7
     //
     this.colS7.AppearanceHeader.Options.UseTextOptions = true;
     this.colS7.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colS7.FieldName = "S7";
     this.colS7.Name = "colS7";
     this.colS7.Visible = true;
     //
     // gridBand45
     //
     this.gridBand45.Caption = "gridBand8";
     this.gridBand45.Columns.Add(this.colS8);
     this.gridBand45.Name = "gridBand45";
     this.gridBand45.Width = 75;
     //
     // colS8
     //
     this.colS8.AppearanceHeader.Options.UseTextOptions = true;
     this.colS8.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colS8.FieldName = "S8";
     this.colS8.Name = "colS8";
     this.colS8.Visible = true;
     //
     // gridBand46
     //
     this.gridBand46.Caption = "gridBand9";
     this.gridBand46.Columns.Add(this.colS9);
     this.gridBand46.Name = "gridBand46";
     this.gridBand46.Width = 75;
     //
     // colS9
     //
     this.colS9.AppearanceHeader.Options.UseTextOptions = true;
     this.colS9.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colS9.FieldName = "S9";
     this.colS9.Name = "colS9";
     this.colS9.Visible = true;
     //
     // gridBand47
     //
     this.gridBand47.Caption = "gridBand10";
     this.gridBand47.Columns.Add(this.colS10);
     this.gridBand47.Name = "gridBand47";
     this.gridBand47.Width = 75;
     //
     // colS10
     //
     this.colS10.AppearanceHeader.Options.UseTextOptions = true;
     this.colS10.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colS10.FieldName = "S10";
     this.colS10.Name = "colS10";
     this.colS10.Visible = true;
     //
     // bandedGridColumn23
     //
     this.bandedGridColumn23.Caption = "bandedGridColumn23";
     this.bandedGridColumn23.FieldName = "CreateDate";
     this.bandedGridColumn23.Name = "bandedGridColumn23";
     //
     // bandedGridColumn1
     //
     this.bandedGridColumn1.Name = "bandedGridColumn1";
     //
     // bandedGridColumn2
     //
     this.bandedGridColumn2.Name = "bandedGridColumn2";
     //
     // bandedGridColumn3
     //
     this.bandedGridColumn3.Name = "bandedGridColumn3";
     //
     // bandedGridColumn4
     //
     this.bandedGridColumn4.Name = "bandedGridColumn4";
     //
     // bandedGridColumn5
     //
     this.bandedGridColumn5.Name = "bandedGridColumn5";
     //
     // bandedGridColumn6
     //
     this.bandedGridColumn6.Name = "bandedGridColumn6";
     //
     // bandedGridColumn7
     //
     this.bandedGridColumn7.Name = "bandedGridColumn7";
     //
     // bandedGridColumn8
     //
     this.bandedGridColumn8.Name = "bandedGridColumn8";
     //
     // bandedGridColumn9
     //
     this.bandedGridColumn9.Name = "bandedGridColumn9";
     //
     // bandedGridColumn10
     //
     this.bandedGridColumn10.Name = "bandedGridColumn10";
     //
     // bandedGridColumn11
     //
     this.bandedGridColumn11.Name = "bandedGridColumn11";
     //
     // bandedGridColumn12
     //
     this.bandedGridColumn12.Name = "bandedGridColumn12";
     //
     // bandedGridColumn13
     //
     this.bandedGridColumn13.Name = "bandedGridColumn13";
     //
     // bandedGridColumn14
     //
     this.bandedGridColumn14.Name = "bandedGridColumn14";
     //
     // bandedGridColumn15
     //
     this.bandedGridColumn15.Name = "bandedGridColumn15";
     //
     // bandedGridColumn16
     //
     this.bandedGridColumn16.Name = "bandedGridColumn16";
     //
     // bandedGridColumn17
     //
     this.bandedGridColumn17.Name = "bandedGridColumn17";
     //
     // bandedGridColumn18
     //
     this.bandedGridColumn18.Name = "bandedGridColumn18";
     //
     // bandedGridColumn19
     //
     this.bandedGridColumn19.Name = "bandedGridColumn19";
     //
     // bandedGridColumn20
     //
     this.bandedGridColumn20.Name = "bandedGridColumn20";
     //
     // bandedGridColumn21
     //
     this.bandedGridColumn21.Name = "bandedGridColumn21";
     //
     // bandedGridColumn22
     //
     this.bandedGridColumn22.Name = "bandedGridColumn22";
     //
     // gridBand23
     //
     this.gridBand23.Caption = "gridBand2";
     this.gridBand23.Name = "gridBand23";
     //
     // gridBand24
     //
     this.gridBand24.Caption = "gridBand3";
     this.gridBand24.Name = "gridBand24";
     //
     // gridBand25
     //
     this.gridBand25.Caption = "gridBand4";
     this.gridBand25.Name = "gridBand25";
     //
     // gridBand26
     //
     this.gridBand26.Caption = "gridBand5";
     this.gridBand26.Name = "gridBand26";
     //
     // gridBand27
     //
     this.gridBand27.Caption = "gridBand6";
     this.gridBand27.Name = "gridBand27";
     //
     // gridBand28
     //
     this.gridBand28.Caption = "gridBand7";
     this.gridBand28.Name = "gridBand28";
     //
     // gridBand29
     //
     this.gridBand29.Caption = "gridBand8";
     this.gridBand29.Name = "gridBand29";
     //
     // gridBand30
     //
     this.gridBand30.Caption = "gridBand9";
     this.gridBand30.Name = "gridBand30";
     //
     // gridBand31
     //
     this.gridBand31.Caption = "gridBand10";
     this.gridBand31.Name = "gridBand31";
     //
     // gridBand32
     //
     this.gridBand32.Caption = "gridBand11";
     this.gridBand32.Name = "gridBand32";
     //
     // gridBand33
     //
     this.gridBand33.Caption = "gridBand12";
     this.gridBand33.Name = "gridBand33";
     //
     // gridBand34
     //
     this.gridBand34.Caption = "gridBand13";
     this.gridBand34.Name = "gridBand34";
     //
     // gridBand35
     //
     this.gridBand35.Caption = "gridBand14";
     this.gridBand35.Name = "gridBand35";
     //
     // gridBand36
     //
     this.gridBand36.Caption = "gridBand15";
     this.gridBand36.Name = "gridBand36";
     //
     // gridBand37
     //
     this.gridBand37.Caption = "gridBand16";
     this.gridBand37.Name = "gridBand37";
     //
     // gridBand38
     //
     this.gridBand38.Caption = "gridBand17";
     this.gridBand38.Name = "gridBand38";
     //
     // gridBand39
     //
     this.gridBand39.Caption = "gridBand18";
     this.gridBand39.Name = "gridBand39";
     //
     // gridBand40
     //
     this.gridBand40.Caption = "gridBand19";
     this.gridBand40.Name = "gridBand40";
     //
     // gridBand41
     //
     this.gridBand41.Caption = "gridBand20";
     this.gridBand41.Name = "gridBand41";
     //
     // gridBand42
     //
     this.gridBand42.Caption = "gridBand21";
     this.gridBand42.Name = "gridBand42";
     //
     // gridBand43
     //
     this.gridBand43.Caption = "gridBand22";
     this.gridBand43.Name = "gridBand43";
     //
     // CtrlSubstation_Info
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.gridControl);
     this.Name = "CtrlSubstation_Info";
     this.Size = new System.Drawing.Size(940, 319);
     ((System.ComponentModel.ISupportInitialize)(this.gridControl)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.bandedGridView1)).EndInit();
     this.ResumeLayout(false);
 }
コード例 #29
0
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        protected void InitializeComponent()
        {
            this.components = new System.ComponentModel.Container();
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmListCanhBaoQL));
            this.gridControlDetail = new DevExpress.XtraGrid.GridControl();
            this.gridViewDetail = new DevExpress.XtraGrid.Views.Grid.PLGridView();
            this.barManager1 = new DevExpress.XtraBars.BarManager(this.components);
            this.MainBar = new DevExpress.XtraBars.Bar();
            this.barButtonItemAdd = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItemXem = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItemUpdate = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItemPrint = new DevExpress.XtraBars.BarButtonItem();
            this.popupMenu1 = new DevExpress.XtraBars.PopupMenu(this.components);
            this.barButtonItem4 = new DevExpress.XtraBars.BarButtonItem();
            this.barSubItemInNhan = new DevExpress.XtraBars.BarSubItem();
            this.barButtonItemInBeatcamTrong = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItemInBeatacamNgoai = new DevExpress.XtraBars.BarButtonItem();
            this.barSubItemExort = new DevExpress.XtraBars.BarSubItem();
            this.barButtonItemExcel2007 = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItemExcel2003 = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItemPDF = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItemHTML = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItemRTF = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItemCommit = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItemNoCommit = new DevExpress.XtraBars.BarButtonItem();
            this.barSubItem1 = new DevExpress.XtraBars.BarSubItem();
            this.barButtonItemSearch = new DevExpress.XtraBars.BarButtonItem();
            this.popupMenuFilter = new DevExpress.XtraBars.PopupMenu(this.components);
            this.barCheckItemFilter = new DevExpress.XtraBars.BarCheckItem();
            this.barButtonItemClose = new DevExpress.XtraBars.BarButtonItem();
            this.barSubItemCotHienThi = new DevExpress.XtraBars.BarSubItem();
            this.barDockControlTop = new DevExpress.XtraBars.BarDockControl();
            this.barDockControlBottom = new DevExpress.XtraBars.BarDockControl();
            this.barDockControlLeft = new DevExpress.XtraBars.BarDockControl();
            this.barDockControlRight = new DevExpress.XtraBars.BarDockControl();
            this.dockManager1 = new DevExpress.XtraBars.Docking.DockManager(this.components);
            this.dockPanel1 = new DevExpress.XtraBars.Docking.DockPanel();
            this.dockPanel1_Container = new DevExpress.XtraBars.Docking.ControlContainer();
            this.popupControlContainerFilter = new DevExpress.XtraBars.PopupControlContainer(this.components);
            this.splitContainerControl1 = new DevExpress.XtraEditors.SplitContainerControl();
            this.barButtonItemDelete = new DevExpress.XtraBars.BarButtonItem();
            this.barStaticItem1 = new DevExpress.XtraBars.BarStaticItem();
            this.barButtonItem1 = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItem2 = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItem3 = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItemIn = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItemXemTruoc = new DevExpress.XtraBars.BarButtonItem();
            this.xtraTabControlDetail = new DevExpress.XtraTab.XtraTabControl();
            this.xtraTabPageDetail = new DevExpress.XtraTab.XtraTabPage();
            this.pageBanQuyen = new DevExpress.XtraTab.XtraTabPage();
            this.gridControlMaster = new DevExpress.XtraGrid.GridControl();
            this.gridViewMaster = new DevExpress.XtraGrid.Views.BandedGrid.PLBandedGridView();
            this.gridBandThongTinChinh = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
            this.Col_CT_MaCT = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_CT_NgayAWB = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_CT_Category = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_CT_NoiDung = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_CT_TenGoc = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_CT_TietMuc = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_CT_DaoDien = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_CT_DienVien = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_CT_TomTat = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_CT_DoiTuongKhanGia = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_CT_KHPL = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_CT_KHXK = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_CT_TinhTrangBang = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_CT_TuKhoa = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_CT_ThanhLy = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_CT_GhiChu = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_CT_Photos = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_CT_Ranking = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_CT_Script = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_CT_TrailerGoc = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_CT_LoaiCB = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_CT_NgayLap = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_CT_NguoiLap = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_CT_CongT = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.gridBandNguonGoc = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
            this.gridBand1 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
            this.Col_CT_PhongBan = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_CT_NamSX = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_CT_Nuoc = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_CT_DonViCungCap = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_CT_DonViSoHuu = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_CT_KenhHanCheBan = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_CT_ThongTinBan = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.gridBand2 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
            this.Col_CT_BanQuyenThuoc = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_CT_BanQuyenDIDStart = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_CT_BanQuyenDIDEnd = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_CT_BanQuyenDTNNStart = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_CT_BanQuyenDTNNEnd = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_CT_BanQuyenHTV = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.gridBandThongTinPhatSong = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
            this.Col_CT_MuaKem = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_CT_PhatSongChinh = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_CT_PhatSongLai = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_CT_PhatSongKhac = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_CT_TongSoRun = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_CT_SoLanPhat = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_CT_SoRunConLai = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_CT_Release = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.gridBandThongTinBan = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
            this.pageSoRun = new DevExpress.XtraTab.XtraTabPage();
            this.gridControlSoRun = new DevExpress.XtraGrid.GridControl();
            this.gridViewSoRun = new DevExpress.XtraGrid.Views.BandedGrid.PLBandedGridView();
            this.gridBand3 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
            this.Col_RUN_MaCT = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_RUN_NgayAWB = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_RUN_Category = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_RUN_TenCT = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_RUN_TenGoc = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_RUN_TietMuc = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_RUN_DaoDien = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_RUN_DienVien = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_RUN_TomTat = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_RUN_DoiTuongKG = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_RUN_KHPL = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_RUN_KHXK = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_RUN_TinhTrangCT = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_RUN_TuKhoa = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_RUN_ThanhLy = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_RUN_GhiChu = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_RUN_Photos = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_RUN_Ranking = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_RUN_Script = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_RUN_TrailerGoc = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_RUN_LoaiCB = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_RUN_NguoiLap = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_RUN_NgayLap = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_RUN_PhongBan = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_RUN_CongTy = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.gridBand4 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
            this.gridBand5 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
            this.Col_RUN_NamSX = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_RUN_NuocSX = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_RUN_DVCungCap = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_RUN_DonViSoHuu = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_RUN_KenhHanCheBan = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_RUN_ThongTinBan = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.gridBand6 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
            this.Col_RUN_BanQuyenThuoc = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_RUN_BanQuyenDTTNStart = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_RUN_DTTNEnd = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_RUN_DTNNStart = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_RUN_DTNNEnd = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_RUN_BanQuyenHTV = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.gridBand7 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
            this.Col_RUN_MuaKem = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_RUN_ThoiGianPSChinh = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_RUN_ThoiGianPSLai = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_RUN_ThoiGianPSKhac = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_RUN_TongSoRun = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_RUN_SoRunDaPhat = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_RUN_SoRunConLai = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_RUN_Release = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.gridBand8 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
            this.pageMuonTra = new DevExpress.XtraTab.XtraTabPage();
            this.gridControlMuonTra = new DevExpress.XtraGrid.GridControl();
            this.gridViewMuonTra = new DevExpress.XtraGrid.Views.BandedGrid.PLBandedGridView();
            this.gridBandChuongTrinh = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
            this.Col_MT_MaPhieu = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_MT_NguoiMuon = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_MT_BoPhanMuon = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_MT_CongTyMuon = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_MT_NgayMuon = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_MT_MucDich = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_MT_NgayTra = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_MT_LoaiCB = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.gridBandPostMaster = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
            this.Col_MT_NguoiTao = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_MT_NgayTao = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_MT_PhongBan = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_MT_CongTy = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.popupMenu2 = new DevExpress.XtraBars.PopupMenu(this.components);
            this.splitContainerControl2 = new DevExpress.XtraEditors.SplitContainerControl();
            this.TreeDes = new DevExpress.XtraTreeList.PLTreeList();
            this.ColDes_Ten = new DevExpress.XtraTreeList.Columns.TreeListColumn();
            this.treeListColumn2 = new DevExpress.XtraTreeList.Columns.TreeListColumn();
            this.ColDes_TenGoc = new DevExpress.XtraTreeList.Columns.TreeListColumn();
            this.ColDes_NuocSX = new DevExpress.XtraTreeList.Columns.TreeListColumn();
            this.ColDes_TietMuc = new DevExpress.XtraTreeList.Columns.TreeListColumn();
            this.ColDes_SoTapGoc = new DevExpress.XtraTreeList.Columns.TreeListColumn();
            this.ColDes_LoaiLuuTru = new DevExpress.XtraTreeList.Columns.TreeListColumn();
            this.ColDes_Betacam = new DevExpress.XtraTreeList.Columns.TreeListColumn();
            this.ColDes_File = new DevExpress.XtraTreeList.Columns.TreeListColumn();
            this.ColDes_DVD = new DevExpress.XtraTreeList.Columns.TreeListColumn();
            this.ColDes_Cap = new DevExpress.XtraTreeList.Columns.TreeListColumn();
            this.ColDes_TenPM = new DevExpress.XtraTreeList.Columns.TreeListColumn();
            this.ColDes_TenCT = new DevExpress.XtraTreeList.Columns.TreeListColumn();
            this.ColDes_PhongBan = new DevExpress.XtraTreeList.Columns.TreeListColumn();
            this.ColDes_CongTy = new DevExpress.XtraTreeList.Columns.TreeListColumn();
            this.ColDes_Category = new DevExpress.XtraTreeList.Columns.TreeListColumn();
            ((System.ComponentModel.ISupportInitialize)(this.gridControlDetail)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridViewDetail)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.barManager1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.popupMenu1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.popupMenuFilter)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.dockManager1)).BeginInit();
            this.dockPanel1.SuspendLayout();
            this.dockPanel1_Container.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.popupControlContainerFilter)).BeginInit();
            this.popupControlContainerFilter.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl1)).BeginInit();
            this.splitContainerControl1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.xtraTabControlDetail)).BeginInit();
            this.xtraTabControlDetail.SuspendLayout();
            this.pageBanQuyen.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.gridControlMaster)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridViewMaster)).BeginInit();
            this.pageSoRun.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.gridControlSoRun)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridViewSoRun)).BeginInit();
            this.pageMuonTra.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.gridControlMuonTra)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridViewMuonTra)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.popupMenu2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl2)).BeginInit();
            this.splitContainerControl2.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.TreeDes)).BeginInit();
            this.SuspendLayout();
            //
            // gridControlDetail
            //
            this.gridControlDetail.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("gridControlDetail.BackgroundImage")));
            this.gridControlDetail.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
            this.gridControlDetail.Dock = System.Windows.Forms.DockStyle.Fill;
            this.gridControlDetail.Location = new System.Drawing.Point(0, 0);
            this.gridControlDetail.MainView = this.gridViewDetail;
            this.gridControlDetail.Name = "gridControlDetail";
            this.gridControlDetail.Size = new System.Drawing.Size(17, 28);
            this.gridControlDetail.TabIndex = 9;
            this.gridControlDetail.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
            this.gridViewDetail});
            //
            // gridViewDetail
            //
            this.gridViewDetail.Appearance.HeaderPanel.Options.UseTextOptions = true;
            this.gridViewDetail.Appearance.HeaderPanel.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridViewDetail.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
            this.gridViewDetail.GridControl = this.gridControlDetail;
            this.gridViewDetail.IndicatorWidth = 40;
            this.gridViewDetail.Name = "gridViewDetail";
            this.gridViewDetail.OptionsLayout.Columns.AddNewColumns = false;
            this.gridViewDetail.OptionsNavigation.AutoFocusNewRow = true;
            this.gridViewDetail.OptionsNavigation.EnterMoveNextColumn = true;
            this.gridViewDetail.OptionsPrint.UsePrintStyles = true;
            this.gridViewDetail.OptionsView.ColumnAutoWidth = false;
            this.gridViewDetail.OptionsView.EnableAppearanceEvenRow = true;
            this.gridViewDetail.OptionsView.EnableAppearanceOddRow = true;
            this.gridViewDetail.OptionsView.NewItemRowPosition = DevExpress.XtraGrid.Views.Grid.NewItemRowPosition.Bottom;
            this.gridViewDetail.OptionsView.ShowGroupedColumns = true;
            this.gridViewDetail.OptionsView.ShowGroupPanel = false;
            this.gridViewDetail.OptionsView.ShowViewCaption = true;
            this.gridViewDetail.ViewCaption = "Post/Master (Cấp 2)";
            //
            // barManager1
            //
            this.barManager1.Bars.AddRange(new DevExpress.XtraBars.Bar[] {
            this.MainBar});
            this.barManager1.DockControls.Add(this.barDockControlTop);
            this.barManager1.DockControls.Add(this.barDockControlBottom);
            this.barManager1.DockControls.Add(this.barDockControlLeft);
            this.barManager1.DockControls.Add(this.barDockControlRight);
            this.barManager1.DockManager = this.dockManager1;
            this.barManager1.Form = this;
            this.barManager1.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
            this.barButtonItemAdd,
            this.barButtonItemDelete,
            this.barButtonItemUpdate,
            this.barButtonItemPrint,
            this.barStaticItem1,
            this.barButtonItem1,
            this.barButtonItem2,
            this.barButtonItemCommit,
            this.barButtonItemNoCommit,
            this.barSubItem1,
            this.barButtonItemXem,
            this.barButtonItemSearch,
            this.barButtonItemClose,
            this.barCheckItemFilter,
            this.barButtonItem3,
            this.barButtonItem4,
            this.barSubItemCotHienThi,
            this.barSubItemInNhan,
            this.barButtonItemInBeatcamTrong,
            this.barButtonItemInBeatacamNgoai,
            this.barButtonItemIn,
            this.barButtonItemXemTruoc,
            this.barSubItemExort,
            this.barButtonItemExcel2007,
            this.barButtonItemExcel2003,
            this.barButtonItemPDF,
            this.barButtonItemHTML,
            this.barButtonItemRTF});
            this.barManager1.MaxItemId = 50;
            //
            // MainBar
            //
            this.MainBar.BarName = "MainBar";
            this.MainBar.DockCol = 0;
            this.MainBar.DockRow = 0;
            this.MainBar.DockStyle = DevExpress.XtraBars.BarDockStyle.Top;
            this.MainBar.FloatLocation = new System.Drawing.Point(39, 133);
            this.MainBar.FloatSize = new System.Drawing.Size(72, 73);
            this.MainBar.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemAdd),
            new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemXem),
            new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemUpdate),
            new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemPrint, true),
            new DevExpress.XtraBars.LinkPersistInfo(this.barSubItemInNhan),
            new DevExpress.XtraBars.LinkPersistInfo(this.barSubItemExort),
            new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemCommit, true),
            new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemNoCommit),
            new DevExpress.XtraBars.LinkPersistInfo(this.barSubItem1, true),
            new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemSearch, true),
            new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemClose, true),
            new DevExpress.XtraBars.LinkPersistInfo(this.barSubItemCotHienThi, true)});
            this.MainBar.OptionsBar.AllowQuickCustomization = false;
            this.MainBar.OptionsBar.DrawDragBorder = false;
            this.MainBar.OptionsBar.RotateWhenVertical = false;
            this.MainBar.OptionsBar.UseWholeRow = true;
            this.MainBar.Text = "Custom 1";
            //
            // barButtonItemAdd
            //
            this.barButtonItemAdd.Caption = "Thêm";
            this.barButtonItemAdd.Id = 0;
            this.barButtonItemAdd.Name = "barButtonItemAdd";
            this.barButtonItemAdd.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
            this.barButtonItemAdd.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
            //
            // barButtonItemXem
            //
            this.barButtonItemXem.Caption = "&Xem";
            this.barButtonItemXem.Id = 24;
            this.barButtonItemXem.Name = "barButtonItemXem";
            this.barButtonItemXem.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
            //
            // barButtonItemUpdate
            //
            this.barButtonItemUpdate.Caption = "&Sửa";
            this.barButtonItemUpdate.Id = 2;
            this.barButtonItemUpdate.Name = "barButtonItemUpdate";
            this.barButtonItemUpdate.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
            this.barButtonItemUpdate.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
            //
            // barButtonItemPrint
            //
            this.barButtonItemPrint.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown;
            this.barButtonItemPrint.Caption = "&In";
            this.barButtonItemPrint.DropDownControl = this.popupMenu1;
            this.barButtonItemPrint.Id = 3;
            this.barButtonItemPrint.Name = "barButtonItemPrint";
            this.barButtonItemPrint.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
            //
            // popupMenu1
            //
            this.popupMenu1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem4)});
            this.popupMenu1.Manager = this.barManager1;
            this.popupMenu1.Name = "popupMenu1";
            //
            // barButtonItem4
            //
            this.barButtonItem4.Caption = "Xem trước";
            this.barButtonItem4.Id = 33;
            this.barButtonItem4.Name = "barButtonItem4";
            //
            // barSubItemInNhan
            //
            this.barSubItemInNhan.Caption = "In n&hãn";
            this.barSubItemInNhan.Id = 36;
            this.barSubItemInNhan.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemInBeatcamTrong),
            new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemInBeatacamNgoai)});
            this.barSubItemInNhan.Name = "barSubItemInNhan";
            this.barSubItemInNhan.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
            //
            // barButtonItemInBeatcamTrong
            //
            this.barButtonItemInBeatcamTrong.Caption = "In beatcam t&rong";
            this.barButtonItemInBeatcamTrong.Id = 37;
            this.barButtonItemInBeatcamTrong.Name = "barButtonItemInBeatcamTrong";
            //
            // barButtonItemInBeatacamNgoai
            //
            this.barButtonItemInBeatacamNgoai.Caption = "In betacam n&ngoài";
            this.barButtonItemInBeatacamNgoai.Id = 38;
            this.barButtonItemInBeatacamNgoai.Name = "barButtonItemInBeatacamNgoai";
            //
            // barSubItemExort
            //
            this.barSubItemExort.Caption = "Xuất ra file";
            this.barSubItemExort.Id = 44;
            this.barSubItemExort.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemExcel2007),
            new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemExcel2003),
            new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemPDF),
            new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemHTML),
            new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemRTF)});
            this.barSubItemExort.Name = "barSubItemExort";
            this.barSubItemExort.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;

            //
            // barButtonItemExcel2007
            //
            this.barButtonItemExcel2007.Caption = "Xuất ra file Excel 2007";
            this.barButtonItemExcel2007.Id = 45;
            this.barButtonItemExcel2007.Name = "barButtonItemExcel2007";
            this.barButtonItemExcel2007.Tag = "xlsx";
            this.barButtonItemExcel2007.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItemExport_ItemClick);
            //
            // barButtonItemExcel2003
            //
            this.barButtonItemExcel2003.Caption = "Xuất ra file Excel 97 - 2003";
            this.barButtonItemExcel2003.Id = 46;
            this.barButtonItemExcel2003.Name = "barButtonItemExcel2003";
            this.barButtonItemExcel2003.Tag = "xls";
            this.barButtonItemExcel2003.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItemExport_ItemClick);
            //
            // barButtonItemPDF
            //
            this.barButtonItemPDF.Caption = "Xuất ra file PDF";
            this.barButtonItemPDF.Id = 47;
            this.barButtonItemPDF.Name = "barButtonItemPDF";
            this.barButtonItemPDF.Tag = "pdf";
            this.barButtonItemPDF.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItemExport_ItemClick);
            //
            // barButtonItemHTML
            //
            this.barButtonItemHTML.Caption = "Xuất ra file HTML";
            this.barButtonItemHTML.Id = 48;
            this.barButtonItemHTML.Name = "barButtonItemHTML";
            this.barButtonItemHTML.Tag = "htm";
            this.barButtonItemHTML.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItemExport_ItemClick);
            //
            // barButtonItemRTF
            //
            this.barButtonItemRTF.Caption = "Xuất ra file RTF";
            this.barButtonItemRTF.Id = 49;
            this.barButtonItemRTF.Name = "barButtonItemRTF";
            this.barButtonItemRTF.Tag = "rtf";
            this.barButtonItemRTF.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItemExport_ItemClick);
            //
            // barButtonItemCommit
            //
            this.barButtonItemCommit.Caption = "&Duyệt";
            this.barButtonItemCommit.Id = 17;
            this.barButtonItemCommit.Name = "barButtonItemCommit";
            this.barButtonItemCommit.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
            //
            // barButtonItemNoCommit
            //
            this.barButtonItemNoCommit.Caption = "&Không duyệt";
            this.barButtonItemNoCommit.Id = 18;
            this.barButtonItemNoCommit.Name = "barButtonItemNoCommit";
            this.barButtonItemNoCommit.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
            //
            // barSubItem1
            //
            this.barSubItem1.Caption = "Nghiệp vụ";
            this.barSubItem1.Id = 20;
            this.barSubItem1.Name = "barSubItem1";
            this.barSubItem1.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
            //
            // barButtonItemSearch
            //
            this.barButtonItemSearch.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown;
            this.barButtonItemSearch.Caption = "Tìm kiếm";
            this.barButtonItemSearch.DropDownControl = this.popupMenuFilter;
            this.barButtonItemSearch.Id = 27;
            this.barButtonItemSearch.Name = "barButtonItemSearch";
            this.barButtonItemSearch.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
            //
            // popupMenuFilter
            //
            this.popupMenuFilter.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.barCheckItemFilter)});
            this.popupMenuFilter.Manager = this.barManager1;
            this.popupMenuFilter.Name = "popupMenuFilter";
            //
            // barCheckItemFilter
            //
            this.barCheckItemFilter.Caption = "Điều &kiện lọc";
            this.barCheckItemFilter.Checked = true;
            this.barCheckItemFilter.Id = 29;
            this.barCheckItemFilter.Name = "barCheckItemFilter";
            this.barCheckItemFilter.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
            this.barCheckItemFilter.CheckedChanged += new DevExpress.XtraBars.ItemClickEventHandler(this.barCheckItemFilter_CheckedChanged);
            //
            // barButtonItemClose
            //
            this.barButtonItemClose.Caption = "Đóng";
            this.barButtonItemClose.Id = 28;
            this.barButtonItemClose.Name = "barButtonItemClose";
            this.barButtonItemClose.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
            //
            // barSubItemCotHienThi
            //
            this.barSubItemCotHienThi.Caption = "Chọn cột hiển thị";
            this.barSubItemCotHienThi.Id = 35;
            this.barSubItemCotHienThi.Name = "barSubItemCotHienThi";
            //
            // barDockControlTop
            //
            this.barDockControlTop.Dock = System.Windows.Forms.DockStyle.Top;
            this.barDockControlTop.Location = new System.Drawing.Point(0, 0);
            this.barDockControlTop.Size = new System.Drawing.Size(1028, 24);
            //
            // barDockControlBottom
            //
            this.barDockControlBottom.Dock = System.Windows.Forms.DockStyle.Bottom;
            this.barDockControlBottom.Location = new System.Drawing.Point(0, 545);
            this.barDockControlBottom.Size = new System.Drawing.Size(1028, 0);
            //
            // barDockControlLeft
            //
            this.barDockControlLeft.Dock = System.Windows.Forms.DockStyle.Left;
            this.barDockControlLeft.Location = new System.Drawing.Point(0, 24);
            this.barDockControlLeft.Size = new System.Drawing.Size(0, 521);
            //
            // barDockControlRight
            //
            this.barDockControlRight.Dock = System.Windows.Forms.DockStyle.Right;
            this.barDockControlRight.Location = new System.Drawing.Point(1028, 24);
            this.barDockControlRight.Size = new System.Drawing.Size(0, 521);
            //
            // dockManager1
            //
            this.dockManager1.Form = this;
            this.dockManager1.HiddenPanels.AddRange(new DevExpress.XtraBars.Docking.DockPanel[] {
            this.dockPanel1});
            this.dockManager1.TopZIndexControls.AddRange(new string[] {
            "DevExpress.XtraBars.BarDockControl",
            "DevExpress.XtraBars.StandaloneBarDockControl",
            "System.Windows.Forms.StatusBar",
            "DevExpress.XtraBars.Ribbon.RibbonStatusBar",
            "DevExpress.XtraBars.Ribbon.RibbonControl"});
            //
            // dockPanel1
            //
            this.dockPanel1.Controls.Add(this.dockPanel1_Container);
            this.dockPanel1.Dock = DevExpress.XtraBars.Docking.DockingStyle.Top;
            this.dockPanel1.FloatVertical = true;
            this.dockPanel1.ID = new System.Guid("437240ce-168d-4c05-a0b9-c702ea5e41f7");
            this.dockPanel1.Location = new System.Drawing.Point(0, 24);
            this.dockPanel1.Name = "dockPanel1";
            this.dockPanel1.Options.AllowDockLeft = false;
            this.dockPanel1.Options.AllowDockRight = false;
            this.dockPanel1.OriginalSize = new System.Drawing.Size(200, 83);
            this.dockPanel1.SavedDock = DevExpress.XtraBars.Docking.DockingStyle.Top;
            this.dockPanel1.SavedIndex = 0;
            this.dockPanel1.Size = new System.Drawing.Size(1028, 83);
            this.dockPanel1.Text = "Điều kiện tìm kiếm";
            this.dockPanel1.Visibility = DevExpress.XtraBars.Docking.DockVisibility.Hidden;
            this.dockPanel1.VisibilityChanged += new DevExpress.XtraBars.Docking.VisibilityChangedEventHandler(this.dockPanel1_VisibilityChanged);
            //
            // dockPanel1_Container
            //
            this.dockPanel1_Container.Controls.Add(this.popupControlContainerFilter);
            this.dockPanel1_Container.Location = new System.Drawing.Point(3, 25);
            this.dockPanel1_Container.Name = "dockPanel1_Container";
            this.dockPanel1_Container.Size = new System.Drawing.Size(1022, 55);
            this.dockPanel1_Container.TabIndex = 0;
            //
            // popupControlContainerFilter
            //
            this.popupControlContainerFilter.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
            this.popupControlContainerFilter.Controls.Add(this.splitContainerControl1);
            this.popupControlContainerFilter.Dock = System.Windows.Forms.DockStyle.Fill;
            this.popupControlContainerFilter.Location = new System.Drawing.Point(0, 0);
            this.popupControlContainerFilter.Manager = this.barManager1;
            this.popupControlContainerFilter.Name = "popupControlContainerFilter";
            this.popupControlContainerFilter.Size = new System.Drawing.Size(1022, 55);
            this.popupControlContainerFilter.TabIndex = 5;
            this.popupControlContainerFilter.Visible = false;
            //
            // splitContainerControl1
            //
            this.splitContainerControl1.Location = new System.Drawing.Point(840, 6);
            this.splitContainerControl1.Name = "splitContainerControl1";
            this.splitContainerControl1.Panel1.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
            this.splitContainerControl1.Panel1.AppearanceCaption.Options.UseFont = true;
            this.splitContainerControl1.Panel1.AppearanceCaption.Options.UseTextOptions = true;
            this.splitContainerControl1.Panel1.AppearanceCaption.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.splitContainerControl1.Panel1.Text = "Chương trình";
            this.splitContainerControl1.Panel2.CaptionLocation = DevExpress.Utils.Locations.Left;
            this.splitContainerControl1.Panel2.Controls.Add(this.gridControlDetail);
            this.splitContainerControl1.Panel2.Text = "splitContainerControl1_Panel2";
            this.splitContainerControl1.Size = new System.Drawing.Size(52, 28);
            this.splitContainerControl1.SplitterPosition = 29;
            this.splitContainerControl1.TabIndex = 4;
            this.splitContainerControl1.Text = "splitContainerControl1";
            this.splitContainerControl1.Visible = false;
            //
            // barButtonItemDelete
            //
            this.barButtonItemDelete.Caption = "&Xóa";
            this.barButtonItemDelete.Id = 1;
            this.barButtonItemDelete.Name = "barButtonItemDelete";
            this.barButtonItemDelete.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
            this.barButtonItemDelete.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
            //
            // barStaticItem1
            //
            this.barStaticItem1.AutoSize = DevExpress.XtraBars.BarStaticItemSize.None;
            this.barStaticItem1.Border = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
            this.barStaticItem1.Id = 13;
            this.barStaticItem1.Name = "barStaticItem1";
            this.barStaticItem1.TextAlignment = System.Drawing.StringAlignment.Near;
            this.barStaticItem1.Width = 100;
            //
            // barButtonItem1
            //
            this.barButtonItem1.Caption = "barButtonItem1";
            this.barButtonItem1.Id = 14;
            this.barButtonItem1.Name = "barButtonItem1";
            //
            // barButtonItem2
            //
            this.barButtonItem2.Caption = "barButtonItem2";
            this.barButtonItem2.Id = 15;
            this.barButtonItem2.Name = "barButtonItem2";
            //
            // barButtonItem3
            //
            this.barButtonItem3.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown;
            this.barButtonItem3.Caption = "In";
            this.barButtonItem3.Id = 30;
            this.barButtonItem3.Name = "barButtonItem3";
            //
            // barButtonItemIn
            //
            this.barButtonItemIn.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown;
            this.barButtonItemIn.Caption = "&In";
            this.barButtonItemIn.Id = 41;
            this.barButtonItemIn.Name = "barButtonItemIn";
            this.barButtonItemIn.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
            this.barButtonItemIn.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItemIn_ItemClick);
            //
            // barButtonItemXemTruoc
            //
            this.barButtonItemXemTruoc.Caption = "&Xem trước";
            this.barButtonItemXemTruoc.Id = 42;
            this.barButtonItemXemTruoc.Name = "barButtonItemXemTruoc";
            this.barButtonItemXemTruoc.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
            this.barButtonItemXemTruoc.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItemXemTruoc_ItemClick);
            //
            // xtraTabControlDetail
            //
            this.xtraTabControlDetail.Dock = System.Windows.Forms.DockStyle.Fill;
            this.xtraTabControlDetail.Location = new System.Drawing.Point(0, 24);
            this.xtraTabControlDetail.Name = "xtraTabControlDetail";
            this.xtraTabControlDetail.SelectedTabPage = this.xtraTabPageDetail;
            this.xtraTabControlDetail.Size = new System.Drawing.Size(1028, 521);
            this.xtraTabControlDetail.TabIndex = 11;
            this.xtraTabControlDetail.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
            this.xtraTabPageDetail,
            this.pageBanQuyen,
            this.pageSoRun,
            this.pageMuonTra});
            //
            // xtraTabPageDetail
            //
            this.xtraTabPageDetail.Name = "xtraTabPageDetail";
            this.xtraTabPageDetail.PageVisible = false;
            this.xtraTabPageDetail.Size = new System.Drawing.Size(1021, 492);
            this.xtraTabPageDetail.Text = "Detail";
            //
            // pageBanQuyen
            //
            this.pageBanQuyen.Controls.Add(this.gridControlMaster);
            this.pageBanQuyen.Name = "pageBanQuyen";
            this.pageBanQuyen.Size = new System.Drawing.Size(1021, 492);
            this.pageBanQuyen.Text = "Cảnh báo bản quyền";
            //
            // gridControlMaster
            //
            this.gridControlMaster.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("gridControlMaster.BackgroundImage")));
            this.gridControlMaster.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
            this.gridControlMaster.Dock = System.Windows.Forms.DockStyle.Fill;
            this.gridControlMaster.Location = new System.Drawing.Point(0, 0);
            this.gridControlMaster.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.UltraFlat;
            this.gridControlMaster.MainView = this.gridViewMaster;
            this.gridControlMaster.Name = "gridControlMaster";
            this.gridControlMaster.Size = new System.Drawing.Size(1021, 492);
            this.gridControlMaster.TabIndex = 10;
            this.gridControlMaster.TabStop = false;
            this.gridControlMaster.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
            this.gridViewMaster});
            //
            // gridViewMaster
            //
            this.gridViewMaster.Appearance.GroupPanel.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Inch);
            this.gridViewMaster.Appearance.GroupPanel.Options.UseFont = true;
            this.gridViewMaster.Appearance.HeaderPanel.Options.UseTextOptions = true;
            this.gridViewMaster.Appearance.HeaderPanel.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridViewMaster.Appearance.ViewCaption.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(128)))), ((int)(((byte)(128)))));
            this.gridViewMaster.Appearance.ViewCaption.Options.UseBackColor = true;
            this.gridViewMaster.Bands.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.GridBand[] {
            this.gridBandThongTinChinh,
            this.gridBandNguonGoc,
            this.gridBandThongTinPhatSong,
            this.gridBandThongTinBan});
            this.gridViewMaster.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
            this.gridViewMaster.Columns.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn[] {
            this.Col_CT_MaCT,
            this.Col_CT_NgayAWB,
            this.Col_CT_NgayLap,
            this.Col_CT_NguoiLap,
            this.Col_CT_PhongBan,
            this.Col_CT_NoiDung,
            this.Col_CT_TietMuc,
            this.Col_CT_TenGoc,
            this.Col_CT_DaoDien,
            this.Col_CT_DienVien,
            this.Col_CT_KHPL,
            this.Col_CT_DoiTuongKhanGia,
            this.Col_CT_TuKhoa,
            this.Col_CT_KHXK,
            this.Col_CT_TinhTrangBang,
            this.Col_CT_TomTat,
            this.Col_CT_ThanhLy,
            this.Col_CT_GhiChu,
            this.Col_CT_ThongTinBan,
            this.Col_CT_NamSX,
            this.Col_CT_Nuoc,
            this.Col_CT_DonViCungCap,
            this.Col_CT_DonViSoHuu,
            this.Col_CT_KenhHanCheBan,
            this.Col_CT_PhatSongChinh,
            this.Col_CT_TongSoRun,
            this.Col_CT_SoLanPhat,
            this.Col_CT_SoRunConLai,
            this.Col_CT_Release,
            this.Col_CT_Category,
            this.Col_CT_Ranking,
            this.Col_CT_Script,
            this.Col_CT_Photos,
            this.Col_CT_TrailerGoc,
            this.Col_CT_BanQuyenThuoc,
            this.Col_CT_BanQuyenDIDStart,
            this.Col_CT_BanQuyenDIDEnd,
            this.Col_CT_BanQuyenDTNNStart,
            this.Col_CT_BanQuyenDTNNEnd,
            this.Col_CT_BanQuyenHTV,
            this.Col_CT_MuaKem,
            this.Col_CT_PhatSongKhac,
            this.Col_CT_PhatSongLai,
            this.Col_CT_CongT,
            this.Col_CT_LoaiCB});
            this.gridViewMaster.CustomizationFormBounds = new System.Drawing.Rectangle(747, 292, 215, 205);
            this.gridViewMaster.GridControl = this.gridControlMaster;
            this.gridViewMaster.GroupPanelText = "Các chương trình thỏa điều kiện tìm kiếm";
            this.gridViewMaster.IndicatorWidth = 40;
            this.gridViewMaster.Name = "gridViewMaster";
            this.gridViewMaster.OptionsLayout.Columns.AddNewColumns = false;
            this.gridViewMaster.OptionsNavigation.AutoFocusNewRow = true;
            this.gridViewMaster.OptionsNavigation.EnterMoveNextColumn = true;
            this.gridViewMaster.OptionsPrint.UsePrintStyles = true;
            this.gridViewMaster.OptionsSelection.MultiSelect = true;
            this.gridViewMaster.OptionsView.ColumnAutoWidth = false;
            this.gridViewMaster.OptionsView.EnableAppearanceEvenRow = true;
            this.gridViewMaster.OptionsView.EnableAppearanceOddRow = true;
            this.gridViewMaster.OptionsView.NewItemRowPosition = DevExpress.XtraGrid.Views.Grid.NewItemRowPosition.Bottom;
            this.gridViewMaster.OptionsView.ShowGroupPanel = false;
            this.gridViewMaster.OptionsView.ShowViewCaption = true;
            this.gridViewMaster.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
            new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.Col_CT_LoaiCB, DevExpress.Data.ColumnSortOrder.Ascending)});
            this.gridViewMaster.ViewCaption = "Thông tin cảnh báo thời hạn bản quyền";
            //
            // gridBandThongTinChinh
            //
            this.gridBandThongTinChinh.AppearanceHeader.Options.UseTextOptions = true;
            this.gridBandThongTinChinh.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridBandThongTinChinh.Caption = "Thông tin chính";
            this.gridBandThongTinChinh.Columns.Add(this.Col_CT_MaCT);
            this.gridBandThongTinChinh.Columns.Add(this.Col_CT_NgayAWB);
            this.gridBandThongTinChinh.Columns.Add(this.Col_CT_Category);
            this.gridBandThongTinChinh.Columns.Add(this.Col_CT_NoiDung);
            this.gridBandThongTinChinh.Columns.Add(this.Col_CT_TenGoc);
            this.gridBandThongTinChinh.Columns.Add(this.Col_CT_TietMuc);
            this.gridBandThongTinChinh.Columns.Add(this.Col_CT_DaoDien);
            this.gridBandThongTinChinh.Columns.Add(this.Col_CT_DienVien);
            this.gridBandThongTinChinh.Columns.Add(this.Col_CT_TomTat);
            this.gridBandThongTinChinh.Columns.Add(this.Col_CT_DoiTuongKhanGia);
            this.gridBandThongTinChinh.Columns.Add(this.Col_CT_KHPL);
            this.gridBandThongTinChinh.Columns.Add(this.Col_CT_KHXK);
            this.gridBandThongTinChinh.Columns.Add(this.Col_CT_TinhTrangBang);
            this.gridBandThongTinChinh.Columns.Add(this.Col_CT_TuKhoa);
            this.gridBandThongTinChinh.Columns.Add(this.Col_CT_ThanhLy);
            this.gridBandThongTinChinh.Columns.Add(this.Col_CT_GhiChu);
            this.gridBandThongTinChinh.Columns.Add(this.Col_CT_Photos);
            this.gridBandThongTinChinh.Columns.Add(this.Col_CT_Ranking);
            this.gridBandThongTinChinh.Columns.Add(this.Col_CT_Script);
            this.gridBandThongTinChinh.Columns.Add(this.Col_CT_TrailerGoc);
            this.gridBandThongTinChinh.Columns.Add(this.Col_CT_LoaiCB);
            this.gridBandThongTinChinh.Columns.Add(this.Col_CT_NgayLap);
            this.gridBandThongTinChinh.Columns.Add(this.Col_CT_NguoiLap);
            this.gridBandThongTinChinh.Columns.Add(this.Col_CT_CongT);
            this.gridBandThongTinChinh.Name = "gridBandThongTinChinh";
            this.gridBandThongTinChinh.Width = 1427;
            //
            // Col_CT_MaCT
            //
            this.Col_CT_MaCT.Caption = "Mã chương trình";
            this.Col_CT_MaCT.Name = "Col_CT_MaCT";
            this.Col_CT_MaCT.Visible = true;
            this.Col_CT_MaCT.Width = 90;
            //
            // Col_CT_NgayAWB
            //
            this.Col_CT_NgayAWB.Caption = "Ngày AWB";
            this.Col_CT_NgayAWB.Name = "Col_CT_NgayAWB";
            this.Col_CT_NgayAWB.Visible = true;
            this.Col_CT_NgayAWB.Width = 63;
            //
            // Col_CT_Category
            //
            this.Col_CT_Category.Caption = "Category";
            this.Col_CT_Category.Name = "Col_CT_Category";
            this.Col_CT_Category.Visible = true;
            this.Col_CT_Category.Width = 57;
            //
            // Col_CT_NoiDung
            //
            this.Col_CT_NoiDung.Caption = "Tên chương trình";
            this.Col_CT_NoiDung.Name = "Col_CT_NoiDung";
            this.Col_CT_NoiDung.Visible = true;
            this.Col_CT_NoiDung.Width = 94;
            //
            // Col_CT_TenGoc
            //
            this.Col_CT_TenGoc.Caption = "Tên gốc";
            this.Col_CT_TenGoc.Name = "Col_CT_TenGoc";
            this.Col_CT_TenGoc.Visible = true;
            this.Col_CT_TenGoc.Width = 50;
            //
            // Col_CT_TietMuc
            //
            this.Col_CT_TietMuc.Caption = "Tiết mục";
            this.Col_CT_TietMuc.Name = "Col_CT_TietMuc";
            this.Col_CT_TietMuc.Visible = true;
            this.Col_CT_TietMuc.Width = 52;
            //
            // Col_CT_DaoDien
            //
            this.Col_CT_DaoDien.Caption = "Đạo diễn";
            this.Col_CT_DaoDien.Name = "Col_CT_DaoDien";
            this.Col_CT_DaoDien.Visible = true;
            this.Col_CT_DaoDien.Width = 55;
            //
            // Col_CT_DienVien
            //
            this.Col_CT_DienVien.Caption = "Diễn viên";
            this.Col_CT_DienVien.Name = "Col_CT_DienVien";
            this.Col_CT_DienVien.Visible = true;
            this.Col_CT_DienVien.Width = 56;
            //
            // Col_CT_TomTat
            //
            this.Col_CT_TomTat.Caption = "Tóm tắt";
            this.Col_CT_TomTat.Name = "Col_CT_TomTat";
            this.Col_CT_TomTat.Visible = true;
            this.Col_CT_TomTat.Width = 49;
            //
            // Col_CT_DoiTuongKhanGia
            //
            this.Col_CT_DoiTuongKhanGia.Caption = "Đối tượng khán giả";
            this.Col_CT_DoiTuongKhanGia.Name = "Col_CT_DoiTuongKhanGia";
            this.Col_CT_DoiTuongKhanGia.Visible = true;
            this.Col_CT_DoiTuongKhanGia.Width = 103;
            //
            // Col_CT_KHPL
            //
            this.Col_CT_KHPL.Caption = "KHPL";
            this.Col_CT_KHPL.Name = "Col_CT_KHPL";
            this.Col_CT_KHPL.ToolTip = "Ký hiệu phân loại";
            this.Col_CT_KHPL.Visible = true;
            this.Col_CT_KHPL.Width = 36;
            //
            // Col_CT_KHXK
            //
            this.Col_CT_KHXK.Caption = "KHXK";
            this.Col_CT_KHXK.Name = "Col_CT_KHXK";
            this.Col_CT_KHXK.ToolTip = "Ký hiệu xếp kho";
            this.Col_CT_KHXK.Visible = true;
            this.Col_CT_KHXK.Width = 37;
            //
            // Col_CT_TinhTrangBang
            //
            this.Col_CT_TinhTrangBang.Caption = "Tình trạng CT";
            this.Col_CT_TinhTrangBang.Name = "Col_CT_TinhTrangBang";
            this.Col_CT_TinhTrangBang.Visible = true;
            this.Col_CT_TinhTrangBang.Width = 77;
            //
            // Col_CT_TuKhoa
            //
            this.Col_CT_TuKhoa.Caption = "Từ khóa";
            this.Col_CT_TuKhoa.Name = "Col_CT_TuKhoa";
            this.Col_CT_TuKhoa.Visible = true;
            this.Col_CT_TuKhoa.Width = 51;
            //
            // Col_CT_ThanhLy
            //
            this.Col_CT_ThanhLy.Caption = "Thanh lý";
            this.Col_CT_ThanhLy.Name = "Col_CT_ThanhLy";
            this.Col_CT_ThanhLy.Visible = true;
            this.Col_CT_ThanhLy.Width = 53;
            //
            // Col_CT_GhiChu
            //
            this.Col_CT_GhiChu.Caption = "Ghi chú";
            this.Col_CT_GhiChu.Name = "Col_CT_GhiChu";
            this.Col_CT_GhiChu.Visible = true;
            this.Col_CT_GhiChu.Width = 47;
            //
            // Col_CT_Photos
            //
            this.Col_CT_Photos.Caption = "Photos";
            this.Col_CT_Photos.Name = "Col_CT_Photos";
            this.Col_CT_Photos.Visible = true;
            this.Col_CT_Photos.Width = 45;
            //
            // Col_CT_Ranking
            //
            this.Col_CT_Ranking.Caption = "Ranking";
            this.Col_CT_Ranking.Name = "Col_CT_Ranking";
            this.Col_CT_Ranking.Visible = true;
            this.Col_CT_Ranking.Width = 50;
            //
            // Col_CT_Script
            //
            this.Col_CT_Script.Caption = "Script";
            this.Col_CT_Script.Name = "Col_CT_Script";
            this.Col_CT_Script.Visible = true;
            this.Col_CT_Script.Width = 39;
            //
            // Col_CT_TrailerGoc
            //
            this.Col_CT_TrailerGoc.Caption = "Trailer gốc";
            this.Col_CT_TrailerGoc.Name = "Col_CT_TrailerGoc";
            this.Col_CT_TrailerGoc.Visible = true;
            this.Col_CT_TrailerGoc.Width = 62;
            //
            // Col_CT_LoaiCB
            //
            this.Col_CT_LoaiCB.Caption = "Cấp độ cảnh báo";
            this.Col_CT_LoaiCB.Name = "Col_CT_LoaiCB";
            this.Col_CT_LoaiCB.SortMode = DevExpress.XtraGrid.ColumnSortMode.Value;
            this.Col_CT_LoaiCB.Visible = true;
            //
            // Col_CT_NgayLap
            //
            this.Col_CT_NgayLap.Caption = "Ngày lập";
            this.Col_CT_NgayLap.Name = "Col_CT_NgayLap";
            this.Col_CT_NgayLap.Visible = true;
            this.Col_CT_NgayLap.Width = 54;
            //
            // Col_CT_NguoiLap
            //
            this.Col_CT_NguoiLap.Caption = "Người lập";
            this.Col_CT_NguoiLap.Name = "Col_CT_NguoiLap";
            this.Col_CT_NguoiLap.Visible = true;
            this.Col_CT_NguoiLap.Width = 57;
            //
            // Col_CT_CongT
            //
            this.Col_CT_CongT.Caption = "Công ty";
            this.Col_CT_CongT.Name = "Col_CT_CongT";
            this.Col_CT_CongT.Visible = true;
            //
            // gridBandNguonGoc
            //
            this.gridBandNguonGoc.AppearanceHeader.Options.UseTextOptions = true;
            this.gridBandNguonGoc.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridBandNguonGoc.Caption = "Nguồn gốc";
            this.gridBandNguonGoc.Children.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.GridBand[] {
            this.gridBand1,
            this.gridBand2});
            this.gridBandNguonGoc.Name = "gridBandNguonGoc";
            this.gridBandNguonGoc.Width = 1153;
            //
            // gridBand1
            //
            this.gridBand1.AppearanceHeader.Options.UseTextOptions = true;
            this.gridBand1.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridBand1.Caption = "Thông tin sở hữu";
            this.gridBand1.Columns.Add(this.Col_CT_PhongBan);
            this.gridBand1.Columns.Add(this.Col_CT_NamSX);
            this.gridBand1.Columns.Add(this.Col_CT_Nuoc);
            this.gridBand1.Columns.Add(this.Col_CT_DonViCungCap);
            this.gridBand1.Columns.Add(this.Col_CT_DonViSoHuu);
            this.gridBand1.Columns.Add(this.Col_CT_KenhHanCheBan);
            this.gridBand1.Columns.Add(this.Col_CT_ThongTinBan);
            this.gridBand1.Name = "gridBand1";
            this.gridBand1.Width = 507;
            //
            // Col_CT_PhongBan
            //
            this.Col_CT_PhongBan.Caption = "Phòng ban";
            this.Col_CT_PhongBan.Name = "Col_CT_PhongBan";
            this.Col_CT_PhongBan.Visible = true;
            this.Col_CT_PhongBan.Width = 63;
            //
            // Col_CT_NamSX
            //
            this.Col_CT_NamSX.Caption = "Năm SX";
            this.Col_CT_NamSX.Name = "Col_CT_NamSX";
            this.Col_CT_NamSX.Visible = true;
            this.Col_CT_NamSX.Width = 48;
            //
            // Col_CT_Nuoc
            //
            this.Col_CT_Nuoc.Caption = "Nước SX";
            this.Col_CT_Nuoc.Name = "Col_CT_Nuoc";
            this.Col_CT_Nuoc.ToolTip = "Nước sản xuất";
            this.Col_CT_Nuoc.Visible = true;
            this.Col_CT_Nuoc.Width = 52;
            //
            // Col_CT_DonViCungCap
            //
            this.Col_CT_DonViCungCap.Caption = "Đơn vị cung cấp";
            this.Col_CT_DonViCungCap.Name = "Col_CT_DonViCungCap";
            this.Col_CT_DonViCungCap.Visible = true;
            this.Col_CT_DonViCungCap.Width = 89;
            //
            // Col_CT_DonViSoHuu
            //
            this.Col_CT_DonViSoHuu.Caption = "Đơn vị sở hữu";
            this.Col_CT_DonViSoHuu.Name = "Col_CT_DonViSoHuu";
            this.Col_CT_DonViSoHuu.Visible = true;
            this.Col_CT_DonViSoHuu.Width = 79;
            //
            // Col_CT_KenhHanCheBan
            //
            this.Col_CT_KenhHanCheBan.Caption = "Kênh hạn chế bán";
            this.Col_CT_KenhHanCheBan.Name = "Col_CT_KenhHanCheBan";
            this.Col_CT_KenhHanCheBan.Visible = true;
            this.Col_CT_KenhHanCheBan.Width = 98;
            //
            // Col_CT_ThongTinBan
            //
            this.Col_CT_ThongTinBan.Caption = "Thông tin bán";
            this.Col_CT_ThongTinBan.Name = "Col_CT_ThongTinBan";
            this.Col_CT_ThongTinBan.Visible = true;
            this.Col_CT_ThongTinBan.Width = 78;
            //
            // gridBand2
            //
            this.gridBand2.AppearanceHeader.Options.UseTextOptions = true;
            this.gridBand2.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridBand2.Caption = "Thời hạn bản quyền";
            this.gridBand2.Columns.Add(this.Col_CT_BanQuyenThuoc);
            this.gridBand2.Columns.Add(this.Col_CT_BanQuyenDIDStart);
            this.gridBand2.Columns.Add(this.Col_CT_BanQuyenDIDEnd);
            this.gridBand2.Columns.Add(this.Col_CT_BanQuyenDTNNStart);
            this.gridBand2.Columns.Add(this.Col_CT_BanQuyenDTNNEnd);
            this.gridBand2.Columns.Add(this.Col_CT_BanQuyenHTV);
            this.gridBand2.Name = "gridBand2";
            this.gridBand2.Width = 646;
            //
            // Col_CT_BanQuyenThuoc
            //
            this.Col_CT_BanQuyenThuoc.Caption = "Bản quyền thuộc";
            this.Col_CT_BanQuyenThuoc.Name = "Col_CT_BanQuyenThuoc";
            this.Col_CT_BanQuyenThuoc.Visible = true;
            this.Col_CT_BanQuyenThuoc.Width = 93;
            //
            // Col_CT_BanQuyenDIDStart
            //
            this.Col_CT_BanQuyenDIDStart.Caption = "Bản quyền DTTN Start";
            this.Col_CT_BanQuyenDIDStart.Name = "Col_CT_BanQuyenDIDStart";
            this.Col_CT_BanQuyenDIDStart.ToolTip = "Bản quyền đối tác trong nước Start";
            this.Col_CT_BanQuyenDIDStart.Visible = true;
            this.Col_CT_BanQuyenDIDStart.Width = 119;
            //
            // Col_CT_BanQuyenDIDEnd
            //
            this.Col_CT_BanQuyenDIDEnd.Caption = "Bản quyền DTTN End";
            this.Col_CT_BanQuyenDIDEnd.Name = "Col_CT_BanQuyenDIDEnd";
            this.Col_CT_BanQuyenDIDEnd.ToolTip = "Bản quyền đối tác trong nước End";
            this.Col_CT_BanQuyenDIDEnd.Visible = true;
            this.Col_CT_BanQuyenDIDEnd.Width = 113;
            //
            // Col_CT_BanQuyenDTNNStart
            //
            this.Col_CT_BanQuyenDTNNStart.Caption = "Bản quyền ĐTNN Start";
            this.Col_CT_BanQuyenDTNNStart.Name = "Col_CT_BanQuyenDTNNStart";
            this.Col_CT_BanQuyenDTNNStart.ToolTip = "Bản quyền  đối tác nước ngoài Start";
            this.Col_CT_BanQuyenDTNNStart.Visible = true;
            this.Col_CT_BanQuyenDTNNStart.Width = 121;
            //
            // Col_CT_BanQuyenDTNNEnd
            //
            this.Col_CT_BanQuyenDTNNEnd.Caption = "Bản quyền ĐTNN End";
            this.Col_CT_BanQuyenDTNNEnd.Name = "Col_CT_BanQuyenDTNNEnd";
            this.Col_CT_BanQuyenDTNNEnd.ToolTip = "Bản quyền đối tác nước ngoài End";
            this.Col_CT_BanQuyenDTNNEnd.Visible = true;
            this.Col_CT_BanQuyenDTNNEnd.Width = 115;
            //
            // Col_CT_BanQuyenHTV
            //
            this.Col_CT_BanQuyenHTV.Caption = "Bản quyền HTV";
            this.Col_CT_BanQuyenHTV.Name = "Col_CT_BanQuyenHTV";
            this.Col_CT_BanQuyenHTV.Visible = true;
            this.Col_CT_BanQuyenHTV.Width = 85;
            //
            // gridBandThongTinPhatSong
            //
            this.gridBandThongTinPhatSong.AppearanceHeader.Options.UseTextOptions = true;
            this.gridBandThongTinPhatSong.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridBandThongTinPhatSong.Caption = "Thông tin phát sóng";
            this.gridBandThongTinPhatSong.Columns.Add(this.Col_CT_MuaKem);
            this.gridBandThongTinPhatSong.Columns.Add(this.Col_CT_PhatSongChinh);
            this.gridBandThongTinPhatSong.Columns.Add(this.Col_CT_PhatSongLai);
            this.gridBandThongTinPhatSong.Columns.Add(this.Col_CT_PhatSongKhac);
            this.gridBandThongTinPhatSong.Columns.Add(this.Col_CT_TongSoRun);
            this.gridBandThongTinPhatSong.Columns.Add(this.Col_CT_SoLanPhat);
            this.gridBandThongTinPhatSong.Columns.Add(this.Col_CT_SoRunConLai);
            this.gridBandThongTinPhatSong.Columns.Add(this.Col_CT_Release);
            this.gridBandThongTinPhatSong.Name = "gridBandThongTinPhatSong";
            this.gridBandThongTinPhatSong.Width = 794;
            //
            // Col_CT_MuaKem
            //
            this.Col_CT_MuaKem.Caption = "Mua kèm";
            this.Col_CT_MuaKem.Name = "Col_CT_MuaKem";
            this.Col_CT_MuaKem.Visible = true;
            this.Col_CT_MuaKem.Width = 54;
            //
            // Col_CT_PhatSongChinh
            //
            this.Col_CT_PhatSongChinh.Caption = "Thời gian P/S chính";
            this.Col_CT_PhatSongChinh.Name = "Col_CT_PhatSongChinh";
            this.Col_CT_PhatSongChinh.ToolTip = "Những ngày phát lần đầu tương ứng trên các đài";
            this.Col_CT_PhatSongChinh.Visible = true;
            this.Col_CT_PhatSongChinh.Width = 102;
            //
            // Col_CT_PhatSongLai
            //
            this.Col_CT_PhatSongLai.Caption = "Thời gian P/S lại";
            this.Col_CT_PhatSongLai.Name = "Col_CT_PhatSongLai";
            this.Col_CT_PhatSongLai.ToolTip = "Những ngày phát lần đầu (nhưng phát lại) tương ứng trên các đài";
            this.Col_CT_PhatSongLai.Visible = true;
            this.Col_CT_PhatSongLai.Width = 87;
            //
            // Col_CT_PhatSongKhac
            //
            this.Col_CT_PhatSongKhac.Caption = "Thời gian P/S trên kênh khác";
            this.Col_CT_PhatSongKhac.Name = "Col_CT_PhatSongKhac";
            this.Col_CT_PhatSongKhac.ToolTip = "Thời gian phát sóng trên kênh khác";
            this.Col_CT_PhatSongKhac.Visible = true;
            this.Col_CT_PhatSongKhac.Width = 148;
            //
            // Col_CT_TongSoRun
            //
            this.Col_CT_TongSoRun.Caption = "Tổng số Run";
            this.Col_CT_TongSoRun.Name = "Col_CT_TongSoRun";
            this.Col_CT_TongSoRun.Visible = true;
            this.Col_CT_TongSoRun.Width = 72;
            //
            // Col_CT_SoLanPhat
            //
            this.Col_CT_SoLanPhat.Caption = "Tồng số lần đã phát (đã Run)";
            this.Col_CT_SoLanPhat.Name = "Col_CT_SoLanPhat";
            this.Col_CT_SoLanPhat.Visible = true;
            this.Col_CT_SoLanPhat.Width = 152;
            //
            // Col_CT_SoRunConLai
            //
            this.Col_CT_SoRunConLai.Caption = "Số Run còn lại";
            this.Col_CT_SoRunConLai.Name = "Col_CT_SoRunConLai";
            this.Col_CT_SoRunConLai.Visible = true;
            this.Col_CT_SoRunConLai.Width = 79;
            //
            // Col_CT_Release
            //
            this.Col_CT_Release.Caption = "Release (Số ngày)";
            this.Col_CT_Release.Name = "Col_CT_Release";
            this.Col_CT_Release.Visible = true;
            this.Col_CT_Release.Width = 100;
            //
            // gridBandThongTinBan
            //
            this.gridBandThongTinBan.AppearanceHeader.Options.UseTextOptions = true;
            this.gridBandThongTinBan.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridBandThongTinBan.Caption = "Thông tin bán";
            this.gridBandThongTinBan.Name = "gridBandThongTinBan";
            this.gridBandThongTinBan.OptionsBand.ShowInCustomizationForm = false;
            this.gridBandThongTinBan.Visible = false;
            this.gridBandThongTinBan.Width = 67;
            //
            // pageSoRun
            //
            this.pageSoRun.Controls.Add(this.gridControlSoRun);
            this.pageSoRun.Name = "pageSoRun";
            this.pageSoRun.Size = new System.Drawing.Size(1021, 492);
            this.pageSoRun.Text = "Cảnh báo số Run";
            //
            // gridControlSoRun
            //
            this.gridControlSoRun.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("gridControlSoRun.BackgroundImage")));
            this.gridControlSoRun.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
            this.gridControlSoRun.Dock = System.Windows.Forms.DockStyle.Fill;
            this.gridControlSoRun.Location = new System.Drawing.Point(0, 0);
            this.gridControlSoRun.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.UltraFlat;
            this.gridControlSoRun.MainView = this.gridViewSoRun;
            this.gridControlSoRun.Name = "gridControlSoRun";
            this.gridControlSoRun.Size = new System.Drawing.Size(1021, 492);
            this.gridControlSoRun.TabIndex = 11;
            this.gridControlSoRun.TabStop = false;
            this.gridControlSoRun.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
            this.gridViewSoRun});
            //
            // gridViewSoRun
            //
            this.gridViewSoRun.Appearance.GroupPanel.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Inch);
            this.gridViewSoRun.Appearance.GroupPanel.Options.UseFont = true;
            this.gridViewSoRun.Appearance.HeaderPanel.Options.UseTextOptions = true;
            this.gridViewSoRun.Appearance.HeaderPanel.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridViewSoRun.Appearance.ViewCaption.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(128)))), ((int)(((byte)(128)))));
            this.gridViewSoRun.Appearance.ViewCaption.Options.UseBackColor = true;
            this.gridViewSoRun.Bands.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.GridBand[] {
            this.gridBand3,
            this.gridBand4,
            this.gridBand7,
            this.gridBand8});
            this.gridViewSoRun.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
            this.gridViewSoRun.Columns.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn[] {
            this.Col_RUN_MaCT,
            this.Col_RUN_NgayAWB,
            this.Col_RUN_NgayLap,
            this.Col_RUN_NguoiLap,
            this.Col_RUN_PhongBan,
            this.Col_RUN_TenCT,
            this.Col_RUN_TietMuc,
            this.Col_RUN_TenGoc,
            this.Col_RUN_DaoDien,
            this.Col_RUN_DienVien,
            this.Col_RUN_KHPL,
            this.Col_RUN_DoiTuongKG,
            this.Col_RUN_TuKhoa,
            this.Col_RUN_KHXK,
            this.Col_RUN_TinhTrangCT,
            this.Col_RUN_TomTat,
            this.Col_RUN_ThanhLy,
            this.Col_RUN_GhiChu,
            this.Col_RUN_ThongTinBan,
            this.Col_RUN_NamSX,
            this.Col_RUN_NuocSX,
            this.Col_RUN_DVCungCap,
            this.Col_RUN_DonViSoHuu,
            this.Col_RUN_KenhHanCheBan,
            this.Col_RUN_ThoiGianPSChinh,
            this.Col_RUN_TongSoRun,
            this.Col_RUN_SoRunDaPhat,
            this.Col_RUN_SoRunConLai,
            this.Col_RUN_Release,
            this.Col_RUN_Category,
            this.Col_RUN_Ranking,
            this.Col_RUN_Script,
            this.Col_RUN_Photos,
            this.Col_RUN_TrailerGoc,
            this.Col_RUN_BanQuyenThuoc,
            this.Col_RUN_BanQuyenDTTNStart,
            this.Col_RUN_DTTNEnd,
            this.Col_RUN_DTNNStart,
            this.Col_RUN_DTNNEnd,
            this.Col_RUN_BanQuyenHTV,
            this.Col_RUN_MuaKem,
            this.Col_RUN_ThoiGianPSKhac,
            this.Col_RUN_ThoiGianPSLai,
            this.Col_RUN_CongTy,
            this.Col_RUN_LoaiCB});
            this.gridViewSoRun.CustomizationFormBounds = new System.Drawing.Rectangle(747, 292, 215, 205);
            this.gridViewSoRun.GridControl = this.gridControlSoRun;
            this.gridViewSoRun.GroupPanelText = "Các chương trình thỏa điều kiện tìm kiếm";
            this.gridViewSoRun.IndicatorWidth = 40;
            this.gridViewSoRun.Name = "gridViewSoRun";
            this.gridViewSoRun.OptionsLayout.Columns.AddNewColumns = false;
            this.gridViewSoRun.OptionsNavigation.AutoFocusNewRow = true;
            this.gridViewSoRun.OptionsNavigation.EnterMoveNextColumn = true;
            this.gridViewSoRun.OptionsPrint.UsePrintStyles = true;
            this.gridViewSoRun.OptionsSelection.MultiSelect = true;
            this.gridViewSoRun.OptionsView.ColumnAutoWidth = false;
            this.gridViewSoRun.OptionsView.EnableAppearanceEvenRow = true;
            this.gridViewSoRun.OptionsView.EnableAppearanceOddRow = true;
            this.gridViewSoRun.OptionsView.NewItemRowPosition = DevExpress.XtraGrid.Views.Grid.NewItemRowPosition.Bottom;
            this.gridViewSoRun.OptionsView.ShowGroupPanel = false;
            this.gridViewSoRun.OptionsView.ShowViewCaption = true;
            this.gridViewSoRun.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
            new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.Col_RUN_LoaiCB, DevExpress.Data.ColumnSortOrder.Descending)});
            this.gridViewSoRun.ViewCaption = "Thông tin cảnh báo số RUN";
            //
            // gridBand3
            //
            this.gridBand3.AppearanceHeader.Options.UseTextOptions = true;
            this.gridBand3.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridBand3.Caption = "Thông tin chính";
            this.gridBand3.Columns.Add(this.Col_RUN_MaCT);
            this.gridBand3.Columns.Add(this.Col_RUN_NgayAWB);
            this.gridBand3.Columns.Add(this.Col_RUN_Category);
            this.gridBand3.Columns.Add(this.Col_RUN_TenCT);
            this.gridBand3.Columns.Add(this.Col_RUN_TenGoc);
            this.gridBand3.Columns.Add(this.Col_RUN_TietMuc);
            this.gridBand3.Columns.Add(this.Col_RUN_DaoDien);
            this.gridBand3.Columns.Add(this.Col_RUN_DienVien);
            this.gridBand3.Columns.Add(this.Col_RUN_TomTat);
            this.gridBand3.Columns.Add(this.Col_RUN_DoiTuongKG);
            this.gridBand3.Columns.Add(this.Col_RUN_KHPL);
            this.gridBand3.Columns.Add(this.Col_RUN_KHXK);
            this.gridBand3.Columns.Add(this.Col_RUN_TinhTrangCT);
            this.gridBand3.Columns.Add(this.Col_RUN_TuKhoa);
            this.gridBand3.Columns.Add(this.Col_RUN_ThanhLy);
            this.gridBand3.Columns.Add(this.Col_RUN_GhiChu);
            this.gridBand3.Columns.Add(this.Col_RUN_Photos);
            this.gridBand3.Columns.Add(this.Col_RUN_Ranking);
            this.gridBand3.Columns.Add(this.Col_RUN_Script);
            this.gridBand3.Columns.Add(this.Col_RUN_TrailerGoc);
            this.gridBand3.Columns.Add(this.Col_RUN_LoaiCB);
            this.gridBand3.Columns.Add(this.Col_RUN_NguoiLap);
            this.gridBand3.Columns.Add(this.Col_RUN_NgayLap);
            this.gridBand3.Columns.Add(this.Col_RUN_PhongBan);
            this.gridBand3.Columns.Add(this.Col_RUN_CongTy);
            this.gridBand3.Name = "gridBand3";
            this.gridBand3.Width = 1490;
            //
            // Col_RUN_MaCT
            //
            this.Col_RUN_MaCT.Caption = "Mã chương trình";
            this.Col_RUN_MaCT.Name = "Col_RUN_MaCT";
            this.Col_RUN_MaCT.Visible = true;
            this.Col_RUN_MaCT.Width = 90;
            //
            // Col_RUN_NgayAWB
            //
            this.Col_RUN_NgayAWB.Caption = "Ngày AWB";
            this.Col_RUN_NgayAWB.Name = "Col_RUN_NgayAWB";
            this.Col_RUN_NgayAWB.Visible = true;
            this.Col_RUN_NgayAWB.Width = 63;
            //
            // Col_RUN_Category
            //
            this.Col_RUN_Category.Caption = "Category";
            this.Col_RUN_Category.Name = "Col_RUN_Category";
            this.Col_RUN_Category.Visible = true;
            this.Col_RUN_Category.Width = 57;
            //
            // Col_RUN_TenCT
            //
            this.Col_RUN_TenCT.Caption = "Tên chương trình";
            this.Col_RUN_TenCT.Name = "Col_RUN_TenCT";
            this.Col_RUN_TenCT.Visible = true;
            this.Col_RUN_TenCT.Width = 94;
            //
            // Col_RUN_TenGoc
            //
            this.Col_RUN_TenGoc.Caption = "Tên gốc";
            this.Col_RUN_TenGoc.Name = "Col_RUN_TenGoc";
            this.Col_RUN_TenGoc.Visible = true;
            this.Col_RUN_TenGoc.Width = 50;
            //
            // Col_RUN_TietMuc
            //
            this.Col_RUN_TietMuc.Caption = "Tiết mục";
            this.Col_RUN_TietMuc.Name = "Col_RUN_TietMuc";
            this.Col_RUN_TietMuc.Visible = true;
            this.Col_RUN_TietMuc.Width = 52;
            //
            // Col_RUN_DaoDien
            //
            this.Col_RUN_DaoDien.Caption = "Đạo diễn";
            this.Col_RUN_DaoDien.Name = "Col_RUN_DaoDien";
            this.Col_RUN_DaoDien.Visible = true;
            this.Col_RUN_DaoDien.Width = 55;
            //
            // Col_RUN_DienVien
            //
            this.Col_RUN_DienVien.Caption = "Diễn viên";
            this.Col_RUN_DienVien.Name = "Col_RUN_DienVien";
            this.Col_RUN_DienVien.Visible = true;
            this.Col_RUN_DienVien.Width = 56;
            //
            // Col_RUN_TomTat
            //
            this.Col_RUN_TomTat.Caption = "Tóm tắt";
            this.Col_RUN_TomTat.Name = "Col_RUN_TomTat";
            this.Col_RUN_TomTat.Visible = true;
            this.Col_RUN_TomTat.Width = 49;
            //
            // Col_RUN_DoiTuongKG
            //
            this.Col_RUN_DoiTuongKG.Caption = "Đối tượng khán giả";
            this.Col_RUN_DoiTuongKG.Name = "Col_RUN_DoiTuongKG";
            this.Col_RUN_DoiTuongKG.Visible = true;
            this.Col_RUN_DoiTuongKG.Width = 103;
            //
            // Col_RUN_KHPL
            //
            this.Col_RUN_KHPL.Caption = "KHPL";
            this.Col_RUN_KHPL.Name = "Col_RUN_KHPL";
            this.Col_RUN_KHPL.ToolTip = "Ký hiệu phân loại";
            this.Col_RUN_KHPL.Visible = true;
            this.Col_RUN_KHPL.Width = 36;
            //
            // Col_RUN_KHXK
            //
            this.Col_RUN_KHXK.Caption = "KHXK";
            this.Col_RUN_KHXK.Name = "Col_RUN_KHXK";
            this.Col_RUN_KHXK.ToolTip = "Ký hiệu xếp kho";
            this.Col_RUN_KHXK.Visible = true;
            this.Col_RUN_KHXK.Width = 37;
            //
            // Col_RUN_TinhTrangCT
            //
            this.Col_RUN_TinhTrangCT.Caption = "Tình trạng CT";
            this.Col_RUN_TinhTrangCT.Name = "Col_RUN_TinhTrangCT";
            this.Col_RUN_TinhTrangCT.Visible = true;
            this.Col_RUN_TinhTrangCT.Width = 77;
            //
            // Col_RUN_TuKhoa
            //
            this.Col_RUN_TuKhoa.Caption = "Từ khóa";
            this.Col_RUN_TuKhoa.Name = "Col_RUN_TuKhoa";
            this.Col_RUN_TuKhoa.Visible = true;
            this.Col_RUN_TuKhoa.Width = 51;
            //
            // Col_RUN_ThanhLy
            //
            this.Col_RUN_ThanhLy.Caption = "Thanh lý";
            this.Col_RUN_ThanhLy.Name = "Col_RUN_ThanhLy";
            this.Col_RUN_ThanhLy.Visible = true;
            this.Col_RUN_ThanhLy.Width = 53;
            //
            // Col_RUN_GhiChu
            //
            this.Col_RUN_GhiChu.Caption = "Ghi chú";
            this.Col_RUN_GhiChu.Name = "Col_RUN_GhiChu";
            this.Col_RUN_GhiChu.Visible = true;
            this.Col_RUN_GhiChu.Width = 47;
            //
            // Col_RUN_Photos
            //
            this.Col_RUN_Photos.Caption = "Photos";
            this.Col_RUN_Photos.Name = "Col_RUN_Photos";
            this.Col_RUN_Photos.Visible = true;
            this.Col_RUN_Photos.Width = 45;
            //
            // Col_RUN_Ranking
            //
            this.Col_RUN_Ranking.Caption = "Ranking";
            this.Col_RUN_Ranking.Name = "Col_RUN_Ranking";
            this.Col_RUN_Ranking.Visible = true;
            this.Col_RUN_Ranking.Width = 50;
            //
            // Col_RUN_Script
            //
            this.Col_RUN_Script.Caption = "Script";
            this.Col_RUN_Script.Name = "Col_RUN_Script";
            this.Col_RUN_Script.Visible = true;
            this.Col_RUN_Script.Width = 39;
            //
            // Col_RUN_TrailerGoc
            //
            this.Col_RUN_TrailerGoc.Caption = "Trailer gốc";
            this.Col_RUN_TrailerGoc.Name = "Col_RUN_TrailerGoc";
            this.Col_RUN_TrailerGoc.Visible = true;
            this.Col_RUN_TrailerGoc.Width = 62;
            //
            // Col_RUN_LoaiCB
            //
            this.Col_RUN_LoaiCB.Caption = "Cấp độ cảnh báo";
            this.Col_RUN_LoaiCB.Name = "Col_RUN_LoaiCB";
            this.Col_RUN_LoaiCB.SortMode = DevExpress.XtraGrid.ColumnSortMode.Value;
            this.Col_RUN_LoaiCB.Visible = true;
            //
            // Col_RUN_NguoiLap
            //
            this.Col_RUN_NguoiLap.Caption = "Người lập";
            this.Col_RUN_NguoiLap.Name = "Col_RUN_NguoiLap";
            this.Col_RUN_NguoiLap.Visible = true;
            this.Col_RUN_NguoiLap.Width = 57;
            //
            // Col_RUN_NgayLap
            //
            this.Col_RUN_NgayLap.Caption = "Ngày lập";
            this.Col_RUN_NgayLap.Name = "Col_RUN_NgayLap";
            this.Col_RUN_NgayLap.Visible = true;
            this.Col_RUN_NgayLap.Width = 54;
            //
            // Col_RUN_PhongBan
            //
            this.Col_RUN_PhongBan.Caption = "Phòng ban";
            this.Col_RUN_PhongBan.Name = "Col_RUN_PhongBan";
            this.Col_RUN_PhongBan.Visible = true;
            this.Col_RUN_PhongBan.Width = 63;
            //
            // Col_RUN_CongTy
            //
            this.Col_RUN_CongTy.Caption = "Công ty";
            this.Col_RUN_CongTy.Name = "Col_RUN_CongTy";
            this.Col_RUN_CongTy.Visible = true;
            //
            // gridBand4
            //
            this.gridBand4.AppearanceHeader.Options.UseTextOptions = true;
            this.gridBand4.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridBand4.Caption = "Nguồn gốc";
            this.gridBand4.Children.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.GridBand[] {
            this.gridBand5,
            this.gridBand6});
            this.gridBand4.Name = "gridBand4";
            this.gridBand4.Width = 1090;
            //
            // gridBand5
            //
            this.gridBand5.AppearanceHeader.Options.UseTextOptions = true;
            this.gridBand5.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridBand5.Caption = "Thông tin sở hữu";
            this.gridBand5.Columns.Add(this.Col_RUN_NamSX);
            this.gridBand5.Columns.Add(this.Col_RUN_NuocSX);
            this.gridBand5.Columns.Add(this.Col_RUN_DVCungCap);
            this.gridBand5.Columns.Add(this.Col_RUN_DonViSoHuu);
            this.gridBand5.Columns.Add(this.Col_RUN_KenhHanCheBan);
            this.gridBand5.Columns.Add(this.Col_RUN_ThongTinBan);
            this.gridBand5.Name = "gridBand5";
            this.gridBand5.Width = 444;
            //
            // Col_RUN_NamSX
            //
            this.Col_RUN_NamSX.Caption = "Năm SX";
            this.Col_RUN_NamSX.Name = "Col_RUN_NamSX";
            this.Col_RUN_NamSX.Visible = true;
            this.Col_RUN_NamSX.Width = 48;
            //
            // Col_RUN_NuocSX
            //
            this.Col_RUN_NuocSX.Caption = "Nước SX";
            this.Col_RUN_NuocSX.Name = "Col_RUN_NuocSX";
            this.Col_RUN_NuocSX.ToolTip = "Nước sản xuất";
            this.Col_RUN_NuocSX.Visible = true;
            this.Col_RUN_NuocSX.Width = 52;
            //
            // Col_RUN_DVCungCap
            //
            this.Col_RUN_DVCungCap.Caption = "Đơn vị cung cấp";
            this.Col_RUN_DVCungCap.Name = "Col_RUN_DVCungCap";
            this.Col_RUN_DVCungCap.Visible = true;
            this.Col_RUN_DVCungCap.Width = 89;
            //
            // Col_RUN_DonViSoHuu
            //
            this.Col_RUN_DonViSoHuu.Caption = "Đơn vị sở hữu";
            this.Col_RUN_DonViSoHuu.Name = "Col_RUN_DonViSoHuu";
            this.Col_RUN_DonViSoHuu.Visible = true;
            this.Col_RUN_DonViSoHuu.Width = 79;
            //
            // Col_RUN_KenhHanCheBan
            //
            this.Col_RUN_KenhHanCheBan.Caption = "Kênh hạn chế bán";
            this.Col_RUN_KenhHanCheBan.Name = "Col_RUN_KenhHanCheBan";
            this.Col_RUN_KenhHanCheBan.Visible = true;
            this.Col_RUN_KenhHanCheBan.Width = 98;
            //
            // Col_RUN_ThongTinBan
            //
            this.Col_RUN_ThongTinBan.Caption = "Thông tin bán";
            this.Col_RUN_ThongTinBan.Name = "Col_RUN_ThongTinBan";
            this.Col_RUN_ThongTinBan.Visible = true;
            this.Col_RUN_ThongTinBan.Width = 78;
            //
            // gridBand6
            //
            this.gridBand6.AppearanceHeader.Options.UseTextOptions = true;
            this.gridBand6.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridBand6.Caption = "Thời hạn bản quyền";
            this.gridBand6.Columns.Add(this.Col_RUN_BanQuyenThuoc);
            this.gridBand6.Columns.Add(this.Col_RUN_BanQuyenDTTNStart);
            this.gridBand6.Columns.Add(this.Col_RUN_DTTNEnd);
            this.gridBand6.Columns.Add(this.Col_RUN_DTNNStart);
            this.gridBand6.Columns.Add(this.Col_RUN_DTNNEnd);
            this.gridBand6.Columns.Add(this.Col_RUN_BanQuyenHTV);
            this.gridBand6.Name = "gridBand6";
            this.gridBand6.Width = 646;
            //
            // Col_RUN_BanQuyenThuoc
            //
            this.Col_RUN_BanQuyenThuoc.Caption = "Bản quyền thuộc";
            this.Col_RUN_BanQuyenThuoc.Name = "Col_RUN_BanQuyenThuoc";
            this.Col_RUN_BanQuyenThuoc.Visible = true;
            this.Col_RUN_BanQuyenThuoc.Width = 93;
            //
            // Col_RUN_BanQuyenDTTNStart
            //
            this.Col_RUN_BanQuyenDTTNStart.Caption = "Bản quyền DTTN Start";
            this.Col_RUN_BanQuyenDTTNStart.Name = "Col_RUN_BanQuyenDTTNStart";
            this.Col_RUN_BanQuyenDTTNStart.ToolTip = "Bản quyền đối tác trong nước Start";
            this.Col_RUN_BanQuyenDTTNStart.Visible = true;
            this.Col_RUN_BanQuyenDTTNStart.Width = 119;
            //
            // Col_RUN_DTTNEnd
            //
            this.Col_RUN_DTTNEnd.Caption = "Bản quyền DTTN End";
            this.Col_RUN_DTTNEnd.Name = "Col_RUN_DTTNEnd";
            this.Col_RUN_DTTNEnd.ToolTip = "Bản quyền đối tác trong nước End";
            this.Col_RUN_DTTNEnd.Visible = true;
            this.Col_RUN_DTTNEnd.Width = 113;
            //
            // Col_RUN_DTNNStart
            //
            this.Col_RUN_DTNNStart.Caption = "Bản quyền ĐTNN Start";
            this.Col_RUN_DTNNStart.Name = "Col_RUN_DTNNStart";
            this.Col_RUN_DTNNStart.ToolTip = "Bản quyền  đối tác nước ngoài Start";
            this.Col_RUN_DTNNStart.Visible = true;
            this.Col_RUN_DTNNStart.Width = 121;
            //
            // Col_RUN_DTNNEnd
            //
            this.Col_RUN_DTNNEnd.Caption = "Bản quyền ĐTNN End";
            this.Col_RUN_DTNNEnd.Name = "Col_RUN_DTNNEnd";
            this.Col_RUN_DTNNEnd.ToolTip = "Bản quyền đối tác nước ngoài End";
            this.Col_RUN_DTNNEnd.Visible = true;
            this.Col_RUN_DTNNEnd.Width = 115;
            //
            // Col_RUN_BanQuyenHTV
            //
            this.Col_RUN_BanQuyenHTV.Caption = "Bản quyền HTV";
            this.Col_RUN_BanQuyenHTV.Name = "Col_RUN_BanQuyenHTV";
            this.Col_RUN_BanQuyenHTV.Visible = true;
            this.Col_RUN_BanQuyenHTV.Width = 85;
            //
            // gridBand7
            //
            this.gridBand7.AppearanceHeader.Options.UseTextOptions = true;
            this.gridBand7.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridBand7.Caption = "Thông tin phát sóng";
            this.gridBand7.Columns.Add(this.Col_RUN_MuaKem);
            this.gridBand7.Columns.Add(this.Col_RUN_ThoiGianPSChinh);
            this.gridBand7.Columns.Add(this.Col_RUN_ThoiGianPSLai);
            this.gridBand7.Columns.Add(this.Col_RUN_ThoiGianPSKhac);
            this.gridBand7.Columns.Add(this.Col_RUN_TongSoRun);
            this.gridBand7.Columns.Add(this.Col_RUN_SoRunDaPhat);
            this.gridBand7.Columns.Add(this.Col_RUN_SoRunConLai);
            this.gridBand7.Columns.Add(this.Col_RUN_Release);
            this.gridBand7.Name = "gridBand7";
            this.gridBand7.Width = 794;
            //
            // Col_RUN_MuaKem
            //
            this.Col_RUN_MuaKem.Caption = "Mua kèm";
            this.Col_RUN_MuaKem.Name = "Col_RUN_MuaKem";
            this.Col_RUN_MuaKem.Visible = true;
            this.Col_RUN_MuaKem.Width = 54;
            //
            // Col_RUN_ThoiGianPSChinh
            //
            this.Col_RUN_ThoiGianPSChinh.Caption = "Thời gian P/S chính";
            this.Col_RUN_ThoiGianPSChinh.Name = "Col_RUN_ThoiGianPSChinh";
            this.Col_RUN_ThoiGianPSChinh.ToolTip = "Những ngày phát lần đầu tương ứng trên các đài";
            this.Col_RUN_ThoiGianPSChinh.Visible = true;
            this.Col_RUN_ThoiGianPSChinh.Width = 102;
            //
            // Col_RUN_ThoiGianPSLai
            //
            this.Col_RUN_ThoiGianPSLai.Caption = "Thời gian P/S lại";
            this.Col_RUN_ThoiGianPSLai.Name = "Col_RUN_ThoiGianPSLai";
            this.Col_RUN_ThoiGianPSLai.ToolTip = "Những ngày phát lần đầu (nhưng phát lại) tương ứng trên các đài";
            this.Col_RUN_ThoiGianPSLai.Visible = true;
            this.Col_RUN_ThoiGianPSLai.Width = 87;
            //
            // Col_RUN_ThoiGianPSKhac
            //
            this.Col_RUN_ThoiGianPSKhac.Caption = "Thời gian P/S trên kênh khác";
            this.Col_RUN_ThoiGianPSKhac.Name = "Col_RUN_ThoiGianPSKhac";
            this.Col_RUN_ThoiGianPSKhac.ToolTip = "Thời gian phát sóng trên kênh khác";
            this.Col_RUN_ThoiGianPSKhac.Visible = true;
            this.Col_RUN_ThoiGianPSKhac.Width = 148;
            //
            // Col_RUN_TongSoRun
            //
            this.Col_RUN_TongSoRun.Caption = "Tổng số Run";
            this.Col_RUN_TongSoRun.Name = "Col_RUN_TongSoRun";
            this.Col_RUN_TongSoRun.Visible = true;
            this.Col_RUN_TongSoRun.Width = 72;
            //
            // Col_RUN_SoRunDaPhat
            //
            this.Col_RUN_SoRunDaPhat.Caption = "Tồng số lần đã phát (đã Run)";
            this.Col_RUN_SoRunDaPhat.Name = "Col_RUN_SoRunDaPhat";
            this.Col_RUN_SoRunDaPhat.Visible = true;
            this.Col_RUN_SoRunDaPhat.Width = 152;
            //
            // Col_RUN_SoRunConLai
            //
            this.Col_RUN_SoRunConLai.Caption = "Số Run còn lại";
            this.Col_RUN_SoRunConLai.Name = "Col_RUN_SoRunConLai";
            this.Col_RUN_SoRunConLai.Visible = true;
            this.Col_RUN_SoRunConLai.Width = 79;
            //
            // Col_RUN_Release
            //
            this.Col_RUN_Release.Caption = "Release (Số ngày)";
            this.Col_RUN_Release.Name = "Col_RUN_Release";
            this.Col_RUN_Release.Visible = true;
            this.Col_RUN_Release.Width = 100;
            //
            // gridBand8
            //
            this.gridBand8.AppearanceHeader.Options.UseTextOptions = true;
            this.gridBand8.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridBand8.Caption = "Thông tin bán";
            this.gridBand8.Name = "gridBand8";
            this.gridBand8.OptionsBand.ShowInCustomizationForm = false;
            this.gridBand8.Visible = false;
            this.gridBand8.Width = 67;
            //
            // pageMuonTra
            //
            this.pageMuonTra.Controls.Add(this.splitContainerControl2);
            this.pageMuonTra.Name = "pageMuonTra";
            this.pageMuonTra.Size = new System.Drawing.Size(1021, 492);
            this.pageMuonTra.Text = "Cảnh báo mượn trả";
            //
            // gridControlMuonTra
            //
            this.gridControlMuonTra.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("gridControlMuonTra.BackgroundImage")));
            this.gridControlMuonTra.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
            this.gridControlMuonTra.Dock = System.Windows.Forms.DockStyle.Fill;
            this.gridControlMuonTra.Location = new System.Drawing.Point(0, 0);
            this.gridControlMuonTra.MainView = this.gridViewMuonTra;
            this.gridControlMuonTra.Name = "gridControlMuonTra";
            this.gridControlMuonTra.Size = new System.Drawing.Size(1021, 305);
            this.gridControlMuonTra.TabIndex = 11;
            this.gridControlMuonTra.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
            this.gridViewMuonTra});
            //
            // gridViewMuonTra
            //
            this.gridViewMuonTra.Appearance.HeaderPanel.Options.UseTextOptions = true;
            this.gridViewMuonTra.Appearance.HeaderPanel.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridViewMuonTra.Bands.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.GridBand[] {
            this.gridBandChuongTrinh,
            this.gridBandPostMaster});
            this.gridViewMuonTra.Columns.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn[] {
            this.Col_MT_MaPhieu,
            this.Col_MT_NguoiMuon,
            this.Col_MT_BoPhanMuon,
            this.Col_MT_CongTyMuon,
            this.Col_MT_NgayMuon,
            this.Col_MT_MucDich,
            this.Col_MT_NgayTra,
            this.Col_MT_NguoiTao,
            this.Col_MT_NgayTao,
            this.Col_MT_PhongBan,
            this.Col_MT_CongTy,
            this.Col_MT_LoaiCB});
            this.gridViewMuonTra.GridControl = this.gridControlMuonTra;
            this.gridViewMuonTra.IndicatorWidth = 40;
            this.gridViewMuonTra.Name = "gridViewMuonTra";
            this.gridViewMuonTra.OptionsLayout.Columns.AddNewColumns = false;
            this.gridViewMuonTra.OptionsNavigation.AutoFocusNewRow = true;
            this.gridViewMuonTra.OptionsNavigation.EnterMoveNextColumn = true;
            this.gridViewMuonTra.OptionsPrint.UsePrintStyles = true;
            this.gridViewMuonTra.OptionsView.EnableAppearanceEvenRow = true;
            this.gridViewMuonTra.OptionsView.EnableAppearanceOddRow = true;
            this.gridViewMuonTra.OptionsView.NewItemRowPosition = DevExpress.XtraGrid.Views.Grid.NewItemRowPosition.Bottom;
            this.gridViewMuonTra.OptionsView.ShowGroupPanel = false;
            this.gridViewMuonTra.OptionsView.ShowViewCaption = true;
            this.gridViewMuonTra.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
            new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.Col_MT_LoaiCB, DevExpress.Data.ColumnSortOrder.Descending)});
            this.gridViewMuonTra.ViewCaption = "Thông tin cảnh báo mượn trả";
            //
            // gridBandChuongTrinh
            //
            this.gridBandChuongTrinh.AppearanceHeader.Options.UseTextOptions = true;
            this.gridBandChuongTrinh.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridBandChuongTrinh.Caption = "Thông tin mượn/trả";
            this.gridBandChuongTrinh.Columns.Add(this.Col_MT_MaPhieu);
            this.gridBandChuongTrinh.Columns.Add(this.Col_MT_NguoiMuon);
            this.gridBandChuongTrinh.Columns.Add(this.Col_MT_BoPhanMuon);
            this.gridBandChuongTrinh.Columns.Add(this.Col_MT_CongTyMuon);
            this.gridBandChuongTrinh.Columns.Add(this.Col_MT_NgayMuon);
            this.gridBandChuongTrinh.Columns.Add(this.Col_MT_MucDich);
            this.gridBandChuongTrinh.Columns.Add(this.Col_MT_NgayTra);
            this.gridBandChuongTrinh.Columns.Add(this.Col_MT_LoaiCB);
            this.gridBandChuongTrinh.Name = "gridBandChuongTrinh";
            this.gridBandChuongTrinh.Width = 590;
            //
            // Col_MT_MaPhieu
            //
            this.Col_MT_MaPhieu.Caption = "Mã PMT";
            this.Col_MT_MaPhieu.Name = "Col_MT_MaPhieu";
            this.Col_MT_MaPhieu.ToolTip = "Mã phiếu mượn trả";
            this.Col_MT_MaPhieu.Visible = true;
            this.Col_MT_MaPhieu.Width = 49;
            //
            // Col_MT_NguoiMuon
            //
            this.Col_MT_NguoiMuon.Caption = "Người mượn";
            this.Col_MT_NguoiMuon.Name = "Col_MT_NguoiMuon";
            this.Col_MT_NguoiMuon.Visible = true;
            this.Col_MT_NguoiMuon.Width = 70;
            //
            // Col_MT_BoPhanMuon
            //
            this.Col_MT_BoPhanMuon.Caption = "Bộ phận mượn";
            this.Col_MT_BoPhanMuon.Name = "Col_MT_BoPhanMuon";
            this.Col_MT_BoPhanMuon.Visible = true;
            this.Col_MT_BoPhanMuon.Width = 81;
            //
            // Col_MT_CongTyMuon
            //
            this.Col_MT_CongTyMuon.Caption = "Công ty mượn";
            this.Col_MT_CongTyMuon.Name = "Col_MT_CongTyMuon";
            this.Col_MT_CongTyMuon.Visible = true;
            this.Col_MT_CongTyMuon.Width = 80;
            //
            // Col_MT_NgayMuon
            //
            this.Col_MT_NgayMuon.Caption = "Ngày mượn";
            this.Col_MT_NgayMuon.Name = "Col_MT_NgayMuon";
            this.Col_MT_NgayMuon.Visible = true;
            this.Col_MT_NgayMuon.Width = 67;
            //
            // Col_MT_MucDich
            //
            this.Col_MT_MucDich.Caption = "Mục đích mượn";
            this.Col_MT_MucDich.Name = "Col_MT_MucDich";
            this.Col_MT_MucDich.Visible = true;
            this.Col_MT_MucDich.Width = 83;
            //
            // Col_MT_NgayTra
            //
            this.Col_MT_NgayTra.Caption = "Ngày trả";
            this.Col_MT_NgayTra.Name = "Col_MT_NgayTra";
            this.Col_MT_NgayTra.Visible = true;
            this.Col_MT_NgayTra.Width = 54;
            //
            // Col_MT_LoaiCB
            //
            this.Col_MT_LoaiCB.Caption = "Cấp độ cảnh báo";
            this.Col_MT_LoaiCB.Name = "Col_MT_LoaiCB";
            this.Col_MT_LoaiCB.SortMode = DevExpress.XtraGrid.ColumnSortMode.Value;
            this.Col_MT_LoaiCB.Visible = true;
            this.Col_MT_LoaiCB.Width = 106;
            //
            // gridBandPostMaster
            //
            this.gridBandPostMaster.AppearanceHeader.Options.UseTextOptions = true;
            this.gridBandPostMaster.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridBandPostMaster.Caption = "Thông tin tạo phiếu";
            this.gridBandPostMaster.Columns.Add(this.Col_MT_NguoiTao);
            this.gridBandPostMaster.Columns.Add(this.Col_MT_NgayTao);
            this.gridBandPostMaster.Columns.Add(this.Col_MT_PhongBan);
            this.gridBandPostMaster.Columns.Add(this.Col_MT_CongTy);
            this.gridBandPostMaster.Name = "gridBandPostMaster";
            this.gridBandPostMaster.Width = 228;
            //
            // Col_MT_NguoiTao
            //
            this.Col_MT_NguoiTao.Caption = "Người tạo";
            this.Col_MT_NguoiTao.Name = "Col_MT_NguoiTao";
            this.Col_MT_NguoiTao.Visible = true;
            this.Col_MT_NguoiTao.Width = 59;
            //
            // Col_MT_NgayTao
            //
            this.Col_MT_NgayTao.Caption = "Ngày tạo";
            this.Col_MT_NgayTao.Name = "Col_MT_NgayTao";
            this.Col_MT_NgayTao.Visible = true;
            this.Col_MT_NgayTao.Width = 56;
            //
            // Col_MT_PhongBan
            //
            this.Col_MT_PhongBan.Caption = "Phòng ban";
            this.Col_MT_PhongBan.Name = "Col_MT_PhongBan";
            this.Col_MT_PhongBan.Visible = true;
            this.Col_MT_PhongBan.Width = 63;
            //
            // Col_MT_CongTy
            //
            this.Col_MT_CongTy.Caption = "Công ty";
            this.Col_MT_CongTy.Name = "Col_MT_CongTy";
            this.Col_MT_CongTy.Visible = true;
            this.Col_MT_CongTy.Width = 50;
            //
            // popupMenu2
            //
            this.popupMenu2.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemXemTruoc)});
            this.popupMenu2.Manager = this.barManager1;
            this.popupMenu2.Name = "popupMenu2";
            //
            // splitContainerControl2
            //
            this.splitContainerControl2.Dock = System.Windows.Forms.DockStyle.Fill;
            this.splitContainerControl2.Horizontal = false;
            this.splitContainerControl2.Location = new System.Drawing.Point(0, 0);
            this.splitContainerControl2.Name = "splitContainerControl2";
            this.splitContainerControl2.Panel1.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
            this.splitContainerControl2.Panel1.AppearanceCaption.Options.UseFont = true;
            this.splitContainerControl2.Panel1.AppearanceCaption.Options.UseTextOptions = true;
            this.splitContainerControl2.Panel1.AppearanceCaption.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.splitContainerControl2.Panel1.Controls.Add(this.gridControlMuonTra);
            this.splitContainerControl2.Panel1.Text = "Chương trình";
            this.splitContainerControl2.Panel2.CaptionLocation = DevExpress.Utils.Locations.Left;
            this.splitContainerControl2.Panel2.Controls.Add(this.TreeDes);
            this.splitContainerControl2.Panel2.Text = "splitContainerControl1_Panel2";
            this.splitContainerControl2.Size = new System.Drawing.Size(1021, 492);
            this.splitContainerControl2.SplitterPosition = 305;
            this.splitContainerControl2.TabIndex = 12;
            this.splitContainerControl2.Text = "splitContainerControl1";
            this.splitContainerControl2.Visible = true;
            //
            // TreeDes
            //
            this.TreeDes.Appearance.HeaderPanel.Options.UseTextOptions = true;
            this.TreeDes.Appearance.HeaderPanel.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.TreeDes.Columns.AddRange(new DevExpress.XtraTreeList.Columns.TreeListColumn[] {
            this.ColDes_Ten,
            this.treeListColumn2,
            this.ColDes_TenGoc,
            this.ColDes_NuocSX,
            this.ColDes_TietMuc,
            this.ColDes_SoTapGoc,
            this.ColDes_LoaiLuuTru,
            this.ColDes_Betacam,
            this.ColDes_File,
            this.ColDes_DVD,
            this.ColDes_Cap,
            this.ColDes_TenPM,
            this.ColDes_TenCT,
            this.ColDes_PhongBan,
            this.ColDes_CongTy,
            this.ColDes_Category});
            this.TreeDes.Dock = System.Windows.Forms.DockStyle.Fill;
            this.TreeDes.Location = new System.Drawing.Point(0, 0);
            this.TreeDes.Name = "TreeDes";
            this.TreeDes.OptionsBehavior.AllowExpandOnDblClick = false;
            this.TreeDes.OptionsBehavior.AutoFocusNewNode = true;
            this.TreeDes.OptionsBehavior.AutoMoveRowFocus = true;
            this.TreeDes.OptionsSelection.MultiSelect = true;
            this.TreeDes.OptionsView.EnableAppearanceEvenRow = true;
            this.TreeDes.OptionsView.EnableAppearanceOddRow = true;
            this.TreeDes.Size = new System.Drawing.Size(1021, 181);
            this.TreeDes.TabIndex = 36;
            //
            // ColDes_Ten
            //
            this.ColDes_Ten.Caption = "Tên";
            this.ColDes_Ten.FieldName = "Được quyền xóa";
            this.ColDes_Ten.Name = "ColDes_Ten";
            this.ColDes_Ten.OptionsColumn.AllowEdit = false;
            this.ColDes_Ten.OptionsColumn.AllowFocus = false;
            this.ColDes_Ten.Visible = true;
            this.ColDes_Ten.VisibleIndex = 0;
            this.ColDes_Ten.Width = 80;
            //
            // treeListColumn2
            //
            this.treeListColumn2.Caption = "Là nhóm";
            this.treeListColumn2.FieldName = "Là nhóm";
            this.treeListColumn2.Name = "treeListColumn2";
            this.treeListColumn2.OptionsColumn.AllowEdit = false;
            this.treeListColumn2.OptionsColumn.ShowInCustomizationForm = false;
            //
            // ColDes_TenGoc
            //
            this.ColDes_TenGoc.Caption = "Tên gốc";
            this.ColDes_TenGoc.FieldName = "Tên gốc";
            this.ColDes_TenGoc.Name = "ColDes_TenGoc";
            this.ColDes_TenGoc.OptionsColumn.AllowEdit = false;
            this.ColDes_TenGoc.OptionsColumn.AllowFocus = false;
            this.ColDes_TenGoc.Visible = true;
            this.ColDes_TenGoc.VisibleIndex = 1;
            this.ColDes_TenGoc.Width = 55;
            //
            // ColDes_NuocSX
            //
            this.ColDes_NuocSX.Caption = "Nước SX";
            this.ColDes_NuocSX.FieldName = "Được quyền thêm";
            this.ColDes_NuocSX.Name = "ColDes_NuocSX";
            this.ColDes_NuocSX.OptionsColumn.AllowEdit = false;
            this.ColDes_NuocSX.OptionsColumn.AllowFocus = false;
            this.ColDes_NuocSX.Visible = true;
            this.ColDes_NuocSX.VisibleIndex = 3;
            this.ColDes_NuocSX.Width = 54;
            //
            // ColDes_TietMuc
            //
            this.ColDes_TietMuc.Caption = "Tiết mục";
            this.ColDes_TietMuc.FieldName = "Được quyền xem";
            this.ColDes_TietMuc.Name = "ColDes_TietMuc";
            this.ColDes_TietMuc.OptionsColumn.AllowEdit = false;
            this.ColDes_TietMuc.OptionsColumn.AllowFocus = false;
            this.ColDes_TietMuc.Visible = true;
            this.ColDes_TietMuc.VisibleIndex = 6;
            this.ColDes_TietMuc.Width = 55;
            //
            // ColDes_SoTapGoc
            //
            this.ColDes_SoTapGoc.Caption = "Số tập gốc/cắt";
            this.ColDes_SoTapGoc.FieldName = "Được quyền sửa";
            this.ColDes_SoTapGoc.Name = "ColDes_SoTapGoc";
            this.ColDes_SoTapGoc.OptionsColumn.AllowEdit = false;
            this.ColDes_SoTapGoc.OptionsColumn.AllowFocus = false;
            this.ColDes_SoTapGoc.Visible = true;
            this.ColDes_SoTapGoc.VisibleIndex = 9;
            this.ColDes_SoTapGoc.Width = 86;
            //
            // ColDes_LoaiLuuTru
            //
            this.ColDes_LoaiLuuTru.Caption = "Loại lưu trữ";
            this.ColDes_LoaiLuuTru.FieldName = "Loại lưu trữ";
            this.ColDes_LoaiLuuTru.Name = "ColDes_LoaiLuuTru";
            this.ColDes_LoaiLuuTru.OptionsColumn.AllowEdit = false;
            this.ColDes_LoaiLuuTru.OptionsColumn.AllowFocus = false;
            this.ColDes_LoaiLuuTru.Visible = true;
            this.ColDes_LoaiLuuTru.VisibleIndex = 8;
            this.ColDes_LoaiLuuTru.Width = 70;
            //
            // ColDes_Betacam
            //
            this.ColDes_Betacam.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
            this.ColDes_Betacam.AppearanceHeader.ForeColor = System.Drawing.Color.Blue;
            this.ColDes_Betacam.AppearanceHeader.Options.UseFont = true;
            this.ColDes_Betacam.AppearanceHeader.Options.UseForeColor = true;
            this.ColDes_Betacam.Caption = "Betacam";
            this.ColDes_Betacam.FieldName = "Betacam";
            this.ColDes_Betacam.Name = "ColDes_Betacam";
            this.ColDes_Betacam.Visible = true;
            this.ColDes_Betacam.VisibleIndex = 12;
            this.ColDes_Betacam.Width = 53;
            //
            // ColDes_File
            //
            this.ColDes_File.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
            this.ColDes_File.AppearanceHeader.ForeColor = System.Drawing.Color.Blue;
            this.ColDes_File.AppearanceHeader.Options.UseFont = true;
            this.ColDes_File.AppearanceHeader.Options.UseForeColor = true;
            this.ColDes_File.Caption = "File";
            this.ColDes_File.FieldName = "File";
            this.ColDes_File.Name = "ColDes_File";
            this.ColDes_File.Visible = true;
            this.ColDes_File.VisibleIndex = 13;
            this.ColDes_File.Width = 50;
            //
            // ColDes_DVD
            //
            this.ColDes_DVD.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
            this.ColDes_DVD.AppearanceHeader.ForeColor = System.Drawing.Color.Blue;
            this.ColDes_DVD.AppearanceHeader.Options.UseFont = true;
            this.ColDes_DVD.AppearanceHeader.Options.UseForeColor = true;
            this.ColDes_DVD.Caption = "DVD";
            this.ColDes_DVD.FieldName = "DVD";
            this.ColDes_DVD.Name = "ColDes_DVD";
            this.ColDes_DVD.Visible = true;
            this.ColDes_DVD.VisibleIndex = 14;
            this.ColDes_DVD.Width = 49;
            //
            // ColDes_Cap
            //
            this.ColDes_Cap.Caption = "Cấp";
            this.ColDes_Cap.FieldName = "Cấp";
            this.ColDes_Cap.Name = "ColDes_Cap";
            this.ColDes_Cap.OptionsColumn.AllowEdit = false;
            this.ColDes_Cap.OptionsColumn.AllowFocus = false;
            this.ColDes_Cap.Visible = true;
            this.ColDes_Cap.VisibleIndex = 2;
            this.ColDes_Cap.Width = 79;
            //
            // ColDes_TenPM
            //
            this.ColDes_TenPM.Caption = "P/M";
            this.ColDes_TenPM.FieldName = "P/M";
            this.ColDes_TenPM.Name = "ColDes_TenPM";
            this.ColDes_TenPM.OptionsColumn.AllowEdit = false;
            this.ColDes_TenPM.OptionsColumn.AllowFocus = false;
            this.ColDes_TenPM.Visible = true;
            this.ColDes_TenPM.VisibleIndex = 5;
            this.ColDes_TenPM.Width = 79;
            //
            // ColDes_TenCT
            //
            this.ColDes_TenCT.Caption = "CT";
            this.ColDes_TenCT.FieldName = "CT";
            this.ColDes_TenCT.Name = "ColDes_TenCT";
            this.ColDes_TenCT.OptionsColumn.AllowEdit = false;
            this.ColDes_TenCT.OptionsColumn.AllowFocus = false;
            this.ColDes_TenCT.Visible = true;
            this.ColDes_TenCT.VisibleIndex = 4;
            this.ColDes_TenCT.Width = 79;
            //
            // ColDes_PhongBan
            //
            this.ColDes_PhongBan.Caption = "Phòng ban";
            this.ColDes_PhongBan.FieldName = "ColDes_PhongBan";
            this.ColDes_PhongBan.Name = "ColDes_PhongBan";
            this.ColDes_PhongBan.OptionsColumn.AllowEdit = false;
            this.ColDes_PhongBan.OptionsColumn.AllowFocus = false;
            this.ColDes_PhongBan.Visible = true;
            this.ColDes_PhongBan.VisibleIndex = 10;
            this.ColDes_PhongBan.Width = 79;
            //
            // ColDes_CongTy
            //
            this.ColDes_CongTy.Caption = "Công ty";
            this.ColDes_CongTy.FieldName = "Công ty";
            this.ColDes_CongTy.Name = "ColDes_CongTy";
            this.ColDes_CongTy.OptionsColumn.AllowEdit = false;
            this.ColDes_CongTy.OptionsColumn.AllowFocus = false;
            this.ColDes_CongTy.Visible = true;
            this.ColDes_CongTy.VisibleIndex = 11;
            this.ColDes_CongTy.Width = 79;
            //
            // ColDes_Category
            //
            this.ColDes_Category.Caption = "Category";
            this.ColDes_Category.FieldName = "Category";
            this.ColDes_Category.Name = "ColDes_Category";
            this.ColDes_Category.Visible = true;
            this.ColDes_Category.VisibleIndex = 7;
            //
            // frmListCanhBaoQL
            //
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(1028, 545);
            this.Controls.Add(this.xtraTabControlDetail);
            this.Controls.Add(this.barDockControlLeft);
            this.Controls.Add(this.barDockControlRight);
            this.Controls.Add(this.barDockControlBottom);
            this.Controls.Add(this.barDockControlTop);
            this.Name = "frmListCanhBaoQL";
            this.ShowInTaskbar = false;
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
            this.Text = "Thông tin cảnh báo";
            ((System.ComponentModel.ISupportInitialize)(this.gridControlDetail)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridViewDetail)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.barManager1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.popupMenu1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.popupMenuFilter)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.dockManager1)).EndInit();
            this.dockPanel1.ResumeLayout(false);
            this.dockPanel1_Container.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.popupControlContainerFilter)).EndInit();
            this.popupControlContainerFilter.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl1)).EndInit();
            this.splitContainerControl1.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.xtraTabControlDetail)).EndInit();
            this.xtraTabControlDetail.ResumeLayout(false);
            this.pageBanQuyen.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.gridControlMaster)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridViewMaster)).EndInit();
            this.pageSoRun.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.gridControlSoRun)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridViewSoRun)).EndInit();
            this.pageMuonTra.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.gridControlMuonTra)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridViewMuonTra)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.popupMenu2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl2)).EndInit();
            this.splitContainerControl2.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.TreeDes)).EndInit();
            this.ResumeLayout(false);
        }
コード例 #30
0
ファイル: EFDevGrid.cs プロジェクト: sunpander/VSDT
        private void RefreshSelectedColumn(bool value)
        {
            if (this.Created&& gridView1!=null&& gridView1.Columns.ColumnByFieldName(selectedColumnFieldName) == null)
            {
                if (colSelectedTemp != null)
                {
                    //对bandGridView单独处理
                    if (gridView1 is DevExpress.XtraGrid.Views.BandedGrid.BandedGridView)
                    {
                        DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn colTmp = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
                        colTmp.Caption = " ";
                        colTmp.UnboundType = DevExpress.Data.UnboundColumnType.Boolean;
                        colTmp.FieldName = this.selectedColumnFieldName;

                        gridView1.Columns.Insert(0, colTmp);

                        DevExpress.XtraGrid.Views.BandedGrid.GridBand gridBand1 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
                        gridBand1.Caption = " ";
                        gridBand1.Columns.Add(colTmp);
                        gridBand1.Visible = true;
                        gridBand1.Width = 75;
                        (gridView1 as DevExpress.XtraGrid.Views.BandedGrid.BandedGridView).Bands.Insert(0, gridBand1);
                    }
                    else
                    {
                        gridView1.Columns.Insert(0, colSelectedTemp);
                    }
                }
            }
            GridColumn col = gridView1.Columns.ColumnByFieldName(selectedColumnFieldName);
            if (col != null)
            {
                gridView1.BeginUpdate();
                col.Visible = value;
                col.VisibleIndex = value ? 0 : -1;
                col.Fixed = FixedStyle.Left;
                if (col.ColumnEdit != null)
                {
                    //改变立即生效
                    col.ColumnEdit.EditValueChanged -= new EventHandler(repositoryItemCheckEdit1_EditValueChanged);
                    col.ColumnEdit.EditValueChanged += new EventHandler(repositoryItemCheckEdit1_EditValueChanged);
                }
                gridView1.EndUpdate();
            }
        }
コード例 #31
0
        //private void AddGridCol(string sCatpion,string sName,string sFieldName,int sIndex)
        //{

        //    DevExpress.XtraGrid.Columns.GridColumn gridColumn1 = new DevExpress.XtraGrid.Columns.GridColumn();

        //    gridView1.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] { gridColumn1 });
        //    gridColumn1.Caption = sCatpion;
        //    gridColumn1.Name = "gridCol" + sName;
        //    gridColumn1.FieldName = sFieldName;
        //    gridColumn1.Visible = true;
        //    gridColumn1.VisibleIndex = sIndex;
        //    gridColumn1.Width = 150;
        //    gridColumn1.ColumnEdit = this.ItemTextEditn2;
        //}


        private void SetCol(string sCatpion, string sName, string sFieldName, int sIndex)
        {
            #region 期初

            DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn gridCol期初借方 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            gridCol期初借方.Caption   = "借方";
            gridCol期初借方.Name      = "gridCol期初借方" + sName;
            gridCol期初借方.FieldName = "期初借方" + sName;
            gridCol期初借方.Visible   = true;
            DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn gridCol期初贷方 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            gridCol期初贷方.Caption   = "贷方";
            gridCol期初贷方.Name      = "gridCol期初贷方" + sName;
            gridCol期初贷方.FieldName = "期初贷方" + sName;
            gridCol期初贷方.Visible   = true;

            DevExpress.XtraGrid.Views.BandedGrid.GridBand gridBand期初余额 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
            gridBand期初余额.AppearanceHeader.Options.UseTextOptions = true;
            gridBand期初余额.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            gridBand期初余额.Caption = "期初余额";
            gridBand期初余额.Name    = "gridBand期初余额" + sName;
            gridBand期初余额.Width   = 150;

            #endregion

            #region 发生

            DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn gridCol本期借方 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            gridCol本期借方.Caption   = "借方";
            gridCol本期借方.Name      = "gridCol本期借方" + sName;
            gridCol本期借方.FieldName = "本期借方" + sName;
            gridCol本期借方.Visible   = true;
            DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn gridCol本期贷方 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            gridCol本期贷方.Caption   = "贷方";
            gridCol本期贷方.Name      = "gridCol本期贷方" + sName;
            gridCol本期贷方.FieldName = "本期贷方" + sName;
            gridCol本期贷方.Visible   = true;

            DevExpress.XtraGrid.Views.BandedGrid.GridBand gridBand本期 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
            gridBand本期.AppearanceHeader.Options.UseTextOptions = true;
            gridBand本期.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            gridBand本期.Caption = "本期发生";
            gridBand本期.Name    = "gridBand本期" + sName;
            gridBand本期.Width   = 150;

            #endregion


            #region 期末余额

            DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn gridCol期末借方 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            gridCol期末借方.Caption   = "借方";
            gridCol期末借方.Name      = "gridCol期末借方" + sName;
            gridCol期末借方.FieldName = "期末借方" + sName;
            gridCol期末借方.Visible   = true;
            DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn gridCol期末贷方 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            gridCol期末贷方.Caption   = "贷方";
            gridCol期末贷方.Name      = "gridCol期末贷方" + sName;
            gridCol期末贷方.FieldName = "期末贷方" + sName;
            gridCol期末贷方.Visible   = true;

            DevExpress.XtraGrid.Views.BandedGrid.GridBand gridBand期末余额 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
            gridBand期末余额.AppearanceHeader.Options.UseTextOptions = true;
            gridBand期末余额.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            gridBand期末余额.Caption = "期末余额";
            gridBand期末余额.Name    = "gridBand期末余额" + sName;
            gridBand期末余额.Width   = 150;

            #endregion

            DevExpress.XtraGrid.Views.BandedGrid.GridBand gBand帐套 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
            gBand帐套.AppearanceHeader.Options.UseTextOptions = true;
            gBand帐套.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            gBand帐套.Caption = sCatpion;
            gBand帐套.Children.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.GridBand[] { gridBand期初余额 });
            gBand帐套.Children.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.GridBand[] { gridBand本期 });
            gBand帐套.Children.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.GridBand[] { gridBand期末余额 });
            gBand帐套.MinWidth = 20;
            gBand帐套.Name     = "gBand帐套";
            gBand帐套.Width    = 346;

            gridView1.Bands.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.GridBand[] { gBand帐套 });
            gridBand期初余额.Columns.Add(gridCol期初借方);
            gridBand期初余额.Columns.Add(gridCol期初贷方);

            gridBand本期.Columns.Add(gridCol本期借方);
            gridBand本期.Columns.Add(gridCol本期贷方);

            gridBand期末余额.Columns.Add(gridCol期末借方);
            gridBand期末余额.Columns.Add(gridCol期末贷方);
        }
コード例 #32
0
        private void FrmBurdenLineType_Load(object sender, EventArgs e)
        {
            string pjt = " ProjectID='" + MIS.ProgUID + "'";
            AreaList = Common.Services.BaseService.GetList<PS_Table_AreaWH>("SelectPS_Table_AreaWHByConn", pjt);

            if (!printManage)
            {
                barButtonItem1.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
                barButtonItem2.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;

            }

            if (!isselect)
            {
                barButtonItem4.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;

            }

            try
            {
                chart1.Series.Clear();

                IList<BurdenLine> list = Services.BaseService.GetList<BurdenLine>("SelectBurdenLineByType", " IsType = '1' and  uid like '%" + Itop.Client.MIS.ProgUID + "%' order by year(BurdenDate)");
                IList<BurdenByte> li1 = Services.BaseService.GetList<BurdenByte>("SelectBurdenByteByYear", " IsType = '1' and  uid like '%" + Itop.Client.MIS.ProgUID + "%' group by year(burdendate)  order by year(BurdenDate)");
                IList<BurdenByte> li2 = Services.BaseService.GetList<BurdenByte>("SelectBurdenByteByIsType", " IsType = '1' and  uid like '%" + Itop.Client.MIS.ProgUID + "%'   order by year(BurdenDate)");
                dt = Itop.Common.DataConverter.ToDataTable((IList)list, typeof(BurdenLine));
                //chart1.DataSource = dt;

                int licount1 = li1.Count;
                int licount2 = li2.Count;

                int numi = 0;
                int numj = 0;
                int numk = 0;

                if (li1.Count > 0)
                {
                   // this.bandedGridView1.GroupPanelText = "������" + li1[0].BurdenYear.ToString() + "��/" + li1[licount1 - 1].BurdenYear.ToString() + "���ļ��Ͷ��������ո������߱�";
                    this.bandedGridView1.GroupPanelText = li1[0].BurdenYear.ToString() + "��/" + li1[licount1 - 1].BurdenYear.ToString() + "���ļ��Ͷ��������ո������߱�";
                }

                DevExpress.XtraGrid.Views.BandedGrid.GridBand[] gridBand = new DevExpress.XtraGrid.Views.BandedGrid.GridBand[licount1 * 2];
                DevExpress.XtraGrid.Views.BandedGrid.GridBand[] gridBandDate = new DevExpress.XtraGrid.Views.BandedGrid.GridBand[licount2];
                DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn[] gridColumn = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn[licount1 + licount2];

                foreach (BurdenByte bb1 in li1)
                {
                    gridBand[numi] = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
                    gridBand[numi].Caption = bb1.BurdenYear.ToString() + "��";

                    gridBand[numi].Name = "gridBand" + bb1.BurdenYear.ToString();
                    gridBand[numi].AppearanceHeader.Options.UseTextOptions = true;
                    gridBand[numi].AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;

                    gridColumn[numk]=new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
                    gridColumn[numk].Caption = "Year" + bb1.BurdenYear.ToString();
                    gridColumn[numk].FieldName = "Year"+bb1.BurdenYear.ToString();
                    gridColumn[numk].Name = "Year" + bb1.BurdenYear.ToString();
                    gridColumn[numk].Visible = true;
                    gridColumn[numk].Width = 100;
                    gridColumn[numk].AppearanceCell.Options.UseTextOptions = true;
                    gridColumn[numk].AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
                    dataTable.Columns.Add("Year" + bb1.BurdenYear.ToString(), typeof(string));

                    bandedGridView1.Columns.Add(gridColumn[numk]);
                    gridBand[numi].Columns.Add(gridColumn[numk]);

                    this.bandedGridView1.Bands.Add(gridBand[numi]);
                    numi++;
                    numk++;

                    gridBand[numi] = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
                    gridBand[numi].Caption = "���͸�����";
                    gridBand[numi].Name = "gridBandBurden" + bb1.BurdenYear.ToString();
                    gridBand[numi].AppearanceHeader.Options.UseTextOptions = true;
                    gridBand[numi].AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
                    this.bandedGridView1.Bands.Add(gridBand[numi]);

                    foreach (BurdenByte bb2 in li2)
                    {
                        if (bb1.BurdenYear == bb2.BurdenYear)
                        {
                            DateTime datetime = bb2.BurdenDate;
                            gridBandDate[numj] = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
                            gridBandDate[numj].Name = "gridBandDate" + datetime.ToString("yyyyMMdd");
                            //gridBandDate[numj].Caption = bb2.Season + "(" + datetime.ToString("MM��dd��") + ")";
                            //gridBandDate[numj].Caption = FindArea(bb2.AreaID).ToString()+"_"+bb2.Season + "(" + datetime.ToString("MM��dd��") + ")";
                            gridBandDate[numj].Caption =  bb2.Season + "(" + datetime.ToString("MM��dd��") + ")";
                            gridBandDate[numj].AppearanceHeader.Options.UseTextOptions = true;
                            gridBandDate[numj].AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;

                            gridColumn[numk] = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
                            gridColumn[numk].Caption = "Day" +FindArea(bb2.AreaID).ToString()+"_"+ datetime.ToString("yyyyMMdd");
                            gridColumn[numk].FieldName = "Day" + FindArea(bb2.AreaID).ToString() + "_" + datetime.ToString("yyyyMMdd");
                            gridColumn[numk].Name = "Day" + FindArea(bb2.AreaID).ToString() + "_" + datetime.ToString("yyyyMMdd");
                            gridColumn[numk].Visible = true;
                            gridColumn[numk].Width = 100;
                            gridColumn[numk].DisplayFormat.FormatString = "n2";
                            //gridColumn[numk].DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
                            //dataTable.Columns.Add("Day" + FindArea(bb2.AreaID).ToString() + "_" + datetime.ToString("yyyyMMdd"), typeof(double));
                            dataTable.Columns.Add("Day" + FindArea(bb2.AreaID).ToString() + "_" + datetime.ToString("yyyyMMdd"), typeof(object));
                            bandedGridView1.Columns.Add(gridColumn[numk]);
                            gridBandDate[numj].Columns.Add(gridColumn[numk]);
                            gridBand[numi].Children.Add(gridBandDate[numj]);
                            numk++;
                            numj++;

                        }

                    }
                    numi++;
                }

                DataRow row1 = dataTable.NewRow();
                foreach (DataColumn column in dataTable.Columns)
                {
                    if (column.ColumnName.Substring(0, 4) == "Year")
                        row1[column] = "Сʱ";
                }
                foreach (DataColumn column in dataTable.Columns)
                {
                    if (column.ColumnName.Substring(0, 3) == "Day")
                        row1[column] = column.ColumnName.Substring(3, column.ColumnName.IndexOf("_")-3);
                }
                dataTable.Rows.Add(row1);

                for (int i = 1; i <= 24; i++)
                {
                    DataRow row = dataTable.NewRow();
                    foreach (DataColumn column in dataTable.Columns)
                    {
                        if (column.ColumnName.Substring(0, 4) == "Year")
                            row[column] = i.ToString();
                    }

                    foreach (BurdenLine bl in list)
                    {
                        DateTime dateTime = (DateTime)bl.BurdenDate;
                        PropertyInfo pi = bl.GetType().GetProperty("Hour" + i.ToString());
                        if (pi.GetValue(bl, null) != null)
                        {
                            row["Day" +FindArea(bl.AreaID).ToString()+ "_"+dateTime.ToString("yyyyMMdd")] = (double)pi.GetValue(bl, null);
                        }
                    }

                    //string aaa = "1111";
                    dataTable.Rows.Add(row);

                }

                 row1 = dataTable.NewRow();
                foreach (DataColumn column in dataTable.Columns)
                {
                    if (column.ColumnName.Substring(0, 4) == "Year")
                        row1[column] = "ƽ��������(%)";

                    foreach (BurdenLine bl in list)
                    {
                        DateTime dateTime = (DateTime)bl.BurdenDate;
                        PropertyInfo pi = bl.GetType().GetProperty("DayAverage");
                        if (pi.GetValue(bl, null) != null)
                        {
                            row1["Day" + FindArea(bl.AreaID).ToString() + "_"+dateTime.ToString("yyyyMMdd")] = Math.Round((double)pi.GetValue(bl, null) * 100,4);
                        }

                    }
                }
                dataTable.Rows.Add(row1);

                row1 = dataTable.NewRow();
                foreach (DataColumn column in dataTable.Columns)
                {
                    if (column.ColumnName.Substring(0, 4) == "Year")
                        row1[column] = "��������(%)";

                    foreach (BurdenLine bl in list)
                    {
                        DateTime dateTime = (DateTime)bl.BurdenDate;
                        PropertyInfo pi = bl.GetType().GetProperty("MinAverage");
                        if (pi.GetValue(bl, null) != null)
                        {
                            row1["Day" + FindArea(bl.AreaID).ToString() +"_"+ dateTime.ToString("yyyyMMdd")] = Math.Round((double)pi.GetValue(bl, null) * 100,4);
                        }

                    }
                }
                dataTable.Rows.Add(row1);

                foreach (DataRow row in dt.Rows)
                {
                    string seriesName="";
                    try
                    {
                        DateTime dateTime = (DateTime)row["BurdenDate"];
                        seriesName = FindArea(row["AreaID"].ToString()).ToString()+"_"+dateTime.ToString("yyyy��MM��dd��");
                    }
                    catch { }
                    chart1.Series.Add(seriesName);
                    chart1.Series[seriesName].Type = SeriesChartType.Line;
                    chart1.Series[seriesName].BorderWidth = 2;

                    for (int colIndex = 3; colIndex < 26; colIndex++)
                    {
                        string columnName = dt.Columns[colIndex].ColumnName;
                        double YVal = (double)row[columnName];

                        chart1.Series[seriesName].Points.AddXY(GetText(columnName), YVal);
                    }
                }

                gridControl1.DataSource = dataTable;
                this.bandedGridView1.OptionsView.ShowColumnHeaders = false;

            }
            catch (Exception ex) { Itop.Common.MsgBox.Show(ex.Message); }
        }
コード例 #33
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 protected void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmPostMasterDeletedQL));
     this.barManager1 = new DevExpress.XtraBars.BarManager(this.components);
     this.MainBar = new DevExpress.XtraBars.Bar();
     this.barButtonItemAdd = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItemXem = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItemDelete = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItemUpdate = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItemDeleteRealy = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItemRestore = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItemPrint = new DevExpress.XtraBars.BarButtonItem();
     this.popupMenu1 = new DevExpress.XtraBars.PopupMenu(this.components);
     this.barButtonItem4 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItemCommit = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItemNoCommit = new DevExpress.XtraBars.BarButtonItem();
     this.barSubItem1 = new DevExpress.XtraBars.BarSubItem();
     this.barButtonItemSearch = new DevExpress.XtraBars.BarButtonItem();
     this.popupMenuFilter = new DevExpress.XtraBars.PopupMenu(this.components);
     this.barCheckItemFilter = new DevExpress.XtraBars.BarCheckItem();
     this.barButtonItemClose = new DevExpress.XtraBars.BarButtonItem();
     this.barDockControlTop = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlBottom = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlLeft = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlRight = new DevExpress.XtraBars.BarDockControl();
     this.dockManager1 = new DevExpress.XtraBars.Docking.DockManager(this.components);
     this.dockPanel1 = new DevExpress.XtraBars.Docking.DockPanel();
     this.dockPanel1_Container = new DevExpress.XtraBars.Docking.ControlContainer();
     this.popupControlContainerFilter = new DevExpress.XtraBars.PopupControlContainer(this.components);
     this.plLabel5 = new System.Windows.Forms.PLLabel();
     this.NgayXoa = new ProtocolVN.Framework.Win.Trial.PLDateSelection();
     this.PhongBan = new ProtocolVN.Framework.Win.PLDMTreeMultiChoice();
     this.NguoiNhap = new ProtocolVN.Framework.Win.PLMultiCombobox();
     this.ngayNhap = new ProtocolVN.Framework.Win.Trial.PLDateSelection();
     this.MaCT = new DevExpress.XtraEditors.TextEdit();
     this.NoiDung = new ProtocolVN.App.VideoLibrary.PLTextEditAutocomplete();
     this.LoaiLuuTru = new ProtocolVN.Framework.Win.PLMultiCombobox();
     this.PostMaster = new ProtocolVN.Framework.Win.PLMultiCombobox();
     this.TietMuc = new ProtocolVN.Framework.Win.PLMultiCombobox();
     this.plLabel2 = new System.Windows.Forms.PLLabel();
     this.label10 = new System.Windows.Forms.PLLabel();
     this.label1 = new System.Windows.Forms.PLLabel();
     this.plLabel4 = new System.Windows.Forms.PLLabel();
     this.plLabel1 = new System.Windows.Forms.PLLabel();
     this.label29 = new System.Windows.Forms.PLLabel();
     this.label3 = new System.Windows.Forms.PLLabel();
     this.label5 = new System.Windows.Forms.PLLabel();
     this.barStaticItem1 = new DevExpress.XtraBars.BarStaticItem();
     this.barButtonItem1 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem2 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem3 = new DevExpress.XtraBars.BarButtonItem();
     this.splitContainerControl1 = new DevExpress.XtraEditors.SplitContainerControl();
     this.gridControlMaster = new DevExpress.XtraGrid.GridControl();
     this.gridViewMaster = new DevExpress.XtraGrid.Views.BandedGrid.PLBandedGridView();
     this.Col_PM_PostMaster = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_PM_TongTap = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_PM_LoaiLuu = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_PM_PopUp = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_PM_ThoiLuongChung = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_PM_TTDinhKem = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_PM_ThanhLy = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_PM_NgayNhapKho = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_PM_Ke = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_PM_Ngan = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_PM_Tang = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_PM_SODKCBHD = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_PM_DVDNgayDuyet = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_PM_DVDNgayHoanTat = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_PM_NoiLuuTru = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_PM_LoaiFile = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.xtraTabControlDetail = new DevExpress.XtraTab.XtraTabControl();
     this.xtraTabPageDetail = new DevExpress.XtraTab.XtraTabPage();
     this.gridControlDetail = new DevExpress.XtraGrid.GridControl();
     this.gridViewDetail = new DevExpress.XtraGrid.Views.Grid.PLGridView();
     this.Col_BM_ThanhLy = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Col_BM_MaBang = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Col_BM_TapSo = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Col_BM_TenTap = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Col_BM_SoBang = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Col_BM_ThongSo = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Col_BM_ThoiLuong = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Col_BM_SoDKCBHD = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Col_BM_NoiLuuTru = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Col_PM_MaChuongTrinh = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_PM_TenChuongTrinh = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_PM_TietMuc = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridBandChuongTrinh = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.gridBandPostMaster = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     ((System.ComponentModel.ISupportInitialize)(this.barManager1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.popupMenu1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.popupMenuFilter)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dockManager1)).BeginInit();
     this.dockPanel1.SuspendLayout();
     this.dockPanel1_Container.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.popupControlContainerFilter)).BeginInit();
     this.popupControlContainerFilter.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.NguoiNhap.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.MaCT.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.NoiDung.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.LoaiLuuTru.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.PostMaster.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TietMuc.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl1)).BeginInit();
     this.splitContainerControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMaster)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMaster)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControlDetail)).BeginInit();
     this.xtraTabControlDetail.SuspendLayout();
     this.xtraTabPageDetail.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlDetail)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewDetail)).BeginInit();
     this.SuspendLayout();
     //
     // barManager1
     //
     this.barManager1.Bars.AddRange(new DevExpress.XtraBars.Bar[] {
     this.MainBar});
     this.barManager1.DockControls.Add(this.barDockControlTop);
     this.barManager1.DockControls.Add(this.barDockControlBottom);
     this.barManager1.DockControls.Add(this.barDockControlLeft);
     this.barManager1.DockControls.Add(this.barDockControlRight);
     this.barManager1.DockManager = this.dockManager1;
     this.barManager1.Form = this;
     this.barManager1.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
     this.barButtonItemAdd,
     this.barButtonItemDelete,
     this.barButtonItemUpdate,
     this.barButtonItemPrint,
     this.barStaticItem1,
     this.barButtonItem1,
     this.barButtonItem2,
     this.barButtonItemCommit,
     this.barButtonItemNoCommit,
     this.barSubItem1,
     this.barButtonItemXem,
     this.barButtonItemSearch,
     this.barButtonItemClose,
     this.barCheckItemFilter,
     this.barButtonItem3,
     this.barButtonItem4,
     this.barButtonItemDeleteRealy,
     this.barButtonItemRestore});
     this.barManager1.MaxItemId = 36;
     //
     // MainBar
     //
     this.MainBar.BarName = "MainBar";
     this.MainBar.DockCol = 0;
     this.MainBar.DockRow = 0;
     this.MainBar.DockStyle = DevExpress.XtraBars.BarDockStyle.Top;
     this.MainBar.FloatLocation = new System.Drawing.Point(39, 133);
     this.MainBar.FloatSize = new System.Drawing.Size(72, 73);
     this.MainBar.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.Caption, this.barButtonItemAdd, "&Thêm"),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemXem),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemDelete),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemUpdate),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemDeleteRealy),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemRestore),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemPrint, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemCommit, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemNoCommit),
     new DevExpress.XtraBars.LinkPersistInfo(this.barSubItem1, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemSearch, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemClose, true)});
     this.MainBar.OptionsBar.AllowQuickCustomization = false;
     this.MainBar.OptionsBar.DrawDragBorder = false;
     this.MainBar.OptionsBar.RotateWhenVertical = false;
     this.MainBar.OptionsBar.UseWholeRow = true;
     this.MainBar.Text = "Custom 1";
     //
     // barButtonItemAdd
     //
     this.barButtonItemAdd.Caption = "Thêm";
     this.barButtonItemAdd.Id = 0;
     this.barButtonItemAdd.Name = "barButtonItemAdd";
     this.barButtonItemAdd.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // barButtonItemXem
     //
     this.barButtonItemXem.Caption = "&Xem";
     this.barButtonItemXem.Id = 24;
     this.barButtonItemXem.Name = "barButtonItemXem";
     this.barButtonItemXem.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // barButtonItemDelete
     //
     this.barButtonItemDelete.Caption = "&Xóa";
     this.barButtonItemDelete.Id = 1;
     this.barButtonItemDelete.Name = "barButtonItemDelete";
     this.barButtonItemDelete.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // barButtonItemUpdate
     //
     this.barButtonItemUpdate.Caption = "&Sửa";
     this.barButtonItemUpdate.Id = 2;
     this.barButtonItemUpdate.Name = "barButtonItemUpdate";
     this.barButtonItemUpdate.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // barButtonItemDeleteRealy
     //
     this.barButtonItemDeleteRealy.Caption = "&Xóa hẳn";
     this.barButtonItemDeleteRealy.Id = 34;
     this.barButtonItemDeleteRealy.Name = "barButtonItemDeleteRealy";
     //
     // barButtonItemRestore
     //
     this.barButtonItemRestore.Caption = "&Phục hồi";
     this.barButtonItemRestore.Id = 35;
     this.barButtonItemRestore.Name = "barButtonItemRestore";
     //
     // barButtonItemPrint
     //
     this.barButtonItemPrint.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown;
     this.barButtonItemPrint.Caption = "&In";
     this.barButtonItemPrint.DropDownControl = this.popupMenu1;
     this.barButtonItemPrint.Id = 3;
     this.barButtonItemPrint.Name = "barButtonItemPrint";
     this.barButtonItemPrint.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // popupMenu1
     //
     this.popupMenu1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem4)});
     this.popupMenu1.Manager = this.barManager1;
     this.popupMenu1.Name = "popupMenu1";
     //
     // barButtonItem4
     //
     this.barButtonItem4.Caption = "Xem trước";
     this.barButtonItem4.Id = 33;
     this.barButtonItem4.Name = "barButtonItem4";
     //
     // barButtonItemCommit
     //
     this.barButtonItemCommit.Caption = "&Duyệt";
     this.barButtonItemCommit.Id = 17;
     this.barButtonItemCommit.Name = "barButtonItemCommit";
     this.barButtonItemCommit.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // barButtonItemNoCommit
     //
     this.barButtonItemNoCommit.Caption = "&Không duyệt";
     this.barButtonItemNoCommit.Id = 18;
     this.barButtonItemNoCommit.Name = "barButtonItemNoCommit";
     this.barButtonItemNoCommit.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // barSubItem1
     //
     this.barSubItem1.Caption = "Nghiệp vụ";
     this.barSubItem1.Id = 20;
     this.barSubItem1.Name = "barSubItem1";
     this.barSubItem1.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // barButtonItemSearch
     //
     this.barButtonItemSearch.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown;
     this.barButtonItemSearch.Caption = "Tìm kiếm";
     this.barButtonItemSearch.DropDownControl = this.popupMenuFilter;
     this.barButtonItemSearch.Id = 27;
     this.barButtonItemSearch.Name = "barButtonItemSearch";
     this.barButtonItemSearch.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // popupMenuFilter
     //
     this.popupMenuFilter.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.barCheckItemFilter)});
     this.popupMenuFilter.Manager = this.barManager1;
     this.popupMenuFilter.Name = "popupMenuFilter";
     //
     // barCheckItemFilter
     //
     this.barCheckItemFilter.Caption = "Điều &kiện lọc";
     this.barCheckItemFilter.Checked = true;
     this.barCheckItemFilter.Id = 29;
     this.barCheckItemFilter.Name = "barCheckItemFilter";
     this.barCheckItemFilter.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.barCheckItemFilter.CheckedChanged += new DevExpress.XtraBars.ItemClickEventHandler(this.barCheckItemFilter_CheckedChanged);
     //
     // barButtonItemClose
     //
     this.barButtonItemClose.Caption = "Đóng";
     this.barButtonItemClose.Id = 28;
     this.barButtonItemClose.Name = "barButtonItemClose";
     this.barButtonItemClose.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // barDockControlTop
     //
     this.barDockControlTop.Dock = System.Windows.Forms.DockStyle.Top;
     this.barDockControlTop.Location = new System.Drawing.Point(0, 0);
     this.barDockControlTop.Size = new System.Drawing.Size(1008, 24);
     //
     // barDockControlBottom
     //
     this.barDockControlBottom.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.barDockControlBottom.Location = new System.Drawing.Point(0, 545);
     this.barDockControlBottom.Size = new System.Drawing.Size(1008, 0);
     //
     // barDockControlLeft
     //
     this.barDockControlLeft.Dock = System.Windows.Forms.DockStyle.Left;
     this.barDockControlLeft.Location = new System.Drawing.Point(0, 24);
     this.barDockControlLeft.Size = new System.Drawing.Size(0, 521);
     //
     // barDockControlRight
     //
     this.barDockControlRight.Dock = System.Windows.Forms.DockStyle.Right;
     this.barDockControlRight.Location = new System.Drawing.Point(1008, 24);
     this.barDockControlRight.Size = new System.Drawing.Size(0, 521);
     //
     // dockManager1
     //
     this.dockManager1.Form = this;
     this.dockManager1.RootPanels.AddRange(new DevExpress.XtraBars.Docking.DockPanel[] {
     this.dockPanel1});
     this.dockManager1.TopZIndexControls.AddRange(new string[] {
     "DevExpress.XtraBars.BarDockControl",
     "DevExpress.XtraBars.StandaloneBarDockControl",
     "System.Windows.Forms.StatusBar",
     "DevExpress.XtraBars.Ribbon.RibbonStatusBar",
     "DevExpress.XtraBars.Ribbon.RibbonControl"});
     //
     // dockPanel1
     //
     this.dockPanel1.Controls.Add(this.dockPanel1_Container);
     this.dockPanel1.Dock = DevExpress.XtraBars.Docking.DockingStyle.Top;
     this.dockPanel1.FloatVertical = true;
     this.dockPanel1.ID = new System.Guid("437240ce-168d-4c05-a0b9-c702ea5e41f7");
     this.dockPanel1.Location = new System.Drawing.Point(0, 24);
     this.dockPanel1.Name = "dockPanel1";
     this.dockPanel1.Options.AllowDockLeft = false;
     this.dockPanel1.Options.AllowDockRight = false;
     this.dockPanel1.OriginalSize = new System.Drawing.Size(200, 109);
     this.dockPanel1.Size = new System.Drawing.Size(1008, 109);
     this.dockPanel1.Text = "Điều kiện tìm kiếm";
     this.dockPanel1.VisibilityChanged += new DevExpress.XtraBars.Docking.VisibilityChangedEventHandler(this.dockPanel1_VisibilityChanged);
     //
     // dockPanel1_Container
     //
     this.dockPanel1_Container.Controls.Add(this.popupControlContainerFilter);
     this.dockPanel1_Container.Location = new System.Drawing.Point(3, 25);
     this.dockPanel1_Container.Name = "dockPanel1_Container";
     this.dockPanel1_Container.Size = new System.Drawing.Size(1002, 81);
     this.dockPanel1_Container.TabIndex = 0;
     //
     // popupControlContainerFilter
     //
     this.popupControlContainerFilter.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.popupControlContainerFilter.Controls.Add(this.plLabel5);
     this.popupControlContainerFilter.Controls.Add(this.NgayXoa);
     this.popupControlContainerFilter.Controls.Add(this.PhongBan);
     this.popupControlContainerFilter.Controls.Add(this.NguoiNhap);
     this.popupControlContainerFilter.Controls.Add(this.ngayNhap);
     this.popupControlContainerFilter.Controls.Add(this.MaCT);
     this.popupControlContainerFilter.Controls.Add(this.NoiDung);
     this.popupControlContainerFilter.Controls.Add(this.LoaiLuuTru);
     this.popupControlContainerFilter.Controls.Add(this.PostMaster);
     this.popupControlContainerFilter.Controls.Add(this.TietMuc);
     this.popupControlContainerFilter.Controls.Add(this.plLabel2);
     this.popupControlContainerFilter.Controls.Add(this.label10);
     this.popupControlContainerFilter.Controls.Add(this.label1);
     this.popupControlContainerFilter.Controls.Add(this.plLabel4);
     this.popupControlContainerFilter.Controls.Add(this.plLabel1);
     this.popupControlContainerFilter.Controls.Add(this.label29);
     this.popupControlContainerFilter.Controls.Add(this.label3);
     this.popupControlContainerFilter.Controls.Add(this.label5);
     this.popupControlContainerFilter.Dock = System.Windows.Forms.DockStyle.Fill;
     this.popupControlContainerFilter.Location = new System.Drawing.Point(0, 0);
     this.popupControlContainerFilter.Manager = this.barManager1;
     this.popupControlContainerFilter.Name = "popupControlContainerFilter";
     this.popupControlContainerFilter.Size = new System.Drawing.Size(1002, 81);
     this.popupControlContainerFilter.TabIndex = 5;
     this.popupControlContainerFilter.Visible = false;
     //
     // plLabel5
     //
     this.plLabel5.Location = new System.Drawing.Point(648, 61);
     this.plLabel5.Name = "plLabel5";
     this.plLabel5.Size = new System.Drawing.Size(46, 13);
     this.plLabel5.TabIndex = 237;
     this.plLabel5.Text = "Ngày xóa";
     this.plLabel5.ZZZType = System.Windows.Forms.PLLabel.LabelType.NORMAL;
     //
     // NgayXoa
     //
     this.NgayXoa.Caption = "Từ ngày 11/16/2011 đến ngày 11/23/2011";
     this.NgayXoa.Default = ProtocolVN.Framework.Win.Trial.SelectionTypes.FromDateToDate;
     this.NgayXoa.FirstFrom = new System.DateTime(2011, 11, 16, 0, 16, 2, 406);
     this.NgayXoa.FirstTo = new System.DateTime(2011, 11, 23, 0, 16, 2, 406);
     this.NgayXoa.FromDate = new System.DateTime(2011, 11, 16, 0, 16, 2, 406);
     this.NgayXoa.Location = new System.Drawing.Point(712, 56);
     this.NgayXoa.Name = "NgayXoa";
     this.NgayXoa.ReturnType = ProtocolVN.Framework.Win.Trial.TimeType.Date;
     this.NgayXoa.SecondFrom = new System.DateTime(2011, 11, 16, 0, 16, 2, 406);
     this.NgayXoa.SecondTo = new System.DateTime(2011, 11, 23, 0, 16, 2, 406);
     this.NgayXoa.SelectedType = ProtocolVN.Framework.Win.Trial.SelectionTypes.FromDateToDate;
     this.NgayXoa.Size = new System.Drawing.Size(285, 21);
     this.NgayXoa.TabIndex = 236;
     this.NgayXoa.ToDate = new System.DateTime(2011, 11, 23, 0, 16, 2, 406);
     this.NgayXoa.Types = ((ProtocolVN.Framework.Win.Trial.SelectionTypes)(((((((((ProtocolVN.Framework.Win.Trial.SelectionTypes.OneDate | ProtocolVN.Framework.Win.Trial.SelectionTypes.OneMonth)
                 | ProtocolVN.Framework.Win.Trial.SelectionTypes.OneQuarter)
                 | ProtocolVN.Framework.Win.Trial.SelectionTypes.OneYear)
                 | ProtocolVN.Framework.Win.Trial.SelectionTypes.SixMonths)
                 | ProtocolVN.Framework.Win.Trial.SelectionTypes.FromDateToDate)
                 | ProtocolVN.Framework.Win.Trial.SelectionTypes.FromMonthToMonth)
                 | ProtocolVN.Framework.Win.Trial.SelectionTypes.FromQuarterToQuarter)
                 | ProtocolVN.Framework.Win.Trial.SelectionTypes.FromYearToYear)));
     //
     // PhongBan
     //
     this.PhongBan.Location = new System.Drawing.Point(338, 32);
     this.PhongBan.Name = "PhongBan";
     this.PhongBan.Size = new System.Drawing.Size(187, 20);
     this.PhongBan.TabIndex = 10;
     //
     // NguoiNhap
     //
     this.NguoiNhap.DataSource = null;
     this.NguoiNhap.DisplayField = null;
     this.NguoiNhap.Location = new System.Drawing.Point(338, 8);
     this.NguoiNhap.Name = "NguoiNhap";
     this.NguoiNhap.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.NguoiNhap.Size = new System.Drawing.Size(187, 20);
     this.NguoiNhap.TabIndex = 227;
     this.NguoiNhap.ValueField = null;
     //
     // ngayNhap
     //
     this.ngayNhap.Caption = "Từ ngày 11/16/2011 đến ngày 11/23/2011";
     this.ngayNhap.Default = ProtocolVN.Framework.Win.Trial.SelectionTypes.FromDateToDate;
     this.ngayNhap.FirstFrom = new System.DateTime(2011, 11, 16, 0, 16, 2, 468);
     this.ngayNhap.FirstTo = new System.DateTime(2011, 11, 23, 0, 16, 2, 468);
     this.ngayNhap.FromDate = new System.DateTime(2011, 11, 16, 0, 16, 2, 468);
     this.ngayNhap.Location = new System.Drawing.Point(338, 57);
     this.ngayNhap.Name = "ngayNhap";
     this.ngayNhap.ReturnType = ProtocolVN.Framework.Win.Trial.TimeType.Date;
     this.ngayNhap.SecondFrom = new System.DateTime(2011, 11, 16, 0, 16, 2, 468);
     this.ngayNhap.SecondTo = new System.DateTime(2011, 11, 23, 0, 16, 2, 468);
     this.ngayNhap.SelectedType = ProtocolVN.Framework.Win.Trial.SelectionTypes.FromDateToDate;
     this.ngayNhap.Size = new System.Drawing.Size(285, 21);
     this.ngayNhap.TabIndex = 226;
     this.ngayNhap.ToDate = new System.DateTime(2011, 11, 23, 0, 16, 2, 468);
     this.ngayNhap.Types = ((ProtocolVN.Framework.Win.Trial.SelectionTypes)(((((((((ProtocolVN.Framework.Win.Trial.SelectionTypes.OneDate | ProtocolVN.Framework.Win.Trial.SelectionTypes.OneMonth)
                 | ProtocolVN.Framework.Win.Trial.SelectionTypes.OneQuarter)
                 | ProtocolVN.Framework.Win.Trial.SelectionTypes.OneYear)
                 | ProtocolVN.Framework.Win.Trial.SelectionTypes.SixMonths)
                 | ProtocolVN.Framework.Win.Trial.SelectionTypes.FromDateToDate)
                 | ProtocolVN.Framework.Win.Trial.SelectionTypes.FromMonthToMonth)
                 | ProtocolVN.Framework.Win.Trial.SelectionTypes.FromQuarterToQuarter)
                 | ProtocolVN.Framework.Win.Trial.SelectionTypes.FromYearToYear)));
     //
     // MaCT
     //
     this.MaCT.Location = new System.Drawing.Point(48, 8);
     this.MaCT.Name = "MaCT";
     this.MaCT.Size = new System.Drawing.Size(214, 20);
     this.MaCT.TabIndex = 223;
     //
     // NoiDung
     //
     this.NoiDung._DataSource = null;
     this.NoiDung._GetField = null;
     this.NoiDung.Location = new System.Drawing.Point(48, 32);
     this.NoiDung.Name = "NoiDung";
     this.NoiDung.Properties.CloseUpKey = new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None);
     this.NoiDung.Size = new System.Drawing.Size(214, 20);
     this.NoiDung.TabIndex = 222;
     //
     // LoaiLuuTru
     //
     this.LoaiLuuTru.DataSource = null;
     this.LoaiLuuTru.DisplayField = null;
     this.LoaiLuuTru.Location = new System.Drawing.Point(608, 32);
     this.LoaiLuuTru.Name = "LoaiLuuTru";
     this.LoaiLuuTru.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.LoaiLuuTru.Size = new System.Drawing.Size(185, 20);
     this.LoaiLuuTru.TabIndex = 220;
     this.LoaiLuuTru.ValueField = null;
     //
     // PostMaster
     //
     this.PostMaster.DataSource = null;
     this.PostMaster.DisplayField = null;
     this.PostMaster.Location = new System.Drawing.Point(608, 8);
     this.PostMaster.Name = "PostMaster";
     this.PostMaster.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.PostMaster.Size = new System.Drawing.Size(185, 20);
     this.PostMaster.TabIndex = 220;
     this.PostMaster.ValueField = null;
     //
     // TietMuc
     //
     this.TietMuc.DataSource = null;
     this.TietMuc.DisplayField = null;
     this.TietMuc.Location = new System.Drawing.Point(48, 56);
     this.TietMuc.Name = "TietMuc";
     this.TietMuc.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.TietMuc.Size = new System.Drawing.Size(214, 20);
     this.TietMuc.TabIndex = 216;
     this.TietMuc.ValueField = null;
     //
     // plLabel2
     //
     this.plLabel2.Location = new System.Drawing.Point(544, 40);
     this.plLabel2.Name = "plLabel2";
     this.plLabel2.Size = new System.Drawing.Size(55, 13);
     this.plLabel2.TabIndex = 213;
     this.plLabel2.Text = "Loại lưu trữ";
     this.plLabel2.ToolTip = "Nước sản xuất";
     this.plLabel2.ZZZType = System.Windows.Forms.PLLabel.LabelType.NORMAL;
     //
     // label10
     //
     this.label10.Location = new System.Drawing.Point(544, 12);
     this.label10.Name = "label10";
     this.label10.Size = new System.Drawing.Size(58, 13);
     this.label10.TabIndex = 213;
     this.label10.Text = "Post/Master";
     this.label10.ToolTip = "Nước sản xuất";
     this.label10.ZZZType = System.Windows.Forms.PLLabel.LabelType.NORMAL;
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(4, 12);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(30, 13);
     this.label1.TabIndex = 214;
     this.label1.Text = "Mã CT";
     this.label1.ZZZType = System.Windows.Forms.PLLabel.LabelType.NORMAL;
     //
     // plLabel4
     //
     this.plLabel4.Location = new System.Drawing.Point(275, 12);
     this.plLabel4.Name = "plLabel4";
     this.plLabel4.Size = new System.Drawing.Size(55, 13);
     this.plLabel4.TabIndex = 217;
     this.plLabel4.Text = "Người nhập";
     this.plLabel4.ZZZType = System.Windows.Forms.PLLabel.LabelType.NORMAL;
     //
     // plLabel1
     //
     this.plLabel1.Location = new System.Drawing.Point(275, 36);
     this.plLabel1.Name = "plLabel1";
     this.plLabel1.Size = new System.Drawing.Size(51, 13);
     this.plLabel1.TabIndex = 217;
     this.plLabel1.Text = "Phòng ban";
     this.plLabel1.ZZZType = System.Windows.Forms.PLLabel.LabelType.NORMAL;
     //
     // label29
     //
     this.label29.Location = new System.Drawing.Point(274, 59);
     this.label29.Name = "label29";
     this.label29.Size = new System.Drawing.Size(52, 13);
     this.label29.TabIndex = 217;
     this.label29.Text = "Ngày nhập";
     this.label29.ZZZType = System.Windows.Forms.PLLabel.LabelType.NORMAL;
     //
     // label3
     //
     this.label3.Location = new System.Drawing.Point(3, 36);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(34, 13);
     this.label3.TabIndex = 218;
     this.label3.Text = "Tên CT";
     this.label3.ZZZType = System.Windows.Forms.PLLabel.LabelType.NORMAL;
     //
     // label5
     //
     this.label5.Location = new System.Drawing.Point(2, 60);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(40, 13);
     this.label5.TabIndex = 219;
     this.label5.Text = "Tiết mục";
     this.label5.ZZZType = System.Windows.Forms.PLLabel.LabelType.NORMAL;
     //
     // barStaticItem1
     //
     this.barStaticItem1.AutoSize = DevExpress.XtraBars.BarStaticItemSize.None;
     this.barStaticItem1.Border = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.barStaticItem1.Id = 13;
     this.barStaticItem1.Name = "barStaticItem1";
     this.barStaticItem1.TextAlignment = System.Drawing.StringAlignment.Near;
     this.barStaticItem1.Width = 100;
     //
     // barButtonItem1
     //
     this.barButtonItem1.Caption = "barButtonItem1";
     this.barButtonItem1.Id = 14;
     this.barButtonItem1.Name = "barButtonItem1";
     //
     // barButtonItem2
     //
     this.barButtonItem2.Caption = "barButtonItem2";
     this.barButtonItem2.Id = 15;
     this.barButtonItem2.Name = "barButtonItem2";
     //
     // barButtonItem3
     //
     this.barButtonItem3.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown;
     this.barButtonItem3.Caption = "In";
     this.barButtonItem3.Id = 30;
     this.barButtonItem3.Name = "barButtonItem3";
     //
     // splitContainerControl1
     //
     this.splitContainerControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.splitContainerControl1.Horizontal = false;
     this.splitContainerControl1.Location = new System.Drawing.Point(0, 133);
     this.splitContainerControl1.Name = "splitContainerControl1";
     this.splitContainerControl1.Panel1.Controls.Add(this.gridControlMaster);
     this.splitContainerControl1.Panel1.Text = "splitContainerControl1_Panel1";
     this.splitContainerControl1.Panel2.CaptionLocation = DevExpress.Utils.Locations.Left;
     this.splitContainerControl1.Panel2.Controls.Add(this.xtraTabControlDetail);
     this.splitContainerControl1.Panel2.ShowCaption = true;
     this.splitContainerControl1.Panel2.Text = "splitContainerControl1_Panel2";
     this.splitContainerControl1.Size = new System.Drawing.Size(1008, 412);
     this.splitContainerControl1.SplitterPosition = 216;
     this.splitContainerControl1.TabIndex = 4;
     this.splitContainerControl1.Text = "splitContainerControl1";
     //
     // gridControlMaster
     //
     this.gridControlMaster.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("gridControlMaster.BackgroundImage")));
     this.gridControlMaster.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
     this.gridControlMaster.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gridControlMaster.Location = new System.Drawing.Point(0, 0);
     this.gridControlMaster.MainView = this.gridViewMaster;
     this.gridControlMaster.Name = "gridControlMaster";
     this.gridControlMaster.Size = new System.Drawing.Size(1008, 216);
     this.gridControlMaster.TabIndex = 10;
     this.gridControlMaster.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewMaster});
     //
     // gridViewMaster
     //
     this.gridViewMaster.Appearance.HeaderPanel.Options.UseTextOptions = true;
     this.gridViewMaster.Appearance.HeaderPanel.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridViewMaster.Bands.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.GridBand[] {
     this.gridBandChuongTrinh,
     this.gridBandPostMaster});
     this.gridViewMaster.Columns.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn[] {
     this.Col_PM_PostMaster,
     this.Col_PM_ThanhLy,
     this.Col_PM_LoaiLuu,
     this.Col_PM_TongTap,
     this.Col_PM_Ke,
     this.Col_PM_Ngan,
     this.Col_PM_Tang,
     this.Col_PM_PopUp,
     this.Col_PM_TTDinhKem,
     this.Col_PM_NgayNhapKho,
     this.Col_PM_DVDNgayDuyet,
     this.Col_PM_DVDNgayHoanTat,
     this.Col_PM_SODKCBHD,
     this.Col_PM_NoiLuuTru,
     this.Col_PM_LoaiFile,
     this.Col_PM_ThoiLuongChung,
     this.Col_PM_MaChuongTrinh,
     this.Col_PM_TenChuongTrinh,
     this.Col_PM_TietMuc});
     this.gridViewMaster.GridControl = this.gridControlMaster;
     this.gridViewMaster.IndicatorWidth = 40;
     this.gridViewMaster.Name = "gridViewMaster";
     this.gridViewMaster.OptionsLayout.Columns.AddNewColumns = false;
     this.gridViewMaster.OptionsNavigation.AutoFocusNewRow = true;
     this.gridViewMaster.OptionsNavigation.EnterMoveNextColumn = true;
     this.gridViewMaster.OptionsPrint.UsePrintStyles = true;
     this.gridViewMaster.OptionsView.ColumnAutoWidth = false;
     this.gridViewMaster.OptionsView.EnableAppearanceEvenRow = true;
     this.gridViewMaster.OptionsView.EnableAppearanceOddRow = true;
     this.gridViewMaster.OptionsView.NewItemRowPosition = DevExpress.XtraGrid.Views.Grid.NewItemRowPosition.Bottom;
     this.gridViewMaster.OptionsView.ShowGroupPanel = false;
     //
     // Col_PM_PostMaster
     //
     this.Col_PM_PostMaster.Caption = "Post/Master";
     this.Col_PM_PostMaster.Name = "Col_PM_PostMaster";
     this.Col_PM_PostMaster.OptionsColumn.AllowMove = false;
     this.Col_PM_PostMaster.OptionsColumn.AllowShowHide = false;
     this.Col_PM_PostMaster.Visible = true;
     this.Col_PM_PostMaster.Width = 70;
     //
     // Col_PM_TongTap
     //
     this.Col_PM_TongTap.Caption = "Số tập gốc/cắt";
     this.Col_PM_TongTap.Name = "Col_PM_TongTap";
     this.Col_PM_TongTap.Visible = true;
     this.Col_PM_TongTap.Width = 82;
     //
     // Col_PM_LoaiLuu
     //
     this.Col_PM_LoaiLuu.Caption = "Loại lưu trữ";
     this.Col_PM_LoaiLuu.Name = "Col_PM_LoaiLuu";
     this.Col_PM_LoaiLuu.Visible = true;
     this.Col_PM_LoaiLuu.Width = 67;
     //
     // Col_PM_PopUp
     //
     this.Col_PM_PopUp.Caption = "Pop Up";
     this.Col_PM_PopUp.Name = "Col_PM_PopUp";
     this.Col_PM_PopUp.Visible = true;
     this.Col_PM_PopUp.Width = 46;
     //
     // Col_PM_ThoiLuongChung
     //
     this.Col_PM_ThoiLuongChung.Caption = "Thời lượng chung";
     this.Col_PM_ThoiLuongChung.Name = "Col_PM_ThoiLuongChung";
     this.Col_PM_ThoiLuongChung.Visible = true;
     this.Col_PM_ThoiLuongChung.Width = 94;
     //
     // Col_PM_TTDinhKem
     //
     this.Col_PM_TTDinhKem.Caption = "TT Đính kèm";
     this.Col_PM_TTDinhKem.Name = "Col_PM_TTDinhKem";
     this.Col_PM_TTDinhKem.Visible = true;
     this.Col_PM_TTDinhKem.Width = 71;
     //
     // Col_PM_ThanhLy
     //
     this.Col_PM_ThanhLy.Caption = "Thanh lý";
     this.Col_PM_ThanhLy.Name = "Col_PM_ThanhLy";
     this.Col_PM_ThanhLy.Visible = true;
     this.Col_PM_ThanhLy.Width = 53;
     //
     // Col_PM_NgayNhapKho
     //
     this.Col_PM_NgayNhapKho.Caption = "Ngày nhập kho";
     this.Col_PM_NgayNhapKho.Name = "Col_PM_NgayNhapKho";
     this.Col_PM_NgayNhapKho.Visible = true;
     this.Col_PM_NgayNhapKho.Width = 84;
     //
     // Col_PM_Ke
     //
     this.Col_PM_Ke.Caption = "Kệ";
     this.Col_PM_Ke.Name = "Col_PM_Ke";
     this.Col_PM_Ke.Visible = true;
     this.Col_PM_Ke.Width = 24;
     //
     // Col_PM_Ngan
     //
     this.Col_PM_Ngan.Caption = "Ngăn";
     this.Col_PM_Ngan.Name = "Col_PM_Ngan";
     this.Col_PM_Ngan.Visible = true;
     this.Col_PM_Ngan.Width = 37;
     //
     // Col_PM_Tang
     //
     this.Col_PM_Tang.Caption = "Tầng";
     this.Col_PM_Tang.Name = "Col_PM_Tang";
     this.Col_PM_Tang.Visible = true;
     this.Col_PM_Tang.Width = 36;
     //
     // Col_PM_SODKCBHD
     //
     this.Col_PM_SODKCBHD.Caption = "Số ĐKCB HD";
     this.Col_PM_SODKCBHD.Name = "Col_PM_SODKCBHD";
     this.Col_PM_SODKCBHD.Visible = true;
     this.Col_PM_SODKCBHD.Width = 71;
     //
     // Col_PM_DVDNgayDuyet
     //
     this.Col_PM_DVDNgayDuyet.Caption = "DVD ngày duyệt";
     this.Col_PM_DVDNgayDuyet.Name = "Col_PM_DVDNgayDuyet";
     this.Col_PM_DVDNgayDuyet.Visible = true;
     this.Col_PM_DVDNgayDuyet.Width = 90;
     //
     // Col_PM_DVDNgayHoanTat
     //
     this.Col_PM_DVDNgayHoanTat.Caption = "DVD Ngày hoàn tất";
     this.Col_PM_DVDNgayHoanTat.Name = "Col_PM_DVDNgayHoanTat";
     this.Col_PM_DVDNgayHoanTat.Visible = true;
     this.Col_PM_DVDNgayHoanTat.Width = 104;
     //
     // Col_PM_NoiLuuTru
     //
     this.Col_PM_NoiLuuTru.Caption = "Nơi lưu trữ";
     this.Col_PM_NoiLuuTru.Name = "Col_PM_NoiLuuTru";
     this.Col_PM_NoiLuuTru.Visible = true;
     this.Col_PM_NoiLuuTru.Width = 63;
     //
     // Col_PM_LoaiFile
     //
     this.Col_PM_LoaiFile.Caption = "Loại file";
     this.Col_PM_LoaiFile.Name = "Col_PM_LoaiFile";
     this.Col_PM_LoaiFile.Visible = true;
     this.Col_PM_LoaiFile.Width = 48;
     //
     // xtraTabControlDetail
     //
     this.xtraTabControlDetail.Dock = System.Windows.Forms.DockStyle.Fill;
     this.xtraTabControlDetail.Location = new System.Drawing.Point(0, 0);
     this.xtraTabControlDetail.Name = "xtraTabControlDetail";
     this.xtraTabControlDetail.SelectedTabPage = this.xtraTabPageDetail;
     this.xtraTabControlDetail.Size = new System.Drawing.Size(1008, 190);
     this.xtraTabControlDetail.TabIndex = 10;
     this.xtraTabControlDetail.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
     this.xtraTabPageDetail});
     //
     // xtraTabPageDetail
     //
     this.xtraTabPageDetail.Controls.Add(this.gridControlDetail);
     this.xtraTabPageDetail.Name = "xtraTabPageDetail";
     this.xtraTabPageDetail.Size = new System.Drawing.Size(1001, 161);
     this.xtraTabPageDetail.Text = "Danh sách biên mục";
     //
     // gridControlDetail
     //
     this.gridControlDetail.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("gridControlDetail.BackgroundImage")));
     this.gridControlDetail.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
     this.gridControlDetail.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gridControlDetail.Location = new System.Drawing.Point(0, 0);
     this.gridControlDetail.MainView = this.gridViewDetail;
     this.gridControlDetail.MenuManager = this.barManager1;
     this.gridControlDetail.Name = "gridControlDetail";
     this.gridControlDetail.Size = new System.Drawing.Size(1001, 161);
     this.gridControlDetail.TabIndex = 0;
     this.gridControlDetail.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewDetail});
     //
     // gridViewDetail
     //
     this.gridViewDetail.Appearance.HeaderPanel.Options.UseTextOptions = true;
     this.gridViewDetail.Appearance.HeaderPanel.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridViewDetail.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.Col_BM_ThanhLy,
     this.Col_BM_MaBang,
     this.Col_BM_TapSo,
     this.Col_BM_TenTap,
     this.Col_BM_SoBang,
     this.Col_BM_ThongSo,
     this.Col_BM_ThoiLuong,
     this.Col_BM_SoDKCBHD,
     this.Col_BM_NoiLuuTru});
     this.gridViewDetail.GridControl = this.gridControlDetail;
     this.gridViewDetail.IndicatorWidth = 40;
     this.gridViewDetail.Name = "gridViewDetail";
     this.gridViewDetail.OptionsBehavior.Editable = false;
     this.gridViewDetail.OptionsLayout.Columns.AddNewColumns = false;
     this.gridViewDetail.OptionsNavigation.AutoFocusNewRow = true;
     this.gridViewDetail.OptionsNavigation.EnterMoveNextColumn = true;
     this.gridViewDetail.OptionsPrint.UsePrintStyles = true;
     this.gridViewDetail.OptionsView.EnableAppearanceEvenRow = true;
     this.gridViewDetail.OptionsView.EnableAppearanceOddRow = true;
     this.gridViewDetail.OptionsView.NewItemRowPosition = DevExpress.XtraGrid.Views.Grid.NewItemRowPosition.Bottom;
     this.gridViewDetail.OptionsView.ShowGroupedColumns = true;
     this.gridViewDetail.OptionsView.ShowGroupPanel = false;
     //
     // Col_BM_ThanhLy
     //
     this.Col_BM_ThanhLy.Caption = "Thanh lý";
     this.Col_BM_ThanhLy.Name = "Col_BM_ThanhLy";
     this.Col_BM_ThanhLy.Visible = true;
     this.Col_BM_ThanhLy.VisibleIndex = 0;
     this.Col_BM_ThanhLy.Width = 53;
     //
     // Col_BM_MaBang
     //
     this.Col_BM_MaBang.Caption = "Mã băng";
     this.Col_BM_MaBang.Name = "Col_BM_MaBang";
     this.Col_BM_MaBang.Visible = true;
     this.Col_BM_MaBang.VisibleIndex = 1;
     this.Col_BM_MaBang.Width = 53;
     //
     // Col_BM_TapSo
     //
     this.Col_BM_TapSo.Caption = "Tập số";
     this.Col_BM_TapSo.Name = "Col_BM_TapSo";
     this.Col_BM_TapSo.Visible = true;
     this.Col_BM_TapSo.VisibleIndex = 2;
     this.Col_BM_TapSo.Width = 44;
     //
     // Col_BM_TenTap
     //
     this.Col_BM_TenTap.Caption = "Tên tập";
     this.Col_BM_TenTap.Name = "Col_BM_TenTap";
     this.Col_BM_TenTap.Visible = true;
     this.Col_BM_TenTap.VisibleIndex = 3;
     this.Col_BM_TenTap.Width = 49;
     //
     // Col_BM_SoBang
     //
     this.Col_BM_SoBang.Caption = "Số băng";
     this.Col_BM_SoBang.Name = "Col_BM_SoBang";
     this.Col_BM_SoBang.Visible = true;
     this.Col_BM_SoBang.VisibleIndex = 4;
     this.Col_BM_SoBang.Width = 51;
     //
     // Col_BM_ThongSo
     //
     this.Col_BM_ThongSo.Caption = "Thông số";
     this.Col_BM_ThongSo.Name = "Col_BM_ThongSo";
     this.Col_BM_ThongSo.Visible = true;
     this.Col_BM_ThongSo.VisibleIndex = 5;
     this.Col_BM_ThongSo.Width = 56;
     //
     // Col_BM_ThoiLuong
     //
     this.Col_BM_ThoiLuong.Caption = "Thời lượng";
     this.Col_BM_ThoiLuong.Name = "Col_BM_ThoiLuong";
     this.Col_BM_ThoiLuong.Visible = true;
     this.Col_BM_ThoiLuong.VisibleIndex = 6;
     this.Col_BM_ThoiLuong.Width = 62;
     //
     // Col_BM_SoDKCBHD
     //
     this.Col_BM_SoDKCBHD.Caption = "Số ĐKCB HD";
     this.Col_BM_SoDKCBHD.Name = "Col_BM_SoDKCBHD";
     this.Col_BM_SoDKCBHD.Visible = true;
     this.Col_BM_SoDKCBHD.VisibleIndex = 7;
     this.Col_BM_SoDKCBHD.Width = 71;
     //
     // Col_BM_NoiLuuTru
     //
     this.Col_BM_NoiLuuTru.Caption = "Nơi lưu trữ";
     this.Col_BM_NoiLuuTru.Name = "Col_BM_NoiLuuTru";
     this.Col_BM_NoiLuuTru.Visible = true;
     this.Col_BM_NoiLuuTru.VisibleIndex = 8;
     this.Col_BM_NoiLuuTru.Width = 63;
     //
     // Col_PM_MaChuongTrinh
     //
     this.Col_PM_MaChuongTrinh.Caption = "Mã chương trình";
     this.Col_PM_MaChuongTrinh.Name = "Col_PM_MaChuongTrinh";
     this.Col_PM_MaChuongTrinh.Visible = true;
     this.Col_PM_MaChuongTrinh.Width = 114;
     //
     // Col_PM_TenChuongTrinh
     //
     this.Col_PM_TenChuongTrinh.Caption = "Tên chương trình";
     this.Col_PM_TenChuongTrinh.Name = "Col_PM_TenChuongTrinh";
     this.Col_PM_TenChuongTrinh.Visible = true;
     this.Col_PM_TenChuongTrinh.Width = 107;
     //
     // Col_PM_TietMuc
     //
     this.Col_PM_TietMuc.Caption = "Tiết mục";
     this.Col_PM_TietMuc.Name = "Col_PM_TietMuc";
     this.Col_PM_TietMuc.Visible = true;
     //
     // gridBandChuongTrinh
     //
     this.gridBandChuongTrinh.AppearanceHeader.Options.UseTextOptions = true;
     this.gridBandChuongTrinh.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridBandChuongTrinh.Caption = "Thông tin chương trình";
     this.gridBandChuongTrinh.Columns.Add(this.Col_PM_MaChuongTrinh);
     this.gridBandChuongTrinh.Columns.Add(this.Col_PM_TenChuongTrinh);
     this.gridBandChuongTrinh.Columns.Add(this.Col_PM_TietMuc);
     this.gridBandChuongTrinh.Name = "gridBandChuongTrinh";
     this.gridBandChuongTrinh.Width = 296;
     //
     // gridBandPostMaster
     //
     this.gridBandPostMaster.AppearanceHeader.Options.UseTextOptions = true;
     this.gridBandPostMaster.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridBandPostMaster.Caption = "Thông tin Post/Master";
     this.gridBandPostMaster.Columns.Add(this.Col_PM_PostMaster);
     this.gridBandPostMaster.Columns.Add(this.Col_PM_TongTap);
     this.gridBandPostMaster.Columns.Add(this.Col_PM_LoaiLuu);
     this.gridBandPostMaster.Columns.Add(this.Col_PM_PopUp);
     this.gridBandPostMaster.Columns.Add(this.Col_PM_ThoiLuongChung);
     this.gridBandPostMaster.Columns.Add(this.Col_PM_TTDinhKem);
     this.gridBandPostMaster.Columns.Add(this.Col_PM_ThanhLy);
     this.gridBandPostMaster.Columns.Add(this.Col_PM_NgayNhapKho);
     this.gridBandPostMaster.Columns.Add(this.Col_PM_Ke);
     this.gridBandPostMaster.Columns.Add(this.Col_PM_Ngan);
     this.gridBandPostMaster.Columns.Add(this.Col_PM_Tang);
     this.gridBandPostMaster.Columns.Add(this.Col_PM_SODKCBHD);
     this.gridBandPostMaster.Columns.Add(this.Col_PM_DVDNgayDuyet);
     this.gridBandPostMaster.Columns.Add(this.Col_PM_DVDNgayHoanTat);
     this.gridBandPostMaster.Columns.Add(this.Col_PM_NoiLuuTru);
     this.gridBandPostMaster.Columns.Add(this.Col_PM_LoaiFile);
     this.gridBandPostMaster.Name = "gridBandPostMaster";
     this.gridBandPostMaster.Width = 1040;
     //
     // frmPostMasterDeletedQL
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(1008, 545);
     this.Controls.Add(this.splitContainerControl1);
     this.Controls.Add(this.dockPanel1);
     this.Controls.Add(this.barDockControlLeft);
     this.Controls.Add(this.barDockControlRight);
     this.Controls.Add(this.barDockControlBottom);
     this.Controls.Add(this.barDockControlTop);
     this.Name = "frmPostMasterDeletedQL";
     this.ShowInTaskbar = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Quản lý Post/Master đã xóa";
     ((System.ComponentModel.ISupportInitialize)(this.barManager1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.popupMenu1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.popupMenuFilter)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dockManager1)).EndInit();
     this.dockPanel1.ResumeLayout(false);
     this.dockPanel1_Container.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.popupControlContainerFilter)).EndInit();
     this.popupControlContainerFilter.ResumeLayout(false);
     this.popupControlContainerFilter.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.NguoiNhap.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.MaCT.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.NoiDung.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.LoaiLuuTru.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.PostMaster.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TietMuc.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl1)).EndInit();
     this.splitContainerControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMaster)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMaster)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControlDetail)).EndInit();
     this.xtraTabControlDetail.ResumeLayout(false);
     this.xtraTabPageDetail.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlDetail)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewDetail)).EndInit();
     this.ResumeLayout(false);
 }
コード例 #34
0
ファイル: FinanManagement.cs プロジェクト: zesus19/c4.v2.T
		/// <summary> 
		/// Required method for Designer support - do not modify 
		/// the contents of this method with the code editor.
		/// </summary>
		private void InitializeComponent()
		{
			this.notePanel_WelcomePanel = new DevExpress.Utils.Frames.NotePanel();
			this.splitContainerControl1 = new DevExpress.XtraEditors.SplitContainerControl();
			this.groupControl_FinanInfo = new DevExpress.XtraEditors.GroupControl();
			this.notePanel1 = new DevExpress.Utils.Frames.NotePanel();
			this.memoEdit_Remark = new DevExpress.XtraEditors.MemoEdit();
			this.textEdit_ExtraCharge = new DevExpress.XtraEditors.TextEdit();
			this.notePanel_ExtraCharge = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_CommCharge = new DevExpress.Utils.Frames.NotePanel();
			this.textEdit_CommCharge = new DevExpress.XtraEditors.TextEdit();
			this.textEdit_MilkCharge = new DevExpress.XtraEditors.TextEdit();
			this.textEdit_NightCharge = new DevExpress.XtraEditors.TextEdit();
			this.notePanel_MilkCharge = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_NightCharge = new DevExpress.Utils.Frames.NotePanel();
			this.textEdit_AdmCharge = new DevExpress.XtraEditors.TextEdit();
			this.notePanel_AdmCharge = new DevExpress.Utils.Frames.NotePanel();
			this.textEdit_MessCharge = new DevExpress.XtraEditors.TextEdit();
			this.notePanel_MessCharge = new DevExpress.Utils.Frames.NotePanel();
			this.textEdit_AdmRestoreDays = new DevExpress.XtraEditors.TextEdit();
			this.notePanel_AdmRestoreDays = new DevExpress.Utils.Frames.NotePanel();
			this.textEdit_MessRestoreDays = new DevExpress.XtraEditors.TextEdit();
			this.notePanel_MessRestoreDays = new DevExpress.Utils.Frames.NotePanel();
			this.groupControl_FinanQuery = new DevExpress.XtraEditors.GroupControl();
			this.dateEdit_SearchMonth = new DevExpress.XtraEditors.DateEdit();
			this.notePanel_SearchMonth = new DevExpress.Utils.Frames.NotePanel();
			this.dateEdit_BalanceMonth = new DevExpress.XtraEditors.DateEdit();
			this.notePanel_BalanceMonth = new DevExpress.Utils.Frames.NotePanel();
			this.textEdit_Number = new DevExpress.XtraEditors.TextEdit();
			this.textEdit_Name = new DevExpress.XtraEditors.TextEdit();
			this.notePanel_Number = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_Name = new DevExpress.Utils.Frames.NotePanel();
			this.comboBoxEdit_Class = new DevExpress.XtraEditors.ComboBoxEdit();
			this.notePanel_Class = new DevExpress.Utils.Frames.NotePanel();
			this.comboBoxEdit_Grade = new DevExpress.XtraEditors.ComboBoxEdit();
			this.notePanel_Grade = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_FinanQuery = new DevExpress.Utils.Frames.NotePanel();
			this.gridControl_FinanInfo = new DevExpress.XtraGrid.GridControl();
			this.advBandedGridView1 = new DevExpress.XtraGrid.Views.BandedGrid.AdvBandedGridView();
			this.gridBand1 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
			this.bandedGridColumn15 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.bandedGridColumn1 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.bandedGridColumn2 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.gridBand2 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
			this.bandedGridColumn3 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.bandedGridColumn4 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.gridBand3 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
			this.bandedGridColumn5 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.bandedGridColumn7 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.bandedGridColumn6 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.bandedGridColumn9 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.bandedGridColumn8 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.bandedGridColumn10 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.gridBand4 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
			this.bandedGridColumn12 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.bandedGridColumn11 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.gridBand5 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
			this.bandedGridColumn13 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.bandedGridColumn14 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.gridView1 = new DevExpress.XtraGrid.Views.Grid.GridView();
			this.gridColumn2 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn1 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn4 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn5 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn6 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn7 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn8 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn9 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn10 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn13 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn11 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn12 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn14 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn15 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.panelControl1 = new DevExpress.XtraEditors.PanelControl();
			this.simpleButton_DeleteData = new DevExpress.XtraEditors.SimpleButton();
			this.simpleButton_DataModify = new DevExpress.XtraEditors.SimpleButton();
			this.simpleButton_ChargeSave = new DevExpress.XtraEditors.SimpleButton();
			this.simpleButton_History = new DevExpress.XtraEditors.SimpleButton();
			this.simpleButton_DataPrint = new DevExpress.XtraEditors.SimpleButton();
			this.simpleButton_MonthBalance = new DevExpress.XtraEditors.SimpleButton();
			this.saveFileDialog_Report = new System.Windows.Forms.SaveFileDialog();
			this.helpProvider_FinanInfo = new System.Windows.Forms.HelpProvider();
			((System.ComponentModel.ISupportInitialize)(this.splitContainerControl1)).BeginInit();
			this.splitContainerControl1.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_FinanInfo)).BeginInit();
			this.groupControl_FinanInfo.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.memoEdit_Remark.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_ExtraCharge.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_CommCharge.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MilkCharge.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_NightCharge.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_AdmCharge.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MessCharge.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_AdmRestoreDays.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MessRestoreDays.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_FinanQuery)).BeginInit();
			this.groupControl_FinanQuery.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.dateEdit_SearchMonth.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.dateEdit_BalanceMonth.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_Number.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_Name.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_Class.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_Grade.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.gridControl_FinanInfo)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.advBandedGridView1)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
			this.panelControl1.SuspendLayout();
			this.SuspendLayout();
			// 
			// notePanel_WelcomePanel
			// 
			this.notePanel_WelcomePanel.BackColor = System.Drawing.Color.LightGoldenrodYellow;
			this.notePanel_WelcomePanel.Dock = System.Windows.Forms.DockStyle.Top;
			this.notePanel_WelcomePanel.ForeColor = System.Drawing.Color.OrangeRed;
			this.notePanel_WelcomePanel.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_WelcomePanel.Location = new System.Drawing.Point(0, 0);
			this.notePanel_WelcomePanel.MaxRows = 5;
			this.notePanel_WelcomePanel.Name = "notePanel_WelcomePanel";
			this.notePanel_WelcomePanel.ParentAutoHeight = true;
			this.notePanel_WelcomePanel.Size = new System.Drawing.Size(772, 23);
			this.notePanel_WelcomePanel.TabIndex = 4;
			this.notePanel_WelcomePanel.TabStop = false;
			this.notePanel_WelcomePanel.Text = "财务信息管理";
			// 
			// splitContainerControl1
			// 
			this.splitContainerControl1.Dock = System.Windows.Forms.DockStyle.Fill;
			this.splitContainerControl1.Location = new System.Drawing.Point(0, 23);
			this.splitContainerControl1.Name = "splitContainerControl1";
			this.splitContainerControl1.Panel1.Controls.Add(this.groupControl_FinanInfo);
			this.splitContainerControl1.Panel1.Controls.Add(this.groupControl_FinanQuery);
			this.splitContainerControl1.Panel1.Text = "splitContainerControl1_Panel1";
			this.splitContainerControl1.Panel2.Controls.Add(this.gridControl_FinanInfo);
			this.splitContainerControl1.Panel2.Controls.Add(this.panelControl1);
			this.splitContainerControl1.Panel2.Text = "splitContainerControl1_Panel2";
			this.splitContainerControl1.Size = new System.Drawing.Size(772, 517);
			this.splitContainerControl1.SplitterPosition = 193;
			this.splitContainerControl1.TabIndex = 5;
			this.splitContainerControl1.Text = "splitContainerControl1";
			// 
			// groupControl_FinanInfo
			// 
			this.groupControl_FinanInfo.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.groupControl_FinanInfo.AppearanceCaption.Options.UseFont = true;
			this.groupControl_FinanInfo.Controls.Add(this.notePanel1);
			this.groupControl_FinanInfo.Controls.Add(this.memoEdit_Remark);
			this.groupControl_FinanInfo.Controls.Add(this.textEdit_ExtraCharge);
			this.groupControl_FinanInfo.Controls.Add(this.notePanel_ExtraCharge);
			this.groupControl_FinanInfo.Controls.Add(this.notePanel_CommCharge);
			this.groupControl_FinanInfo.Controls.Add(this.textEdit_CommCharge);
			this.groupControl_FinanInfo.Controls.Add(this.textEdit_MilkCharge);
			this.groupControl_FinanInfo.Controls.Add(this.textEdit_NightCharge);
			this.groupControl_FinanInfo.Controls.Add(this.notePanel_MilkCharge);
			this.groupControl_FinanInfo.Controls.Add(this.notePanel_NightCharge);
			this.groupControl_FinanInfo.Controls.Add(this.textEdit_AdmCharge);
			this.groupControl_FinanInfo.Controls.Add(this.notePanel_AdmCharge);
			this.groupControl_FinanInfo.Controls.Add(this.textEdit_MessCharge);
			this.groupControl_FinanInfo.Controls.Add(this.notePanel_MessCharge);
			this.groupControl_FinanInfo.Controls.Add(this.textEdit_AdmRestoreDays);
			this.groupControl_FinanInfo.Controls.Add(this.notePanel_AdmRestoreDays);
			this.groupControl_FinanInfo.Controls.Add(this.textEdit_MessRestoreDays);
			this.groupControl_FinanInfo.Controls.Add(this.notePanel_MessRestoreDays);
			this.groupControl_FinanInfo.Dock = System.Windows.Forms.DockStyle.Fill;
			this.groupControl_FinanInfo.Location = new System.Drawing.Point(0, 248);
			this.groupControl_FinanInfo.Name = "groupControl_FinanInfo";
			this.groupControl_FinanInfo.Size = new System.Drawing.Size(187, 263);
			this.groupControl_FinanInfo.TabIndex = 1;
			this.groupControl_FinanInfo.Text = "财务信息";
			// 
			// notePanel1
			// 
			this.notePanel1.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel1.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel1.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel1.ForeColor = System.Drawing.Color.Black;
			this.notePanel1.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel1.Location = new System.Drawing.Point(16, 224);
			this.notePanel1.MaxRows = 5;
			this.notePanel1.Name = "notePanel1";
			this.notePanel1.ParentAutoHeight = true;
			this.notePanel1.Size = new System.Drawing.Size(160, 22);
			this.notePanel1.TabIndex = 60;
			this.notePanel1.TabStop = false;
			this.notePanel1.Text = "             备  注:";
			// 
			// memoEdit_Remark
			// 
			this.memoEdit_Remark.EditValue = "";
			this.memoEdit_Remark.Location = new System.Drawing.Point(16, 248);
			this.memoEdit_Remark.Name = "memoEdit_Remark";
			this.memoEdit_Remark.Size = new System.Drawing.Size(160, 72);
			this.memoEdit_Remark.TabIndex = 59;
			// 
			// textEdit_ExtraCharge
			// 
			this.textEdit_ExtraCharge.EditValue = "";
			this.textEdit_ExtraCharge.Location = new System.Drawing.Point(104, 200);
			this.textEdit_ExtraCharge.Name = "textEdit_ExtraCharge";
			this.textEdit_ExtraCharge.Size = new System.Drawing.Size(72, 23);
			this.textEdit_ExtraCharge.TabIndex = 57;
			// 
			// notePanel_ExtraCharge
			// 
			this.notePanel_ExtraCharge.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_ExtraCharge.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_ExtraCharge.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_ExtraCharge.ForeColor = System.Drawing.Color.Black;
			this.notePanel_ExtraCharge.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_ExtraCharge.Location = new System.Drawing.Point(16, 200);
			this.notePanel_ExtraCharge.MaxRows = 5;
			this.notePanel_ExtraCharge.Name = "notePanel_ExtraCharge";
			this.notePanel_ExtraCharge.ParentAutoHeight = true;
			this.notePanel_ExtraCharge.Size = new System.Drawing.Size(80, 22);
			this.notePanel_ExtraCharge.TabIndex = 56;
			this.notePanel_ExtraCharge.TabStop = false;
			this.notePanel_ExtraCharge.Text = " 附加费:";
			// 
			// notePanel_CommCharge
			// 
			this.notePanel_CommCharge.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_CommCharge.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_CommCharge.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_CommCharge.ForeColor = System.Drawing.Color.Black;
			this.notePanel_CommCharge.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_CommCharge.Location = new System.Drawing.Point(16, 176);
			this.notePanel_CommCharge.MaxRows = 5;
			this.notePanel_CommCharge.Name = "notePanel_CommCharge";
			this.notePanel_CommCharge.ParentAutoHeight = true;
			this.notePanel_CommCharge.Size = new System.Drawing.Size(80, 22);
			this.notePanel_CommCharge.TabIndex = 55;
			this.notePanel_CommCharge.TabStop = false;
			this.notePanel_CommCharge.Text = " 代办费:";
			// 
			// textEdit_CommCharge
			// 
			this.textEdit_CommCharge.EditValue = "";
			this.textEdit_CommCharge.Location = new System.Drawing.Point(104, 176);
			this.textEdit_CommCharge.Name = "textEdit_CommCharge";
			this.textEdit_CommCharge.Size = new System.Drawing.Size(72, 23);
			this.textEdit_CommCharge.TabIndex = 54;
			// 
			// textEdit_MilkCharge
			// 
			this.textEdit_MilkCharge.EditValue = "";
			this.textEdit_MilkCharge.Location = new System.Drawing.Point(104, 152);
			this.textEdit_MilkCharge.Name = "textEdit_MilkCharge";
			this.textEdit_MilkCharge.Size = new System.Drawing.Size(72, 23);
			this.textEdit_MilkCharge.TabIndex = 53;
			// 
			// textEdit_NightCharge
			// 
			this.textEdit_NightCharge.EditValue = "";
			this.textEdit_NightCharge.Location = new System.Drawing.Point(104, 128);
			this.textEdit_NightCharge.Name = "textEdit_NightCharge";
			this.textEdit_NightCharge.Size = new System.Drawing.Size(72, 23);
			this.textEdit_NightCharge.TabIndex = 52;
			// 
			// notePanel_MilkCharge
			// 
			this.notePanel_MilkCharge.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_MilkCharge.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_MilkCharge.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_MilkCharge.ForeColor = System.Drawing.Color.Black;
			this.notePanel_MilkCharge.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_MilkCharge.Location = new System.Drawing.Point(16, 152);
			this.notePanel_MilkCharge.MaxRows = 5;
			this.notePanel_MilkCharge.Name = "notePanel_MilkCharge";
			this.notePanel_MilkCharge.ParentAutoHeight = true;
			this.notePanel_MilkCharge.Size = new System.Drawing.Size(80, 22);
			this.notePanel_MilkCharge.TabIndex = 51;
			this.notePanel_MilkCharge.TabStop = false;
			this.notePanel_MilkCharge.Text = " 牛奶费:";
			// 
			// notePanel_NightCharge
			// 
			this.notePanel_NightCharge.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_NightCharge.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_NightCharge.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_NightCharge.ForeColor = System.Drawing.Color.Black;
			this.notePanel_NightCharge.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_NightCharge.Location = new System.Drawing.Point(16, 128);
			this.notePanel_NightCharge.MaxRows = 5;
			this.notePanel_NightCharge.Name = "notePanel_NightCharge";
			this.notePanel_NightCharge.ParentAutoHeight = true;
			this.notePanel_NightCharge.Size = new System.Drawing.Size(80, 22);
			this.notePanel_NightCharge.TabIndex = 50;
			this.notePanel_NightCharge.TabStop = false;
			this.notePanel_NightCharge.Text = " 晚托费:";
			// 
			// textEdit_AdmCharge
			// 
			this.textEdit_AdmCharge.EditValue = "";
			this.textEdit_AdmCharge.Location = new System.Drawing.Point(104, 104);
			this.textEdit_AdmCharge.Name = "textEdit_AdmCharge";
			this.textEdit_AdmCharge.Size = new System.Drawing.Size(72, 23);
			this.textEdit_AdmCharge.TabIndex = 49;
			// 
			// notePanel_AdmCharge
			// 
			this.notePanel_AdmCharge.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_AdmCharge.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_AdmCharge.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_AdmCharge.ForeColor = System.Drawing.Color.Black;
			this.notePanel_AdmCharge.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_AdmCharge.Location = new System.Drawing.Point(16, 104);
			this.notePanel_AdmCharge.MaxRows = 5;
			this.notePanel_AdmCharge.Name = "notePanel_AdmCharge";
			this.notePanel_AdmCharge.ParentAutoHeight = true;
			this.notePanel_AdmCharge.Size = new System.Drawing.Size(80, 22);
			this.notePanel_AdmCharge.TabIndex = 48;
			this.notePanel_AdmCharge.TabStop = false;
			this.notePanel_AdmCharge.Text = " 管理费:";
			// 
			// textEdit_MessCharge
			// 
			this.textEdit_MessCharge.EditValue = "";
			this.textEdit_MessCharge.Location = new System.Drawing.Point(104, 80);
			this.textEdit_MessCharge.Name = "textEdit_MessCharge";
			this.textEdit_MessCharge.Size = new System.Drawing.Size(72, 23);
			this.textEdit_MessCharge.TabIndex = 47;
			// 
			// notePanel_MessCharge
			// 
			this.notePanel_MessCharge.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_MessCharge.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_MessCharge.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_MessCharge.ForeColor = System.Drawing.Color.Black;
			this.notePanel_MessCharge.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_MessCharge.Location = new System.Drawing.Point(16, 80);
			this.notePanel_MessCharge.MaxRows = 5;
			this.notePanel_MessCharge.Name = "notePanel_MessCharge";
			this.notePanel_MessCharge.ParentAutoHeight = true;
			this.notePanel_MessCharge.Size = new System.Drawing.Size(80, 22);
			this.notePanel_MessCharge.TabIndex = 46;
			this.notePanel_MessCharge.TabStop = false;
			this.notePanel_MessCharge.Text = " 伙食费:";
			// 
			// textEdit_AdmRestoreDays
			// 
			this.textEdit_AdmRestoreDays.EditValue = "";
			this.textEdit_AdmRestoreDays.Location = new System.Drawing.Point(104, 56);
			this.textEdit_AdmRestoreDays.Name = "textEdit_AdmRestoreDays";
			this.textEdit_AdmRestoreDays.Size = new System.Drawing.Size(72, 23);
			this.textEdit_AdmRestoreDays.TabIndex = 45;
			// 
			// notePanel_AdmRestoreDays
			// 
			this.notePanel_AdmRestoreDays.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_AdmRestoreDays.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_AdmRestoreDays.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_AdmRestoreDays.ForeColor = System.Drawing.Color.Black;
			this.notePanel_AdmRestoreDays.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_AdmRestoreDays.Location = new System.Drawing.Point(16, 56);
			this.notePanel_AdmRestoreDays.MaxRows = 5;
			this.notePanel_AdmRestoreDays.Name = "notePanel_AdmRestoreDays";
			this.notePanel_AdmRestoreDays.ParentAutoHeight = true;
			this.notePanel_AdmRestoreDays.Size = new System.Drawing.Size(80, 22);
			this.notePanel_AdmRestoreDays.TabIndex = 44;
			this.notePanel_AdmRestoreDays.TabStop = false;
			this.notePanel_AdmRestoreDays.Text = "退管天数:";
			// 
			// textEdit_MessRestoreDays
			// 
			this.textEdit_MessRestoreDays.EditValue = "";
			this.textEdit_MessRestoreDays.Location = new System.Drawing.Point(104, 32);
			this.textEdit_MessRestoreDays.Name = "textEdit_MessRestoreDays";
			this.textEdit_MessRestoreDays.Size = new System.Drawing.Size(72, 23);
			this.textEdit_MessRestoreDays.TabIndex = 43;
			// 
			// notePanel_MessRestoreDays
			// 
			this.notePanel_MessRestoreDays.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_MessRestoreDays.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_MessRestoreDays.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_MessRestoreDays.ForeColor = System.Drawing.Color.Black;
			this.notePanel_MessRestoreDays.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_MessRestoreDays.Location = new System.Drawing.Point(16, 32);
			this.notePanel_MessRestoreDays.MaxRows = 5;
			this.notePanel_MessRestoreDays.Name = "notePanel_MessRestoreDays";
			this.notePanel_MessRestoreDays.ParentAutoHeight = true;
			this.notePanel_MessRestoreDays.Size = new System.Drawing.Size(80, 22);
			this.notePanel_MessRestoreDays.TabIndex = 42;
			this.notePanel_MessRestoreDays.TabStop = false;
			this.notePanel_MessRestoreDays.Text = "退伙天数:";
			// 
			// groupControl_FinanQuery
			// 
			this.groupControl_FinanQuery.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.groupControl_FinanQuery.AppearanceCaption.Options.UseFont = true;
			this.groupControl_FinanQuery.Controls.Add(this.dateEdit_SearchMonth);
			this.groupControl_FinanQuery.Controls.Add(this.notePanel_SearchMonth);
			this.groupControl_FinanQuery.Controls.Add(this.dateEdit_BalanceMonth);
			this.groupControl_FinanQuery.Controls.Add(this.notePanel_BalanceMonth);
			this.groupControl_FinanQuery.Controls.Add(this.textEdit_Number);
			this.groupControl_FinanQuery.Controls.Add(this.textEdit_Name);
			this.groupControl_FinanQuery.Controls.Add(this.notePanel_Number);
			this.groupControl_FinanQuery.Controls.Add(this.notePanel_Name);
			this.groupControl_FinanQuery.Controls.Add(this.comboBoxEdit_Class);
			this.groupControl_FinanQuery.Controls.Add(this.notePanel_Class);
			this.groupControl_FinanQuery.Controls.Add(this.comboBoxEdit_Grade);
			this.groupControl_FinanQuery.Controls.Add(this.notePanel_Grade);
			this.groupControl_FinanQuery.Controls.Add(this.notePanel_FinanQuery);
			this.groupControl_FinanQuery.Dock = System.Windows.Forms.DockStyle.Top;
			this.groupControl_FinanQuery.Location = new System.Drawing.Point(0, 0);
			this.groupControl_FinanQuery.Name = "groupControl_FinanQuery";
			this.groupControl_FinanQuery.Size = new System.Drawing.Size(187, 248);
			this.groupControl_FinanQuery.TabIndex = 0;
			this.groupControl_FinanQuery.Text = "信息查询";
			// 
			// dateEdit_SearchMonth
			// 
			this.dateEdit_SearchMonth.EditValue = new System.DateTime(2005, 12, 20, 0, 0, 0, 0);
			this.dateEdit_SearchMonth.Location = new System.Drawing.Point(88, 216);
			this.dateEdit_SearchMonth.Name = "dateEdit_SearchMonth";
			// 
			// dateEdit_SearchMonth.Properties
			// 
			this.dateEdit_SearchMonth.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																														 new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.dateEdit_SearchMonth.Properties.DisplayFormat.FormatString = "yyyy年M月";
			this.dateEdit_SearchMonth.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
			this.dateEdit_SearchMonth.Properties.Mask.EditMask = "d";
			this.dateEdit_SearchMonth.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.DateTime;
			this.dateEdit_SearchMonth.Size = new System.Drawing.Size(88, 23);
			this.dateEdit_SearchMonth.TabIndex = 47;
			// 
			// notePanel_SearchMonth
			// 
			this.notePanel_SearchMonth.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_SearchMonth.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_SearchMonth.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_SearchMonth.ForeColor = System.Drawing.Color.Black;
			this.notePanel_SearchMonth.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_SearchMonth.Location = new System.Drawing.Point(16, 216);
			this.notePanel_SearchMonth.MaxRows = 5;
			this.notePanel_SearchMonth.Name = "notePanel_SearchMonth";
			this.notePanel_SearchMonth.ParentAutoHeight = true;
			this.notePanel_SearchMonth.Size = new System.Drawing.Size(64, 22);
			this.notePanel_SearchMonth.TabIndex = 46;
			this.notePanel_SearchMonth.TabStop = false;
			this.notePanel_SearchMonth.Text = "查询月:";
			// 
			// dateEdit_BalanceMonth
			// 
			this.dateEdit_BalanceMonth.EditValue = new System.DateTime(2005, 12, 20, 0, 0, 0, 0);
			this.dateEdit_BalanceMonth.Location = new System.Drawing.Point(88, 184);
			this.dateEdit_BalanceMonth.Name = "dateEdit_BalanceMonth";
			// 
			// dateEdit_BalanceMonth.Properties
			// 
			this.dateEdit_BalanceMonth.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																														  new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.dateEdit_BalanceMonth.Properties.DisplayFormat.FormatString = "yyyy年M月";
			this.dateEdit_BalanceMonth.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
			this.dateEdit_BalanceMonth.Properties.Mask.EditMask = "d";
			this.dateEdit_BalanceMonth.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.DateTime;
			this.dateEdit_BalanceMonth.Size = new System.Drawing.Size(88, 23);
			this.dateEdit_BalanceMonth.TabIndex = 45;
			// 
			// notePanel_BalanceMonth
			// 
			this.notePanel_BalanceMonth.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_BalanceMonth.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_BalanceMonth.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_BalanceMonth.ForeColor = System.Drawing.Color.Black;
			this.notePanel_BalanceMonth.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_BalanceMonth.Location = new System.Drawing.Point(16, 184);
			this.notePanel_BalanceMonth.MaxRows = 5;
			this.notePanel_BalanceMonth.Name = "notePanel_BalanceMonth";
			this.notePanel_BalanceMonth.ParentAutoHeight = true;
			this.notePanel_BalanceMonth.Size = new System.Drawing.Size(64, 22);
			this.notePanel_BalanceMonth.TabIndex = 43;
			this.notePanel_BalanceMonth.TabStop = false;
			this.notePanel_BalanceMonth.Text = "结算月:";
			// 
			// textEdit_Number
			// 
			this.textEdit_Number.EditValue = "";
			this.textEdit_Number.Location = new System.Drawing.Point(88, 152);
			this.textEdit_Number.Name = "textEdit_Number";
			this.textEdit_Number.Size = new System.Drawing.Size(80, 23);
			this.textEdit_Number.TabIndex = 42;
			// 
			// textEdit_Name
			// 
			this.textEdit_Name.EditValue = "";
			this.textEdit_Name.Location = new System.Drawing.Point(88, 120);
			this.textEdit_Name.Name = "textEdit_Name";
			this.textEdit_Name.Size = new System.Drawing.Size(80, 23);
			this.textEdit_Name.TabIndex = 41;
			// 
			// notePanel_Number
			// 
			this.notePanel_Number.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_Number.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_Number.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_Number.ForeColor = System.Drawing.Color.Black;
			this.notePanel_Number.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_Number.Location = new System.Drawing.Point(16, 152);
			this.notePanel_Number.MaxRows = 5;
			this.notePanel_Number.Name = "notePanel_Number";
			this.notePanel_Number.ParentAutoHeight = true;
			this.notePanel_Number.Size = new System.Drawing.Size(65, 22);
			this.notePanel_Number.TabIndex = 40;
			this.notePanel_Number.TabStop = false;
			this.notePanel_Number.Text = "学  号:";
			// 
			// notePanel_Name
			// 
			this.notePanel_Name.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_Name.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_Name.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_Name.ForeColor = System.Drawing.Color.Black;
			this.notePanel_Name.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_Name.Location = new System.Drawing.Point(16, 120);
			this.notePanel_Name.MaxRows = 5;
			this.notePanel_Name.Name = "notePanel_Name";
			this.notePanel_Name.ParentAutoHeight = true;
			this.notePanel_Name.Size = new System.Drawing.Size(65, 22);
			this.notePanel_Name.TabIndex = 39;
			this.notePanel_Name.TabStop = false;
			this.notePanel_Name.Text = "姓  名:";
			// 
			// comboBoxEdit_Class
			// 
			this.comboBoxEdit_Class.EditValue = "全部";
			this.comboBoxEdit_Class.Location = new System.Drawing.Point(88, 88);
			this.comboBoxEdit_Class.Name = "comboBoxEdit_Class";
			// 
			// comboBoxEdit_Class.Properties
			// 
			this.comboBoxEdit_Class.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																													   new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.comboBoxEdit_Class.Properties.Items.AddRange(new object[] {
																			   "全部"});
			this.comboBoxEdit_Class.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
			this.comboBoxEdit_Class.Size = new System.Drawing.Size(80, 23);
			this.comboBoxEdit_Class.TabIndex = 38;
			this.comboBoxEdit_Class.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit_Class_SelectedIndexChanged);
			// 
			// notePanel_Class
			// 
			this.notePanel_Class.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_Class.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_Class.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_Class.ForeColor = System.Drawing.Color.Black;
			this.notePanel_Class.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_Class.Location = new System.Drawing.Point(16, 88);
			this.notePanel_Class.MaxRows = 5;
			this.notePanel_Class.Name = "notePanel_Class";
			this.notePanel_Class.ParentAutoHeight = true;
			this.notePanel_Class.Size = new System.Drawing.Size(64, 22);
			this.notePanel_Class.TabIndex = 37;
			this.notePanel_Class.TabStop = false;
			this.notePanel_Class.Text = "班  级:";
			// 
			// comboBoxEdit_Grade
			// 
			this.comboBoxEdit_Grade.EditValue = "全部";
			this.comboBoxEdit_Grade.Location = new System.Drawing.Point(88, 56);
			this.comboBoxEdit_Grade.Name = "comboBoxEdit_Grade";
			// 
			// comboBoxEdit_Grade.Properties
			// 
			this.comboBoxEdit_Grade.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																													   new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.comboBoxEdit_Grade.Properties.Items.AddRange(new object[] {
																			   "全部"});
			this.comboBoxEdit_Grade.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
			this.comboBoxEdit_Grade.Size = new System.Drawing.Size(80, 23);
			this.comboBoxEdit_Grade.TabIndex = 36;
			this.comboBoxEdit_Grade.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit_Grade_SelectedIndexChanged);
			// 
			// notePanel_Grade
			// 
			this.notePanel_Grade.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_Grade.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_Grade.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_Grade.ForeColor = System.Drawing.Color.Black;
			this.notePanel_Grade.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_Grade.Location = new System.Drawing.Point(16, 56);
			this.notePanel_Grade.MaxRows = 5;
			this.notePanel_Grade.Name = "notePanel_Grade";
			this.notePanel_Grade.ParentAutoHeight = true;
			this.notePanel_Grade.Size = new System.Drawing.Size(64, 22);
			this.notePanel_Grade.TabIndex = 35;
			this.notePanel_Grade.TabStop = false;
			this.notePanel_Grade.Text = "年  级:";
			// 
			// notePanel_FinanQuery
			// 
			this.notePanel_FinanQuery.BackColor = System.Drawing.Color.LightGoldenrodYellow;
			this.notePanel_FinanQuery.Dock = System.Windows.Forms.DockStyle.Top;
			this.notePanel_FinanQuery.ForeColor = System.Drawing.Color.OrangeRed;
			this.notePanel_FinanQuery.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_FinanQuery.Location = new System.Drawing.Point(3, 18);
			this.notePanel_FinanQuery.MaxRows = 5;
			this.notePanel_FinanQuery.Name = "notePanel_FinanQuery";
			this.notePanel_FinanQuery.ParentAutoHeight = true;
			this.notePanel_FinanQuery.Size = new System.Drawing.Size(181, 23);
			this.notePanel_FinanQuery.TabIndex = 19;
			this.notePanel_FinanQuery.TabStop = false;
			this.notePanel_FinanQuery.Text = "您要查找哪个班级?";
			// 
			// gridControl_FinanInfo
			// 
			this.gridControl_FinanInfo.Dock = System.Windows.Forms.DockStyle.Fill;
			// 
			// gridControl_FinanInfo.EmbeddedNavigator
			// 
			this.gridControl_FinanInfo.EmbeddedNavigator.Name = "";
			this.gridControl_FinanInfo.Location = new System.Drawing.Point(0, 40);
			this.gridControl_FinanInfo.MainView = this.advBandedGridView1;
			this.gridControl_FinanInfo.Name = "gridControl_FinanInfo";
			this.gridControl_FinanInfo.Size = new System.Drawing.Size(569, 471);
			this.gridControl_FinanInfo.TabIndex = 1;
			this.gridControl_FinanInfo.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
																												 this.advBandedGridView1,
																												 this.gridView1});
			this.gridControl_FinanInfo.Load += new System.EventHandler(this.gridControl_FinanInfo_Load);
			// 
			// advBandedGridView1
			// 
			this.advBandedGridView1.Bands.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.GridBand[] {
																										   this.gridBand1,
																										   this.gridBand2,
																										   this.gridBand3,
																										   this.gridBand4,
																										   this.gridBand5});
			this.advBandedGridView1.Columns.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn[] {
																													 this.bandedGridColumn1,
																													 this.bandedGridColumn2,
																													 this.bandedGridColumn3,
																													 this.bandedGridColumn4,
																													 this.bandedGridColumn5,
																													 this.bandedGridColumn6,
																													 this.bandedGridColumn7,
																													 this.bandedGridColumn8,
																													 this.bandedGridColumn9,
																													 this.bandedGridColumn10,
																													 this.bandedGridColumn11,
																													 this.bandedGridColumn12,
																													 this.bandedGridColumn13,
																													 this.bandedGridColumn14,
																													 this.bandedGridColumn15});
			this.advBandedGridView1.GridControl = this.gridControl_FinanInfo;
			this.advBandedGridView1.Name = "advBandedGridView1";
			this.advBandedGridView1.OptionsCustomization.AllowFilter = false;
			this.advBandedGridView1.OptionsView.ShowFilterPanel = false;
			this.advBandedGridView1.OptionsView.ShowGroupPanel = false;
			// 
			// gridBand1
			// 
			this.gridBand1.AppearanceHeader.ForeColor = System.Drawing.Color.Red;
			this.gridBand1.AppearanceHeader.Options.UseForeColor = true;
			this.gridBand1.AppearanceHeader.Options.UseTextOptions = true;
			this.gridBand1.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridBand1.Caption = "学生信息";
			this.gridBand1.Columns.Add(this.bandedGridColumn15);
			this.gridBand1.Columns.Add(this.bandedGridColumn1);
			this.gridBand1.Columns.Add(this.bandedGridColumn2);
			this.gridBand1.Name = "gridBand1";
			this.gridBand1.Width = 150;
			// 
			// bandedGridColumn15
			// 
			this.bandedGridColumn15.AppearanceCell.Options.UseTextOptions = true;
			this.bandedGridColumn15.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn15.AppearanceHeader.Options.UseTextOptions = true;
			this.bandedGridColumn15.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn15.AutoFillDown = true;
			this.bandedGridColumn15.Caption = "学号";
			this.bandedGridColumn15.FieldName = "info_stuNumber";
			this.bandedGridColumn15.Name = "bandedGridColumn15";
			this.bandedGridColumn15.OptionsColumn.AllowEdit = false;
			this.bandedGridColumn15.OptionsColumn.AllowFocus = false;
			this.bandedGridColumn15.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn15.OptionsColumn.AllowIncrementalSearch = false;
			this.bandedGridColumn15.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn15.OptionsColumn.AllowMove = false;
			this.bandedGridColumn15.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.bandedGridColumn15.OptionsColumn.FixedWidth = true;
			this.bandedGridColumn15.OptionsColumn.ReadOnly = true;
			this.bandedGridColumn15.OptionsColumn.ShowInCustomizationForm = false;
			this.bandedGridColumn15.Visible = true;
			this.bandedGridColumn15.Width = 50;
			// 
			// bandedGridColumn1
			// 
			this.bandedGridColumn1.AppearanceCell.Options.UseTextOptions = true;
			this.bandedGridColumn1.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn1.AppearanceHeader.Options.UseTextOptions = true;
			this.bandedGridColumn1.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn1.AutoFillDown = true;
			this.bandedGridColumn1.Caption = "姓名";
			this.bandedGridColumn1.FieldName = "info_stuName";
			this.bandedGridColumn1.Name = "bandedGridColumn1";
			this.bandedGridColumn1.OptionsColumn.AllowEdit = false;
			this.bandedGridColumn1.OptionsColumn.AllowFocus = false;
			this.bandedGridColumn1.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn1.OptionsColumn.AllowIncrementalSearch = false;
			this.bandedGridColumn1.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn1.OptionsColumn.AllowMove = false;
			this.bandedGridColumn1.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn1.OptionsColumn.FixedWidth = true;
			this.bandedGridColumn1.OptionsColumn.ReadOnly = true;
			this.bandedGridColumn1.OptionsColumn.ShowInCustomizationForm = false;
			this.bandedGridColumn1.Visible = true;
			this.bandedGridColumn1.Width = 50;
			// 
			// bandedGridColumn2
			// 
			this.bandedGridColumn2.AppearanceCell.Options.UseTextOptions = true;
			this.bandedGridColumn2.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn2.AppearanceHeader.Options.UseTextOptions = true;
			this.bandedGridColumn2.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn2.AutoFillDown = true;
			this.bandedGridColumn2.Caption = "班级";
			this.bandedGridColumn2.FieldName = "info_className";
			this.bandedGridColumn2.MinWidth = 10;
			this.bandedGridColumn2.Name = "bandedGridColumn2";
			this.bandedGridColumn2.OptionsColumn.AllowEdit = false;
			this.bandedGridColumn2.OptionsColumn.AllowFocus = false;
			this.bandedGridColumn2.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn2.OptionsColumn.AllowIncrementalSearch = false;
			this.bandedGridColumn2.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn2.OptionsColumn.AllowMove = false;
			this.bandedGridColumn2.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn2.OptionsColumn.FixedWidth = true;
			this.bandedGridColumn2.OptionsColumn.ReadOnly = true;
			this.bandedGridColumn2.OptionsColumn.ShowInCustomizationForm = false;
			this.bandedGridColumn2.Visible = true;
			this.bandedGridColumn2.Width = 50;
			// 
			// gridBand2
			// 
			this.gridBand2.AppearanceHeader.ForeColor = System.Drawing.Color.Red;
			this.gridBand2.AppearanceHeader.Options.UseForeColor = true;
			this.gridBand2.AppearanceHeader.Options.UseTextOptions = true;
			this.gridBand2.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridBand2.Caption = "本月结算";
			this.gridBand2.Columns.Add(this.bandedGridColumn3);
			this.gridBand2.Columns.Add(this.bandedGridColumn4);
			this.gridBand2.Name = "gridBand2";
			this.gridBand2.Width = 120;
			// 
			// bandedGridColumn3
			// 
			this.bandedGridColumn3.AppearanceCell.Options.UseTextOptions = true;
			this.bandedGridColumn3.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn3.AppearanceHeader.Options.UseTextOptions = true;
			this.bandedGridColumn3.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn3.AutoFillDown = true;
			this.bandedGridColumn3.Caption = "应交天数";
			this.bandedGridColumn3.FieldName = "info_needHandDays";
			this.bandedGridColumn3.Name = "bandedGridColumn3";
			this.bandedGridColumn3.OptionsColumn.AllowEdit = false;
			this.bandedGridColumn3.OptionsColumn.AllowFocus = false;
			this.bandedGridColumn3.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn3.OptionsColumn.AllowIncrementalSearch = false;
			this.bandedGridColumn3.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn3.OptionsColumn.AllowMove = false;
			this.bandedGridColumn3.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.bandedGridColumn3.OptionsColumn.FixedWidth = true;
			this.bandedGridColumn3.OptionsColumn.ReadOnly = true;
			this.bandedGridColumn3.OptionsColumn.ShowInCustomizationForm = false;
			this.bandedGridColumn3.Visible = true;
			this.bandedGridColumn3.Width = 60;
			// 
			// bandedGridColumn4
			// 
			this.bandedGridColumn4.AppearanceCell.Options.UseTextOptions = true;
			this.bandedGridColumn4.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn4.AppearanceHeader.Options.UseTextOptions = true;
			this.bandedGridColumn4.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn4.AutoFillDown = true;
			this.bandedGridColumn4.Caption = "停伙天数";
			this.bandedGridColumn4.FieldName = "info_messStopDays";
			this.bandedGridColumn4.Name = "bandedGridColumn4";
			this.bandedGridColumn4.OptionsColumn.AllowEdit = false;
			this.bandedGridColumn4.OptionsColumn.AllowFocus = false;
			this.bandedGridColumn4.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn4.OptionsColumn.AllowIncrementalSearch = false;
			this.bandedGridColumn4.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn4.OptionsColumn.AllowMove = false;
			this.bandedGridColumn4.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.bandedGridColumn4.OptionsColumn.FixedWidth = true;
			this.bandedGridColumn4.OptionsColumn.ReadOnly = true;
			this.bandedGridColumn4.OptionsColumn.ShowInCustomizationForm = false;
			this.bandedGridColumn4.Visible = true;
			this.bandedGridColumn4.Width = 60;
			// 
			// gridBand3
			// 
			this.gridBand3.AppearanceHeader.ForeColor = System.Drawing.Color.Red;
			this.gridBand3.AppearanceHeader.Options.UseForeColor = true;
			this.gridBand3.AppearanceHeader.Options.UseTextOptions = true;
			this.gridBand3.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridBand3.Caption = "各项费用";
			this.gridBand3.Columns.Add(this.bandedGridColumn5);
			this.gridBand3.Columns.Add(this.bandedGridColumn7);
			this.gridBand3.Columns.Add(this.bandedGridColumn6);
			this.gridBand3.Columns.Add(this.bandedGridColumn9);
			this.gridBand3.Columns.Add(this.bandedGridColumn8);
			this.gridBand3.Columns.Add(this.bandedGridColumn10);
			this.gridBand3.Name = "gridBand3";
			this.gridBand3.Width = 195;
			// 
			// bandedGridColumn5
			// 
			this.bandedGridColumn5.AppearanceCell.Options.UseTextOptions = true;
			this.bandedGridColumn5.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn5.AppearanceCell.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
			this.bandedGridColumn5.AppearanceHeader.Options.UseTextOptions = true;
			this.bandedGridColumn5.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn5.Caption = "管理费";
			this.bandedGridColumn5.FieldName = "info_admCharge";
			this.bandedGridColumn5.Name = "bandedGridColumn5";
			this.bandedGridColumn5.OptionsColumn.AllowEdit = false;
			this.bandedGridColumn5.OptionsColumn.AllowFocus = false;
			this.bandedGridColumn5.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn5.OptionsColumn.AllowIncrementalSearch = false;
			this.bandedGridColumn5.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn5.OptionsColumn.AllowMove = false;
			this.bandedGridColumn5.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn5.OptionsColumn.FixedWidth = true;
			this.bandedGridColumn5.OptionsColumn.ReadOnly = true;
			this.bandedGridColumn5.OptionsColumn.ShowInCustomizationForm = false;
			this.bandedGridColumn5.Visible = true;
			this.bandedGridColumn5.Width = 65;
			// 
			// bandedGridColumn7
			// 
			this.bandedGridColumn7.AppearanceCell.Options.UseTextOptions = true;
			this.bandedGridColumn7.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn7.AppearanceHeader.Options.UseTextOptions = true;
			this.bandedGridColumn7.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn7.Caption = "伙食费";
			this.bandedGridColumn7.FieldName = "info_messCharge";
			this.bandedGridColumn7.Name = "bandedGridColumn7";
			this.bandedGridColumn7.OptionsColumn.AllowEdit = false;
			this.bandedGridColumn7.OptionsColumn.AllowFocus = false;
			this.bandedGridColumn7.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn7.OptionsColumn.AllowIncrementalSearch = false;
			this.bandedGridColumn7.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn7.OptionsColumn.AllowMove = false;
			this.bandedGridColumn7.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn7.OptionsColumn.FixedWidth = true;
			this.bandedGridColumn7.OptionsColumn.ReadOnly = true;
			this.bandedGridColumn7.OptionsColumn.ShowInCustomizationForm = false;
			this.bandedGridColumn7.Visible = true;
			this.bandedGridColumn7.Width = 65;
			// 
			// bandedGridColumn6
			// 
			this.bandedGridColumn6.AppearanceCell.Options.UseTextOptions = true;
			this.bandedGridColumn6.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn6.AppearanceHeader.Options.UseTextOptions = true;
			this.bandedGridColumn6.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn6.Caption = "晚托费";
			this.bandedGridColumn6.FieldName = "info_nightCharge";
			this.bandedGridColumn6.Name = "bandedGridColumn6";
			this.bandedGridColumn6.OptionsColumn.AllowEdit = false;
			this.bandedGridColumn6.OptionsColumn.AllowFocus = false;
			this.bandedGridColumn6.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn6.OptionsColumn.AllowIncrementalSearch = false;
			this.bandedGridColumn6.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn6.OptionsColumn.AllowMove = false;
			this.bandedGridColumn6.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn6.OptionsColumn.FixedWidth = true;
			this.bandedGridColumn6.OptionsColumn.ReadOnly = true;
			this.bandedGridColumn6.OptionsColumn.ShowInCustomizationForm = false;
			this.bandedGridColumn6.Visible = true;
			this.bandedGridColumn6.Width = 65;
			// 
			// bandedGridColumn9
			// 
			this.bandedGridColumn9.AppearanceCell.Options.UseTextOptions = true;
			this.bandedGridColumn9.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn9.AppearanceHeader.Options.UseTextOptions = true;
			this.bandedGridColumn9.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn9.Caption = "代办费";
			this.bandedGridColumn9.FieldName = "info_commCharge";
			this.bandedGridColumn9.Name = "bandedGridColumn9";
			this.bandedGridColumn9.OptionsColumn.AllowEdit = false;
			this.bandedGridColumn9.OptionsColumn.AllowFocus = false;
			this.bandedGridColumn9.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn9.OptionsColumn.AllowIncrementalSearch = false;
			this.bandedGridColumn9.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn9.OptionsColumn.AllowMove = false;
			this.bandedGridColumn9.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn9.OptionsColumn.FixedWidth = true;
			this.bandedGridColumn9.OptionsColumn.ReadOnly = true;
			this.bandedGridColumn9.OptionsColumn.ShowInCustomizationForm = false;
			this.bandedGridColumn9.RowIndex = 1;
			this.bandedGridColumn9.Visible = true;
			this.bandedGridColumn9.Width = 65;
			// 
			// bandedGridColumn8
			// 
			this.bandedGridColumn8.AppearanceCell.Options.UseTextOptions = true;
			this.bandedGridColumn8.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn8.AppearanceHeader.Options.UseTextOptions = true;
			this.bandedGridColumn8.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn8.Caption = "牛奶费";
			this.bandedGridColumn8.FieldName = "info_milkCharge";
			this.bandedGridColumn8.Name = "bandedGridColumn8";
			this.bandedGridColumn8.OptionsColumn.AllowEdit = false;
			this.bandedGridColumn8.OptionsColumn.AllowFocus = false;
			this.bandedGridColumn8.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn8.OptionsColumn.AllowIncrementalSearch = false;
			this.bandedGridColumn8.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn8.OptionsColumn.AllowMove = false;
			this.bandedGridColumn8.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn8.OptionsColumn.FixedWidth = true;
			this.bandedGridColumn8.OptionsColumn.ReadOnly = true;
			this.bandedGridColumn8.OptionsColumn.ShowInCustomizationForm = false;
			this.bandedGridColumn8.RowIndex = 1;
			this.bandedGridColumn8.Visible = true;
			this.bandedGridColumn8.Width = 65;
			// 
			// bandedGridColumn10
			// 
			this.bandedGridColumn10.AppearanceCell.Options.UseTextOptions = true;
			this.bandedGridColumn10.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn10.AppearanceHeader.Options.UseTextOptions = true;
			this.bandedGridColumn10.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn10.Caption = "附加费";
			this.bandedGridColumn10.FieldName = "info_extraCharge";
			this.bandedGridColumn10.Name = "bandedGridColumn10";
			this.bandedGridColumn10.OptionsColumn.AllowEdit = false;
			this.bandedGridColumn10.OptionsColumn.AllowFocus = false;
			this.bandedGridColumn10.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn10.OptionsColumn.AllowIncrementalSearch = false;
			this.bandedGridColumn10.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn10.OptionsColumn.AllowMove = false;
			this.bandedGridColumn10.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn10.OptionsColumn.FixedWidth = true;
			this.bandedGridColumn10.OptionsColumn.ReadOnly = true;
			this.bandedGridColumn10.OptionsColumn.ShowInCustomizationForm = false;
			this.bandedGridColumn10.RowIndex = 1;
			this.bandedGridColumn10.Visible = true;
			this.bandedGridColumn10.Width = 65;
			// 
			// gridBand4
			// 
			this.gridBand4.AppearanceHeader.ForeColor = System.Drawing.Color.Red;
			this.gridBand4.AppearanceHeader.Options.UseForeColor = true;
			this.gridBand4.AppearanceHeader.Options.UseTextOptions = true;
			this.gridBand4.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridBand4.Caption = "退费信息";
			this.gridBand4.Columns.Add(this.bandedGridColumn12);
			this.gridBand4.Columns.Add(this.bandedGridColumn11);
			this.gridBand4.Name = "gridBand4";
			this.gridBand4.Width = 75;
			// 
			// bandedGridColumn12
			// 
			this.bandedGridColumn12.AppearanceCell.Options.UseTextOptions = true;
			this.bandedGridColumn12.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn12.AppearanceHeader.Options.UseTextOptions = true;
			this.bandedGridColumn12.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn12.Caption = "管理退费";
			this.bandedGridColumn12.FieldName = "info_admRestoreCharge";
			this.bandedGridColumn12.Name = "bandedGridColumn12";
			this.bandedGridColumn12.OptionsColumn.AllowEdit = false;
			this.bandedGridColumn12.OptionsColumn.AllowFocus = false;
			this.bandedGridColumn12.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn12.OptionsColumn.AllowIncrementalSearch = false;
			this.bandedGridColumn12.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn12.OptionsColumn.AllowMove = false;
			this.bandedGridColumn12.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn12.OptionsColumn.FixedWidth = true;
			this.bandedGridColumn12.OptionsColumn.ReadOnly = true;
			this.bandedGridColumn12.OptionsColumn.ShowInCustomizationForm = false;
			this.bandedGridColumn12.Visible = true;
			// 
			// bandedGridColumn11
			// 
			this.bandedGridColumn11.AppearanceCell.Options.UseTextOptions = true;
			this.bandedGridColumn11.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn11.AppearanceHeader.Options.UseTextOptions = true;
			this.bandedGridColumn11.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn11.Caption = "伙食退费";
			this.bandedGridColumn11.FieldName = "info_messRestoreCharge";
			this.bandedGridColumn11.Name = "bandedGridColumn11";
			this.bandedGridColumn11.OptionsColumn.AllowEdit = false;
			this.bandedGridColumn11.OptionsColumn.AllowFocus = false;
			this.bandedGridColumn11.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn11.OptionsColumn.AllowIncrementalSearch = false;
			this.bandedGridColumn11.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn11.OptionsColumn.AllowMove = false;
			this.bandedGridColumn11.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn11.OptionsColumn.FixedWidth = true;
			this.bandedGridColumn11.OptionsColumn.ReadOnly = true;
			this.bandedGridColumn11.OptionsColumn.ShowInCustomizationForm = false;
			this.bandedGridColumn11.RowIndex = 1;
			this.bandedGridColumn11.Visible = true;
			// 
			// gridBand5
			// 
			this.gridBand5.AppearanceHeader.ForeColor = System.Drawing.Color.Red;
			this.gridBand5.AppearanceHeader.Options.UseForeColor = true;
			this.gridBand5.AppearanceHeader.Options.UseTextOptions = true;
			this.gridBand5.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridBand5.Caption = "备注信息";
			this.gridBand5.Columns.Add(this.bandedGridColumn13);
			this.gridBand5.Columns.Add(this.bandedGridColumn14);
			this.gridBand5.Name = "gridBand5";
			this.gridBand5.Width = 80;
			// 
			// bandedGridColumn13
			// 
			this.bandedGridColumn13.AppearanceCell.Options.UseTextOptions = true;
			this.bandedGridColumn13.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn13.AppearanceHeader.Options.UseTextOptions = true;
			this.bandedGridColumn13.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn13.Caption = "实收金额";
			this.bandedGridColumn13.FieldName = "info_currency";
			this.bandedGridColumn13.Name = "bandedGridColumn13";
			this.bandedGridColumn13.OptionsColumn.AllowEdit = false;
			this.bandedGridColumn13.OptionsColumn.AllowFocus = false;
			this.bandedGridColumn13.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn13.OptionsColumn.AllowIncrementalSearch = false;
			this.bandedGridColumn13.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn13.OptionsColumn.AllowMove = false;
			this.bandedGridColumn13.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn13.OptionsColumn.FixedWidth = true;
			this.bandedGridColumn13.OptionsColumn.ReadOnly = true;
			this.bandedGridColumn13.OptionsColumn.ShowInCustomizationForm = false;
			this.bandedGridColumn13.Visible = true;
			this.bandedGridColumn13.Width = 80;
			// 
			// bandedGridColumn14
			// 
			this.bandedGridColumn14.AppearanceCell.Options.UseTextOptions = true;
			this.bandedGridColumn14.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn14.AppearanceHeader.Options.UseTextOptions = true;
			this.bandedGridColumn14.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn14.Caption = "备注";
			this.bandedGridColumn14.FieldName = "info_remark";
			this.bandedGridColumn14.Name = "bandedGridColumn14";
			this.bandedGridColumn14.OptionsColumn.AllowEdit = false;
			this.bandedGridColumn14.OptionsColumn.AllowFocus = false;
			this.bandedGridColumn14.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn14.OptionsColumn.AllowIncrementalSearch = false;
			this.bandedGridColumn14.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn14.OptionsColumn.AllowMove = false;
			this.bandedGridColumn14.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn14.OptionsColumn.FixedWidth = true;
			this.bandedGridColumn14.OptionsColumn.ReadOnly = true;
			this.bandedGridColumn14.OptionsColumn.ShowInCustomizationForm = false;
			this.bandedGridColumn14.RowIndex = 1;
			this.bandedGridColumn14.Visible = true;
			this.bandedGridColumn14.Width = 80;
			// 
			// gridView1
			// 
			this.gridView1.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
																							 this.gridColumn2,
																							 this.gridColumn1,
																							 this.gridColumn4,
																							 this.gridColumn5,
																							 this.gridColumn6,
																							 this.gridColumn7,
																							 this.gridColumn8,
																							 this.gridColumn9,
																							 this.gridColumn10,
																							 this.gridColumn13,
																							 this.gridColumn11,
																							 this.gridColumn12,
																							 this.gridColumn14,
																							 this.gridColumn15});
			this.gridView1.GridControl = this.gridControl_FinanInfo;
			this.gridView1.Name = "gridView1";
			// 
			// gridColumn2
			// 
			this.gridColumn2.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn2.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn2.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn2.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn2.Caption = "姓名";
			this.gridColumn2.Name = "gridColumn2";
			this.gridColumn2.OptionsColumn.AllowEdit = false;
			this.gridColumn2.OptionsColumn.AllowFocus = false;
			this.gridColumn2.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn2.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn2.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn2.OptionsColumn.AllowMove = false;
			this.gridColumn2.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn2.OptionsColumn.FixedWidth = true;
			this.gridColumn2.OptionsColumn.ReadOnly = true;
			this.gridColumn2.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn2.Visible = true;
			this.gridColumn2.VisibleIndex = 0;
			// 
			// gridColumn1
			// 
			this.gridColumn1.Caption = "班级";
			this.gridColumn1.Name = "gridColumn1";
			this.gridColumn1.Visible = true;
			this.gridColumn1.VisibleIndex = 13;
			this.gridColumn1.Width = 20;
			// 
			// gridColumn4
			// 
			this.gridColumn4.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn4.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn4.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn4.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn4.Caption = "应交天数";
			this.gridColumn4.Name = "gridColumn4";
			this.gridColumn4.OptionsColumn.AllowEdit = false;
			this.gridColumn4.OptionsColumn.AllowFocus = false;
			this.gridColumn4.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn4.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn4.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn4.OptionsColumn.AllowMove = false;
			this.gridColumn4.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn4.OptionsColumn.FixedWidth = true;
			this.gridColumn4.OptionsColumn.ReadOnly = true;
			this.gridColumn4.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn4.Visible = true;
			this.gridColumn4.VisibleIndex = 1;
			this.gridColumn4.Width = 106;
			// 
			// gridColumn5
			// 
			this.gridColumn5.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn5.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn5.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn5.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn5.Caption = "停伙天数";
			this.gridColumn5.Name = "gridColumn5";
			this.gridColumn5.OptionsColumn.AllowEdit = false;
			this.gridColumn5.OptionsColumn.AllowFocus = false;
			this.gridColumn5.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn5.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn5.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn5.OptionsColumn.AllowMove = false;
			this.gridColumn5.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn5.OptionsColumn.FixedWidth = true;
			this.gridColumn5.OptionsColumn.ReadOnly = true;
			this.gridColumn5.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn5.Visible = true;
			this.gridColumn5.VisibleIndex = 2;
			this.gridColumn5.Width = 83;
			// 
			// gridColumn6
			// 
			this.gridColumn6.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn6.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn6.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn6.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn6.Caption = "管理费";
			this.gridColumn6.Name = "gridColumn6";
			this.gridColumn6.OptionsColumn.AllowEdit = false;
			this.gridColumn6.OptionsColumn.AllowFocus = false;
			this.gridColumn6.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn6.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn6.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn6.OptionsColumn.AllowMove = false;
			this.gridColumn6.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn6.OptionsColumn.FixedWidth = true;
			this.gridColumn6.OptionsColumn.ReadOnly = true;
			this.gridColumn6.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn6.Visible = true;
			this.gridColumn6.VisibleIndex = 3;
			// 
			// gridColumn7
			// 
			this.gridColumn7.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn7.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn7.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn7.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn7.Caption = "晚托费";
			this.gridColumn7.Name = "gridColumn7";
			this.gridColumn7.OptionsColumn.AllowEdit = false;
			this.gridColumn7.OptionsColumn.AllowFocus = false;
			this.gridColumn7.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn7.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn7.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn7.OptionsColumn.AllowMove = false;
			this.gridColumn7.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn7.OptionsColumn.FixedWidth = true;
			this.gridColumn7.OptionsColumn.ReadOnly = true;
			this.gridColumn7.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn7.Visible = true;
			this.gridColumn7.VisibleIndex = 4;
			// 
			// gridColumn8
			// 
			this.gridColumn8.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn8.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn8.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn8.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn8.Caption = "伙食费";
			this.gridColumn8.Name = "gridColumn8";
			this.gridColumn8.OptionsColumn.AllowEdit = false;
			this.gridColumn8.OptionsColumn.AllowFocus = false;
			this.gridColumn8.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn8.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn8.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn8.OptionsColumn.AllowMove = false;
			this.gridColumn8.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn8.OptionsColumn.FixedWidth = true;
			this.gridColumn8.OptionsColumn.ReadOnly = true;
			this.gridColumn8.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn8.Visible = true;
			this.gridColumn8.VisibleIndex = 5;
			// 
			// gridColumn9
			// 
			this.gridColumn9.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn9.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn9.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn9.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn9.Caption = "牛奶费";
			this.gridColumn9.Name = "gridColumn9";
			this.gridColumn9.OptionsColumn.AllowEdit = false;
			this.gridColumn9.OptionsColumn.AllowFocus = false;
			this.gridColumn9.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn9.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn9.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn9.OptionsColumn.AllowMove = false;
			this.gridColumn9.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn9.OptionsColumn.FixedWidth = true;
			this.gridColumn9.OptionsColumn.ReadOnly = true;
			this.gridColumn9.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn9.Visible = true;
			this.gridColumn9.VisibleIndex = 6;
			this.gridColumn9.Width = 65;
			// 
			// gridColumn10
			// 
			this.gridColumn10.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn10.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn10.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn10.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn10.Caption = "代办费";
			this.gridColumn10.Name = "gridColumn10";
			this.gridColumn10.OptionsColumn.AllowEdit = false;
			this.gridColumn10.OptionsColumn.AllowFocus = false;
			this.gridColumn10.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn10.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn10.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn10.OptionsColumn.AllowMove = false;
			this.gridColumn10.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn10.OptionsColumn.FixedWidth = true;
			this.gridColumn10.OptionsColumn.ReadOnly = true;
			this.gridColumn10.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn10.Visible = true;
			this.gridColumn10.VisibleIndex = 7;
			// 
			// gridColumn13
			// 
			this.gridColumn13.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn13.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn13.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn13.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn13.Caption = "附加费";
			this.gridColumn13.Name = "gridColumn13";
			this.gridColumn13.OptionsColumn.AllowEdit = false;
			this.gridColumn13.OptionsColumn.AllowFocus = false;
			this.gridColumn13.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn13.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn13.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn13.OptionsColumn.AllowMove = false;
			this.gridColumn13.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn13.OptionsColumn.FixedWidth = true;
			this.gridColumn13.OptionsColumn.ReadOnly = true;
			this.gridColumn13.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn13.Visible = true;
			this.gridColumn13.VisibleIndex = 10;
			// 
			// gridColumn11
			// 
			this.gridColumn11.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn11.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn11.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn11.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn11.Caption = "伙食退费";
			this.gridColumn11.Name = "gridColumn11";
			this.gridColumn11.OptionsColumn.AllowEdit = false;
			this.gridColumn11.OptionsColumn.AllowFocus = false;
			this.gridColumn11.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn11.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn11.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn11.OptionsColumn.AllowMove = false;
			this.gridColumn11.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn11.OptionsColumn.FixedWidth = true;
			this.gridColumn11.OptionsColumn.ReadOnly = true;
			this.gridColumn11.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn11.Visible = true;
			this.gridColumn11.VisibleIndex = 8;
			// 
			// gridColumn12
			// 
			this.gridColumn12.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn12.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn12.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn12.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn12.Caption = "管理退费";
			this.gridColumn12.Name = "gridColumn12";
			this.gridColumn12.OptionsColumn.AllowEdit = false;
			this.gridColumn12.OptionsColumn.AllowFocus = false;
			this.gridColumn12.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn12.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn12.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn12.OptionsColumn.AllowMove = false;
			this.gridColumn12.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn12.OptionsColumn.FixedWidth = true;
			this.gridColumn12.OptionsColumn.ReadOnly = true;
			this.gridColumn12.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn12.Visible = true;
			this.gridColumn12.VisibleIndex = 9;
			// 
			// gridColumn14
			// 
			this.gridColumn14.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn14.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn14.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn14.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn14.Caption = "实收金额";
			this.gridColumn14.Name = "gridColumn14";
			this.gridColumn14.OptionsColumn.AllowEdit = false;
			this.gridColumn14.OptionsColumn.AllowFocus = false;
			this.gridColumn14.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn14.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn14.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn14.OptionsColumn.AllowMove = false;
			this.gridColumn14.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn14.OptionsColumn.FixedWidth = true;
			this.gridColumn14.OptionsColumn.ReadOnly = true;
			this.gridColumn14.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn14.Visible = true;
			this.gridColumn14.VisibleIndex = 11;
			// 
			// gridColumn15
			// 
			this.gridColumn15.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn15.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn15.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn15.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn15.Caption = "备注";
			this.gridColumn15.Name = "gridColumn15";
			this.gridColumn15.OptionsColumn.AllowEdit = false;
			this.gridColumn15.OptionsColumn.AllowFocus = false;
			this.gridColumn15.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn15.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn15.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn15.OptionsColumn.AllowMove = false;
			this.gridColumn15.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn15.OptionsColumn.FixedWidth = true;
			this.gridColumn15.OptionsColumn.ReadOnly = true;
			this.gridColumn15.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn15.Visible = true;
			this.gridColumn15.VisibleIndex = 12;
			// 
			// panelControl1
			// 
			this.panelControl1.Controls.Add(this.simpleButton_DeleteData);
			this.panelControl1.Controls.Add(this.simpleButton_DataModify);
			this.panelControl1.Controls.Add(this.simpleButton_ChargeSave);
			this.panelControl1.Controls.Add(this.simpleButton_History);
			this.panelControl1.Controls.Add(this.simpleButton_DataPrint);
			this.panelControl1.Controls.Add(this.simpleButton_MonthBalance);
			this.panelControl1.Dock = System.Windows.Forms.DockStyle.Top;
			this.panelControl1.Location = new System.Drawing.Point(0, 0);
			this.panelControl1.Name = "panelControl1";
			this.panelControl1.Size = new System.Drawing.Size(569, 40);
			this.panelControl1.TabIndex = 0;
			this.panelControl1.Text = "panelControl1";
			// 
			// simpleButton_DeleteData
			// 
			this.simpleButton_DeleteData.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.simpleButton_DeleteData.Appearance.ForeColor = System.Drawing.Color.DarkMagenta;
			this.simpleButton_DeleteData.Appearance.Options.UseFont = true;
			this.simpleButton_DeleteData.Appearance.Options.UseForeColor = true;
			this.simpleButton_DeleteData.Location = new System.Drawing.Point(336, 8);
			this.simpleButton_DeleteData.Name = "simpleButton_DeleteData";
			this.simpleButton_DeleteData.Size = new System.Drawing.Size(72, 26);
			this.simpleButton_DeleteData.TabIndex = 14;
			this.simpleButton_DeleteData.Tag = 4;
			this.simpleButton_DeleteData.Text = "存根删除";
			this.simpleButton_DeleteData.Click += new System.EventHandler(this.simpleButton_DeleteData_Click);
			// 
			// simpleButton_DataModify
			// 
			this.simpleButton_DataModify.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.simpleButton_DataModify.Appearance.ForeColor = System.Drawing.Color.DarkMagenta;
			this.simpleButton_DataModify.Appearance.Options.UseFont = true;
			this.simpleButton_DataModify.Appearance.Options.UseForeColor = true;
			this.simpleButton_DataModify.Location = new System.Drawing.Point(96, 8);
			this.simpleButton_DataModify.Name = "simpleButton_DataModify";
			this.simpleButton_DataModify.Size = new System.Drawing.Size(72, 26);
			this.simpleButton_DataModify.TabIndex = 13;
			this.simpleButton_DataModify.Tag = 4;
			this.simpleButton_DataModify.Text = "数据修改";
			this.simpleButton_DataModify.Click += new System.EventHandler(this.simpleButton_DataModify_Click);
			// 
			// simpleButton_ChargeSave
			// 
			this.simpleButton_ChargeSave.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.simpleButton_ChargeSave.Appearance.ForeColor = System.Drawing.Color.DarkMagenta;
			this.simpleButton_ChargeSave.Appearance.Options.UseFont = true;
			this.simpleButton_ChargeSave.Appearance.Options.UseForeColor = true;
			this.simpleButton_ChargeSave.Location = new System.Drawing.Point(256, 8);
			this.simpleButton_ChargeSave.Name = "simpleButton_ChargeSave";
			this.simpleButton_ChargeSave.Size = new System.Drawing.Size(72, 26);
			this.simpleButton_ChargeSave.TabIndex = 12;
			this.simpleButton_ChargeSave.Tag = 4;
			this.simpleButton_ChargeSave.Text = "费用存根";
			this.simpleButton_ChargeSave.Click += new System.EventHandler(this.simpleButton_ChargeSave_Click);
			// 
			// simpleButton_History
			// 
			this.simpleButton_History.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.simpleButton_History.Appearance.ForeColor = System.Drawing.Color.DarkMagenta;
			this.simpleButton_History.Appearance.Options.UseFont = true;
			this.simpleButton_History.Appearance.Options.UseForeColor = true;
			this.simpleButton_History.Location = new System.Drawing.Point(176, 8);
			this.simpleButton_History.Name = "simpleButton_History";
			this.simpleButton_History.Size = new System.Drawing.Size(72, 26);
			this.simpleButton_History.TabIndex = 11;
			this.simpleButton_History.Tag = 4;
			this.simpleButton_History.Text = "历史查询";
			this.simpleButton_History.Click += new System.EventHandler(this.simpleButton_History_Click);
			// 
			// simpleButton_DataPrint
			// 
			this.simpleButton_DataPrint.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.simpleButton_DataPrint.Appearance.ForeColor = System.Drawing.Color.DarkMagenta;
			this.simpleButton_DataPrint.Appearance.Options.UseFont = true;
			this.simpleButton_DataPrint.Appearance.Options.UseForeColor = true;
			this.simpleButton_DataPrint.Location = new System.Drawing.Point(416, 8);
			this.simpleButton_DataPrint.Name = "simpleButton_DataPrint";
			this.simpleButton_DataPrint.Size = new System.Drawing.Size(72, 26);
			this.simpleButton_DataPrint.TabIndex = 9;
			this.simpleButton_DataPrint.Tag = 4;
			this.simpleButton_DataPrint.Text = "数据打印";
			this.simpleButton_DataPrint.Click += new System.EventHandler(this.simpleButton_DataPrint_Click);
			// 
			// simpleButton_MonthBalance
			// 
			this.simpleButton_MonthBalance.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.simpleButton_MonthBalance.Appearance.ForeColor = System.Drawing.Color.DarkMagenta;
			this.simpleButton_MonthBalance.Appearance.Options.UseFont = true;
			this.simpleButton_MonthBalance.Appearance.Options.UseForeColor = true;
			this.simpleButton_MonthBalance.Location = new System.Drawing.Point(16, 8);
			this.simpleButton_MonthBalance.Name = "simpleButton_MonthBalance";
			this.simpleButton_MonthBalance.Size = new System.Drawing.Size(72, 26);
			this.simpleButton_MonthBalance.TabIndex = 8;
			this.simpleButton_MonthBalance.Tag = 4;
			this.simpleButton_MonthBalance.Text = "本月结算";
			this.simpleButton_MonthBalance.Click += new System.EventHandler(this.simpleButton_MonthBalance_Click);
			// 
			// FinanManagement
			// 
			this.Controls.Add(this.splitContainerControl1);
			this.Controls.Add(this.notePanel_WelcomePanel);
			this.Name = "FinanManagement";
			this.Size = new System.Drawing.Size(772, 540);
			((System.ComponentModel.ISupportInitialize)(this.splitContainerControl1)).EndInit();
			this.splitContainerControl1.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.groupControl_FinanInfo)).EndInit();
			this.groupControl_FinanInfo.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.memoEdit_Remark.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_ExtraCharge.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_CommCharge.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MilkCharge.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_NightCharge.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_AdmCharge.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MessCharge.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_AdmRestoreDays.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MessRestoreDays.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_FinanQuery)).EndInit();
			this.groupControl_FinanQuery.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.dateEdit_SearchMonth.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.dateEdit_BalanceMonth.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_Number.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_Name.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_Class.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_Grade.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.gridControl_FinanInfo)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.advBandedGridView1)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
			this.panelControl1.ResumeLayout(false);
			this.ResumeLayout(false);

		}
コード例 #35
0
        private void FrmBurdenLineType_Load(object sender, EventArgs e)
        {
            if (!printManage)
            {
                barButtonItem1.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
                barButtonItem2.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
            }


            if (!isselect)
            {
                barButtonItem4.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
            }

            try
            {
                chart1.Series.Clear();
                //DataTable dataTable = new DataTable();
                IList <BurdenLineForecast> list = Services.BaseService.GetStrongList <BurdenLineForecast>();

                foreach (BurdenLineForecast bf in list)
                {
                    foreach (DataRow rw in dts.Rows)
                    {
                        if (bf.BurdenYear == int.Parse(rw["A"].ToString()) && (bool)rw["B"])
                        {
                            bf.UID = "A";
                        }
                    }
                }

                dt.Rows.Clear();


                dt = Itop.Common.DataConverter.ToDataTable((IList)list, typeof(BurdenLineForecast));


                int date1 = 0; //(int)list[0].BurdenYear;
                int date2 = 0; // (int)list[list.Count - 1].BurdenYear;

                int ss = 1;
                foreach (BurdenLineForecast bf in list)
                {
                    if (bf.UID == "A")
                    {
                        if (ss < 2)
                        {
                            date1 = (int)bf.BurdenYear;
                        }
                        date2 = (int)bf.BurdenYear;
                        ss++;
                    }
                }
                this.bandedGridView1.GroupPanelText = "本地区" + date1.ToString() + "年/" + date2.ToString() + "年冬夏典型日负荷曲线预测表";
                ////if (list.Count > 0)
                ////{
                ////    int date1 = (int)list[0].BurdenYear;
                ////    int date2 = (int)list[list.Count - 1].BurdenYear;

                ////    this.bandedGridView1.GroupPanelText = "本地区" + date1.ToString() + "年/" + date2.ToString() + "年冬夏典型日负荷曲线预测表";
                ////}

                int numi      = 0;
                int numj      = 0;
                int numk      = 0;
                int listCount = list.Count;
                this.bandedGridView1.Bands.Clear();
                bandedGridView1.Columns.Clear();

                DevExpress.XtraGrid.Views.BandedGrid.GridBand gridBands1 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
                gridBands1.Caption = "  ";
                gridBands1.Name    = "gridBands1";
                gridBands1.Width   = 150;
                gridBands1.AppearanceHeader.Options.UseTextOptions = true;
                gridBands1.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
                this.bandedGridView1.Bands.Add(gridBands1);

                //DevExpress.XtraGrid.Views.BandedGrid.GridBand gridBands2 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
                //gridBands2.Caption = "   ";
                //gridBands2.Name = "gridBands2";
                //gridBands2.AppearanceHeader.Options.UseTextOptions = true;
                //gridBands2.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
                //gridBands1.Children.Add(gridBands2);

                DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn gridColumns1 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
                gridColumns1.Caption   = "";
                gridColumns1.FieldName = "YearBanded";
                gridColumns1.Name      = "Year";
                gridColumns1.Visible   = true;
                gridColumns1.Width     = 150;
                gridColumns1.AppearanceCell.Options.UseTextOptions = true;
                gridColumns1.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
                bandedGridView1.Columns.Add(gridColumns1);
                gridBands1.Columns.Add(gridColumns1);
                dataTable.Columns.Add("YearBanded", typeof(string));

                DevExpress.XtraGrid.Views.BandedGrid.GridBand[]         gridBand     = new DevExpress.XtraGrid.Views.BandedGrid.GridBand[listCount];
                DevExpress.XtraGrid.Views.BandedGrid.GridBand[]         gridBandDate = new DevExpress.XtraGrid.Views.BandedGrid.GridBand[listCount * 2];
                DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn[] gridColumn   = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn[listCount * 2];

                foreach (BurdenLineForecast bl in list)
                {
                    if (bl.UID != "A")
                    {
                        continue;
                    }


                    string blyear = bl.BurdenYear.ToString();

                    gridBand[numi]         = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
                    gridBand[numi].Caption = blyear + "年典型负荷日";
                    gridBand[numi].Name    = "gridBand" + blyear;
                    gridBand[numi].AppearanceHeader.Options.UseTextOptions = true;
                    gridBand[numi].AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
                    this.bandedGridView1.Bands.Add(gridBand[numi]);

                    gridBandDate[numj]         = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
                    gridBandDate[numj].Caption = "夏季";
                    gridBandDate[numj].Name    = "gridBandDateHour" + blyear;
                    gridBandDate[numj].AppearanceHeader.Options.UseTextOptions = true;
                    gridBandDate[numj].AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
                    gridBand[numi].Children.Add(gridBandDate[numj]);

                    gridColumn[numk]           = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
                    gridColumn[numk].Caption   = "Month" + blyear;
                    gridColumn[numk].FieldName = "Month" + blyear;
                    gridColumn[numk].Name      = "Month" + blyear;
                    gridColumn[numk].Visible   = true;
                    gridColumn[numk].DisplayFormat.FormatString = "n2";
                    gridColumn[numk].DisplayFormat.FormatType   = DevExpress.Utils.FormatType.Numeric;
                    dataTable.Columns.Add("Month" + blyear, typeof(double));
                    bandedGridView1.Columns.Add(gridColumn[numk]);
                    gridBandDate[numj].Columns.Add(gridColumn[numk]);

                    numj++;
                    numk++;


                    gridBandDate[numj]         = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
                    gridBandDate[numj].Caption = "冬季";
                    gridBandDate[numj].Name    = "gridBandDate" + blyear;
                    gridBandDate[numj].AppearanceHeader.Options.UseTextOptions = true;
                    gridBandDate[numj].AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
                    gridBand[numi].Children.Add(gridBandDate[numj]);

                    gridColumn[numk]           = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
                    gridColumn[numk].Caption   = "Day" + blyear;
                    gridColumn[numk].FieldName = "Day" + blyear;
                    gridColumn[numk].Name      = "Day" + blyear;
                    gridColumn[numk].Visible   = true;
                    gridColumn[numk].DisplayFormat.FormatString = "n2";
                    gridColumn[numk].DisplayFormat.FormatType   = DevExpress.Utils.FormatType.Numeric;
                    dataTable.Columns.Add("Day" + blyear, typeof(double));

                    bandedGridView1.Columns.Add(gridColumn[numk]);
                    gridBandDate[numj].Columns.Add(gridColumn[numk]);

                    numi++;
                    numj++;
                    numk++;
                }


                DataRow row1 = dataTable.NewRow();
                foreach (DataColumn column in dataTable.Columns)
                {
                    if (column.ColumnName == "YearBanded")
                    {
                        row1[column] = "Tmax";
                    }

                    foreach (BurdenLineForecast bl in list)
                    {
                        if (bl.UID != "A")
                        {
                            continue;
                        }

                        PropertyInfo pi = bl.GetType().GetProperty("SummerData");
                        if (pi.GetValue(bl, null) != null)
                        {
                            row1["Month" + bl.BurdenYear.ToString()] = (double)pi.GetValue(bl, null);
                        }


                        pi = bl.GetType().GetProperty("WinterData");
                        if (pi.GetValue(bl, null) != null)
                        {
                            row1["Day" + bl.BurdenYear.ToString()] = (double)pi.GetValue(bl, null);
                        }
                    }
                }
                dataTable.Rows.Add(row1);


                row1 = dataTable.NewRow();
                foreach (DataColumn column in dataTable.Columns)
                {
                    if (column.ColumnName == "YearBanded")
                    {
                        row1[column] = "平均负荷率(%)";
                    }

                    foreach (BurdenLineForecast bl in list)
                    {
                        if (bl.UID != "A")
                        {
                            continue;
                        }

                        PropertyInfo pi = bl.GetType().GetProperty("SummerDayAverage");
                        if (pi.GetValue(bl, null) != null)
                        {
                            row1["Month" + bl.BurdenYear.ToString()] = (double)pi.GetValue(bl, null);
                        }


                        pi = bl.GetType().GetProperty("WinterDayAverage");
                        if (pi.GetValue(bl, null) != null)
                        {
                            row1["Day" + bl.BurdenYear.ToString()] = (double)pi.GetValue(bl, null);
                        }
                    }
                }
                dataTable.Rows.Add(row1);


                row1 = dataTable.NewRow();
                foreach (DataColumn column in dataTable.Columns)
                {
                    if (column.ColumnName == "YearBanded")
                    {
                        row1[column] = "最小负荷率(%)";
                    }

                    foreach (BurdenLineForecast bl in list)
                    {
                        if (bl.UID != "A")
                        {
                            continue;
                        }

                        PropertyInfo pi = bl.GetType().GetProperty("SummerMinAverage");
                        if (pi.GetValue(bl, null) != null)
                        {
                            row1["Month" + bl.BurdenYear.ToString()] = (double)pi.GetValue(bl, null);
                        }


                        pi = bl.GetType().GetProperty("WinterMinAverage");
                        if (pi.GetValue(bl, null) != null)
                        {
                            row1["Day" + bl.BurdenYear.ToString()] = (double)pi.GetValue(bl, null);
                        }
                    }
                }
                dataTable.Rows.Add(row1);


                foreach (DataRow row in dt.Rows)
                {
                    if (row["UID"].ToString() != "A")
                    {
                        continue;
                    }
                    string seriesName = "";
                    try
                    {
                        seriesName = row["BurdenYear"].ToString() + "年";
                    }
                    catch { }
                    chart1.Series.Add(seriesName);
                    chart1.Series[seriesName].Type        = SeriesChartType.Line;
                    chart1.Series[seriesName].BorderWidth = 2;

                    for (int colIndex = 2; colIndex < 6; colIndex++)
                    {
                        string columnName = dt.Columns[colIndex].ColumnName;
                        double YVal       = (double)row[columnName];

                        chart1.Series[seriesName].Points.AddXY(GetText(columnName), YVal);
                    }
                }


                gridControl1.DataSource = dataTable;
                this.bandedGridView1.OptionsView.ShowColumnHeaders = false;
            }
            catch (Exception ex) { Itop.Common.MsgBox.Show(ex.Message); }
        }
コード例 #36
0
 /// <summary> 
 /// Required method for Designer support - do not modify 
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ucChiTiet));
     DevExpress.XtraGrid.StyleFormatCondition styleFormatCondition1 = new DevExpress.XtraGrid.StyleFormatCondition();
     this.bm = new DevExpress.XtraBars.BarManager(this.components);
     this.bar2 = new DevExpress.XtraBars.Bar();
     this.bbiXem = new DevExpress.XtraBars.BarButtonItem();
     this.bbiSua = new DevExpress.XtraBars.BarButtonItem();
     this.bbiXuatExcel = new DevExpress.XtraBars.BarButtonItem();
     this.bbiDong = new DevExpress.XtraBars.BarButtonItem();
     this.barDockControlTop = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlBottom = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlLeft = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlRight = new DevExpress.XtraBars.BarDockControl();
     this.img = new DevExpress.Utils.ImageCollection(this.components);
     this.gcList = new DevExpress.XtraGrid.GridControl();
     this.cHUNGTUCHITIETTheoNgayBindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.dsCamDo = new Phan_Mem_Quan_Ly_Cam_Do.CamDo.DS.dsCamDo();
     this.gbList = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridView();
     this.gridBand1 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.colMa_Chi_Tiet = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.colMa_Chung_Tu = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.colNgay = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.colTen_Khach_Hang = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.colSo_CMND = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.colDia_Chi = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.colSo_Tien_Cam = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.rptMayTinh = new DevExpress.XtraEditors.Repository.RepositoryItemCalcEdit();
     this.colTen_Tai_San = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.colLoai_Vang = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridBand2 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.colTrong_Luong_Vang_18k = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.colTrong_Luong_Vang_24k = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.colTrong_Luong_Khac = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.colTrong_Luong = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridBand3 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.colChuan_Do = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.colGia_Tri_Vat_Cam = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.colSap_Xep = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.colTinh_Trang = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.rptMayTinhPhanTram = new DevExpress.XtraEditors.Repository.RepositoryItemCalcEdit();
     this.layoutControl1 = new DevExpress.XtraLayout.LayoutControl();
     this.layoutControl2 = new DevExpress.XtraLayout.LayoutControl();
     this.layoutControlGroup2 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.txtDen = new DevExpress.XtraEditors.DateEdit();
     this.txtTu = new DevExpress.XtraEditors.DateEdit();
     this.cbTuyChon = new DevExpress.XtraEditors.ComboBoxEdit();
     this.layoutControlGroup1 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlItem1 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem2 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem3 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem4 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem5 = new DevExpress.XtraLayout.LayoutControlItem();
     this.cHUNG_TU_CHI_TIET_Theo_NgayTableAdapter = new Phan_Mem_Quan_Ly_Cam_Do.CamDo.DS.dsCamDoTableAdapters.CHUNG_TU_CHI_TIET_Theo_NgayTableAdapter();
     ((System.ComponentModel.ISupportInitialize)(this.bm)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.img)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gcList)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cHUNGTUCHITIETTheoNgayBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dsCamDo)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gbList)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.rptMayTinh)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.rptMayTinhPhanTram)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl1)).BeginInit();
     this.layoutControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtDen.Properties.CalendarTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtDen.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtTu.Properties.CalendarTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtTu.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbTuyChon.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem5)).BeginInit();
     this.SuspendLayout();
     //
     // bm
     //
     this.bm.Bars.AddRange(new DevExpress.XtraBars.Bar[] {
     this.bar2});
     this.bm.DockControls.Add(this.barDockControlTop);
     this.bm.DockControls.Add(this.barDockControlBottom);
     this.bm.DockControls.Add(this.barDockControlLeft);
     this.bm.DockControls.Add(this.barDockControlRight);
     this.bm.Form = this;
     this.bm.Images = this.img;
     this.bm.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
     this.bbiSua,
     this.bbiDong,
     this.bbiXem,
     this.bbiXuatExcel});
     this.bm.LargeImages = this.img;
     this.bm.MainMenu = this.bar2;
     this.bm.MaxItemId = 7;
     //
     // bar2
     //
     this.bar2.BarName = "Main menu";
     this.bar2.DockCol = 0;
     this.bar2.DockRow = 0;
     this.bar2.DockStyle = DevExpress.XtraBars.BarDockStyle.Top;
     this.bar2.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.bbiXem),
     new DevExpress.XtraBars.LinkPersistInfo(this.bbiSua),
     new DevExpress.XtraBars.LinkPersistInfo(this.bbiXuatExcel),
     new DevExpress.XtraBars.LinkPersistInfo(this.bbiDong)});
     this.bar2.OptionsBar.MultiLine = true;
     this.bar2.OptionsBar.UseWholeRow = true;
     this.bar2.Text = "Main menu";
     //
     // bbiXem
     //
     this.bbiXem.Caption = "Xem";
     this.bbiXem.Id = 5;
     this.bbiXem.ImageIndex = 35;
     this.bbiXem.Name = "bbiXem";
     this.bbiXem.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.bbiXem.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbiXem_ItemClick);
     //
     // bbiSua
     //
     this.bbiSua.Caption = "Sửa";
     this.bbiSua.Id = 1;
     this.bbiSua.ImageIndex = 29;
     this.bbiSua.Name = "bbiSua";
     this.bbiSua.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.bbiSua.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbiSua_ItemClick);
     //
     // bbiXuatExcel
     //
     this.bbiXuatExcel.Caption = "Xuất Excel";
     this.bbiXuatExcel.Id = 6;
     this.bbiXuatExcel.ImageIndex = 54;
     this.bbiXuatExcel.Name = "bbiXuatExcel";
     this.bbiXuatExcel.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.bbiXuatExcel.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbiXuatExcel_ItemClick);
     //
     // bbiDong
     //
     this.bbiDong.Caption = "Đóng";
     this.bbiDong.Id = 3;
     this.bbiDong.ImageIndex = 10;
     this.bbiDong.Name = "bbiDong";
     this.bbiDong.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.bbiDong.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbiDong_ItemClick);
     //
     // barDockControlTop
     //
     this.barDockControlTop.CausesValidation = false;
     this.barDockControlTop.Dock = System.Windows.Forms.DockStyle.Top;
     this.barDockControlTop.Location = new System.Drawing.Point(0, 0);
     this.barDockControlTop.Size = new System.Drawing.Size(1133, 24);
     //
     // barDockControlBottom
     //
     this.barDockControlBottom.CausesValidation = false;
     this.barDockControlBottom.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.barDockControlBottom.Location = new System.Drawing.Point(0, 636);
     this.barDockControlBottom.Size = new System.Drawing.Size(1133, 0);
     //
     // barDockControlLeft
     //
     this.barDockControlLeft.CausesValidation = false;
     this.barDockControlLeft.Dock = System.Windows.Forms.DockStyle.Left;
     this.barDockControlLeft.Location = new System.Drawing.Point(0, 24);
     this.barDockControlLeft.Size = new System.Drawing.Size(0, 612);
     //
     // barDockControlRight
     //
     this.barDockControlRight.CausesValidation = false;
     this.barDockControlRight.Dock = System.Windows.Forms.DockStyle.Right;
     this.barDockControlRight.Location = new System.Drawing.Point(1133, 24);
     this.barDockControlRight.Size = new System.Drawing.Size(0, 612);
     //
     // img
     //
     this.img.ImageStream = ((DevExpress.Utils.ImageCollectionStreamer)(resources.GetObject("img.ImageStream")));
     this.img.Images.SetKeyName(0, "abort.png");
     this.img.Images.SetKeyName(1, "about.png");
     this.img.Images.SetKeyName(2, "accept.png");
     this.img.Images.SetKeyName(3, "add.png");
     this.img.Images.SetKeyName(4, "application.png");
     this.img.Images.SetKeyName(5, "apply.png");
     this.img.Images.SetKeyName(6, "attention.png");
     this.img.Images.SetKeyName(7, "back.png");
     this.img.Images.SetKeyName(8, "cancel.png");
     this.img.Images.SetKeyName(9, "circulation.png");
     this.img.Images.SetKeyName(10, "close.png");
     this.img.Images.SetKeyName(11, "create.png");
     this.img.Images.SetKeyName(12, "cut.png");
     this.img.Images.SetKeyName(13, "danger.png");
     this.img.Images.SetKeyName(14, "delete.png");
     this.img.Images.SetKeyName(15, "down.png");
     this.img.Images.SetKeyName(16, "erase.png");
     this.img.Images.SetKeyName(17, "error.png");
     this.img.Images.SetKeyName(18, "forward.png");
     this.img.Images.SetKeyName(19, "help.png");
     this.img.Images.SetKeyName(20, "info.png");
     this.img.Images.SetKeyName(21, "information.png");
     this.img.Images.SetKeyName(22, "logout.png");
     this.img.Images.SetKeyName(23, "minus.png");
     this.img.Images.SetKeyName(24, "move.png");
     this.img.Images.SetKeyName(25, "next.png");
     this.img.Images.SetKeyName(26, "no entry.png");
     this.img.Images.SetKeyName(27, "no.png");
     this.img.Images.SetKeyName(28, "OK.png");
     this.img.Images.SetKeyName(29, "options.png");
     this.img.Images.SetKeyName(30, "plus.png");
     this.img.Images.SetKeyName(31, "previous.png");
     this.img.Images.SetKeyName(32, "problem.png");
     this.img.Images.SetKeyName(33, "question.png");
     this.img.Images.SetKeyName(34, "redo.png");
     this.img.Images.SetKeyName(35, "refresh.png");
     this.img.Images.SetKeyName(36, "remove.png");
     this.img.Images.SetKeyName(37, "renew.png");
     this.img.Images.SetKeyName(38, "repeat.png");
     this.img.Images.SetKeyName(39, "run.png");
     this.img.Images.SetKeyName(40, "save.png");
     this.img.Images.SetKeyName(41, "search.png");
     this.img.Images.SetKeyName(42, "settings.png");
     this.img.Images.SetKeyName(43, "stop.png");
     this.img.Images.SetKeyName(44, "switch.png");
     this.img.Images.SetKeyName(45, "sync.png");
     this.img.Images.SetKeyName(46, "system.png");
     this.img.Images.SetKeyName(47, "turn off.png");
     this.img.Images.SetKeyName(48, "undo.png");
     this.img.Images.SetKeyName(49, "up.png");
     this.img.Images.SetKeyName(50, "update.png");
     this.img.Images.SetKeyName(51, "view.png");
     this.img.Images.SetKeyName(52, "warning.png");
     this.img.Images.SetKeyName(53, "yes.png");
     this.img.Images.SetKeyName(54, "Excel-icon.png");
     //
     // gcList
     //
     this.gcList.DataSource = this.cHUNGTUCHITIETTheoNgayBindingSource;
     this.gcList.Location = new System.Drawing.Point(2, 26);
     this.gcList.MainView = this.gbList;
     this.gcList.MenuManager = this.bm;
     this.gcList.Name = "gcList";
     this.gcList.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.rptMayTinh,
     this.rptMayTinhPhanTram});
     this.gcList.Size = new System.Drawing.Size(1129, 584);
     this.gcList.TabIndex = 4;
     this.gcList.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gbList});
     //
     // cHUNGTUCHITIETTheoNgayBindingSource
     //
     this.cHUNGTUCHITIETTheoNgayBindingSource.DataMember = "CHUNG_TU_CHI_TIET_Theo_Ngay";
     this.cHUNGTUCHITIETTheoNgayBindingSource.DataSource = this.dsCamDo;
     //
     // dsCamDo
     //
     this.dsCamDo.DataSetName = "dsCamDo";
     this.dsCamDo.EnforceConstraints = false;
     this.dsCamDo.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
     //
     // gbList
     //
     this.gbList.Appearance.GroupRow.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
     this.gbList.Appearance.GroupRow.ForeColor = System.Drawing.Color.Red;
     this.gbList.Appearance.GroupRow.Options.UseFont = true;
     this.gbList.Appearance.GroupRow.Options.UseForeColor = true;
     this.gbList.Bands.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.GridBand[] {
     this.gridBand1,
     this.gridBand2,
     this.gridBand3});
     this.gbList.Columns.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn[] {
     this.colMa_Chi_Tiet,
     this.colMa_Chung_Tu,
     this.colNgay,
     this.colTen_Khach_Hang,
     this.colSo_CMND,
     this.colDia_Chi,
     this.colSo_Tien_Cam,
     this.colTen_Tai_San,
     this.colLoai_Vang,
     this.colTrong_Luong,
     this.colChuan_Do,
     this.colGia_Tri_Vat_Cam,
     this.colSap_Xep,
     this.colTinh_Trang,
     this.colTrong_Luong_Vang_18k,
     this.colTrong_Luong_Vang_24k,
     this.colTrong_Luong_Khac});
     this.gbList.CustomizationFormBounds = new System.Drawing.Rectangle(427, 278, 216, 199);
     styleFormatCondition1.Appearance.ForeColor = System.Drawing.Color.Red;
     styleFormatCondition1.Appearance.Options.UseForeColor = true;
     styleFormatCondition1.ApplyToRow = true;
     styleFormatCondition1.Condition = DevExpress.XtraGrid.FormatConditionEnum.Expression;
     styleFormatCondition1.Expression = "Iif([Tinh_Trang] == \'R\',True  ,False )";
     this.gbList.FormatConditions.AddRange(new DevExpress.XtraGrid.StyleFormatCondition[] {
     styleFormatCondition1});
     this.gbList.GridControl = this.gcList;
     this.gbList.GroupPanelText = "Kéo cột và thả vào đây để nhóm dữ liệu";
     this.gbList.GroupSummary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] {
     new DevExpress.XtraGrid.GridGroupSummaryItem(DevExpress.Data.SummaryItemType.Sum, "Thanh_Tien", null, " - Thành Tiền - {0:##,##0,###}")});
     this.gbList.IndicatorWidth = 40;
     this.gbList.Name = "gbList";
     this.gbList.OptionsBehavior.AutoExpandAllGroups = true;
     this.gbList.OptionsView.ColumnAutoWidth = false;
     this.gbList.OptionsView.ShowAutoFilterRow = true;
     this.gbList.OptionsView.ShowFooter = true;
     this.gbList.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.colMa_Chung_Tu, DevExpress.Data.ColumnSortOrder.Descending)});
     this.gbList.CustomDrawRowIndicator += new DevExpress.XtraGrid.Views.Grid.RowIndicatorCustomDrawEventHandler(this.gbList_CustomDrawRowIndicator);
     //
     // gridBand1
     //
     this.gridBand1.Columns.Add(this.colMa_Chi_Tiet);
     this.gridBand1.Columns.Add(this.colMa_Chung_Tu);
     this.gridBand1.Columns.Add(this.colNgay);
     this.gridBand1.Columns.Add(this.colTen_Khach_Hang);
     this.gridBand1.Columns.Add(this.colSo_CMND);
     this.gridBand1.Columns.Add(this.colDia_Chi);
     this.gridBand1.Columns.Add(this.colSo_Tien_Cam);
     this.gridBand1.Columns.Add(this.colTen_Tai_San);
     this.gridBand1.Columns.Add(this.colLoai_Vang);
     this.gridBand1.MinWidth = 20;
     this.gridBand1.Name = "gridBand1";
     this.gridBand1.VisibleIndex = 0;
     this.gridBand1.Width = 659;
     //
     // colMa_Chi_Tiet
     //
     this.colMa_Chi_Tiet.AppearanceHeader.Options.UseTextOptions = true;
     this.colMa_Chi_Tiet.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colMa_Chi_Tiet.FieldName = "Ma_Chi_Tiet";
     this.colMa_Chi_Tiet.Name = "colMa_Chi_Tiet";
     this.colMa_Chi_Tiet.OptionsColumn.ReadOnly = true;
     this.colMa_Chi_Tiet.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     //
     // colMa_Chung_Tu
     //
     this.colMa_Chung_Tu.AppearanceHeader.Options.UseTextOptions = true;
     this.colMa_Chung_Tu.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colMa_Chung_Tu.Caption = "Mã Chứng Từ";
     this.colMa_Chung_Tu.FieldName = "Ma_Chung_Tu";
     this.colMa_Chung_Tu.Name = "colMa_Chung_Tu";
     this.colMa_Chung_Tu.OptionsColumn.ReadOnly = true;
     this.colMa_Chung_Tu.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colMa_Chung_Tu.Visible = true;
     this.colMa_Chung_Tu.Width = 100;
     //
     // colNgay
     //
     this.colNgay.AppearanceHeader.Options.UseTextOptions = true;
     this.colNgay.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colNgay.Caption = "Ngày";
     this.colNgay.DisplayFormat.FormatString = "dd/MM/yyyy";
     this.colNgay.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Custom;
     this.colNgay.FieldName = "Ngay";
     this.colNgay.Name = "colNgay";
     this.colNgay.OptionsColumn.ReadOnly = true;
     this.colNgay.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colNgay.Visible = true;
     //
     // colTen_Khach_Hang
     //
     this.colTen_Khach_Hang.AppearanceHeader.Options.UseTextOptions = true;
     this.colTen_Khach_Hang.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colTen_Khach_Hang.Caption = "Tên Khách Hàng";
     this.colTen_Khach_Hang.FieldName = "Ten_Khach_Hang";
     this.colTen_Khach_Hang.Name = "colTen_Khach_Hang";
     this.colTen_Khach_Hang.OptionsColumn.ReadOnly = true;
     this.colTen_Khach_Hang.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colTen_Khach_Hang.Visible = true;
     this.colTen_Khach_Hang.Width = 100;
     //
     // colSo_CMND
     //
     this.colSo_CMND.AppearanceHeader.Options.UseTextOptions = true;
     this.colSo_CMND.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSo_CMND.Caption = "Số CMND";
     this.colSo_CMND.FieldName = "So_CMND";
     this.colSo_CMND.Name = "colSo_CMND";
     this.colSo_CMND.OptionsColumn.ReadOnly = true;
     this.colSo_CMND.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colSo_CMND.Visible = true;
     //
     // colDia_Chi
     //
     this.colDia_Chi.AppearanceHeader.Options.UseTextOptions = true;
     this.colDia_Chi.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colDia_Chi.Caption = "Địa Chỉ";
     this.colDia_Chi.FieldName = "Dia_Chi";
     this.colDia_Chi.Name = "colDia_Chi";
     this.colDia_Chi.OptionsColumn.ReadOnly = true;
     this.colDia_Chi.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colDia_Chi.Visible = true;
     //
     // colSo_Tien_Cam
     //
     this.colSo_Tien_Cam.AppearanceHeader.Options.UseTextOptions = true;
     this.colSo_Tien_Cam.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSo_Tien_Cam.Caption = "Số Tiền Cầm";
     this.colSo_Tien_Cam.ColumnEdit = this.rptMayTinh;
     this.colSo_Tien_Cam.FieldName = "So_Tien_Cam";
     this.colSo_Tien_Cam.Name = "colSo_Tien_Cam";
     this.colSo_Tien_Cam.OptionsColumn.ReadOnly = true;
     this.colSo_Tien_Cam.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colSo_Tien_Cam.Visible = true;
     this.colSo_Tien_Cam.Width = 81;
     //
     // rptMayTinh
     //
     this.rptMayTinh.AutoHeight = false;
     this.rptMayTinh.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.rptMayTinh.DisplayFormat.FormatString = "{0:##,##0.###}";
     this.rptMayTinh.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Custom;
     this.rptMayTinh.EditFormat.FormatString = "{0:##,##0.###}";
     this.rptMayTinh.EditFormat.FormatType = DevExpress.Utils.FormatType.Custom;
     this.rptMayTinh.Name = "rptMayTinh";
     //
     // colTen_Tai_San
     //
     this.colTen_Tai_San.AppearanceHeader.Options.UseTextOptions = true;
     this.colTen_Tai_San.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colTen_Tai_San.Caption = "Tên Tài Sản";
     this.colTen_Tai_San.FieldName = "Ten_Tai_San";
     this.colTen_Tai_San.Name = "colTen_Tai_San";
     this.colTen_Tai_San.OptionsColumn.ReadOnly = true;
     this.colTen_Tai_San.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colTen_Tai_San.Visible = true;
     this.colTen_Tai_San.Width = 78;
     //
     // colLoai_Vang
     //
     this.colLoai_Vang.AppearanceHeader.Options.UseTextOptions = true;
     this.colLoai_Vang.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colLoai_Vang.Caption = "Loại Vàng";
     this.colLoai_Vang.FieldName = "Loai_Vang";
     this.colLoai_Vang.Name = "colLoai_Vang";
     this.colLoai_Vang.OptionsColumn.ReadOnly = true;
     this.colLoai_Vang.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colLoai_Vang.Visible = true;
     //
     // gridBand2
     //
     this.gridBand2.AppearanceHeader.Options.UseTextOptions = true;
     this.gridBand2.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridBand2.Caption = "Trọng Lượng";
     this.gridBand2.Columns.Add(this.colTrong_Luong_Vang_18k);
     this.gridBand2.Columns.Add(this.colTrong_Luong_Vang_24k);
     this.gridBand2.Columns.Add(this.colTrong_Luong_Khac);
     this.gridBand2.Columns.Add(this.colTrong_Luong);
     this.gridBand2.MinWidth = 20;
     this.gridBand2.Name = "gridBand2";
     this.gridBand2.VisibleIndex = 1;
     this.gridBand2.Width = 308;
     //
     // colTrong_Luong_Vang_18k
     //
     this.colTrong_Luong_Vang_18k.AppearanceHeader.Options.UseTextOptions = true;
     this.colTrong_Luong_Vang_18k.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colTrong_Luong_Vang_18k.Caption = "18k";
     this.colTrong_Luong_Vang_18k.ColumnEdit = this.rptMayTinh;
     this.colTrong_Luong_Vang_18k.FieldName = "Trong_Luong_Vang_18k";
     this.colTrong_Luong_Vang_18k.Name = "colTrong_Luong_Vang_18k";
     this.colTrong_Luong_Vang_18k.OptionsColumn.ReadOnly = true;
     this.colTrong_Luong_Vang_18k.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colTrong_Luong_Vang_18k.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] {
     new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Sum, "Trong_Luong_Vang_18k", "{0:##,##0.###}")});
     this.colTrong_Luong_Vang_18k.Visible = true;
     //
     // colTrong_Luong_Vang_24k
     //
     this.colTrong_Luong_Vang_24k.AppearanceHeader.Options.UseTextOptions = true;
     this.colTrong_Luong_Vang_24k.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colTrong_Luong_Vang_24k.Caption = "24k";
     this.colTrong_Luong_Vang_24k.ColumnEdit = this.rptMayTinh;
     this.colTrong_Luong_Vang_24k.FieldName = "Trong_Luong_Vang_24k";
     this.colTrong_Luong_Vang_24k.Name = "colTrong_Luong_Vang_24k";
     this.colTrong_Luong_Vang_24k.OptionsColumn.ReadOnly = true;
     this.colTrong_Luong_Vang_24k.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colTrong_Luong_Vang_24k.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] {
     new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Sum, "Trong_Luong_Vang_24k", "{0:##,##0.###}")});
     this.colTrong_Luong_Vang_24k.Visible = true;
     //
     // colTrong_Luong_Khac
     //
     this.colTrong_Luong_Khac.AppearanceHeader.Options.UseTextOptions = true;
     this.colTrong_Luong_Khac.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colTrong_Luong_Khac.Caption = "Khác";
     this.colTrong_Luong_Khac.ColumnEdit = this.rptMayTinh;
     this.colTrong_Luong_Khac.FieldName = "Trong_Luong_Khac";
     this.colTrong_Luong_Khac.Name = "colTrong_Luong_Khac";
     this.colTrong_Luong_Khac.OptionsColumn.ReadOnly = true;
     this.colTrong_Luong_Khac.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colTrong_Luong_Khac.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] {
     new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Sum, "Trong_Luong_Khac", "{0:##,##0.###}")});
     this.colTrong_Luong_Khac.Visible = true;
     //
     // colTrong_Luong
     //
     this.colTrong_Luong.AppearanceHeader.Options.UseTextOptions = true;
     this.colTrong_Luong.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colTrong_Luong.Caption = "Trọng Lượng";
     this.colTrong_Luong.FieldName = "Trong_Luong";
     this.colTrong_Luong.Name = "colTrong_Luong";
     this.colTrong_Luong.OptionsColumn.ReadOnly = true;
     this.colTrong_Luong.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colTrong_Luong.Visible = true;
     this.colTrong_Luong.Width = 83;
     //
     // gridBand3
     //
     this.gridBand3.Columns.Add(this.colChuan_Do);
     this.gridBand3.Columns.Add(this.colGia_Tri_Vat_Cam);
     this.gridBand3.Columns.Add(this.colSap_Xep);
     this.gridBand3.Columns.Add(this.colTinh_Trang);
     this.gridBand3.MinWidth = 20;
     this.gridBand3.Name = "gridBand3";
     this.gridBand3.VisibleIndex = 2;
     this.gridBand3.Width = 245;
     //
     // colChuan_Do
     //
     this.colChuan_Do.AppearanceHeader.Options.UseTextOptions = true;
     this.colChuan_Do.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colChuan_Do.Caption = "Chuẩn Độ";
     this.colChuan_Do.FieldName = "Chuan_Do";
     this.colChuan_Do.Name = "colChuan_Do";
     this.colChuan_Do.OptionsColumn.ReadOnly = true;
     this.colChuan_Do.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colChuan_Do.Visible = true;
     //
     // colGia_Tri_Vat_Cam
     //
     this.colGia_Tri_Vat_Cam.AppearanceHeader.Options.UseTextOptions = true;
     this.colGia_Tri_Vat_Cam.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colGia_Tri_Vat_Cam.Caption = "Giá Trị Vật Cầm";
     this.colGia_Tri_Vat_Cam.ColumnEdit = this.rptMayTinh;
     this.colGia_Tri_Vat_Cam.FieldName = "Gia_Tri_Vat_Cam";
     this.colGia_Tri_Vat_Cam.Name = "colGia_Tri_Vat_Cam";
     this.colGia_Tri_Vat_Cam.OptionsColumn.ReadOnly = true;
     this.colGia_Tri_Vat_Cam.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colGia_Tri_Vat_Cam.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] {
     new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Sum, "Gia_Tri_Vat_Cam", "{0:##,##0.###}")});
     this.colGia_Tri_Vat_Cam.Visible = true;
     this.colGia_Tri_Vat_Cam.Width = 95;
     //
     // colSap_Xep
     //
     this.colSap_Xep.AppearanceHeader.Options.UseTextOptions = true;
     this.colSap_Xep.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSap_Xep.Caption = "Sắp Xếp";
     this.colSap_Xep.FieldName = "Sap_Xep";
     this.colSap_Xep.Name = "colSap_Xep";
     this.colSap_Xep.OptionsColumn.ReadOnly = true;
     this.colSap_Xep.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colSap_Xep.Visible = true;
     //
     // colTinh_Trang
     //
     this.colTinh_Trang.AppearanceHeader.Options.UseTextOptions = true;
     this.colTinh_Trang.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colTinh_Trang.FieldName = "Tinh_Trang";
     this.colTinh_Trang.Name = "colTinh_Trang";
     //
     // rptMayTinhPhanTram
     //
     this.rptMayTinhPhanTram.AutoHeight = false;
     this.rptMayTinhPhanTram.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.rptMayTinhPhanTram.DisplayFormat.FormatString = "{0:##,##0.###} %";
     this.rptMayTinhPhanTram.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Custom;
     this.rptMayTinhPhanTram.EditFormat.FormatString = "{0:##,##0.###} %";
     this.rptMayTinhPhanTram.EditFormat.FormatType = DevExpress.Utils.FormatType.Custom;
     this.rptMayTinhPhanTram.Name = "rptMayTinhPhanTram";
     //
     // layoutControl1
     //
     this.layoutControl1.Controls.Add(this.layoutControl2);
     this.layoutControl1.Controls.Add(this.txtDen);
     this.layoutControl1.Controls.Add(this.txtTu);
     this.layoutControl1.Controls.Add(this.cbTuyChon);
     this.layoutControl1.Controls.Add(this.gcList);
     this.layoutControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.layoutControl1.Location = new System.Drawing.Point(0, 24);
     this.layoutControl1.Name = "layoutControl1";
     this.layoutControl1.Root = this.layoutControlGroup1;
     this.layoutControl1.Size = new System.Drawing.Size(1133, 612);
     this.layoutControl1.TabIndex = 5;
     this.layoutControl1.Text = "layoutControl1";
     //
     // layoutControl2
     //
     this.layoutControl2.Location = new System.Drawing.Point(541, 2);
     this.layoutControl2.Name = "layoutControl2";
     this.layoutControl2.Root = this.layoutControlGroup2;
     this.layoutControl2.Size = new System.Drawing.Size(590, 20);
     this.layoutControl2.TabIndex = 8;
     this.layoutControl2.Text = "layoutControl2";
     //
     // layoutControlGroup2
     //
     this.layoutControlGroup2.CustomizationFormText = "layoutControlGroup2";
     this.layoutControlGroup2.EnableIndentsWithoutBorders = DevExpress.Utils.DefaultBoolean.True;
     this.layoutControlGroup2.GroupBordersVisible = false;
     this.layoutControlGroup2.Location = new System.Drawing.Point(0, 0);
     this.layoutControlGroup2.Name = "layoutControlGroup2";
     this.layoutControlGroup2.Size = new System.Drawing.Size(590, 20);
     this.layoutControlGroup2.Text = "layoutControlGroup2";
     this.layoutControlGroup2.TextVisible = false;
     //
     // txtDen
     //
     this.txtDen.EditValue = null;
     this.txtDen.Location = new System.Drawing.Point(397, 2);
     this.txtDen.MenuManager = this.bm;
     this.txtDen.Name = "txtDen";
     this.txtDen.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.txtDen.Properties.CalendarTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.txtDen.Properties.DisplayFormat.FormatString = "{0:dd/MM/yyyy}";
     this.txtDen.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Custom;
     this.txtDen.Properties.EditFormat.FormatString = "{0:dd/MM/yyyy}";
     this.txtDen.Properties.EditFormat.FormatType = DevExpress.Utils.FormatType.Custom;
     this.txtDen.Size = new System.Drawing.Size(140, 20);
     this.txtDen.StyleController = this.layoutControl1;
     this.txtDen.TabIndex = 7;
     //
     // txtTu
     //
     this.txtTu.EditValue = null;
     this.txtTu.Location = new System.Drawing.Point(217, 2);
     this.txtTu.MenuManager = this.bm;
     this.txtTu.Name = "txtTu";
     this.txtTu.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.txtTu.Properties.CalendarTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.txtTu.Properties.DisplayFormat.FormatString = "{0:dd/MM/yyyy}";
     this.txtTu.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Custom;
     this.txtTu.Properties.EditFormat.FormatString = "{0:dd/MM/yyyy}";
     this.txtTu.Properties.EditFormat.FormatType = DevExpress.Utils.FormatType.Custom;
     this.txtTu.Size = new System.Drawing.Size(141, 20);
     this.txtTu.StyleController = this.layoutControl1;
     this.txtTu.TabIndex = 6;
     //
     // cbTuyChon
     //
     this.cbTuyChon.EditValue = "Tùy chọn";
     this.cbTuyChon.Location = new System.Drawing.Point(57, 2);
     this.cbTuyChon.MenuManager = this.bm;
     this.cbTuyChon.Name = "cbTuyChon";
     this.cbTuyChon.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cbTuyChon.Properties.Items.AddRange(new object[] {
     "Tùy chọn",
     "Tất cả",
     "Tháng 1",
     "Tháng 2",
     "Tháng 3",
     "Tháng 4",
     "Tháng 5",
     "Tháng 6",
     "Tháng 7",
     "Tháng 8",
     "Tháng 9",
     "Tháng 10",
     "Tháng 11",
     "Tháng 12"});
     this.cbTuyChon.Size = new System.Drawing.Size(121, 20);
     this.cbTuyChon.StyleController = this.layoutControl1;
     this.cbTuyChon.TabIndex = 5;
     this.cbTuyChon.SelectedIndexChanged += new System.EventHandler(this.cbTuyChon_SelectedIndexChanged);
     //
     // layoutControlGroup1
     //
     this.layoutControlGroup1.CustomizationFormText = "layoutControlGroup1";
     this.layoutControlGroup1.EnableIndentsWithoutBorders = DevExpress.Utils.DefaultBoolean.True;
     this.layoutControlGroup1.GroupBordersVisible = false;
     this.layoutControlGroup1.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.layoutControlItem1,
     this.layoutControlItem2,
     this.layoutControlItem3,
     this.layoutControlItem4,
     this.layoutControlItem5});
     this.layoutControlGroup1.Location = new System.Drawing.Point(0, 0);
     this.layoutControlGroup1.Name = "layoutControlGroup1";
     this.layoutControlGroup1.Padding = new DevExpress.XtraLayout.Utils.Padding(0, 0, 0, 0);
     this.layoutControlGroup1.Size = new System.Drawing.Size(1133, 612);
     this.layoutControlGroup1.Text = "layoutControlGroup1";
     this.layoutControlGroup1.TextVisible = false;
     //
     // layoutControlItem1
     //
     this.layoutControlItem1.Control = this.gcList;
     this.layoutControlItem1.CustomizationFormText = "layoutControlItem1";
     this.layoutControlItem1.Location = new System.Drawing.Point(0, 24);
     this.layoutControlItem1.Name = "layoutControlItem1";
     this.layoutControlItem1.Size = new System.Drawing.Size(1133, 588);
     this.layoutControlItem1.Text = "layoutControlItem1";
     this.layoutControlItem1.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem1.TextToControlDistance = 0;
     this.layoutControlItem1.TextVisible = false;
     //
     // layoutControlItem2
     //
     this.layoutControlItem2.Control = this.cbTuyChon;
     this.layoutControlItem2.CustomizationFormText = "Tùy Chọn";
     this.layoutControlItem2.Location = new System.Drawing.Point(0, 0);
     this.layoutControlItem2.MaxSize = new System.Drawing.Size(180, 24);
     this.layoutControlItem2.MinSize = new System.Drawing.Size(109, 24);
     this.layoutControlItem2.Name = "layoutControlItem2";
     this.layoutControlItem2.Size = new System.Drawing.Size(180, 24);
     this.layoutControlItem2.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem2.Text = "Tùy Chọn";
     this.layoutControlItem2.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.CustomSize;
     this.layoutControlItem2.TextSize = new System.Drawing.Size(50, 13);
     this.layoutControlItem2.TextToControlDistance = 5;
     //
     // layoutControlItem3
     //
     this.layoutControlItem3.Control = this.txtTu;
     this.layoutControlItem3.CustomizationFormText = "Từ";
     this.layoutControlItem3.Location = new System.Drawing.Point(180, 0);
     this.layoutControlItem3.MaxSize = new System.Drawing.Size(180, 24);
     this.layoutControlItem3.MinSize = new System.Drawing.Size(151, 24);
     this.layoutControlItem3.Name = "layoutControlItem3";
     this.layoutControlItem3.Size = new System.Drawing.Size(180, 24);
     this.layoutControlItem3.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem3.Text = "Từ";
     this.layoutControlItem3.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.CustomSize;
     this.layoutControlItem3.TextSize = new System.Drawing.Size(30, 13);
     this.layoutControlItem3.TextToControlDistance = 5;
     //
     // layoutControlItem4
     //
     this.layoutControlItem4.Control = this.txtDen;
     this.layoutControlItem4.CustomizationFormText = "Đến";
     this.layoutControlItem4.Location = new System.Drawing.Point(360, 0);
     this.layoutControlItem4.MaxSize = new System.Drawing.Size(180, 24);
     this.layoutControlItem4.MinSize = new System.Drawing.Size(151, 24);
     this.layoutControlItem4.Name = "layoutControlItem4";
     this.layoutControlItem4.Size = new System.Drawing.Size(179, 24);
     this.layoutControlItem4.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem4.Text = "Đến";
     this.layoutControlItem4.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.CustomSize;
     this.layoutControlItem4.TextSize = new System.Drawing.Size(30, 13);
     this.layoutControlItem4.TextToControlDistance = 5;
     //
     // layoutControlItem5
     //
     this.layoutControlItem5.Control = this.layoutControl2;
     this.layoutControlItem5.CustomizationFormText = "layoutControlItem5";
     this.layoutControlItem5.Location = new System.Drawing.Point(539, 0);
     this.layoutControlItem5.Name = "layoutControlItem5";
     this.layoutControlItem5.Size = new System.Drawing.Size(594, 24);
     this.layoutControlItem5.Text = "layoutControlItem5";
     this.layoutControlItem5.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem5.TextToControlDistance = 0;
     this.layoutControlItem5.TextVisible = false;
     //
     // cHUNG_TU_CHI_TIET_Theo_NgayTableAdapter
     //
     this.cHUNG_TU_CHI_TIET_Theo_NgayTableAdapter.ClearBeforeFill = true;
     //
     // ucChiTiet
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.layoutControl1);
     this.Controls.Add(this.barDockControlLeft);
     this.Controls.Add(this.barDockControlRight);
     this.Controls.Add(this.barDockControlBottom);
     this.Controls.Add(this.barDockControlTop);
     this.Name = "ucChiTiet";
     this.Size = new System.Drawing.Size(1133, 636);
     ((System.ComponentModel.ISupportInitialize)(this.bm)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.img)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gcList)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cHUNGTUCHITIETTheoNgayBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dsCamDo)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gbList)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.rptMayTinh)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.rptMayTinhPhanTram)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl1)).EndInit();
     this.layoutControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtDen.Properties.CalendarTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtDen.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtTu.Properties.CalendarTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtTu.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbTuyChon.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem5)).EndInit();
     this.ResumeLayout(false);
 }
コード例 #37
0
ファイル: Form1Print.cs プロジェクト: EdgarEDT/myitoppsp
        private void Form1Print_Load(object sender, EventArgs e)
        {
            if (!isselect)
            {
                barButtonItem4.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;

            }

            gridControl1.DataSource = GridDataTable;
            this.bandedGridView1.GroupPanelText = this.Text;

            //int numi = 0;

            //DevExpress.XtraGrid.Views.BandedGrid.GridBand[] gridBandDate = new DevExpress.XtraGrid.Views.BandedGrid.GridBand[listCount * 2];
            //DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn[] gridColumn = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn[listCount * 2];
            foreach (DataColumn dc in GridDataTable.Columns)
            {
                if (dc.ColumnName.IndexOf("Äê") > 0)
                {
                    DevExpress.XtraGrid.Views.BandedGrid.GridBand gbi = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
                    gbi.Caption = dc.ColumnName;
                    gbi.Name = dc.ColumnName;
                    gbi.AppearanceHeader.Options.UseTextOptions = true;
                    gbi.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
                    gridBand2.Children.Add(gbi);

                    DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn gridColumn = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
                    gridColumn.Caption = dc.ColumnName;
                    gridColumn.FieldName = dc.ColumnName;
                    gridColumn.Name = "Column"+dc.ColumnName;
                    gridColumn.Visible = true;
                    gridColumn.DisplayFormat.FormatString = "n2";
                    gridColumn.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
                    bandedGridView1.Columns.Add(gridColumn);
                    gbi.Columns.Add(gridColumn);

                }
            }

            //if (!isselect)
            //{
            //    //barButtonItem4.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
            //    this.Hide();
            //    ComponentPrint.ShowPreview(this.gridControl1, this.bandedGridView1.GroupPanelText);
            //    this.Close();
            //}
            //else
            //{
            //    title = this.bandedGridView1.GroupPanelText;
            //    this.DialogResult = DialogResult.OK;
            //}
        }
コード例 #38
0
        private void FrmBurdenLineType_Load(object sender, EventArgs e)
        {
            string pjt = " ProjectID='" + MIS.ProgUID + "'";

            AreaList = Common.Services.BaseService.GetList <PS_Table_AreaWH>("SelectPS_Table_AreaWHByConn", pjt);


            if (!printManage)
            {
                barButtonItem1.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
                barButtonItem2.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
            }


            if (!isselect)
            {
                barButtonItem4.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
            }
            try
            {
                chart1.Series.Clear();
                // DataTable dataTable = new DataTable();
                IList <BurdenLine> list = Services.BaseService.GetList <BurdenLine>("SelectBurdenLineByMaxDate", " IsMaxDate = '1' and  uid like '%" + Itop.Client.MIS.ProgUID + "%'  order by year(BurdenDate)");
                dt = Itop.Common.DataConverter.ToDataTable((IList)list, typeof(BurdenLine));

                if (list.Count > 0)
                {
                    DateTime date1 = (DateTime)list[0].BurdenDate;
                    DateTime date2 = (DateTime)list[list.Count - 1].BurdenDate;

                    this.bandedGridView1.GroupPanelText = date1.ToString("yyyy年") + "/" + date2.ToString("yyyy年") + "最大负荷日负荷曲线表";
                }

                int numi      = 0;
                int numj      = 0;
                int numk      = 0;
                int listCount = list.Count;

                DevExpress.XtraGrid.Views.BandedGrid.GridBand[]         gridBand     = new DevExpress.XtraGrid.Views.BandedGrid.GridBand[listCount];
                DevExpress.XtraGrid.Views.BandedGrid.GridBand[]         gridBandDate = new DevExpress.XtraGrid.Views.BandedGrid.GridBand[listCount * 2];
                DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn[] gridColumn   = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn[listCount * 2];

                foreach (BurdenLine bl in list)
                {
                    DateTime dateTime = (DateTime)bl.BurdenDate;

                    gridBand[numi]         = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
                    gridBand[numi].Caption = FindArea(bl.AreaID) + "(" + dateTime.ToString("yyyy年MM月dd日") + ")";
                    gridBand[numi].Name    = "gridBand" + dateTime.ToString("yyyyMMdd");
                    gridBand[numi].AppearanceHeader.Options.UseTextOptions = true;
                    gridBand[numi].AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
                    this.bandedGridView1.Bands.Add(gridBand[numi]);

                    gridBandDate[numj]         = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
                    gridBandDate[numj].Caption = "小时";
                    gridBandDate[numj].Name    = "gridBandDateHour" + dateTime.ToString("yyyyMMdd");
                    gridBandDate[numj].AppearanceHeader.Options.UseTextOptions = true;
                    gridBandDate[numj].AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
                    gridBand[numi].Children.Add(gridBandDate[numj]);

                    gridColumn[numk]           = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
                    gridColumn[numk].Caption   = "Year" + FindArea(bl.AreaID) + dateTime.ToString("yyyyMMdd");
                    gridColumn[numk].FieldName = "Year" + FindArea(bl.AreaID) + dateTime.ToString("yyyyMMdd");
                    gridColumn[numk].Name      = "Year" + FindArea(bl.AreaID) + dateTime.ToString("yyyyMMdd");
                    gridColumn[numk].Visible   = true;
                    gridColumn[numk].AppearanceCell.Options.UseTextOptions = true;
                    gridColumn[numk].AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
                    dataTable.Columns.Add("Year" + FindArea(bl.AreaID) + dateTime.ToString("yyyyMMdd"), typeof(string));
                    bandedGridView1.Columns.Add(gridColumn[numk]);
                    gridBandDate[numj].Columns.Add(gridColumn[numk]);

                    numj++;
                    numk++;


                    gridBandDate[numj]         = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
                    gridBandDate[numj].Caption = "负荷";
                    gridBandDate[numj].Name    = "gridBandDate" + dateTime.ToString("yyyyMMdd");
                    gridBandDate[numj].AppearanceHeader.Options.UseTextOptions = true;
                    gridBandDate[numj].AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
                    gridBand[numi].Children.Add(gridBandDate[numj]);

                    gridColumn[numk]           = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
                    gridColumn[numk].Caption   = "Day" + FindArea(bl.AreaID) + dateTime.ToString("yyyyMMdd");
                    gridColumn[numk].FieldName = "Day" + FindArea(bl.AreaID) + dateTime.ToString("yyyyMMdd");
                    gridColumn[numk].Name      = "Day" + FindArea(bl.AreaID) + dateTime.ToString("yyyyMMdd");
                    gridColumn[numk].Visible   = true;
                    gridColumn[numk].DisplayFormat.FormatString = "n2";
                    gridColumn[numk].DisplayFormat.FormatType   = DevExpress.Utils.FormatType.Numeric;
                    dataTable.Columns.Add("Day" + FindArea(bl.AreaID) + dateTime.ToString("yyyyMMdd"), typeof(double));

                    bandedGridView1.Columns.Add(gridColumn[numk]);
                    gridBandDate[numj].Columns.Add(gridColumn[numk]);

                    numi++;
                    numj++;
                    numk++;
                }



                for (int i = 1; i <= 24; i++)
                {
                    DataRow row = dataTable.NewRow();
                    foreach (DataColumn column in dataTable.Columns)
                    {
                        if (column.ColumnName.Substring(0, 4) == "Year")
                        {
                            row[column] = i.ToString();
                        }
                    }


                    foreach (BurdenLine bl in list)
                    {
                        DateTime     dateTime = (DateTime)bl.BurdenDate;
                        PropertyInfo pi       = bl.GetType().GetProperty("Hour" + i.ToString());
                        if (pi.GetValue(bl, null) != null)
                        {
                            row["Day" + FindArea(bl.AreaID) + dateTime.ToString("yyyyMMdd")] = (double)pi.GetValue(bl, null);
                        }
                    }

                    dataTable.Rows.Add(row);
                }

                DataRow row1 = dataTable.NewRow();
                foreach (DataColumn column in dataTable.Columns)
                {
                    if (column.ColumnName.Substring(0, 4) == "Year")
                    {
                        row1[column] = "平均负荷率(%)";
                    }

                    foreach (BurdenLine bl in list)
                    {
                        DateTime     dateTime = (DateTime)bl.BurdenDate;
                        PropertyInfo pi       = bl.GetType().GetProperty("DayAverage");
                        if (pi.GetValue(bl, null) != null)
                        {
                            row1["Day" + FindArea(bl.AreaID) + dateTime.ToString("yyyyMMdd")] = (double)pi.GetValue(bl, null) * 100;
                        }
                    }
                }
                dataTable.Rows.Add(row1);


                row1 = dataTable.NewRow();
                foreach (DataColumn column in dataTable.Columns)
                {
                    if (column.ColumnName.Substring(0, 4) == "Year")
                    {
                        row1[column] = "最小负荷率(%)";
                    }

                    foreach (BurdenLine bl in list)
                    {
                        DateTime     dateTime = (DateTime)bl.BurdenDate;
                        PropertyInfo pi       = bl.GetType().GetProperty("MinAverage");
                        if (pi.GetValue(bl, null) != null)
                        {
                            row1["Day" + FindArea(bl.AreaID) + dateTime.ToString("yyyyMMdd")] = (double)pi.GetValue(bl, null) * 100;
                        }
                    }
                }
                dataTable.Rows.Add(row1);


                foreach (DataRow row in dt.Rows)
                {
                    string seriesName = "";
                    try
                    {
                        DateTime dateTime = (DateTime)row["BurdenDate"];
                        seriesName = FindArea(row["AreaID"].ToString()) + "_" + dateTime.ToString("yyyy年MM月dd日");
                    }
                    catch { }
                    chart1.Series.Add(seriesName);
                    chart1.Series[seriesName].Type        = SeriesChartType.Line;
                    chart1.Series[seriesName].BorderWidth = 2;

                    for (int colIndex = 3; colIndex < 26; colIndex++)
                    {
                        string columnName = dt.Columns[colIndex].ColumnName;
                        double YVal       = (double)row[columnName];

                        chart1.Series[seriesName].Points.AddXY(GetText(columnName), YVal);
                    }
                }


                gridControl1.DataSource = dataTable;
                this.bandedGridView1.OptionsView.ShowColumnHeaders = false;
            }
            catch (Exception ex) { Itop.Common.MsgBox.Show(ex.Message); }
        }
コード例 #39
0
ファイル: Grid.designer.cs プロジェクト: jyorin/yinghe
 /// <summary> 
 /// 设计器支持所需的方法 - 不要
 /// 使用代码编辑器修改此方法的内容。
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Grid));
     this.btn_simpleCancelSum = new DevExpress.XtraEditors.SimpleButton();
     this.btn_显示隐藏分组面板 = new DevExpress.XtraEditors.SimpleButton();
     this.btn_显示隐藏过滤面板 = new DevExpress.XtraEditors.SimpleButton();
     this.btn_Export = new DevExpress.XtraEditors.SimpleButton();
     this.btnshow = new DevExpress.XtraEditors.PictureEdit();
     this.btn_合并取消合并表格 = new DevExpress.XtraEditors.SimpleButton();
     this._panelControl = new DevExpress.XtraEditors.PanelControl();
     this.flowLayoutPanel1 = new System.Windows.Forms.FlowLayoutPanel();
     this.btn_ReduceRow = new DevExpress.XtraEditors.SimpleButton();
     this.btn_AddRow = new DevExpress.XtraEditors.SimpleButton();
     this.btn_执行命令1 = new DevExpress.XtraEditors.SimpleButton();
     this.采集模块 = new System.Windows.Forms.Panel();
     this.分钟 = new System.Windows.Forms.Label();
     this.采集频率 = new System.Windows.Forms.Label();
     this.采集频率1 = new System.Windows.Forms.ComboBox();
     this.panel1 = new System.Windows.Forms.Panel();
     this._gridControl = new DevExpress.XtraGrid.GridControl();
     this.bandedGridView1 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridView();
     this.gridBand3 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.bandedGridColumn4 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.bandedGridColumn3 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.bandedGridColumn14 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.bandedGridColumn15 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.bandedGridColumn21 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.bandedGridColumn16 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.bandedGridColumn17 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.bandedGridColumn1 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.bandedGridColumn2 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.bandedGridColumn18 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridBand4 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.bandedGridColumn22 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.bandedGridColumn23 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.bandedGridColumn24 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.bandedGridColumn25 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.bandedGridColumn26 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this._gridView = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn3 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn4 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn5 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn6 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn7 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn8 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn9 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn10 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn11 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn12 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn13 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridBand1 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this._saveFileDialog = new System.Windows.Forms.SaveFileDialog();
     this._contextMenuStrip = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.复制当前列ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.复制当前字段ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.报表导出ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.打印预览ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.gridBand2 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     ((System.ComponentModel.ISupportInitialize)(this.btnshow.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this._panelControl)).BeginInit();
     this._panelControl.SuspendLayout();
     this.flowLayoutPanel1.SuspendLayout();
     this.采集模块.SuspendLayout();
     this.panel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this._gridControl)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.bandedGridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this._gridView)).BeginInit();
     this._contextMenuStrip.SuspendLayout();
     this.SuspendLayout();
     //
     // btn_simpleCancelSum
     //
     this.btn_simpleCancelSum.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.btn_simpleCancelSum.Image = ((System.Drawing.Image)(resources.GetObject("btn_simpleCancelSum.Image")));
     this.btn_simpleCancelSum.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.btn_simpleCancelSum.Location = new System.Drawing.Point(501, 3);
     this.btn_simpleCancelSum.Name = "btn_simpleCancelSum";
     this.btn_simpleCancelSum.Size = new System.Drawing.Size(80, 27);
     this.btn_simpleCancelSum.TabIndex = 4;
     this.btn_simpleCancelSum.Text = "合计底栏";
     this.btn_simpleCancelSum.Visible = false;
     this.btn_simpleCancelSum.Click += new System.EventHandler(this.btn_simpleCancelSum_Click);
     //
     // btn_显示隐藏分组面板
     //
     this.btn_显示隐藏分组面板.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.btn_显示隐藏分组面板.Image = ((System.Drawing.Image)(resources.GetObject("btn_显示隐藏分组面板.Image")));
     this.btn_显示隐藏分组面板.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.btn_显示隐藏分组面板.Location = new System.Drawing.Point(587, 3);
     this.btn_显示隐藏分组面板.Name = "btn_显示隐藏分组面板";
     this.btn_显示隐藏分组面板.Size = new System.Drawing.Size(80, 27);
     this.btn_显示隐藏分组面板.TabIndex = 2;
     this.btn_显示隐藏分组面板.Text = "分组面板";
     this.btn_显示隐藏分组面板.Visible = false;
     this.btn_显示隐藏分组面板.Click += new System.EventHandler(this.btn_显示隐藏分组面板_Click);
     //
     // btn_显示隐藏过滤面板
     //
     this.btn_显示隐藏过滤面板.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.btn_显示隐藏过滤面板.Image = ((System.Drawing.Image)(resources.GetObject("btn_显示隐藏过滤面板.Image")));
     this.btn_显示隐藏过滤面板.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.btn_显示隐藏过滤面板.Location = new System.Drawing.Point(673, 3);
     this.btn_显示隐藏过滤面板.Name = "btn_显示隐藏过滤面板";
     this.btn_显示隐藏过滤面板.Size = new System.Drawing.Size(80, 27);
     this.btn_显示隐藏过滤面板.TabIndex = 0;
     this.btn_显示隐藏过滤面板.Text = "查找记录";
     this.btn_显示隐藏过滤面板.Visible = false;
     this.btn_显示隐藏过滤面板.Click += new System.EventHandler(this.btn_TotleLocation_Click);
     //
     // btn_Export
     //
     this.btn_Export.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.btn_Export.Image = ((System.Drawing.Image)(resources.GetObject("btn_Export.Image")));
     this.btn_Export.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.btn_Export.Location = new System.Drawing.Point(845, 3);
     this.btn_Export.Name = "btn_Export";
     this.btn_Export.Size = new System.Drawing.Size(80, 27);
     this.btn_Export.TabIndex = 1;
     this.btn_Export.Text = "导出表格";
     this.btn_Export.Visible = false;
     this.btn_Export.Click += new System.EventHandler(this.btn_Export_Click);
     //
     // btnshow
     //
     this.btnshow.Cursor = System.Windows.Forms.Cursors.Hand;
     this.btnshow.EditValue = ((object)(resources.GetObject("btnshow.EditValue")));
     this.btnshow.Location = new System.Drawing.Point(2, 2);
     this.btnshow.Name = "btnshow";
     this.btnshow.Properties.Appearance.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(230)))), ((int)(((byte)(230)))), ((int)(((byte)(230)))));
     this.btnshow.Properties.Appearance.Options.UseBackColor = true;
     this.btnshow.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.btnshow.Size = new System.Drawing.Size(22, 18);
     this.btnshow.TabIndex = 10;
     this.btnshow.Visible = false;
     this.btnshow.Click += new System.EventHandler(this.btnshow_Click);
     //
     // btn_合并取消合并表格
     //
     this.btn_合并取消合并表格.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.btn_合并取消合并表格.Image = ((System.Drawing.Image)(resources.GetObject("btn_合并取消合并表格.Image")));
     this.btn_合并取消合并表格.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.btn_合并取消合并表格.Location = new System.Drawing.Point(759, 3);
     this.btn_合并取消合并表格.Name = "btn_合并取消合并表格";
     this.btn_合并取消合并表格.Size = new System.Drawing.Size(80, 27);
     this.btn_合并取消合并表格.TabIndex = 10;
     this.btn_合并取消合并表格.Text = "合并列值";
     this.btn_合并取消合并表格.Visible = false;
     this.btn_合并取消合并表格.Click += new System.EventHandler(this.btn_合并取消合并表格_Click);
     //
     // _panelControl
     //
     this._panelControl.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this._panelControl.Controls.Add(this.flowLayoutPanel1);
     this._panelControl.Dock = System.Windows.Forms.DockStyle.Top;
     this._panelControl.Location = new System.Drawing.Point(0, 0);
     this._panelControl.Name = "_panelControl";
     this._panelControl.Size = new System.Drawing.Size(928, 33);
     this._panelControl.TabIndex = 2;
     //
     // flowLayoutPanel1
     //
     this.flowLayoutPanel1.Controls.Add(this.btn_Export);
     this.flowLayoutPanel1.Controls.Add(this.btn_合并取消合并表格);
     this.flowLayoutPanel1.Controls.Add(this.btn_显示隐藏过滤面板);
     this.flowLayoutPanel1.Controls.Add(this.btn_显示隐藏分组面板);
     this.flowLayoutPanel1.Controls.Add(this.btn_simpleCancelSum);
     this.flowLayoutPanel1.Controls.Add(this.btn_ReduceRow);
     this.flowLayoutPanel1.Controls.Add(this.btn_AddRow);
     this.flowLayoutPanel1.Controls.Add(this.btn_执行命令1);
     this.flowLayoutPanel1.Controls.Add(this.采集模块);
     this.flowLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.flowLayoutPanel1.Location = new System.Drawing.Point(0, 0);
     this.flowLayoutPanel1.Name = "flowLayoutPanel1";
     this.flowLayoutPanel1.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.flowLayoutPanel1.Size = new System.Drawing.Size(928, 33);
     this.flowLayoutPanel1.TabIndex = 15;
     //
     // btn_ReduceRow
     //
     this.btn_ReduceRow.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.btn_ReduceRow.Image = global::控件库.Properties.Resources.suoxiao;
     this.btn_ReduceRow.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.btn_ReduceRow.Location = new System.Drawing.Point(415, 3);
     this.btn_ReduceRow.Name = "btn_ReduceRow";
     this.btn_ReduceRow.Size = new System.Drawing.Size(80, 27);
     this.btn_ReduceRow.TabIndex = 13;
     this.btn_ReduceRow.Text = "删除记录";
     this.btn_ReduceRow.Click += new System.EventHandler(this.btn_ReduceRow_Click);
     this.btn_ReduceRow.MouseDown += new System.Windows.Forms.MouseEventHandler(this.btn_ReduceRow_MouseDown);
     //
     // btn_AddRow
     //
     this.btn_AddRow.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.btn_AddRow.Image = global::控件库.Properties.Resources.kuoda;
     this.btn_AddRow.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.btn_AddRow.Location = new System.Drawing.Point(329, 3);
     this.btn_AddRow.Name = "btn_AddRow";
     this.btn_AddRow.Size = new System.Drawing.Size(80, 27);
     this.btn_AddRow.TabIndex = 14;
     this.btn_AddRow.Text = "新增记录";
     this.btn_AddRow.Click += new System.EventHandler(this.btn_AddRow_Click);
     this.btn_AddRow.MouseDown += new System.Windows.Forms.MouseEventHandler(this.btn_AddRow_MouseDown);
     //
     // btn_执行命令1
     //
     this.btn_执行命令1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.btn_执行命令1.Image = global::控件库.Properties.Resources.Action_SaveScript;
     this.btn_执行命令1.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.btn_执行命令1.Location = new System.Drawing.Point(243, 3);
     this.btn_执行命令1.Name = "btn_执行命令1";
     this.btn_执行命令1.Size = new System.Drawing.Size(80, 27);
     this.btn_执行命令1.TabIndex = 14;
     this.btn_执行命令1.Text = "保存";
     this.btn_执行命令1.Visible = false;
     this.btn_执行命令1.Click += new System.EventHandler(this.btn_执行命令1_Click);
     this.btn_执行命令1.MouseDown += new System.Windows.Forms.MouseEventHandler(this.btn_执行命令1_MouseDown);
     //
     // 采集模块
     //
     this.采集模块.Controls.Add(this.分钟);
     this.采集模块.Controls.Add(this.采集频率);
     this.采集模块.Controls.Add(this.采集频率1);
     this.采集模块.Location = new System.Drawing.Point(86, 2);
     this.采集模块.Margin = new System.Windows.Forms.Padding(2);
     this.采集模块.Name = "采集模块";
     this.采集模块.Size = new System.Drawing.Size(152, 29);
     this.采集模块.TabIndex = 15;
     this.采集模块.Visible = false;
     //
     // 分钟
     //
     this.分钟.AutoSize = true;
     this.分钟.Location = new System.Drawing.Point(131, 7);
     this.分钟.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
     this.分钟.Name = "分钟";
     this.分钟.Size = new System.Drawing.Size(19, 14);
     this.分钟.TabIndex = 2;
     this.分钟.Text = "秒";
     //
     // 采集频率
     //
     this.采集频率.AutoSize = true;
     this.采集频率.Location = new System.Drawing.Point(3, 7);
     this.采集频率.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
     this.采集频率.Name = "采集频率";
     this.采集频率.Size = new System.Drawing.Size(55, 14);
     this.采集频率.TabIndex = 1;
     this.采集频率.Text = "采集频率";
     //
     // 采集频率1
     //
     this.采集频率1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.采集频率1.FormattingEnabled = true;
     this.采集频率1.Items.AddRange(new object[] {
     "60",
     "300",
     "600",
     "900",
     "1200"});
     this.采集频率1.Location = new System.Drawing.Point(58, 4);
     this.采集频率1.Margin = new System.Windows.Forms.Padding(2);
     this.采集频率1.Name = "采集频率1";
     this.采集频率1.Size = new System.Drawing.Size(73, 22);
     this.采集频率1.TabIndex = 0;
     //
     // panel1
     //
     this.panel1.Controls.Add(this.btnshow);
     this.panel1.Controls.Add(this._gridControl);
     this.panel1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panel1.Location = new System.Drawing.Point(0, 33);
     this.panel1.Name = "panel1";
     this.panel1.Size = new System.Drawing.Size(928, 485);
     this.panel1.TabIndex = 3;
     //
     // _gridControl
     //
     this._gridControl.Dock = System.Windows.Forms.DockStyle.Fill;
     this._gridControl.Location = new System.Drawing.Point(0, 0);
     this._gridControl.MainView = this.bandedGridView1;
     this._gridControl.Name = "_gridControl";
     this._gridControl.Size = new System.Drawing.Size(928, 485);
     this._gridControl.TabIndex = 6;
     this._gridControl.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.bandedGridView1,
     this._gridView});
     this._gridControl.MouseLeave += new System.EventHandler(this._gridControl_MouseLeave);
     //
     // bandedGridView1
     //
     this.bandedGridView1.Bands.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.GridBand[] {
     this.gridBand3,
     this.gridBand4});
     this.bandedGridView1.Columns.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn[] {
     this.bandedGridColumn14,
     this.bandedGridColumn15,
     this.bandedGridColumn21,
     this.bandedGridColumn16,
     this.bandedGridColumn17,
     this.bandedGridColumn18,
     this.bandedGridColumn22,
     this.bandedGridColumn23,
     this.bandedGridColumn24,
     this.bandedGridColumn25,
     this.bandedGridColumn26,
     this.bandedGridColumn1,
     this.bandedGridColumn2,
     this.bandedGridColumn3,
     this.bandedGridColumn4});
     this.bandedGridView1.GridControl = this._gridControl;
     this.bandedGridView1.Name = "bandedGridView1";
     this.bandedGridView1.OptionsCustomization.AllowChangeColumnParent = true;
     this.bandedGridView1.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.bandedGridView1.OptionsView.EnableAppearanceEvenRow = true;
     this.bandedGridView1.OptionsView.EnableAppearanceOddRow = true;
     this.bandedGridView1.OptionsView.ShowGroupPanel = false;
     //
     // gridBand3
     //
     this.gridBand3.Caption = "实测转速下数据";
     this.gridBand3.Columns.Add(this.bandedGridColumn4);
     this.gridBand3.Columns.Add(this.bandedGridColumn3);
     this.gridBand3.Columns.Add(this.bandedGridColumn14);
     this.gridBand3.Columns.Add(this.bandedGridColumn15);
     this.gridBand3.Columns.Add(this.bandedGridColumn21);
     this.gridBand3.Columns.Add(this.bandedGridColumn16);
     this.gridBand3.Columns.Add(this.bandedGridColumn17);
     this.gridBand3.Columns.Add(this.bandedGridColumn1);
     this.gridBand3.Columns.Add(this.bandedGridColumn2);
     this.gridBand3.Columns.Add(this.bandedGridColumn18);
     this.gridBand3.Name = "gridBand3";
     this.gridBand3.OptionsBand.AllowMove = false;
     this.gridBand3.Width = 675;
     //
     // bandedGridColumn4
     //
     this.bandedGridColumn4.Caption = "ID";
     this.bandedGridColumn4.FieldName = "id";
     this.bandedGridColumn4.Name = "bandedGridColumn4";
     //
     // bandedGridColumn3
     //
     this.bandedGridColumn3.Caption = "时间";
     this.bandedGridColumn3.FieldName = "时间值";
     this.bandedGridColumn3.Name = "bandedGridColumn3";
     this.bandedGridColumn3.OptionsColumn.AllowMove = false;
     this.bandedGridColumn3.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.bandedGridColumn3.Visible = true;
     //
     // bandedGridColumn14
     //
     this.bandedGridColumn14.Caption = "序号";
     this.bandedGridColumn14.FieldName = "序列2";
     this.bandedGridColumn14.Name = "bandedGridColumn14";
     this.bandedGridColumn14.OptionsColumn.AllowMove = false;
     this.bandedGridColumn14.Visible = true;
     //
     // bandedGridColumn15
     //
     this.bandedGridColumn15.Caption = "流量(m3/h)";
     this.bandedGridColumn15.FieldName = "流量";
     this.bandedGridColumn15.Name = "bandedGridColumn15";
     this.bandedGridColumn15.OptionsColumn.AllowMove = false;
     this.bandedGridColumn15.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.bandedGridColumn15.Visible = true;
     //
     // bandedGridColumn21
     //
     this.bandedGridColumn21.Caption = "扬程(m)";
     this.bandedGridColumn21.FieldName = "扬程";
     this.bandedGridColumn21.Name = "bandedGridColumn21";
     this.bandedGridColumn21.OptionsColumn.AllowMove = false;
     this.bandedGridColumn21.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.bandedGridColumn21.Visible = true;
     //
     // bandedGridColumn16
     //
     this.bandedGridColumn16.Caption = "输入功率(kW)";
     this.bandedGridColumn16.FieldName = "输入功率";
     this.bandedGridColumn16.Name = "bandedGridColumn16";
     this.bandedGridColumn16.OptionsColumn.AllowMove = false;
     this.bandedGridColumn16.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.bandedGridColumn16.Visible = true;
     //
     // bandedGridColumn17
     //
     this.bandedGridColumn17.Caption = "转速(r/min)";
     this.bandedGridColumn17.FieldName = "转速";
     this.bandedGridColumn17.Name = "bandedGridColumn17";
     this.bandedGridColumn17.OptionsColumn.AllowMove = false;
     this.bandedGridColumn17.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.bandedGridColumn17.Visible = true;
     //
     // bandedGridColumn1
     //
     this.bandedGridColumn1.Caption = "电压(V)";
     this.bandedGridColumn1.FieldName = "电压";
     this.bandedGridColumn1.Name = "bandedGridColumn1";
     this.bandedGridColumn1.OptionsColumn.AllowMove = false;
     this.bandedGridColumn1.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.bandedGridColumn1.Visible = true;
     //
     // bandedGridColumn2
     //
     this.bandedGridColumn2.Caption = "电流(A)";
     this.bandedGridColumn2.FieldName = "电流";
     this.bandedGridColumn2.Name = "bandedGridColumn2";
     this.bandedGridColumn2.OptionsColumn.AllowMove = false;
     this.bandedGridColumn2.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.bandedGridColumn2.Visible = true;
     //
     // bandedGridColumn18
     //
     this.bandedGridColumn18.Caption = "轴功率(kW)";
     this.bandedGridColumn18.FieldName = "轴功率";
     this.bandedGridColumn18.Name = "bandedGridColumn18";
     this.bandedGridColumn18.OptionsColumn.AllowMove = false;
     this.bandedGridColumn18.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.bandedGridColumn18.Visible = true;
     //
     // gridBand4
     //
     this.gridBand4.Caption = "额定转速下数据";
     this.gridBand4.Columns.Add(this.bandedGridColumn22);
     this.gridBand4.Columns.Add(this.bandedGridColumn23);
     this.gridBand4.Columns.Add(this.bandedGridColumn24);
     this.gridBand4.Columns.Add(this.bandedGridColumn25);
     this.gridBand4.Columns.Add(this.bandedGridColumn26);
     this.gridBand4.Name = "gridBand4";
     this.gridBand4.Width = 375;
     //
     // bandedGridColumn22
     //
     this.bandedGridColumn22.Caption = "流量(m3/h)";
     this.bandedGridColumn22.FieldName = "额定转速下_流量";
     this.bandedGridColumn22.Name = "bandedGridColumn22";
     this.bandedGridColumn22.OptionsColumn.AllowMove = false;
     this.bandedGridColumn22.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.bandedGridColumn22.Visible = true;
     //
     // bandedGridColumn23
     //
     this.bandedGridColumn23.Caption = "扬程(m)";
     this.bandedGridColumn23.FieldName = "额定转速下_扬程";
     this.bandedGridColumn23.Name = "bandedGridColumn23";
     this.bandedGridColumn23.OptionsColumn.AllowMove = false;
     this.bandedGridColumn23.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.bandedGridColumn23.Visible = true;
     //
     // bandedGridColumn24
     //
     this.bandedGridColumn24.Caption = "轴功率(kW)";
     this.bandedGridColumn24.FieldName = "额定转速下_轴功率";
     this.bandedGridColumn24.Name = "bandedGridColumn24";
     this.bandedGridColumn24.OptionsColumn.AllowMove = false;
     this.bandedGridColumn24.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.bandedGridColumn24.Visible = true;
     //
     // bandedGridColumn25
     //
     this.bandedGridColumn25.Caption = "泵效率(%)";
     this.bandedGridColumn25.FieldName = "额定转速下_泵效率";
     this.bandedGridColumn25.Name = "bandedGridColumn25";
     this.bandedGridColumn25.OptionsColumn.AllowMove = false;
     this.bandedGridColumn25.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.bandedGridColumn25.Visible = true;
     //
     // bandedGridColumn26
     //
     this.bandedGridColumn26.Caption = "机组效率(%)";
     this.bandedGridColumn26.FieldName = "额定转速下_机组效率";
     this.bandedGridColumn26.Name = "bandedGridColumn26";
     this.bandedGridColumn26.OptionsColumn.AllowMove = false;
     this.bandedGridColumn26.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.bandedGridColumn26.Visible = true;
     //
     // _gridView
     //
     this._gridView.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn1,
     this.gridColumn2,
     this.gridColumn3,
     this.gridColumn4,
     this.gridColumn5,
     this.gridColumn6,
     this.gridColumn7,
     this.gridColumn8,
     this.gridColumn9,
     this.gridColumn10,
     this.gridColumn11,
     this.gridColumn12,
     this.gridColumn13});
     this._gridView.GridControl = this._gridControl;
     this._gridView.Name = "_gridView";
     this._gridView.OptionsBehavior.Editable = false;
     this._gridView.OptionsSelection.EnableAppearanceFocusedCell = false;
     this._gridView.OptionsView.EnableAppearanceEvenRow = true;
     this._gridView.OptionsView.EnableAppearanceOddRow = true;
     this._gridView.OptionsView.ShowGroupPanel = false;
     this._gridView.FocusedRowChanged += new DevExpress.XtraGrid.Views.Base.FocusedRowChangedEventHandler(this._gridView_FocusedRowChanged);
     this._gridView.DoubleClick += new System.EventHandler(this._gridView_DoubleClick);
     //
     // gridColumn1
     //
     this.gridColumn1.Caption = "序号";
     this.gridColumn1.FieldName = "序列3";
     this.gridColumn1.Name = "gridColumn1";
     this.gridColumn1.OptionsColumn.AllowMove = false;
     this.gridColumn1.Visible = true;
     this.gridColumn1.VisibleIndex = 0;
     //
     // gridColumn2
     //
     this.gridColumn2.Caption = "流量(m3/h)";
     this.gridColumn2.FieldName = "流量";
     this.gridColumn2.Name = "gridColumn2";
     this.gridColumn2.OptionsColumn.AllowMove = false;
     this.gridColumn2.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn2.Visible = true;
     this.gridColumn2.VisibleIndex = 1;
     //
     // gridColumn3
     //
     this.gridColumn3.Caption = "输入功率(kW)";
     this.gridColumn3.FieldName = "输入功率";
     this.gridColumn3.Name = "gridColumn3";
     this.gridColumn3.OptionsColumn.AllowMove = false;
     this.gridColumn3.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn3.Visible = true;
     this.gridColumn3.VisibleIndex = 2;
     //
     // gridColumn4
     //
     this.gridColumn4.Caption = "转速(r/min)";
     this.gridColumn4.FieldName = "转速";
     this.gridColumn4.Name = "gridColumn4";
     this.gridColumn4.OptionsColumn.AllowMove = false;
     this.gridColumn4.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn4.Visible = true;
     this.gridColumn4.VisibleIndex = 3;
     //
     // gridColumn5
     //
     this.gridColumn5.Caption = "轴功率(kW)";
     this.gridColumn5.FieldName = "轴功率";
     this.gridColumn5.Name = "gridColumn5";
     this.gridColumn5.OptionsColumn.AllowMove = false;
     this.gridColumn5.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn5.Visible = true;
     this.gridColumn5.VisibleIndex = 4;
     //
     // gridColumn6
     //
     this.gridColumn6.Caption = "进口压力(KPa)";
     this.gridColumn6.FieldName = "进口压力";
     this.gridColumn6.Name = "gridColumn6";
     this.gridColumn6.OptionsColumn.AllowMove = false;
     this.gridColumn6.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn6.Visible = true;
     this.gridColumn6.VisibleIndex = 5;
     //
     // gridColumn7
     //
     this.gridColumn7.Caption = "出口压力(KPa)";
     this.gridColumn7.FieldName = "出口压力";
     this.gridColumn7.Name = "gridColumn7";
     this.gridColumn7.OptionsColumn.AllowMove = false;
     this.gridColumn7.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn7.Visible = true;
     this.gridColumn7.VisibleIndex = 6;
     //
     // gridColumn8
     //
     this.gridColumn8.Caption = "扬程(m)";
     this.gridColumn8.FieldName = "扬程";
     this.gridColumn8.Name = "gridColumn8";
     this.gridColumn8.OptionsColumn.AllowMove = false;
     this.gridColumn8.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn8.Visible = true;
     this.gridColumn8.VisibleIndex = 7;
     //
     // gridColumn9
     //
     this.gridColumn9.Caption = "流量(m3/h)";
     this.gridColumn9.FieldName = "额定流量";
     this.gridColumn9.Name = "gridColumn9";
     this.gridColumn9.OptionsColumn.AllowMove = false;
     this.gridColumn9.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn9.Visible = true;
     this.gridColumn9.VisibleIndex = 8;
     //
     // gridColumn10
     //
     this.gridColumn10.Caption = "扬程(m)";
     this.gridColumn10.FieldName = "额定扬程";
     this.gridColumn10.Name = "gridColumn10";
     this.gridColumn10.OptionsColumn.AllowMove = false;
     this.gridColumn10.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn10.Visible = true;
     this.gridColumn10.VisibleIndex = 9;
     //
     // gridColumn11
     //
     this.gridColumn11.Caption = "轴功率(kW)";
     this.gridColumn11.FieldName = "额定轴功率";
     this.gridColumn11.Name = "gridColumn11";
     this.gridColumn11.OptionsColumn.AllowMove = false;
     this.gridColumn11.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn11.Visible = true;
     this.gridColumn11.VisibleIndex = 10;
     //
     // gridColumn12
     //
     this.gridColumn12.Caption = "泵效率(%)";
     this.gridColumn12.FieldName = "泵效率";
     this.gridColumn12.Name = "gridColumn12";
     this.gridColumn12.OptionsColumn.AllowMove = false;
     this.gridColumn12.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn12.Visible = true;
     this.gridColumn12.VisibleIndex = 11;
     //
     // gridColumn13
     //
     this.gridColumn13.Caption = "机组效率(%)";
     this.gridColumn13.FieldName = "机组效率";
     this.gridColumn13.Name = "gridColumn13";
     this.gridColumn13.OptionsColumn.AllowMove = false;
     this.gridColumn13.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn13.Visible = true;
     this.gridColumn13.VisibleIndex = 12;
     //
     // gridBand1
     //
     this.gridBand1.Caption = "gridBand1";
     this.gridBand1.Name = "gridBand1";
     //
     // _contextMenuStrip
     //
     this._contextMenuStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.复制当前列ToolStripMenuItem,
     this.报表导出ToolStripMenuItem,
     this.打印预览ToolStripMenuItem});
     this._contextMenuStrip.Name = "contextMenuStrip1";
     this._contextMenuStrip.Size = new System.Drawing.Size(189, 88);
     //
     // 复制当前列ToolStripMenuItem
     //
     this.复制当前列ToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.复制当前字段ToolStripMenuItem});
     this.复制当前列ToolStripMenuItem.Name = "复制当前列ToolStripMenuItem";
     this.复制当前列ToolStripMenuItem.Size = new System.Drawing.Size(188, 28);
     this.复制当前列ToolStripMenuItem.Text = "复制到剪贴板";
     //
     // 复制当前字段ToolStripMenuItem
     //
     this.复制当前字段ToolStripMenuItem.Name = "复制当前字段ToolStripMenuItem";
     this.复制当前字段ToolStripMenuItem.Size = new System.Drawing.Size(148, 22);
     this.复制当前字段ToolStripMenuItem.Text = "复制当前字段";
     //
     // 报表导出ToolStripMenuItem
     //
     this.报表导出ToolStripMenuItem.Name = "报表导出ToolStripMenuItem";
     this.报表导出ToolStripMenuItem.Size = new System.Drawing.Size(188, 28);
     this.报表导出ToolStripMenuItem.Text = "数据导出";
     //
     // 打印预览ToolStripMenuItem
     //
     this.打印预览ToolStripMenuItem.Name = "打印预览ToolStripMenuItem";
     this.打印预览ToolStripMenuItem.Size = new System.Drawing.Size(188, 28);
     this.打印预览ToolStripMenuItem.Text = "打印预览";
     //
     // gridBand2
     //
     this.gridBand2.Caption = "gridBand2";
     this.gridBand2.Name = "gridBand2";
     //
     // Grid
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 14F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.panel1);
     this.Controls.Add(this._panelControl);
     this.Name = "Grid";
     this.Size = new System.Drawing.Size(928, 518);
     ((System.ComponentModel.ISupportInitialize)(this.btnshow.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this._panelControl)).EndInit();
     this._panelControl.ResumeLayout(false);
     this.flowLayoutPanel1.ResumeLayout(false);
     this.采集模块.ResumeLayout(false);
     this.采集模块.PerformLayout();
     this.panel1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this._gridControl)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.bandedGridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this._gridView)).EndInit();
     this._contextMenuStrip.ResumeLayout(false);
     this.ResumeLayout(false);
 }
コード例 #40
0
 /// <summary> 
 /// �����֧������ķ��� - ��Ҫ
 /// ʹ�ô���༭���޸Ĵ˷��������ݡ�
 /// </summary>
 private void InitializeComponent()
 {
     this.gridControl = new DevExpress.XtraGrid.GridControl();
     this.bandedGridView2 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridView();
     this.gridBand2 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.colAreaName = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridBand3 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.colSubstationName = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridBand4 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.colTitle = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridBand5 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.colL2 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridBand6 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.colL3 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridBand7 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.colL1 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridBand8 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.colL4 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridBand9 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.colL5 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridBand10 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.colL6 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridBand11 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.colK1 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridBand12 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.colK2 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridBand13 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.colK3 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridBand14 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.colK4 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridBand15 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.colK5 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridBand16 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.colK6 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridBand17 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.gridBand41 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.gridColumn42 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridBand42 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.gridColumn43 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridBand18 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.gridColumn44 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridBand19 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.colK8 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridBand20 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.colK9 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridBand21 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.colK10 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridBand22 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.colK13 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridBand23 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.colK15 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridBand24 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.colK14 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridBand25 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.colK12 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridBand26 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.colK11 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridBand27 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.colK16 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridBand28 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.colK18 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridBand29 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.colK17 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridBand30 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.colK19 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridBand31 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.colS1 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridBand32 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.colS2 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridBand33 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.colS3 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridBand34 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.colS4 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridBand35 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.colS5 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridBand36 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.colS6 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridBand37 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.colS7 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridBand38 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.colS8 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridBand39 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.colS9 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridBand40 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.colS10 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridView2 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn3 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn4 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn5 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn6 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn7 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn8 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn9 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn10 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn11 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn12 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn13 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn14 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn15 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn16 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn39 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn40 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn41 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn17 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn18 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn19 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn20 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn21 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn22 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn23 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn24 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn25 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn26 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn27 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn28 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn29 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn30 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn31 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn32 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn33 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn34 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn35 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn36 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn37 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn38 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridView1 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.bandedGridColumn1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.bandedGridColumn2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.bandedGridColumn3 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.bandedGridColumn4 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.bandedGridColumn5 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.bandedGridColumn6 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.bandedGridColumn7 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.bandedGridColumn8 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.bandedGridColumn9 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.bandedGridColumn10 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.bandedGridColumn11 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.bandedGridColumn12 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.bandedGridColumn13 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.bandedGridColumn14 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.bandedGridColumn15 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.bandedGridColumn16 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.bandedGridColumn17 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.bandedGridColumn18 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.bandedGridColumn19 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.bandedGridColumn20 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.bandedGridColumn21 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.bandedGridColumn22 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.bandedGridColumn23 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.bandedGridColumn24 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.bandedGridColumn25 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.bandedGridColumn26 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.bandedGridColumn27 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.bandedGridColumn28 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.bandedGridColumn29 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.bandedGridColumn30 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.bandedGridColumn31 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.bandedGridColumn32 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.bandedGridColumn33 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.bandedGridColumn34 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.bandedGridColumn35 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.bandedGridColumn36 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.bandedGridColumn37 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.bandedGridColumn38 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.bandedGridView1 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridView();
     this.gridBand1 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.bandedGridColumn39 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.bandedGridColumn40 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.bandedGridColumn41 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.bandedGridColumn42 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.bandedGridColumn43 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.bandedGridColumn44 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.bandedGridColumn45 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.bandedGridColumn46 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.bandedGridColumn47 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.bandedGridColumn48 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.bandedGridColumn49 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.bandedGridColumn50 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.bandedGridColumn51 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.bandedGridColumn52 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.bandedGridColumn53 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.bandedGridColumn54 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.bandedGridColumn55 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.bandedGridColumn56 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.bandedGridColumn57 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.bandedGridColumn58 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.bandedGridColumn59 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.bandedGridColumn60 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.bandedGridColumn61 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.bandedGridColumn62 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.bandedGridColumn63 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.bandedGridColumn64 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.bandedGridColumn65 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.bandedGridColumn66 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.bandedGridColumn67 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.bandedGridColumn68 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.bandedGridColumn69 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.bandedGridColumn70 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.bandedGridColumn71 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.bandedGridColumn72 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.bandedGridColumn73 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.bandedGridColumn74 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.bandedGridColumn75 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.bandedGridColumn76 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     ((System.ComponentModel.ISupportInitialize)(this.gridControl)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.bandedGridView2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.bandedGridView1)).BeginInit();
     this.SuspendLayout();
     //
     // gridControl
     //
     this.gridControl.Dock = System.Windows.Forms.DockStyle.Fill;
     //
     //
     //
     this.gridControl.EmbeddedNavigator.Buttons.Append.Visible = false;
     this.gridControl.EmbeddedNavigator.Buttons.CancelEdit.Visible = false;
     this.gridControl.EmbeddedNavigator.Buttons.Edit.Visible = false;
     this.gridControl.EmbeddedNavigator.Buttons.EndEdit.Visible = false;
     this.gridControl.EmbeddedNavigator.Buttons.Remove.Visible = false;
     this.gridControl.EmbeddedNavigator.Name = "";
     this.gridControl.Location = new System.Drawing.Point(0, 0);
     this.gridControl.MainView = this.bandedGridView2;
     this.gridControl.Name = "gridControl";
     this.gridControl.Size = new System.Drawing.Size(712, 387);
     this.gridControl.TabIndex = 0;
     this.gridControl.UseEmbeddedNavigator = true;
     this.gridControl.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.bandedGridView2,
     this.gridView2,
     this.gridView1,
     this.bandedGridView1});
     //
     // bandedGridView2
     //
     this.bandedGridView2.AppearancePrint.HeaderPanel.Options.UseTextOptions = true;
     this.bandedGridView2.AppearancePrint.HeaderPanel.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.bandedGridView2.Bands.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.GridBand[] {
     this.gridBand2,
     this.gridBand3,
     this.gridBand4,
     this.gridBand5,
     this.gridBand6,
     this.gridBand7,
     this.gridBand8,
     this.gridBand9,
     this.gridBand10,
     this.gridBand11,
     this.gridBand12,
     this.gridBand13,
     this.gridBand14,
     this.gridBand15,
     this.gridBand16,
     this.gridBand17,
     this.gridBand18,
     this.gridBand19,
     this.gridBand20,
     this.gridBand21,
     this.gridBand22,
     this.gridBand23,
     this.gridBand24,
     this.gridBand25,
     this.gridBand26,
     this.gridBand27,
     this.gridBand28,
     this.gridBand29,
     this.gridBand30,
     this.gridBand31,
     this.gridBand32,
     this.gridBand33,
     this.gridBand34,
     this.gridBand35,
     this.gridBand36,
     this.gridBand37,
     this.gridBand38,
     this.gridBand39,
     this.gridBand40});
     this.bandedGridView2.Columns.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn[] {
     this.colAreaName,
     this.colSubstationName,
     this.colTitle,
     this.colL2,
     this.colL3,
     this.colL1,
     this.colL4,
     this.colL5,
     this.colL6,
     this.colK1,
     this.colK2,
     this.colK3,
     this.colK4,
     this.colK5,
     this.colK6,
     this.gridColumn42,
     this.gridColumn43,
     this.gridColumn44,
     this.colK8,
     this.colK9,
     this.colK10,
     this.colK11,
     this.colK12,
     this.colK13,
     this.colK14,
     this.colK15,
     this.colK16,
     this.colK17,
     this.colK18,
     this.colK19,
     this.colS1,
     this.colS2,
     this.colS3,
     this.colS4,
     this.colS5,
     this.colS6,
     this.colS7,
     this.colS8,
     this.colS9,
     this.colS10});
     this.bandedGridView2.GridControl = this.gridControl;
     this.bandedGridView2.GroupPanelText = "��·���";
     this.bandedGridView2.Name = "bandedGridView2";
     this.bandedGridView2.OptionsBehavior.Editable = false;
     this.bandedGridView2.OptionsCustomization.AllowFilter = false;
     this.bandedGridView2.OptionsPrint.PrintHeader = false;
     this.bandedGridView2.OptionsPrint.UsePrintStyles = true;
     this.bandedGridView2.OptionsView.ColumnAutoWidth = false;
     this.bandedGridView2.OptionsView.ShowColumnHeaders = false;
     this.bandedGridView2.DoubleClick += new System.EventHandler(this.gridView_DoubleClick);
     //
     // gridBand2
     //
     this.gridBand2.Caption = "gridBand2";
     this.gridBand2.Columns.Add(this.colAreaName);
     this.gridBand2.Name = "gridBand2";
     this.gridBand2.Width = 75;
     //
     // colAreaName
     //
     this.colAreaName.AppearanceHeader.Options.UseTextOptions = true;
     this.colAreaName.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colAreaName.Caption = "����";
     this.colAreaName.FieldName = "AreaName";
     this.colAreaName.Name = "colAreaName";
     this.colAreaName.Visible = true;
     //
     // gridBand3
     //
     this.gridBand3.Caption = "gridBand1";
     this.gridBand3.Columns.Add(this.colSubstationName);
     this.gridBand3.Name = "gridBand3";
     this.gridBand3.Width = 75;
     //
     // colSubstationName
     //
     this.colSubstationName.AppearanceHeader.Options.UseTextOptions = true;
     this.colSubstationName.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSubstationName.Caption = "���վ����";
     this.colSubstationName.FieldName = "SubstationName";
     this.colSubstationName.Name = "colSubstationName";
     this.colSubstationName.Visible = true;
     //
     // gridBand4
     //
     this.gridBand4.Caption = "gridBand3";
     this.gridBand4.Columns.Add(this.colTitle);
     this.gridBand4.Name = "gridBand4";
     this.gridBand4.Width = 75;
     //
     // colTitle
     //
     this.colTitle.AppearanceHeader.Options.UseTextOptions = true;
     this.colTitle.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colTitle.Caption = "��·����";
     this.colTitle.FieldName = "Title";
     this.colTitle.Name = "colTitle";
     this.colTitle.Visible = true;
     //
     // gridBand5
     //
     this.gridBand5.Caption = "gridBand4";
     this.gridBand5.Columns.Add(this.colL2);
     this.gridBand5.Name = "gridBand5";
     this.gridBand5.Width = 75;
     //
     // colL2
     //
     this.colL2.AppearanceHeader.Options.UseTextOptions = true;
     this.colL2.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colL2.Caption = "�����վ";
     this.colL2.FieldName = "L2";
     this.colL2.Name = "colL2";
     this.colL2.Visible = true;
     //
     // gridBand6
     //
     this.gridBand6.Caption = "gridBand5";
     this.gridBand6.Columns.Add(this.colL3);
     this.gridBand6.Name = "gridBand6";
     this.gridBand6.Width = 75;
     //
     // colL3
     //
     this.colL3.AppearanceHeader.Options.UseTextOptions = true;
     this.colL3.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colL3.Caption = "�յ���վ";
     this.colL3.FieldName = "L3";
     this.colL3.Name = "colL3";
     this.colL3.Visible = true;
     //
     // gridBand7
     //
     this.gridBand7.Caption = "gridBand6";
     this.gridBand7.Columns.Add(this.colL1);
     this.gridBand7.Name = "gridBand7";
     this.gridBand7.Width = 75;
     //
     // colL1
     //
     this.colL1.AppearanceHeader.Options.UseTextOptions = true;
     this.colL1.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colL1.Caption = "��ѹ�ȼ�(kV)";
     this.colL1.FieldName = "L1";
     this.colL1.Name = "colL1";
     this.colL1.Visible = true;
     //
     // gridBand8
     //
     this.gridBand8.Caption = "gridBand7";
     this.gridBand8.Columns.Add(this.colL4);
     this.gridBand8.Name = "gridBand8";
     this.gridBand8.Width = 75;
     //
     // colL4
     //
     this.colL4.AppearanceHeader.Options.UseTextOptions = true;
     this.colL4.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colL4.Caption = "�����ͺ�";
     this.colL4.FieldName = "L4";
     this.colL4.Name = "colL4";
     this.colL4.Visible = true;
     //
     // gridBand9
     //
     this.gridBand9.Caption = "gridBand8";
     this.gridBand9.Columns.Add(this.colL5);
     this.gridBand9.Name = "gridBand9";
     this.gridBand9.Width = 75;
     //
     // colL5
     //
     this.colL5.AppearanceHeader.Options.UseTextOptions = true;
     this.colL5.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colL5.Caption = "��·����(km)";
     this.colL5.DisplayFormat.FormatString = "n2";
     this.colL5.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.colL5.FieldName = "L5";
     this.colL5.Name = "colL5";
     this.colL5.Visible = true;
     //
     // gridBand10
     //
     this.gridBand10.Caption = "gridBand9";
     this.gridBand10.Columns.Add(this.colL6);
     this.gridBand10.Name = "gridBand10";
     this.gridBand10.Width = 75;
     //
     // colL6
     //
     this.colL6.AppearanceHeader.Options.UseTextOptions = true;
     this.colL6.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colL6.Caption = "Ͷ��ʱ��";
     this.colL6.DisplayFormat.FormatString = "yyyy-MM-dd";
     this.colL6.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.colL6.FieldName = "L6";
     this.colL6.Name = "colL6";
     this.colL6.Visible = true;
     //
     // gridBand11
     //
     this.gridBand11.Caption = "gridBand10";
     this.gridBand11.Columns.Add(this.colK1);
     this.gridBand11.Name = "gridBand11";
     this.gridBand11.Width = 75;
     //
     // colK1
     //
     this.colK1.AppearanceHeader.Options.UseTextOptions = true;
     this.colK1.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colK1.Caption = "��ѹ�ȼ�(kV)";
     this.colK1.FieldName = "K1";
     this.colK1.Name = "colK1";
     this.colK1.Visible = true;
     //
     // gridBand12
     //
     this.gridBand12.Caption = "gridBand11";
     this.gridBand12.Columns.Add(this.colK2);
     this.gridBand12.Name = "gridBand12";
     this.gridBand12.Width = 75;
     //
     // colK2
     //
     this.colK2.AppearanceHeader.Options.UseTextOptions = true;
     this.colK2.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colK2.Caption = "���ڵ����ͺ�";
     this.colK2.FieldName = "K2";
     this.colK2.Name = "colK2";
     this.colK2.Visible = true;
     //
     // gridBand13
     //
     this.gridBand13.Caption = "gridBand12";
     this.gridBand13.Columns.Add(this.colK3);
     this.gridBand13.Name = "gridBand13";
     this.gridBand13.Width = 75;
     //
     // colK3
     //
     this.colK3.AppearanceHeader.Options.UseTextOptions = true;
     this.colK3.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colK3.Caption = "��·����";
     this.colK3.FieldName = "K3";
     this.colK3.Name = "colK3";
     this.colK3.Visible = true;
     //
     // gridBand14
     //
     this.gridBand14.Caption = "gridBand13";
     this.gridBand14.Columns.Add(this.colK4);
     this.gridBand14.Name = "gridBand14";
     this.gridBand14.Width = 75;
     //
     // colK4
     //
     this.colK4.AppearanceHeader.Options.UseTextOptions = true;
     this.colK4.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colK4.Caption = "�����߳���(km)";
     this.colK4.DisplayFormat.FormatString = "n4";
     this.colK4.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.colK4.FieldName = "K4";
     this.colK4.Name = "colK4";
     this.colK4.Visible = true;
     //
     // gridBand15
     //
     this.gridBand15.Caption = "gridBand14";
     this.gridBand15.Columns.Add(this.colK5);
     this.gridBand15.Name = "gridBand15";
     this.gridBand15.Width = 75;
     //
     // colK5
     //
     this.colK5.AppearanceHeader.Options.UseTextOptions = true;
     this.colK5.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colK5.Caption = "��·�ܳ���(km)";
     this.colK5.DisplayFormat.FormatString = "n4";
     this.colK5.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.colK5.FieldName = "K5";
     this.colK5.Name = "colK5";
     this.colK5.Visible = true;
     //
     // gridBand16
     //
     this.gridBand16.Caption = "gridBand15";
     this.gridBand16.Columns.Add(this.colK6);
     this.gridBand16.Name = "gridBand16";
     this.gridBand16.Width = 75;
     //
     // colK6
     //
     this.colK6.AppearanceHeader.Options.UseTextOptions = true;
     this.colK6.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colK6.Caption = "�����߳�(km)";
     this.colK6.DisplayFormat.FormatString = "n4";
     this.colK6.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.colK6.FieldName = "K6";
     this.colK6.Name = "colK6";
     this.colK6.Visible = true;
     //
     // gridBand17
     //
     this.gridBand17.AppearanceHeader.Options.UseTextOptions = true;
     this.gridBand17.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridBand17.Caption = "�ܿյ���";
     this.gridBand17.Children.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.GridBand[] {
     this.gridBand41,
     this.gridBand42});
     this.gridBand17.Name = "gridBand17";
     this.gridBand17.Width = 150;
     //
     // gridBand41
     //
     this.gridBand41.AppearanceHeader.Options.UseTextOptions = true;
     this.gridBand41.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridBand41.Caption = "�㵼��";
     this.gridBand41.Columns.Add(this.gridColumn42);
     this.gridBand41.Name = "gridBand41";
     this.gridBand41.Width = 75;
     //
     // gridColumn42
     //
     this.gridColumn42.Caption = "�㵼��";
     this.gridColumn42.DisplayFormat.FormatString = "n4";
     this.gridColumn42.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumn42.FieldName = "K20";
     this.gridColumn42.Name = "gridColumn42";
     this.gridColumn42.Visible = true;
     //
     // gridBand42
     //
     this.gridBand42.AppearanceHeader.Options.UseTextOptions = true;
     this.gridBand42.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridBand42.Caption = "��Ե��";
     this.gridBand42.Columns.Add(this.gridColumn43);
     this.gridBand42.Name = "gridBand42";
     this.gridBand42.Width = 75;
     //
     // gridColumn43
     //
     this.gridColumn43.Caption = "��Ե��";
     this.gridColumn43.DisplayFormat.FormatString = "n4";
     this.gridColumn43.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumn43.FieldName = "K21";
     this.gridColumn43.Name = "gridColumn43";
     this.gridColumn43.Visible = true;
     //
     // gridBand18
     //
     this.gridBand18.Caption = "gridBand19";
     this.gridBand18.Columns.Add(this.gridColumn44);
     this.gridBand18.Name = "gridBand18";
     this.gridBand18.Width = 75;
     //
     // gridColumn44
     //
     this.gridColumn44.Caption = "�����·����ģʽ";
     this.gridColumn44.FieldName = "K22";
     this.gridColumn44.Name = "gridColumn44";
     this.gridColumn44.Visible = true;
     //
     // gridBand19
     //
     this.gridBand19.Caption = "gridBand20";
     this.gridBand19.Columns.Add(this.colK8);
     this.gridBand19.Name = "gridBand19";
     this.gridBand19.Width = 75;
     //
     // colK8
     //
     this.colK8.AppearanceHeader.Options.UseTextOptions = true;
     this.colK8.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colK8.Caption = "��ȫ����(A)";
     this.colK8.DisplayFormat.FormatString = "n0";
     this.colK8.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.colK8.FieldName = "K8";
     this.colK8.Name = "colK8";
     this.colK8.Visible = true;
     //
     // gridBand20
     //
     this.gridBand20.Caption = "gridBand21";
     this.gridBand20.Columns.Add(this.colK9);
     this.gridBand20.Name = "gridBand20";
     this.gridBand20.Width = 75;
     //
     // colK9
     //
     this.colK9.AppearanceHeader.Options.UseTextOptions = true;
     this.colK9.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colK9.Caption = "����̨��";
     this.colK9.DisplayFormat.FormatString = "n0";
     this.colK9.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.colK9.FieldName = "K9";
     this.colK9.Name = "colK9";
     this.colK9.Visible = true;
     //
     // gridBand21
     //
     this.gridBand21.Caption = "gridBand22";
     this.gridBand21.Columns.Add(this.colK10);
     this.gridBand21.Name = "gridBand21";
     this.gridBand21.Width = 75;
     //
     // colK10
     //
     this.colK10.AppearanceHeader.Options.UseTextOptions = true;
     this.colK10.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colK10.Caption = "��������(kVA)";
     this.colK10.DisplayFormat.FormatString = "n0";
     this.colK10.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.colK10.FieldName = "K10";
     this.colK10.Name = "colK10";
     this.colK10.Visible = true;
     //
     // gridBand22
     //
     this.gridBand22.Caption = "gridBand23";
     this.gridBand22.Columns.Add(this.colK13);
     this.gridBand22.Name = "gridBand22";
     this.gridBand22.Width = 75;
     //
     // colK13
     //
     this.colK13.AppearanceHeader.Options.UseTextOptions = true;
     this.colK13.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colK13.Caption = "���������(kVA)";
     this.colK13.DisplayFormat.FormatString = "n0";
     this.colK13.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.colK13.FieldName = "K13";
     this.colK13.Name = "colK13";
     this.colK13.Visible = true;
     //
     // gridBand23
     //
     this.gridBand23.Caption = "gridBand24";
     this.gridBand23.Columns.Add(this.colK15);
     this.gridBand23.Name = "gridBand23";
     this.gridBand23.Width = 75;
     //
     // colK15
     //
     this.colK15.AppearanceHeader.Options.UseTextOptions = true;
     this.colK15.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colK15.Caption = "�޹�����������(Kvar)";
     this.colK15.DisplayFormat.FormatString = "n0";
     this.colK15.FieldName = "K15";
     this.colK15.Name = "colK15";
     this.colK15.Visible = true;
     //
     // gridBand24
     //
     this.gridBand24.Caption = "gridBand25";
     this.gridBand24.Columns.Add(this.colK14);
     this.gridBand24.Name = "gridBand24";
     this.gridBand24.Width = 75;
     //
     // colK14
     //
     this.colK14.AppearanceHeader.Options.UseTextOptions = true;
     this.colK14.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colK14.Caption = "�޹�������̨��(̨)";
     this.colK14.DisplayFormat.FormatString = "n0";
     this.colK14.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.colK14.FieldName = "K14";
     this.colK14.Name = "colK14";
     this.colK14.Visible = true;
     //
     // gridBand25
     //
     this.gridBand25.Caption = "gridBand26";
     this.gridBand25.Columns.Add(this.colK12);
     this.gridBand25.Name = "gridBand25";
     this.gridBand25.Width = 75;
     //
     // colK12
     //
     this.colK12.AppearanceHeader.Options.UseTextOptions = true;
     this.colK12.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colK12.Caption = "ר������(kVA)";
     this.colK12.DisplayFormat.FormatString = "n0";
     this.colK12.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.colK12.FieldName = "K12";
     this.colK12.Name = "colK12";
     this.colK12.Visible = true;
     //
     // gridBand26
     //
     this.gridBand26.Caption = "gridBand27";
     this.gridBand26.Columns.Add(this.colK11);
     this.gridBand26.Name = "gridBand26";
     this.gridBand26.Width = 75;
     //
     // colK11
     //
     this.colK11.AppearanceHeader.Options.UseTextOptions = true;
     this.colK11.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colK11.Caption = "ר��̨��";
     this.colK11.DisplayFormat.FormatString = "n0";
     this.colK11.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.colK11.FieldName = "K11";
     this.colK11.Name = "colK11";
     this.colK11.Visible = true;
     //
     // gridBand27
     //
     this.gridBand27.Caption = "gridBand28";
     this.gridBand27.Columns.Add(this.colK16);
     this.gridBand27.Name = "gridBand27";
     this.gridBand27.Width = 75;
     //
     // colK16
     //
     this.colK16.AppearanceHeader.Options.UseTextOptions = true;
     this.colK16.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colK16.Caption = "������(A)";
     this.colK16.DisplayFormat.FormatString = "n2";
     this.colK16.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.colK16.FieldName = "K16";
     this.colK16.Name = "colK16";
     this.colK16.Visible = true;
     //
     // gridBand28
     //
     this.gridBand28.Caption = "gridBand29";
     this.gridBand28.Columns.Add(this.colK18);
     this.gridBand28.Name = "gridBand28";
     this.gridBand28.Width = 75;
     //
     // colK18
     //
     this.colK18.AppearanceHeader.Options.UseTextOptions = true;
     this.colK18.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colK18.Caption = "��λ�߳��������(kVA/km)";
     this.colK18.DisplayFormat.FormatString = "n2";
     this.colK18.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.colK18.FieldName = "K18";
     this.colK18.Name = "colK18";
     this.colK18.Visible = true;
     //
     // gridBand29
     //
     this.gridBand29.Caption = "gridBand30";
     this.gridBand29.Columns.Add(this.colK17);
     this.gridBand29.Name = "gridBand29";
     this.gridBand29.Width = 75;
     //
     // colK17
     //
     this.colK17.AppearanceHeader.Options.UseTextOptions = true;
     this.colK17.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colK17.Caption = "��为����(%)";
     this.colK17.DisplayFormat.FormatString = "n2";
     this.colK17.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.colK17.FieldName = "K17";
     this.colK17.Name = "colK17";
     this.colK17.Visible = true;
     //
     // gridBand30
     //
     this.gridBand30.Caption = "gridBand31";
     this.gridBand30.Columns.Add(this.colK19);
     this.gridBand30.Name = "gridBand30";
     this.gridBand30.Width = 75;
     //
     // colK19
     //
     this.colK19.AppearanceHeader.Options.UseTextOptions = true;
     this.colK19.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colK19.Caption = "��·������(%)";
     this.colK19.DisplayFormat.FormatString = "n2";
     this.colK19.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.colK19.FieldName = "K19";
     this.colK19.Name = "colK19";
     this.colK19.Visible = true;
     //
     // gridBand31
     //
     this.gridBand31.Caption = "gridBand32";
     this.gridBand31.Columns.Add(this.colS1);
     this.gridBand31.Name = "gridBand31";
     this.gridBand31.Width = 75;
     //
     // colS1
     //
     this.colS1.AppearanceHeader.Options.UseTextOptions = true;
     this.colS1.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colS1.FieldName = "S1";
     this.colS1.Name = "colS1";
     this.colS1.Visible = true;
     //
     // gridBand32
     //
     this.gridBand32.Caption = "gridBand33";
     this.gridBand32.Columns.Add(this.colS2);
     this.gridBand32.Name = "gridBand32";
     this.gridBand32.Width = 75;
     //
     // colS2
     //
     this.colS2.AppearanceHeader.Options.UseTextOptions = true;
     this.colS2.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colS2.FieldName = "S2";
     this.colS2.Name = "colS2";
     this.colS2.Visible = true;
     //
     // gridBand33
     //
     this.gridBand33.Caption = "gridBand34";
     this.gridBand33.Columns.Add(this.colS3);
     this.gridBand33.Name = "gridBand33";
     this.gridBand33.Width = 75;
     //
     // colS3
     //
     this.colS3.AppearanceHeader.Options.UseTextOptions = true;
     this.colS3.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colS3.FieldName = "S3";
     this.colS3.Name = "colS3";
     this.colS3.Visible = true;
     //
     // gridBand34
     //
     this.gridBand34.Caption = "gridBand35";
     this.gridBand34.Columns.Add(this.colS4);
     this.gridBand34.Name = "gridBand34";
     this.gridBand34.Width = 75;
     //
     // colS4
     //
     this.colS4.AppearanceHeader.Options.UseTextOptions = true;
     this.colS4.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colS4.FieldName = "S4";
     this.colS4.Name = "colS4";
     this.colS4.Visible = true;
     //
     // gridBand35
     //
     this.gridBand35.Caption = "gridBand36";
     this.gridBand35.Columns.Add(this.colS5);
     this.gridBand35.Name = "gridBand35";
     this.gridBand35.Width = 75;
     //
     // colS5
     //
     this.colS5.AppearanceHeader.Options.UseTextOptions = true;
     this.colS5.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colS5.FieldName = "S5";
     this.colS5.Name = "colS5";
     this.colS5.Visible = true;
     //
     // gridBand36
     //
     this.gridBand36.Caption = "gridBand37";
     this.gridBand36.Columns.Add(this.colS6);
     this.gridBand36.Name = "gridBand36";
     this.gridBand36.Width = 75;
     //
     // colS6
     //
     this.colS6.AppearanceHeader.Options.UseTextOptions = true;
     this.colS6.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colS6.FieldName = "S6";
     this.colS6.Name = "colS6";
     this.colS6.Visible = true;
     //
     // gridBand37
     //
     this.gridBand37.Caption = "gridBand38";
     this.gridBand37.Columns.Add(this.colS7);
     this.gridBand37.Name = "gridBand37";
     this.gridBand37.Width = 75;
     //
     // colS7
     //
     this.colS7.AppearanceHeader.Options.UseTextOptions = true;
     this.colS7.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colS7.FieldName = "S7";
     this.colS7.Name = "colS7";
     this.colS7.Visible = true;
     //
     // gridBand38
     //
     this.gridBand38.Caption = "gridBand39";
     this.gridBand38.Columns.Add(this.colS8);
     this.gridBand38.Name = "gridBand38";
     this.gridBand38.Width = 75;
     //
     // colS8
     //
     this.colS8.AppearanceHeader.Options.UseTextOptions = true;
     this.colS8.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colS8.FieldName = "S8";
     this.colS8.Name = "colS8";
     this.colS8.Visible = true;
     //
     // gridBand39
     //
     this.gridBand39.Caption = "gridBand40";
     this.gridBand39.Columns.Add(this.colS9);
     this.gridBand39.Name = "gridBand39";
     this.gridBand39.Width = 75;
     //
     // colS9
     //
     this.colS9.AppearanceHeader.Options.UseTextOptions = true;
     this.colS9.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colS9.FieldName = "S9";
     this.colS9.Name = "colS9";
     this.colS9.Visible = true;
     //
     // gridBand40
     //
     this.gridBand40.Caption = "gridBand41";
     this.gridBand40.Columns.Add(this.colS10);
     this.gridBand40.Name = "gridBand40";
     this.gridBand40.Width = 75;
     //
     // colS10
     //
     this.colS10.AppearanceHeader.Options.UseTextOptions = true;
     this.colS10.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colS10.FieldName = "S10";
     this.colS10.Name = "colS10";
     this.colS10.Visible = true;
     //
     // gridView2
     //
     this.gridView2.AppearancePrint.HeaderPanel.Options.UseTextOptions = true;
     this.gridView2.AppearancePrint.HeaderPanel.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridView2.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn1,
     this.gridColumn2,
     this.gridColumn3,
     this.gridColumn4,
     this.gridColumn5,
     this.gridColumn6,
     this.gridColumn7,
     this.gridColumn8,
     this.gridColumn9,
     this.gridColumn10,
     this.gridColumn11,
     this.gridColumn12,
     this.gridColumn13,
     this.gridColumn14,
     this.gridColumn15,
     this.gridColumn16,
     this.gridColumn39,
     this.gridColumn40,
     this.gridColumn41,
     this.gridColumn17,
     this.gridColumn18,
     this.gridColumn19,
     this.gridColumn20,
     this.gridColumn21,
     this.gridColumn22,
     this.gridColumn23,
     this.gridColumn24,
     this.gridColumn25,
     this.gridColumn26,
     this.gridColumn27,
     this.gridColumn28,
     this.gridColumn29,
     this.gridColumn30,
     this.gridColumn31,
     this.gridColumn32,
     this.gridColumn33,
     this.gridColumn34,
     this.gridColumn35,
     this.gridColumn36,
     this.gridColumn37,
     this.gridColumn38});
     this.gridView2.GridControl = this.gridControl;
     this.gridView2.GroupPanelText = "��·���";
     this.gridView2.Name = "gridView2";
     this.gridView2.OptionsBehavior.Editable = false;
     this.gridView2.OptionsCustomization.AllowFilter = false;
     this.gridView2.OptionsPrint.UsePrintStyles = true;
     //
     // gridColumn1
     //
     this.gridColumn1.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn1.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn1.Caption = "����";
     this.gridColumn1.FieldName = "AreaName";
     this.gridColumn1.Name = "gridColumn1";
     this.gridColumn1.Visible = true;
     this.gridColumn1.VisibleIndex = 0;
     //
     // gridColumn2
     //
     this.gridColumn2.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn2.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn2.Caption = "���վ����";
     this.gridColumn2.FieldName = "SubstationName";
     this.gridColumn2.Name = "gridColumn2";
     this.gridColumn2.Visible = true;
     this.gridColumn2.VisibleIndex = 1;
     //
     // gridColumn3
     //
     this.gridColumn3.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn3.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn3.Caption = "��·����";
     this.gridColumn3.FieldName = "Title";
     this.gridColumn3.Name = "gridColumn3";
     this.gridColumn3.Visible = true;
     this.gridColumn3.VisibleIndex = 2;
     //
     // gridColumn4
     //
     this.gridColumn4.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn4.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn4.Caption = "��ѹ�ȼ�(kV)";
     this.gridColumn4.FieldName = "L1";
     this.gridColumn4.Name = "gridColumn4";
     this.gridColumn4.Visible = true;
     this.gridColumn4.VisibleIndex = 3;
     //
     // gridColumn5
     //
     this.gridColumn5.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn5.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn5.Caption = "�����վ";
     this.gridColumn5.FieldName = "L2";
     this.gridColumn5.Name = "gridColumn5";
     this.gridColumn5.Visible = true;
     this.gridColumn5.VisibleIndex = 4;
     //
     // gridColumn6
     //
     this.gridColumn6.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn6.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn6.Caption = "�յ���վ";
     this.gridColumn6.FieldName = "L3";
     this.gridColumn6.Name = "gridColumn6";
     this.gridColumn6.Visible = true;
     this.gridColumn6.VisibleIndex = 5;
     //
     // gridColumn7
     //
     this.gridColumn7.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn7.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn7.Caption = "�����ͺ�";
     this.gridColumn7.FieldName = "L4";
     this.gridColumn7.Name = "gridColumn7";
     this.gridColumn7.Visible = true;
     this.gridColumn7.VisibleIndex = 6;
     //
     // gridColumn8
     //
     this.gridColumn8.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn8.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn8.Caption = "��·����(km)";
     this.gridColumn8.DisplayFormat.FormatString = "n2";
     this.gridColumn8.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumn8.FieldName = "L5";
     this.gridColumn8.Name = "gridColumn8";
     this.gridColumn8.Visible = true;
     this.gridColumn8.VisibleIndex = 7;
     //
     // gridColumn9
     //
     this.gridColumn9.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn9.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn9.Caption = "Ͷ��ʱ��";
     this.gridColumn9.DisplayFormat.FormatString = "yyyy-MM-dd";
     this.gridColumn9.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.gridColumn9.FieldName = "L6";
     this.gridColumn9.Name = "gridColumn9";
     this.gridColumn9.Visible = true;
     this.gridColumn9.VisibleIndex = 8;
     //
     // gridColumn10
     //
     this.gridColumn10.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn10.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn10.Caption = "��ѹ�ȼ�(kV)";
     this.gridColumn10.FieldName = "K1";
     this.gridColumn10.Name = "gridColumn10";
     this.gridColumn10.Visible = true;
     this.gridColumn10.VisibleIndex = 9;
     //
     // gridColumn11
     //
     this.gridColumn11.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn11.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn11.Caption = "���ڵ����ͺ�";
     this.gridColumn11.FieldName = "K2";
     this.gridColumn11.Name = "gridColumn11";
     this.gridColumn11.Visible = true;
     this.gridColumn11.VisibleIndex = 10;
     //
     // gridColumn12
     //
     this.gridColumn12.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn12.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn12.Caption = "��·����";
     this.gridColumn12.FieldName = "K3";
     this.gridColumn12.Name = "gridColumn12";
     this.gridColumn12.Visible = true;
     this.gridColumn12.VisibleIndex = 11;
     //
     // gridColumn13
     //
     this.gridColumn13.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn13.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn13.Caption = "�����߳���(km)";
     this.gridColumn13.DisplayFormat.FormatString = "n2";
     this.gridColumn13.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumn13.FieldName = "K4";
     this.gridColumn13.Name = "gridColumn13";
     this.gridColumn13.Visible = true;
     this.gridColumn13.VisibleIndex = 12;
     //
     // gridColumn14
     //
     this.gridColumn14.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn14.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn14.Caption = "��·�ܳ���(km)";
     this.gridColumn14.DisplayFormat.FormatString = "n2";
     this.gridColumn14.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumn14.FieldName = "K5";
     this.gridColumn14.Name = "gridColumn14";
     this.gridColumn14.Visible = true;
     this.gridColumn14.VisibleIndex = 13;
     //
     // gridColumn15
     //
     this.gridColumn15.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn15.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn15.Caption = "�����߳�(km)";
     this.gridColumn15.DisplayFormat.FormatString = "n2";
     this.gridColumn15.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumn15.FieldName = "K6";
     this.gridColumn15.Name = "gridColumn15";
     this.gridColumn15.Visible = true;
     this.gridColumn15.VisibleIndex = 14;
     //
     // gridColumn16
     //
     this.gridColumn16.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn16.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn16.Caption = "�ܿ��߳�(km)";
     this.gridColumn16.DisplayFormat.FormatString = "n2";
     this.gridColumn16.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumn16.FieldName = "K7";
     this.gridColumn16.Name = "gridColumn16";
     //
     // gridColumn39
     //
     this.gridColumn39.Caption = "�㵼��";
     this.gridColumn39.FieldName = "K20";
     this.gridColumn39.Name = "gridColumn39";
     this.gridColumn39.Visible = true;
     this.gridColumn39.VisibleIndex = 15;
     //
     // gridColumn40
     //
     this.gridColumn40.Caption = "��Ե��";
     this.gridColumn40.FieldName = "K21";
     this.gridColumn40.Name = "gridColumn40";
     this.gridColumn40.Visible = true;
     this.gridColumn40.VisibleIndex = 16;
     //
     // gridColumn41
     //
     this.gridColumn41.Caption = "�����·����ģʽ";
     this.gridColumn41.FieldName = "K22";
     this.gridColumn41.Name = "gridColumn41";
     this.gridColumn41.Visible = true;
     this.gridColumn41.VisibleIndex = 18;
     //
     // gridColumn17
     //
     this.gridColumn17.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn17.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn17.Caption = "��ȫ����(A)";
     this.gridColumn17.FieldName = "K8";
     this.gridColumn17.Name = "gridColumn17";
     this.gridColumn17.Visible = true;
     this.gridColumn17.VisibleIndex = 17;
     //
     // gridColumn18
     //
     this.gridColumn18.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn18.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn18.Caption = "����̨��";
     this.gridColumn18.FieldName = "K9";
     this.gridColumn18.Name = "gridColumn18";
     this.gridColumn18.Visible = true;
     this.gridColumn18.VisibleIndex = 19;
     //
     // gridColumn19
     //
     this.gridColumn19.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn19.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn19.Caption = "��������(kVA)";
     this.gridColumn19.FieldName = "K10";
     this.gridColumn19.Name = "gridColumn19";
     this.gridColumn19.Visible = true;
     this.gridColumn19.VisibleIndex = 20;
     //
     // gridColumn20
     //
     this.gridColumn20.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn20.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn20.Caption = "ר��̨��";
     this.gridColumn20.FieldName = "K11";
     this.gridColumn20.Name = "gridColumn20";
     this.gridColumn20.Visible = true;
     this.gridColumn20.VisibleIndex = 21;
     //
     // gridColumn21
     //
     this.gridColumn21.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn21.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn21.Caption = "ר������(kVA)";
     this.gridColumn21.FieldName = "K12";
     this.gridColumn21.Name = "gridColumn21";
     this.gridColumn21.Visible = true;
     this.gridColumn21.VisibleIndex = 22;
     //
     // gridColumn22
     //
     this.gridColumn22.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn22.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn22.Caption = "���������(kVA)";
     this.gridColumn22.FieldName = "K13";
     this.gridColumn22.Name = "gridColumn22";
     this.gridColumn22.Visible = true;
     this.gridColumn22.VisibleIndex = 23;
     //
     // gridColumn23
     //
     this.gridColumn23.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn23.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn23.Caption = "�޹�������̨��(̨)";
     this.gridColumn23.FieldName = "K14";
     this.gridColumn23.Name = "gridColumn23";
     this.gridColumn23.Visible = true;
     this.gridColumn23.VisibleIndex = 24;
     //
     // gridColumn24
     //
     this.gridColumn24.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn24.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn24.Caption = "�޹�����������(Kvar)";
     this.gridColumn24.FieldName = "K15";
     this.gridColumn24.Name = "gridColumn24";
     this.gridColumn24.Visible = true;
     this.gridColumn24.VisibleIndex = 25;
     //
     // gridColumn25
     //
     this.gridColumn25.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn25.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn25.Caption = "������(A)";
     this.gridColumn25.DisplayFormat.FormatString = "n2";
     this.gridColumn25.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumn25.FieldName = "K16";
     this.gridColumn25.Name = "gridColumn25";
     this.gridColumn25.Visible = true;
     this.gridColumn25.VisibleIndex = 26;
     //
     // gridColumn26
     //
     this.gridColumn26.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn26.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn26.Caption = "��为����(%)";
     this.gridColumn26.DisplayFormat.FormatString = "n2";
     this.gridColumn26.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumn26.FieldName = "K17";
     this.gridColumn26.Name = "gridColumn26";
     this.gridColumn26.Visible = true;
     this.gridColumn26.VisibleIndex = 27;
     //
     // gridColumn27
     //
     this.gridColumn27.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn27.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn27.Caption = "��λ�߳��������(kVA/km)";
     this.gridColumn27.DisplayFormat.FormatString = "n2";
     this.gridColumn27.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumn27.FieldName = "K18";
     this.gridColumn27.Name = "gridColumn27";
     this.gridColumn27.Visible = true;
     this.gridColumn27.VisibleIndex = 28;
     //
     // gridColumn28
     //
     this.gridColumn28.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn28.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn28.Caption = "��·������(%)";
     this.gridColumn28.DisplayFormat.FormatString = "n2";
     this.gridColumn28.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumn28.FieldName = "K19";
     this.gridColumn28.Name = "gridColumn28";
     this.gridColumn28.Visible = true;
     this.gridColumn28.VisibleIndex = 29;
     //
     // gridColumn29
     //
     this.gridColumn29.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn29.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn29.FieldName = "S1";
     this.gridColumn29.Name = "gridColumn29";
     this.gridColumn29.Visible = true;
     this.gridColumn29.VisibleIndex = 30;
     //
     // gridColumn30
     //
     this.gridColumn30.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn30.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn30.FieldName = "S2";
     this.gridColumn30.Name = "gridColumn30";
     this.gridColumn30.Visible = true;
     this.gridColumn30.VisibleIndex = 31;
     //
     // gridColumn31
     //
     this.gridColumn31.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn31.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn31.FieldName = "S3";
     this.gridColumn31.Name = "gridColumn31";
     this.gridColumn31.Visible = true;
     this.gridColumn31.VisibleIndex = 32;
     //
     // gridColumn32
     //
     this.gridColumn32.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn32.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn32.FieldName = "S4";
     this.gridColumn32.Name = "gridColumn32";
     this.gridColumn32.Visible = true;
     this.gridColumn32.VisibleIndex = 33;
     //
     // gridColumn33
     //
     this.gridColumn33.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn33.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn33.FieldName = "S5";
     this.gridColumn33.Name = "gridColumn33";
     this.gridColumn33.Visible = true;
     this.gridColumn33.VisibleIndex = 34;
     //
     // gridColumn34
     //
     this.gridColumn34.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn34.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn34.FieldName = "S6";
     this.gridColumn34.Name = "gridColumn34";
     this.gridColumn34.Visible = true;
     this.gridColumn34.VisibleIndex = 35;
     //
     // gridColumn35
     //
     this.gridColumn35.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn35.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn35.FieldName = "S7";
     this.gridColumn35.Name = "gridColumn35";
     this.gridColumn35.Visible = true;
     this.gridColumn35.VisibleIndex = 36;
     //
     // gridColumn36
     //
     this.gridColumn36.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn36.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn36.FieldName = "S8";
     this.gridColumn36.Name = "gridColumn36";
     this.gridColumn36.Visible = true;
     this.gridColumn36.VisibleIndex = 37;
     //
     // gridColumn37
     //
     this.gridColumn37.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn37.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn37.FieldName = "S9";
     this.gridColumn37.Name = "gridColumn37";
     this.gridColumn37.Visible = true;
     this.gridColumn37.VisibleIndex = 38;
     //
     // gridColumn38
     //
     this.gridColumn38.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn38.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn38.FieldName = "S10";
     this.gridColumn38.Name = "gridColumn38";
     this.gridColumn38.Visible = true;
     this.gridColumn38.VisibleIndex = 39;
     //
     // gridView1
     //
     this.gridView1.AppearancePrint.HeaderPanel.Options.UseTextOptions = true;
     this.gridView1.AppearancePrint.HeaderPanel.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridView1.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.bandedGridColumn1,
     this.bandedGridColumn2,
     this.bandedGridColumn3,
     this.bandedGridColumn4,
     this.bandedGridColumn5,
     this.bandedGridColumn6,
     this.bandedGridColumn7,
     this.bandedGridColumn8,
     this.bandedGridColumn9,
     this.bandedGridColumn10,
     this.bandedGridColumn11,
     this.bandedGridColumn12,
     this.bandedGridColumn13,
     this.bandedGridColumn14,
     this.bandedGridColumn15,
     this.bandedGridColumn16,
     this.bandedGridColumn17,
     this.bandedGridColumn18,
     this.bandedGridColumn19,
     this.bandedGridColumn20,
     this.bandedGridColumn21,
     this.bandedGridColumn22,
     this.bandedGridColumn23,
     this.bandedGridColumn24,
     this.bandedGridColumn25,
     this.bandedGridColumn26,
     this.bandedGridColumn27,
     this.bandedGridColumn28,
     this.bandedGridColumn29,
     this.bandedGridColumn30,
     this.bandedGridColumn31,
     this.bandedGridColumn32,
     this.bandedGridColumn33,
     this.bandedGridColumn34,
     this.bandedGridColumn35,
     this.bandedGridColumn36,
     this.bandedGridColumn37,
     this.bandedGridColumn38});
     this.gridView1.GridControl = this.gridControl;
     this.gridView1.GroupPanelText = "��·���";
     this.gridView1.Name = "gridView1";
     this.gridView1.OptionsBehavior.Editable = false;
     this.gridView1.OptionsCustomization.AllowFilter = false;
     this.gridView1.OptionsPrint.UsePrintStyles = true;
     //
     // bandedGridColumn1
     //
     this.bandedGridColumn1.AppearanceHeader.Options.UseTextOptions = true;
     this.bandedGridColumn1.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.bandedGridColumn1.Caption = "����";
     this.bandedGridColumn1.FieldName = "AreaName";
     this.bandedGridColumn1.Name = "bandedGridColumn1";
     this.bandedGridColumn1.Visible = true;
     this.bandedGridColumn1.VisibleIndex = 0;
     //
     // bandedGridColumn2
     //
     this.bandedGridColumn2.AppearanceHeader.Options.UseTextOptions = true;
     this.bandedGridColumn2.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.bandedGridColumn2.Caption = "���վ����";
     this.bandedGridColumn2.FieldName = "SubstationName";
     this.bandedGridColumn2.Name = "bandedGridColumn2";
     this.bandedGridColumn2.Visible = true;
     this.bandedGridColumn2.VisibleIndex = 1;
     //
     // bandedGridColumn3
     //
     this.bandedGridColumn3.AppearanceHeader.Options.UseTextOptions = true;
     this.bandedGridColumn3.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.bandedGridColumn3.Caption = "��·����";
     this.bandedGridColumn3.FieldName = "Title";
     this.bandedGridColumn3.Name = "bandedGridColumn3";
     this.bandedGridColumn3.Visible = true;
     this.bandedGridColumn3.VisibleIndex = 2;
     //
     // bandedGridColumn4
     //
     this.bandedGridColumn4.AppearanceHeader.Options.UseTextOptions = true;
     this.bandedGridColumn4.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.bandedGridColumn4.Caption = "��ѹ�ȼ�(kV)";
     this.bandedGridColumn4.FieldName = "L1";
     this.bandedGridColumn4.Name = "bandedGridColumn4";
     this.bandedGridColumn4.Visible = true;
     this.bandedGridColumn4.VisibleIndex = 3;
     //
     // bandedGridColumn5
     //
     this.bandedGridColumn5.AppearanceHeader.Options.UseTextOptions = true;
     this.bandedGridColumn5.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.bandedGridColumn5.Caption = "�����վ";
     this.bandedGridColumn5.FieldName = "L2";
     this.bandedGridColumn5.Name = "bandedGridColumn5";
     this.bandedGridColumn5.Visible = true;
     this.bandedGridColumn5.VisibleIndex = 4;
     //
     // bandedGridColumn6
     //
     this.bandedGridColumn6.AppearanceHeader.Options.UseTextOptions = true;
     this.bandedGridColumn6.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.bandedGridColumn6.Caption = "�յ���վ";
     this.bandedGridColumn6.FieldName = "L3";
     this.bandedGridColumn6.Name = "bandedGridColumn6";
     this.bandedGridColumn6.Visible = true;
     this.bandedGridColumn6.VisibleIndex = 5;
     //
     // bandedGridColumn7
     //
     this.bandedGridColumn7.AppearanceHeader.Options.UseTextOptions = true;
     this.bandedGridColumn7.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.bandedGridColumn7.Caption = "�����ͺ�";
     this.bandedGridColumn7.FieldName = "L4";
     this.bandedGridColumn7.Name = "bandedGridColumn7";
     this.bandedGridColumn7.Visible = true;
     this.bandedGridColumn7.VisibleIndex = 6;
     //
     // bandedGridColumn8
     //
     this.bandedGridColumn8.AppearanceHeader.Options.UseTextOptions = true;
     this.bandedGridColumn8.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.bandedGridColumn8.Caption = "��·����(km)";
     this.bandedGridColumn8.DisplayFormat.FormatString = "n2";
     this.bandedGridColumn8.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.bandedGridColumn8.FieldName = "L5";
     this.bandedGridColumn8.Name = "bandedGridColumn8";
     this.bandedGridColumn8.Visible = true;
     this.bandedGridColumn8.VisibleIndex = 7;
     //
     // bandedGridColumn9
     //
     this.bandedGridColumn9.AppearanceHeader.Options.UseTextOptions = true;
     this.bandedGridColumn9.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.bandedGridColumn9.Caption = "Ͷ��ʱ��";
     this.bandedGridColumn9.DisplayFormat.FormatString = "yyyy-MM-dd";
     this.bandedGridColumn9.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.bandedGridColumn9.FieldName = "L6";
     this.bandedGridColumn9.Name = "bandedGridColumn9";
     this.bandedGridColumn9.Visible = true;
     this.bandedGridColumn9.VisibleIndex = 8;
     //
     // bandedGridColumn10
     //
     this.bandedGridColumn10.AppearanceHeader.Options.UseTextOptions = true;
     this.bandedGridColumn10.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.bandedGridColumn10.Caption = "��ѹ�ȼ�(kV)";
     this.bandedGridColumn10.FieldName = "K1";
     this.bandedGridColumn10.Name = "bandedGridColumn10";
     this.bandedGridColumn10.Visible = true;
     this.bandedGridColumn10.VisibleIndex = 9;
     //
     // bandedGridColumn11
     //
     this.bandedGridColumn11.AppearanceHeader.Options.UseTextOptions = true;
     this.bandedGridColumn11.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.bandedGridColumn11.Caption = "���ڵ����ͺ�";
     this.bandedGridColumn11.FieldName = "K2";
     this.bandedGridColumn11.Name = "bandedGridColumn11";
     this.bandedGridColumn11.Visible = true;
     this.bandedGridColumn11.VisibleIndex = 10;
     //
     // bandedGridColumn12
     //
     this.bandedGridColumn12.AppearanceHeader.Options.UseTextOptions = true;
     this.bandedGridColumn12.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.bandedGridColumn12.Caption = "��·����";
     this.bandedGridColumn12.FieldName = "K3";
     this.bandedGridColumn12.Name = "bandedGridColumn12";
     this.bandedGridColumn12.Visible = true;
     this.bandedGridColumn12.VisibleIndex = 11;
     //
     // bandedGridColumn13
     //
     this.bandedGridColumn13.AppearanceHeader.Options.UseTextOptions = true;
     this.bandedGridColumn13.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.bandedGridColumn13.Caption = "�����߳���(km)";
     this.bandedGridColumn13.DisplayFormat.FormatString = "n2";
     this.bandedGridColumn13.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.bandedGridColumn13.FieldName = "K4";
     this.bandedGridColumn13.Name = "bandedGridColumn13";
     this.bandedGridColumn13.Visible = true;
     this.bandedGridColumn13.VisibleIndex = 12;
     //
     // bandedGridColumn14
     //
     this.bandedGridColumn14.AppearanceHeader.Options.UseTextOptions = true;
     this.bandedGridColumn14.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.bandedGridColumn14.Caption = "��·�ܳ���(km)";
     this.bandedGridColumn14.DisplayFormat.FormatString = "n2";
     this.bandedGridColumn14.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.bandedGridColumn14.FieldName = "K5";
     this.bandedGridColumn14.Name = "bandedGridColumn14";
     this.bandedGridColumn14.Visible = true;
     this.bandedGridColumn14.VisibleIndex = 13;
     //
     // bandedGridColumn15
     //
     this.bandedGridColumn15.AppearanceHeader.Options.UseTextOptions = true;
     this.bandedGridColumn15.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.bandedGridColumn15.Caption = "�����߳�(km)";
     this.bandedGridColumn15.DisplayFormat.FormatString = "n2";
     this.bandedGridColumn15.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.bandedGridColumn15.FieldName = "K6";
     this.bandedGridColumn15.Name = "bandedGridColumn15";
     this.bandedGridColumn15.Visible = true;
     this.bandedGridColumn15.VisibleIndex = 14;
     //
     // bandedGridColumn16
     //
     this.bandedGridColumn16.AppearanceHeader.Options.UseTextOptions = true;
     this.bandedGridColumn16.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.bandedGridColumn16.Caption = "�ܿ��߳�(km)";
     this.bandedGridColumn16.DisplayFormat.FormatString = "n2";
     this.bandedGridColumn16.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.bandedGridColumn16.FieldName = "K7";
     this.bandedGridColumn16.Name = "bandedGridColumn16";
     this.bandedGridColumn16.Visible = true;
     this.bandedGridColumn16.VisibleIndex = 15;
     //
     // bandedGridColumn17
     //
     this.bandedGridColumn17.AppearanceHeader.Options.UseTextOptions = true;
     this.bandedGridColumn17.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.bandedGridColumn17.Caption = "��ȫ����(A)";
     this.bandedGridColumn17.FieldName = "K8";
     this.bandedGridColumn17.Name = "bandedGridColumn17";
     this.bandedGridColumn17.Visible = true;
     this.bandedGridColumn17.VisibleIndex = 16;
     //
     // bandedGridColumn18
     //
     this.bandedGridColumn18.AppearanceHeader.Options.UseTextOptions = true;
     this.bandedGridColumn18.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.bandedGridColumn18.Caption = "����̨��";
     this.bandedGridColumn18.FieldName = "K9";
     this.bandedGridColumn18.Name = "bandedGridColumn18";
     this.bandedGridColumn18.Visible = true;
     this.bandedGridColumn18.VisibleIndex = 17;
     //
     // bandedGridColumn19
     //
     this.bandedGridColumn19.AppearanceHeader.Options.UseTextOptions = true;
     this.bandedGridColumn19.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.bandedGridColumn19.Caption = "��������(kVA)";
     this.bandedGridColumn19.FieldName = "K10";
     this.bandedGridColumn19.Name = "bandedGridColumn19";
     this.bandedGridColumn19.Visible = true;
     this.bandedGridColumn19.VisibleIndex = 18;
     //
     // bandedGridColumn20
     //
     this.bandedGridColumn20.AppearanceHeader.Options.UseTextOptions = true;
     this.bandedGridColumn20.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.bandedGridColumn20.Caption = "ר��̨��";
     this.bandedGridColumn20.FieldName = "K11";
     this.bandedGridColumn20.Name = "bandedGridColumn20";
     this.bandedGridColumn20.Visible = true;
     this.bandedGridColumn20.VisibleIndex = 19;
     //
     // bandedGridColumn21
     //
     this.bandedGridColumn21.AppearanceHeader.Options.UseTextOptions = true;
     this.bandedGridColumn21.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.bandedGridColumn21.Caption = "ר������(kVA)";
     this.bandedGridColumn21.FieldName = "K12";
     this.bandedGridColumn21.Name = "bandedGridColumn21";
     this.bandedGridColumn21.Visible = true;
     this.bandedGridColumn21.VisibleIndex = 20;
     //
     // bandedGridColumn22
     //
     this.bandedGridColumn22.AppearanceHeader.Options.UseTextOptions = true;
     this.bandedGridColumn22.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.bandedGridColumn22.Caption = "���������(kVA)";
     this.bandedGridColumn22.FieldName = "K13";
     this.bandedGridColumn22.Name = "bandedGridColumn22";
     this.bandedGridColumn22.Visible = true;
     this.bandedGridColumn22.VisibleIndex = 21;
     //
     // bandedGridColumn23
     //
     this.bandedGridColumn23.AppearanceHeader.Options.UseTextOptions = true;
     this.bandedGridColumn23.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.bandedGridColumn23.Caption = "�޹�������̨��(̨)";
     this.bandedGridColumn23.FieldName = "K14";
     this.bandedGridColumn23.Name = "bandedGridColumn23";
     this.bandedGridColumn23.Visible = true;
     this.bandedGridColumn23.VisibleIndex = 22;
     //
     // bandedGridColumn24
     //
     this.bandedGridColumn24.AppearanceHeader.Options.UseTextOptions = true;
     this.bandedGridColumn24.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.bandedGridColumn24.Caption = "�޹�����������(Kvar)";
     this.bandedGridColumn24.FieldName = "K15";
     this.bandedGridColumn24.Name = "bandedGridColumn24";
     this.bandedGridColumn24.Visible = true;
     this.bandedGridColumn24.VisibleIndex = 23;
     //
     // bandedGridColumn25
     //
     this.bandedGridColumn25.AppearanceHeader.Options.UseTextOptions = true;
     this.bandedGridColumn25.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.bandedGridColumn25.Caption = "������(A)";
     this.bandedGridColumn25.DisplayFormat.FormatString = "n2";
     this.bandedGridColumn25.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.bandedGridColumn25.FieldName = "K16";
     this.bandedGridColumn25.Name = "bandedGridColumn25";
     this.bandedGridColumn25.Visible = true;
     this.bandedGridColumn25.VisibleIndex = 24;
     //
     // bandedGridColumn26
     //
     this.bandedGridColumn26.AppearanceHeader.Options.UseTextOptions = true;
     this.bandedGridColumn26.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.bandedGridColumn26.Caption = "��为����(%)";
     this.bandedGridColumn26.DisplayFormat.FormatString = "n2";
     this.bandedGridColumn26.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.bandedGridColumn26.FieldName = "K17";
     this.bandedGridColumn26.Name = "bandedGridColumn26";
     this.bandedGridColumn26.Visible = true;
     this.bandedGridColumn26.VisibleIndex = 25;
     //
     // bandedGridColumn27
     //
     this.bandedGridColumn27.AppearanceHeader.Options.UseTextOptions = true;
     this.bandedGridColumn27.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.bandedGridColumn27.Caption = "��λ�߳��������(kVA/km)";
     this.bandedGridColumn27.DisplayFormat.FormatString = "n2";
     this.bandedGridColumn27.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.bandedGridColumn27.FieldName = "K18";
     this.bandedGridColumn27.Name = "bandedGridColumn27";
     this.bandedGridColumn27.Visible = true;
     this.bandedGridColumn27.VisibleIndex = 26;
     //
     // bandedGridColumn28
     //
     this.bandedGridColumn28.AppearanceHeader.Options.UseTextOptions = true;
     this.bandedGridColumn28.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.bandedGridColumn28.Caption = "��·������(%)";
     this.bandedGridColumn28.DisplayFormat.FormatString = "n2";
     this.bandedGridColumn28.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.bandedGridColumn28.FieldName = "K19";
     this.bandedGridColumn28.Name = "bandedGridColumn28";
     this.bandedGridColumn28.Visible = true;
     this.bandedGridColumn28.VisibleIndex = 27;
     //
     // bandedGridColumn29
     //
     this.bandedGridColumn29.AppearanceHeader.Options.UseTextOptions = true;
     this.bandedGridColumn29.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.bandedGridColumn29.FieldName = "S1";
     this.bandedGridColumn29.Name = "bandedGridColumn29";
     this.bandedGridColumn29.Visible = true;
     this.bandedGridColumn29.VisibleIndex = 28;
     //
     // bandedGridColumn30
     //
     this.bandedGridColumn30.AppearanceHeader.Options.UseTextOptions = true;
     this.bandedGridColumn30.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.bandedGridColumn30.FieldName = "S2";
     this.bandedGridColumn30.Name = "bandedGridColumn30";
     this.bandedGridColumn30.Visible = true;
     this.bandedGridColumn30.VisibleIndex = 29;
     //
     // bandedGridColumn31
     //
     this.bandedGridColumn31.AppearanceHeader.Options.UseTextOptions = true;
     this.bandedGridColumn31.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.bandedGridColumn31.FieldName = "S3";
     this.bandedGridColumn31.Name = "bandedGridColumn31";
     this.bandedGridColumn31.Visible = true;
     this.bandedGridColumn31.VisibleIndex = 30;
     //
     // bandedGridColumn32
     //
     this.bandedGridColumn32.AppearanceHeader.Options.UseTextOptions = true;
     this.bandedGridColumn32.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.bandedGridColumn32.FieldName = "S4";
     this.bandedGridColumn32.Name = "bandedGridColumn32";
     this.bandedGridColumn32.Visible = true;
     this.bandedGridColumn32.VisibleIndex = 31;
     //
     // bandedGridColumn33
     //
     this.bandedGridColumn33.AppearanceHeader.Options.UseTextOptions = true;
     this.bandedGridColumn33.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.bandedGridColumn33.FieldName = "S5";
     this.bandedGridColumn33.Name = "bandedGridColumn33";
     this.bandedGridColumn33.Visible = true;
     this.bandedGridColumn33.VisibleIndex = 32;
     //
     // bandedGridColumn34
     //
     this.bandedGridColumn34.AppearanceHeader.Options.UseTextOptions = true;
     this.bandedGridColumn34.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.bandedGridColumn34.FieldName = "S6";
     this.bandedGridColumn34.Name = "bandedGridColumn34";
     this.bandedGridColumn34.Visible = true;
     this.bandedGridColumn34.VisibleIndex = 33;
     //
     // bandedGridColumn35
     //
     this.bandedGridColumn35.AppearanceHeader.Options.UseTextOptions = true;
     this.bandedGridColumn35.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.bandedGridColumn35.FieldName = "S7";
     this.bandedGridColumn35.Name = "bandedGridColumn35";
     this.bandedGridColumn35.Visible = true;
     this.bandedGridColumn35.VisibleIndex = 34;
     //
     // bandedGridColumn36
     //
     this.bandedGridColumn36.AppearanceHeader.Options.UseTextOptions = true;
     this.bandedGridColumn36.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.bandedGridColumn36.FieldName = "S8";
     this.bandedGridColumn36.Name = "bandedGridColumn36";
     this.bandedGridColumn36.Visible = true;
     this.bandedGridColumn36.VisibleIndex = 35;
     //
     // bandedGridColumn37
     //
     this.bandedGridColumn37.AppearanceHeader.Options.UseTextOptions = true;
     this.bandedGridColumn37.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.bandedGridColumn37.FieldName = "S9";
     this.bandedGridColumn37.Name = "bandedGridColumn37";
     this.bandedGridColumn37.Visible = true;
     this.bandedGridColumn37.VisibleIndex = 36;
     //
     // bandedGridColumn38
     //
     this.bandedGridColumn38.AppearanceHeader.Options.UseTextOptions = true;
     this.bandedGridColumn38.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.bandedGridColumn38.FieldName = "S10";
     this.bandedGridColumn38.Name = "bandedGridColumn38";
     this.bandedGridColumn38.Visible = true;
     this.bandedGridColumn38.VisibleIndex = 37;
     //
     // bandedGridView1
     //
     this.bandedGridView1.AppearancePrint.HeaderPanel.Options.UseTextOptions = true;
     this.bandedGridView1.AppearancePrint.HeaderPanel.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.bandedGridView1.Bands.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.GridBand[] {
     this.gridBand1});
     this.bandedGridView1.Columns.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn[] {
     this.bandedGridColumn39,
     this.bandedGridColumn40,
     this.bandedGridColumn41,
     this.bandedGridColumn42,
     this.bandedGridColumn43,
     this.bandedGridColumn44,
     this.bandedGridColumn45,
     this.bandedGridColumn46,
     this.bandedGridColumn47,
     this.bandedGridColumn48,
     this.bandedGridColumn49,
     this.bandedGridColumn50,
     this.bandedGridColumn51,
     this.bandedGridColumn52,
     this.bandedGridColumn53,
     this.bandedGridColumn54,
     this.bandedGridColumn55,
     this.bandedGridColumn56,
     this.bandedGridColumn57,
     this.bandedGridColumn58,
     this.bandedGridColumn59,
     this.bandedGridColumn60,
     this.bandedGridColumn61,
     this.bandedGridColumn62,
     this.bandedGridColumn63,
     this.bandedGridColumn64,
     this.bandedGridColumn65,
     this.bandedGridColumn66,
     this.bandedGridColumn67,
     this.bandedGridColumn68,
     this.bandedGridColumn69,
     this.bandedGridColumn70,
     this.bandedGridColumn71,
     this.bandedGridColumn72,
     this.bandedGridColumn73,
     this.bandedGridColumn74,
     this.bandedGridColumn75,
     this.bandedGridColumn76});
     this.bandedGridView1.GridControl = this.gridControl;
     this.bandedGridView1.GroupPanelText = "��·���";
     this.bandedGridView1.Name = "bandedGridView1";
     this.bandedGridView1.OptionsBehavior.Editable = false;
     this.bandedGridView1.OptionsCustomization.AllowFilter = false;
     this.bandedGridView1.OptionsPrint.UsePrintStyles = true;
     //
     // gridBand1
     //
     this.gridBand1.Caption = "gridBand1";
     this.gridBand1.Columns.Add(this.bandedGridColumn39);
     this.gridBand1.Columns.Add(this.bandedGridColumn40);
     this.gridBand1.Columns.Add(this.bandedGridColumn41);
     this.gridBand1.Columns.Add(this.bandedGridColumn42);
     this.gridBand1.Columns.Add(this.bandedGridColumn43);
     this.gridBand1.Columns.Add(this.bandedGridColumn44);
     this.gridBand1.Columns.Add(this.bandedGridColumn45);
     this.gridBand1.Columns.Add(this.bandedGridColumn46);
     this.gridBand1.Columns.Add(this.bandedGridColumn47);
     this.gridBand1.Columns.Add(this.bandedGridColumn48);
     this.gridBand1.Columns.Add(this.bandedGridColumn49);
     this.gridBand1.Columns.Add(this.bandedGridColumn50);
     this.gridBand1.Columns.Add(this.bandedGridColumn51);
     this.gridBand1.Columns.Add(this.bandedGridColumn52);
     this.gridBand1.Columns.Add(this.bandedGridColumn53);
     this.gridBand1.Columns.Add(this.bandedGridColumn54);
     this.gridBand1.Columns.Add(this.bandedGridColumn55);
     this.gridBand1.Columns.Add(this.bandedGridColumn56);
     this.gridBand1.Columns.Add(this.bandedGridColumn57);
     this.gridBand1.Columns.Add(this.bandedGridColumn58);
     this.gridBand1.Columns.Add(this.bandedGridColumn59);
     this.gridBand1.Columns.Add(this.bandedGridColumn60);
     this.gridBand1.Columns.Add(this.bandedGridColumn61);
     this.gridBand1.Columns.Add(this.bandedGridColumn62);
     this.gridBand1.Columns.Add(this.bandedGridColumn63);
     this.gridBand1.Columns.Add(this.bandedGridColumn64);
     this.gridBand1.Columns.Add(this.bandedGridColumn65);
     this.gridBand1.Columns.Add(this.bandedGridColumn66);
     this.gridBand1.Columns.Add(this.bandedGridColumn67);
     this.gridBand1.Columns.Add(this.bandedGridColumn68);
     this.gridBand1.Columns.Add(this.bandedGridColumn69);
     this.gridBand1.Columns.Add(this.bandedGridColumn70);
     this.gridBand1.Columns.Add(this.bandedGridColumn71);
     this.gridBand1.Columns.Add(this.bandedGridColumn72);
     this.gridBand1.Columns.Add(this.bandedGridColumn73);
     this.gridBand1.Columns.Add(this.bandedGridColumn74);
     this.gridBand1.Columns.Add(this.bandedGridColumn75);
     this.gridBand1.Columns.Add(this.bandedGridColumn76);
     this.gridBand1.Name = "gridBand1";
     this.gridBand1.Width = 2850;
     //
     // bandedGridColumn39
     //
     this.bandedGridColumn39.AppearanceHeader.Options.UseTextOptions = true;
     this.bandedGridColumn39.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.bandedGridColumn39.Caption = "����";
     this.bandedGridColumn39.FieldName = "AreaName";
     this.bandedGridColumn39.Name = "bandedGridColumn39";
     this.bandedGridColumn39.Visible = true;
     //
     // bandedGridColumn40
     //
     this.bandedGridColumn40.AppearanceHeader.Options.UseTextOptions = true;
     this.bandedGridColumn40.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.bandedGridColumn40.Caption = "���վ����";
     this.bandedGridColumn40.FieldName = "SubstationName";
     this.bandedGridColumn40.Name = "bandedGridColumn40";
     this.bandedGridColumn40.Visible = true;
     //
     // bandedGridColumn41
     //
     this.bandedGridColumn41.AppearanceHeader.Options.UseTextOptions = true;
     this.bandedGridColumn41.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.bandedGridColumn41.Caption = "��·����";
     this.bandedGridColumn41.FieldName = "Title";
     this.bandedGridColumn41.Name = "bandedGridColumn41";
     this.bandedGridColumn41.Visible = true;
     //
     // bandedGridColumn42
     //
     this.bandedGridColumn42.AppearanceHeader.Options.UseTextOptions = true;
     this.bandedGridColumn42.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.bandedGridColumn42.Caption = "��ѹ�ȼ�(kV)";
     this.bandedGridColumn42.FieldName = "L1";
     this.bandedGridColumn42.Name = "bandedGridColumn42";
     this.bandedGridColumn42.Visible = true;
     //
     // bandedGridColumn43
     //
     this.bandedGridColumn43.AppearanceHeader.Options.UseTextOptions = true;
     this.bandedGridColumn43.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.bandedGridColumn43.Caption = "�����վ";
     this.bandedGridColumn43.FieldName = "L2";
     this.bandedGridColumn43.Name = "bandedGridColumn43";
     this.bandedGridColumn43.Visible = true;
     //
     // bandedGridColumn44
     //
     this.bandedGridColumn44.AppearanceHeader.Options.UseTextOptions = true;
     this.bandedGridColumn44.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.bandedGridColumn44.Caption = "�յ���վ";
     this.bandedGridColumn44.FieldName = "L3";
     this.bandedGridColumn44.Name = "bandedGridColumn44";
     this.bandedGridColumn44.Visible = true;
     //
     // bandedGridColumn45
     //
     this.bandedGridColumn45.AppearanceHeader.Options.UseTextOptions = true;
     this.bandedGridColumn45.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.bandedGridColumn45.Caption = "�����ͺ�";
     this.bandedGridColumn45.FieldName = "L4";
     this.bandedGridColumn45.Name = "bandedGridColumn45";
     this.bandedGridColumn45.Visible = true;
     //
     // bandedGridColumn46
     //
     this.bandedGridColumn46.AppearanceHeader.Options.UseTextOptions = true;
     this.bandedGridColumn46.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.bandedGridColumn46.Caption = "��·����(km)";
     this.bandedGridColumn46.DisplayFormat.FormatString = "n2";
     this.bandedGridColumn46.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.bandedGridColumn46.FieldName = "L5";
     this.bandedGridColumn46.Name = "bandedGridColumn46";
     this.bandedGridColumn46.Visible = true;
     //
     // bandedGridColumn47
     //
     this.bandedGridColumn47.AppearanceHeader.Options.UseTextOptions = true;
     this.bandedGridColumn47.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.bandedGridColumn47.Caption = "Ͷ��ʱ��";
     this.bandedGridColumn47.DisplayFormat.FormatString = "yyyy-MM-dd";
     this.bandedGridColumn47.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.bandedGridColumn47.FieldName = "L6";
     this.bandedGridColumn47.Name = "bandedGridColumn47";
     this.bandedGridColumn47.Visible = true;
     //
     // bandedGridColumn48
     //
     this.bandedGridColumn48.AppearanceHeader.Options.UseTextOptions = true;
     this.bandedGridColumn48.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.bandedGridColumn48.Caption = "��ѹ�ȼ�(kV)";
     this.bandedGridColumn48.FieldName = "K1";
     this.bandedGridColumn48.Name = "bandedGridColumn48";
     this.bandedGridColumn48.Visible = true;
     //
     // bandedGridColumn49
     //
     this.bandedGridColumn49.AppearanceHeader.Options.UseTextOptions = true;
     this.bandedGridColumn49.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.bandedGridColumn49.Caption = "���ڵ����ͺ�";
     this.bandedGridColumn49.FieldName = "K2";
     this.bandedGridColumn49.Name = "bandedGridColumn49";
     this.bandedGridColumn49.Visible = true;
     //
     // bandedGridColumn50
     //
     this.bandedGridColumn50.AppearanceHeader.Options.UseTextOptions = true;
     this.bandedGridColumn50.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.bandedGridColumn50.Caption = "��·����";
     this.bandedGridColumn50.FieldName = "K3";
     this.bandedGridColumn50.Name = "bandedGridColumn50";
     this.bandedGridColumn50.Visible = true;
     //
     // bandedGridColumn51
     //
     this.bandedGridColumn51.AppearanceHeader.Options.UseTextOptions = true;
     this.bandedGridColumn51.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.bandedGridColumn51.Caption = "�����߳���(km)";
     this.bandedGridColumn51.DisplayFormat.FormatString = "n2";
     this.bandedGridColumn51.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.bandedGridColumn51.FieldName = "K4";
     this.bandedGridColumn51.Name = "bandedGridColumn51";
     this.bandedGridColumn51.Visible = true;
     //
     // bandedGridColumn52
     //
     this.bandedGridColumn52.AppearanceHeader.Options.UseTextOptions = true;
     this.bandedGridColumn52.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.bandedGridColumn52.Caption = "��·�ܳ���(km)";
     this.bandedGridColumn52.DisplayFormat.FormatString = "n2";
     this.bandedGridColumn52.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.bandedGridColumn52.FieldName = "K5";
     this.bandedGridColumn52.Name = "bandedGridColumn52";
     this.bandedGridColumn52.Visible = true;
     //
     // bandedGridColumn53
     //
     this.bandedGridColumn53.AppearanceHeader.Options.UseTextOptions = true;
     this.bandedGridColumn53.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.bandedGridColumn53.Caption = "�����߳�(km)";
     this.bandedGridColumn53.DisplayFormat.FormatString = "n2";
     this.bandedGridColumn53.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.bandedGridColumn53.FieldName = "K6";
     this.bandedGridColumn53.Name = "bandedGridColumn53";
     this.bandedGridColumn53.Visible = true;
     //
     // bandedGridColumn54
     //
     this.bandedGridColumn54.AppearanceHeader.Options.UseTextOptions = true;
     this.bandedGridColumn54.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.bandedGridColumn54.Caption = "�ܿ��߳�(km)";
     this.bandedGridColumn54.DisplayFormat.FormatString = "n2";
     this.bandedGridColumn54.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.bandedGridColumn54.FieldName = "K7";
     this.bandedGridColumn54.Name = "bandedGridColumn54";
     this.bandedGridColumn54.Visible = true;
     //
     // bandedGridColumn55
     //
     this.bandedGridColumn55.AppearanceHeader.Options.UseTextOptions = true;
     this.bandedGridColumn55.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.bandedGridColumn55.Caption = "��ȫ����(A)";
     this.bandedGridColumn55.FieldName = "K8";
     this.bandedGridColumn55.Name = "bandedGridColumn55";
     this.bandedGridColumn55.Visible = true;
     //
     // bandedGridColumn56
     //
     this.bandedGridColumn56.AppearanceHeader.Options.UseTextOptions = true;
     this.bandedGridColumn56.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.bandedGridColumn56.Caption = "����̨��";
     this.bandedGridColumn56.FieldName = "K9";
     this.bandedGridColumn56.Name = "bandedGridColumn56";
     this.bandedGridColumn56.Visible = true;
     //
     // bandedGridColumn57
     //
     this.bandedGridColumn57.AppearanceHeader.Options.UseTextOptions = true;
     this.bandedGridColumn57.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.bandedGridColumn57.Caption = "��������(kVA)";
     this.bandedGridColumn57.FieldName = "K10";
     this.bandedGridColumn57.Name = "bandedGridColumn57";
     this.bandedGridColumn57.Visible = true;
     //
     // bandedGridColumn58
     //
     this.bandedGridColumn58.AppearanceHeader.Options.UseTextOptions = true;
     this.bandedGridColumn58.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.bandedGridColumn58.Caption = "ר��̨��";
     this.bandedGridColumn58.FieldName = "K11";
     this.bandedGridColumn58.Name = "bandedGridColumn58";
     this.bandedGridColumn58.Visible = true;
     //
     // bandedGridColumn59
     //
     this.bandedGridColumn59.AppearanceHeader.Options.UseTextOptions = true;
     this.bandedGridColumn59.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.bandedGridColumn59.Caption = "ר������(kVA)";
     this.bandedGridColumn59.FieldName = "K12";
     this.bandedGridColumn59.Name = "bandedGridColumn59";
     this.bandedGridColumn59.Visible = true;
     //
     // bandedGridColumn60
     //
     this.bandedGridColumn60.AppearanceHeader.Options.UseTextOptions = true;
     this.bandedGridColumn60.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.bandedGridColumn60.Caption = "���������(kVA)";
     this.bandedGridColumn60.FieldName = "K13";
     this.bandedGridColumn60.Name = "bandedGridColumn60";
     this.bandedGridColumn60.Visible = true;
     //
     // bandedGridColumn61
     //
     this.bandedGridColumn61.AppearanceHeader.Options.UseTextOptions = true;
     this.bandedGridColumn61.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.bandedGridColumn61.Caption = "�޹�������̨��(̨)";
     this.bandedGridColumn61.FieldName = "K14";
     this.bandedGridColumn61.Name = "bandedGridColumn61";
     this.bandedGridColumn61.Visible = true;
     //
     // bandedGridColumn62
     //
     this.bandedGridColumn62.AppearanceHeader.Options.UseTextOptions = true;
     this.bandedGridColumn62.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.bandedGridColumn62.Caption = "�޹�����������(Kvar)";
     this.bandedGridColumn62.FieldName = "K15";
     this.bandedGridColumn62.Name = "bandedGridColumn62";
     this.bandedGridColumn62.Visible = true;
     //
     // bandedGridColumn63
     //
     this.bandedGridColumn63.AppearanceHeader.Options.UseTextOptions = true;
     this.bandedGridColumn63.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.bandedGridColumn63.Caption = "������(A)";
     this.bandedGridColumn63.DisplayFormat.FormatString = "n2";
     this.bandedGridColumn63.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.bandedGridColumn63.FieldName = "K16";
     this.bandedGridColumn63.Name = "bandedGridColumn63";
     this.bandedGridColumn63.Visible = true;
     //
     // bandedGridColumn64
     //
     this.bandedGridColumn64.AppearanceHeader.Options.UseTextOptions = true;
     this.bandedGridColumn64.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.bandedGridColumn64.Caption = "��为����(%)";
     this.bandedGridColumn64.DisplayFormat.FormatString = "n2";
     this.bandedGridColumn64.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.bandedGridColumn64.FieldName = "K17";
     this.bandedGridColumn64.Name = "bandedGridColumn64";
     this.bandedGridColumn64.Visible = true;
     //
     // bandedGridColumn65
     //
     this.bandedGridColumn65.AppearanceHeader.Options.UseTextOptions = true;
     this.bandedGridColumn65.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.bandedGridColumn65.Caption = "��λ�߳��������(kVA/km)";
     this.bandedGridColumn65.DisplayFormat.FormatString = "n2";
     this.bandedGridColumn65.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.bandedGridColumn65.FieldName = "K18";
     this.bandedGridColumn65.Name = "bandedGridColumn65";
     this.bandedGridColumn65.Visible = true;
     //
     // bandedGridColumn66
     //
     this.bandedGridColumn66.AppearanceHeader.Options.UseTextOptions = true;
     this.bandedGridColumn66.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.bandedGridColumn66.Caption = "��·������(%)";
     this.bandedGridColumn66.DisplayFormat.FormatString = "n2";
     this.bandedGridColumn66.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.bandedGridColumn66.FieldName = "K19";
     this.bandedGridColumn66.Name = "bandedGridColumn66";
     this.bandedGridColumn66.Visible = true;
     //
     // bandedGridColumn67
     //
     this.bandedGridColumn67.AppearanceHeader.Options.UseTextOptions = true;
     this.bandedGridColumn67.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.bandedGridColumn67.FieldName = "S1";
     this.bandedGridColumn67.Name = "bandedGridColumn67";
     this.bandedGridColumn67.Visible = true;
     //
     // bandedGridColumn68
     //
     this.bandedGridColumn68.AppearanceHeader.Options.UseTextOptions = true;
     this.bandedGridColumn68.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.bandedGridColumn68.FieldName = "S2";
     this.bandedGridColumn68.Name = "bandedGridColumn68";
     this.bandedGridColumn68.Visible = true;
     //
     // bandedGridColumn69
     //
     this.bandedGridColumn69.AppearanceHeader.Options.UseTextOptions = true;
     this.bandedGridColumn69.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.bandedGridColumn69.FieldName = "S3";
     this.bandedGridColumn69.Name = "bandedGridColumn69";
     this.bandedGridColumn69.Visible = true;
     //
     // bandedGridColumn70
     //
     this.bandedGridColumn70.AppearanceHeader.Options.UseTextOptions = true;
     this.bandedGridColumn70.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.bandedGridColumn70.FieldName = "S4";
     this.bandedGridColumn70.Name = "bandedGridColumn70";
     this.bandedGridColumn70.Visible = true;
     //
     // bandedGridColumn71
     //
     this.bandedGridColumn71.AppearanceHeader.Options.UseTextOptions = true;
     this.bandedGridColumn71.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.bandedGridColumn71.FieldName = "S5";
     this.bandedGridColumn71.Name = "bandedGridColumn71";
     this.bandedGridColumn71.Visible = true;
     //
     // bandedGridColumn72
     //
     this.bandedGridColumn72.AppearanceHeader.Options.UseTextOptions = true;
     this.bandedGridColumn72.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.bandedGridColumn72.FieldName = "S6";
     this.bandedGridColumn72.Name = "bandedGridColumn72";
     this.bandedGridColumn72.Visible = true;
     //
     // bandedGridColumn73
     //
     this.bandedGridColumn73.AppearanceHeader.Options.UseTextOptions = true;
     this.bandedGridColumn73.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.bandedGridColumn73.FieldName = "S7";
     this.bandedGridColumn73.Name = "bandedGridColumn73";
     this.bandedGridColumn73.Visible = true;
     //
     // bandedGridColumn74
     //
     this.bandedGridColumn74.AppearanceHeader.Options.UseTextOptions = true;
     this.bandedGridColumn74.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.bandedGridColumn74.FieldName = "S8";
     this.bandedGridColumn74.Name = "bandedGridColumn74";
     this.bandedGridColumn74.Visible = true;
     //
     // bandedGridColumn75
     //
     this.bandedGridColumn75.AppearanceHeader.Options.UseTextOptions = true;
     this.bandedGridColumn75.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.bandedGridColumn75.FieldName = "S9";
     this.bandedGridColumn75.Name = "bandedGridColumn75";
     this.bandedGridColumn75.Visible = true;
     //
     // bandedGridColumn76
     //
     this.bandedGridColumn76.AppearanceHeader.Options.UseTextOptions = true;
     this.bandedGridColumn76.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.bandedGridColumn76.FieldName = "S10";
     this.bandedGridColumn76.Name = "bandedGridColumn76";
     this.bandedGridColumn76.Visible = true;
     //
     // CtrlLine_Info
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.gridControl);
     this.Name = "CtrlLine_Info";
     this.Size = new System.Drawing.Size(712, 387);
     ((System.ComponentModel.ISupportInitialize)(this.gridControl)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.bandedGridView2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.bandedGridView1)).EndInit();
     this.ResumeLayout(false);
 }
コード例 #41
0
ファイル: FrmResultPrint.cs プロジェクト: github188/myitoppsp
        private void Form1Print_Load(object sender, EventArgs e)
        {
            if (!isselect)
            {
                barButtonItem4.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
            }


            DataTable dt1 = new DataTable();

            dt1.Columns.Add("Title");
            dt1.Columns.Add("Title1");

            foreach (DataColumn dc in GridDataTable.Columns)
            {
                if (dc.ColumnName.IndexOf("年") > 0)
                {
                    dt1.Columns.Add(dc.ColumnName, typeof(double));
                }
            }


            string title1 = "";
            string first  = "";

            foreach (DataRow row1 in GridDataTable.Rows)
            {
                try
                {
                    if (row1["Title"].ToString().Substring(0, 2) != "  ")
                    {
                        title1 = row1["Title"].ToString();
                        continue;
                    }
                }
                catch
                {
                    title1 = row1["Title"].ToString();
                    continue;
                }

                DataRow row = dt1.NewRow();
                if (first == title1)
                {
                    row["Title"] = "";
                }
                else
                {
                    row["Title"] = title1;
                    first        = title1;
                }
                row["Title1"] = row1["Title"].ToString().Replace(" ", "");
                foreach (DataColumn dc in GridDataTable.Columns)
                {
                    if (dc.ColumnName.IndexOf("年") > 0)
                    {
                        if (row1[dc.ColumnName] == null || row1[dc.ColumnName] == DBNull.Value)
                        {
                            row[dc.ColumnName] = 0;
                        }
                        else
                        {
                            row[dc.ColumnName] = Convert.ToDouble(row1[dc.ColumnName].ToString());
                        }
                    }
                }
                dt1.Rows.Add(row);
            }

            if (isband)
            {
                foreach (ChoosedYears year in yearList)
                {
                    DevExpress.XtraGrid.Views.BandedGrid.GridBand band = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
                    band.Caption = year.Year.ToString() + "年";
                    band.Name    = "gridBand" + year.Year.ToString();
                    band.AppearanceHeader.Options.UseTextOptions = true;
                    band.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;

                    DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn gridColumn = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
                    gridColumn.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
                    gridColumn.Caption   = "丰";
                    gridColumn.FieldName = year.Year.ToString() + "年丰";
                    gridColumn.Name      = "Column" + year.Year.ToString();
                    gridColumn.Visible   = true;
                    gridColumn.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
                    gridColumn.Width        = 50;
                    gridColumn.VisibleIndex = year.Year;

                    DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn gridColumn1 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
                    gridColumn1.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
                    gridColumn1.Caption   = "枯";
                    gridColumn1.FieldName = year.Year.ToString() + "年枯";
                    gridColumn1.Name      = "Column" + year.Year.ToString();
                    gridColumn1.Visible   = true;
                    gridColumn1.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
                    gridColumn1.Width        = 50;
                    gridColumn1.VisibleIndex = year.Year;
                    band.Columns.Add(gridColumn);
                    band.Columns.Add(gridColumn1);
                    this.bandedGridView1.Bands.Add(band);
                    this.bandedGridView1.Columns.Add(gridColumn);
                    this.bandedGridView1.Columns.Add(gridColumn1);
                }
                gridControl1.DataSource = dt1;
            }
            else if (btzgs)
            {
                bandedGridView1.Columns[0].FieldName = "FromID";
                bandedGridView1.Columns[0].Caption   = "序号";
                bandedGridView1.Columns[0].Width     = 50;
                bandedGridView1.Columns[1].FieldName = "Title";

                DevExpress.XtraGrid.Views.BandedGrid.GridBand         bandd       = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
                DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn gridColumn2 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
                gridColumn2.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
                gridColumn2.Caption   = "开工年限";
                gridColumn2.FieldName = "BuildYear";
                gridColumn2.Name      = "BuildYear";
                gridColumn2.Visible   = true;
                gridColumn2.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
                gridColumn2.Width        = 100;
                gridColumn2.VisibleIndex = 2;
                bandd.Columns.Add(gridColumn2);

                DevExpress.XtraGrid.Views.BandedGrid.GridBand         bande       = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
                DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn gridColumn3 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
                gridColumn3.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
                gridColumn3.Caption   = "竣工年限";
                gridColumn3.FieldName = "BuildEd";
                gridColumn3.Name      = "BuildEd";
                gridColumn3.Visible   = true;
                gridColumn3.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
                gridColumn3.Width        = 100;
                gridColumn3.VisibleIndex = 3;
                bande.Columns.Add(gridColumn3);

                DevExpress.XtraGrid.Views.BandedGrid.GridBand band = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
                band.Caption = "建设规模";
                band.Name    = "gridBandG";
                band.AppearanceHeader.Options.UseTextOptions = true;
                band.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;

                DevExpress.XtraGrid.Views.BandedGrid.GridBand bande14 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();

                DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn gridColumn14 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
                gridColumn14.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
                gridColumn14.Caption   = "建设性质";
                gridColumn14.FieldName = "Col3";
                gridColumn14.Name      = "Col3";
                gridColumn14.Visible   = true;
                gridColumn14.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
                gridColumn14.Width        = 100;
                gridColumn14.VisibleIndex = 1;
                bande14.Columns.Add(gridColumn14);



                DevExpress.XtraGrid.Views.BandedGrid.GridBand         bande15      = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
                DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn gridColumn15 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
                gridColumn15.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
                gridColumn15.Caption   = "导线型号";
                gridColumn15.FieldName = "Linetyp";
                gridColumn15.Name      = "Linetyp";
                gridColumn15.Visible   = true;
                gridColumn15.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
                gridColumn15.Width        = 100;
                gridColumn15.VisibleIndex = 2;
                bande15.Columns.Add(gridColumn15);

                DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn gridColumn = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
                gridColumn.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
                gridColumn.Caption   = "长度";
                gridColumn.FieldName = "Length";
                gridColumn.Name      = "Length";
                gridColumn.Visible   = true;
                gridColumn.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
                gridColumn.Width        = 100;
                gridColumn.VisibleIndex = 4;

                DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn gridColumn1 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
                gridColumn1.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
                gridColumn1.Caption   = "容量";
                gridColumn1.FieldName = "Volumn";
                gridColumn1.Name      = "Volumn";
                gridColumn1.Visible   = true;
                gridColumn1.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
                gridColumn1.Width        = 100;
                gridColumn1.VisibleIndex = 4;
                DevExpress.XtraGrid.Views.BandedGrid.GridBand         band4       = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
                DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn gridColumn4 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
                gridColumn4.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
                gridColumn4.Caption   = "总投资";
                gridColumn4.FieldName = "AllVolumn";
                gridColumn4.Name      = "AllVolumn";
                gridColumn4.DisplayFormat.FormatString = " #####################0.##";
                gridColumn4.DisplayFormat.FormatType   = DevExpress.Utils.FormatType.Numeric;
                gridColumn4.Visible = true;
                gridColumn4.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
                gridColumn4.Width        = 80;
                gridColumn4.VisibleIndex = 5;
                band4.Columns.Add(gridColumn4);
                band4.Columns["AllVolumn"].DisplayFormat.FormatString = " #####################0.##";

                DevExpress.XtraGrid.Views.BandedGrid.GridBand         band5       = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
                DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn gridColumn5 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
                gridColumn5.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
                gridColumn5.Caption   = Convert.ToString(int.Parse(yearList1[0]) - 1) + "年底前投资";
                gridColumn5.FieldName = "BefVolumn";
                gridColumn5.Name      = "BefVolumn";
                gridColumn5.DisplayFormat.FormatString = " #####################0.##";
                gridColumn5.DisplayFormat.FormatType   = DevExpress.Utils.FormatType.Numeric;
                gridColumn5.Visible = true;
                gridColumn5.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
                gridColumn5.Width        = 150;
                gridColumn5.VisibleIndex = 6;
                band5.Columns.Add(gridColumn5);

                DevExpress.XtraGrid.Views.BandedGrid.GridBand band1 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
                band1.Caption = bBuild?"":yearList1[0] + "年~" + yearList1[4] + "年投资";
                band1.Name    = "gridBandA";
                band1.AppearanceHeader.Options.UseTextOptions = true;
                band1.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;

                DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn gridColumny = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
                gridColumny.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
                gridColumny.Caption   = "合计";
                gridColumny.FieldName = "AftVolumn";
                gridColumny.Name      = "AftVolumn";
                gridColumny.DisplayFormat.FormatString = " #####################0.##";
                gridColumny.DisplayFormat.FormatType   = DevExpress.Utils.FormatType.Numeric;
                gridColumny.Visible = true;
                gridColumny.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
                gridColumny.Width        = 80;
                gridColumny.VisibleIndex = 7;
                if (!bBuild)
                {
                    band1.Columns.Add(gridColumny);
                }
                foreach (string y in yearList1)
                {
                    DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn gridColumnx = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
                    gridColumnx.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
                    gridColumnx.Caption   = y + "年";
                    gridColumnx.FieldName = "y" + y;
                    gridColumnx.Name      = "y" + y;
                    gridColumnx.Visible   = true;
                    gridColumnx.DisplayFormat.FormatString = " #####################0.##";
                    gridColumnx.DisplayFormat.FormatType   = DevExpress.Utils.FormatType.Numeric;
                    gridColumnx.OptionsColumn.AllowMerge   = DevExpress.Utils.DefaultBoolean.False;
                    gridColumnx.Width        = 80;
                    gridColumnx.VisibleIndex = int.Parse(y);
                    band1.Columns.Add(gridColumnx);
                    this.bandedGridView1.Columns.Add(gridColumnx);
                }

                DevExpress.XtraGrid.Views.BandedGrid.GridBand         band7       = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
                DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn gridColumn7 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
                gridColumn7.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
                gridColumn7.Caption   = "备注";
                gridColumn7.FieldName = "Col1";
                gridColumn7.Name      = "Col1";
                gridColumn7.Visible   = true;
                gridColumn7.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
                gridColumn7.Width        = 150;
                gridColumn7.VisibleIndex = 8;
                band7.Columns.Add(gridColumn7);
                //if(!Line)
                //    band.Columns.Add(gridColumn);
                //else
                //    band.Columns.Add(gridColumn1);

                if (!Line)
                {
                    band.Columns.Add(gridColumn);
                    band.Columns.Add(gridColumn1);
                }
                this.bandedGridView1.Bands.Add(bandd);
                this.bandedGridView1.Bands.Add(bande);
                if (!bBuild)
                {
                    //this.bandedGridView1.Bands.Add(band);
                    if (!bBuild)
                    {
                        this.bandedGridView1.Bands.Add(band4);
                        this.bandedGridView1.Bands.Add(band5);
                    }
                    else
                    {
                        this.bandedGridView1.Bands.Add(bande14);
                        if (!Line)
                        {
                            this.bandedGridView1.Bands.Add(bande15);
                        }
                    }
                }
                this.bandedGridView1.Bands.Add(band1);
                this.bandedGridView1.Bands.Add(band7);
                this.bandedGridView1.Columns.Add(gridColumn);
                this.bandedGridView1.Columns.Add(gridColumn1);
                this.bandedGridView1.Columns.Add(gridColumn2);
                this.bandedGridView1.Columns.Add(gridColumn3);
                this.bandedGridView1.Columns.Add(gridColumn4);
                this.bandedGridView1.Columns.Add(gridColumn5);
                this.bandedGridView1.Columns.Add(gridColumn14);
                this.bandedGridView1.Columns.Add(gridColumn15);

                this.bandedGridView1.Columns.Add(gridColumn7);
                this.bandedGridView1.Columns.Add(gridColumny);
                gridControl1.DataSource = gridDataTable;
            }
            else
            {
                int numi = 0;

                //DevExpress.XtraGrid.Views.BandedGrid.GridBand[] gridBandDate = new DevExpress.XtraGrid.Views.BandedGrid.GridBand[listCount * 2];
                // DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn[] gridColumn = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn[listCount * 2];
                foreach (DataColumn dc in GridDataTable.Columns)
                {
                    if (dc.ColumnName.IndexOf("年") > 0)
                    {
                        //DevExpress.XtraGrid.Views.BandedGrid.GridBand gbi = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
                        //gbi.Caption = dc.ColumnName.Replace("年", "");
                        //gbi.Name = dc.ColumnName;
                        //gbi.Width = 75;
                        //gbi.AppearanceHeader.Options.UseTextOptions = true;
                        //gbi.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
                        //gridBand7.Children.Add(gbi);
                        DevExpress.XtraGrid.Views.BandedGrid.GridBand band = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();

                        DevExpress.XtraGrid.Columns.GridColumn gridColumn = new DevExpress.XtraGrid.Columns.GridColumn();
                        gridColumn.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
                        gridColumn.Caption   = dc.ColumnName;
                        gridColumn.FieldName = "yf";
                        gridColumn.Name      = "Column" + dc.ColumnName;
                        gridColumn.Visible   = true;
                        gridColumn.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
                        gridColumn.Width = 89;
                        //gridColumn.DisplayFormat.FormatString = " #####################0.##";
                        //gridColumn.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
                        //this.gridView1.Columns.Add(gridColumn);

                        gridColumn.VisibleIndex = 100;
                        this.bandedGridView1.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] { gridColumn });



                        //gbi.Columns.Add(gridColumn);
                    }

                    gridControl1.DataSource = GridDataTable;
                }
            }

            this.bandedGridView1.GroupPanelText = this.Text;
            this.bandedGridView1.OptionsView.ColumnAutoWidth = false;
        }
コード例 #42
0
ファイル: TeacherOnDutyInfo.cs プロジェクト: zesus19/c4.v2
		/// <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);

		}
コード例 #43
0
        private void FrmBurdenLineType_Load(object sender, EventArgs e)
        {
            if (!printManage)
            {
                barButtonItem1.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
                barButtonItem2.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;

            }

            if (!isselect)
            {
                barButtonItem4.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;

            }

            try
            {
                chart1.Series.Clear();
                //DataTable dataTable = new DataTable();
                IList<BurdenLineForecast> list = Services.BaseService.GetStrongList<BurdenLineForecast>();

                foreach (BurdenLineForecast bf in list)
                {
                    foreach (DataRow rw in dts.Rows)
                    {
                        if (bf.BurdenYear == int.Parse(rw["A"].ToString()) && (bool)rw["B"])
                            bf.UID = "A";
                    }
                }

                dt.Rows.Clear();

                dt = Itop.Common.DataConverter.ToDataTable((IList)list, typeof(BurdenLineForecast));

                int date1 = 0;//(int)list[0].BurdenYear;
                int date2 = 0;// (int)list[list.Count - 1].BurdenYear;

                int ss=1;
                foreach (BurdenLineForecast bf in list)
                {
                    if (bf.UID == "A")
                    {
                        if(ss<2)
                        date1 = (int)bf.BurdenYear;
                        date2 = (int)bf.BurdenYear;
                        ss++;
                    }
                }
                this.bandedGridView1.GroupPanelText = "������" + date1.ToString() + "��/" + date2.ToString() + "�궬�ĵ����ո�������Ԥ���";
                ////if (list.Count > 0)
                ////{
                ////    int date1 = (int)list[0].BurdenYear;
                ////    int date2 = (int)list[list.Count - 1].BurdenYear;

                ////    this.bandedGridView1.GroupPanelText = "������" + date1.ToString() + "��/" + date2.ToString() + "�궬�ĵ����ո�������Ԥ���";
                ////}

                int numi = 0;
                int numj = 0;
                int numk = 0;
                int listCount = list.Count;
                this.bandedGridView1.Bands.Clear();
                bandedGridView1.Columns.Clear();

                DevExpress.XtraGrid.Views.BandedGrid.GridBand gridBands1 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
                gridBands1.Caption = "  ";
                gridBands1.Name = "gridBands1";
                gridBands1.Width = 150;
                gridBands1.AppearanceHeader.Options.UseTextOptions = true;
                gridBands1.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
                this.bandedGridView1.Bands.Add(gridBands1);

                //DevExpress.XtraGrid.Views.BandedGrid.GridBand gridBands2 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
                //gridBands2.Caption = "   ";
                //gridBands2.Name = "gridBands2";
                //gridBands2.AppearanceHeader.Options.UseTextOptions = true;
                //gridBands2.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
                //gridBands1.Children.Add(gridBands2);

                DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn gridColumns1 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
                gridColumns1.Caption = "";
                gridColumns1.FieldName = "YearBanded";
                gridColumns1.Name = "Year";
                gridColumns1.Visible = true;
                gridColumns1.Width = 150;
                gridColumns1.AppearanceCell.Options.UseTextOptions = true;
                gridColumns1.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
                bandedGridView1.Columns.Add(gridColumns1);
                gridBands1.Columns.Add(gridColumns1);
                dataTable.Columns.Add("YearBanded", typeof(string));

                DevExpress.XtraGrid.Views.BandedGrid.GridBand[] gridBand = new DevExpress.XtraGrid.Views.BandedGrid.GridBand[listCount];
                DevExpress.XtraGrid.Views.BandedGrid.GridBand[] gridBandDate = new DevExpress.XtraGrid.Views.BandedGrid.GridBand[listCount*2];
                DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn[] gridColumn = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn[listCount * 2];

                foreach (BurdenLineForecast bl in list)
                {
                    if (bl.UID != "A")
                        continue;

                    string blyear = bl.BurdenYear.ToString();

                    gridBand[numi] = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
                    gridBand[numi].Caption = blyear + "����͸�����";
                    gridBand[numi].Name = "gridBand" + blyear;
                    gridBand[numi].AppearanceHeader.Options.UseTextOptions = true;
                    gridBand[numi].AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
                    this.bandedGridView1.Bands.Add(gridBand[numi]);

                    gridBandDate[numj] = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
                    gridBandDate[numj].Caption = "�ļ�";
                    gridBandDate[numj].Name = "gridBandDateHour" + blyear;
                    gridBandDate[numj].AppearanceHeader.Options.UseTextOptions = true;
                    gridBandDate[numj].AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
                    gridBand[numi].Children.Add(gridBandDate[numj]);

                    gridColumn[numk] = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
                    gridColumn[numk].Caption = "Month" + blyear;
                    gridColumn[numk].FieldName = "Month" + blyear;
                    gridColumn[numk].Name = "Month" + blyear;
                    gridColumn[numk].Visible = true;
                    gridColumn[numk].DisplayFormat.FormatString = "n2";
                    gridColumn[numk].DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
                    dataTable.Columns.Add("Month" + blyear, typeof(double));
                    bandedGridView1.Columns.Add(gridColumn[numk]);
                    gridBandDate[numj].Columns.Add(gridColumn[numk]);

                    numj++;
                    numk++;

                    gridBandDate[numj] = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
                    gridBandDate[numj].Caption = "����";
                    gridBandDate[numj].Name = "gridBandDate" + blyear;
                    gridBandDate[numj].AppearanceHeader.Options.UseTextOptions = true;
                    gridBandDate[numj].AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
                    gridBand[numi].Children.Add(gridBandDate[numj]);

                    gridColumn[numk] = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
                    gridColumn[numk].Caption = "Day" + blyear;
                    gridColumn[numk].FieldName = "Day" + blyear;
                    gridColumn[numk].Name = "Day" + blyear;
                    gridColumn[numk].Visible = true;
                    gridColumn[numk].DisplayFormat.FormatString = "n2";
                    gridColumn[numk].DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
                    dataTable.Columns.Add("Day" + blyear, typeof(double));

                    bandedGridView1.Columns.Add(gridColumn[numk]);
                    gridBandDate[numj].Columns.Add(gridColumn[numk]);

                    numi++;
                    numj++;
                    numk++;
                }

                DataRow row1 = dataTable.NewRow();
                foreach (DataColumn column in dataTable.Columns)
                {
                    if (column.ColumnName == "YearBanded")
                        row1[column] = "Tmax";

                    foreach (BurdenLineForecast bl in list)
                    {
                        if (bl.UID != "A")
                            continue;

                        PropertyInfo pi = bl.GetType().GetProperty("SummerData");
                        if (pi.GetValue(bl, null) != null)
                        {
                            row1["Month" + bl.BurdenYear.ToString()] = (double)pi.GetValue(bl, null);
                        }

                        pi = bl.GetType().GetProperty("WinterData");
                        if (pi.GetValue(bl, null) != null)
                        {
                            row1["Day" + bl.BurdenYear.ToString()] = (double)pi.GetValue(bl, null);
                        }
                    }

                }
                dataTable.Rows.Add(row1);

                row1 = dataTable.NewRow();
                foreach (DataColumn column in dataTable.Columns)
                {
                    if (column.ColumnName == "YearBanded")
                        row1[column] = "ƽ��������(%)";

                    foreach (BurdenLineForecast bl in list)
                    {
                        if (bl.UID != "A")
                            continue;

                        PropertyInfo pi = bl.GetType().GetProperty("SummerDayAverage");
                        if (pi.GetValue(bl, null) != null)
                        {
                            row1["Month" + bl.BurdenYear.ToString()] = (double)pi.GetValue(bl, null) ;
                        }

                        pi = bl.GetType().GetProperty("WinterDayAverage");
                        if (pi.GetValue(bl, null) != null)
                        {
                            row1["Day" + bl.BurdenYear.ToString()] = (double)pi.GetValue(bl, null) ;
                        }
                    }
                }
                dataTable.Rows.Add(row1);

                row1 = dataTable.NewRow();
                foreach (DataColumn column in dataTable.Columns)
                {
                    if (column.ColumnName == "YearBanded")
                        row1[column] = "��������(%)";

                    foreach (BurdenLineForecast bl in list)
                    {
                        if (bl.UID != "A")
                            continue;

                        PropertyInfo pi = bl.GetType().GetProperty("SummerMinAverage");
                        if (pi.GetValue(bl, null) != null)
                        {
                            row1["Month" + bl.BurdenYear.ToString()] = (double)pi.GetValue(bl, null) ;
                        }

                        pi = bl.GetType().GetProperty("WinterMinAverage");
                        if (pi.GetValue(bl, null) != null)
                        {
                            row1["Day" + bl.BurdenYear.ToString()] = (double)pi.GetValue(bl, null) ;
                        }
                    }
                }
                dataTable.Rows.Add(row1);

                foreach (DataRow row in dt.Rows)
                {
                    if (row["UID"].ToString() != "A")
                        continue;
                    string seriesName = "";
                    try
                    {
                        seriesName = row["BurdenYear"].ToString()+"��";
                    }
                    catch { }
                    chart1.Series.Add(seriesName);
                    chart1.Series[seriesName].Type = SeriesChartType.Line;
                    chart1.Series[seriesName].BorderWidth = 2;

                    for (int colIndex = 2; colIndex < 6; colIndex++)
                    {
                        string columnName = dt.Columns[colIndex].ColumnName;
                        double YVal = (double)row[columnName];

                        chart1.Series[seriesName].Points.AddXY(GetText(columnName), YVal);

                    }
                }

                gridControl1.DataSource = dataTable;
                this.bandedGridView1.OptionsView.ShowColumnHeaders = false;

            }
            catch (Exception ex) { Itop.Common.MsgBox.Show(ex.Message); }
        }
コード例 #44
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 protected void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmPostMasterSearchQL));
     this.barManager1 = new DevExpress.XtraBars.BarManager(this.components);
     this.MainBar = new DevExpress.XtraBars.Bar();
     this.barButtonItemAdd = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItemXem = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItemDelete = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItemUpdate = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItemPrint = new DevExpress.XtraBars.BarButtonItem();
     this.popupMenu1 = new DevExpress.XtraBars.PopupMenu(this.components);
     this.barButtonItem4 = new DevExpress.XtraBars.BarButtonItem();
     this.barSubItemInNhan = new DevExpress.XtraBars.BarSubItem();
     this.barButtonItemInBeatcamTrong = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItemInBeatacamNgoai = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItemCommit = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItemNoCommit = new DevExpress.XtraBars.BarButtonItem();
     this.barSubItem1 = new DevExpress.XtraBars.BarSubItem();
     this.barButtonItemSearch = new DevExpress.XtraBars.BarButtonItem();
     this.popupMenuFilter = new DevExpress.XtraBars.PopupMenu(this.components);
     this.barCheckItemFilter = new DevExpress.XtraBars.BarCheckItem();
     this.barCheckItemNangCao = new DevExpress.XtraBars.BarCheckItem();
     this.barCheckItemDonGian = new DevExpress.XtraBars.BarCheckItem();
     this.barButtonItemClose = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItemThongKe = new DevExpress.XtraBars.BarButtonItem();
     this.barSubItemCotHienThi = new DevExpress.XtraBars.BarSubItem();
     this.barDockControlTop = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlBottom = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlLeft = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlRight = new DevExpress.XtraBars.BarDockControl();
     this.dockManager1 = new DevExpress.XtraBars.Docking.DockManager(this.components);
     this.dockPanelAdvance = new DevExpress.XtraBars.Docking.DockPanel();
     this.controlContainer1 = new DevExpress.XtraBars.Docking.ControlContainer();
     this.filterControl1 = new DevExpress.XtraEditors.FilterControl();
     this.dockPanelSimple = new DevExpress.XtraBars.Docking.DockPanel();
     this.dockPanel1_Container = new DevExpress.XtraBars.Docking.ControlContainer();
     this.popupControlContainerFilter = new DevExpress.XtraBars.PopupControlContainer(this.components);
     this.TenTap = new ProtocolVN.App.VideoLibrary.PLTextEditAutocomplete();
     this.plLabel5 = new DevExpress.XtraEditors.LabelControl();
     this.TapSoDen = new DevExpress.XtraEditors.SpinEdit();
     this.TapSoTu = new DevExpress.XtraEditors.SpinEdit();
     this.plLabel15 = new DevExpress.XtraEditors.LabelControl();
     this.plLabel12 = new DevExpress.XtraEditors.LabelControl();
     this.plLabel3 = new DevExpress.XtraEditors.LabelControl();
     this.SoDKCBHD = new ProtocolVN.Framework.Win.PLMultiCombobox();
     this.PhongBan = new ProtocolVN.Framework.Win.PLDMTreeMultiChoice();
     this.NguoiNhap = new ProtocolVN.Framework.Win.PLMultiCombobox();
     this.ngayNhap = new ProtocolVN.Framework.Win.Trial.PLDateSelection();
     this.MaCT = new DevExpress.XtraEditors.TextEdit();
     this.NoiDung = new ProtocolVN.App.VideoLibrary.PLTextEditAutocomplete();
     this.LoaiLuuTru = new ProtocolVN.Framework.Win.PLMultiCombobox();
     this.PostMaster = new ProtocolVN.Framework.Win.PLMultiCombobox();
     this.TietMuc = new ProtocolVN.Framework.Win.PLMultiCombobox();
     this.plLabel2 = new DevExpress.XtraEditors.LabelControl();
     this.label10 = new DevExpress.XtraEditors.LabelControl();
     this.label1 = new DevExpress.XtraEditors.LabelControl();
     this.plLabel4 = new DevExpress.XtraEditors.LabelControl();
     this.plLabel1 = new DevExpress.XtraEditors.LabelControl();
     this.label29 = new DevExpress.XtraEditors.LabelControl();
     this.label3 = new DevExpress.XtraEditors.LabelControl();
     this.label5 = new DevExpress.XtraEditors.LabelControl();
     this.barStaticItem1 = new DevExpress.XtraBars.BarStaticItem();
     this.barButtonItem1 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem2 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem3 = new DevExpress.XtraBars.BarButtonItem();
     this.splitContainerControl1 = new DevExpress.XtraEditors.SplitContainerControl();
     this.groupControlPM = new DevExpress.XtraEditors.GroupControl();
     this.gridControlMaster = new DevExpress.XtraGrid.GridControl();
     this.gridViewMaster = new DevExpress.XtraGrid.Views.BandedGrid.PLBandedGridView();
     this.Col_PM_Category = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_PM_MaChuongTrinh = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_PM_TenChuongTrinh = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_PM_TietMuc = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_PM_PostMaster = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_PM_TongTap = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_PM_LoaiLuu = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_PM_PopUp = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_PM_ThoiLuongChung = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_PM_TTDinhKem = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_PM_ThanhLy = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_PM_NgayNhapKho = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_PM_Ke = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_PM_Ngan = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_PM_Tang = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_PM_TTHD = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_PM_DVDNgayDuyet = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_PM_DVDNgayHoanTat = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.xtraTabControlDetail = new DevExpress.XtraTab.XtraTabControl();
     this.xtraTabPageDetail = new DevExpress.XtraTab.XtraTabPage();
     this.gridControlDetail = new DevExpress.XtraGrid.GridControl();
     this.gridViewDetail = new DevExpress.XtraGrid.Views.Grid.PLGridView();
     this.Col_BM_ThanhLy = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Col_BM_MaBang = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Col_BM_TapSo = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Col_BM_TenTap = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Col_BM_SoBang = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Col_BM_ThongSo = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Col_BM_ThoiLuong = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Col_BM_SoDKCBHD = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Col_BM_NoiLuuTru = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Col_PM_TienDo = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridBandChuongTrinh = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.gridBandPostMaster = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     ((System.ComponentModel.ISupportInitialize)(this.barManager1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.popupMenu1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.popupMenuFilter)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dockManager1)).BeginInit();
     this.dockPanelAdvance.SuspendLayout();
     this.controlContainer1.SuspendLayout();
     this.dockPanelSimple.SuspendLayout();
     this.dockPanel1_Container.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.popupControlContainerFilter)).BeginInit();
     this.popupControlContainerFilter.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.TenTap.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TapSoDen.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TapSoTu.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.SoDKCBHD.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.NguoiNhap.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.MaCT.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.NoiDung.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.LoaiLuuTru.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.PostMaster.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TietMuc.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl1)).BeginInit();
     this.splitContainerControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControlPM)).BeginInit();
     this.groupControlPM.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMaster)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMaster)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControlDetail)).BeginInit();
     this.xtraTabControlDetail.SuspendLayout();
     this.xtraTabPageDetail.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlDetail)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewDetail)).BeginInit();
     this.SuspendLayout();
     //
     // barManager1
     //
     this.barManager1.Bars.AddRange(new DevExpress.XtraBars.Bar[] {
     this.MainBar});
     this.barManager1.DockControls.Add(this.barDockControlTop);
     this.barManager1.DockControls.Add(this.barDockControlBottom);
     this.barManager1.DockControls.Add(this.barDockControlLeft);
     this.barManager1.DockControls.Add(this.barDockControlRight);
     this.barManager1.DockManager = this.dockManager1;
     this.barManager1.Form = this;
     this.barManager1.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
     this.barButtonItemAdd,
     this.barButtonItemDelete,
     this.barButtonItemUpdate,
     this.barButtonItemPrint,
     this.barStaticItem1,
     this.barButtonItem1,
     this.barButtonItem2,
     this.barButtonItemCommit,
     this.barButtonItemNoCommit,
     this.barSubItem1,
     this.barButtonItemXem,
     this.barButtonItemSearch,
     this.barButtonItemClose,
     this.barCheckItemFilter,
     this.barButtonItem3,
     this.barButtonItem4,
     this.barSubItemCotHienThi,
     this.barSubItemInNhan,
     this.barButtonItemInBeatcamTrong,
     this.barButtonItemInBeatacamNgoai,
     this.barCheckItemNangCao,
     this.barCheckItemDonGian,
     this.barButtonItemThongKe});
     this.barManager1.MaxItemId = 43;
     //
     // MainBar
     //
     this.MainBar.BarName = "MainBar";
     this.MainBar.DockCol = 0;
     this.MainBar.DockRow = 0;
     this.MainBar.DockStyle = DevExpress.XtraBars.BarDockStyle.Top;
     this.MainBar.FloatLocation = new System.Drawing.Point(39, 133);
     this.MainBar.FloatSize = new System.Drawing.Size(72, 73);
     this.MainBar.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemAdd),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemXem),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemDelete),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemUpdate),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemPrint, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.barSubItemInNhan),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemCommit, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemNoCommit),
     new DevExpress.XtraBars.LinkPersistInfo(this.barSubItem1, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemSearch, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemClose, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemThongKe, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.barSubItemCotHienThi)});
     this.MainBar.OptionsBar.AllowQuickCustomization = false;
     this.MainBar.OptionsBar.DrawDragBorder = false;
     this.MainBar.OptionsBar.RotateWhenVertical = false;
     this.MainBar.OptionsBar.UseWholeRow = true;
     this.MainBar.Text = "Custom 1";
     //
     // barButtonItemAdd
     //
     this.barButtonItemAdd.Caption = "Thêm";
     this.barButtonItemAdd.Id = 0;
     this.barButtonItemAdd.Name = "barButtonItemAdd";
     this.barButtonItemAdd.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // barButtonItemXem
     //
     this.barButtonItemXem.Caption = "&Xem";
     this.barButtonItemXem.Id = 24;
     this.barButtonItemXem.Name = "barButtonItemXem";
     this.barButtonItemXem.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // barButtonItemDelete
     //
     this.barButtonItemDelete.Caption = "&Xóa";
     this.barButtonItemDelete.Id = 1;
     this.barButtonItemDelete.Name = "barButtonItemDelete";
     this.barButtonItemDelete.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // barButtonItemUpdate
     //
     this.barButtonItemUpdate.Caption = "&Sửa";
     this.barButtonItemUpdate.Id = 2;
     this.barButtonItemUpdate.Name = "barButtonItemUpdate";
     this.barButtonItemUpdate.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // barButtonItemPrint
     //
     this.barButtonItemPrint.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown;
     this.barButtonItemPrint.Caption = "&In";
     this.barButtonItemPrint.DropDownControl = this.popupMenu1;
     this.barButtonItemPrint.Id = 3;
     this.barButtonItemPrint.Name = "barButtonItemPrint";
     this.barButtonItemPrint.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // popupMenu1
     //
     this.popupMenu1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem4)});
     this.popupMenu1.Manager = this.barManager1;
     this.popupMenu1.Name = "popupMenu1";
     //
     // barButtonItem4
     //
     this.barButtonItem4.Caption = "Xem trước";
     this.barButtonItem4.Id = 33;
     this.barButtonItem4.Name = "barButtonItem4";
     //
     // barSubItemInNhan
     //
     this.barSubItemInNhan.Caption = "In n&hãn";
     this.barSubItemInNhan.Id = 37;
     this.barSubItemInNhan.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemInBeatcamTrong),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemInBeatacamNgoai)});
     this.barSubItemInNhan.Name = "barSubItemInNhan";
     //
     // barButtonItemInBeatcamTrong
     //
     this.barButtonItemInBeatcamTrong.Caption = "In betacam t&rong";
     this.barButtonItemInBeatcamTrong.Id = 38;
     this.barButtonItemInBeatcamTrong.Name = "barButtonItemInBeatcamTrong";
     this.barButtonItemInBeatcamTrong.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItemInBeatcamTrong_ItemClick);
     //
     // barButtonItemInBeatacamNgoai
     //
     this.barButtonItemInBeatacamNgoai.Caption = "In betacam n&goài";
     this.barButtonItemInBeatacamNgoai.Id = 39;
     this.barButtonItemInBeatacamNgoai.Name = "barButtonItemInBeatacamNgoai";
     this.barButtonItemInBeatacamNgoai.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItemInBeatacamNgoai_ItemClick);
     //
     // barButtonItemCommit
     //
     this.barButtonItemCommit.Caption = "&Duyệt";
     this.barButtonItemCommit.Id = 17;
     this.barButtonItemCommit.Name = "barButtonItemCommit";
     this.barButtonItemCommit.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // barButtonItemNoCommit
     //
     this.barButtonItemNoCommit.Caption = "&Không duyệt";
     this.barButtonItemNoCommit.Id = 18;
     this.barButtonItemNoCommit.Name = "barButtonItemNoCommit";
     this.barButtonItemNoCommit.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // barSubItem1
     //
     this.barSubItem1.Caption = "Nghiệp vụ";
     this.barSubItem1.Id = 20;
     this.barSubItem1.Name = "barSubItem1";
     this.barSubItem1.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // barButtonItemSearch
     //
     this.barButtonItemSearch.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown;
     this.barButtonItemSearch.Caption = "Tìm kiếm";
     this.barButtonItemSearch.DropDownControl = this.popupMenuFilter;
     this.barButtonItemSearch.Id = 27;
     this.barButtonItemSearch.Name = "barButtonItemSearch";
     this.barButtonItemSearch.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // popupMenuFilter
     //
     this.popupMenuFilter.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.barCheckItemFilter),
     new DevExpress.XtraBars.LinkPersistInfo(this.barCheckItemNangCao),
     new DevExpress.XtraBars.LinkPersistInfo(this.barCheckItemDonGian)});
     this.popupMenuFilter.Manager = this.barManager1;
     this.popupMenuFilter.Name = "popupMenuFilter";
     //
     // barCheckItemFilter
     //
     this.barCheckItemFilter.Caption = "Điều &kiện lọc";
     this.barCheckItemFilter.Checked = true;
     this.barCheckItemFilter.Id = 29;
     this.barCheckItemFilter.Name = "barCheckItemFilter";
     this.barCheckItemFilter.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.barCheckItemFilter.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
     //
     // barCheckItemNangCao
     //
     this.barCheckItemNangCao.Caption = "Tìm kiếm nâng cao";
     this.barCheckItemNangCao.Id = 40;
     this.barCheckItemNangCao.Name = "barCheckItemNangCao";
     //
     // barCheckItemDonGian
     //
     this.barCheckItemDonGian.Caption = "Tìm kiếm đơn giản";
     this.barCheckItemDonGian.Id = 41;
     this.barCheckItemDonGian.Name = "barCheckItemDonGian";
     //
     // barButtonItemClose
     //
     this.barButtonItemClose.Caption = "Đóng";
     this.barButtonItemClose.Id = 28;
     this.barButtonItemClose.Name = "barButtonItemClose";
     this.barButtonItemClose.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // barButtonItemThongKe
     //
     this.barButtonItemThongKe.Caption = "&Thống kê";
     this.barButtonItemThongKe.Id = 42;
     this.barButtonItemThongKe.Name = "barButtonItemThongKe";
     this.barButtonItemThongKe.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // barSubItemCotHienThi
     //
     this.barSubItemCotHienThi.Caption = "Chọn cột hiển thị";
     this.barSubItemCotHienThi.Id = 36;
     this.barSubItemCotHienThi.Name = "barSubItemCotHienThi";
     //
     // barDockControlTop
     //
     this.barDockControlTop.Dock = System.Windows.Forms.DockStyle.Top;
     this.barDockControlTop.Location = new System.Drawing.Point(0, 0);
     this.barDockControlTop.Size = new System.Drawing.Size(1008, 24);
     //
     // barDockControlBottom
     //
     this.barDockControlBottom.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.barDockControlBottom.Location = new System.Drawing.Point(0, 545);
     this.barDockControlBottom.Size = new System.Drawing.Size(1008, 0);
     //
     // barDockControlLeft
     //
     this.barDockControlLeft.Dock = System.Windows.Forms.DockStyle.Left;
     this.barDockControlLeft.Location = new System.Drawing.Point(0, 24);
     this.barDockControlLeft.Size = new System.Drawing.Size(0, 521);
     //
     // barDockControlRight
     //
     this.barDockControlRight.Dock = System.Windows.Forms.DockStyle.Right;
     this.barDockControlRight.Location = new System.Drawing.Point(1008, 24);
     this.barDockControlRight.Size = new System.Drawing.Size(0, 521);
     //
     // dockManager1
     //
     this.dockManager1.DockingOptions.ShowCloseButton = false;
     this.dockManager1.Form = this;
     this.dockManager1.RootPanels.AddRange(new DevExpress.XtraBars.Docking.DockPanel[] {
     this.dockPanelAdvance,
     this.dockPanelSimple});
     this.dockManager1.TopZIndexControls.AddRange(new string[] {
     "DevExpress.XtraBars.BarDockControl",
     "DevExpress.XtraBars.StandaloneBarDockControl",
     "System.Windows.Forms.StatusBar",
     "DevExpress.XtraBars.Ribbon.RibbonStatusBar",
     "DevExpress.XtraBars.Ribbon.RibbonControl"});
     //
     // dockPanelAdvance
     //
     this.dockPanelAdvance.Controls.Add(this.controlContainer1);
     this.dockPanelAdvance.Dock = DevExpress.XtraBars.Docking.DockingStyle.Left;
     this.dockPanelAdvance.ID = new System.Guid("44e36ae0-214f-42cd-8bee-8c8105129b29");
     this.dockPanelAdvance.Location = new System.Drawing.Point(0, 24);
     this.dockPanelAdvance.Name = "dockPanelAdvance";
     this.dockPanelAdvance.OriginalSize = new System.Drawing.Size(200, 200);
     this.dockPanelAdvance.Size = new System.Drawing.Size(200, 521);
     this.dockPanelAdvance.Text = "Điều kiện tìm kiếm nâng cao";
     //
     // controlContainer1
     //
     this.controlContainer1.Controls.Add(this.filterControl1);
     this.controlContainer1.Location = new System.Drawing.Point(3, 25);
     this.controlContainer1.Name = "controlContainer1";
     this.controlContainer1.Size = new System.Drawing.Size(194, 493);
     this.controlContainer1.TabIndex = 0;
     //
     // filterControl1
     //
     this.filterControl1.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.filterControl1.Cursor = System.Windows.Forms.Cursors.Arrow;
     this.filterControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.filterControl1.Location = new System.Drawing.Point(0, 0);
     this.filterControl1.Name = "filterControl1";
     this.filterControl1.Size = new System.Drawing.Size(194, 493);
     this.filterControl1.TabIndex = 11;
     this.filterControl1.Text = "filterControl1";
     //
     // dockPanelSimple
     //
     this.dockPanelSimple.Controls.Add(this.dockPanel1_Container);
     this.dockPanelSimple.Dock = DevExpress.XtraBars.Docking.DockingStyle.Top;
     this.dockPanelSimple.FloatVertical = true;
     this.dockPanelSimple.ID = new System.Guid("437240ce-168d-4c05-a0b9-c702ea5e41f7");
     this.dockPanelSimple.Location = new System.Drawing.Point(200, 24);
     this.dockPanelSimple.Name = "dockPanelSimple";
     this.dockPanelSimple.Options.AllowDockLeft = false;
     this.dockPanelSimple.Options.AllowDockRight = false;
     this.dockPanelSimple.OriginalSize = new System.Drawing.Size(200, 111);
     this.dockPanelSimple.Size = new System.Drawing.Size(808, 111);
     this.dockPanelSimple.Text = "Điều kiện tìm kiếm đơn giản";
     //
     // dockPanel1_Container
     //
     this.dockPanel1_Container.Controls.Add(this.popupControlContainerFilter);
     this.dockPanel1_Container.Location = new System.Drawing.Point(3, 25);
     this.dockPanel1_Container.Name = "dockPanel1_Container";
     this.dockPanel1_Container.Size = new System.Drawing.Size(802, 83);
     this.dockPanel1_Container.TabIndex = 0;
     //
     // popupControlContainerFilter
     //
     this.popupControlContainerFilter.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.popupControlContainerFilter.Controls.Add(this.TenTap);
     this.popupControlContainerFilter.Controls.Add(this.plLabel5);
     this.popupControlContainerFilter.Controls.Add(this.TapSoDen);
     this.popupControlContainerFilter.Controls.Add(this.TapSoTu);
     this.popupControlContainerFilter.Controls.Add(this.plLabel15);
     this.popupControlContainerFilter.Controls.Add(this.plLabel12);
     this.popupControlContainerFilter.Controls.Add(this.plLabel3);
     this.popupControlContainerFilter.Controls.Add(this.SoDKCBHD);
     this.popupControlContainerFilter.Controls.Add(this.PhongBan);
     this.popupControlContainerFilter.Controls.Add(this.NguoiNhap);
     this.popupControlContainerFilter.Controls.Add(this.ngayNhap);
     this.popupControlContainerFilter.Controls.Add(this.MaCT);
     this.popupControlContainerFilter.Controls.Add(this.NoiDung);
     this.popupControlContainerFilter.Controls.Add(this.LoaiLuuTru);
     this.popupControlContainerFilter.Controls.Add(this.PostMaster);
     this.popupControlContainerFilter.Controls.Add(this.TietMuc);
     this.popupControlContainerFilter.Controls.Add(this.plLabel2);
     this.popupControlContainerFilter.Controls.Add(this.label10);
     this.popupControlContainerFilter.Controls.Add(this.label1);
     this.popupControlContainerFilter.Controls.Add(this.plLabel4);
     this.popupControlContainerFilter.Controls.Add(this.plLabel1);
     this.popupControlContainerFilter.Controls.Add(this.label29);
     this.popupControlContainerFilter.Controls.Add(this.label3);
     this.popupControlContainerFilter.Controls.Add(this.label5);
     this.popupControlContainerFilter.Dock = System.Windows.Forms.DockStyle.Fill;
     this.popupControlContainerFilter.Location = new System.Drawing.Point(0, 0);
     this.popupControlContainerFilter.Manager = this.barManager1;
     this.popupControlContainerFilter.Name = "popupControlContainerFilter";
     this.popupControlContainerFilter.Size = new System.Drawing.Size(802, 83);
     this.popupControlContainerFilter.TabIndex = 5;
     this.popupControlContainerFilter.Visible = false;
     //
     // TenTap
     //
     this.TenTap._DataSource = null;
     this.TenTap._GetField = null;
     this.TenTap.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.TenTap.Location = new System.Drawing.Point(750, 60);
     this.TenTap.Name = "TenTap";
     this.TenTap.Properties.CloseUpKey = new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None);
     this.TenTap.Size = new System.Drawing.Size(606, 20);
     this.TenTap.TabIndex = 222;
     //
     // plLabel5
     //
     this.plLabel5.Location = new System.Drawing.Point(693, 63);
     this.plLabel5.Name = "plLabel5";
     this.plLabel5.Size = new System.Drawing.Size(37, 13);
     this.plLabel5.TabIndex = 240;
     this.plLabel5.Text = "Tên tập";
     //
     // TapSoDen
     //
     this.TapSoDen.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.TapSoDen.EditValue = new decimal(new int[] {
     0,
     0,
     0,
     0});
     this.TapSoDen.Location = new System.Drawing.Point(953, 35);
     this.TapSoDen.Name = "TapSoDen";
     this.TapSoDen.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.TapSoDen.Size = new System.Drawing.Size(606, 20);
     this.TapSoDen.TabIndex = 241;
     //
     // TapSoTu
     //
     this.TapSoTu.EditValue = new decimal(new int[] {
     0,
     0,
     0,
     0});
     this.TapSoTu.Location = new System.Drawing.Point(875, 35);
     this.TapSoTu.Name = "TapSoTu";
     this.TapSoTu.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.TapSoTu.Size = new System.Drawing.Size(42, 20);
     this.TapSoTu.TabIndex = 242;
     //
     // plLabel15
     //
     this.plLabel15.Location = new System.Drawing.Point(923, 39);
     this.plLabel15.Name = "plLabel15";
     this.plLabel15.Size = new System.Drawing.Size(18, 13);
     this.plLabel15.TabIndex = 239;
     this.plLabel15.Text = "đến";
     //
     // plLabel12
     //
     this.plLabel12.Location = new System.Drawing.Point(811, 38);
     this.plLabel12.Name = "plLabel12";
     this.plLabel12.Size = new System.Drawing.Size(32, 13);
     this.plLabel12.TabIndex = 240;
     this.plLabel12.Text = "Tập số";
     //
     // plLabel3
     //
     this.plLabel3.Location = new System.Drawing.Point(811, 8);
     this.plLabel3.Name = "plLabel3";
     this.plLabel3.Size = new System.Drawing.Size(59, 13);
     this.plLabel3.TabIndex = 229;
     this.plLabel3.Text = "Số ĐKCB HD";
     this.plLabel3.ToolTip = "Số đăng ký cá biệt HD";
     //
     // SoDKCBHD
     //
     this.SoDKCBHD.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.SoDKCBHD.DataSource = null;
     this.SoDKCBHD.DisplayField = null;
     this.SoDKCBHD.Location = new System.Drawing.Point(875, 5);
     this.SoDKCBHD.Name = "SoDKCBHD";
     this.SoDKCBHD.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.SoDKCBHD.Size = new System.Drawing.Size(606, 20);
     this.SoDKCBHD.TabIndex = 228;
     this.SoDKCBHD.ValueField = null;
     //
     // PhongBan
     //
     this.PhongBan.Location = new System.Drawing.Point(338, 32);
     this.PhongBan.Name = "PhongBan";
     this.PhongBan.Size = new System.Drawing.Size(187, 20);
     this.PhongBan.TabIndex = 10;
     //
     // NguoiNhap
     //
     this.NguoiNhap.DataSource = null;
     this.NguoiNhap.DisplayField = null;
     this.NguoiNhap.Location = new System.Drawing.Point(338, 8);
     this.NguoiNhap.Name = "NguoiNhap";
     this.NguoiNhap.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.NguoiNhap.Size = new System.Drawing.Size(187, 20);
     this.NguoiNhap.TabIndex = 227;
     this.NguoiNhap.ValueField = null;
     //
     // ngayNhap
     //
     this.ngayNhap.Caption = "Từ ngày 22/03/2012 đến ngày 29/03/2012";
     this.ngayNhap.Default = ProtocolVN.Framework.Win.Trial.SelectionTypes.FromDateToDate;
     this.ngayNhap.FirstFrom = new System.DateTime(2012, 3, 22, 15, 55, 8, 468);
     this.ngayNhap.FirstTo = new System.DateTime(2012, 3, 29, 15, 55, 8, 468);
     this.ngayNhap.FromDate = new System.DateTime(2012, 3, 22, 15, 55, 8, 468);
     this.ngayNhap.Location = new System.Drawing.Point(338, 57);
     this.ngayNhap.Name = "ngayNhap";
     this.ngayNhap.ReturnType = ProtocolVN.Framework.Win.Trial.TimeType.Date;
     this.ngayNhap.SecondFrom = new System.DateTime(2012, 3, 22, 15, 55, 8, 468);
     this.ngayNhap.SecondTo = new System.DateTime(2012, 3, 29, 15, 55, 8, 468);
     this.ngayNhap.SelectedType = ProtocolVN.Framework.Win.Trial.SelectionTypes.FromDateToDate;
     this.ngayNhap.Size = new System.Drawing.Size(285, 21);
     this.ngayNhap.TabIndex = 226;
     this.ngayNhap.ToDate = new System.DateTime(2012, 3, 29, 15, 55, 8, 468);
     this.ngayNhap.Types = ((ProtocolVN.Framework.Win.Trial.SelectionTypes)(((((((((ProtocolVN.Framework.Win.Trial.SelectionTypes.OneDate | ProtocolVN.Framework.Win.Trial.SelectionTypes.OneMonth)
                 | ProtocolVN.Framework.Win.Trial.SelectionTypes.OneQuarter)
                 | ProtocolVN.Framework.Win.Trial.SelectionTypes.OneYear)
                 | ProtocolVN.Framework.Win.Trial.SelectionTypes.SixMonths)
                 | ProtocolVN.Framework.Win.Trial.SelectionTypes.FromDateToDate)
                 | ProtocolVN.Framework.Win.Trial.SelectionTypes.FromMonthToMonth)
                 | ProtocolVN.Framework.Win.Trial.SelectionTypes.FromQuarterToQuarter)
                 | ProtocolVN.Framework.Win.Trial.SelectionTypes.FromYearToYear)));
     //
     // MaCT
     //
     this.MaCT.Location = new System.Drawing.Point(48, 8);
     this.MaCT.Name = "MaCT";
     this.MaCT.Size = new System.Drawing.Size(214, 20);
     this.MaCT.TabIndex = 223;
     //
     // NoiDung
     //
     this.NoiDung._DataSource = null;
     this.NoiDung._GetField = null;
     this.NoiDung.Location = new System.Drawing.Point(48, 32);
     this.NoiDung.Name = "NoiDung";
     this.NoiDung.Properties.CloseUpKey = new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None);
     this.NoiDung.Size = new System.Drawing.Size(214, 20);
     this.NoiDung.TabIndex = 222;
     //
     // LoaiLuuTru
     //
     this.LoaiLuuTru.DataSource = null;
     this.LoaiLuuTru.DisplayField = null;
     this.LoaiLuuTru.Location = new System.Drawing.Point(608, 32);
     this.LoaiLuuTru.Name = "LoaiLuuTru";
     this.LoaiLuuTru.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.LoaiLuuTru.Size = new System.Drawing.Size(185, 20);
     this.LoaiLuuTru.TabIndex = 220;
     this.LoaiLuuTru.ValueField = null;
     //
     // PostMaster
     //
     this.PostMaster.DataSource = null;
     this.PostMaster.DisplayField = null;
     this.PostMaster.Location = new System.Drawing.Point(608, 8);
     this.PostMaster.Name = "PostMaster";
     this.PostMaster.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.PostMaster.Size = new System.Drawing.Size(185, 20);
     this.PostMaster.TabIndex = 220;
     this.PostMaster.ValueField = null;
     //
     // TietMuc
     //
     this.TietMuc.DataSource = null;
     this.TietMuc.DisplayField = null;
     this.TietMuc.Location = new System.Drawing.Point(48, 56);
     this.TietMuc.Name = "TietMuc";
     this.TietMuc.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.TietMuc.Size = new System.Drawing.Size(214, 20);
     this.TietMuc.TabIndex = 216;
     this.TietMuc.ValueField = null;
     //
     // plLabel2
     //
     this.plLabel2.Location = new System.Drawing.Point(544, 38);
     this.plLabel2.Name = "plLabel2";
     this.plLabel2.Size = new System.Drawing.Size(55, 13);
     this.plLabel2.TabIndex = 213;
     this.plLabel2.Text = "Loại lưu trữ";
     //
     // label10
     //
     this.label10.Location = new System.Drawing.Point(544, 12);
     this.label10.Name = "label10";
     this.label10.Size = new System.Drawing.Size(58, 13);
     this.label10.TabIndex = 213;
     this.label10.Text = "Post/Master";
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(4, 12);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(30, 13);
     this.label1.TabIndex = 214;
     this.label1.Text = "Mã CT";
     //
     // plLabel4
     //
     this.plLabel4.Location = new System.Drawing.Point(275, 12);
     this.plLabel4.Name = "plLabel4";
     this.plLabel4.Size = new System.Drawing.Size(55, 13);
     this.plLabel4.TabIndex = 217;
     this.plLabel4.Text = "Người nhập";
     //
     // plLabel1
     //
     this.plLabel1.Location = new System.Drawing.Point(275, 36);
     this.plLabel1.Name = "plLabel1";
     this.plLabel1.Size = new System.Drawing.Size(51, 13);
     this.plLabel1.TabIndex = 217;
     this.plLabel1.Text = "Phòng ban";
     //
     // label29
     //
     this.label29.Location = new System.Drawing.Point(274, 59);
     this.label29.Name = "label29";
     this.label29.Size = new System.Drawing.Size(52, 13);
     this.label29.TabIndex = 217;
     this.label29.Text = "Ngày nhập";
     //
     // label3
     //
     this.label3.Location = new System.Drawing.Point(3, 36);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(34, 13);
     this.label3.TabIndex = 218;
     this.label3.Text = "Tên CT";
     //
     // label5
     //
     this.label5.Location = new System.Drawing.Point(2, 60);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(40, 13);
     this.label5.TabIndex = 219;
     this.label5.Text = "Tiết mục";
     //
     // barStaticItem1
     //
     this.barStaticItem1.AutoSize = DevExpress.XtraBars.BarStaticItemSize.None;
     this.barStaticItem1.Border = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.barStaticItem1.Id = 13;
     this.barStaticItem1.Name = "barStaticItem1";
     this.barStaticItem1.TextAlignment = System.Drawing.StringAlignment.Near;
     this.barStaticItem1.Width = 100;
     //
     // barButtonItem1
     //
     this.barButtonItem1.Caption = "barButtonItem1";
     this.barButtonItem1.Id = 14;
     this.barButtonItem1.Name = "barButtonItem1";
     //
     // barButtonItem2
     //
     this.barButtonItem2.Caption = "barButtonItem2";
     this.barButtonItem2.Id = 15;
     this.barButtonItem2.Name = "barButtonItem2";
     //
     // barButtonItem3
     //
     this.barButtonItem3.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown;
     this.barButtonItem3.Caption = "In";
     this.barButtonItem3.Id = 30;
     this.barButtonItem3.Name = "barButtonItem3";
     //
     // splitContainerControl1
     //
     this.splitContainerControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.splitContainerControl1.Location = new System.Drawing.Point(200, 135);
     this.splitContainerControl1.Name = "splitContainerControl1";
     this.splitContainerControl1.Panel1.Controls.Add(this.groupControlPM);
     this.splitContainerControl1.Panel1.Text = "splitContainerControl1_Panel1";
     this.splitContainerControl1.Panel2.CaptionLocation = DevExpress.Utils.Locations.Left;
     this.splitContainerControl1.Panel2.Controls.Add(this.xtraTabControlDetail);
     this.splitContainerControl1.Panel2.ShowCaption = true;
     this.splitContainerControl1.Panel2.Text = "splitContainerControl1_Panel2";
     this.splitContainerControl1.Size = new System.Drawing.Size(808, 410);
     this.splitContainerControl1.SplitterPosition = 627;
     this.splitContainerControl1.TabIndex = 4;
     this.splitContainerControl1.Text = "splitContainerControl1";
     //
     // groupControlPM
     //
     this.groupControlPM.Appearance.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(192)))));
     this.groupControlPM.Appearance.Options.UseBorderColor = true;
     this.groupControlPM.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.groupControlPM.Controls.Add(this.gridControlMaster);
     this.groupControlPM.Dock = System.Windows.Forms.DockStyle.Fill;
     this.groupControlPM.Location = new System.Drawing.Point(0, 0);
     this.groupControlPM.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Flat;
     this.groupControlPM.LookAndFeel.UseDefaultLookAndFeel = false;
     this.groupControlPM.Name = "groupControlPM";
     this.groupControlPM.ShowCaption = false;
     this.groupControlPM.Size = new System.Drawing.Size(627, 410);
     this.groupControlPM.TabIndex = 236;
     this.groupControlPM.Text = "groupControl7";
     //
     // gridControlMaster
     //
     this.gridControlMaster.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("gridControlMaster.BackgroundImage")));
     this.gridControlMaster.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
     this.gridControlMaster.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gridControlMaster.Location = new System.Drawing.Point(2, 2);
     this.gridControlMaster.MainView = this.gridViewMaster;
     this.gridControlMaster.Name = "gridControlMaster";
     this.gridControlMaster.Size = new System.Drawing.Size(623, 406);
     this.gridControlMaster.TabIndex = 10;
     this.gridControlMaster.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewMaster});
     //
     // gridViewMaster
     //
     this.gridViewMaster.Appearance.HeaderPanel.Options.UseTextOptions = true;
     this.gridViewMaster.Appearance.HeaderPanel.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridViewMaster.Bands.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.GridBand[] {
     this.gridBandChuongTrinh,
     this.gridBandPostMaster});
     this.gridViewMaster.Columns.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn[] {
     this.Col_PM_MaChuongTrinh,
     this.Col_PM_TenChuongTrinh,
     this.Col_PM_TietMuc,
     this.Col_PM_PostMaster,
     this.Col_PM_ThanhLy,
     this.Col_PM_LoaiLuu,
     this.Col_PM_TongTap,
     this.Col_PM_Ke,
     this.Col_PM_Ngan,
     this.Col_PM_Tang,
     this.Col_PM_PopUp,
     this.Col_PM_TTDinhKem,
     this.Col_PM_NgayNhapKho,
     this.Col_PM_DVDNgayDuyet,
     this.Col_PM_DVDNgayHoanTat,
     this.Col_PM_TTHD,
     this.Col_PM_ThoiLuongChung,
     this.Col_PM_Category,
     this.Col_PM_TienDo});
     this.gridViewMaster.GridControl = this.gridControlMaster;
     this.gridViewMaster.GroupCount = 1;
     this.gridViewMaster.IndicatorWidth = 40;
     this.gridViewMaster.Name = "gridViewMaster";
     this.gridViewMaster.OptionsLayout.Columns.AddNewColumns = false;
     this.gridViewMaster.OptionsNavigation.AutoFocusNewRow = true;
     this.gridViewMaster.OptionsNavigation.EnterMoveNextColumn = true;
     this.gridViewMaster.OptionsPrint.UsePrintStyles = true;
     this.gridViewMaster.OptionsView.ColumnAutoWidth = false;
     this.gridViewMaster.OptionsView.EnableAppearanceEvenRow = true;
     this.gridViewMaster.OptionsView.EnableAppearanceOddRow = true;
     this.gridViewMaster.OptionsView.NewItemRowPosition = DevExpress.XtraGrid.Views.Grid.NewItemRowPosition.Bottom;
     this.gridViewMaster.OptionsView.ShowGroupPanel = false;
     this.gridViewMaster.OptionsView.ShowViewCaption = true;
     this.gridViewMaster.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.Col_PM_Category, DevExpress.Data.ColumnSortOrder.Ascending)});
     this.gridViewMaster.ViewCaption = "Post/Master (Cấp 2)";
     //
     // Col_PM_Category
     //
     this.Col_PM_Category.Caption = "Category";
     this.Col_PM_Category.Name = "Col_PM_Category";
     this.Col_PM_Category.Visible = true;
     //
     // Col_PM_MaChuongTrinh
     //
     this.Col_PM_MaChuongTrinh.Caption = "Mã chương trình";
     this.Col_PM_MaChuongTrinh.Name = "Col_PM_MaChuongTrinh";
     this.Col_PM_MaChuongTrinh.Visible = true;
     this.Col_PM_MaChuongTrinh.Width = 90;
     //
     // Col_PM_TenChuongTrinh
     //
     this.Col_PM_TenChuongTrinh.Caption = "Tên chương trình";
     this.Col_PM_TenChuongTrinh.Name = "Col_PM_TenChuongTrinh";
     this.Col_PM_TenChuongTrinh.Visible = true;
     this.Col_PM_TenChuongTrinh.Width = 94;
     //
     // Col_PM_TietMuc
     //
     this.Col_PM_TietMuc.Caption = " Tiết mục";
     this.Col_PM_TietMuc.Name = "Col_PM_TietMuc";
     this.Col_PM_TietMuc.Visible = true;
     this.Col_PM_TietMuc.Width = 55;
     //
     // Col_PM_PostMaster
     //
     this.Col_PM_PostMaster.Caption = "Post/Master";
     this.Col_PM_PostMaster.Name = "Col_PM_PostMaster";
     this.Col_PM_PostMaster.OptionsColumn.AllowMove = false;
     this.Col_PM_PostMaster.OptionsColumn.AllowShowHide = false;
     this.Col_PM_PostMaster.Visible = true;
     this.Col_PM_PostMaster.Width = 70;
     //
     // Col_PM_TongTap
     //
     this.Col_PM_TongTap.Caption = "Số tập gốc/cắt";
     this.Col_PM_TongTap.Name = "Col_PM_TongTap";
     this.Col_PM_TongTap.Visible = true;
     this.Col_PM_TongTap.Width = 82;
     //
     // Col_PM_LoaiLuu
     //
     this.Col_PM_LoaiLuu.Caption = "Loại lưu trữ";
     this.Col_PM_LoaiLuu.Name = "Col_PM_LoaiLuu";
     this.Col_PM_LoaiLuu.Visible = true;
     this.Col_PM_LoaiLuu.Width = 67;
     //
     // Col_PM_PopUp
     //
     this.Col_PM_PopUp.Caption = "Pop Up";
     this.Col_PM_PopUp.Name = "Col_PM_PopUp";
     this.Col_PM_PopUp.Visible = true;
     this.Col_PM_PopUp.Width = 46;
     //
     // Col_PM_ThoiLuongChung
     //
     this.Col_PM_ThoiLuongChung.Caption = "Thời lượng chung";
     this.Col_PM_ThoiLuongChung.Name = "Col_PM_ThoiLuongChung";
     this.Col_PM_ThoiLuongChung.Visible = true;
     this.Col_PM_ThoiLuongChung.Width = 94;
     //
     // Col_PM_TTDinhKem
     //
     this.Col_PM_TTDinhKem.Caption = "TT Đính kèm";
     this.Col_PM_TTDinhKem.Name = "Col_PM_TTDinhKem";
     this.Col_PM_TTDinhKem.Visible = true;
     this.Col_PM_TTDinhKem.Width = 71;
     //
     // Col_PM_ThanhLy
     //
     this.Col_PM_ThanhLy.Caption = "Thanh lý";
     this.Col_PM_ThanhLy.Name = "Col_PM_ThanhLy";
     this.Col_PM_ThanhLy.Visible = true;
     this.Col_PM_ThanhLy.Width = 53;
     //
     // Col_PM_NgayNhapKho
     //
     this.Col_PM_NgayNhapKho.Caption = "Ngày nhập kho";
     this.Col_PM_NgayNhapKho.Name = "Col_PM_NgayNhapKho";
     this.Col_PM_NgayNhapKho.Visible = true;
     this.Col_PM_NgayNhapKho.Width = 84;
     //
     // Col_PM_Ke
     //
     this.Col_PM_Ke.Caption = "Kệ";
     this.Col_PM_Ke.Name = "Col_PM_Ke";
     this.Col_PM_Ke.Visible = true;
     this.Col_PM_Ke.Width = 24;
     //
     // Col_PM_Ngan
     //
     this.Col_PM_Ngan.Caption = "Ngăn";
     this.Col_PM_Ngan.Name = "Col_PM_Ngan";
     this.Col_PM_Ngan.Visible = true;
     this.Col_PM_Ngan.Width = 37;
     //
     // Col_PM_Tang
     //
     this.Col_PM_Tang.Caption = "Tầng";
     this.Col_PM_Tang.Name = "Col_PM_Tang";
     this.Col_PM_Tang.Visible = true;
     this.Col_PM_Tang.Width = 36;
     //
     // Col_PM_TTHD
     //
     this.Col_PM_TTHD.Caption = "Thông tin HD";
     this.Col_PM_TTHD.Name = "Col_PM_TTHD";
     this.Col_PM_TTHD.Visible = true;
     this.Col_PM_TTHD.Width = 74;
     //
     // Col_PM_DVDNgayDuyet
     //
     this.Col_PM_DVDNgayDuyet.Caption = "DVD ngày duyệt";
     this.Col_PM_DVDNgayDuyet.Name = "Col_PM_DVDNgayDuyet";
     this.Col_PM_DVDNgayDuyet.Visible = true;
     this.Col_PM_DVDNgayDuyet.Width = 90;
     //
     // Col_PM_DVDNgayHoanTat
     //
     this.Col_PM_DVDNgayHoanTat.Caption = "DVD Ngày hoàn tất";
     this.Col_PM_DVDNgayHoanTat.Name = "Col_PM_DVDNgayHoanTat";
     this.Col_PM_DVDNgayHoanTat.Visible = true;
     this.Col_PM_DVDNgayHoanTat.Width = 104;
     //
     // xtraTabControlDetail
     //
     this.xtraTabControlDetail.Appearance.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(192)))));
     this.xtraTabControlDetail.Appearance.Options.UseBorderColor = true;
     this.xtraTabControlDetail.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.xtraTabControlDetail.Dock = System.Windows.Forms.DockStyle.Fill;
     this.xtraTabControlDetail.Location = new System.Drawing.Point(0, 0);
     this.xtraTabControlDetail.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Flat;
     this.xtraTabControlDetail.LookAndFeel.UseDefaultLookAndFeel = false;
     this.xtraTabControlDetail.Name = "xtraTabControlDetail";
     this.xtraTabControlDetail.SelectedTabPage = this.xtraTabPageDetail;
     this.xtraTabControlDetail.ShowTabHeader = DevExpress.Utils.DefaultBoolean.False;
     this.xtraTabControlDetail.Size = new System.Drawing.Size(175, 410);
     this.xtraTabControlDetail.TabIndex = 10;
     this.xtraTabControlDetail.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
     this.xtraTabPageDetail});
     //
     // xtraTabPageDetail
     //
     this.xtraTabPageDetail.Controls.Add(this.gridControlDetail);
     this.xtraTabPageDetail.Name = "xtraTabPageDetail";
     this.xtraTabPageDetail.Size = new System.Drawing.Size(173, 408);
     this.xtraTabPageDetail.Text = "Danh sách biên mục";
     //
     // gridControlDetail
     //
     this.gridControlDetail.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("gridControlDetail.BackgroundImage")));
     this.gridControlDetail.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
     this.gridControlDetail.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gridControlDetail.Location = new System.Drawing.Point(0, 0);
     this.gridControlDetail.MainView = this.gridViewDetail;
     this.gridControlDetail.MenuManager = this.barManager1;
     this.gridControlDetail.Name = "gridControlDetail";
     this.gridControlDetail.Size = new System.Drawing.Size(173, 408);
     this.gridControlDetail.TabIndex = 0;
     this.gridControlDetail.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewDetail});
     //
     // gridViewDetail
     //
     this.gridViewDetail.Appearance.HeaderPanel.Options.UseTextOptions = true;
     this.gridViewDetail.Appearance.HeaderPanel.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridViewDetail.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.Col_BM_ThanhLy,
     this.Col_BM_MaBang,
     this.Col_BM_TapSo,
     this.Col_BM_TenTap,
     this.Col_BM_SoBang,
     this.Col_BM_ThongSo,
     this.Col_BM_ThoiLuong,
     this.Col_BM_SoDKCBHD,
     this.Col_BM_NoiLuuTru});
     this.gridViewDetail.GridControl = this.gridControlDetail;
     this.gridViewDetail.IndicatorWidth = 40;
     this.gridViewDetail.Name = "gridViewDetail";
     this.gridViewDetail.OptionsBehavior.Editable = false;
     this.gridViewDetail.OptionsLayout.Columns.AddNewColumns = false;
     this.gridViewDetail.OptionsNavigation.AutoFocusNewRow = true;
     this.gridViewDetail.OptionsNavigation.EnterMoveNextColumn = true;
     this.gridViewDetail.OptionsPrint.UsePrintStyles = true;
     this.gridViewDetail.OptionsSelection.MultiSelect = true;
     this.gridViewDetail.OptionsView.ColumnAutoWidth = false;
     this.gridViewDetail.OptionsView.EnableAppearanceEvenRow = true;
     this.gridViewDetail.OptionsView.EnableAppearanceOddRow = true;
     this.gridViewDetail.OptionsView.NewItemRowPosition = DevExpress.XtraGrid.Views.Grid.NewItemRowPosition.Bottom;
     this.gridViewDetail.OptionsView.ShowGroupedColumns = true;
     this.gridViewDetail.OptionsView.ShowGroupPanel = false;
     this.gridViewDetail.OptionsView.ShowViewCaption = true;
     this.gridViewDetail.ViewCaption = "Biên mục (Cấp 3)";
     //
     // Col_BM_ThanhLy
     //
     this.Col_BM_ThanhLy.Caption = "Thanh lý";
     this.Col_BM_ThanhLy.Name = "Col_BM_ThanhLy";
     this.Col_BM_ThanhLy.Visible = true;
     this.Col_BM_ThanhLy.VisibleIndex = 0;
     this.Col_BM_ThanhLy.Width = 53;
     //
     // Col_BM_MaBang
     //
     this.Col_BM_MaBang.Caption = "Mã băng";
     this.Col_BM_MaBang.Name = "Col_BM_MaBang";
     this.Col_BM_MaBang.Visible = true;
     this.Col_BM_MaBang.VisibleIndex = 1;
     this.Col_BM_MaBang.Width = 53;
     //
     // Col_BM_TapSo
     //
     this.Col_BM_TapSo.Caption = "Tập số";
     this.Col_BM_TapSo.Name = "Col_BM_TapSo";
     this.Col_BM_TapSo.Visible = true;
     this.Col_BM_TapSo.VisibleIndex = 2;
     this.Col_BM_TapSo.Width = 44;
     //
     // Col_BM_TenTap
     //
     this.Col_BM_TenTap.Caption = "Tên tập";
     this.Col_BM_TenTap.Name = "Col_BM_TenTap";
     this.Col_BM_TenTap.Visible = true;
     this.Col_BM_TenTap.VisibleIndex = 3;
     this.Col_BM_TenTap.Width = 49;
     //
     // Col_BM_SoBang
     //
     this.Col_BM_SoBang.Caption = "Số băng";
     this.Col_BM_SoBang.Name = "Col_BM_SoBang";
     this.Col_BM_SoBang.Visible = true;
     this.Col_BM_SoBang.VisibleIndex = 4;
     this.Col_BM_SoBang.Width = 51;
     //
     // Col_BM_ThongSo
     //
     this.Col_BM_ThongSo.Caption = "Thông số";
     this.Col_BM_ThongSo.Name = "Col_BM_ThongSo";
     this.Col_BM_ThongSo.Visible = true;
     this.Col_BM_ThongSo.VisibleIndex = 5;
     this.Col_BM_ThongSo.Width = 56;
     //
     // Col_BM_ThoiLuong
     //
     this.Col_BM_ThoiLuong.Caption = "Thời lượng";
     this.Col_BM_ThoiLuong.Name = "Col_BM_ThoiLuong";
     this.Col_BM_ThoiLuong.Visible = true;
     this.Col_BM_ThoiLuong.VisibleIndex = 6;
     this.Col_BM_ThoiLuong.Width = 62;
     //
     // Col_BM_SoDKCBHD
     //
     this.Col_BM_SoDKCBHD.Caption = "Số ĐKCB HD";
     this.Col_BM_SoDKCBHD.Name = "Col_BM_SoDKCBHD";
     this.Col_BM_SoDKCBHD.Visible = true;
     this.Col_BM_SoDKCBHD.VisibleIndex = 7;
     this.Col_BM_SoDKCBHD.Width = 71;
     //
     // Col_BM_NoiLuuTru
     //
     this.Col_BM_NoiLuuTru.Caption = "Nơi lưu trữ";
     this.Col_BM_NoiLuuTru.Name = "Col_BM_NoiLuuTru";
     this.Col_BM_NoiLuuTru.Visible = true;
     this.Col_BM_NoiLuuTru.VisibleIndex = 8;
     this.Col_BM_NoiLuuTru.Width = 63;
     //
     // Col_PM_TienDo
     //
     this.Col_PM_TienDo.Caption = "Tiến độ hậu kỳ";
     this.Col_PM_TienDo.Name = "Col_PM_TienDo";
     this.Col_PM_TienDo.Visible = true;
     //
     // gridBandChuongTrinh
     //
     this.gridBandChuongTrinh.AppearanceHeader.Options.UseTextOptions = true;
     this.gridBandChuongTrinh.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridBandChuongTrinh.Caption = "Thông tin chương trình";
     this.gridBandChuongTrinh.Columns.Add(this.Col_PM_Category);
     this.gridBandChuongTrinh.Columns.Add(this.Col_PM_MaChuongTrinh);
     this.gridBandChuongTrinh.Columns.Add(this.Col_PM_TenChuongTrinh);
     this.gridBandChuongTrinh.Columns.Add(this.Col_PM_TietMuc);
     this.gridBandChuongTrinh.Name = "gridBandChuongTrinh";
     this.gridBandChuongTrinh.Width = 314;
     //
     // gridBandPostMaster
     //
     this.gridBandPostMaster.AppearanceHeader.Options.UseTextOptions = true;
     this.gridBandPostMaster.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridBandPostMaster.Caption = "Thông tin Post/Master";
     this.gridBandPostMaster.Columns.Add(this.Col_PM_PostMaster);
     this.gridBandPostMaster.Columns.Add(this.Col_PM_TongTap);
     this.gridBandPostMaster.Columns.Add(this.Col_PM_TienDo);
     this.gridBandPostMaster.Columns.Add(this.Col_PM_LoaiLuu);
     this.gridBandPostMaster.Columns.Add(this.Col_PM_PopUp);
     this.gridBandPostMaster.Columns.Add(this.Col_PM_ThoiLuongChung);
     this.gridBandPostMaster.Columns.Add(this.Col_PM_TTDinhKem);
     this.gridBandPostMaster.Columns.Add(this.Col_PM_ThanhLy);
     this.gridBandPostMaster.Columns.Add(this.Col_PM_NgayNhapKho);
     this.gridBandPostMaster.Columns.Add(this.Col_PM_Ke);
     this.gridBandPostMaster.Columns.Add(this.Col_PM_Ngan);
     this.gridBandPostMaster.Columns.Add(this.Col_PM_Tang);
     this.gridBandPostMaster.Columns.Add(this.Col_PM_TTHD);
     this.gridBandPostMaster.Columns.Add(this.Col_PM_DVDNgayDuyet);
     this.gridBandPostMaster.Columns.Add(this.Col_PM_DVDNgayHoanTat);
     this.gridBandPostMaster.Name = "gridBandPostMaster";
     this.gridBandPostMaster.Width = 1007;
     //
     // frmPostMasterSearchQL
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(1008, 545);
     this.Controls.Add(this.splitContainerControl1);
     this.Controls.Add(this.dockPanelSimple);
     this.Controls.Add(this.dockPanelAdvance);
     this.Controls.Add(this.barDockControlLeft);
     this.Controls.Add(this.barDockControlRight);
     this.Controls.Add(this.barDockControlBottom);
     this.Controls.Add(this.barDockControlTop);
     this.Name = "frmPostMasterSearchQL";
     this.ShowInTaskbar = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Quản lý Post/Master";
     ((System.ComponentModel.ISupportInitialize)(this.barManager1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.popupMenu1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.popupMenuFilter)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dockManager1)).EndInit();
     this.dockPanelAdvance.ResumeLayout(false);
     this.controlContainer1.ResumeLayout(false);
     this.dockPanelSimple.ResumeLayout(false);
     this.dockPanel1_Container.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.popupControlContainerFilter)).EndInit();
     this.popupControlContainerFilter.ResumeLayout(false);
     this.popupControlContainerFilter.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.TenTap.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TapSoDen.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TapSoTu.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.SoDKCBHD.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.NguoiNhap.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.MaCT.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.NoiDung.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.LoaiLuuTru.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.PostMaster.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TietMuc.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl1)).EndInit();
     this.splitContainerControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControlPM)).EndInit();
     this.groupControlPM.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMaster)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMaster)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControlDetail)).EndInit();
     this.xtraTabControlDetail.ResumeLayout(false);
     this.xtraTabPageDetail.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlDetail)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewDetail)).EndInit();
     this.ResumeLayout(false);
 }
コード例 #45
0
 /// <summary> 
 /// �����֧������ķ��� - ��Ҫ
 /// ʹ�ô���༭���޸Ĵ˷��������ݡ�
 /// </summary>
 private void InitializeComponent()
 {
     this.gridControl = new DevExpress.XtraGrid.GridControl();
     this.advBandedGridView1 = new DevExpress.XtraGrid.Views.BandedGrid.AdvBandedGridView();
     this.gridBand1 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.bandedGridColumn1 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridBand2 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.bandedGridColumn2 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridBand3 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.bandedGridColumn3 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridBand4 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.bandedGridColumn4 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridBand5 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.bandedGridColumn5 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridBand6 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.bandedGridColumn6 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridBand7 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.gridBand19 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.gridBand20 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.bandedGridColumn7 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridBand21 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.bandedGridColumn8 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridBand22 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.bandedGridColumn9 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridBand23 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.bandedGridColumn10 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridBand13 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.bandedGridColumn18 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridBand30 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.gridBand8 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.gridBand24 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.bandedGridColumn11 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridBand25 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.bandedGridColumn12 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridBand28 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.bandedGridColumn24 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridBand9 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.gridBand26 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.bandedGridColumn13 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridBand27 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.bandedGridColumn14 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridBand29 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.bandedGridColumn25 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridBand10 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.bandedGridColumn15 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridBand11 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.bandedGridColumn16 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridBand12 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.bandedGridColumn17 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridBand14 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.bandedGridColumn19 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridBand15 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.bandedGridColumn20 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridBand16 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.bandedGridColumn21 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridBand17 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.bandedGridColumn22 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridBand18 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.bandedGridColumn23 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.UID = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridBand31 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.gridBand32 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.gridBand33 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.gridBand34 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.bandedGridColumn26 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.bandedGridColumn27 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.bandedGridColumn28 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.bandedGridColumn29 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     ((System.ComponentModel.ISupportInitialize)(this.gridControl)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.advBandedGridView1)).BeginInit();
     this.SuspendLayout();
     //
     // gridControl
     //
     this.gridControl.Dock = System.Windows.Forms.DockStyle.Fill;
     //
     //
     //
     this.gridControl.EmbeddedNavigator.Buttons.Append.Visible = false;
     this.gridControl.EmbeddedNavigator.Buttons.CancelEdit.Visible = false;
     this.gridControl.EmbeddedNavigator.Buttons.Edit.Visible = false;
     this.gridControl.EmbeddedNavigator.Buttons.EndEdit.Visible = false;
     this.gridControl.EmbeddedNavigator.Buttons.Remove.Visible = false;
     this.gridControl.EmbeddedNavigator.Name = "";
     this.gridControl.Location = new System.Drawing.Point(0, 0);
     this.gridControl.MainView = this.advBandedGridView1;
     this.gridControl.Name = "gridControl";
     this.gridControl.Size = new System.Drawing.Size(1000, 418);
     this.gridControl.TabIndex = 0;
     this.gridControl.UseEmbeddedNavigator = true;
     this.gridControl.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.advBandedGridView1});
     //
     // advBandedGridView1
     //
     this.advBandedGridView1.AppearancePrint.HeaderPanel.Options.UseTextOptions = true;
     this.advBandedGridView1.AppearancePrint.HeaderPanel.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.advBandedGridView1.Bands.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.GridBand[] {
     this.gridBand1,
     this.gridBand2,
     this.gridBand3,
     this.gridBand4,
     this.gridBand5,
     this.gridBand6,
     this.gridBand7,
     this.gridBand8,
     this.gridBand31,
     this.gridBand9,
     this.gridBand10,
     this.gridBand11,
     this.gridBand12,
     this.gridBand14,
     this.gridBand15,
     this.gridBand16,
     this.gridBand17,
     this.gridBand18});
     this.advBandedGridView1.Columns.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn[] {
     this.bandedGridColumn1,
     this.bandedGridColumn2,
     this.bandedGridColumn3,
     this.bandedGridColumn4,
     this.bandedGridColumn5,
     this.bandedGridColumn6,
     this.bandedGridColumn7,
     this.bandedGridColumn8,
     this.bandedGridColumn9,
     this.bandedGridColumn10,
     this.bandedGridColumn11,
     this.bandedGridColumn12,
     this.bandedGridColumn13,
     this.bandedGridColumn14,
     this.bandedGridColumn15,
     this.bandedGridColumn16,
     this.bandedGridColumn17,
     this.bandedGridColumn18,
     this.bandedGridColumn19,
     this.bandedGridColumn20,
     this.bandedGridColumn21,
     this.bandedGridColumn22,
     this.bandedGridColumn23,
     this.UID,
     this.bandedGridColumn24,
     this.bandedGridColumn25,
     this.bandedGridColumn26,
     this.bandedGridColumn27,
     this.bandedGridColumn28,
     this.bandedGridColumn29});
     this.advBandedGridView1.GridControl = this.gridControl;
     this.advBandedGridView1.GroupPanelText = "Ͷ�ʹ���";
     this.advBandedGridView1.Name = "advBandedGridView1";
     this.advBandedGridView1.OptionsBehavior.Editable = false;
     this.advBandedGridView1.OptionsMenu.EnableColumnMenu = false;
     this.advBandedGridView1.OptionsPrint.PrintHeader = false;
     this.advBandedGridView1.OptionsPrint.UsePrintStyles = true;
     this.advBandedGridView1.OptionsSelection.MultiSelect = true;
     this.advBandedGridView1.DoubleClick += new System.EventHandler(this.gridView_DoubleClick);
     //
     // gridBand1
     //
     this.gridBand1.AppearanceHeader.Options.UseTextOptions = true;
     this.gridBand1.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridBand1.Caption = "Ƭ������";
     this.gridBand1.Columns.Add(this.bandedGridColumn1);
     this.gridBand1.Name = "gridBand1";
     this.gridBand1.Width = 132;
     //
     // bandedGridColumn1
     //
     this.bandedGridColumn1.FieldName = "PQName";
     this.bandedGridColumn1.Name = "bandedGridColumn1";
     this.bandedGridColumn1.OptionsColumn.ShowCaption = false;
     this.bandedGridColumn1.Visible = true;
     this.bandedGridColumn1.Width = 132;
     //
     // gridBand2
     //
     this.gridBand2.AppearanceHeader.Options.UseTextOptions = true;
     this.gridBand2.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridBand2.Caption = "�������";
     this.gridBand2.Columns.Add(this.bandedGridColumn2);
     this.gridBand2.Name = "gridBand2";
     this.gridBand2.Width = 110;
     //
     // bandedGridColumn2
     //
     this.bandedGridColumn2.FieldName = "PQtype";
     this.bandedGridColumn2.Name = "bandedGridColumn2";
     this.bandedGridColumn2.OptionsColumn.ShowCaption = false;
     this.bandedGridColumn2.Visible = true;
     this.bandedGridColumn2.Width = 110;
     //
     // gridBand3
     //
     this.gridBand3.AppearanceHeader.Options.UseTextOptions = true;
     this.gridBand3.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridBand3.Caption = "���վ����";
     this.gridBand3.Columns.Add(this.bandedGridColumn3);
     this.gridBand3.Name = "gridBand3";
     this.gridBand3.Width = 122;
     //
     // bandedGridColumn3
     //
     this.bandedGridColumn3.FieldName = "SubName";
     this.bandedGridColumn3.Name = "bandedGridColumn3";
     this.bandedGridColumn3.OptionsColumn.ShowCaption = false;
     this.bandedGridColumn3.Visible = true;
     this.bandedGridColumn3.Width = 122;
     //
     // gridBand4
     //
     this.gridBand4.AppearanceHeader.Options.UseTextOptions = true;
     this.gridBand4.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridBand4.Caption = "��·����";
     this.gridBand4.Columns.Add(this.bandedGridColumn4);
     this.gridBand4.Name = "gridBand4";
     this.gridBand4.Width = 116;
     //
     // bandedGridColumn4
     //
     this.bandedGridColumn4.FieldName = "LineName";
     this.bandedGridColumn4.Name = "bandedGridColumn4";
     this.bandedGridColumn4.OptionsColumn.ShowCaption = false;
     this.bandedGridColumn4.Visible = true;
     this.bandedGridColumn4.Width = 116;
     //
     // gridBand5
     //
     this.gridBand5.AppearanceHeader.Options.UseTextOptions = true;
     this.gridBand5.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridBand5.Caption = "��·����";
     this.gridBand5.Columns.Add(this.bandedGridColumn5);
     this.gridBand5.Name = "gridBand5";
     this.gridBand5.Width = 120;
     //
     // bandedGridColumn5
     //
     this.bandedGridColumn5.FieldName = "LineType";
     this.bandedGridColumn5.Name = "bandedGridColumn5";
     this.bandedGridColumn5.OptionsColumn.ShowCaption = false;
     this.bandedGridColumn5.Visible = true;
     this.bandedGridColumn5.Width = 120;
     //
     // gridBand6
     //
     this.gridBand6.AppearanceHeader.Options.UseTextOptions = true;
     this.gridBand6.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridBand6.Caption = "�����߳���(km)";
     this.gridBand6.Columns.Add(this.bandedGridColumn6);
     this.gridBand6.Name = "gridBand6";
     this.gridBand6.Width = 112;
     //
     // bandedGridColumn6
     //
     this.bandedGridColumn6.FieldName = "LineLength";
     this.bandedGridColumn6.Name = "bandedGridColumn6";
     this.bandedGridColumn6.OptionsColumn.ShowCaption = false;
     this.bandedGridColumn6.Visible = true;
     this.bandedGridColumn6.Width = 112;
     //
     // gridBand7
     //
     this.gridBand7.AppearanceHeader.Options.UseTextOptions = true;
     this.gridBand7.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridBand7.Caption = "10kV��·(km)";
     this.gridBand7.Children.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.GridBand[] {
     this.gridBand19,
     this.gridBand22,
     this.gridBand23,
     this.gridBand13,
     this.gridBand30,
     this.gridBand32});
     this.gridBand7.Name = "gridBand7";
     this.gridBand7.Width = 754;
     //
     // gridBand19
     //
     this.gridBand19.AppearanceHeader.Options.UseTextOptions = true;
     this.gridBand19.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridBand19.Caption = "�ܿ���";
     this.gridBand19.Children.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.GridBand[] {
     this.gridBand20,
     this.gridBand21});
     this.gridBand19.Name = "gridBand19";
     this.gridBand19.Width = 209;
     //
     // gridBand20
     //
     this.gridBand20.AppearanceHeader.Options.UseTextOptions = true;
     this.gridBand20.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridBand20.Caption = "��Ե��";
     this.gridBand20.Columns.Add(this.bandedGridColumn7);
     this.gridBand20.Name = "gridBand20";
     this.gridBand20.Width = 101;
     //
     // bandedGridColumn7
     //
     this.bandedGridColumn7.FieldName = "Num1";
     this.bandedGridColumn7.Name = "bandedGridColumn7";
     this.bandedGridColumn7.OptionsColumn.ShowCaption = false;
     this.bandedGridColumn7.Visible = true;
     this.bandedGridColumn7.Width = 101;
     //
     // gridBand21
     //
     this.gridBand21.AppearanceHeader.Options.UseTextOptions = true;
     this.gridBand21.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridBand21.Caption = "�㵼��";
     this.gridBand21.Columns.Add(this.bandedGridColumn8);
     this.gridBand21.Name = "gridBand21";
     this.gridBand21.Width = 108;
     //
     // bandedGridColumn8
     //
     this.bandedGridColumn8.FieldName = "Num2";
     this.bandedGridColumn8.Name = "bandedGridColumn8";
     this.bandedGridColumn8.OptionsColumn.ShowCaption = false;
     this.bandedGridColumn8.Visible = true;
     this.bandedGridColumn8.Width = 108;
     //
     // gridBand22
     //
     this.gridBand22.AppearanceHeader.Options.UseTextOptions = true;
     this.gridBand22.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridBand22.Caption = "����";
     this.gridBand22.Columns.Add(this.bandedGridColumn9);
     this.gridBand22.Name = "gridBand22";
     this.gridBand22.Width = 93;
     //
     // bandedGridColumn9
     //
     this.bandedGridColumn9.FieldName = "Num3";
     this.bandedGridColumn9.Name = "bandedGridColumn9";
     this.bandedGridColumn9.OptionsColumn.ShowCaption = false;
     this.bandedGridColumn9.Visible = true;
     this.bandedGridColumn9.Width = 93;
     //
     // gridBand23
     //
     this.gridBand23.AppearanceHeader.Options.UseTextOptions = true;
     this.gridBand23.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridBand23.Caption = "�ϼ�";
     this.gridBand23.Columns.Add(this.bandedGridColumn10);
     this.gridBand23.Name = "gridBand23";
     this.gridBand23.Width = 88;
     //
     // bandedGridColumn10
     //
     this.bandedGridColumn10.FieldName = "Num4";
     this.bandedGridColumn10.Name = "bandedGridColumn10";
     this.bandedGridColumn10.OptionsColumn.ShowCaption = false;
     this.bandedGridColumn10.Visible = true;
     this.bandedGridColumn10.Width = 88;
     //
     // gridBand13
     //
     this.gridBand13.AppearanceHeader.Options.UseTextOptions = true;
     this.gridBand13.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridBand13.Caption = "���ع�(��)";
     this.gridBand13.Columns.Add(this.bandedGridColumn26);
     this.gridBand13.Name = "gridBand13";
     this.gridBand13.Width = 75;
     //
     // bandedGridColumn18
     //
     this.bandedGridColumn18.Caption = "kg";
     this.bandedGridColumn18.FieldName = "KG";
     this.bandedGridColumn18.Name = "bandedGridColumn18";
     this.bandedGridColumn18.OptionsColumn.ShowCaption = false;
     this.bandedGridColumn18.Visible = true;
     this.bandedGridColumn18.Width = 139;
     //
     // gridBand30
     //
     this.gridBand30.AppearanceHeader.Options.UseTextOptions = true;
     this.gridBand30.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridBand30.Caption = "���Ͽ��أ�̨��";
     this.gridBand30.Columns.Add(this.bandedGridColumn18);
     this.gridBand30.Name = "gridBand30";
     this.gridBand30.Width = 139;
     //
     // gridBand8
     //
     this.gridBand8.AppearanceHeader.Options.UseTextOptions = true;
     this.gridBand8.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridBand8.Caption = "��������";
     this.gridBand8.Children.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.GridBand[] {
     this.gridBand24,
     this.gridBand25,
     this.gridBand28});
     this.gridBand8.Name = "gridBand8";
     this.gridBand8.Width = 310;
     //
     // gridBand24
     //
     this.gridBand24.AppearanceHeader.Options.UseTextOptions = true;
     this.gridBand24.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridBand24.Caption = "̨��";
     this.gridBand24.Columns.Add(this.bandedGridColumn11);
     this.gridBand24.Name = "gridBand24";
     this.gridBand24.Width = 81;
     //
     // bandedGridColumn11
     //
     this.bandedGridColumn11.FieldName = "Num5";
     this.bandedGridColumn11.Name = "bandedGridColumn11";
     this.bandedGridColumn11.OptionsColumn.ShowCaption = false;
     this.bandedGridColumn11.Visible = true;
     this.bandedGridColumn11.Width = 81;
     //
     // gridBand25
     //
     this.gridBand25.AppearanceHeader.Options.UseTextOptions = true;
     this.gridBand25.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridBand25.Caption = "����(kVA)";
     this.gridBand25.Columns.Add(this.bandedGridColumn12);
     this.gridBand25.Name = "gridBand25";
     this.gridBand25.Width = 108;
     //
     // bandedGridColumn12
     //
     this.bandedGridColumn12.FieldName = "Num6";
     this.bandedGridColumn12.Name = "bandedGridColumn12";
     this.bandedGridColumn12.OptionsColumn.ShowCaption = false;
     this.bandedGridColumn12.Visible = true;
     this.bandedGridColumn12.Width = 108;
     //
     // gridBand28
     //
     this.gridBand28.Caption = "�޹���������(kVA)";
     this.gridBand28.Columns.Add(this.bandedGridColumn24);
     this.gridBand28.Name = "gridBand28";
     this.gridBand28.Width = 121;
     //
     // bandedGridColumn24
     //
     this.bandedGridColumn24.FieldName = "WG1";
     this.bandedGridColumn24.Name = "bandedGridColumn24";
     this.bandedGridColumn24.Visible = true;
     this.bandedGridColumn24.Width = 121;
     //
     // gridBand9
     //
     this.gridBand9.AppearanceHeader.Options.UseTextOptions = true;
     this.gridBand9.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridBand9.Caption = "ר������";
     this.gridBand9.Children.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.GridBand[] {
     this.gridBand26,
     this.gridBand27,
     this.gridBand29});
     this.gridBand9.Name = "gridBand9";
     this.gridBand9.Width = 316;
     //
     // gridBand26
     //
     this.gridBand26.AppearanceHeader.Options.UseTextOptions = true;
     this.gridBand26.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridBand26.Caption = "̨��";
     this.gridBand26.Columns.Add(this.bandedGridColumn13);
     this.gridBand26.Name = "gridBand26";
     this.gridBand26.Width = 80;
     //
     // bandedGridColumn13
     //
     this.bandedGridColumn13.FieldName = "Num7";
     this.bandedGridColumn13.Name = "bandedGridColumn13";
     this.bandedGridColumn13.OptionsColumn.ShowCaption = false;
     this.bandedGridColumn13.Visible = true;
     this.bandedGridColumn13.Width = 80;
     //
     // gridBand27
     //
     this.gridBand27.AppearanceHeader.Options.UseTextOptions = true;
     this.gridBand27.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridBand27.Caption = "����(kVA)";
     this.gridBand27.Columns.Add(this.bandedGridColumn14);
     this.gridBand27.Name = "gridBand27";
     this.gridBand27.Width = 111;
     //
     // bandedGridColumn14
     //
     this.bandedGridColumn14.FieldName = "Num8";
     this.bandedGridColumn14.Name = "bandedGridColumn14";
     this.bandedGridColumn14.OptionsColumn.ShowCaption = false;
     this.bandedGridColumn14.Visible = true;
     this.bandedGridColumn14.Width = 111;
     //
     // gridBand29
     //
     this.gridBand29.Caption = "�޹���������(kVA)";
     this.gridBand29.Columns.Add(this.bandedGridColumn25);
     this.gridBand29.Name = "gridBand29";
     this.gridBand29.Width = 125;
     //
     // bandedGridColumn25
     //
     this.bandedGridColumn25.FieldName = "WG2";
     this.bandedGridColumn25.Name = "bandedGridColumn25";
     this.bandedGridColumn25.Visible = true;
     this.bandedGridColumn25.Width = 125;
     //
     // gridBand10
     //
     this.gridBand10.AppearanceHeader.Options.UseTextOptions = true;
     this.gridBand10.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridBand10.Caption = "��·����";
     this.gridBand10.Columns.Add(this.bandedGridColumn15);
     this.gridBand10.Name = "gridBand10";
     this.gridBand10.Width = 114;
     //
     // bandedGridColumn15
     //
     this.bandedGridColumn15.FieldName = "LineSX";
     this.bandedGridColumn15.Name = "bandedGridColumn15";
     this.bandedGridColumn15.OptionsColumn.ShowCaption = false;
     this.bandedGridColumn15.Visible = true;
     this.bandedGridColumn15.Width = 114;
     //
     // gridBand11
     //
     this.gridBand11.AppearanceHeader.Options.UseTextOptions = true;
     this.gridBand11.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridBand11.Caption = "�Ƿ�����";
     this.gridBand11.Columns.Add(this.bandedGridColumn16);
     this.gridBand11.Name = "gridBand11";
     this.gridBand11.Width = 93;
     //
     // bandedGridColumn16
     //
     this.bandedGridColumn16.FieldName = "col1";
     this.bandedGridColumn16.Name = "bandedGridColumn16";
     this.bandedGridColumn16.OptionsColumn.ShowCaption = false;
     this.bandedGridColumn16.Visible = true;
     this.bandedGridColumn16.Width = 93;
     //
     // gridBand12
     //
     this.gridBand12.AppearanceHeader.Options.UseTextOptions = true;
     this.gridBand12.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridBand12.Caption = "������������";
     this.gridBand12.Columns.Add(this.bandedGridColumn17);
     this.gridBand12.Name = "gridBand12";
     this.gridBand12.Width = 130;
     //
     // bandedGridColumn17
     //
     this.bandedGridColumn17.FieldName = "KBS";
     this.bandedGridColumn17.Name = "bandedGridColumn17";
     this.bandedGridColumn17.OptionsColumn.ShowCaption = false;
     this.bandedGridColumn17.Visible = true;
     this.bandedGridColumn17.Width = 130;
     //
     // gridBand14
     //
     this.gridBand14.AppearanceHeader.Options.UseTextOptions = true;
     this.gridBand14.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridBand14.Caption = "����ģʽ";
     this.gridBand14.Columns.Add(this.bandedGridColumn19);
     this.gridBand14.Name = "gridBand14";
     this.gridBand14.Width = 116;
     //
     // bandedGridColumn19
     //
     this.bandedGridColumn19.FieldName = "JXMS";
     this.bandedGridColumn19.Name = "bandedGridColumn19";
     this.bandedGridColumn19.OptionsColumn.ShowCaption = false;
     this.bandedGridColumn19.Visible = true;
     this.bandedGridColumn19.Width = 116;
     //
     // gridBand15
     //
     this.gridBand15.AppearanceHeader.Options.UseTextOptions = true;
     this.gridBand15.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridBand15.Caption = "����������";
     this.gridBand15.Columns.Add(this.bandedGridColumn20);
     this.gridBand15.Name = "gridBand15";
     this.gridBand15.Width = 116;
     //
     // bandedGridColumn20
     //
     this.bandedGridColumn20.FieldName = "LLXMC";
     this.bandedGridColumn20.Name = "bandedGridColumn20";
     this.bandedGridColumn20.OptionsColumn.ShowCaption = false;
     this.bandedGridColumn20.Visible = true;
     this.bandedGridColumn20.Width = 116;
     //
     // gridBand16
     //
     this.gridBand16.AppearanceHeader.Options.UseTextOptions = true;
     this.gridBand16.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridBand16.Caption = "��󸺺�(��kW)";
     this.gridBand16.Columns.Add(this.bandedGridColumn21);
     this.gridBand16.Name = "gridBand16";
     this.gridBand16.Width = 129;
     //
     // bandedGridColumn21
     //
     this.bandedGridColumn21.FieldName = "MaxFH";
     this.bandedGridColumn21.Name = "bandedGridColumn21";
     this.bandedGridColumn21.OptionsColumn.ShowCaption = false;
     this.bandedGridColumn21.Visible = true;
     this.bandedGridColumn21.Width = 129;
     //
     // gridBand17
     //
     this.gridBand17.AppearanceHeader.Options.UseTextOptions = true;
     this.gridBand17.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridBand17.Caption = "��ȫ����(��kW)";
     this.gridBand17.Columns.Add(this.bandedGridColumn22);
     this.gridBand17.Name = "gridBand17";
     this.gridBand17.Width = 145;
     //
     // bandedGridColumn22
     //
     this.bandedGridColumn22.FieldName = "SafeFH";
     this.bandedGridColumn22.Name = "bandedGridColumn22";
     this.bandedGridColumn22.OptionsColumn.ShowCaption = false;
     this.bandedGridColumn22.Visible = true;
     this.bandedGridColumn22.Width = 145;
     //
     // gridBand18
     //
     this.gridBand18.AppearanceHeader.Options.UseTextOptions = true;
     this.gridBand18.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridBand18.Caption = "������";
     this.gridBand18.Columns.Add(this.bandedGridColumn23);
     this.gridBand18.Name = "gridBand18";
     this.gridBand18.Width = 80;
     //
     // bandedGridColumn23
     //
     this.bandedGridColumn23.FieldName = "FZL";
     this.bandedGridColumn23.Name = "bandedGridColumn23";
     this.bandedGridColumn23.OptionsColumn.ShowCaption = false;
     this.bandedGridColumn23.Visible = true;
     this.bandedGridColumn23.Width = 80;
     //
     // UID
     //
     this.UID.FieldName = "UID";
     this.UID.Name = "UID";
     this.UID.OptionsColumn.ShowCaption = false;
     this.UID.OptionsColumn.ShowInCustomizationForm = false;
     //
     // gridBand31
     //
     this.gridBand31.Caption = "�����̨��";
     this.gridBand31.Columns.Add(this.bandedGridColumn29);
     this.gridBand31.Name = "gridBand31";
     this.gridBand31.Width = 75;
     //
     // gridBand32
     //
     this.gridBand32.AppearanceHeader.Options.UseTextOptions = true;
     this.gridBand32.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridBand32.Caption = "����վ";
     this.gridBand32.Children.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.GridBand[] {
     this.gridBand33,
     this.gridBand34});
     this.gridBand32.Name = "gridBand32";
     this.gridBand32.Width = 150;
     //
     // gridBand33
     //
     this.gridBand33.Caption = "��������";
     this.gridBand33.Columns.Add(this.bandedGridColumn27);
     this.gridBand33.Name = "gridBand33";
     this.gridBand33.Width = 75;
     //
     // gridBand34
     //
     this.gridBand34.Caption = "��������";
     this.gridBand34.Columns.Add(this.bandedGridColumn28);
     this.gridBand34.Name = "gridBand34";
     this.gridBand34.Width = 75;
     //
     // bandedGridColumn26
     //
     this.bandedGridColumn26.FieldName = "KggNum";
     this.bandedGridColumn26.Name = "bandedGridColumn26";
     this.bandedGridColumn26.Visible = true;
     //
     // bandedGridColumn27
     //
     this.bandedGridColumn27.FieldName = "KgzHnNum";
     this.bandedGridColumn27.Name = "bandedGridColumn27";
     this.bandedGridColumn27.Visible = true;
     //
     // bandedGridColumn28
     //
     this.bandedGridColumn28.FieldName = "KgzHwNum";
     this.bandedGridColumn28.Name = "bandedGridColumn28";
     this.bandedGridColumn28.Visible = true;
     //
     // bandedGridColumn29
     //
     this.bandedGridColumn29.FieldName = "GsbNum";
     this.bandedGridColumn29.Name = "bandedGridColumn29";
     this.bandedGridColumn29.Visible = true;
     //
     // CtrlPW_Sum
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.gridControl);
     this.Name = "CtrlPW_Sum";
     this.Size = new System.Drawing.Size(1000, 418);
     ((System.ComponentModel.ISupportInitialize)(this.gridControl)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.advBandedGridView1)).EndInit();
     this.ResumeLayout(false);
 }
コード例 #46
0
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        protected void InitializeComponent()
        {
            this.components = new System.ComponentModel.Container();
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmMuonTraQL));
            this.barManager1 = new DevExpress.XtraBars.BarManager(this.components);
            this.MainBar = new DevExpress.XtraBars.Bar();
            this.barButtonItemAdd = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItemXem = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItemDelete = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItemUpdate = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItemPrint = new DevExpress.XtraBars.BarButtonItem();
            this.popupMenu1 = new DevExpress.XtraBars.PopupMenu(this.components);
            this.barButtonItem4 = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItemCommit = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItemNoCommit = new DevExpress.XtraBars.BarButtonItem();
            this.barSubItem1 = new DevExpress.XtraBars.BarSubItem();
            this.barButtonItemSearch = new DevExpress.XtraBars.BarButtonItem();
            this.popupMenuFilter = new DevExpress.XtraBars.PopupMenu(this.components);
            this.barCheckItemFilter = new DevExpress.XtraBars.BarCheckItem();
            this.barButtonItemClose = new DevExpress.XtraBars.BarButtonItem();
            this.barDockControlTop = new DevExpress.XtraBars.BarDockControl();
            this.barDockControlBottom = new DevExpress.XtraBars.BarDockControl();
            this.barDockControlLeft = new DevExpress.XtraBars.BarDockControl();
            this.barDockControlRight = new DevExpress.XtraBars.BarDockControl();
            this.dockManager1 = new DevExpress.XtraBars.Docking.DockManager(this.components);
            this.dockPanel1 = new DevExpress.XtraBars.Docking.DockPanel();
            this.dockPanel1_Container = new DevExpress.XtraBars.Docking.ControlContainer();
            this.popupControlContainerFilter = new DevExpress.XtraBars.PopupControlContainer(this.components);
            this.ChuaTra = new DevExpress.XtraEditors.CheckEdit();
            this.ngayTra = new ProtocolVN.Framework.Win.Trial.PLDateSelection();
            this.label29 = new DevExpress.XtraEditors.LabelControl();
            this.gridControlDetail = new DevExpress.XtraGrid.GridControl();
            this.gridViewDetail = new DevExpress.XtraGrid.Views.Grid.PLGridView();
            this.TapSoDen = new DevExpress.XtraEditors.SpinEdit();
            this.TapSoTu = new DevExpress.XtraEditors.SpinEdit();
            this.plLabel8 = new DevExpress.XtraEditors.LabelControl();
            this.plLabel15 = new DevExpress.XtraEditors.LabelControl();
            this.plLabel5 = new DevExpress.XtraEditors.LabelControl();
            this.plLabel12 = new DevExpress.XtraEditors.LabelControl();
            this.PhongBan = new ProtocolVN.Framework.Win.PLDMTreeMultiChoice();
            this.NgayMuon = new ProtocolVN.Framework.Win.Trial.PLDateSelection();
            this.MaPMT = new DevExpress.XtraEditors.TextEdit();
            this.Category = new ProtocolVN.App.VideoLibrary.PLTextEditAutocomplete();
            this.TenChuongTrinh = new ProtocolVN.App.VideoLibrary.PLTextEditAutocomplete();
            this.CongTyMuon = new ProtocolVN.App.VideoLibrary.PLTextEditAutocomplete();
            this.BoPhanMuon = new ProtocolVN.App.VideoLibrary.PLTextEditAutocomplete();
            this.NguoiMuon = new ProtocolVN.App.VideoLibrary.PLTextEditAutocomplete();
            this.LoaiLuuTru = new ProtocolVN.Framework.Win.PLMultiCombobox();
            this.NuocSX = new ProtocolVN.Framework.Win.PLMultiCombobox();
            this.PostMaster = new ProtocolVN.Framework.Win.PLMultiCombobox();
            this.TietMuc = new ProtocolVN.Framework.Win.PLMultiCombobox();
            this.plLabel2 = new DevExpress.XtraEditors.LabelControl();
            this.plLabel4 = new DevExpress.XtraEditors.LabelControl();
            this.plLabel7 = new DevExpress.XtraEditors.LabelControl();
            this.plLabel6 = new DevExpress.XtraEditors.LabelControl();
            this.label10 = new DevExpress.XtraEditors.LabelControl();
            this.label1 = new DevExpress.XtraEditors.LabelControl();
            this.plLabel3 = new DevExpress.XtraEditors.LabelControl();
            this.plLabel1 = new DevExpress.XtraEditors.LabelControl();
            this.label3 = new DevExpress.XtraEditors.LabelControl();
            this.label5 = new DevExpress.XtraEditors.LabelControl();
            this.barStaticItem1 = new DevExpress.XtraBars.BarStaticItem();
            this.barButtonItem1 = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItem2 = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItem3 = new DevExpress.XtraBars.BarButtonItem();
            this.splitContainerControl1 = new DevExpress.XtraEditors.SplitContainerControl();
            this.gridControlMaster = new DevExpress.XtraGrid.GridControl();
            this.gridViewMaster = new DevExpress.XtraGrid.Views.BandedGrid.PLBandedGridView();
            this.Col_MaPhieu = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_NguoiMuon = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_BoPhanMuon = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_CongTyMuon = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_NgayMuon = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_MucDich = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_NgayTra = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_NguoiTao = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_NgayTao = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_PhongBan = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_CongTy = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.xtraTabControlDetail = new DevExpress.XtraTab.XtraTabControl();
            this.xtraTabPageDetail = new DevExpress.XtraTab.XtraTabPage();
            this.TreeDes = new DevExpress.XtraTreeList.PLTreeList();
            this.ColDes_Ten = new DevExpress.XtraTreeList.Columns.TreeListColumn();
            this.treeListColumn2 = new DevExpress.XtraTreeList.Columns.TreeListColumn();
            this.ColDes_TenGoc = new DevExpress.XtraTreeList.Columns.TreeListColumn();
            this.ColDes_NuocSX = new DevExpress.XtraTreeList.Columns.TreeListColumn();
            this.ColDes_TietMuc = new DevExpress.XtraTreeList.Columns.TreeListColumn();
            this.ColDes_SoTapGoc = new DevExpress.XtraTreeList.Columns.TreeListColumn();
            this.ColDes_LoaiLuuTru = new DevExpress.XtraTreeList.Columns.TreeListColumn();
            this.ColDes_Betacam = new DevExpress.XtraTreeList.Columns.TreeListColumn();
            this.ColDes_File = new DevExpress.XtraTreeList.Columns.TreeListColumn();
            this.ColDes_DVD = new DevExpress.XtraTreeList.Columns.TreeListColumn();
            this.ColDes_Cap = new DevExpress.XtraTreeList.Columns.TreeListColumn();
            this.ColDes_TenPM = new DevExpress.XtraTreeList.Columns.TreeListColumn();
            this.ColDes_TenCT = new DevExpress.XtraTreeList.Columns.TreeListColumn();
            this.ColDes_PhongBan = new DevExpress.XtraTreeList.Columns.TreeListColumn();
            this.ColDes_CongTy = new DevExpress.XtraTreeList.Columns.TreeListColumn();
            this.ColDes_Category = new DevExpress.XtraTreeList.Columns.TreeListColumn();
            this.gridBandChuongTrinh = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
            this.gridBandPostMaster = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
            ((System.ComponentModel.ISupportInitialize)(this.barManager1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.popupMenu1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.popupMenuFilter)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.dockManager1)).BeginInit();
            this.dockPanel1.SuspendLayout();
            this.dockPanel1_Container.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.popupControlContainerFilter)).BeginInit();
            this.popupControlContainerFilter.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.ChuaTra.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridControlDetail)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridViewDetail)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.TapSoDen.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.TapSoTu.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.MaPMT.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.Category.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.TenChuongTrinh.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.CongTyMuon.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.BoPhanMuon.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.NguoiMuon.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.LoaiLuuTru.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.NuocSX.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.PostMaster.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.TietMuc.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl1)).BeginInit();
            this.splitContainerControl1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.gridControlMaster)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridViewMaster)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.xtraTabControlDetail)).BeginInit();
            this.xtraTabControlDetail.SuspendLayout();
            this.xtraTabPageDetail.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.TreeDes)).BeginInit();
            this.SuspendLayout();
            //
            // barManager1
            //
            this.barManager1.Bars.AddRange(new DevExpress.XtraBars.Bar[] {
            this.MainBar});
            this.barManager1.DockControls.Add(this.barDockControlTop);
            this.barManager1.DockControls.Add(this.barDockControlBottom);
            this.barManager1.DockControls.Add(this.barDockControlLeft);
            this.barManager1.DockControls.Add(this.barDockControlRight);
            this.barManager1.DockManager = this.dockManager1;
            this.barManager1.Form = this;
            this.barManager1.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
            this.barButtonItemAdd,
            this.barButtonItemDelete,
            this.barButtonItemUpdate,
            this.barButtonItemPrint,
            this.barStaticItem1,
            this.barButtonItem1,
            this.barButtonItem2,
            this.barButtonItemCommit,
            this.barButtonItemNoCommit,
            this.barSubItem1,
            this.barButtonItemXem,
            this.barButtonItemSearch,
            this.barButtonItemClose,
            this.barCheckItemFilter,
            this.barButtonItem3,
            this.barButtonItem4});
            this.barManager1.MaxItemId = 37;
            //
            // MainBar
            //
            this.MainBar.BarName = "MainBar";
            this.MainBar.DockCol = 0;
            this.MainBar.DockRow = 0;
            this.MainBar.DockStyle = DevExpress.XtraBars.BarDockStyle.Top;
            this.MainBar.FloatLocation = new System.Drawing.Point(39, 133);
            this.MainBar.FloatSize = new System.Drawing.Size(72, 73);
            this.MainBar.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemAdd),
            new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemXem),
            new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemDelete),
            new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemUpdate),
            new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemPrint, true),
            new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemCommit, true),
            new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemNoCommit),
            new DevExpress.XtraBars.LinkPersistInfo(this.barSubItem1, true),
            new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemSearch, true),
            new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemClose, true)});
            this.MainBar.OptionsBar.AllowQuickCustomization = false;
            this.MainBar.OptionsBar.DrawDragBorder = false;
            this.MainBar.OptionsBar.RotateWhenVertical = false;
            this.MainBar.OptionsBar.UseWholeRow = true;
            this.MainBar.Text = "Custom 1";
            //
            // barButtonItemAdd
            //
            this.barButtonItemAdd.Caption = "Thêm";
            this.barButtonItemAdd.Id = 0;
            this.barButtonItemAdd.Name = "barButtonItemAdd";
            this.barButtonItemAdd.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
            //
            // barButtonItemXem
            //
            this.barButtonItemXem.Caption = "&Xem";
            this.barButtonItemXem.Id = 24;
            this.barButtonItemXem.Name = "barButtonItemXem";
            this.barButtonItemXem.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
            //
            // barButtonItemDelete
            //
            this.barButtonItemDelete.Caption = "&Xóa";
            this.barButtonItemDelete.Id = 1;
            this.barButtonItemDelete.Name = "barButtonItemDelete";
            this.barButtonItemDelete.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
            //
            // barButtonItemUpdate
            //
            this.barButtonItemUpdate.Caption = "&Sửa";
            this.barButtonItemUpdate.Id = 2;
            this.barButtonItemUpdate.Name = "barButtonItemUpdate";
            this.barButtonItemUpdate.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
            //
            // barButtonItemPrint
            //
            this.barButtonItemPrint.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown;
            this.barButtonItemPrint.Caption = "&In";
            this.barButtonItemPrint.DropDownControl = this.popupMenu1;
            this.barButtonItemPrint.Id = 3;
            this.barButtonItemPrint.Name = "barButtonItemPrint";
            this.barButtonItemPrint.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
            //
            // popupMenu1
            //
            this.popupMenu1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem4)});
            this.popupMenu1.Manager = this.barManager1;
            this.popupMenu1.Name = "popupMenu1";
            //
            // barButtonItem4
            //
            this.barButtonItem4.Caption = "Xem trước";
            this.barButtonItem4.Id = 33;
            this.barButtonItem4.Name = "barButtonItem4";
            //
            // barButtonItemCommit
            //
            this.barButtonItemCommit.Caption = "&Duyệt";
            this.barButtonItemCommit.Id = 17;
            this.barButtonItemCommit.Name = "barButtonItemCommit";
            this.barButtonItemCommit.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
            //
            // barButtonItemNoCommit
            //
            this.barButtonItemNoCommit.Caption = "&Không duyệt";
            this.barButtonItemNoCommit.Id = 18;
            this.barButtonItemNoCommit.Name = "barButtonItemNoCommit";
            this.barButtonItemNoCommit.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
            //
            // barSubItem1
            //
            this.barSubItem1.Caption = "Nghiệp vụ";
            this.barSubItem1.Id = 20;
            this.barSubItem1.Name = "barSubItem1";
            this.barSubItem1.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
            //
            // barButtonItemSearch
            //
            this.barButtonItemSearch.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown;
            this.barButtonItemSearch.Caption = "Tìm kiếm";
            this.barButtonItemSearch.DropDownControl = this.popupMenuFilter;
            this.barButtonItemSearch.Id = 27;
            this.barButtonItemSearch.Name = "barButtonItemSearch";
            this.barButtonItemSearch.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
            //
            // popupMenuFilter
            //
            this.popupMenuFilter.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.barCheckItemFilter)});
            this.popupMenuFilter.Manager = this.barManager1;
            this.popupMenuFilter.Name = "popupMenuFilter";
            //
            // barCheckItemFilter
            //
            this.barCheckItemFilter.Caption = "Điều &kiện lọc";
            this.barCheckItemFilter.Checked = true;
            this.barCheckItemFilter.Id = 29;
            this.barCheckItemFilter.Name = "barCheckItemFilter";
            this.barCheckItemFilter.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
            this.barCheckItemFilter.CheckedChanged += new DevExpress.XtraBars.ItemClickEventHandler(this.barCheckItemFilter_CheckedChanged);
            //
            // barButtonItemClose
            //
            this.barButtonItemClose.Caption = "Đóng";
            this.barButtonItemClose.Id = 28;
            this.barButtonItemClose.Name = "barButtonItemClose";
            this.barButtonItemClose.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
            //
            // barDockControlTop
            //
            this.barDockControlTop.Dock = System.Windows.Forms.DockStyle.Top;
            this.barDockControlTop.Location = new System.Drawing.Point(0, 0);
            this.barDockControlTop.Size = new System.Drawing.Size(1000, 24);
            //
            // barDockControlBottom
            //
            this.barDockControlBottom.Dock = System.Windows.Forms.DockStyle.Bottom;
            this.barDockControlBottom.Location = new System.Drawing.Point(0, 545);
            this.barDockControlBottom.Size = new System.Drawing.Size(1000, 0);
            //
            // barDockControlLeft
            //
            this.barDockControlLeft.Dock = System.Windows.Forms.DockStyle.Left;
            this.barDockControlLeft.Location = new System.Drawing.Point(0, 24);
            this.barDockControlLeft.Size = new System.Drawing.Size(0, 521);
            //
            // barDockControlRight
            //
            this.barDockControlRight.Dock = System.Windows.Forms.DockStyle.Right;
            this.barDockControlRight.Location = new System.Drawing.Point(1000, 24);
            this.barDockControlRight.Size = new System.Drawing.Size(0, 521);
            //
            // dockManager1
            //
            this.dockManager1.Form = this;
            this.dockManager1.RootPanels.AddRange(new DevExpress.XtraBars.Docking.DockPanel[] {
            this.dockPanel1});
            this.dockManager1.TopZIndexControls.AddRange(new string[] {
            "DevExpress.XtraBars.BarDockControl",
            "DevExpress.XtraBars.StandaloneBarDockControl",
            "System.Windows.Forms.StatusBar",
            "DevExpress.XtraBars.Ribbon.RibbonStatusBar",
            "DevExpress.XtraBars.Ribbon.RibbonControl"});
            //
            // dockPanel1
            //
            this.dockPanel1.Controls.Add(this.dockPanel1_Container);
            this.dockPanel1.Dock = DevExpress.XtraBars.Docking.DockingStyle.Top;
            this.dockPanel1.FloatVertical = true;
            this.dockPanel1.ID = new System.Guid("437240ce-168d-4c05-a0b9-c702ea5e41f7");
            this.dockPanel1.Location = new System.Drawing.Point(0, 24);
            this.dockPanel1.Name = "dockPanel1";
            this.dockPanel1.Options.AllowDockLeft = false;
            this.dockPanel1.Options.AllowDockRight = false;
            this.dockPanel1.OriginalSize = new System.Drawing.Size(200, 139);
            this.dockPanel1.Size = new System.Drawing.Size(1000, 139);
            this.dockPanel1.Text = "Điều kiện tìm kiếm";
            this.dockPanel1.VisibilityChanged += new DevExpress.XtraBars.Docking.VisibilityChangedEventHandler(this.dockPanel1_VisibilityChanged);
            //
            // dockPanel1_Container
            //
            this.dockPanel1_Container.Controls.Add(this.popupControlContainerFilter);
            this.dockPanel1_Container.Location = new System.Drawing.Point(3, 25);
            this.dockPanel1_Container.Name = "dockPanel1_Container";
            this.dockPanel1_Container.Size = new System.Drawing.Size(994, 111);
            this.dockPanel1_Container.TabIndex = 0;
            //
            // popupControlContainerFilter
            //
            this.popupControlContainerFilter.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
            this.popupControlContainerFilter.Controls.Add(this.ChuaTra);
            this.popupControlContainerFilter.Controls.Add(this.ngayTra);
            this.popupControlContainerFilter.Controls.Add(this.label29);
            this.popupControlContainerFilter.Controls.Add(this.gridControlDetail);
            this.popupControlContainerFilter.Controls.Add(this.TapSoDen);
            this.popupControlContainerFilter.Controls.Add(this.TapSoTu);
            this.popupControlContainerFilter.Controls.Add(this.plLabel8);
            this.popupControlContainerFilter.Controls.Add(this.plLabel15);
            this.popupControlContainerFilter.Controls.Add(this.plLabel5);
            this.popupControlContainerFilter.Controls.Add(this.plLabel12);
            this.popupControlContainerFilter.Controls.Add(this.PhongBan);
            this.popupControlContainerFilter.Controls.Add(this.NgayMuon);
            this.popupControlContainerFilter.Controls.Add(this.MaPMT);
            this.popupControlContainerFilter.Controls.Add(this.Category);
            this.popupControlContainerFilter.Controls.Add(this.TenChuongTrinh);
            this.popupControlContainerFilter.Controls.Add(this.CongTyMuon);
            this.popupControlContainerFilter.Controls.Add(this.BoPhanMuon);
            this.popupControlContainerFilter.Controls.Add(this.NguoiMuon);
            this.popupControlContainerFilter.Controls.Add(this.LoaiLuuTru);
            this.popupControlContainerFilter.Controls.Add(this.NuocSX);
            this.popupControlContainerFilter.Controls.Add(this.PostMaster);
            this.popupControlContainerFilter.Controls.Add(this.TietMuc);
            this.popupControlContainerFilter.Controls.Add(this.plLabel2);
            this.popupControlContainerFilter.Controls.Add(this.plLabel4);
            this.popupControlContainerFilter.Controls.Add(this.plLabel7);
            this.popupControlContainerFilter.Controls.Add(this.plLabel6);
            this.popupControlContainerFilter.Controls.Add(this.label10);
            this.popupControlContainerFilter.Controls.Add(this.label1);
            this.popupControlContainerFilter.Controls.Add(this.plLabel3);
            this.popupControlContainerFilter.Controls.Add(this.plLabel1);
            this.popupControlContainerFilter.Controls.Add(this.label3);
            this.popupControlContainerFilter.Controls.Add(this.label5);
            this.popupControlContainerFilter.Dock = System.Windows.Forms.DockStyle.Fill;
            this.popupControlContainerFilter.Location = new System.Drawing.Point(0, 0);
            this.popupControlContainerFilter.Manager = this.barManager1;
            this.popupControlContainerFilter.Name = "popupControlContainerFilter";
            this.popupControlContainerFilter.Size = new System.Drawing.Size(994, 111);
            this.popupControlContainerFilter.TabIndex = 5;
            this.popupControlContainerFilter.Visible = false;
            //
            // ChuaTra
            //
            this.ChuaTra.Location = new System.Drawing.Point(908, 84);
            this.ChuaTra.MenuManager = this.barManager1;
            this.ChuaTra.Name = "ChuaTra";
            this.ChuaTra.Properties.Caption = "Chưa trả";
            this.ChuaTra.Properties.GlyphAlignment = DevExpress.Utils.HorzAlignment.Default;
            this.ChuaTra.Size = new System.Drawing.Size(65, 19);
            this.ChuaTra.TabIndex = 243;
            //
            // ngayTra
            //
            this.ngayTra.Caption = "Từ ngày 4/16/2012 đến ngày 4/23/2012";
            this.ngayTra.Default = ProtocolVN.Framework.Win.Trial.SelectionTypes.FromDateToDate;
            this.ngayTra.FirstFrom = new System.DateTime(2012, 4, 16, 11, 28, 34, 0);
            this.ngayTra.FirstTo = new System.DateTime(2012, 4, 23, 11, 28, 34, 0);
            this.ngayTra.FromDate = new System.DateTime(2012, 4, 16, 11, 28, 34, 0);
            this.ngayTra.Location = new System.Drawing.Point(533, 83);
            this.ngayTra.Name = "ngayTra";
            this.ngayTra.ReturnType = ProtocolVN.Framework.Win.Trial.TimeType.Date;
            this.ngayTra.SecondFrom = new System.DateTime(2012, 4, 16, 11, 28, 34, 0);
            this.ngayTra.SecondTo = new System.DateTime(2012, 4, 23, 11, 28, 34, 0);
            this.ngayTra.SelectedType = ProtocolVN.Framework.Win.Trial.SelectionTypes.FromDateToDate;
            this.ngayTra.Size = new System.Drawing.Size(285, 21);
            this.ngayTra.TabIndex = 226;
            this.ngayTra.ToDate = new System.DateTime(2012, 4, 23, 11, 28, 34, 0);
            this.ngayTra.Types = ((ProtocolVN.Framework.Win.Trial.SelectionTypes)(((((((((ProtocolVN.Framework.Win.Trial.SelectionTypes.OneDate | ProtocolVN.Framework.Win.Trial.SelectionTypes.OneMonth)
                        | ProtocolVN.Framework.Win.Trial.SelectionTypes.OneQuarter)
                        | ProtocolVN.Framework.Win.Trial.SelectionTypes.OneYear)
                        | ProtocolVN.Framework.Win.Trial.SelectionTypes.SixMonths)
                        | ProtocolVN.Framework.Win.Trial.SelectionTypes.FromDateToDate)
                        | ProtocolVN.Framework.Win.Trial.SelectionTypes.FromMonthToMonth)
                        | ProtocolVN.Framework.Win.Trial.SelectionTypes.FromQuarterToQuarter)
                        | ProtocolVN.Framework.Win.Trial.SelectionTypes.FromYearToYear)));
            //
            // label29
            //
            this.label29.Location = new System.Drawing.Point(485, 87);
            this.label29.Name = "label29";
            this.label29.Size = new System.Drawing.Size(42, 13);
            this.label29.TabIndex = 217;
            this.label29.Text = "Ngày trả";

            //
            // gridControlDetail
            //
            this.gridControlDetail.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("gridControlDetail.BackgroundImage")));
            this.gridControlDetail.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
            this.gridControlDetail.Location = new System.Drawing.Point(974, 138);
            this.gridControlDetail.MainView = this.gridViewDetail;
            this.gridControlDetail.MenuManager = this.barManager1;
            this.gridControlDetail.Name = "gridControlDetail";
            this.gridControlDetail.Size = new System.Drawing.Size(10, 10);
            this.gridControlDetail.TabIndex = 0;
            this.gridControlDetail.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
            this.gridViewDetail});
            this.gridControlDetail.Visible = false;
            //
            // gridViewDetail
            //
            this.gridViewDetail.Appearance.HeaderPanel.Options.UseTextOptions = true;
            this.gridViewDetail.Appearance.HeaderPanel.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridViewDetail.GridControl = this.gridControlDetail;
            this.gridViewDetail.IndicatorWidth = 40;
            this.gridViewDetail.Name = "gridViewDetail";
            this.gridViewDetail.OptionsBehavior.Editable = false;
            this.gridViewDetail.OptionsLayout.Columns.AddNewColumns = false;
            this.gridViewDetail.OptionsNavigation.AutoFocusNewRow = true;
            this.gridViewDetail.OptionsNavigation.EnterMoveNextColumn = true;
            this.gridViewDetail.OptionsPrint.UsePrintStyles = true;
            this.gridViewDetail.OptionsSelection.MultiSelect = true;
            this.gridViewDetail.OptionsView.EnableAppearanceEvenRow = true;
            this.gridViewDetail.OptionsView.EnableAppearanceOddRow = true;
            this.gridViewDetail.OptionsView.NewItemRowPosition = DevExpress.XtraGrid.Views.Grid.NewItemRowPosition.Bottom;
            this.gridViewDetail.OptionsView.ShowGroupedColumns = true;
            this.gridViewDetail.OptionsView.ShowGroupPanel = false;
            this.gridViewDetail.OptionsView.ShowViewCaption = true;
            this.gridViewDetail.ViewCaption = "Biên mục (Cấp 3)";
            //
            // TapSoDen
            //
            this.TapSoDen.EditValue = new decimal(new int[] {
            0,
            0,
            0,
            0});
            this.TapSoDen.Location = new System.Drawing.Point(925, 32);
            this.TapSoDen.Name = "TapSoDen";
            this.TapSoDen.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton()});
            this.TapSoDen.Size = new System.Drawing.Size(59, 20);
            this.TapSoDen.TabIndex = 241;
            //
            // TapSoTu
            //
            this.TapSoTu.EditValue = new decimal(new int[] {
            0,
            0,
            0,
            0});
            this.TapSoTu.Location = new System.Drawing.Point(837, 32);
            this.TapSoTu.Name = "TapSoTu";
            this.TapSoTu.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton()});
            this.TapSoTu.Size = new System.Drawing.Size(56, 20);
            this.TapSoTu.TabIndex = 242;
            //
            // plLabel8
            //
            this.plLabel8.Location = new System.Drawing.Point(772, 33);
            this.plLabel8.Name = "plLabel8";
            this.plLabel8.Size = new System.Drawing.Size(46, 13);
            this.plLabel8.TabIndex = 239;
            this.plLabel8.Text = "Tập số từ";

            //
            // plLabel15
            //
            this.plLabel15.Location = new System.Drawing.Point(901, 37);
            this.plLabel15.Name = "plLabel15";
            this.plLabel15.Size = new System.Drawing.Size(18, 13);
            this.plLabel15.TabIndex = 239;
            this.plLabel15.Text = "đến";

            //
            // plLabel5
            //
            this.plLabel5.Location = new System.Drawing.Point(269, 60);
            this.plLabel5.Name = "plLabel5";
            this.plLabel5.Size = new System.Drawing.Size(40, 13);
            this.plLabel5.TabIndex = 240;
            this.plLabel5.Text = "Tiết mục";

            //
            // plLabel12
            //
            this.plLabel12.Location = new System.Drawing.Point(772, 63);
            this.plLabel12.Name = "plLabel12";
            this.plLabel12.Size = new System.Drawing.Size(51, 13);
            this.plLabel12.TabIndex = 240;
            this.plLabel12.Text = "Phòng ban";

            //
            // PhongBan
            //
            this.PhongBan.Location = new System.Drawing.Point(837, 59);
            this.PhongBan.Name = "PhongBan";
            this.PhongBan.Size = new System.Drawing.Size(147, 20);
            this.PhongBan.TabIndex = 10;
            //
            // NgayMuon
            //
            this.NgayMuon.Caption = "Từ ngày 4/16/2012 đến ngày 4/23/2012";
            this.NgayMuon.Default = ProtocolVN.Framework.Win.Trial.SelectionTypes.FromDateToDate;
            this.NgayMuon.FirstFrom = new System.DateTime(2012, 4, 16, 11, 28, 38, 734);
            this.NgayMuon.FirstTo = new System.DateTime(2012, 4, 23, 11, 28, 38, 734);
            this.NgayMuon.FromDate = new System.DateTime(2012, 4, 16, 11, 28, 38, 734);
            this.NgayMuon.Location = new System.Drawing.Point(74, 83);
            this.NgayMuon.Name = "NgayMuon";
            this.NgayMuon.ReturnType = ProtocolVN.Framework.Win.Trial.TimeType.Date;
            this.NgayMuon.SecondFrom = new System.DateTime(2012, 4, 16, 11, 28, 38, 734);
            this.NgayMuon.SecondTo = new System.DateTime(2012, 4, 23, 11, 28, 38, 734);
            this.NgayMuon.SelectedType = ProtocolVN.Framework.Win.Trial.SelectionTypes.FromDateToDate;
            this.NgayMuon.Size = new System.Drawing.Size(285, 21);
            this.NgayMuon.TabIndex = 226;
            this.NgayMuon.ToDate = new System.DateTime(2012, 4, 23, 11, 28, 38, 734);
            this.NgayMuon.Types = ((ProtocolVN.Framework.Win.Trial.SelectionTypes)(((((((((ProtocolVN.Framework.Win.Trial.SelectionTypes.OneDate | ProtocolVN.Framework.Win.Trial.SelectionTypes.OneMonth)
                        | ProtocolVN.Framework.Win.Trial.SelectionTypes.OneQuarter)
                        | ProtocolVN.Framework.Win.Trial.SelectionTypes.OneYear)
                        | ProtocolVN.Framework.Win.Trial.SelectionTypes.SixMonths)
                        | ProtocolVN.Framework.Win.Trial.SelectionTypes.FromDateToDate)
                        | ProtocolVN.Framework.Win.Trial.SelectionTypes.FromMonthToMonth)
                        | ProtocolVN.Framework.Win.Trial.SelectionTypes.FromQuarterToQuarter)
                        | ProtocolVN.Framework.Win.Trial.SelectionTypes.FromYearToYear)));
            //
            // MaPMT
            //
            this.MaPMT.Location = new System.Drawing.Point(74, 7);
            this.MaPMT.Name = "MaPMT";
            this.MaPMT.Size = new System.Drawing.Size(192, 20);
            this.MaPMT.TabIndex = 223;
            //
            // Category
            //
            this.Category._DataSource = null;
            this.Category._GetField = null;
            this.Category.Location = new System.Drawing.Point(593, 6);
            this.Category.Name = "Category";
            this.Category.Properties.CloseUpKey = new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None);
            this.Category.Size = new System.Drawing.Size(173, 20);
            this.Category.TabIndex = 222;
            //
            // TenChuongTrinh
            //
            this.TenChuongTrinh._DataSource = null;
            this.TenChuongTrinh._GetField = null;
            this.TenChuongTrinh.Location = new System.Drawing.Point(339, 32);
            this.TenChuongTrinh.Name = "TenChuongTrinh";
            this.TenChuongTrinh.Properties.CloseUpKey = new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None);
            this.TenChuongTrinh.Size = new System.Drawing.Size(187, 20);
            this.TenChuongTrinh.TabIndex = 222;
            //
            // CongTyMuon
            //
            this.CongTyMuon._DataSource = null;
            this.CongTyMuon._GetField = null;
            this.CongTyMuon.Location = new System.Drawing.Point(340, 6);
            this.CongTyMuon.Name = "CongTyMuon";
            this.CongTyMuon.Properties.CloseUpKey = new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None);
            this.CongTyMuon.Size = new System.Drawing.Size(187, 20);
            this.CongTyMuon.TabIndex = 222;
            //
            // BoPhanMuon
            //
            this.BoPhanMuon._DataSource = null;
            this.BoPhanMuon._GetField = null;
            this.BoPhanMuon.Location = new System.Drawing.Point(74, 56);
            this.BoPhanMuon.Name = "BoPhanMuon";
            this.BoPhanMuon.Properties.CloseUpKey = new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None);
            this.BoPhanMuon.Size = new System.Drawing.Size(192, 20);
            this.BoPhanMuon.TabIndex = 222;
            //
            // NguoiMuon
            //
            this.NguoiMuon._DataSource = null;
            this.NguoiMuon._GetField = null;
            this.NguoiMuon.Location = new System.Drawing.Point(74, 31);
            this.NguoiMuon.Name = "NguoiMuon";
            this.NguoiMuon.Properties.CloseUpKey = new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None);
            this.NguoiMuon.Size = new System.Drawing.Size(192, 20);
            this.NguoiMuon.TabIndex = 222;
            //
            // LoaiLuuTru
            //
            this.LoaiLuuTru.DataSource = null;
            this.LoaiLuuTru.DisplayField = null;
            this.LoaiLuuTru.Location = new System.Drawing.Point(837, 6);
            this.LoaiLuuTru.Name = "LoaiLuuTru";
            this.LoaiLuuTru.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.LoaiLuuTru.Size = new System.Drawing.Size(147, 20);
            this.LoaiLuuTru.TabIndex = 220;
            this.LoaiLuuTru.ValueField = null;
            //
            // NuocSX
            //
            this.NuocSX.DataSource = null;
            this.NuocSX.DisplayField = null;
            this.NuocSX.Location = new System.Drawing.Point(593, 30);
            this.NuocSX.Name = "NuocSX";
            this.NuocSX.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.NuocSX.Size = new System.Drawing.Size(173, 20);
            this.NuocSX.TabIndex = 220;
            this.NuocSX.ValueField = null;
            //
            // PostMaster
            //
            this.PostMaster.DataSource = null;
            this.PostMaster.DisplayField = null;
            this.PostMaster.Location = new System.Drawing.Point(593, 56);
            this.PostMaster.Name = "PostMaster";
            this.PostMaster.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.PostMaster.Size = new System.Drawing.Size(173, 20);
            this.PostMaster.TabIndex = 220;
            this.PostMaster.ValueField = null;
            //
            // TietMuc
            //
            this.TietMuc.DataSource = null;
            this.TietMuc.DisplayField = null;
            this.TietMuc.Location = new System.Drawing.Point(339, 56);
            this.TietMuc.Name = "TietMuc";
            this.TietMuc.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.TietMuc.Size = new System.Drawing.Size(187, 20);
            this.TietMuc.TabIndex = 216;
            this.TietMuc.ValueField = null;
            //
            // plLabel2
            //
            this.plLabel2.Location = new System.Drawing.Point(772, 10);
            this.plLabel2.Name = "plLabel2";
            this.plLabel2.Size = new System.Drawing.Size(55, 13);
            this.plLabel2.TabIndex = 213;
            this.plLabel2.Text = "Loại lưu trữ";

            //
            // plLabel4
            //
            this.plLabel4.Location = new System.Drawing.Point(269, 35);
            this.plLabel4.Name = "plLabel4";
            this.plLabel4.Size = new System.Drawing.Size(34, 13);
            this.plLabel4.TabIndex = 213;
            this.plLabel4.Text = "Tên CT";

            //
            // plLabel7
            //
            this.plLabel7.Location = new System.Drawing.Point(532, 34);
            this.plLabel7.Name = "plLabel7";
            this.plLabel7.Size = new System.Drawing.Size(40, 13);
            this.plLabel7.TabIndex = 213;
            this.plLabel7.Text = "Nước SX";

            //
            // plLabel6
            //
            this.plLabel6.Location = new System.Drawing.Point(532, 12);
            this.plLabel6.Name = "plLabel6";
            this.plLabel6.Size = new System.Drawing.Size(45, 13);
            this.plLabel6.TabIndex = 213;
            this.plLabel6.Text = "Category";

            //
            // label10
            //
            this.label10.Location = new System.Drawing.Point(532, 59);
            this.label10.Name = "label10";
            this.label10.Size = new System.Drawing.Size(58, 13);
            this.label10.TabIndex = 213;
            this.label10.Text = "Post/Master";

            //
            // label1
            //
            this.label1.Location = new System.Drawing.Point(4, 12);
            this.label1.Name = "label1";
            this.label1.Size = new System.Drawing.Size(37, 13);
            this.label1.TabIndex = 214;
            this.label1.Text = "Mã PMT";

            //
            // plLabel3
            //
            this.plLabel3.Location = new System.Drawing.Point(269, 12);
            this.plLabel3.Name = "plLabel3";
            this.plLabel3.Size = new System.Drawing.Size(68, 13);
            this.plLabel3.TabIndex = 217;
            this.plLabel3.Text = "Công ty mượn";

            //
            // plLabel1
            //
            this.plLabel1.Location = new System.Drawing.Point(2, 87);
            this.plLabel1.Name = "plLabel1";
            this.plLabel1.Size = new System.Drawing.Size(55, 13);
            this.plLabel1.TabIndex = 217;
            this.plLabel1.Text = "Ngày mượn";

            //
            // label3
            //
            this.label3.Location = new System.Drawing.Point(3, 34);
            this.label3.Name = "label3";
            this.label3.Size = new System.Drawing.Size(58, 13);
            this.label3.TabIndex = 218;
            this.label3.Text = "Người mượn";

            //
            // label5
            //
            this.label5.Location = new System.Drawing.Point(2, 60);
            this.label5.Name = "label5";
            this.label5.Size = new System.Drawing.Size(69, 13);
            this.label5.TabIndex = 219;
            this.label5.Text = "Bộ phận mượn";

            //
            // barStaticItem1
            //
            this.barStaticItem1.AutoSize = DevExpress.XtraBars.BarStaticItemSize.None;
            this.barStaticItem1.Border = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
            this.barStaticItem1.Id = 13;
            this.barStaticItem1.Name = "barStaticItem1";
            this.barStaticItem1.TextAlignment = System.Drawing.StringAlignment.Near;
            this.barStaticItem1.Width = 100;
            //
            // barButtonItem1
            //
            this.barButtonItem1.Caption = "barButtonItem1";
            this.barButtonItem1.Id = 14;
            this.barButtonItem1.Name = "barButtonItem1";
            //
            // barButtonItem2
            //
            this.barButtonItem2.Caption = "barButtonItem2";
            this.barButtonItem2.Id = 15;
            this.barButtonItem2.Name = "barButtonItem2";
            //
            // barButtonItem3
            //
            this.barButtonItem3.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown;
            this.barButtonItem3.Caption = "In";
            this.barButtonItem3.Id = 30;
            this.barButtonItem3.Name = "barButtonItem3";
            //
            // splitContainerControl1
            //
            this.splitContainerControl1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.splitContainerControl1.Horizontal = false;
            this.splitContainerControl1.Location = new System.Drawing.Point(0, 163);
            this.splitContainerControl1.Name = "splitContainerControl1";
            this.splitContainerControl1.Panel1.Controls.Add(this.gridControlMaster);
            this.splitContainerControl1.Panel1.Text = "splitContainerControl1_Panel1";
            this.splitContainerControl1.Panel2.Controls.Add(this.xtraTabControlDetail);
            this.splitContainerControl1.Panel2.Text = "splitContainerControl1_Panel2";
            this.splitContainerControl1.Size = new System.Drawing.Size(1000, 382);
            this.splitContainerControl1.SplitterPosition = 199;
            this.splitContainerControl1.TabIndex = 4;
            this.splitContainerControl1.Text = "splitContainerControl1";
            //
            // gridControlMaster
            //
            this.gridControlMaster.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("gridControlMaster.BackgroundImage")));
            this.gridControlMaster.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
            this.gridControlMaster.Dock = System.Windows.Forms.DockStyle.Fill;
            this.gridControlMaster.Location = new System.Drawing.Point(0, 0);
            this.gridControlMaster.MainView = this.gridViewMaster;
            this.gridControlMaster.Name = "gridControlMaster";
            this.gridControlMaster.Size = new System.Drawing.Size(1000, 199);
            this.gridControlMaster.TabIndex = 10;
            this.gridControlMaster.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
            this.gridViewMaster});
            //
            // gridViewMaster
            //
            this.gridViewMaster.Appearance.HeaderPanel.Options.UseTextOptions = true;
            this.gridViewMaster.Appearance.HeaderPanel.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridViewMaster.Bands.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.GridBand[] {
            this.gridBandChuongTrinh,
            this.gridBandPostMaster});
            this.gridViewMaster.Columns.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn[] {
            this.Col_MaPhieu,
            this.Col_NguoiMuon,
            this.Col_BoPhanMuon,
            this.Col_CongTyMuon,
            this.Col_NgayMuon,
            this.Col_MucDich,
            this.Col_NgayTra,
            this.Col_NguoiTao,
            this.Col_NgayTao,
            this.Col_PhongBan,
            this.Col_CongTy});
            this.gridViewMaster.GridControl = this.gridControlMaster;
            this.gridViewMaster.IndicatorWidth = 40;
            this.gridViewMaster.Name = "gridViewMaster";
            this.gridViewMaster.OptionsLayout.Columns.AddNewColumns = false;
            this.gridViewMaster.OptionsNavigation.AutoFocusNewRow = true;
            this.gridViewMaster.OptionsNavigation.EnterMoveNextColumn = true;
            this.gridViewMaster.OptionsPrint.UsePrintStyles = true;
            this.gridViewMaster.OptionsView.EnableAppearanceEvenRow = true;
            this.gridViewMaster.OptionsView.EnableAppearanceOddRow = true;
            this.gridViewMaster.OptionsView.NewItemRowPosition = DevExpress.XtraGrid.Views.Grid.NewItemRowPosition.Bottom;
            this.gridViewMaster.OptionsView.ShowGroupPanel = false;
            this.gridViewMaster.OptionsView.ShowViewCaption = true;
            this.gridViewMaster.ViewCaption = "Danh sách phiếu mượn/trả";
            //
            // Col_MaPhieu
            //
            this.Col_MaPhieu.Caption = "Mã PMT";
            this.Col_MaPhieu.Name = "Col_MaPhieu";
            this.Col_MaPhieu.ToolTip = "Mã phiếu mượn trả";
            this.Col_MaPhieu.Visible = true;
            this.Col_MaPhieu.Width = 49;
            //
            // Col_NguoiMuon
            //
            this.Col_NguoiMuon.Caption = "Người mượn";
            this.Col_NguoiMuon.Name = "Col_NguoiMuon";
            this.Col_NguoiMuon.Visible = true;
            this.Col_NguoiMuon.Width = 70;
            //
            // Col_BoPhanMuon
            //
            this.Col_BoPhanMuon.Caption = "Bộ phận mượn";
            this.Col_BoPhanMuon.Name = "Col_BoPhanMuon";
            this.Col_BoPhanMuon.Visible = true;
            this.Col_BoPhanMuon.Width = 81;
            //
            // Col_CongTyMuon
            //
            this.Col_CongTyMuon.Caption = "Công ty mượn";
            this.Col_CongTyMuon.Name = "Col_CongTyMuon";
            this.Col_CongTyMuon.Visible = true;
            this.Col_CongTyMuon.Width = 80;
            //
            // Col_NgayMuon
            //
            this.Col_NgayMuon.Caption = "Ngày mượn";
            this.Col_NgayMuon.Name = "Col_NgayMuon";
            this.Col_NgayMuon.Visible = true;
            this.Col_NgayMuon.Width = 67;
            //
            // Col_MucDich
            //
            this.Col_MucDich.Caption = "Mục đích mượn";
            this.Col_MucDich.Name = "Col_MucDich";
            this.Col_MucDich.Visible = true;
            this.Col_MucDich.Width = 83;
            //
            // Col_NgayTra
            //
            this.Col_NgayTra.Caption = "Ngày trả";
            this.Col_NgayTra.Name = "Col_NgayTra";
            this.Col_NgayTra.Visible = true;
            this.Col_NgayTra.Width = 54;
            //
            // Col_NguoiTao
            //
            this.Col_NguoiTao.Caption = "Người tạo";
            this.Col_NguoiTao.Name = "Col_NguoiTao";
            this.Col_NguoiTao.Visible = true;
            this.Col_NguoiTao.Width = 59;
            //
            // Col_NgayTao
            //
            this.Col_NgayTao.Caption = "Ngày tạo";
            this.Col_NgayTao.Name = "Col_NgayTao";
            this.Col_NgayTao.Visible = true;
            this.Col_NgayTao.Width = 56;
            //
            // Col_PhongBan
            //
            this.Col_PhongBan.Caption = "Phòng ban";
            this.Col_PhongBan.Name = "Col_PhongBan";
            this.Col_PhongBan.Visible = true;
            this.Col_PhongBan.Width = 63;
            //
            // Col_CongTy
            //
            this.Col_CongTy.Caption = "Công ty";
            this.Col_CongTy.Name = "Col_CongTy";
            this.Col_CongTy.Visible = true;
            this.Col_CongTy.Width = 50;
            //
            // xtraTabControlDetail
            //
            this.xtraTabControlDetail.Appearance.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(192)))));
            this.xtraTabControlDetail.Appearance.Options.UseBorderColor = true;
            this.xtraTabControlDetail.Dock = System.Windows.Forms.DockStyle.Fill;
            this.xtraTabControlDetail.Location = new System.Drawing.Point(0, 0);
            this.xtraTabControlDetail.Name = "xtraTabControlDetail";
            this.xtraTabControlDetail.SelectedTabPage = this.xtraTabPageDetail;
            this.xtraTabControlDetail.Size = new System.Drawing.Size(1000, 177);
            this.xtraTabControlDetail.TabIndex = 10;
            this.xtraTabControlDetail.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
            this.xtraTabPageDetail});
            //
            // xtraTabPageDetail
            //
            this.xtraTabPageDetail.Controls.Add(this.TreeDes);
            this.xtraTabPageDetail.Name = "xtraTabPageDetail";
            this.xtraTabPageDetail.Size = new System.Drawing.Size(993, 148);
            this.xtraTabPageDetail.Text = "Danh sách chương trình - post/master - biên mục mượn/trả của phiếu đang chọn";
            //
            // TreeDes
            //
            this.TreeDes.Appearance.HeaderPanel.Options.UseTextOptions = true;
            this.TreeDes.Appearance.HeaderPanel.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.TreeDes.Columns.AddRange(new DevExpress.XtraTreeList.Columns.TreeListColumn[] {
            this.ColDes_Ten,
            this.treeListColumn2,
            this.ColDes_TenGoc,
            this.ColDes_NuocSX,
            this.ColDes_TietMuc,
            this.ColDes_SoTapGoc,
            this.ColDes_LoaiLuuTru,
            this.ColDes_Betacam,
            this.ColDes_File,
            this.ColDes_DVD,
            this.ColDes_Cap,
            this.ColDes_TenPM,
            this.ColDes_TenCT,
            this.ColDes_PhongBan,
            this.ColDes_CongTy,
            this.ColDes_Category});
            this.TreeDes.Dock = System.Windows.Forms.DockStyle.Fill;
            this.TreeDes.Location = new System.Drawing.Point(0, 0);
            this.TreeDes.Name = "TreeDes";
            this.TreeDes.OptionsBehavior.AllowExpandOnDblClick = false;
            this.TreeDes.OptionsBehavior.AutoFocusNewNode = true;
            this.TreeDes.OptionsBehavior.AutoMoveRowFocus = true;
            this.TreeDes.OptionsSelection.MultiSelect = true;
            this.TreeDes.OptionsView.EnableAppearanceEvenRow = true;
            this.TreeDes.OptionsView.EnableAppearanceOddRow = true;
            this.TreeDes.Size = new System.Drawing.Size(993, 148);
            this.TreeDes.TabIndex = 35;
            //
            // ColDes_Ten
            //
            this.ColDes_Ten.Caption = "Tên";
            this.ColDes_Ten.FieldName = "Được quyền xóa";
            this.ColDes_Ten.Name = "ColDes_Ten";
            this.ColDes_Ten.OptionsColumn.AllowEdit = false;
            this.ColDes_Ten.OptionsColumn.AllowFocus = false;
            this.ColDes_Ten.Visible = true;
            this.ColDes_Ten.VisibleIndex = 0;
            this.ColDes_Ten.Width = 80;
            //
            // treeListColumn2
            //
            this.treeListColumn2.Caption = "Là nhóm";
            this.treeListColumn2.FieldName = "Là nhóm";
            this.treeListColumn2.Name = "treeListColumn2";
            this.treeListColumn2.OptionsColumn.AllowEdit = false;
            this.treeListColumn2.OptionsColumn.ShowInCustomizationForm = false;
            //
            // ColDes_TenGoc
            //
            this.ColDes_TenGoc.Caption = "Tên gốc";
            this.ColDes_TenGoc.FieldName = "Tên gốc";
            this.ColDes_TenGoc.Name = "ColDes_TenGoc";
            this.ColDes_TenGoc.OptionsColumn.AllowEdit = false;
            this.ColDes_TenGoc.OptionsColumn.AllowFocus = false;
            this.ColDes_TenGoc.Visible = true;
            this.ColDes_TenGoc.VisibleIndex = 1;
            this.ColDes_TenGoc.Width = 55;
            //
            // ColDes_NuocSX
            //
            this.ColDes_NuocSX.Caption = "Nước SX";
            this.ColDes_NuocSX.FieldName = "Được quyền thêm";
            this.ColDes_NuocSX.Name = "ColDes_NuocSX";
            this.ColDes_NuocSX.OptionsColumn.AllowEdit = false;
            this.ColDes_NuocSX.OptionsColumn.AllowFocus = false;
            this.ColDes_NuocSX.Visible = true;
            this.ColDes_NuocSX.VisibleIndex = 3;
            this.ColDes_NuocSX.Width = 54;
            //
            // ColDes_TietMuc
            //
            this.ColDes_TietMuc.Caption = "Tiết mục";
            this.ColDes_TietMuc.FieldName = "Được quyền xem";
            this.ColDes_TietMuc.Name = "ColDes_TietMuc";
            this.ColDes_TietMuc.OptionsColumn.AllowEdit = false;
            this.ColDes_TietMuc.OptionsColumn.AllowFocus = false;
            this.ColDes_TietMuc.Visible = true;
            this.ColDes_TietMuc.VisibleIndex = 6;
            this.ColDes_TietMuc.Width = 55;
            //
            // ColDes_SoTapGoc
            //
            this.ColDes_SoTapGoc.Caption = "Số tập gốc/cắt";
            this.ColDes_SoTapGoc.FieldName = "Được quyền sửa";
            this.ColDes_SoTapGoc.Name = "ColDes_SoTapGoc";
            this.ColDes_SoTapGoc.OptionsColumn.AllowEdit = false;
            this.ColDes_SoTapGoc.OptionsColumn.AllowFocus = false;
            this.ColDes_SoTapGoc.Visible = true;
            this.ColDes_SoTapGoc.VisibleIndex = 9;
            this.ColDes_SoTapGoc.Width = 86;
            //
            // ColDes_LoaiLuuTru
            //
            this.ColDes_LoaiLuuTru.Caption = "Loại lưu trữ";
            this.ColDes_LoaiLuuTru.FieldName = "Loại lưu trữ";
            this.ColDes_LoaiLuuTru.Name = "ColDes_LoaiLuuTru";
            this.ColDes_LoaiLuuTru.OptionsColumn.AllowEdit = false;
            this.ColDes_LoaiLuuTru.OptionsColumn.AllowFocus = false;
            this.ColDes_LoaiLuuTru.Visible = true;
            this.ColDes_LoaiLuuTru.VisibleIndex = 8;
            this.ColDes_LoaiLuuTru.Width = 70;
            //
            // ColDes_Betacam
            //
            this.ColDes_Betacam.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
            this.ColDes_Betacam.AppearanceHeader.ForeColor = System.Drawing.Color.Blue;
            this.ColDes_Betacam.AppearanceHeader.Options.UseFont = true;
            this.ColDes_Betacam.AppearanceHeader.Options.UseForeColor = true;
            this.ColDes_Betacam.Caption = "Betacam";
            this.ColDes_Betacam.FieldName = "Betacam";
            this.ColDes_Betacam.Name = "ColDes_Betacam";
            this.ColDes_Betacam.Visible = true;
            this.ColDes_Betacam.VisibleIndex = 12;
            this.ColDes_Betacam.Width = 53;
            //
            // ColDes_File
            //
            this.ColDes_File.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
            this.ColDes_File.AppearanceHeader.ForeColor = System.Drawing.Color.Blue;
            this.ColDes_File.AppearanceHeader.Options.UseFont = true;
            this.ColDes_File.AppearanceHeader.Options.UseForeColor = true;
            this.ColDes_File.Caption = "File";
            this.ColDes_File.FieldName = "File";
            this.ColDes_File.Name = "ColDes_File";
            this.ColDes_File.Visible = true;
            this.ColDes_File.VisibleIndex = 13;
            this.ColDes_File.Width = 50;
            //
            // ColDes_DVD
            //
            this.ColDes_DVD.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
            this.ColDes_DVD.AppearanceHeader.ForeColor = System.Drawing.Color.Blue;
            this.ColDes_DVD.AppearanceHeader.Options.UseFont = true;
            this.ColDes_DVD.AppearanceHeader.Options.UseForeColor = true;
            this.ColDes_DVD.Caption = "DVD";
            this.ColDes_DVD.FieldName = "DVD";
            this.ColDes_DVD.Name = "ColDes_DVD";
            this.ColDes_DVD.Visible = true;
            this.ColDes_DVD.VisibleIndex = 14;
            this.ColDes_DVD.Width = 49;
            //
            // ColDes_Cap
            //
            this.ColDes_Cap.Caption = "Cấp";
            this.ColDes_Cap.FieldName = "Cấp";
            this.ColDes_Cap.Name = "ColDes_Cap";
            this.ColDes_Cap.OptionsColumn.AllowEdit = false;
            this.ColDes_Cap.OptionsColumn.AllowFocus = false;
            this.ColDes_Cap.Visible = true;
            this.ColDes_Cap.VisibleIndex = 2;
            this.ColDes_Cap.Width = 79;
            //
            // ColDes_TenPM
            //
            this.ColDes_TenPM.Caption = "P/M";
            this.ColDes_TenPM.FieldName = "P/M";
            this.ColDes_TenPM.Name = "ColDes_TenPM";
            this.ColDes_TenPM.OptionsColumn.AllowEdit = false;
            this.ColDes_TenPM.OptionsColumn.AllowFocus = false;
            this.ColDes_TenPM.Visible = true;
            this.ColDes_TenPM.VisibleIndex = 5;
            this.ColDes_TenPM.Width = 79;
            //
            // ColDes_TenCT
            //
            this.ColDes_TenCT.Caption = "CT";
            this.ColDes_TenCT.FieldName = "CT";
            this.ColDes_TenCT.Name = "ColDes_TenCT";
            this.ColDes_TenCT.OptionsColumn.AllowEdit = false;
            this.ColDes_TenCT.OptionsColumn.AllowFocus = false;
            this.ColDes_TenCT.Visible = true;
            this.ColDes_TenCT.VisibleIndex = 4;
            this.ColDes_TenCT.Width = 79;
            //
            // ColDes_PhongBan
            //
            this.ColDes_PhongBan.Caption = "Phòng ban";
            this.ColDes_PhongBan.FieldName = "ColDes_PhongBan";
            this.ColDes_PhongBan.Name = "ColDes_PhongBan";
            this.ColDes_PhongBan.OptionsColumn.AllowEdit = false;
            this.ColDes_PhongBan.OptionsColumn.AllowFocus = false;
            this.ColDes_PhongBan.Visible = true;
            this.ColDes_PhongBan.VisibleIndex = 10;
            this.ColDes_PhongBan.Width = 79;
            //
            // ColDes_CongTy
            //
            this.ColDes_CongTy.Caption = "Công ty";
            this.ColDes_CongTy.FieldName = "Công ty";
            this.ColDes_CongTy.Name = "ColDes_CongTy";
            this.ColDes_CongTy.OptionsColumn.AllowEdit = false;
            this.ColDes_CongTy.OptionsColumn.AllowFocus = false;
            this.ColDes_CongTy.Visible = true;
            this.ColDes_CongTy.VisibleIndex = 11;
            this.ColDes_CongTy.Width = 79;
            //
            // ColDes_Category
            //
            this.ColDes_Category.Caption = "Category";
            this.ColDes_Category.FieldName = "Category";
            this.ColDes_Category.Name = "ColDes_Category";
            this.ColDes_Category.Visible = true;
            this.ColDes_Category.VisibleIndex = 7;
            //
            // gridBandChuongTrinh
            //
            this.gridBandChuongTrinh.AppearanceHeader.Options.UseTextOptions = true;
            this.gridBandChuongTrinh.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridBandChuongTrinh.Caption = "Thông tin mượn/trả";
            this.gridBandChuongTrinh.Columns.Add(this.Col_MaPhieu);
            this.gridBandChuongTrinh.Columns.Add(this.Col_NguoiMuon);
            this.gridBandChuongTrinh.Columns.Add(this.Col_BoPhanMuon);
            this.gridBandChuongTrinh.Columns.Add(this.Col_CongTyMuon);
            this.gridBandChuongTrinh.Columns.Add(this.Col_NgayMuon);
            this.gridBandChuongTrinh.Columns.Add(this.Col_MucDich);
            this.gridBandChuongTrinh.Columns.Add(this.Col_NgayTra);
            this.gridBandChuongTrinh.Name = "gridBandChuongTrinh";
            this.gridBandChuongTrinh.Width = 484;
            //
            // gridBandPostMaster
            //
            this.gridBandPostMaster.AppearanceHeader.Options.UseTextOptions = true;
            this.gridBandPostMaster.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridBandPostMaster.Caption = "Thông tin tạo phiếu";
            this.gridBandPostMaster.Columns.Add(this.Col_NguoiTao);
            this.gridBandPostMaster.Columns.Add(this.Col_NgayTao);
            this.gridBandPostMaster.Columns.Add(this.Col_PhongBan);
            this.gridBandPostMaster.Columns.Add(this.Col_CongTy);
            this.gridBandPostMaster.Name = "gridBandPostMaster";
            this.gridBandPostMaster.Width = 228;
            //
            // frmMuonTraQL
            //
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(1000, 545);
            this.Controls.Add(this.splitContainerControl1);
            this.Controls.Add(this.dockPanel1);
            this.Controls.Add(this.barDockControlLeft);
            this.Controls.Add(this.barDockControlRight);
            this.Controls.Add(this.barDockControlBottom);
            this.Controls.Add(this.barDockControlTop);
            this.Name = "frmMuonTraQL";
            this.ShowInTaskbar = false;
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
            this.Text = "Quản lý phiếu mượn trả";
            ((System.ComponentModel.ISupportInitialize)(this.barManager1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.popupMenu1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.popupMenuFilter)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.dockManager1)).EndInit();
            this.dockPanel1.ResumeLayout(false);
            this.dockPanel1_Container.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.popupControlContainerFilter)).EndInit();
            this.popupControlContainerFilter.ResumeLayout(false);
            this.popupControlContainerFilter.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.ChuaTra.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridControlDetail)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridViewDetail)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.TapSoDen.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.TapSoTu.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.MaPMT.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.Category.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.TenChuongTrinh.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.CongTyMuon.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.BoPhanMuon.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.NguoiMuon.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.LoaiLuuTru.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.NuocSX.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.PostMaster.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.TietMuc.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl1)).EndInit();
            this.splitContainerControl1.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.gridControlMaster)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridViewMaster)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.xtraTabControlDetail)).EndInit();
            this.xtraTabControlDetail.ResumeLayout(false);
            this.xtraTabPageDetail.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.TreeDes)).EndInit();
            this.ResumeLayout(false);
        }
コード例 #47
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.gridControlData = new DevExpress.XtraGrid.GridControl();
     this.advBandedGridViewData = new DevExpress.XtraGrid.Views.BandedGrid.AdvBandedGridView();
     this.gridColumn1 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.repositoryItemSearchLookUpEditstu_code = new DevExpress.XtraEditors.Repository.RepositoryItemSearchLookUpEdit();
     this.repositoryItemSearchLookUpEdit1View = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn7 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn12 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn14 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn2 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridColumn5 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridColumn6 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridColumn8 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.repositoryItemSearchLookUpEditDiscountsId = new DevExpress.XtraEditors.Repository.RepositoryItemSearchLookUpEdit();
     this.gridView3 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn15 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn9 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.repositoryItemCalcEditF2 = new DevExpress.XtraEditors.Repository.RepositoryItemCalcEdit();
     this.gridColumn3 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.repositoryItemButtonEditSave = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
     this.gridColumn4 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.repositoryItemButtonEditDel = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
     this.gridBand1 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.gridBand2 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.gridBand3 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlData)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.advBandedGridViewData)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemSearchLookUpEditstu_code)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemSearchLookUpEdit1View)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemSearchLookUpEditDiscountsId)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCalcEditF2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEditSave)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEditDel)).BeginInit();
     this.SuspendLayout();
     //
     // gridControlData
     //
     this.gridControlData.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gridControlData.EmbeddedNavigator.Buttons.CancelEdit.Visible = false;
     this.gridControlData.EmbeddedNavigator.Buttons.Edit.Visible = false;
     this.gridControlData.EmbeddedNavigator.Buttons.EndEdit.Visible = false;
     this.gridControlData.EmbeddedNavigator.Buttons.Remove.Visible = false;
     this.gridControlData.Location = new System.Drawing.Point(0, 0);
     this.gridControlData.MainView = this.advBandedGridViewData;
     this.gridControlData.Name = "gridControlData";
     this.gridControlData.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemButtonEditSave,
     this.repositoryItemButtonEditDel,
     this.repositoryItemSearchLookUpEditstu_code,
     this.repositoryItemSearchLookUpEditDiscountsId,
     this.repositoryItemCalcEditF2});
     this.gridControlData.Size = new System.Drawing.Size(834, 362);
     this.gridControlData.TabIndex = 0;
     this.gridControlData.UseEmbeddedNavigator = true;
     this.gridControlData.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.advBandedGridViewData});
     this.gridControlData.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ActiveKeyDownEvent);
     //
     // advBandedGridViewData
     //
     this.advBandedGridViewData.Bands.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.GridBand[] {
     this.gridBand1,
     this.gridBand2,
     this.gridBand3});
     this.advBandedGridViewData.Columns.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn[] {
     this.gridColumn1,
     this.gridColumn2,
     this.gridColumn5,
     this.gridColumn6,
     this.gridColumn8,
     this.gridColumn9,
     this.gridColumn3,
     this.gridColumn4});
     this.advBandedGridViewData.GridControl = this.gridControlData;
     this.advBandedGridViewData.Name = "advBandedGridViewData";
     this.advBandedGridViewData.OptionsPrint.EnableAppearanceEvenRow = true;
     this.advBandedGridViewData.OptionsPrint.EnableAppearanceOddRow = true;
     this.advBandedGridViewData.OptionsView.EnableAppearanceEvenRow = true;
     this.advBandedGridViewData.OptionsView.EnableAppearanceOddRow = true;
     this.advBandedGridViewData.VertScrollVisibility = DevExpress.XtraGrid.Views.Base.ScrollVisibility.Never;
     //
     // gridColumn1
     //
     this.gridColumn1.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn1.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn1.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn1.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn1.Caption = "اسم الطالب";
     this.gridColumn1.ColumnEdit = this.repositoryItemSearchLookUpEditstu_code;
     this.gridColumn1.FieldName = "stu_code";
     this.gridColumn1.Name = "gridColumn1";
     this.gridColumn1.Visible = true;
     this.gridColumn1.Width = 315;
     //
     // repositoryItemSearchLookUpEditstu_code
     //
     this.repositoryItemSearchLookUpEditstu_code.AutoHeight = false;
     this.repositoryItemSearchLookUpEditstu_code.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemSearchLookUpEditstu_code.DisplayMember = "stu_name";
     this.repositoryItemSearchLookUpEditstu_code.Name = "repositoryItemSearchLookUpEditstu_code";
     this.repositoryItemSearchLookUpEditstu_code.NullText = "";
     this.repositoryItemSearchLookUpEditstu_code.ValueMember = "stu_code";
     this.repositoryItemSearchLookUpEditstu_code.View = this.repositoryItemSearchLookUpEdit1View;
     //
     // repositoryItemSearchLookUpEdit1View
     //
     this.repositoryItemSearchLookUpEdit1View.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn7,
     this.gridColumn12,
     this.gridColumn14});
     this.repositoryItemSearchLookUpEdit1View.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
     this.repositoryItemSearchLookUpEdit1View.Name = "repositoryItemSearchLookUpEdit1View";
     this.repositoryItemSearchLookUpEdit1View.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.repositoryItemSearchLookUpEdit1View.OptionsView.ShowGroupPanel = false;
     //
     // gridColumn7
     //
     this.gridColumn7.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn7.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn7.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn7.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn7.Caption = "اسم الطالب";
     this.gridColumn7.FieldName = "stu_name";
     this.gridColumn7.Name = "gridColumn7";
     this.gridColumn7.Visible = true;
     this.gridColumn7.VisibleIndex = 0;
     //
     // gridColumn12
     //
     this.gridColumn12.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn12.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn12.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn12.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn12.Caption = "الصف";
     this.gridColumn12.FieldName = "alsofof_name";
     this.gridColumn12.Name = "gridColumn12";
     this.gridColumn12.Visible = true;
     this.gridColumn12.VisibleIndex = 1;
     //
     // gridColumn14
     //
     this.gridColumn14.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn14.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn14.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn14.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn14.Caption = "الفصل";
     this.gridColumn14.FieldName = "fasl_name";
     this.gridColumn14.Name = "gridColumn14";
     this.gridColumn14.Visible = true;
     this.gridColumn14.VisibleIndex = 2;
     //
     // gridColumn2
     //
     this.gridColumn2.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn2.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn2.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn2.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn2.Caption = "العام الدراسي";
     this.gridColumn2.FieldName = "asase_year";
     this.gridColumn2.Name = "gridColumn2";
     this.gridColumn2.OptionsColumn.AllowEdit = false;
     this.gridColumn2.RowIndex = 1;
     this.gridColumn2.Visible = true;
     this.gridColumn2.Width = 99;
     //
     // gridColumn5
     //
     this.gridColumn5.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn5.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn5.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn5.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn5.Caption = "الصف";
     this.gridColumn5.FieldName = "alsofof_name";
     this.gridColumn5.Name = "gridColumn5";
     this.gridColumn5.OptionsColumn.AllowEdit = false;
     this.gridColumn5.RowIndex = 1;
     this.gridColumn5.Visible = true;
     this.gridColumn5.Width = 93;
     //
     // gridColumn6
     //
     this.gridColumn6.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn6.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn6.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn6.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn6.Caption = "الفصل";
     this.gridColumn6.FieldName = "fasl_name";
     this.gridColumn6.Name = "gridColumn6";
     this.gridColumn6.OptionsColumn.AllowEdit = false;
     this.gridColumn6.RowIndex = 1;
     this.gridColumn6.Visible = true;
     this.gridColumn6.Width = 104;
     //
     // gridColumn8
     //
     this.gridColumn8.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn8.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn8.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn8.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn8.Caption = "نوع الخصم";
     this.gridColumn8.ColumnEdit = this.repositoryItemSearchLookUpEditDiscountsId;
     this.gridColumn8.FieldName = "DiscountsId";
     this.gridColumn8.Name = "gridColumn8";
     this.gridColumn8.Visible = true;
     this.gridColumn8.Width = 120;
     //
     // repositoryItemSearchLookUpEditDiscountsId
     //
     this.repositoryItemSearchLookUpEditDiscountsId.AutoHeight = false;
     this.repositoryItemSearchLookUpEditDiscountsId.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemSearchLookUpEditDiscountsId.Name = "repositoryItemSearchLookUpEditDiscountsId";
     this.repositoryItemSearchLookUpEditDiscountsId.NullText = "";
     this.repositoryItemSearchLookUpEditDiscountsId.View = this.gridView3;
     //
     // gridView3
     //
     this.gridView3.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn15});
     this.gridView3.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
     this.gridView3.Name = "gridView3";
     this.gridView3.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gridView3.OptionsView.ShowGroupPanel = false;
     //
     // 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 = "Discounts";
     this.gridColumn15.Name = "gridColumn15";
     this.gridColumn15.Visible = true;
     this.gridColumn15.VisibleIndex = 0;
     //
     // gridColumn9
     //
     this.gridColumn9.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn9.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn9.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn9.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn9.Caption = "المبلغ";
     this.gridColumn9.ColumnEdit = this.repositoryItemCalcEditF2;
     this.gridColumn9.FieldName = "DiscountMony";
     this.gridColumn9.Name = "gridColumn9";
     this.gridColumn9.Visible = true;
     this.gridColumn9.Width = 65;
     //
     // repositoryItemCalcEditF2
     //
     this.repositoryItemCalcEditF2.AutoHeight = false;
     this.repositoryItemCalcEditF2.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemCalcEditF2.DisplayFormat.FormatString = "f2";
     this.repositoryItemCalcEditF2.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemCalcEditF2.EditFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemCalcEditF2.Mask.EditMask = "f2";
     this.repositoryItemCalcEditF2.Name = "repositoryItemCalcEditF2";
     //
     // gridColumn3
     //
     this.gridColumn3.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn3.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn3.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn3.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn3.Caption = "حفظ";
     this.gridColumn3.ColumnEdit = this.repositoryItemButtonEditSave;
     this.gridColumn3.Name = "gridColumn3";
     this.gridColumn3.Visible = true;
     this.gridColumn3.Width = 71;
     //
     // repositoryItemButtonEditSave
     //
     this.repositoryItemButtonEditSave.AutoHeight = false;
     this.repositoryItemButtonEditSave.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.OK)});
     this.repositoryItemButtonEditSave.Name = "repositoryItemButtonEditSave";
     this.repositoryItemButtonEditSave.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.HideTextEditor;
     this.repositoryItemButtonEditSave.ButtonClick += new DevExpress.XtraEditors.Controls.ButtonPressedEventHandler(this.repositoryItemButtonEditSave_ButtonClick);
     //
     // gridColumn4
     //
     this.gridColumn4.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn4.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn4.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn4.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn4.Caption = "حذف";
     this.gridColumn4.ColumnEdit = this.repositoryItemButtonEditDel;
     this.gridColumn4.Name = "gridColumn4";
     this.gridColumn4.Visible = true;
     this.gridColumn4.Width = 70;
     //
     // repositoryItemButtonEditDel
     //
     this.repositoryItemButtonEditDel.AutoHeight = false;
     this.repositoryItemButtonEditDel.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Delete)});
     this.repositoryItemButtonEditDel.Name = "repositoryItemButtonEditDel";
     this.repositoryItemButtonEditDel.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.HideTextEditor;
     this.repositoryItemButtonEditDel.ButtonClick += new DevExpress.XtraEditors.Controls.ButtonPressedEventHandler(this.repositoryItemButtonEditDel_ButtonClick);
     //
     // gridBand1
     //
     this.gridBand1.AppearanceHeader.Options.UseTextOptions = true;
     this.gridBand1.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridBand1.Caption = "معلومات الطالب";
     this.gridBand1.Columns.Add(this.gridColumn1);
     this.gridBand1.Columns.Add(this.gridColumn2);
     this.gridBand1.Columns.Add(this.gridColumn5);
     this.gridBand1.Columns.Add(this.gridColumn6);
     this.gridBand1.Name = "gridBand1";
     this.gridBand1.Width = 315;
     //
     // gridBand2
     //
     this.gridBand2.AppearanceHeader.Options.UseTextOptions = true;
     this.gridBand2.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridBand2.Caption = "الخصم";
     this.gridBand2.Columns.Add(this.gridColumn8);
     this.gridBand2.Columns.Add(this.gridColumn9);
     this.gridBand2.Name = "gridBand2";
     this.gridBand2.Width = 185;
     //
     // gridBand3
     //
     this.gridBand3.AppearanceHeader.Options.UseTextOptions = true;
     this.gridBand3.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridBand3.Caption = "العمليات";
     this.gridBand3.Columns.Add(this.gridColumn3);
     this.gridBand3.Columns.Add(this.gridColumn4);
     this.gridBand3.Name = "gridBand3";
     this.gridBand3.Width = 141;
     //
     // TBL_DiscountStFrm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(834, 362);
     this.Controls.Add(this.gridControlData);
     this.Name = "TBL_DiscountStFrm";
     this.Text = "تحديد الخصم";
     this.Load += new System.EventHandler(this.stu_nashatFrm_Load);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlData)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.advBandedGridViewData)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemSearchLookUpEditstu_code)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemSearchLookUpEdit1View)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemSearchLookUpEditDiscountsId)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCalcEditF2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEditSave)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEditDel)).EndInit();
     this.ResumeLayout(false);
 }
コード例 #48
0
        private void FrmBurdenMaxYear_Load(object sender, EventArgs e)
        {
            string pjt = " ProjectID='" + MIS.ProgUID + "'";

            AreaList = Common.Services.BaseService.GetList <PS_Table_AreaWH>("SelectPS_Table_AreaWHByConn", pjt);

            bandedGridView1.GroupPanelText = this.Text;

            if (isSelect)
            {
                barButtonItem4.Visibility = DevExpress.XtraBars.BarItemVisibility.Always;
            }



            DevExpress.XtraGrid.Views.BandedGrid.GridBand gridBand1 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
            gridBand1.Caption = "时间";
            gridBand1.Width   = 100;
            gridBand1.Name    = "gridBand1";
            gridBand1.AppearanceHeader.Options.UseTextOptions = true;
            gridBand1.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.bandedGridView1.Bands.Add(gridBand1);

            ////DevExpress.XtraGrid.Views.BandedGrid.GridBand gridBand2 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
            ////gridBand2.Caption = "时间";
            ////gridBand2.Name = "gridBand2";
            ////gridBand2.AppearanceHeader.Options.UseTextOptions = true;
            ////gridBand2.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            ////gridBand1.Children.Add(gridBand2);

            DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn gridColumn1 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            gridColumn1.Caption   = "时间";
            gridColumn1.FieldName = "s";
            gridColumn1.Name      = "gridColumn1";
            gridColumn1.Visible   = true;
            gridColumn1.AppearanceCell.Options.UseTextOptions = true;
            gridColumn1.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            bandedGridView1.Columns.Add(gridColumn1);
            gridBand1.Columns.Add(gridColumn1);



            DataTable dt = new DataTable();

            dt.Columns.Add("s", typeof(string));



            int listCount = li.Count;


            int numi = 0;
            int numj = 0;
            int numk = 0;

            DevExpress.XtraGrid.Views.BandedGrid.GridBand[]         gridBand     = new DevExpress.XtraGrid.Views.BandedGrid.GridBand[listCount];
            DevExpress.XtraGrid.Views.BandedGrid.GridBand[]         gridBandDate = new DevExpress.XtraGrid.Views.BandedGrid.GridBand[listCount];
            DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn[] gridColumn   = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn[listCount];


            foreach (BurdenYear bys in li)
            {
                gridBand[numi]      = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
                gridBand[numi].Name = "gridBand" + bys.BurdenYears.ToString();
                if (bys.BurdenYears < 10000)
                {
                    gridBand[numi].Caption = FindArea(bys.AreaID) + "_" + bys.BurdenYears.ToString() + "年";
                }
                else
                {
                    gridBand[numi].Caption = "增长率";
                }
                gridBand[numi].Width = 100;
                gridBand[numi].AppearanceHeader.Options.UseTextOptions = true;
                gridBand[numi].AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
                this.bandedGridView1.Bands.Add(gridBand[numi]);

                gridBandDate[numj] = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
                //gridBandDate[numj].Name = "gridBand" + bys.BurdenDate.ToString("yyyyMMdd");
                if (bys.BurdenYears < 10000)
                {
                    gridBandDate[numj].Caption = bys.BurdenDate.ToString("MM月dd日");
                    gridBand[numi].Children.Add(gridBandDate[numj]);
                }
                else
                {
                    gridBand[numj].Caption = "增长率";
                }
                gridBandDate[numj].AppearanceHeader.Options.UseTextOptions = true;
                gridBandDate[numj].AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
                //gridBand[numi].Children.Add(gridBandDate[numj]);

                gridColumn[numk]           = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
                gridColumn[numk].FieldName = "Year" + bys.BurdenYears.ToString();
                gridColumn[numk].Caption   = "Year" + bys.BurdenYears.ToString();
                gridColumn[numk].Name      = "Year" + bys.BurdenYears.ToString();
                gridColumn[numk].Visible   = true;
                gridColumn[numk].Width     = 120;
                gridColumn[numk].AppearanceCell.Options.UseTextOptions = true;
                gridColumn[numk].AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
                if (bys.BurdenYears > 10000)
                {
                    gridColumn[numk].DisplayFormat.FormatString = "p2";
                    gridColumn[numk].DisplayFormat.FormatType   = DevExpress.Utils.FormatType.Custom;
                    gridBand[numi].Columns.Add(gridColumn[numk]);
                }
                else
                {
                    gridBandDate[numj].Columns.Add(gridColumn[numk]);
                }

                bandedGridView1.Columns.Add(gridColumn[numk]);
                //gridBand[numi].Columns.Add(gridColumn[numk]);
                numi++;
                numj++;
                numk++;



                //if(bys.BurdenYears!=99999)
                dt.Columns.Add("Year" + bys.BurdenYears.ToString(), typeof(double));
            }

            DataRow row = dt.NewRow();

            row["s"] = "负荷";
            foreach (BurdenYear bys1 in li)
            {
                row["Year" + bys1.BurdenYears.ToString()] = bys1.Values;
            }
            dt.Rows.Add(row);

            gridControl1.DataSource = dt;



            chart1.Series.Clear();


            string seriesName = "最大负荷";

            chart1.Series.Add(seriesName);
            chart1.Series[seriesName].Type        = SeriesChartType.Line;
            chart1.Series[seriesName].BorderWidth = 2;

            foreach (DataColumn dc in dt.Columns)
            {
                if (dc.ColumnName == "s")
                {
                    continue;
                }

                try { if (int.Parse(dc.ColumnName.Replace("Year", "")) > 10000)
                      {
                          continue;
                      }
                }
                catch { }

                string coname = dc.ColumnName.Replace("Year", "");

                double YVal = 0;
                try
                {
                    YVal = (double)dt.Rows[0][dc.ColumnName];
                }
                catch { }
                chart1.Series[seriesName].Points.AddXY(coname, YVal);
            }
            if (!print)
            {
                barButtonItem2.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
            }
        }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     DevExpress.XtraGrid.StyleFormatCondition styleFormatCondition1 = new DevExpress.XtraGrid.StyleFormatCondition();
     DevExpress.XtraGrid.StyleFormatCondition styleFormatCondition2 = new DevExpress.XtraGrid.StyleFormatCondition();
     DevExpress.XtraGrid.StyleFormatCondition styleFormatCondition3 = new DevExpress.XtraGrid.StyleFormatCondition();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(WishListForm));
     DevExpress.XtraEditors.DXErrorProvider.ConditionValidationRule conditionValidationRule1 = new DevExpress.XtraEditors.DXErrorProvider.ConditionValidationRule();
     DevExpress.XtraEditors.DXErrorProvider.ConditionValidationRule conditionValidationRule2 = new DevExpress.XtraEditors.DXErrorProvider.ConditionValidationRule();
     DevExpress.XtraGrid.StyleFormatCondition styleFormatCondition4 = new DevExpress.XtraGrid.StyleFormatCondition();
     DevExpress.XtraEditors.DXErrorProvider.ConditionValidationRule conditionValidationRule3 = new DevExpress.XtraEditors.DXErrorProvider.ConditionValidationRule();
     DevExpress.XtraEditors.DXErrorProvider.ConditionValidationRule conditionValidationRule4 = new DevExpress.XtraEditors.DXErrorProvider.ConditionValidationRule();
     this.colPacks = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemTextEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.spinEditPack = new DevExpress.XtraEditors.Repository.RepositoryItemSpinEdit();
     this.boxSizedList = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.repositoryItemSpinEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemSpinEdit();
     this.repositoryItemDateEdit3 = new DevExpress.XtraEditors.Repository.RepositoryItemDateEdit();
     this.repositoryItemButtonEdit4 = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
     this.layoutControl4 = new DevExpress.XtraLayout.LayoutControl();
     this.labelControl4 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl3 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl2 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
     this.lkRange = new DevExpress.XtraEditors.LookUpEdit();
     this.ShowStockOutCheckBox = new DevExpress.XtraEditors.CheckEdit();
     this.xtraTabControl1 = new DevExpress.XtraTab.XtraTabControl();
     this.ItemSelectionPage = new DevExpress.XtraTab.XtraTabPage();
     this.orderGrid = new DevExpress.XtraGrid.GridControl();
     this.gridOrderView = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.ColStockCode = new DevExpress.XtraGrid.Columns.GridColumn();
     this.ColItemNameOrderDetail = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemMemoEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemMemoEdit();
     this.colsQtyPerPack = new DevExpress.XtraGrid.Columns.GridColumn();
     this.ColUnit = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colExpired = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colDamaged = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colSOH = new DevExpress.XtraGrid.Columns.GridColumn();
     this.ColBeginningBalance = new DevExpress.XtraGrid.Columns.GridColumn();
     this.ColLoss = new DevExpress.XtraGrid.Columns.GridColumn();
     this.ColAdjustment = new DevExpress.XtraGrid.Columns.GridColumn();
     this.ColQuantityReceived = new DevExpress.XtraGrid.Columns.GridColumn();
     this.ColDOS = new DevExpress.XtraGrid.Columns.GridColumn();
     this.ColQuantityNeedMax = new DevExpress.XtraGrid.Columns.GridColumn();
     this.ColMaxStockQuantity = new DevExpress.XtraGrid.Columns.GridColumn();
     this.ColConsumption = new DevExpress.XtraGrid.Columns.GridColumn();
     this.ColStockedOut = new DevExpress.XtraGrid.Columns.GridColumn();
     this.ExpireDateEditor = new DevExpress.XtraEditors.Repository.RepositoryItemDateEdit();
     this.repositoryItemButtonEdit2 = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
     this.spinEditQtyPerPack = new DevExpress.XtraEditors.Repository.RepositoryItemSpinEdit();
     this.gridRecieveView1 = new DevExpress.XtraGrid.Views.BandedGrid.AdvBandedGridView();
     this.gridBand1 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.gridColumn3 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridColumn1 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridColumn10 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridColumn2 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridColumn4 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridColumn5 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridColumn6 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridColumn7 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridColumn8 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridColumn12 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridColumn9 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.VolumeMetricsPage = new DevExpress.XtraTab.XtraTabPage();
     this.layoutControl1 = new DevExpress.XtraLayout.LayoutControl();
     this.lkContainerTypes = new DevExpress.XtraEditors.GridLookUpEdit();
     this.gridView1 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn11 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn13 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn16 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn17 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn18 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.cboRequiredContainer = new System.Windows.Forms.ComboBox();
     this.lblAvailableVolume = new System.Windows.Forms.Label();
     this.lblVolumeNeeded = new System.Windows.Forms.Label();
     this.volumetricsCanvas = new System.Windows.Forms.Panel();
     this.grdVolumeGrid = new DevExpress.XtraGrid.GridControl();
     this.grdVolumeGridView = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.Height = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Width = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Depth = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Quantity = new DevExpress.XtraGrid.Columns.GridColumn();
     this.layoutControlItem32 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlGroup1 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.emptySpaceItem2 = new DevExpress.XtraLayout.EmptySpaceItem();
     this.layoutControlItem36 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem37 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem40 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem39 = new DevExpress.XtraLayout.LayoutControlItem();
     this.emptySpaceItem4 = new DevExpress.XtraLayout.EmptySpaceItem();
     this.layoutControlItem33 = new DevExpress.XtraLayout.LayoutControlItem();
     this.NoOfVisitLabel = new DevExpress.XtraEditors.LabelControl();
     this.LastVisitlabel = new DevExpress.XtraEditors.LabelControl();
     this.progressBarControl = new DevExpress.XtraEditors.ProgressBarControl();
     this.simpleButton1 = new DevExpress.XtraEditors.SimpleButton();
     this.lkType = new DevExpress.XtraEditors.LookUpEdit();
     this.lkOwnership = new DevExpress.XtraEditors.LookUpEdit();
     this.lkWoreda = new DevExpress.XtraEditors.LookUpEdit();
     this.txtRemark = new DevExpress.XtraEditors.MemoEdit();
     this.txtReceivedBy = new DevExpress.XtraEditors.TextEdit();
     this.txtTin = new DevExpress.XtraEditors.TextEdit();
     this.txtVatRegistration = new DevExpress.XtraEditors.TextEdit();
     this.txtRegistrationNo = new DevExpress.XtraEditors.TextEdit();
     this.txtLetterNumber = new DevExpress.XtraEditors.TextEdit();
     this.txtRefNo = new DevExpress.XtraEditors.TextEdit();
     this.btnSaveOrder = new DevExpress.XtraEditors.SimpleButton();
     this.btnSaveAndForward = new DevExpress.XtraEditors.SimpleButton();
     this.lkModes = new DevExpress.XtraEditors.LookUpEdit();
     this.txtContactPerson = new DevExpress.XtraEditors.TextEdit();
     this.lkZone = new DevExpress.XtraEditors.LookUpEdit();
     this.lkRegion = new DevExpress.XtraEditors.LookUpEdit();
     this.lblLoadRU = new DevExpress.XtraEditors.LabelControl();
     this.lkCategoires = new DevExpress.XtraEditors.LookUpEdit();
     this.txtItemName = new DevExpress.XtraEditors.TextEdit();
     this.gridItemsChoice = new DevExpress.XtraGrid.GridControl();
     this.gridItemChoiceView = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn30 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemCheckEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.gridColumn28 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colItemName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemMemoEdit2 = new DevExpress.XtraEditors.Repository.RepositoryItemMemoEdit();
     this.gridColumn14 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn29 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn66 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn67 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn21 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.lkPaymentType = new DevExpress.XtraEditors.LookUpEdit();
     this.lkForFacility = new DevExpress.XtraEditors.GridLookUpEdit();
     this.gridLookUpEdit1View = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn15 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn19 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn20 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn22 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn24 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn25 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.lkPeriod = new DevExpress.XtraEditors.GridLookUpEdit();
     this.gridView2 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.lkColStartDate_EndDate = new DevExpress.XtraGrid.Columns.GridColumn();
     this.lkRequisitionType = new DevExpress.XtraEditors.LookUpEdit();
     this.btnCancelOne = new DevExpress.XtraEditors.SimpleButton();
     this.layoutControlItem24 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem25 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutReload = new DevExpress.XtraLayout.LayoutControlItem();
     this.progressBarlayoutControlItem = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem23 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem22 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem21 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem13 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlGroup14 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlItem29 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem2 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem30 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem8 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem19 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem12 = new DevExpress.XtraLayout.LayoutControlItem();
     this.emptySpaceItem14 = new DevExpress.XtraLayout.EmptySpaceItem();
     this.simpleSeparator2 = new DevExpress.XtraLayout.SimpleSeparator();
     this.LastVisitlayout = new DevExpress.XtraLayout.LayoutControlItem();
     this.NoRequisitionlayout = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlGroup2 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlItem15 = new DevExpress.XtraLayout.LayoutControlItem();
     this.ShowStockOutCheckBoxLayout = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem3 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem4 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlGroup5 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.RequisitionTypelayoutControlItem = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem7 = new DevExpress.XtraLayout.LayoutControlItem();
     this.RangeLayout = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem52 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem31 = new DevExpress.XtraLayout.LayoutControlItem();
     this.emptySpaceItem1 = new DevExpress.XtraLayout.EmptySpaceItem();
     this.emptySpaceItem7 = new DevExpress.XtraLayout.EmptySpaceItem();
     this.layoutControlItem38 = new DevExpress.XtraLayout.LayoutControlItem();
     this.emptySpaceItem5 = new DevExpress.XtraLayout.EmptySpaceItem();
     this.simpleSeparator3 = new DevExpress.XtraLayout.SimpleSeparator();
     this.layoutControlGroup4 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlItem5 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem20 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem1 = new DevExpress.XtraLayout.LayoutControlItem();
     this.emptySpaceItem8 = new DevExpress.XtraLayout.EmptySpaceItem();
     this.layoutControlItem18 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem34 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem35 = new DevExpress.XtraLayout.LayoutControlItem();
     this.emptySpaceItem9 = new DevExpress.XtraLayout.EmptySpaceItem();
     this.layoutControlGroup3 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlItem11 = new DevExpress.XtraLayout.LayoutControlItem();
     this.lkPeriodlayout = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem14 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutForFacility = new DevExpress.XtraLayout.LayoutControlItem();
     this.emptySpaceItem3 = new DevExpress.XtraLayout.EmptySpaceItem();
     this.popupMenu1 = new DevExpress.XtraBars.PopupMenu(this.components);
     this.emptySpaceItem15 = new DevExpress.XtraLayout.EmptySpaceItem();
     this.layoutControlGroup8 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlGroup9 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlGroup10 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.emptySpaceItem10 = new DevExpress.XtraLayout.EmptySpaceItem();
     this.emptySpaceItem22 = new DevExpress.XtraLayout.EmptySpaceItem();
     this.emptySpaceItem23 = new DevExpress.XtraLayout.EmptySpaceItem();
     this.printingSystem1 = new DevExpress.XtraPrinting.PrintingSystem(this.components);
     this.printableComponentLink1 = new DevExpress.XtraPrinting.PrintableComponentLink(this.components);
     this.printOrder = new DevExpress.XtraPrinting.PrintableComponentLink(this.components);
     this.dxValidation1stTab = new DevExpress.XtraEditors.DXErrorProvider.DXValidationProvider(this.components);
     this.layoutControlItem9 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem10 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem6 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem16 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem17 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem26 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem27 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem28 = new DevExpress.XtraLayout.LayoutControlItem();
     this.simpleLabelItem13 = new DevExpress.XtraLayout.SimpleLabelItem();
     this.simpleLabelItem1 = new DevExpress.XtraLayout.SimpleLabelItem();
     this.simpleLabelItem2 = new DevExpress.XtraLayout.SimpleLabelItem();
     this.gridColumn23 = new DevExpress.XtraGrid.Columns.GridColumn();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.spinEditPack)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.boxSizedList)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemSpinEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit3.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEdit4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl4)).BeginInit();
     this.layoutControl4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.lkRange.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ShowStockOutCheckBox.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl1)).BeginInit();
     this.xtraTabControl1.SuspendLayout();
     this.ItemSelectionPage.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.orderGrid)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridOrderView)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemMemoEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ExpireDateEditor)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ExpireDateEditor.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEdit2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.spinEditQtyPerPack)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridRecieveView1)).BeginInit();
     this.VolumeMetricsPage.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl1)).BeginInit();
     this.layoutControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.lkContainerTypes.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.grdVolumeGrid)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.grdVolumeGridView)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem32)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem36)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem37)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem40)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem39)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem33)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.progressBarControl.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkType.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkOwnership.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkWoreda.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtRemark.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtReceivedBy.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtTin.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtVatRegistration.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtRegistrationNo.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtLetterNumber.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtRefNo.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkModes.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtContactPerson.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkZone.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkRegion.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkCategoires.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtItemName.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridItemsChoice)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridItemChoiceView)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemMemoEdit2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkPaymentType.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkForFacility.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridLookUpEdit1View)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkPeriod.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkRequisitionType.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem24)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem25)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutReload)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.progressBarlayoutControlItem)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem23)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem22)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem21)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem13)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup14)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem29)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem30)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem8)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem19)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem12)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem14)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.simpleSeparator2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.LastVisitlayout)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.NoRequisitionlayout)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem15)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ShowStockOutCheckBoxLayout)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.RequisitionTypelayoutControlItem)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem7)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.RangeLayout)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem52)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem31)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem7)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem38)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.simpleSeparator3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem20)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem8)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem18)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem34)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem35)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem9)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem11)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkPeriodlayout)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem14)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutForFacility)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.popupMenu1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem15)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup8)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup9)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup10)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem10)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem22)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem23)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.printingSystem1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.printableComponentLink1.ImageCollection)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.printOrder.ImageCollection)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dxValidation1stTab)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem9)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem10)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem6)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem16)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem17)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem26)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem27)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem28)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.simpleLabelItem13)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.simpleLabelItem1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.simpleLabelItem2)).BeginInit();
     this.SuspendLayout();
     //
     // colPacks
     //
     this.colPacks.Caption = "Quantity";
     this.colPacks.ColumnEdit = this.repositoryItemTextEdit1;
     this.colPacks.FieldName = "Pack";
     this.colPacks.Name = "colPacks";
     this.colPacks.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.colPacks.OptionsColumn.FixedWidth = true;
     this.colPacks.ToolTip = "Requested Quantity";
     this.colPacks.Visible = true;
     this.colPacks.VisibleIndex = 14;
     this.colPacks.Width = 40;
     //
     // repositoryItemTextEdit1
     //
     this.repositoryItemTextEdit1.AutoHeight = false;
     this.repositoryItemTextEdit1.Mask.EditMask = "\\d{0,6}(\\.\\d{0,4})";
     this.repositoryItemTextEdit1.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.RegEx;
     this.repositoryItemTextEdit1.Name = "repositoryItemTextEdit1";
     //
     // spinEditPack
     //
     this.spinEditPack.AllowNullInput = DevExpress.Utils.DefaultBoolean.False;
     this.spinEditPack.AutoHeight = false;
     this.spinEditPack.DisplayFormat.FormatString = "#,##0.##";
     this.spinEditPack.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.spinEditPack.EditFormat.FormatString = "#,##0.##";
     this.spinEditPack.EditFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.spinEditPack.IsFloatValue = false;
     this.spinEditPack.MaxValue = new decimal(new int[] {
     100000000,
     0,
     0,
     0});
     this.spinEditPack.Name = "spinEditPack";
     //
     // boxSizedList
     //
     this.boxSizedList.AutoHeight = false;
     this.boxSizedList.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.boxSizedList.DisplayMember = "Name";
     this.boxSizedList.Name = "boxSizedList";
     this.boxSizedList.ValueMember = "ID";
     //
     // repositoryItemSpinEdit1
     //
     this.repositoryItemSpinEdit1.AutoHeight = false;
     this.repositoryItemSpinEdit1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.repositoryItemSpinEdit1.Name = "repositoryItemSpinEdit1";
     //
     // repositoryItemDateEdit3
     //
     this.repositoryItemDateEdit3.AutoHeight = false;
     this.repositoryItemDateEdit3.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemDateEdit3.EditFormat.FormatString = "mm-DD-YYYY";
     this.repositoryItemDateEdit3.EditFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.repositoryItemDateEdit3.ExportMode = DevExpress.XtraEditors.Repository.ExportMode.DisplayText;
     this.repositoryItemDateEdit3.Name = "repositoryItemDateEdit3";
     this.repositoryItemDateEdit3.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     //
     // repositoryItemButtonEdit4
     //
     this.repositoryItemButtonEdit4.AutoHeight = false;
     this.repositoryItemButtonEdit4.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Plus)});
     this.repositoryItemButtonEdit4.Name = "repositoryItemButtonEdit4";
     this.repositoryItemButtonEdit4.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.HideTextEditor;
     //
     // layoutControl4
     //
     this.layoutControl4.AllowCustomizationMenu = false;
     this.layoutControl4.Controls.Add(this.labelControl4);
     this.layoutControl4.Controls.Add(this.labelControl3);
     this.layoutControl4.Controls.Add(this.labelControl2);
     this.layoutControl4.Controls.Add(this.labelControl1);
     this.layoutControl4.Controls.Add(this.lkRange);
     this.layoutControl4.Controls.Add(this.ShowStockOutCheckBox);
     this.layoutControl4.Controls.Add(this.xtraTabControl1);
     this.layoutControl4.Controls.Add(this.NoOfVisitLabel);
     this.layoutControl4.Controls.Add(this.LastVisitlabel);
     this.layoutControl4.Controls.Add(this.progressBarControl);
     this.layoutControl4.Controls.Add(this.simpleButton1);
     this.layoutControl4.Controls.Add(this.lkType);
     this.layoutControl4.Controls.Add(this.lkOwnership);
     this.layoutControl4.Controls.Add(this.lkWoreda);
     this.layoutControl4.Controls.Add(this.txtRemark);
     this.layoutControl4.Controls.Add(this.txtReceivedBy);
     this.layoutControl4.Controls.Add(this.txtTin);
     this.layoutControl4.Controls.Add(this.txtVatRegistration);
     this.layoutControl4.Controls.Add(this.txtRegistrationNo);
     this.layoutControl4.Controls.Add(this.txtLetterNumber);
     this.layoutControl4.Controls.Add(this.txtRefNo);
     this.layoutControl4.Controls.Add(this.btnSaveOrder);
     this.layoutControl4.Controls.Add(this.btnSaveAndForward);
     this.layoutControl4.Controls.Add(this.lkModes);
     this.layoutControl4.Controls.Add(this.txtContactPerson);
     this.layoutControl4.Controls.Add(this.lkZone);
     this.layoutControl4.Controls.Add(this.lkRegion);
     this.layoutControl4.Controls.Add(this.lblLoadRU);
     this.layoutControl4.Controls.Add(this.lkCategoires);
     this.layoutControl4.Controls.Add(this.txtItemName);
     this.layoutControl4.Controls.Add(this.gridItemsChoice);
     this.layoutControl4.Controls.Add(this.lkPaymentType);
     this.layoutControl4.Controls.Add(this.lkForFacility);
     this.layoutControl4.Controls.Add(this.lkPeriod);
     this.layoutControl4.Controls.Add(this.lkRequisitionType);
     this.layoutControl4.Controls.Add(this.btnCancelOne);
     this.layoutControl4.Dock = System.Windows.Forms.DockStyle.Fill;
     this.layoutControl4.HiddenItems.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.layoutControlItem24,
     this.layoutControlItem25,
     this.layoutReload,
     this.progressBarlayoutControlItem,
     this.layoutControlItem23,
     this.layoutControlItem22,
     this.layoutControlItem21,
     this.layoutControlItem13});
     this.layoutControl4.Location = new System.Drawing.Point(0, 0);
     this.layoutControl4.Name = "layoutControl4";
     this.layoutControl4.OptionsCustomizationForm.DesignTimeCustomizationFormPositionAndSize = new System.Drawing.Rectangle(59, 358, 345, 729);
     this.layoutControl4.OptionsView.ShareLookAndFeelWithChildren = false;
     this.layoutControl4.Root = this.layoutControlGroup14;
     this.layoutControl4.Size = new System.Drawing.Size(1350, 393);
     this.layoutControl4.TabIndex = 31;
     this.layoutControl4.Text = "layoutControl4";
     //
     // labelControl4
     //
     this.labelControl4.Location = new System.Drawing.Point(75, 16);
     this.labelControl4.Name = "labelControl4";
     this.labelControl4.Size = new System.Drawing.Size(189, 13);
     this.labelControl4.TabIndex = 53;
     //
     // labelControl3
     //
     this.labelControl3.Location = new System.Drawing.Point(899, 4);
     this.labelControl3.Name = "labelControl3";
     this.labelControl3.Size = new System.Drawing.Size(93, 13);
     this.labelControl3.TabIndex = 52;
     //
     // labelControl2
     //
     this.labelControl2.Location = new System.Drawing.Point(707, 4);
     this.labelControl2.Name = "labelControl2";
     this.labelControl2.Size = new System.Drawing.Size(107, 13);
     this.labelControl2.TabIndex = 51;
     //
     // labelControl1
     //
     this.labelControl1.Location = new System.Drawing.Point(523, 4);
     this.labelControl1.Name = "labelControl1";
     this.labelControl1.Size = new System.Drawing.Size(113, 13);
     this.labelControl1.TabIndex = 50;
     //
     // lkRange
     //
     this.lkRange.Enabled = false;
     this.lkRange.Location = new System.Drawing.Point(308, 38);
     this.lkRange.Name = "lkRange";
     this.lkRange.Properties.AllowMouseWheel = false;
     this.lkRange.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lkRange.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Range", "History Detail")});
     this.lkRange.Properties.DisplayMember = "Range";
     this.lkRange.Properties.NullText = "Range";
     this.lkRange.Properties.PopupWidth = 100;
     this.lkRange.Properties.ShowFooter = false;
     this.lkRange.Properties.ValueMember = "Value";
     this.lkRange.Size = new System.Drawing.Size(102, 20);
     this.lkRange.TabIndex = 46;
     this.lkRange.EditValueChanged += new System.EventHandler(this.lkRange_EditValueChanged);
     //
     // ShowStockOutCheckBox
     //
     this.ShowStockOutCheckBox.Location = new System.Drawing.Point(446, 107);
     this.ShowStockOutCheckBox.Name = "ShowStockOutCheckBox";
     this.ShowStockOutCheckBox.Properties.Caption = "Show Stock Out";
     this.ShowStockOutCheckBox.Size = new System.Drawing.Size(277, 19);
     this.ShowStockOutCheckBox.TabIndex = 49;
     this.ShowStockOutCheckBox.CheckedChanged += new System.EventHandler(this.ShowStockOutCheckBox_CheckedChanged);
     //
     // xtraTabControl1
     //
     this.xtraTabControl1.Location = new System.Drawing.Point(432, 143);
     this.xtraTabControl1.Margin = new System.Windows.Forms.Padding(0);
     this.xtraTabControl1.Name = "xtraTabControl1";
     this.xtraTabControl1.SelectedTabPage = this.ItemSelectionPage;
     this.xtraTabControl1.Size = new System.Drawing.Size(916, 222);
     this.xtraTabControl1.TabIndex = 48;
     this.xtraTabControl1.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
     this.ItemSelectionPage,
     this.VolumeMetricsPage});
     this.xtraTabControl1.SelectedPageChanged += new DevExpress.XtraTab.TabPageChangedEventHandler(this.xtraTabControl1_SelectedPageChanged);
     this.xtraTabControl1.Click += new System.EventHandler(this.xtraTabControl1_Click);
     //
     // ItemSelectionPage
     //
     this.ItemSelectionPage.Controls.Add(this.orderGrid);
     this.ItemSelectionPage.Name = "ItemSelectionPage";
     this.ItemSelectionPage.Size = new System.Drawing.Size(910, 194);
     this.ItemSelectionPage.Text = "Selection";
     //
     // orderGrid
     //
     this.orderGrid.Dock = System.Windows.Forms.DockStyle.Fill;
     this.orderGrid.ImeMode = System.Windows.Forms.ImeMode.On;
     this.orderGrid.Location = new System.Drawing.Point(0, 0);
     this.orderGrid.MainView = this.gridOrderView;
     this.orderGrid.Margin = new System.Windows.Forms.Padding(0);
     this.orderGrid.Name = "orderGrid";
     this.orderGrid.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.ExpireDateEditor,
     this.repositoryItemButtonEdit2,
     this.spinEditPack,
     this.spinEditQtyPerPack,
     this.repositoryItemTextEdit1,
     this.repositoryItemMemoEdit1});
     this.orderGrid.Size = new System.Drawing.Size(910, 194);
     this.orderGrid.TabIndex = 11;
     this.orderGrid.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridOrderView,
     this.gridRecieveView1});
     this.orderGrid.Click += new System.EventHandler(this.orderGrid_Click);
     //
     // gridOrderView
     //
     this.gridOrderView.Appearance.FocusedCell.BackColor = System.Drawing.Color.SkyBlue;
     this.gridOrderView.Appearance.FocusedCell.Options.UseBackColor = true;
     this.gridOrderView.Appearance.FocusedRow.BackColor = System.Drawing.Color.CornflowerBlue;
     this.gridOrderView.Appearance.FocusedRow.Options.UseBackColor = true;
     this.gridOrderView.Appearance.SelectedRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(192)))), ((int)(((byte)(255)))));
     this.gridOrderView.Appearance.SelectedRow.Options.UseBackColor = true;
     this.gridOrderView.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.ColStockCode,
     this.ColItemNameOrderDetail,
     this.colsQtyPerPack,
     this.ColUnit,
     this.colExpired,
     this.colDamaged,
     this.colSOH,
     this.ColBeginningBalance,
     this.ColLoss,
     this.ColAdjustment,
     this.ColQuantityReceived,
     this.ColDOS,
     this.ColQuantityNeedMax,
     this.ColMaxStockQuantity,
     this.ColConsumption,
     this.colPacks,
     this.ColStockedOut});
     styleFormatCondition1.Appearance.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
     styleFormatCondition1.Appearance.Options.UseBackColor = true;
     styleFormatCondition1.Column = this.colPacks;
     styleFormatCondition1.Condition = DevExpress.XtraGrid.FormatConditionEnum.Expression;
     styleFormatCondition1.Expression = "[SKUBU] is null";
     styleFormatCondition2.Appearance.ForeColor = System.Drawing.Color.Silver;
     styleFormatCondition2.Appearance.Options.UseForeColor = true;
     styleFormatCondition2.ApplyToRow = true;
     styleFormatCondition2.Condition = DevExpress.XtraGrid.FormatConditionEnum.Expression;
     styleFormatCondition2.Expression = "[StockedOut] == 1";
     styleFormatCondition3.Appearance.ForeColor = System.Drawing.Color.Silver;
     styleFormatCondition3.Appearance.Options.UseForeColor = true;
     styleFormatCondition3.ApplyToRow = true;
     styleFormatCondition3.Condition = DevExpress.XtraGrid.FormatConditionEnum.Expression;
     styleFormatCondition3.Expression = "[StockedOut] == 1";
     this.gridOrderView.FormatConditions.AddRange(new DevExpress.XtraGrid.StyleFormatCondition[] {
     styleFormatCondition1,
     styleFormatCondition2,
     styleFormatCondition3});
     this.gridOrderView.GridControl = this.orderGrid;
     this.gridOrderView.IndicatorWidth = 40;
     this.gridOrderView.Name = "gridOrderView";
     this.gridOrderView.OptionsCustomization.AllowColumnMoving = false;
     this.gridOrderView.OptionsCustomization.AllowColumnResizing = false;
     this.gridOrderView.OptionsCustomization.AllowFilter = false;
     this.gridOrderView.OptionsCustomization.AllowQuickHideColumns = false;
     this.gridOrderView.OptionsCustomization.AllowSort = false;
     this.gridOrderView.OptionsMenu.EnableColumnMenu = false;
     this.gridOrderView.OptionsMenu.EnableFooterMenu = false;
     this.gridOrderView.OptionsMenu.EnableGroupPanelMenu = false;
     this.gridOrderView.OptionsView.AllowCellMerge = true;
     this.gridOrderView.OptionsView.RowAutoHeight = true;
     this.gridOrderView.OptionsView.ShowGroupPanel = false;
     this.gridOrderView.CustomDrawRowIndicator += new DevExpress.XtraGrid.Views.Grid.RowIndicatorCustomDrawEventHandler(this.gridOrderView_CustomDrawRowIndicator);
     this.gridOrderView.CustomDrawCell += new DevExpress.XtraGrid.Views.Base.RowCellCustomDrawEventHandler(this.gridOrderView_CustomDrawCell);
     this.gridOrderView.ShowingEditor += new System.ComponentModel.CancelEventHandler(this.gridOrderView_ShowingEditor);
     this.gridOrderView.CellValueChanged += new DevExpress.XtraGrid.Views.Base.CellValueChangedEventHandler(this.OnOrderCellValueChanged);
     //
     // ColStockCode
     //
     this.ColStockCode.AppearanceCell.BackColor = System.Drawing.Color.WhiteSmoke;
     this.ColStockCode.AppearanceCell.Options.UseBackColor = true;
     this.ColStockCode.Caption = "Stock Code";
     this.ColStockCode.FieldName = "StockCode";
     this.ColStockCode.Name = "ColStockCode";
     this.ColStockCode.OptionsColumn.AllowEdit = false;
     this.ColStockCode.OptionsColumn.AllowFocus = false;
     this.ColStockCode.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.ColStockCode.OptionsColumn.AllowIncrementalSearch = false;
     this.ColStockCode.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.ColStockCode.OptionsColumn.AllowMove = false;
     this.ColStockCode.OptionsColumn.AllowShowHide = false;
     this.ColStockCode.OptionsColumn.AllowSize = false;
     this.ColStockCode.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.ColStockCode.OptionsColumn.FixedWidth = true;
     this.ColStockCode.OptionsColumn.ShowInCustomizationForm = false;
     this.ColStockCode.OptionsColumn.ShowInExpressionEditor = false;
     this.ColStockCode.OptionsFilter.AllowAutoFilter = false;
     this.ColStockCode.OptionsFilter.AllowFilter = false;
     this.ColStockCode.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     this.ColStockCode.OptionsFilter.FilterBySortField = DevExpress.Utils.DefaultBoolean.False;
     this.ColStockCode.Visible = true;
     this.ColStockCode.VisibleIndex = 0;
     this.ColStockCode.Width = 34;
     //
     // ColItemNameOrderDetail
     //
     this.ColItemNameOrderDetail.AppearanceCell.BackColor = System.Drawing.Color.WhiteSmoke;
     this.ColItemNameOrderDetail.AppearanceCell.Options.UseBackColor = true;
     this.ColItemNameOrderDetail.AppearanceCell.Options.UseTextOptions = true;
     this.ColItemNameOrderDetail.AppearanceCell.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.ColItemNameOrderDetail.AppearanceHeader.Options.UseTextOptions = true;
     this.ColItemNameOrderDetail.AppearanceHeader.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.ColItemNameOrderDetail.Caption = "Item";
     this.ColItemNameOrderDetail.ColumnEdit = this.repositoryItemMemoEdit1;
     this.ColItemNameOrderDetail.FieldName = "FullItemName";
     this.ColItemNameOrderDetail.Name = "ColItemNameOrderDetail";
     this.ColItemNameOrderDetail.OptionsColumn.AllowEdit = false;
     this.ColItemNameOrderDetail.OptionsColumn.AllowFocus = false;
     this.ColItemNameOrderDetail.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.ColItemNameOrderDetail.OptionsColumn.AllowIncrementalSearch = false;
     this.ColItemNameOrderDetail.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.ColItemNameOrderDetail.OptionsColumn.AllowMove = false;
     this.ColItemNameOrderDetail.OptionsColumn.AllowShowHide = false;
     this.ColItemNameOrderDetail.OptionsColumn.AllowSize = false;
     this.ColItemNameOrderDetail.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.ColItemNameOrderDetail.OptionsColumn.FixedWidth = true;
     this.ColItemNameOrderDetail.OptionsColumn.ShowInCustomizationForm = false;
     this.ColItemNameOrderDetail.OptionsColumn.ShowInExpressionEditor = false;
     this.ColItemNameOrderDetail.OptionsFilter.AllowAutoFilter = false;
     this.ColItemNameOrderDetail.OptionsFilter.AllowFilter = false;
     this.ColItemNameOrderDetail.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     this.ColItemNameOrderDetail.OptionsFilter.FilterBySortField = DevExpress.Utils.DefaultBoolean.False;
     this.ColItemNameOrderDetail.ShowButtonMode = DevExpress.XtraGrid.Views.Base.ShowButtonModeEnum.ShowAlways;
     this.ColItemNameOrderDetail.ToolTip = "FullItemName";
     this.ColItemNameOrderDetail.Visible = true;
     this.ColItemNameOrderDetail.VisibleIndex = 1;
     this.ColItemNameOrderDetail.Width = 171;
     //
     // repositoryItemMemoEdit1
     //
     this.repositoryItemMemoEdit1.LinesCount = 1;
     this.repositoryItemMemoEdit1.Name = "repositoryItemMemoEdit1";
     //
     // colsQtyPerPack
     //
     this.colsQtyPerPack.AppearanceCell.BackColor = System.Drawing.Color.WhiteSmoke;
     this.colsQtyPerPack.AppearanceCell.Options.UseBackColor = true;
     this.colsQtyPerPack.Caption = "Quantity Per Pack";
     this.colsQtyPerPack.ColumnEdit = this.spinEditPack;
     this.colsQtyPerPack.FieldName = "QtyPerPack";
     this.colsQtyPerPack.Name = "colsQtyPerPack";
     this.colsQtyPerPack.OptionsColumn.AllowEdit = false;
     this.colsQtyPerPack.OptionsColumn.AllowFocus = false;
     this.colsQtyPerPack.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.colsQtyPerPack.OptionsColumn.AllowIncrementalSearch = false;
     this.colsQtyPerPack.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.colsQtyPerPack.OptionsColumn.AllowMove = false;
     this.colsQtyPerPack.OptionsColumn.AllowShowHide = false;
     this.colsQtyPerPack.OptionsColumn.AllowSize = false;
     this.colsQtyPerPack.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.colsQtyPerPack.OptionsColumn.FixedWidth = true;
     this.colsQtyPerPack.OptionsColumn.ShowInCustomizationForm = false;
     this.colsQtyPerPack.OptionsColumn.ShowInExpressionEditor = false;
     this.colsQtyPerPack.OptionsFilter.AllowAutoFilter = false;
     this.colsQtyPerPack.OptionsFilter.AllowFilter = false;
     this.colsQtyPerPack.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     this.colsQtyPerPack.OptionsFilter.FilterBySortField = DevExpress.Utils.DefaultBoolean.False;
     this.colsQtyPerPack.Width = 100;
     //
     // ColUnit
     //
     this.ColUnit.AppearanceCell.BackColor = System.Drawing.Color.WhiteSmoke;
     this.ColUnit.AppearanceCell.Options.UseBackColor = true;
     this.ColUnit.Caption = "Unit";
     this.ColUnit.FieldName = "Unit";
     this.ColUnit.Name = "ColUnit";
     this.ColUnit.OptionsColumn.AllowEdit = false;
     this.ColUnit.OptionsColumn.AllowFocus = false;
     this.ColUnit.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.ColUnit.OptionsColumn.AllowIncrementalSearch = false;
     this.ColUnit.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.ColUnit.OptionsColumn.AllowMove = false;
     this.ColUnit.OptionsColumn.AllowShowHide = false;
     this.ColUnit.OptionsColumn.AllowSize = false;
     this.ColUnit.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.ColUnit.OptionsColumn.FixedWidth = true;
     this.ColUnit.OptionsColumn.ShowInCustomizationForm = false;
     this.ColUnit.OptionsColumn.ShowInExpressionEditor = false;
     this.ColUnit.OptionsFilter.AllowAutoFilter = false;
     this.ColUnit.OptionsFilter.AllowFilter = false;
     this.ColUnit.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     this.ColUnit.OptionsFilter.FilterBySortField = DevExpress.Utils.DefaultBoolean.False;
     this.ColUnit.Visible = true;
     this.ColUnit.VisibleIndex = 2;
     this.ColUnit.Width = 53;
     //
     // colExpired
     //
     this.colExpired.Caption = "Expired";
     this.colExpired.DisplayFormat.FormatString = "#,###.##";
     this.colExpired.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.colExpired.FieldName = "ExpiredStock";
     this.colExpired.Name = "colExpired";
     this.colExpired.OptionsColumn.AllowEdit = false;
     this.colExpired.OptionsColumn.AllowFocus = false;
     this.colExpired.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.colExpired.OptionsColumn.AllowIncrementalSearch = false;
     this.colExpired.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.colExpired.OptionsColumn.AllowMove = false;
     this.colExpired.OptionsColumn.AllowShowHide = false;
     this.colExpired.OptionsColumn.AllowSize = false;
     this.colExpired.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.colExpired.OptionsColumn.FixedWidth = true;
     this.colExpired.OptionsColumn.ShowInCustomizationForm = false;
     this.colExpired.OptionsColumn.ShowInExpressionEditor = false;
     this.colExpired.OptionsFilter.AllowAutoFilter = false;
     this.colExpired.OptionsFilter.AllowFilter = false;
     this.colExpired.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     this.colExpired.OptionsFilter.FilterBySortField = DevExpress.Utils.DefaultBoolean.False;
     this.colExpired.ToolTip = "Expired Stock";
     this.colExpired.Visible = true;
     this.colExpired.VisibleIndex = 3;
     this.colExpired.Width = 39;
     //
     // colDamaged
     //
     this.colDamaged.Caption = "Damaged";
     this.colDamaged.DisplayFormat.FormatString = "#,###.##";
     this.colDamaged.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.colDamaged.FieldName = "DamagedStock";
     this.colDamaged.Name = "colDamaged";
     this.colDamaged.OptionsColumn.AllowEdit = false;
     this.colDamaged.OptionsColumn.AllowFocus = false;
     this.colDamaged.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.colDamaged.OptionsColumn.AllowIncrementalSearch = false;
     this.colDamaged.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.colDamaged.OptionsColumn.AllowMove = false;
     this.colDamaged.OptionsColumn.AllowShowHide = false;
     this.colDamaged.OptionsColumn.AllowSize = false;
     this.colDamaged.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.colDamaged.OptionsColumn.FixedWidth = true;
     this.colDamaged.OptionsColumn.ShowInCustomizationForm = false;
     this.colDamaged.OptionsColumn.ShowInExpressionEditor = false;
     this.colDamaged.OptionsFilter.AllowAutoFilter = false;
     this.colDamaged.OptionsFilter.AllowFilter = false;
     this.colDamaged.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     this.colDamaged.OptionsFilter.FilterBySortField = DevExpress.Utils.DefaultBoolean.False;
     this.colDamaged.ToolTip = "Damaged Stock";
     this.colDamaged.Visible = true;
     this.colDamaged.VisibleIndex = 4;
     this.colDamaged.Width = 39;
     //
     // colSOH
     //
     this.colSOH.Caption = "E.B";
     this.colSOH.DisplayFormat.FormatString = "#,###.##";
     this.colSOH.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.colSOH.FieldName = "StockOnHand";
     this.colSOH.Name = "colSOH";
     this.colSOH.OptionsColumn.AllowEdit = false;
     this.colSOH.OptionsColumn.AllowFocus = false;
     this.colSOH.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.colSOH.OptionsColumn.AllowIncrementalSearch = false;
     this.colSOH.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.colSOH.OptionsColumn.AllowMove = false;
     this.colSOH.OptionsColumn.AllowShowHide = false;
     this.colSOH.OptionsColumn.AllowSize = false;
     this.colSOH.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.colSOH.OptionsColumn.FixedWidth = true;
     this.colSOH.OptionsColumn.ShowInCustomizationForm = false;
     this.colSOH.OptionsColumn.ShowInExpressionEditor = false;
     this.colSOH.OptionsFilter.AllowAutoFilter = false;
     this.colSOH.OptionsFilter.AllowFilter = false;
     this.colSOH.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     this.colSOH.OptionsFilter.FilterBySortField = DevExpress.Utils.DefaultBoolean.False;
     this.colSOH.ToolTip = "Remaining Stock On Hand (Ending Balance)";
     this.colSOH.Visible = true;
     this.colSOH.VisibleIndex = 8;
     this.colSOH.Width = 39;
     //
     // ColBeginningBalance
     //
     this.ColBeginningBalance.Caption = "b.B";
     this.ColBeginningBalance.DisplayFormat.FormatString = "#,###.##";
     this.ColBeginningBalance.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.ColBeginningBalance.FieldName = "BeginningBalance";
     this.ColBeginningBalance.Name = "ColBeginningBalance";
     this.ColBeginningBalance.OptionsColumn.AllowEdit = false;
     this.ColBeginningBalance.OptionsColumn.AllowFocus = false;
     this.ColBeginningBalance.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.ColBeginningBalance.OptionsColumn.AllowIncrementalSearch = false;
     this.ColBeginningBalance.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.ColBeginningBalance.OptionsColumn.AllowMove = false;
     this.ColBeginningBalance.OptionsColumn.AllowShowHide = false;
     this.ColBeginningBalance.OptionsColumn.AllowSize = false;
     this.ColBeginningBalance.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.ColBeginningBalance.OptionsColumn.FixedWidth = true;
     this.ColBeginningBalance.OptionsColumn.ShowInCustomizationForm = false;
     this.ColBeginningBalance.OptionsColumn.ShowInExpressionEditor = false;
     this.ColBeginningBalance.OptionsFilter.AllowAutoFilter = false;
     this.ColBeginningBalance.OptionsFilter.AllowFilter = false;
     this.ColBeginningBalance.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     this.ColBeginningBalance.OptionsFilter.FilterBySortField = DevExpress.Utils.DefaultBoolean.False;
     this.ColBeginningBalance.ToolTip = "Beginning Balance";
     this.ColBeginningBalance.Visible = true;
     this.ColBeginningBalance.VisibleIndex = 5;
     this.ColBeginningBalance.Width = 39;
     //
     // ColLoss
     //
     this.ColLoss.Caption = "Loss";
     this.ColLoss.DisplayFormat.FormatString = "#,###.##";
     this.ColLoss.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.ColLoss.FieldName = "Loss";
     this.ColLoss.Name = "ColLoss";
     this.ColLoss.OptionsColumn.AllowEdit = false;
     this.ColLoss.OptionsColumn.AllowFocus = false;
     this.ColLoss.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.ColLoss.OptionsColumn.AllowIncrementalSearch = false;
     this.ColLoss.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.ColLoss.OptionsColumn.AllowMove = false;
     this.ColLoss.OptionsColumn.AllowShowHide = false;
     this.ColLoss.OptionsColumn.AllowSize = false;
     this.ColLoss.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.ColLoss.OptionsColumn.FixedWidth = true;
     this.ColLoss.OptionsColumn.ShowInCustomizationForm = false;
     this.ColLoss.OptionsColumn.ShowInExpressionEditor = false;
     this.ColLoss.OptionsFilter.AllowAutoFilter = false;
     this.ColLoss.OptionsFilter.AllowFilter = false;
     this.ColLoss.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     this.ColLoss.OptionsFilter.FilterBySortField = DevExpress.Utils.DefaultBoolean.False;
     this.ColLoss.ToolTip = "Loss";
     this.ColLoss.Visible = true;
     this.ColLoss.VisibleIndex = 6;
     this.ColLoss.Width = 39;
     //
     // ColAdjustment
     //
     this.ColAdjustment.Caption = "Adjust.";
     this.ColAdjustment.DisplayFormat.FormatString = "#,###.##";
     this.ColAdjustment.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.ColAdjustment.FieldName = "Adjustment";
     this.ColAdjustment.Name = "ColAdjustment";
     this.ColAdjustment.OptionsColumn.AllowEdit = false;
     this.ColAdjustment.OptionsColumn.AllowFocus = false;
     this.ColAdjustment.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.ColAdjustment.OptionsColumn.AllowIncrementalSearch = false;
     this.ColAdjustment.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.ColAdjustment.OptionsColumn.AllowMove = false;
     this.ColAdjustment.OptionsColumn.AllowShowHide = false;
     this.ColAdjustment.OptionsColumn.AllowSize = false;
     this.ColAdjustment.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.ColAdjustment.OptionsColumn.FixedWidth = true;
     this.ColAdjustment.OptionsColumn.ShowInCustomizationForm = false;
     this.ColAdjustment.OptionsColumn.ShowInExpressionEditor = false;
     this.ColAdjustment.OptionsFilter.AllowAutoFilter = false;
     this.ColAdjustment.OptionsFilter.AllowFilter = false;
     this.ColAdjustment.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     this.ColAdjustment.OptionsFilter.FilterBySortField = DevExpress.Utils.DefaultBoolean.False;
     this.ColAdjustment.ToolTip = "Adjustment";
     this.ColAdjustment.Visible = true;
     this.ColAdjustment.VisibleIndex = 7;
     this.ColAdjustment.Width = 39;
     //
     // ColQuantityReceived
     //
     this.ColQuantityReceived.Caption = "Q.R";
     this.ColQuantityReceived.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.ColQuantityReceived.FieldName = "QuantityReceived";
     this.ColQuantityReceived.Name = "ColQuantityReceived";
     this.ColQuantityReceived.OptionsColumn.AllowEdit = false;
     this.ColQuantityReceived.OptionsColumn.AllowFocus = false;
     this.ColQuantityReceived.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.ColQuantityReceived.OptionsColumn.AllowIncrementalSearch = false;
     this.ColQuantityReceived.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.ColQuantityReceived.OptionsColumn.AllowMove = false;
     this.ColQuantityReceived.OptionsColumn.AllowShowHide = false;
     this.ColQuantityReceived.OptionsColumn.AllowSize = false;
     this.ColQuantityReceived.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.ColQuantityReceived.OptionsColumn.FixedWidth = true;
     this.ColQuantityReceived.OptionsColumn.ShowInCustomizationForm = false;
     this.ColQuantityReceived.OptionsColumn.ShowInExpressionEditor = false;
     this.ColQuantityReceived.OptionsFilter.AllowAutoFilter = false;
     this.ColQuantityReceived.OptionsFilter.AllowFilter = false;
     this.ColQuantityReceived.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     this.ColQuantityReceived.OptionsFilter.FilterBySortField = DevExpress.Utils.DefaultBoolean.False;
     this.ColQuantityReceived.ToolTip = "Quantity Received";
     this.ColQuantityReceived.Visible = true;
     this.ColQuantityReceived.VisibleIndex = 9;
     this.ColQuantityReceived.Width = 39;
     //
     // ColDOS
     //
     this.ColDOS.Caption = "DoS";
     this.ColDOS.DisplayFormat.FormatString = "#,###.##";
     this.ColDOS.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.ColDOS.FieldName = "DOS";
     this.ColDOS.Name = "ColDOS";
     this.ColDOS.OptionsColumn.AllowEdit = false;
     this.ColDOS.OptionsColumn.AllowFocus = false;
     this.ColDOS.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.ColDOS.OptionsColumn.AllowIncrementalSearch = false;
     this.ColDOS.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.ColDOS.OptionsColumn.AllowMove = false;
     this.ColDOS.OptionsColumn.AllowShowHide = false;
     this.ColDOS.OptionsColumn.AllowSize = false;
     this.ColDOS.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.ColDOS.OptionsColumn.FixedWidth = true;
     this.ColDOS.OptionsColumn.ShowInCustomizationForm = false;
     this.ColDOS.OptionsColumn.ShowInExpressionEditor = false;
     this.ColDOS.OptionsFilter.AllowAutoFilter = false;
     this.ColDOS.OptionsFilter.AllowFilter = false;
     this.ColDOS.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     this.ColDOS.OptionsFilter.FilterBySortField = DevExpress.Utils.DefaultBoolean.False;
     this.ColDOS.ToolTip = "Days Out Of Stock";
     this.ColDOS.Visible = true;
     this.ColDOS.VisibleIndex = 10;
     this.ColDOS.Width = 39;
     //
     // ColQuantityNeedMax
     //
     this.ColQuantityNeedMax.Caption = "Q.N.M";
     this.ColQuantityNeedMax.DisplayFormat.FormatString = "#,###.##";
     this.ColQuantityNeedMax.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.ColQuantityNeedMax.FieldName = "QuantityNeedMax";
     this.ColQuantityNeedMax.Name = "ColQuantityNeedMax";
     this.ColQuantityNeedMax.OptionsColumn.AllowEdit = false;
     this.ColQuantityNeedMax.OptionsColumn.AllowFocus = false;
     this.ColQuantityNeedMax.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.ColQuantityNeedMax.OptionsColumn.AllowIncrementalSearch = false;
     this.ColQuantityNeedMax.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.ColQuantityNeedMax.OptionsColumn.AllowMove = false;
     this.ColQuantityNeedMax.OptionsColumn.AllowShowHide = false;
     this.ColQuantityNeedMax.OptionsColumn.AllowSize = false;
     this.ColQuantityNeedMax.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.ColQuantityNeedMax.OptionsColumn.FixedWidth = true;
     this.ColQuantityNeedMax.OptionsColumn.ReadOnly = true;
     this.ColQuantityNeedMax.OptionsColumn.ShowInCustomizationForm = false;
     this.ColQuantityNeedMax.OptionsColumn.ShowInExpressionEditor = false;
     this.ColQuantityNeedMax.OptionsFilter.AllowAutoFilter = false;
     this.ColQuantityNeedMax.OptionsFilter.AllowFilter = false;
     this.ColQuantityNeedMax.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     this.ColQuantityNeedMax.OptionsFilter.FilterBySortField = DevExpress.Utils.DefaultBoolean.False;
     this.ColQuantityNeedMax.ToolTip = "Quantity Need To Reach Max =  M.S.Q - E.B";
     this.ColQuantityNeedMax.Visible = true;
     this.ColQuantityNeedMax.VisibleIndex = 11;
     this.ColQuantityNeedMax.Width = 57;
     //
     // ColMaxStockQuantity
     //
     this.ColMaxStockQuantity.Caption = "M.S.Q";
     this.ColMaxStockQuantity.DisplayFormat.FormatString = "#,###.##";
     this.ColMaxStockQuantity.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.ColMaxStockQuantity.FieldName = "MaxStockQuantity";
     this.ColMaxStockQuantity.Name = "ColMaxStockQuantity";
     this.ColMaxStockQuantity.OptionsColumn.AllowEdit = false;
     this.ColMaxStockQuantity.OptionsColumn.AllowFocus = false;
     this.ColMaxStockQuantity.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.ColMaxStockQuantity.OptionsColumn.AllowIncrementalSearch = false;
     this.ColMaxStockQuantity.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.ColMaxStockQuantity.OptionsColumn.AllowMove = false;
     this.ColMaxStockQuantity.OptionsColumn.AllowShowHide = false;
     this.ColMaxStockQuantity.OptionsColumn.AllowSize = false;
     this.ColMaxStockQuantity.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.ColMaxStockQuantity.OptionsColumn.FixedWidth = true;
     this.ColMaxStockQuantity.OptionsColumn.ReadOnly = true;
     this.ColMaxStockQuantity.OptionsColumn.ShowInCustomizationForm = false;
     this.ColMaxStockQuantity.OptionsColumn.ShowInExpressionEditor = false;
     this.ColMaxStockQuantity.OptionsFilter.AllowAutoFilter = false;
     this.ColMaxStockQuantity.OptionsFilter.AllowFilter = false;
     this.ColMaxStockQuantity.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     this.ColMaxStockQuantity.OptionsFilter.FilterBySortField = DevExpress.Utils.DefaultBoolean.False;
     this.ColMaxStockQuantity.ToolTip = "Max Stock Quantity  = (120*Consum)/(60-DOS)";
     this.ColMaxStockQuantity.Visible = true;
     this.ColMaxStockQuantity.VisibleIndex = 12;
     this.ColMaxStockQuantity.Width = 39;
     //
     // ColConsumption
     //
     this.ColConsumption.Caption = "Consum";
     this.ColConsumption.DisplayFormat.FormatString = "#,###.##";
     this.ColConsumption.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.ColConsumption.FieldName = "Consumption";
     this.ColConsumption.Name = "ColConsumption";
     this.ColConsumption.OptionsColumn.AllowEdit = false;
     this.ColConsumption.OptionsColumn.AllowFocus = false;
     this.ColConsumption.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.ColConsumption.OptionsColumn.AllowIncrementalSearch = false;
     this.ColConsumption.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.ColConsumption.OptionsColumn.AllowMove = false;
     this.ColConsumption.OptionsColumn.AllowShowHide = false;
     this.ColConsumption.OptionsColumn.AllowSize = false;
     this.ColConsumption.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.ColConsumption.OptionsColumn.FixedWidth = true;
     this.ColConsumption.OptionsColumn.ReadOnly = true;
     this.ColConsumption.OptionsColumn.ShowInCustomizationForm = false;
     this.ColConsumption.OptionsColumn.ShowInExpressionEditor = false;
     this.ColConsumption.OptionsFilter.AllowAutoFilter = false;
     this.ColConsumption.OptionsFilter.AllowFilter = false;
     this.ColConsumption.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     this.ColConsumption.OptionsFilter.FilterBySortField = DevExpress.Utils.DefaultBoolean.False;
     this.ColConsumption.ToolTip = "Calculated Consumption =   b.B + Q.R +/- (Loss+Adjust) - E.B";
     this.ColConsumption.Visible = true;
     this.ColConsumption.VisibleIndex = 13;
     this.ColConsumption.Width = 39;
     //
     // ColStockedOut
     //
     this.ColStockedOut.Caption = "StockedOut";
     this.ColStockedOut.FieldName = "StockedOut";
     this.ColStockedOut.Name = "ColStockedOut";
     this.ColStockedOut.OptionsColumn.AllowEdit = false;
     this.ColStockedOut.OptionsColumn.AllowFocus = false;
     this.ColStockedOut.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.ColStockedOut.OptionsColumn.AllowIncrementalSearch = false;
     this.ColStockedOut.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.ColStockedOut.OptionsColumn.AllowMove = false;
     this.ColStockedOut.OptionsColumn.AllowShowHide = false;
     this.ColStockedOut.OptionsColumn.AllowSize = false;
     this.ColStockedOut.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.ColStockedOut.OptionsColumn.FixedWidth = true;
     this.ColStockedOut.OptionsColumn.ShowInCustomizationForm = false;
     this.ColStockedOut.OptionsColumn.ShowInExpressionEditor = false;
     this.ColStockedOut.OptionsFilter.AllowAutoFilter = false;
     this.ColStockedOut.OptionsFilter.AllowFilter = false;
     this.ColStockedOut.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     this.ColStockedOut.OptionsFilter.FilterBySortField = DevExpress.Utils.DefaultBoolean.False;
     //
     // ExpireDateEditor
     //
     this.ExpireDateEditor.AutoHeight = false;
     this.ExpireDateEditor.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.ExpireDateEditor.DisplayFormat.FormatString = "mm-DD-YYYY";
     this.ExpireDateEditor.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.ExpireDateEditor.EditFormat.FormatString = "mm-DD-YYYY";
     this.ExpireDateEditor.EditFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.ExpireDateEditor.ExportMode = DevExpress.XtraEditors.Repository.ExportMode.Value;
     this.ExpireDateEditor.Name = "ExpireDateEditor";
     this.ExpireDateEditor.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     //
     // repositoryItemButtonEdit2
     //
     this.repositoryItemButtonEdit2.AutoHeight = false;
     this.repositoryItemButtonEdit2.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Plus)});
     this.repositoryItemButtonEdit2.Name = "repositoryItemButtonEdit2";
     this.repositoryItemButtonEdit2.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.HideTextEditor;
     //
     // spinEditQtyPerPack
     //
     this.spinEditQtyPerPack.AutoHeight = false;
     this.spinEditQtyPerPack.Name = "spinEditQtyPerPack";
     //
     // gridRecieveView1
     //
     this.gridRecieveView1.Bands.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.GridBand[] {
     this.gridBand1});
     this.gridRecieveView1.Columns.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn[] {
     this.gridColumn3,
     this.gridColumn1,
     this.gridColumn10,
     this.gridColumn2,
     this.gridColumn4,
     this.gridColumn5,
     this.gridColumn6,
     this.gridColumn7,
     this.gridColumn8,
     this.gridColumn12,
     this.gridColumn9});
     this.gridRecieveView1.GridControl = this.orderGrid;
     this.gridRecieveView1.Name = "gridRecieveView1";
     this.gridRecieveView1.OptionsView.ShowGroupPanel = false;
     //
     // gridBand1
     //
     this.gridBand1.Caption = "gridBand1";
     this.gridBand1.Columns.Add(this.gridColumn3);
     this.gridBand1.Columns.Add(this.gridColumn1);
     this.gridBand1.Columns.Add(this.gridColumn10);
     this.gridBand1.Columns.Add(this.gridColumn2);
     this.gridBand1.Columns.Add(this.gridColumn4);
     this.gridBand1.Columns.Add(this.gridColumn5);
     this.gridBand1.Columns.Add(this.gridColumn6);
     this.gridBand1.Columns.Add(this.gridColumn7);
     this.gridBand1.Columns.Add(this.gridColumn8);
     this.gridBand1.Columns.Add(this.gridColumn12);
     this.gridBand1.Columns.Add(this.gridColumn9);
     this.gridBand1.Name = "gridBand1";
     this.gridBand1.Width = 1117;
     //
     // gridColumn3
     //
     this.gridColumn3.Caption = "Stock Code";
     this.gridColumn3.FieldName = "Stock Code";
     this.gridColumn3.Name = "gridColumn3";
     this.gridColumn3.OptionsColumn.AllowEdit = false;
     this.gridColumn3.OptionsColumn.AllowFocus = false;
     this.gridColumn3.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn3.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.True;
     this.gridColumn3.Visible = true;
     this.gridColumn3.Width = 104;
     //
     // gridColumn1
     //
     this.gridColumn1.Caption = "Item Name";
     this.gridColumn1.FieldName = "Item Name";
     this.gridColumn1.Name = "gridColumn1";
     this.gridColumn1.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.True;
     this.gridColumn1.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.True;
     this.gridColumn1.Visible = true;
     this.gridColumn1.Width = 104;
     //
     // gridColumn10
     //
     this.gridColumn10.Caption = "Manufacturer";
     this.gridColumn10.FieldName = "Manufacturer";
     this.gridColumn10.Name = "gridColumn10";
     this.gridColumn10.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn10.Visible = true;
     //
     // gridColumn2
     //
     this.gridColumn2.Caption = "Pack Qty";
     this.gridColumn2.FieldName = "Pack Qty";
     this.gridColumn2.Name = "gridColumn2";
     this.gridColumn2.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn2.Visible = true;
     this.gridColumn2.Width = 104;
     //
     // gridColumn4
     //
     this.gridColumn4.Caption = "Reciving Box Size";
     this.gridColumn4.FieldName = "Qty/pack";
     this.gridColumn4.Name = "gridColumn4";
     this.gridColumn4.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn4.Visible = true;
     this.gridColumn4.Width = 104;
     //
     // gridColumn5
     //
     this.gridColumn5.Caption = "BU Qty";
     this.gridColumn5.FieldName = "BU Qty";
     this.gridColumn5.Name = "gridColumn5";
     this.gridColumn5.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn5.Visible = true;
     this.gridColumn5.Width = 104;
     //
     // gridColumn6
     //
     this.gridColumn6.Caption = "Unit";
     this.gridColumn6.FieldName = "Unit";
     this.gridColumn6.Name = "gridColumn6";
     this.gridColumn6.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn6.Visible = true;
     this.gridColumn6.Width = 104;
     //
     // gridColumn7
     //
     this.gridColumn7.Caption = "Price/Pack";
     this.gridColumn7.FieldName = "Price/Pack";
     this.gridColumn7.Name = "gridColumn7";
     this.gridColumn7.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn7.Visible = true;
     this.gridColumn7.Width = 104;
     //
     // gridColumn8
     //
     this.gridColumn8.Caption = "Batch No";
     this.gridColumn8.FieldName = "Batch No";
     this.gridColumn8.Name = "gridColumn8";
     this.gridColumn8.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn8.Visible = true;
     this.gridColumn8.Width = 144;
     //
     // gridColumn12
     //
     this.gridColumn12.ColumnEdit = this.repositoryItemButtonEdit2;
     this.gridColumn12.ImageAlignment = System.Drawing.StringAlignment.Center;
     this.gridColumn12.Name = "gridColumn12";
     this.gridColumn12.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn12.ShowButtonMode = DevExpress.XtraGrid.Views.Base.ShowButtonModeEnum.ShowAlways;
     this.gridColumn12.Visible = true;
     this.gridColumn12.Width = 25;
     //
     // gridColumn9
     //
     this.gridColumn9.Caption = "Expiry Date";
     this.gridColumn9.ColumnEdit = this.ExpireDateEditor;
     this.gridColumn9.FieldName = "Expiry Date";
     this.gridColumn9.Name = "gridColumn9";
     this.gridColumn9.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn9.Visible = true;
     this.gridColumn9.Width = 145;
     //
     // VolumeMetricsPage
     //
     this.VolumeMetricsPage.Controls.Add(this.layoutControl1);
     this.VolumeMetricsPage.Name = "VolumeMetricsPage";
     this.VolumeMetricsPage.Size = new System.Drawing.Size(910, 194);
     this.VolumeMetricsPage.Text = "Volume Metrics";
     //
     // layoutControl1
     //
     this.layoutControl1.Controls.Add(this.lkContainerTypes);
     this.layoutControl1.Controls.Add(this.cboRequiredContainer);
     this.layoutControl1.Controls.Add(this.lblAvailableVolume);
     this.layoutControl1.Controls.Add(this.lblVolumeNeeded);
     this.layoutControl1.Controls.Add(this.volumetricsCanvas);
     this.layoutControl1.Controls.Add(this.grdVolumeGrid);
     this.layoutControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.layoutControl1.HiddenItems.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.layoutControlItem32});
     this.layoutControl1.Location = new System.Drawing.Point(0, 0);
     this.layoutControl1.Name = "layoutControl1";
     this.layoutControl1.OptionsCustomizationForm.DesignTimeCustomizationFormPositionAndSize = new System.Drawing.Rectangle(845, 218, 250, 350);
     this.layoutControl1.Root = this.layoutControlGroup1;
     this.layoutControl1.Size = new System.Drawing.Size(910, 194);
     this.layoutControl1.TabIndex = 0;
     this.layoutControl1.Text = "layoutControl1";
     //
     // lkContainerTypes
     //
     this.lkContainerTypes.EditValue = "Select";
     this.lkContainerTypes.Location = new System.Drawing.Point(89, 12);
     this.lkContainerTypes.Name = "lkContainerTypes";
     this.lkContainerTypes.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lkContainerTypes.Properties.DisplayMember = "Name";
     this.lkContainerTypes.Properties.ValueMember = "ShippingContainerTypeID";
     this.lkContainerTypes.Properties.View = this.gridView1;
     this.lkContainerTypes.Size = new System.Drawing.Size(249, 20);
     this.lkContainerTypes.StyleController = this.layoutControl1;
     this.lkContainerTypes.TabIndex = 15;
     this.lkContainerTypes.EditValueChanged += new System.EventHandler(this.lkContainerTypes_EditValueChanged);
     //
     // gridView1
     //
     this.gridView1.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn11,
     this.gridColumn13,
     this.gridColumn16,
     this.gridColumn17,
     this.gridColumn18});
     this.gridView1.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
     this.gridView1.Name = "gridView1";
     this.gridView1.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gridView1.OptionsView.ShowGroupPanel = false;
     //
     // gridColumn11
     //
     this.gridColumn11.Caption = "Name";
     this.gridColumn11.FieldName = "Name";
     this.gridColumn11.Name = "gridColumn11";
     this.gridColumn11.Visible = true;
     this.gridColumn11.VisibleIndex = 0;
     //
     // gridColumn13
     //
     this.gridColumn13.Caption = "Height";
     this.gridColumn13.FieldName = "HeightMM";
     this.gridColumn13.Name = "gridColumn13";
     this.gridColumn13.Visible = true;
     this.gridColumn13.VisibleIndex = 1;
     //
     // gridColumn16
     //
     this.gridColumn16.Caption = "Width";
     this.gridColumn16.FieldName = "WidthMM";
     this.gridColumn16.Name = "gridColumn16";
     this.gridColumn16.Visible = true;
     this.gridColumn16.VisibleIndex = 2;
     //
     // gridColumn17
     //
     this.gridColumn17.Caption = "Length";
     this.gridColumn17.FieldName = "LengthMM";
     this.gridColumn17.Name = "gridColumn17";
     this.gridColumn17.Visible = true;
     this.gridColumn17.VisibleIndex = 3;
     //
     // gridColumn18
     //
     this.gridColumn18.Caption = "Weight";
     this.gridColumn18.FieldName = "WeightG";
     this.gridColumn18.Name = "gridColumn18";
     this.gridColumn18.Visible = true;
     this.gridColumn18.VisibleIndex = 4;
     //
     // cboRequiredContainer
     //
     this.cboRequiredContainer.FormattingEnabled = true;
     this.cboRequiredContainer.Location = new System.Drawing.Point(419, 12);
     this.cboRequiredContainer.Name = "cboRequiredContainer";
     this.cboRequiredContainer.Size = new System.Drawing.Size(108, 21);
     this.cboRequiredContainer.TabIndex = 14;
     this.cboRequiredContainer.SelectedIndexChanged += new System.EventHandler(this.cboRequiredContainer_SelectedIndexChanged);
     //
     // lblAvailableVolume
     //
     this.lblAvailableVolume.Location = new System.Drawing.Point(12, 37);
     this.lblAvailableVolume.Name = "lblAvailableVolume";
     this.lblAvailableVolume.Size = new System.Drawing.Size(167, 41);
     this.lblAvailableVolume.TabIndex = 13;
     //
     // lblVolumeNeeded
     //
     this.lblVolumeNeeded.Location = new System.Drawing.Point(183, 37);
     this.lblVolumeNeeded.Name = "lblVolumeNeeded";
     this.lblVolumeNeeded.Size = new System.Drawing.Size(155, 41);
     this.lblVolumeNeeded.TabIndex = 12;
     //
     // volumetricsCanvas
     //
     this.volumetricsCanvas.Location = new System.Drawing.Point(12, 82);
     this.volumetricsCanvas.Name = "volumetricsCanvas";
     this.volumetricsCanvas.Size = new System.Drawing.Size(886, 100);
     this.volumetricsCanvas.TabIndex = 10;
     this.volumetricsCanvas.Paint += new System.Windows.Forms.PaintEventHandler(this.volumetricsCanvas_Paint);
     //
     // grdVolumeGrid
     //
     this.grdVolumeGrid.Location = new System.Drawing.Point(12, 166);
     this.grdVolumeGrid.MainView = this.grdVolumeGridView;
     this.grdVolumeGrid.Name = "grdVolumeGrid";
     this.grdVolumeGrid.Size = new System.Drawing.Size(228, 173);
     this.grdVolumeGrid.TabIndex = 5;
     this.grdVolumeGrid.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.grdVolumeGridView});
     this.grdVolumeGrid.Visible = false;
     //
     // grdVolumeGridView
     //
     this.grdVolumeGridView.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.Height,
     this.Width,
     this.Depth,
     this.Quantity});
     this.grdVolumeGridView.GridControl = this.grdVolumeGrid;
     this.grdVolumeGridView.Name = "grdVolumeGridView";
     this.grdVolumeGridView.OptionsView.ShowGroupPanel = false;
     this.grdVolumeGridView.CellValueChanged += new DevExpress.XtraGrid.Views.Base.CellValueChangedEventHandler(this.grdVolumeGridView_CellValueChanged);
     //
     // Height
     //
     this.Height.Caption = "Height";
     this.Height.FieldName = "HeightMM";
     this.Height.Name = "Height";
     this.Height.Visible = true;
     this.Height.VisibleIndex = 0;
     //
     // Width
     //
     this.Width.Caption = "Width";
     this.Width.FieldName = "WidthMM";
     this.Width.Name = "Width";
     this.Width.Visible = true;
     this.Width.VisibleIndex = 1;
     //
     // Depth
     //
     this.Depth.Caption = "Depth";
     this.Depth.FieldName = "DepthMM";
     this.Depth.Name = "Depth";
     this.Depth.Visible = true;
     this.Depth.VisibleIndex = 2;
     //
     // Quantity
     //
     this.Quantity.Caption = "Quantity";
     this.Quantity.FieldName = "Quantity";
     this.Quantity.Name = "Quantity";
     this.Quantity.Visible = true;
     this.Quantity.VisibleIndex = 3;
     //
     // layoutControlItem32
     //
     this.layoutControlItem32.Control = this.grdVolumeGrid;
     this.layoutControlItem32.CustomizationFormText = "layoutControlItem32";
     this.layoutControlItem32.Location = new System.Drawing.Point(0, 154);
     this.layoutControlItem32.MinSize = new System.Drawing.Size(104, 24);
     this.layoutControlItem32.Name = "layoutControlItem32";
     this.layoutControlItem32.Size = new System.Drawing.Size(232, 177);
     this.layoutControlItem32.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem32.Text = "layoutControlItem32";
     this.layoutControlItem32.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem32.TextToControlDistance = 0;
     this.layoutControlItem32.TextVisible = false;
     //
     // layoutControlGroup1
     //
     this.layoutControlGroup1.CustomizationFormText = "layoutControlGroup1";
     this.layoutControlGroup1.EnableIndentsWithoutBorders = DevExpress.Utils.DefaultBoolean.True;
     this.layoutControlGroup1.GroupBordersVisible = false;
     this.layoutControlGroup1.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.emptySpaceItem2,
     this.layoutControlItem36,
     this.layoutControlItem37,
     this.layoutControlItem40,
     this.layoutControlItem39,
     this.emptySpaceItem4,
     this.layoutControlItem33});
     this.layoutControlGroup1.Location = new System.Drawing.Point(0, 0);
     this.layoutControlGroup1.Name = "layoutControlGroup1";
     this.layoutControlGroup1.Size = new System.Drawing.Size(910, 194);
     this.layoutControlGroup1.Text = "layoutControlGroup1";
     this.layoutControlGroup1.TextVisible = false;
     //
     // emptySpaceItem2
     //
     this.emptySpaceItem2.AllowHotTrack = false;
     this.emptySpaceItem2.CustomizationFormText = "emptySpaceItem2";
     this.emptySpaceItem2.Location = new System.Drawing.Point(519, 0);
     this.emptySpaceItem2.Name = "emptySpaceItem2";
     this.emptySpaceItem2.Size = new System.Drawing.Size(371, 25);
     this.emptySpaceItem2.Text = "emptySpaceItem2";
     this.emptySpaceItem2.TextSize = new System.Drawing.Size(0, 0);
     //
     // layoutControlItem36
     //
     this.layoutControlItem36.Control = this.volumetricsCanvas;
     this.layoutControlItem36.CustomizationFormText = "layoutControlItem36";
     this.layoutControlItem36.Location = new System.Drawing.Point(0, 70);
     this.layoutControlItem36.Name = "layoutControlItem36";
     this.layoutControlItem36.Size = new System.Drawing.Size(890, 104);
     this.layoutControlItem36.Text = "layoutControlItem36";
     this.layoutControlItem36.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem36.TextToControlDistance = 0;
     this.layoutControlItem36.TextVisible = false;
     //
     // layoutControlItem37
     //
     this.layoutControlItem37.Control = this.cboRequiredContainer;
     this.layoutControlItem37.CustomizationFormText = "Required";
     this.layoutControlItem37.Location = new System.Drawing.Point(330, 0);
     this.layoutControlItem37.Name = "layoutControlItem37";
     this.layoutControlItem37.Size = new System.Drawing.Size(189, 25);
     this.layoutControlItem37.Text = "Required";
     this.layoutControlItem37.TextSize = new System.Drawing.Size(74, 13);
     //
     // layoutControlItem40
     //
     this.layoutControlItem40.Control = this.lblVolumeNeeded;
     this.layoutControlItem40.CustomizationFormText = "layoutControlItem40";
     this.layoutControlItem40.Location = new System.Drawing.Point(171, 25);
     this.layoutControlItem40.Name = "layoutControlItem40";
     this.layoutControlItem40.Size = new System.Drawing.Size(159, 45);
     this.layoutControlItem40.Text = "layoutControlItem40";
     this.layoutControlItem40.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem40.TextToControlDistance = 0;
     this.layoutControlItem40.TextVisible = false;
     //
     // layoutControlItem39
     //
     this.layoutControlItem39.Control = this.lblAvailableVolume;
     this.layoutControlItem39.CustomizationFormText = "layoutControlItem39";
     this.layoutControlItem39.Location = new System.Drawing.Point(0, 25);
     this.layoutControlItem39.Name = "layoutControlItem39";
     this.layoutControlItem39.Size = new System.Drawing.Size(171, 45);
     this.layoutControlItem39.Text = "layoutControlItem39";
     this.layoutControlItem39.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem39.TextToControlDistance = 0;
     this.layoutControlItem39.TextVisible = false;
     //
     // emptySpaceItem4
     //
     this.emptySpaceItem4.AllowHotTrack = false;
     this.emptySpaceItem4.CustomizationFormText = "emptySpaceItem4";
     this.emptySpaceItem4.Location = new System.Drawing.Point(330, 25);
     this.emptySpaceItem4.Name = "emptySpaceItem4";
     this.emptySpaceItem4.Size = new System.Drawing.Size(560, 45);
     this.emptySpaceItem4.Text = "emptySpaceItem4";
     this.emptySpaceItem4.TextSize = new System.Drawing.Size(0, 0);
     //
     // layoutControlItem33
     //
     this.layoutControlItem33.Control = this.lkContainerTypes;
     this.layoutControlItem33.CustomizationFormText = "Container Type";
     this.layoutControlItem33.Location = new System.Drawing.Point(0, 0);
     this.layoutControlItem33.Name = "layoutControlItem33";
     this.layoutControlItem33.Size = new System.Drawing.Size(330, 25);
     this.layoutControlItem33.Text = "Container Type";
     this.layoutControlItem33.TextSize = new System.Drawing.Size(74, 13);
     //
     // NoOfVisitLabel
     //
     this.NoOfVisitLabel.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.NoOfVisitLabel.Location = new System.Drawing.Point(1259, 4);
     this.NoOfVisitLabel.Name = "NoOfVisitLabel";
     this.NoOfVisitLabel.Size = new System.Drawing.Size(87, 13);
     this.NoOfVisitLabel.TabIndex = 47;
     //
     // LastVisitlabel
     //
     this.LastVisitlabel.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.LastVisitlabel.Location = new System.Drawing.Point(1050, 4);
     this.LastVisitlabel.Name = "LastVisitlabel";
     this.LastVisitlabel.Size = new System.Drawing.Size(119, 13);
     this.LastVisitlabel.TabIndex = 46;
     //
     // progressBarControl
     //
     this.progressBarControl.Location = new System.Drawing.Point(390, 370);
     this.progressBarControl.Name = "progressBarControl";
     this.progressBarControl.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.progressBarControl.Properties.Appearance.ForeColor = System.Drawing.Color.Black;
     this.progressBarControl.Properties.ProgressViewStyle = DevExpress.XtraEditors.Controls.ProgressViewStyle.Solid;
     this.progressBarControl.Properties.ShowTitle = true;
     this.progressBarControl.Properties.Step = 1;
     this.progressBarControl.Size = new System.Drawing.Size(962, 20);
     this.progressBarControl.TabIndex = 45;
     //
     // simpleButton1
     //
     this.simpleButton1.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton1.Image")));
     this.simpleButton1.Location = new System.Drawing.Point(763, 367);
     this.simpleButton1.Name = "simpleButton1";
     this.simpleButton1.Size = new System.Drawing.Size(142, 22);
     this.simpleButton1.TabIndex = 32;
     this.simpleButton1.Text = "Save Multiple";
     this.simpleButton1.Click += new System.EventHandler(this.multiFacilityDialog_Click);
     //
     // lkType
     //
     this.lkType.Location = new System.Drawing.Point(818, 59);
     this.lkType.Name = "lkType";
     this.lkType.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lkType.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Count", "Name"),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("ID", "Name28", 20, DevExpress.Utils.FormatType.None, "", false, DevExpress.Utils.HorzAlignment.Default)});
     this.lkType.Properties.DisplayMember = "Name";
     this.lkType.Properties.NullText = "Select Institution Type";
     this.lkType.Properties.ShowFooter = false;
     this.lkType.Properties.ShowHeader = false;
     this.lkType.Properties.ValueMember = "ID";
     this.lkType.Size = new System.Drawing.Size(211, 20);
     this.lkType.TabIndex = 45;
     this.lkType.EditValueChanged += new System.EventHandler(this.lkType_EditValueChanged);
     //
     // lkOwnership
     //
     this.lkOwnership.Location = new System.Drawing.Point(818, 35);
     this.lkOwnership.Name = "lkOwnership";
     this.lkOwnership.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lkOwnership.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Count", "Name"),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("ID", "Name26", 20, DevExpress.Utils.FormatType.None, "", false, DevExpress.Utils.HorzAlignment.Default)});
     this.lkOwnership.Properties.DisplayMember = "Name";
     this.lkOwnership.Properties.NullText = "Select Ownership";
     this.lkOwnership.Properties.ShowFooter = false;
     this.lkOwnership.Properties.ShowHeader = false;
     this.lkOwnership.Properties.ValueMember = "ID";
     this.lkOwnership.Size = new System.Drawing.Size(211, 20);
     this.lkOwnership.TabIndex = 44;
     this.lkOwnership.EditValueChanged += new System.EventHandler(this.lkOwnership_EditValueChanged);
     //
     // lkWoreda
     //
     this.lkWoreda.Location = new System.Drawing.Point(497, 83);
     this.lkWoreda.Name = "lkWoreda";
     this.lkWoreda.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lkWoreda.Properties.CloseUpKey = new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None);
     this.lkWoreda.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("ID", "ID", 20, DevExpress.Utils.FormatType.None, "", false, DevExpress.Utils.HorzAlignment.Default),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Count", "Woreda Name")});
     this.lkWoreda.Properties.DisplayMember = "WoredaName";
     this.lkWoreda.Properties.NullText = "";
     this.lkWoreda.Properties.ShowFooter = false;
     this.lkWoreda.Properties.ShowHeader = false;
     this.lkWoreda.Properties.ValueMember = "ID";
     this.lkWoreda.Size = new System.Drawing.Size(226, 20);
     this.lkWoreda.TabIndex = 43;
     this.lkWoreda.EditValueChanged += new System.EventHandler(this.lkWoreda_EditValueChanged);
     //
     // txtRemark
     //
     this.txtRemark.Anchor = System.Windows.Forms.AnchorStyles.Bottom;
     this.txtRemark.Location = new System.Drawing.Point(357, 521);
     this.txtRemark.Name = "txtRemark";
     this.txtRemark.Size = new System.Drawing.Size(395, 22);
     this.txtRemark.TabIndex = 18;
     //
     // txtReceivedBy
     //
     this.txtReceivedBy.Anchor = System.Windows.Forms.AnchorStyles.Bottom;
     this.txtReceivedBy.Enabled = false;
     this.txtReceivedBy.Location = new System.Drawing.Point(664, 521);
     this.txtReceivedBy.Name = "txtReceivedBy";
     this.txtReceivedBy.Size = new System.Drawing.Size(124, 20);
     this.txtReceivedBy.TabIndex = 16;
     //
     // txtTin
     //
     this.txtTin.Enabled = false;
     this.txtTin.Location = new System.Drawing.Point(497, 4);
     this.txtTin.Name = "txtTin";
     this.txtTin.Properties.Appearance.BackColor = System.Drawing.SystemColors.Control;
     this.txtTin.Properties.Appearance.Options.UseBackColor = true;
     this.txtTin.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.txtTin.Size = new System.Drawing.Size(122, 18);
     this.txtTin.TabIndex = 26;
     this.txtTin.Visible = false;
     //
     // txtVatRegistration
     //
     this.txtVatRegistration.Enabled = false;
     this.txtVatRegistration.Location = new System.Drawing.Point(621, 4);
     this.txtVatRegistration.Name = "txtVatRegistration";
     this.txtVatRegistration.Properties.Appearance.BackColor = System.Drawing.SystemColors.Control;
     this.txtVatRegistration.Properties.Appearance.Options.UseBackColor = true;
     this.txtVatRegistration.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.txtVatRegistration.Size = new System.Drawing.Size(128, 18);
     this.txtVatRegistration.TabIndex = 25;
     //
     // txtRegistrationNo
     //
     this.txtRegistrationNo.Location = new System.Drawing.Point(808, 4);
     this.txtRegistrationNo.Name = "txtRegistrationNo";
     this.txtRegistrationNo.Properties.Appearance.BackColor = System.Drawing.SystemColors.Control;
     this.txtRegistrationNo.Properties.Appearance.Options.UseBackColor = true;
     this.txtRegistrationNo.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.txtRegistrationNo.Size = new System.Drawing.Size(50, 18);
     this.txtRegistrationNo.TabIndex = 27;
     //
     // txtLetterNumber
     //
     this.txtLetterNumber.Location = new System.Drawing.Point(1151, 83);
     this.txtLetterNumber.Name = "txtLetterNumber";
     this.txtLetterNumber.Size = new System.Drawing.Size(183, 20);
     this.txtLetterNumber.TabIndex = 28;
     //
     // txtRefNo
     //
     this.txtRefNo.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.txtRefNo.Location = new System.Drawing.Point(104, 16);
     this.txtRefNo.Name = "txtRefNo";
     this.txtRefNo.Properties.Appearance.BackColor = System.Drawing.SystemColors.Control;
     this.txtRefNo.Properties.Appearance.Options.UseBackColor = true;
     this.txtRefNo.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.txtRefNo.Size = new System.Drawing.Size(160, 18);
     this.txtRefNo.TabIndex = 15;
     //
     // btnSaveOrder
     //
     this.btnSaveOrder.Cursor = System.Windows.Forms.Cursors.Default;
     this.btnSaveOrder.Image = ((System.Drawing.Image)(resources.GetObject("btnSaveOrder.Image")));
     this.btnSaveOrder.Location = new System.Drawing.Point(909, 367);
     this.btnSaveOrder.Name = "btnSaveOrder";
     this.btnSaveOrder.Size = new System.Drawing.Size(142, 22);
     this.btnSaveOrder.TabIndex = 24;
     this.btnSaveOrder.Text = "Save as Draft";
     this.btnSaveOrder.Click += new System.EventHandler(this.SaveOrderAsDraft);
     //
     // btnSaveAndForward
     //
     this.btnSaveAndForward.Image = ((System.Drawing.Image)(resources.GetObject("btnSaveAndForward.Image")));
     this.btnSaveAndForward.Location = new System.Drawing.Point(1055, 367);
     this.btnSaveAndForward.Name = "btnSaveAndForward";
     this.btnSaveAndForward.Size = new System.Drawing.Size(142, 22);
     this.btnSaveAndForward.TabIndex = 25;
     this.btnSaveAndForward.Text = "Save and Forward";
     this.btnSaveAndForward.Click += new System.EventHandler(this.btnSaveAndForward_Click);
     //
     // lkModes
     //
     this.lkModes.EditValue = "1";
     this.lkModes.Location = new System.Drawing.Point(78, 62);
     this.lkModes.Name = "lkModes";
     this.lkModes.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lkModes.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("TypeName", "Name")});
     this.lkModes.Properties.DisplayMember = "TypeName";
     this.lkModes.Properties.NullText = "Select Mode";
     this.lkModes.Properties.ShowFooter = false;
     this.lkModes.Properties.ValueMember = "ID";
     this.lkModes.Size = new System.Drawing.Size(186, 20);
     this.lkModes.TabIndex = 15;
     conditionValidationRule1.ConditionOperator = DevExpress.XtraEditors.DXErrorProvider.ConditionOperator.IsNotBlank;
     conditionValidationRule1.ErrorText = "This value is not valid";
     this.dxValidation1stTab.SetValidationRule(this.lkModes, conditionValidationRule1);
     this.lkModes.EditValueChanged += new System.EventHandler(this.lkModes_EditValueChanged);
     //
     // txtContactPerson
     //
     this.txtContactPerson.Location = new System.Drawing.Point(1151, 59);
     this.txtContactPerson.Name = "txtContactPerson";
     this.txtContactPerson.Size = new System.Drawing.Size(183, 20);
     this.txtContactPerson.TabIndex = 39;
     //
     // lkZone
     //
     this.lkZone.Location = new System.Drawing.Point(497, 59);
     this.lkZone.Name = "lkZone";
     this.lkZone.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lkZone.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Count", "ZoneName"),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("ID", "ID", 20, DevExpress.Utils.FormatType.None, "", false, DevExpress.Utils.HorzAlignment.Default)});
     this.lkZone.Properties.DisplayMember = "ZoneName";
     this.lkZone.Properties.NullText = "";
     this.lkZone.Properties.ShowFooter = false;
     this.lkZone.Properties.ShowHeader = false;
     this.lkZone.Properties.ValueMember = "ID";
     this.lkZone.Size = new System.Drawing.Size(226, 20);
     this.lkZone.TabIndex = 38;
     this.lkZone.EditValueChanged += new System.EventHandler(this.lkZone_EditValueChanged);
     //
     // lkRegion
     //
     this.lkRegion.Location = new System.Drawing.Point(497, 35);
     this.lkRegion.Name = "lkRegion";
     this.lkRegion.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lkRegion.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("RegionName", "RegionName"),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("ID", "ID", 20, DevExpress.Utils.FormatType.None, "", false, DevExpress.Utils.HorzAlignment.Default)});
     this.lkRegion.Properties.DisplayMember = "RegionName";
     this.lkRegion.Properties.NullText = "Select Region";
     this.lkRegion.Properties.ShowFooter = false;
     this.lkRegion.Properties.ShowHeader = false;
     this.lkRegion.Properties.ValueMember = "ID";
     this.lkRegion.Size = new System.Drawing.Size(226, 20);
     this.lkRegion.TabIndex = 37;
     this.lkRegion.Tag = "r";
     conditionValidationRule2.ConditionOperator = DevExpress.XtraEditors.DXErrorProvider.ConditionOperator.IsNotBlank;
     conditionValidationRule2.ErrorText = "This value is not valid";
     this.dxValidation1stTab.SetValidationRule(this.lkRegion, conditionValidationRule2);
     this.lkRegion.EditValueChanged += new System.EventHandler(this.lkRegion_EditValueChanged);
     //
     // lblLoadRU
     //
     this.lblLoadRU.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Underline);
     this.lblLoadRU.Location = new System.Drawing.Point(1082, 19);
     this.lblLoadRU.Name = "lblLoadRU";
     this.lblLoadRU.Size = new System.Drawing.Size(33, 13);
     this.lblLoadRU.TabIndex = 36;
     this.lblLoadRU.Text = "Reload";
     this.lblLoadRU.Click += new System.EventHandler(this.lblLoadRU_Click);
     //
     // lkCategoires
     //
     this.lkCategoires.Location = new System.Drawing.Point(78, 86);
     this.lkCategoires.Name = "lkCategoires";
     this.lkCategoires.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lkCategoires.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Name", "Name")});
     this.lkCategoires.Properties.DisplayMember = "Name";
     this.lkCategoires.Properties.NullText = "Select Commodity Type";
     this.lkCategoires.Properties.ShowFooter = false;
     this.lkCategoires.Properties.ValueMember = "ID";
     this.lkCategoires.Size = new System.Drawing.Size(186, 20);
     this.lkCategoires.TabIndex = 23;
     this.lkCategoires.EditValueChanged += new System.EventHandler(this.lkCategoires_EditValueChanged);
     //
     // txtItemName
     //
     this.txtItemName.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.txtItemName.Location = new System.Drawing.Point(308, 86);
     this.txtItemName.Name = "txtItemName";
     this.txtItemName.Size = new System.Drawing.Size(102, 20);
     this.txtItemName.TabIndex = 4;
     this.txtItemName.EditValueChanged += new System.EventHandler(this.OnFilterByItemNameChanged);
     //
     // gridItemsChoice
     //
     this.gridItemsChoice.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.gridItemsChoice.Location = new System.Drawing.Point(4, 122);
     this.gridItemsChoice.MainView = this.gridItemChoiceView;
     this.gridItemsChoice.Name = "gridItemsChoice";
     this.gridItemsChoice.Padding = new System.Windows.Forms.Padding(2);
     this.gridItemsChoice.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemCheckEdit1,
     this.repositoryItemMemoEdit2});
     this.gridItemsChoice.Size = new System.Drawing.Size(418, 241);
     this.gridItemsChoice.TabIndex = 11;
     this.gridItemsChoice.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridItemChoiceView});
     this.gridItemsChoice.Click += new System.EventHandler(this.gridItemsChoice_Click);
     //
     // gridItemChoiceView
     //
     this.gridItemChoiceView.Appearance.FocusedRow.BackColor = System.Drawing.Color.Gray;
     this.gridItemChoiceView.Appearance.FocusedRow.Options.UseBackColor = true;
     this.gridItemChoiceView.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn30,
     this.gridColumn28,
     this.colItemName,
     this.gridColumn14,
     this.gridColumn29,
     this.gridColumn66,
     this.gridColumn67,
     this.gridColumn21});
     styleFormatCondition4.Appearance.ForeColor = System.Drawing.Color.Silver;
     styleFormatCondition4.Appearance.Options.UseForeColor = true;
     styleFormatCondition4.ApplyToRow = true;
     styleFormatCondition4.Condition = DevExpress.XtraGrid.FormatConditionEnum.Expression;
     styleFormatCondition4.Expression = "[StockedOut] == 1";
     this.gridItemChoiceView.FormatConditions.AddRange(new DevExpress.XtraGrid.StyleFormatCondition[] {
     styleFormatCondition4});
     this.gridItemChoiceView.GridControl = this.gridItemsChoice;
     this.gridItemChoiceView.GroupSummary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] {
     new DevExpress.XtraGrid.GridGroupSummaryItem(DevExpress.Data.SummaryItemType.None, "", null, "")});
     this.gridItemChoiceView.HorzScrollStep = 1;
     this.gridItemChoiceView.Name = "gridItemChoiceView";
     this.gridItemChoiceView.OptionsBehavior.AllowDeleteRows = DevExpress.Utils.DefaultBoolean.False;
     this.gridItemChoiceView.OptionsCustomization.AllowColumnMoving = false;
     this.gridItemChoiceView.OptionsCustomization.AllowColumnResizing = false;
     this.gridItemChoiceView.OptionsCustomization.AllowFilter = false;
     this.gridItemChoiceView.OptionsCustomization.AllowGroup = false;
     this.gridItemChoiceView.OptionsDetail.AllowExpandEmptyDetails = true;
     this.gridItemChoiceView.OptionsDetail.EnableDetailToolTip = true;
     this.gridItemChoiceView.OptionsDetail.SmartDetailExpandButtonMode = DevExpress.XtraGrid.Views.Grid.DetailExpandButtonMode.AlwaysEnabled;
     this.gridItemChoiceView.OptionsDetail.SmartDetailHeight = true;
     this.gridItemChoiceView.OptionsFilter.UseNewCustomFilterDialog = true;
     this.gridItemChoiceView.OptionsMenu.EnableColumnMenu = false;
     this.gridItemChoiceView.OptionsMenu.EnableFooterMenu = false;
     this.gridItemChoiceView.OptionsMenu.EnableGroupPanelMenu = false;
     this.gridItemChoiceView.OptionsPrint.EnableAppearanceEvenRow = true;
     this.gridItemChoiceView.OptionsPrint.EnableAppearanceOddRow = true;
     this.gridItemChoiceView.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gridItemChoiceView.OptionsSelection.EnableAppearanceHideSelection = false;
     this.gridItemChoiceView.OptionsSelection.MultiSelect = true;
     this.gridItemChoiceView.OptionsView.EnableAppearanceEvenRow = true;
     this.gridItemChoiceView.OptionsView.EnableAppearanceOddRow = true;
     this.gridItemChoiceView.OptionsView.ShowFilterPanelMode = DevExpress.XtraGrid.Views.Base.ShowFilterPanelMode.Never;
     this.gridItemChoiceView.OptionsView.ShowGroupPanel = false;
     this.gridItemChoiceView.OptionsView.ShowIndicator = false;
     this.gridItemChoiceView.RowClick += new DevExpress.XtraGrid.Views.Grid.RowClickEventHandler(this.gridItemChoiceView_RowClick);
     //
     // gridColumn30
     //
     this.gridColumn30.ColumnEdit = this.repositoryItemCheckEdit1;
     this.gridColumn30.FieldName = "IsSelected";
     this.gridColumn30.Name = "gridColumn30";
     this.gridColumn30.OptionsColumn.AllowEdit = false;
     this.gridColumn30.OptionsColumn.AllowFocus = false;
     this.gridColumn30.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn30.OptionsColumn.AllowIncrementalSearch = false;
     this.gridColumn30.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn30.OptionsColumn.AllowMove = false;
     this.gridColumn30.OptionsColumn.AllowShowHide = false;
     this.gridColumn30.OptionsColumn.AllowSize = false;
     this.gridColumn30.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn30.OptionsColumn.FixedWidth = true;
     this.gridColumn30.OptionsColumn.ShowInCustomizationForm = false;
     this.gridColumn30.OptionsColumn.ShowInExpressionEditor = false;
     this.gridColumn30.OptionsFilter.AllowAutoFilter = false;
     this.gridColumn30.OptionsFilter.AllowFilter = false;
     this.gridColumn30.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn30.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Like;
     this.gridColumn30.Visible = true;
     this.gridColumn30.VisibleIndex = 0;
     this.gridColumn30.Width = 20;
     //
     // repositoryItemCheckEdit1
     //
     this.repositoryItemCheckEdit1.AutoHeight = false;
     this.repositoryItemCheckEdit1.Name = "repositoryItemCheckEdit1";
     this.repositoryItemCheckEdit1.NullStyle = DevExpress.XtraEditors.Controls.StyleIndeterminate.Unchecked;
     this.repositoryItemCheckEdit1.ValueGrayed = false;
     this.repositoryItemCheckEdit1.CheckedChanged += new System.EventHandler(this.OnItemCheckedChanged);
     //
     // gridColumn28
     //
     this.gridColumn28.Caption = "Stock Code";
     this.gridColumn28.FieldName = "StockCode";
     this.gridColumn28.Name = "gridColumn28";
     this.gridColumn28.OptionsColumn.AllowEdit = false;
     this.gridColumn28.OptionsColumn.AllowFocus = false;
     this.gridColumn28.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn28.OptionsColumn.AllowIncrementalSearch = false;
     this.gridColumn28.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn28.OptionsColumn.AllowMove = false;
     this.gridColumn28.OptionsColumn.AllowShowHide = false;
     this.gridColumn28.OptionsColumn.AllowSize = false;
     this.gridColumn28.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn28.OptionsColumn.FixedWidth = true;
     this.gridColumn28.OptionsColumn.ShowInCustomizationForm = false;
     this.gridColumn28.OptionsColumn.ShowInExpressionEditor = false;
     this.gridColumn28.OptionsFilter.AllowAutoFilter = false;
     this.gridColumn28.OptionsFilter.AllowFilter = false;
     this.gridColumn28.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn28.Width = 89;
     //
     // colItemName
     //
     this.colItemName.AppearanceCell.Options.UseTextOptions = true;
     this.colItemName.AppearanceCell.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.colItemName.AppearanceHeader.Options.UseTextOptions = true;
     this.colItemName.AppearanceHeader.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.colItemName.Caption = "Item";
     this.colItemName.ColumnEdit = this.repositoryItemMemoEdit2;
     this.colItemName.FieldName = "FullItemName";
     this.colItemName.Name = "colItemName";
     this.colItemName.OptionsColumn.AllowEdit = false;
     this.colItemName.OptionsColumn.AllowFocus = false;
     this.colItemName.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.colItemName.OptionsColumn.AllowIncrementalSearch = false;
     this.colItemName.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.colItemName.OptionsColumn.AllowMove = false;
     this.colItemName.OptionsColumn.AllowShowHide = false;
     this.colItemName.OptionsColumn.AllowSize = false;
     this.colItemName.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.colItemName.OptionsColumn.FixedWidth = true;
     this.colItemName.OptionsColumn.ShowInCustomizationForm = false;
     this.colItemName.OptionsColumn.ShowInExpressionEditor = false;
     this.colItemName.OptionsFilter.AllowAutoFilter = false;
     this.colItemName.OptionsFilter.AllowFilter = false;
     this.colItemName.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     this.colItemName.Visible = true;
     this.colItemName.VisibleIndex = 1;
     this.colItemName.Width = 343;
     //
     // repositoryItemMemoEdit2
     //
     this.repositoryItemMemoEdit2.LinesCount = 1;
     this.repositoryItemMemoEdit2.Name = "repositoryItemMemoEdit2";
     //
     // gridColumn14
     //
     this.gridColumn14.Caption = "Type";
     this.gridColumn14.FieldName = "CommodityType";
     this.gridColumn14.Name = "gridColumn14";
     this.gridColumn14.OptionsColumn.AllowEdit = false;
     this.gridColumn14.OptionsColumn.AllowFocus = false;
     this.gridColumn14.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn14.OptionsColumn.AllowIncrementalSearch = false;
     this.gridColumn14.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn14.OptionsColumn.AllowMove = false;
     this.gridColumn14.OptionsColumn.AllowShowHide = false;
     this.gridColumn14.OptionsColumn.AllowSize = false;
     this.gridColumn14.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn14.OptionsColumn.FixedWidth = true;
     this.gridColumn14.OptionsColumn.ShowInCustomizationForm = false;
     this.gridColumn14.OptionsColumn.ShowInExpressionEditor = false;
     this.gridColumn14.OptionsFilter.AllowAutoFilter = false;
     this.gridColumn14.OptionsFilter.AllowFilter = false;
     this.gridColumn14.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     //
     // gridColumn29
     //
     this.gridColumn29.Caption = "Unit";
     this.gridColumn29.FieldName = "Unit";
     this.gridColumn29.Name = "gridColumn29";
     this.gridColumn29.OptionsColumn.AllowEdit = false;
     this.gridColumn29.OptionsColumn.AllowFocus = false;
     this.gridColumn29.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn29.OptionsColumn.AllowIncrementalSearch = false;
     this.gridColumn29.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn29.OptionsColumn.AllowMove = false;
     this.gridColumn29.OptionsColumn.AllowShowHide = false;
     this.gridColumn29.OptionsColumn.AllowSize = false;
     this.gridColumn29.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn29.OptionsColumn.FixedWidth = true;
     this.gridColumn29.OptionsColumn.ShowInCustomizationForm = false;
     this.gridColumn29.OptionsColumn.ShowInExpressionEditor = false;
     this.gridColumn29.OptionsFilter.AllowAutoFilter = false;
     this.gridColumn29.OptionsFilter.AllowFilter = false;
     this.gridColumn29.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn29.Visible = true;
     this.gridColumn29.VisibleIndex = 2;
     //
     // gridColumn66
     //
     this.gridColumn66.Caption = "gridColumn66";
     this.gridColumn66.FieldName = "SubCategoryID";
     this.gridColumn66.Name = "gridColumn66";
     this.gridColumn66.OptionsColumn.AllowEdit = false;
     this.gridColumn66.OptionsColumn.AllowFocus = false;
     this.gridColumn66.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn66.OptionsColumn.AllowIncrementalSearch = false;
     this.gridColumn66.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn66.OptionsColumn.AllowMove = false;
     this.gridColumn66.OptionsColumn.AllowShowHide = false;
     this.gridColumn66.OptionsColumn.AllowSize = false;
     this.gridColumn66.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn66.OptionsColumn.FixedWidth = true;
     this.gridColumn66.OptionsColumn.ShowInCustomizationForm = false;
     this.gridColumn66.OptionsColumn.ShowInExpressionEditor = false;
     this.gridColumn66.OptionsFilter.AllowAutoFilter = false;
     this.gridColumn66.OptionsFilter.AllowFilter = false;
     this.gridColumn66.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     //
     // gridColumn67
     //
     this.gridColumn67.Caption = "gridColumn67";
     this.gridColumn67.FieldName = "CategoryID";
     this.gridColumn67.Name = "gridColumn67";
     this.gridColumn67.OptionsColumn.AllowEdit = false;
     this.gridColumn67.OptionsColumn.AllowFocus = false;
     this.gridColumn67.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn67.OptionsColumn.AllowIncrementalSearch = false;
     this.gridColumn67.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn67.OptionsColumn.AllowMove = false;
     this.gridColumn67.OptionsColumn.AllowShowHide = false;
     this.gridColumn67.OptionsColumn.AllowSize = false;
     this.gridColumn67.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn67.OptionsColumn.FixedWidth = true;
     this.gridColumn67.OptionsColumn.ShowInCustomizationForm = false;
     this.gridColumn67.OptionsColumn.ShowInExpressionEditor = false;
     this.gridColumn67.OptionsFilter.AllowAutoFilter = false;
     this.gridColumn67.OptionsFilter.AllowFilter = false;
     this.gridColumn67.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     //
     // gridColumn21
     //
     this.gridColumn21.Caption = "gridColumn21";
     this.gridColumn21.FieldName = "TypeID";
     this.gridColumn21.Name = "gridColumn21";
     this.gridColumn21.OptionsColumn.AllowEdit = false;
     this.gridColumn21.OptionsColumn.AllowFocus = false;
     this.gridColumn21.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn21.OptionsColumn.AllowIncrementalSearch = false;
     this.gridColumn21.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn21.OptionsColumn.AllowMove = false;
     this.gridColumn21.OptionsColumn.AllowShowHide = false;
     this.gridColumn21.OptionsColumn.AllowSize = false;
     this.gridColumn21.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn21.OptionsColumn.FixedWidth = true;
     this.gridColumn21.OptionsColumn.ShowInCustomizationForm = false;
     this.gridColumn21.OptionsColumn.ShowInExpressionEditor = false;
     this.gridColumn21.OptionsFilter.AllowAutoFilter = false;
     this.gridColumn21.OptionsFilter.AllowFilter = false;
     this.gridColumn21.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     //
     // lkPaymentType
     //
     this.lkPaymentType.Location = new System.Drawing.Point(1150, 35);
     this.lkPaymentType.Margin = new System.Windows.Forms.Padding(0);
     this.lkPaymentType.Name = "lkPaymentType";
     this.lkPaymentType.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lkPaymentType.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Name", "Name")});
     this.lkPaymentType.Properties.DisplayMember = "Name";
     this.lkPaymentType.Properties.NullText = "Select Payment Type";
     this.lkPaymentType.Properties.PopupSizeable = false;
     this.lkPaymentType.Properties.ShowFooter = false;
     this.lkPaymentType.Properties.ShowHeader = false;
     this.lkPaymentType.Properties.ValueMember = "ID";
     this.lkPaymentType.Size = new System.Drawing.Size(184, 20);
     this.lkPaymentType.TabIndex = 37;
     conditionValidationRule3.ConditionOperator = DevExpress.XtraEditors.DXErrorProvider.ConditionOperator.IsNotBlank;
     conditionValidationRule3.ErrorText = "This value is not valid";
     this.dxValidation1stTab.SetValidationRule(this.lkPaymentType, conditionValidationRule3);
     //
     // lkForFacility
     //
     this.lkForFacility.EditValue = "1";
     this.lkForFacility.Location = new System.Drawing.Point(818, 83);
     this.lkForFacility.Name = "lkForFacility";
     this.lkForFacility.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lkForFacility.Properties.DisplayMember = "Name";
     this.lkForFacility.Properties.NullText = "Select Issue Location";
     this.lkForFacility.Properties.ShowFooter = false;
     this.lkForFacility.Properties.ShowPopupShadow = false;
     this.lkForFacility.Properties.ValueMember = "ID";
     this.lkForFacility.Properties.View = this.gridLookUpEdit1View;
     this.lkForFacility.Size = new System.Drawing.Size(211, 20);
     this.lkForFacility.TabIndex = 22;
     this.lkForFacility.EditValueChanged += new System.EventHandler(this.lkForFacility_EditValueChanged);
     //
     // gridLookUpEdit1View
     //
     this.gridLookUpEdit1View.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn15,
     this.gridColumn19,
     this.gridColumn20,
     this.gridColumn22,
     this.gridColumn24,
     this.gridColumn25});
     this.gridLookUpEdit1View.DetailTabHeaderLocation = DevExpress.XtraTab.TabHeaderLocation.Bottom;
     this.gridLookUpEdit1View.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
     this.gridLookUpEdit1View.GroupFooterShowMode = DevExpress.XtraGrid.Views.Grid.GroupFooterShowMode.VisibleAlways;
     this.gridLookUpEdit1View.Name = "gridLookUpEdit1View";
     this.gridLookUpEdit1View.OptionsCustomization.AllowColumnMoving = false;
     this.gridLookUpEdit1View.OptionsCustomization.AllowColumnResizing = false;
     this.gridLookUpEdit1View.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gridLookUpEdit1View.OptionsView.ShowAutoFilterRow = true;
     this.gridLookUpEdit1View.OptionsView.ShowFilterPanelMode = DevExpress.XtraGrid.Views.Base.ShowFilterPanelMode.Never;
     this.gridLookUpEdit1View.OptionsView.ShowGroupPanel = false;
     this.gridLookUpEdit1View.OptionsView.ShowIndicator = false;
     this.gridLookUpEdit1View.ScrollStyle = DevExpress.XtraGrid.Views.Grid.ScrollStyleFlags.LiveVertScroll;
     //
     // gridColumn15
     //
     this.gridColumn15.Caption = "Name";
     this.gridColumn15.FieldName = "Name";
     this.gridColumn15.MinWidth = 150;
     this.gridColumn15.Name = "gridColumn15";
     this.gridColumn15.OptionsColumn.AllowEdit = false;
     this.gridColumn15.OptionsColumn.AllowFocus = false;
     this.gridColumn15.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn15.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn15.OptionsColumn.AllowMove = false;
     this.gridColumn15.OptionsColumn.AllowShowHide = false;
     this.gridColumn15.OptionsColumn.AllowSize = false;
     this.gridColumn15.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn15.OptionsColumn.ShowInCustomizationForm = false;
     this.gridColumn15.Visible = true;
     this.gridColumn15.VisibleIndex = 0;
     this.gridColumn15.Width = 150;
     //
     // gridColumn19
     //
     this.gridColumn19.Caption = "Ownership";
     this.gridColumn19.FieldName = "OwnershipName";
     this.gridColumn19.MinWidth = 75;
     this.gridColumn19.Name = "gridColumn19";
     this.gridColumn19.OptionsColumn.AllowEdit = false;
     this.gridColumn19.OptionsColumn.AllowFocus = false;
     this.gridColumn19.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn19.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn19.OptionsColumn.AllowMove = false;
     this.gridColumn19.OptionsColumn.AllowShowHide = false;
     this.gridColumn19.OptionsColumn.AllowSize = false;
     this.gridColumn19.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn19.OptionsColumn.ShowInCustomizationForm = false;
     this.gridColumn19.Visible = true;
     this.gridColumn19.VisibleIndex = 1;
     //
     // gridColumn20
     //
     this.gridColumn20.Caption = "Type";
     this.gridColumn20.FieldName = "InstitutionTypeName";
     this.gridColumn20.MinWidth = 75;
     this.gridColumn20.Name = "gridColumn20";
     this.gridColumn20.OptionsColumn.AllowEdit = false;
     this.gridColumn20.OptionsColumn.AllowFocus = false;
     this.gridColumn20.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn20.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn20.OptionsColumn.AllowMove = false;
     this.gridColumn20.OptionsColumn.AllowShowHide = false;
     this.gridColumn20.OptionsColumn.AllowSize = false;
     this.gridColumn20.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn20.OptionsColumn.ShowInCustomizationForm = false;
     this.gridColumn20.Visible = true;
     this.gridColumn20.VisibleIndex = 2;
     //
     // gridColumn22
     //
     this.gridColumn22.Caption = "Woreda";
     this.gridColumn22.FieldName = "WoredaName";
     this.gridColumn22.MinWidth = 150;
     this.gridColumn22.Name = "gridColumn22";
     this.gridColumn22.OptionsColumn.AllowEdit = false;
     this.gridColumn22.OptionsColumn.AllowFocus = false;
     this.gridColumn22.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn22.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn22.OptionsColumn.AllowMove = false;
     this.gridColumn22.OptionsColumn.AllowShowHide = false;
     this.gridColumn22.OptionsColumn.AllowSize = false;
     this.gridColumn22.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn22.OptionsColumn.ShowInCustomizationForm = false;
     this.gridColumn22.Visible = true;
     this.gridColumn22.VisibleIndex = 3;
     this.gridColumn22.Width = 150;
     //
     // gridColumn24
     //
     this.gridColumn24.Caption = "Zone";
     this.gridColumn24.FieldName = "ZoneName";
     this.gridColumn24.MinWidth = 150;
     this.gridColumn24.Name = "gridColumn24";
     this.gridColumn24.OptionsColumn.AllowEdit = false;
     this.gridColumn24.OptionsColumn.AllowFocus = false;
     this.gridColumn24.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn24.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn24.OptionsColumn.AllowMove = false;
     this.gridColumn24.OptionsColumn.AllowShowHide = false;
     this.gridColumn24.OptionsColumn.AllowSize = false;
     this.gridColumn24.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn24.OptionsColumn.ShowInCustomizationForm = false;
     this.gridColumn24.Visible = true;
     this.gridColumn24.VisibleIndex = 4;
     this.gridColumn24.Width = 150;
     //
     // gridColumn25
     //
     this.gridColumn25.Caption = "Region";
     this.gridColumn25.FieldName = "RegionName";
     this.gridColumn25.MinWidth = 75;
     this.gridColumn25.Name = "gridColumn25";
     this.gridColumn25.OptionsColumn.AllowEdit = false;
     this.gridColumn25.OptionsColumn.AllowFocus = false;
     this.gridColumn25.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn25.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn25.OptionsColumn.AllowMove = false;
     this.gridColumn25.OptionsColumn.AllowShowHide = false;
     this.gridColumn25.OptionsColumn.AllowSize = false;
     this.gridColumn25.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn25.OptionsColumn.ShowInCustomizationForm = false;
     this.gridColumn25.Visible = true;
     this.gridColumn25.VisibleIndex = 5;
     //
     // lkPeriod
     //
     this.lkPeriod.Location = new System.Drawing.Point(818, 107);
     this.lkPeriod.Name = "lkPeriod";
     this.lkPeriod.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lkPeriod.Properties.DisplayMember = "StartDate_EndDate";
     this.lkPeriod.Properties.NullText = "Select Period";
     this.lkPeriod.Properties.ShowFooter = false;
     this.lkPeriod.Properties.ValueMember = "PeriodID";
     this.lkPeriod.Properties.View = this.gridView2;
     this.lkPeriod.Size = new System.Drawing.Size(211, 20);
     this.lkPeriod.TabIndex = 44;
     this.lkPeriod.EditValueChanging += new DevExpress.XtraEditors.Controls.ChangingEventHandler(this.lkPeriod_EditValueChanging);
     //
     // gridView2
     //
     this.gridView2.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.lkColStartDate_EndDate});
     this.gridView2.DetailHeight = 150;
     this.gridView2.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
     this.gridView2.Name = "gridView2";
     this.gridView2.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gridView2.OptionsView.ShowGroupPanel = false;
     //
     // lkColStartDate_EndDate
     //
     this.lkColStartDate_EndDate.Caption = "StartDate_EndDate";
     this.lkColStartDate_EndDate.FieldName = "StartDate_EndDate";
     this.lkColStartDate_EndDate.Name = "lkColStartDate_EndDate";
     this.lkColStartDate_EndDate.Visible = true;
     this.lkColStartDate_EndDate.VisibleIndex = 0;
     //
     // lkRequisitionType
     //
     this.lkRequisitionType.Location = new System.Drawing.Point(78, 38);
     this.lkRequisitionType.Name = "lkRequisitionType";
     this.lkRequisitionType.Properties.AllowMouseWheel = false;
     this.lkRequisitionType.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lkRequisitionType.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Description", "Requisiton Type")});
     this.lkRequisitionType.Properties.DisplayMember = "Description";
     this.lkRequisitionType.Properties.NullText = "Select Type";
     this.lkRequisitionType.Properties.PopupWidth = 100;
     this.lkRequisitionType.Properties.ShowFooter = false;
     this.lkRequisitionType.Properties.ValueMember = "Value";
     this.lkRequisitionType.Size = new System.Drawing.Size(186, 20);
     this.lkRequisitionType.TabIndex = 45;
     conditionValidationRule4.ConditionOperator = DevExpress.XtraEditors.DXErrorProvider.ConditionOperator.IsNotBlank;
     conditionValidationRule4.ErrorText = "This value is not valid";
     this.dxValidation1stTab.SetValidationRule(this.lkRequisitionType, conditionValidationRule4);
     this.lkRequisitionType.EditValueChanged += new System.EventHandler(this.lkRequisitionType_EditValueChanged);
     this.lkRequisitionType.EditValueChanging += new DevExpress.XtraEditors.Controls.ChangingEventHandler(this.lkRequisitionType_EditValueChanging);
     //
     // btnCancelOne
     //
     this.btnCancelOne.Image = ((System.Drawing.Image)(resources.GetObject("btnCancelOne.Image")));
     this.btnCancelOne.Location = new System.Drawing.Point(1201, 367);
     this.btnCancelOne.Name = "btnCancelOne";
     this.btnCancelOne.Size = new System.Drawing.Size(142, 22);
     this.btnCancelOne.TabIndex = 20;
     this.btnCancelOne.Text = "Cancel";
     this.btnCancelOne.Click += new System.EventHandler(this.btnCancelOne_Click);
     //
     // layoutControlItem24
     //
     this.layoutControlItem24.Control = this.txtReceivedBy;
     this.layoutControlItem24.CustomizationFormText = "Received By";
     this.layoutControlItem24.Location = new System.Drawing.Point(538, 517);
     this.layoutControlItem24.Name = "layoutControlItem24";
     this.layoutControlItem24.Size = new System.Drawing.Size(250, 26);
     this.layoutControlItem24.Text = "Received By";
     this.layoutControlItem24.TextSize = new System.Drawing.Size(120, 13);
     this.layoutControlItem24.TextToControlDistance = 5;
     //
     // layoutControlItem25
     //
     this.layoutControlItem25.Control = this.txtRemark;
     this.layoutControlItem25.CustomizationFormText = "layoutControlItem25";
     this.layoutControlItem25.Location = new System.Drawing.Point(231, 517);
     this.layoutControlItem25.Name = "layoutControlItem25";
     this.layoutControlItem25.Size = new System.Drawing.Size(521, 26);
     this.layoutControlItem25.Text = "Remarks";
     this.layoutControlItem25.TextSize = new System.Drawing.Size(120, 13);
     this.layoutControlItem25.TextToControlDistance = 5;
     //
     // layoutReload
     //
     this.layoutReload.Control = this.lblLoadRU;
     this.layoutReload.ControlAlignment = System.Drawing.ContentAlignment.MiddleCenter;
     this.layoutReload.CustomizationFormText = "layoutControlItem2";
     this.layoutReload.FillControlToClientArea = false;
     this.layoutReload.Location = new System.Drawing.Point(1078, 0);
     this.layoutReload.Name = "layoutReload";
     this.layoutReload.Size = new System.Drawing.Size(37, 48);
     this.layoutReload.Text = "layoutReload";
     this.layoutReload.TextLocation = DevExpress.Utils.Locations.Default;
     this.layoutReload.TextSize = new System.Drawing.Size(0, 0);
     this.layoutReload.TextToControlDistance = 0;
     this.layoutReload.TextVisible = false;
     this.layoutReload.TrimClientAreaToControl = false;
     this.layoutReload.Visibility = DevExpress.XtraLayout.Utils.LayoutVisibility.Never;
     //
     // progressBarlayoutControlItem
     //
     this.progressBarlayoutControlItem.Control = this.progressBarControl;
     this.progressBarlayoutControlItem.CustomizationFormText = "progressBarlayoutControlItem";
     this.progressBarlayoutControlItem.Location = new System.Drawing.Point(386, 366);
     this.progressBarlayoutControlItem.MinSize = new System.Drawing.Size(54, 18);
     this.progressBarlayoutControlItem.Name = "progressBarlayoutControlItem";
     this.progressBarlayoutControlItem.Size = new System.Drawing.Size(966, 24);
     this.progressBarlayoutControlItem.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.progressBarlayoutControlItem.Text = "progressBarlayoutControlItem";
     this.progressBarlayoutControlItem.TextSize = new System.Drawing.Size(0, 0);
     this.progressBarlayoutControlItem.TextToControlDistance = 0;
     this.progressBarlayoutControlItem.TextVisible = false;
     this.progressBarlayoutControlItem.Visibility = DevExpress.XtraLayout.Utils.LayoutVisibility.Never;
     //
     // layoutControlItem23
     //
     this.layoutControlItem23.Control = this.txtTin;
     this.layoutControlItem23.CustomizationFormText = "TIN Number";
     this.layoutControlItem23.Location = new System.Drawing.Point(430, 0);
     this.layoutControlItem23.MaxSize = new System.Drawing.Size(189, 22);
     this.layoutControlItem23.MinSize = new System.Drawing.Size(189, 22);
     this.layoutControlItem23.Name = "layoutControlItem23";
     this.layoutControlItem23.Size = new System.Drawing.Size(189, 22);
     this.layoutControlItem23.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem23.Text = "TIN Number:";
     this.layoutControlItem23.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem23.TextSize = new System.Drawing.Size(61, 13);
     this.layoutControlItem23.TextToControlDistance = 2;
     //
     // layoutControlItem22
     //
     this.layoutControlItem22.Control = this.txtVatRegistration;
     this.layoutControlItem22.CustomizationFormText = "VAT Registration Number";
     this.layoutControlItem22.Location = new System.Drawing.Point(552, 0);
     this.layoutControlItem22.MaxSize = new System.Drawing.Size(197, 22);
     this.layoutControlItem22.MinSize = new System.Drawing.Size(197, 22);
     this.layoutControlItem22.Name = "layoutControlItem22";
     this.layoutControlItem22.Size = new System.Drawing.Size(197, 22);
     this.layoutControlItem22.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem22.Text = "VAT Number:";
     this.layoutControlItem22.TextSize = new System.Drawing.Size(63, 13);
     this.layoutControlItem22.TextToControlDistance = 5;
     //
     // layoutControlItem21
     //
     this.layoutControlItem21.Control = this.txtRegistrationNo;
     this.layoutControlItem21.CustomizationFormText = "License Number";
     this.layoutControlItem21.Location = new System.Drawing.Point(723, 0);
     this.layoutControlItem21.MinSize = new System.Drawing.Size(135, 22);
     this.layoutControlItem21.Name = "layoutControlItem21";
     this.layoutControlItem21.Size = new System.Drawing.Size(135, 22);
     this.layoutControlItem21.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem21.Text = "License Number:";
     this.layoutControlItem21.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem21.TextSize = new System.Drawing.Size(79, 13);
     this.layoutControlItem21.TextToControlDistance = 2;
     //
     // layoutControlItem13
     //
     this.layoutControlItem13.Control = this.txtRefNo;
     this.layoutControlItem13.CustomizationFormText = "Order Number";
     this.layoutControlItem13.Location = new System.Drawing.Point(0, 0);
     this.layoutControlItem13.MaxSize = new System.Drawing.Size(252, 22);
     this.layoutControlItem13.MinSize = new System.Drawing.Size(252, 22);
     this.layoutControlItem13.Name = "layoutControlItem13";
     this.layoutControlItem13.Size = new System.Drawing.Size(252, 22);
     this.layoutControlItem13.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem13.Text = "Order Number:";
     this.layoutControlItem13.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem13.TextSize = new System.Drawing.Size(72, 13);
     this.layoutControlItem13.TextToControlDistance = 16;
     //
     // layoutControlGroup14
     //
     this.layoutControlGroup14.CustomizationFormText = "Root";
     this.layoutControlGroup14.EnableIndentsWithoutBorders = DevExpress.Utils.DefaultBoolean.True;
     this.layoutControlGroup14.GroupBordersVisible = false;
     this.layoutControlGroup14.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.layoutControlItem29,
     this.layoutControlItem2,
     this.layoutControlItem30,
     this.layoutControlItem8,
     this.layoutControlItem19,
     this.layoutControlItem12,
     this.emptySpaceItem14,
     this.simpleSeparator2,
     this.LastVisitlayout,
     this.NoRequisitionlayout,
     this.layoutControlGroup2,
     this.layoutControlGroup5,
     this.emptySpaceItem5,
     this.simpleSeparator3,
     this.layoutControlGroup4,
     this.layoutControlItem18,
     this.layoutControlItem34,
     this.layoutControlItem35,
     this.emptySpaceItem9,
     this.layoutControlGroup3});
     this.layoutControlGroup14.Location = new System.Drawing.Point(0, 0);
     this.layoutControlGroup14.Name = "Root";
     this.layoutControlGroup14.OptionsItemText.TextToControlDistance = 2;
     this.layoutControlGroup14.Padding = new DevExpress.XtraLayout.Utils.Padding(2, 2, 2, 2);
     this.layoutControlGroup14.Size = new System.Drawing.Size(1350, 393);
     this.layoutControlGroup14.Text = "Root";
     this.layoutControlGroup14.TextVisible = false;
     //
     // layoutControlItem29
     //
     this.layoutControlItem29.Control = this.gridItemsChoice;
     this.layoutControlItem29.CustomizationFormText = "layoutControlItem29";
     this.layoutControlItem29.Location = new System.Drawing.Point(0, 118);
     this.layoutControlItem29.Name = "layoutControlItem29";
     this.layoutControlItem29.Size = new System.Drawing.Size(422, 245);
     this.layoutControlItem29.Text = "layoutControlItem29";
     this.layoutControlItem29.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem29.TextToControlDistance = 0;
     this.layoutControlItem29.TextVisible = false;
     //
     // layoutControlItem2
     //
     this.layoutControlItem2.Control = this.xtraTabControl1;
     this.layoutControlItem2.CustomizationFormText = "layoutControlItem2";
     this.layoutControlItem2.Location = new System.Drawing.Point(430, 141);
     this.layoutControlItem2.Name = "layoutControlItem2";
     this.layoutControlItem2.Padding = new DevExpress.XtraLayout.Utils.Padding(0, 0, 0, 0);
     this.layoutControlItem2.Size = new System.Drawing.Size(916, 222);
     this.layoutControlItem2.Text = "layoutControlItem2";
     this.layoutControlItem2.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem2.TextToControlDistance = 0;
     this.layoutControlItem2.TextVisible = false;
     //
     // layoutControlItem30
     //
     this.layoutControlItem30.Control = this.simpleButton1;
     this.layoutControlItem30.CustomizationFormText = "layoutControlItem30";
     this.layoutControlItem30.Location = new System.Drawing.Point(759, 363);
     this.layoutControlItem30.MaxSize = new System.Drawing.Size(146, 26);
     this.layoutControlItem30.MinSize = new System.Drawing.Size(146, 26);
     this.layoutControlItem30.Name = "layoutControlItem30";
     this.layoutControlItem30.Size = new System.Drawing.Size(146, 26);
     this.layoutControlItem30.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem30.Text = "layoutControlItem30";
     this.layoutControlItem30.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem30.TextToControlDistance = 0;
     this.layoutControlItem30.TextVisible = false;
     //
     // layoutControlItem8
     //
     this.layoutControlItem8.Control = this.btnSaveAndForward;
     this.layoutControlItem8.CustomizationFormText = "layoutControlItem8";
     this.layoutControlItem8.Location = new System.Drawing.Point(1051, 363);
     this.layoutControlItem8.MaxSize = new System.Drawing.Size(146, 26);
     this.layoutControlItem8.MinSize = new System.Drawing.Size(146, 26);
     this.layoutControlItem8.Name = "layoutControlItem8";
     this.layoutControlItem8.Size = new System.Drawing.Size(146, 26);
     this.layoutControlItem8.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem8.Text = "layoutControlItem8";
     this.layoutControlItem8.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem8.TextToControlDistance = 0;
     this.layoutControlItem8.TextVisible = false;
     //
     // layoutControlItem19
     //
     this.layoutControlItem19.Control = this.btnSaveOrder;
     this.layoutControlItem19.CustomizationFormText = "layoutControlItem19";
     this.layoutControlItem19.Location = new System.Drawing.Point(905, 363);
     this.layoutControlItem19.MaxSize = new System.Drawing.Size(146, 26);
     this.layoutControlItem19.MinSize = new System.Drawing.Size(146, 26);
     this.layoutControlItem19.Name = "layoutControlItem19";
     this.layoutControlItem19.Size = new System.Drawing.Size(146, 26);
     this.layoutControlItem19.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem19.Text = "layoutControlItem19";
     this.layoutControlItem19.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem19.TextToControlDistance = 0;
     this.layoutControlItem19.TextVisible = false;
     //
     // layoutControlItem12
     //
     this.layoutControlItem12.Control = this.btnCancelOne;
     this.layoutControlItem12.CustomizationFormText = "layoutControlItem12";
     this.layoutControlItem12.Location = new System.Drawing.Point(1197, 363);
     this.layoutControlItem12.Name = "layoutControlItem12";
     this.layoutControlItem12.Padding = new DevExpress.XtraLayout.Utils.Padding(2, 5, 2, 2);
     this.layoutControlItem12.Size = new System.Drawing.Size(149, 26);
     this.layoutControlItem12.Text = "layoutControlItem12";
     this.layoutControlItem12.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem12.TextToControlDistance = 0;
     this.layoutControlItem12.TextVisible = false;
     //
     // emptySpaceItem14
     //
     this.emptySpaceItem14.AllowHotTrack = false;
     this.emptySpaceItem14.CustomizationFormText = "emptySpaceItem14";
     this.emptySpaceItem14.Location = new System.Drawing.Point(0, 363);
     this.emptySpaceItem14.Name = "emptySpaceItem14";
     this.emptySpaceItem14.Size = new System.Drawing.Size(759, 26);
     this.emptySpaceItem14.Text = "emptySpaceItem14";
     this.emptySpaceItem14.TextSize = new System.Drawing.Size(0, 0);
     //
     // simpleSeparator2
     //
     this.simpleSeparator2.AllowHotTrack = false;
     this.simpleSeparator2.CustomizationFormText = "simpleSeparator2";
     this.simpleSeparator2.Location = new System.Drawing.Point(430, 17);
     this.simpleSeparator2.Name = "simpleSeparator2";
     this.simpleSeparator2.Size = new System.Drawing.Size(916, 2);
     this.simpleSeparator2.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.simpleSeparator2.Text = "simpleSeparator2";
     //
     // LastVisitlayout
     //
     this.LastVisitlayout.AppearanceItemCaption.Options.UseTextOptions = true;
     this.LastVisitlayout.AppearanceItemCaption.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Near;
     this.LastVisitlayout.Control = this.LastVisitlabel;
     this.LastVisitlayout.CustomizationFormText = "Last Visit:";
     this.LastVisitlayout.Location = new System.Drawing.Point(992, 0);
     this.LastVisitlayout.MaxSize = new System.Drawing.Size(177, 17);
     this.LastVisitlayout.MinSize = new System.Drawing.Size(177, 17);
     this.LastVisitlayout.Name = "LastVisitlayout";
     this.LastVisitlayout.Size = new System.Drawing.Size(177, 17);
     this.LastVisitlayout.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.LastVisitlayout.Text = "  Last Visit:";
     this.LastVisitlayout.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.CustomSize;
     this.LastVisitlayout.TextSize = new System.Drawing.Size(52, 13);
     this.LastVisitlayout.TextToControlDistance = 2;
     //
     // NoRequisitionlayout
     //
     this.NoRequisitionlayout.Control = this.NoOfVisitLabel;
     this.NoRequisitionlayout.CustomizationFormText = "        No of Requistion:";
     this.NoRequisitionlayout.Location = new System.Drawing.Point(1169, 0);
     this.NoRequisitionlayout.MaxSize = new System.Drawing.Size(177, 17);
     this.NoRequisitionlayout.MinSize = new System.Drawing.Size(177, 17);
     this.NoRequisitionlayout.Name = "NoRequisitionlayout";
     this.NoRequisitionlayout.Size = new System.Drawing.Size(177, 17);
     this.NoRequisitionlayout.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.NoRequisitionlayout.Text = "Last Requisitions:";
     this.NoRequisitionlayout.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.NoRequisitionlayout.TextSize = new System.Drawing.Size(84, 13);
     this.NoRequisitionlayout.TextToControlDistance = 2;
     //
     // layoutControlGroup2
     //
     this.layoutControlGroup2.CustomizationFormText = " ";
     this.layoutControlGroup2.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.layoutControlItem15,
     this.ShowStockOutCheckBoxLayout,
     this.layoutControlItem3,
     this.layoutControlItem4});
     this.layoutControlGroup2.Location = new System.Drawing.Point(430, 19);
     this.layoutControlGroup2.Name = "layoutControlGroup2";
     this.layoutControlGroup2.Size = new System.Drawing.Size(305, 120);
     this.layoutControlGroup2.Text = " ";
     this.layoutControlGroup2.TextVisible = false;
     //
     // layoutControlItem15
     //
     this.layoutControlItem15.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.layoutControlItem15.AppearanceItemCaption.ForeColor = System.Drawing.Color.Gray;
     this.layoutControlItem15.AppearanceItemCaption.Options.UseFont = true;
     this.layoutControlItem15.AppearanceItemCaption.Options.UseForeColor = true;
     this.layoutControlItem15.Control = this.lkWoreda;
     this.layoutControlItem15.CustomizationFormText = "Woreda";
     this.layoutControlItem15.Location = new System.Drawing.Point(0, 48);
     this.layoutControlItem15.MaxSize = new System.Drawing.Size(281, 24);
     this.layoutControlItem15.MinSize = new System.Drawing.Size(281, 24);
     this.layoutControlItem15.Name = "layoutControlItem15";
     this.layoutControlItem15.Size = new System.Drawing.Size(281, 24);
     this.layoutControlItem15.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem15.Text = "Woreda:";
     this.layoutControlItem15.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem15.TextSize = new System.Drawing.Size(47, 13);
     this.layoutControlItem15.TextToControlDistance = 4;
     //
     // ShowStockOutCheckBoxLayout
     //
     this.ShowStockOutCheckBoxLayout.Control = this.ShowStockOutCheckBox;
     this.ShowStockOutCheckBoxLayout.CustomizationFormText = "ShowStockOutCheckBoxLayout";
     this.ShowStockOutCheckBoxLayout.Location = new System.Drawing.Point(0, 72);
     this.ShowStockOutCheckBoxLayout.Name = "ShowStockOutCheckBoxLayout";
     this.ShowStockOutCheckBoxLayout.Size = new System.Drawing.Size(281, 24);
     this.ShowStockOutCheckBoxLayout.Text = "ShowStockOutCheckBoxLayout";
     this.ShowStockOutCheckBoxLayout.TextSize = new System.Drawing.Size(0, 0);
     this.ShowStockOutCheckBoxLayout.TextToControlDistance = 0;
     this.ShowStockOutCheckBoxLayout.TextVisible = false;
     //
     // layoutControlItem3
     //
     this.layoutControlItem3.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.layoutControlItem3.AppearanceItemCaption.ForeColor = System.Drawing.Color.Gray;
     this.layoutControlItem3.AppearanceItemCaption.Options.UseFont = true;
     this.layoutControlItem3.AppearanceItemCaption.Options.UseForeColor = true;
     this.layoutControlItem3.Control = this.lkRegion;
     this.layoutControlItem3.CustomizationFormText = "Region";
     this.layoutControlItem3.Location = new System.Drawing.Point(0, 0);
     this.layoutControlItem3.MaxSize = new System.Drawing.Size(281, 24);
     this.layoutControlItem3.MinSize = new System.Drawing.Size(281, 24);
     this.layoutControlItem3.Name = "layoutControlItem3";
     this.layoutControlItem3.Size = new System.Drawing.Size(281, 24);
     this.layoutControlItem3.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem3.Text = "Region:";
     this.layoutControlItem3.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem3.TextSize = new System.Drawing.Size(42, 13);
     this.layoutControlItem3.TextToControlDistance = 9;
     //
     // layoutControlItem4
     //
     this.layoutControlItem4.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.layoutControlItem4.AppearanceItemCaption.ForeColor = System.Drawing.Color.Gray;
     this.layoutControlItem4.AppearanceItemCaption.Options.UseFont = true;
     this.layoutControlItem4.AppearanceItemCaption.Options.UseForeColor = true;
     this.layoutControlItem4.Control = this.lkZone;
     this.layoutControlItem4.CustomizationFormText = "Zone";
     this.layoutControlItem4.Location = new System.Drawing.Point(0, 24);
     this.layoutControlItem4.MaxSize = new System.Drawing.Size(281, 24);
     this.layoutControlItem4.MinSize = new System.Drawing.Size(281, 24);
     this.layoutControlItem4.Name = "layoutControlItem4";
     this.layoutControlItem4.Size = new System.Drawing.Size(281, 24);
     this.layoutControlItem4.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem4.Text = "Zone:";
     this.layoutControlItem4.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem4.TextSize = new System.Drawing.Size(31, 13);
     this.layoutControlItem4.TextToControlDistance = 20;
     //
     // layoutControlGroup5
     //
     this.layoutControlGroup5.CustomizationFormText = " ";
     this.layoutControlGroup5.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.RequisitionTypelayoutControlItem,
     this.layoutControlItem7,
     this.RangeLayout,
     this.layoutControlItem52,
     this.layoutControlItem31,
     this.emptySpaceItem1,
     this.emptySpaceItem7,
     this.layoutControlItem38});
     this.layoutControlGroup5.Location = new System.Drawing.Point(0, 0);
     this.layoutControlGroup5.Name = "layoutControlGroup5";
     this.layoutControlGroup5.Size = new System.Drawing.Size(422, 118);
     this.layoutControlGroup5.Text = " ";
     this.layoutControlGroup5.TextVisible = false;
     //
     // RequisitionTypelayoutControlItem
     //
     this.RequisitionTypelayoutControlItem.AppearanceItemCaption.ForeColor = System.Drawing.Color.Black;
     this.RequisitionTypelayoutControlItem.AppearanceItemCaption.Options.UseForeColor = true;
     this.RequisitionTypelayoutControlItem.Control = this.lkRequisitionType;
     this.RequisitionTypelayoutControlItem.CustomizationFormText = "Type";
     this.RequisitionTypelayoutControlItem.ImageToTextDistance = 1;
     this.RequisitionTypelayoutControlItem.Location = new System.Drawing.Point(0, 22);
     this.RequisitionTypelayoutControlItem.MaxSize = new System.Drawing.Size(252, 24);
     this.RequisitionTypelayoutControlItem.MinSize = new System.Drawing.Size(252, 24);
     this.RequisitionTypelayoutControlItem.Name = "RequisitionTypelayoutControlItem";
     this.RequisitionTypelayoutControlItem.Size = new System.Drawing.Size(252, 24);
     this.RequisitionTypelayoutControlItem.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.RequisitionTypelayoutControlItem.Text = "Type:";
     this.RequisitionTypelayoutControlItem.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.RequisitionTypelayoutControlItem.TextSize = new System.Drawing.Size(28, 13);
     this.RequisitionTypelayoutControlItem.TextToControlDistance = 34;
     //
     // layoutControlItem7
     //
     this.layoutControlItem7.AppearanceItemCaption.ForeColor = System.Drawing.Color.Black;
     this.layoutControlItem7.AppearanceItemCaption.Options.UseForeColor = true;
     this.layoutControlItem7.Control = this.lkModes;
     this.layoutControlItem7.CustomizationFormText = "Mode:";
     this.layoutControlItem7.Location = new System.Drawing.Point(0, 46);
     this.layoutControlItem7.MaxSize = new System.Drawing.Size(252, 24);
     this.layoutControlItem7.MinSize = new System.Drawing.Size(252, 24);
     this.layoutControlItem7.Name = "layoutControlItem7";
     this.layoutControlItem7.Size = new System.Drawing.Size(252, 24);
     this.layoutControlItem7.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem7.Text = "Mode:";
     this.layoutControlItem7.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem7.TextSize = new System.Drawing.Size(30, 13);
     this.layoutControlItem7.TextToControlDistance = 32;
     //
     // RangeLayout
     //
     this.RangeLayout.AppearanceItemCaption.ForeColor = System.Drawing.Color.Black;
     this.RangeLayout.AppearanceItemCaption.Options.UseForeColor = true;
     this.RangeLayout.Control = this.lkRange;
     this.RangeLayout.CustomizationFormText = "RangeLayout";
     this.RangeLayout.Location = new System.Drawing.Point(252, 22);
     this.RangeLayout.MaxSize = new System.Drawing.Size(146, 24);
     this.RangeLayout.MinSize = new System.Drawing.Size(146, 24);
     this.RangeLayout.Name = "RangeLayout";
     this.RangeLayout.Size = new System.Drawing.Size(146, 24);
     this.RangeLayout.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.RangeLayout.Text = "Range:";
     this.RangeLayout.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.RangeLayout.TextSize = new System.Drawing.Size(35, 13);
     this.RangeLayout.TextToControlDistance = 5;
     //
     // layoutControlItem52
     //
     this.layoutControlItem52.AppearanceItemCaption.ForeColor = System.Drawing.Color.Black;
     this.layoutControlItem52.AppearanceItemCaption.Options.UseForeColor = true;
     this.layoutControlItem52.Control = this.lkCategoires;
     this.layoutControlItem52.CustomizationFormText = "Categories";
     this.layoutControlItem52.Location = new System.Drawing.Point(0, 70);
     this.layoutControlItem52.MaxSize = new System.Drawing.Size(252, 24);
     this.layoutControlItem52.MinSize = new System.Drawing.Size(252, 24);
     this.layoutControlItem52.Name = "layoutControlItem52";
     this.layoutControlItem52.Size = new System.Drawing.Size(252, 24);
     this.layoutControlItem52.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem52.Text = "Commodity:";
     this.layoutControlItem52.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem52.TextSize = new System.Drawing.Size(57, 13);
     this.layoutControlItem52.TextToControlDistance = 5;
     //
     // layoutControlItem31
     //
     this.layoutControlItem31.AppearanceItemCaption.ForeColor = System.Drawing.Color.Black;
     this.layoutControlItem31.AppearanceItemCaption.Options.UseForeColor = true;
     this.layoutControlItem31.Control = this.txtItemName;
     this.layoutControlItem31.CustomizationFormText = "layoutControlItem31";
     this.layoutControlItem31.Location = new System.Drawing.Point(252, 70);
     this.layoutControlItem31.MaxSize = new System.Drawing.Size(146, 24);
     this.layoutControlItem31.MinSize = new System.Drawing.Size(146, 24);
     this.layoutControlItem31.Name = "layoutControlItem31";
     this.layoutControlItem31.Size = new System.Drawing.Size(146, 24);
     this.layoutControlItem31.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem31.Text = "Item:";
     this.layoutControlItem31.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem31.TextSize = new System.Drawing.Size(26, 13);
     this.layoutControlItem31.TextToControlDistance = 14;
     //
     // emptySpaceItem1
     //
     this.emptySpaceItem1.AllowHotTrack = false;
     this.emptySpaceItem1.CustomizationFormText = "emptySpaceItem1";
     this.emptySpaceItem1.Location = new System.Drawing.Point(252, 46);
     this.emptySpaceItem1.MaxSize = new System.Drawing.Size(146, 24);
     this.emptySpaceItem1.MinSize = new System.Drawing.Size(146, 24);
     this.emptySpaceItem1.Name = "emptySpaceItem1";
     this.emptySpaceItem1.Size = new System.Drawing.Size(146, 24);
     this.emptySpaceItem1.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.emptySpaceItem1.Text = "emptySpaceItem1";
     this.emptySpaceItem1.TextSize = new System.Drawing.Size(0, 0);
     //
     // emptySpaceItem7
     //
     this.emptySpaceItem7.AllowHotTrack = false;
     this.emptySpaceItem7.CustomizationFormText = "emptySpaceItem7";
     this.emptySpaceItem7.Location = new System.Drawing.Point(252, 0);
     this.emptySpaceItem7.MaxSize = new System.Drawing.Size(146, 22);
     this.emptySpaceItem7.MinSize = new System.Drawing.Size(146, 22);
     this.emptySpaceItem7.Name = "emptySpaceItem7";
     this.emptySpaceItem7.Size = new System.Drawing.Size(146, 22);
     this.emptySpaceItem7.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.emptySpaceItem7.Text = "emptySpaceItem7";
     this.emptySpaceItem7.TextSize = new System.Drawing.Size(0, 0);
     //
     // layoutControlItem38
     //
     this.layoutControlItem38.Control = this.labelControl4;
     this.layoutControlItem38.CustomizationFormText = "Order Number: ";
     this.layoutControlItem38.Location = new System.Drawing.Point(0, 0);
     this.layoutControlItem38.Name = "layoutControlItem38";
     this.layoutControlItem38.Size = new System.Drawing.Size(252, 22);
     this.layoutControlItem38.Text = "Order No: ";
     this.layoutControlItem38.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem38.TextSize = new System.Drawing.Size(51, 13);
     this.layoutControlItem38.TextToControlDistance = 8;
     //
     // emptySpaceItem5
     //
     this.emptySpaceItem5.AllowHotTrack = false;
     this.emptySpaceItem5.CustomizationFormText = "emptySpaceItem5";
     this.emptySpaceItem5.Location = new System.Drawing.Point(422, 0);
     this.emptySpaceItem5.MinSize = new System.Drawing.Size(8, 10);
     this.emptySpaceItem5.Name = "emptySpaceItem5";
     this.emptySpaceItem5.Size = new System.Drawing.Size(8, 363);
     this.emptySpaceItem5.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.emptySpaceItem5.Text = "emptySpaceItem5";
     this.emptySpaceItem5.TextSize = new System.Drawing.Size(0, 0);
     //
     // simpleSeparator3
     //
     this.simpleSeparator3.AllowHotTrack = false;
     this.simpleSeparator3.CustomizationFormText = "simpleSeparator3";
     this.simpleSeparator3.Location = new System.Drawing.Point(430, 139);
     this.simpleSeparator3.Name = "simpleSeparator3";
     this.simpleSeparator3.Size = new System.Drawing.Size(916, 2);
     this.simpleSeparator3.Text = "simpleSeparator3";
     //
     // layoutControlGroup4
     //
     this.layoutControlGroup4.CustomizationFormText = "layoutControlGroup4";
     this.layoutControlGroup4.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.layoutControlItem5,
     this.layoutControlItem20,
     this.layoutControlItem1,
     this.emptySpaceItem8});
     this.layoutControlGroup4.Location = new System.Drawing.Point(1041, 19);
     this.layoutControlGroup4.Name = "layoutControlGroup4";
     this.layoutControlGroup4.Size = new System.Drawing.Size(305, 120);
     this.layoutControlGroup4.Text = " ";
     this.layoutControlGroup4.TextVisible = false;
     //
     // layoutControlItem5
     //
     this.layoutControlItem5.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.layoutControlItem5.AppearanceItemCaption.ForeColor = System.Drawing.Color.Gray;
     this.layoutControlItem5.AppearanceItemCaption.Options.UseFont = true;
     this.layoutControlItem5.AppearanceItemCaption.Options.UseForeColor = true;
     this.layoutControlItem5.AppearanceItemCaption.Options.UseTextOptions = true;
     this.layoutControlItem5.AppearanceItemCaption.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.layoutControlItem5.Control = this.txtContactPerson;
     this.layoutControlItem5.CustomizationFormText = "Contact Person";
     this.layoutControlItem5.Location = new System.Drawing.Point(0, 24);
     this.layoutControlItem5.Name = "layoutControlItem5";
     this.layoutControlItem5.Size = new System.Drawing.Size(281, 24);
     this.layoutControlItem5.Text = "Contact Person:";
     this.layoutControlItem5.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem5.TextSize = new System.Drawing.Size(89, 13);
     this.layoutControlItem5.TextToControlDistance = 5;
     //
     // layoutControlItem20
     //
     this.layoutControlItem20.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.layoutControlItem20.AppearanceItemCaption.ForeColor = System.Drawing.Color.Gray;
     this.layoutControlItem20.AppearanceItemCaption.Options.UseFont = true;
     this.layoutControlItem20.AppearanceItemCaption.Options.UseForeColor = true;
     this.layoutControlItem20.Control = this.txtLetterNumber;
     this.layoutControlItem20.CustomizationFormText = "Letter Number";
     this.layoutControlItem20.Location = new System.Drawing.Point(0, 48);
     this.layoutControlItem20.Name = "layoutControlItem20";
     this.layoutControlItem20.Size = new System.Drawing.Size(281, 24);
     this.layoutControlItem20.Text = "Letter No:";
     this.layoutControlItem20.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem20.TextSize = new System.Drawing.Size(55, 13);
     this.layoutControlItem20.TextToControlDistance = 39;
     //
     // layoutControlItem1
     //
     this.layoutControlItem1.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.layoutControlItem1.AppearanceItemCaption.ForeColor = System.Drawing.Color.Gray;
     this.layoutControlItem1.AppearanceItemCaption.Options.UseFont = true;
     this.layoutControlItem1.AppearanceItemCaption.Options.UseForeColor = true;
     this.layoutControlItem1.Control = this.lkPaymentType;
     this.layoutControlItem1.CustomizationFormText = "Payment Type";
     this.layoutControlItem1.Location = new System.Drawing.Point(0, 0);
     this.layoutControlItem1.Name = "layoutControlItem1";
     this.layoutControlItem1.Size = new System.Drawing.Size(281, 24);
     this.layoutControlItem1.Text = "Payment:";
     this.layoutControlItem1.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem1.TextSize = new System.Drawing.Size(54, 13);
     this.layoutControlItem1.TextToControlDistance = 39;
     //
     // emptySpaceItem8
     //
     this.emptySpaceItem8.AllowHotTrack = false;
     this.emptySpaceItem8.CustomizationFormText = "emptySpaceItem8";
     this.emptySpaceItem8.Location = new System.Drawing.Point(0, 72);
     this.emptySpaceItem8.Name = "emptySpaceItem8";
     this.emptySpaceItem8.Size = new System.Drawing.Size(281, 24);
     this.emptySpaceItem8.Text = "emptySpaceItem8";
     this.emptySpaceItem8.TextSize = new System.Drawing.Size(0, 0);
     //
     // layoutControlItem18
     //
     this.layoutControlItem18.Control = this.labelControl1;
     this.layoutControlItem18.CustomizationFormText = "Tin Number:";
     this.layoutControlItem18.Location = new System.Drawing.Point(459, 0);
     this.layoutControlItem18.MaxSize = new System.Drawing.Size(177, 17);
     this.layoutControlItem18.MinSize = new System.Drawing.Size(177, 17);
     this.layoutControlItem18.Name = "layoutControlItem18";
     this.layoutControlItem18.Size = new System.Drawing.Size(177, 17);
     this.layoutControlItem18.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem18.Text = "Tin Number:";
     this.layoutControlItem18.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem18.TextSize = new System.Drawing.Size(58, 13);
     this.layoutControlItem18.TextToControlDistance = 2;
     //
     // layoutControlItem34
     //
     this.layoutControlItem34.Control = this.labelControl2;
     this.layoutControlItem34.CustomizationFormText = "VAT number: ";
     this.layoutControlItem34.Location = new System.Drawing.Point(636, 0);
     this.layoutControlItem34.MaxSize = new System.Drawing.Size(178, 17);
     this.layoutControlItem34.MinSize = new System.Drawing.Size(178, 17);
     this.layoutControlItem34.Name = "layoutControlItem34";
     this.layoutControlItem34.Size = new System.Drawing.Size(178, 17);
     this.layoutControlItem34.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem34.Text = "VAT number: ";
     this.layoutControlItem34.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem34.TextSize = new System.Drawing.Size(65, 13);
     this.layoutControlItem34.TextToControlDistance = 2;
     //
     // layoutControlItem35
     //
     this.layoutControlItem35.Control = this.labelControl3;
     this.layoutControlItem35.CustomizationFormText = "License Number:";
     this.layoutControlItem35.Location = new System.Drawing.Point(814, 0);
     this.layoutControlItem35.MaxSize = new System.Drawing.Size(178, 17);
     this.layoutControlItem35.MinSize = new System.Drawing.Size(178, 17);
     this.layoutControlItem35.Name = "layoutControlItem35";
     this.layoutControlItem35.Size = new System.Drawing.Size(178, 17);
     this.layoutControlItem35.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem35.Text = "License Number:";
     this.layoutControlItem35.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem35.TextSize = new System.Drawing.Size(79, 13);
     this.layoutControlItem35.TextToControlDistance = 2;
     //
     // emptySpaceItem9
     //
     this.emptySpaceItem9.AllowHotTrack = false;
     this.emptySpaceItem9.CustomizationFormText = "emptySpaceItem9";
     this.emptySpaceItem9.Location = new System.Drawing.Point(430, 0);
     this.emptySpaceItem9.Name = "emptySpaceItem9";
     this.emptySpaceItem9.Size = new System.Drawing.Size(29, 17);
     this.emptySpaceItem9.Text = "emptySpaceItem9";
     this.emptySpaceItem9.TextSize = new System.Drawing.Size(0, 0);
     //
     // layoutControlGroup3
     //
     this.layoutControlGroup3.CustomizationFormText = "layoutControlGroup3";
     this.layoutControlGroup3.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.layoutControlItem11,
     this.lkPeriodlayout,
     this.layoutControlItem14,
     this.layoutForFacility});
     this.layoutControlGroup3.Location = new System.Drawing.Point(735, 19);
     this.layoutControlGroup3.Name = "layoutControlGroup3";
     this.layoutControlGroup3.Size = new System.Drawing.Size(306, 120);
     this.layoutControlGroup3.Text = " ";
     this.layoutControlGroup3.TextVisible = false;
     //
     // layoutControlItem11
     //
     this.layoutControlItem11.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.layoutControlItem11.AppearanceItemCaption.ForeColor = System.Drawing.Color.Gray;
     this.layoutControlItem11.AppearanceItemCaption.Options.UseFont = true;
     this.layoutControlItem11.AppearanceItemCaption.Options.UseForeColor = true;
     this.layoutControlItem11.Control = this.lkOwnership;
     this.layoutControlItem11.CustomizationFormText = "Ownership";
     this.layoutControlItem11.Location = new System.Drawing.Point(0, 0);
     this.layoutControlItem11.Name = "layoutControlItem11";
     this.layoutControlItem11.Size = new System.Drawing.Size(282, 24);
     this.layoutControlItem11.Text = "Ownership:";
     this.layoutControlItem11.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem11.TextSize = new System.Drawing.Size(62, 13);
     this.layoutControlItem11.TextToControlDistance = 5;
     //
     // lkPeriodlayout
     //
     this.lkPeriodlayout.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.lkPeriodlayout.AppearanceItemCaption.ForeColor = System.Drawing.Color.Gray;
     this.lkPeriodlayout.AppearanceItemCaption.Options.UseFont = true;
     this.lkPeriodlayout.AppearanceItemCaption.Options.UseForeColor = true;
     this.lkPeriodlayout.Control = this.lkPeriod;
     this.lkPeriodlayout.CustomizationFormText = "Period";
     this.lkPeriodlayout.ImageToTextDistance = 1;
     this.lkPeriodlayout.Location = new System.Drawing.Point(0, 72);
     this.lkPeriodlayout.Name = "lkPeriodlayout";
     this.lkPeriodlayout.Size = new System.Drawing.Size(282, 24);
     this.lkPeriodlayout.Text = "Period:";
     this.lkPeriodlayout.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.lkPeriodlayout.TextSize = new System.Drawing.Size(39, 13);
     this.lkPeriodlayout.TextToControlDistance = 28;
     //
     // layoutControlItem14
     //
     this.layoutControlItem14.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.layoutControlItem14.AppearanceItemCaption.ForeColor = System.Drawing.Color.Gray;
     this.layoutControlItem14.AppearanceItemCaption.Options.UseFont = true;
     this.layoutControlItem14.AppearanceItemCaption.Options.UseForeColor = true;
     this.layoutControlItem14.Control = this.lkType;
     this.layoutControlItem14.CustomizationFormText = "Type";
     this.layoutControlItem14.Location = new System.Drawing.Point(0, 24);
     this.layoutControlItem14.Name = "layoutControlItem14";
     this.layoutControlItem14.Size = new System.Drawing.Size(282, 24);
     this.layoutControlItem14.Text = "Inst. Type:";
     this.layoutControlItem14.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem14.TextSize = new System.Drawing.Size(60, 13);
     this.layoutControlItem14.TextToControlDistance = 7;
     //
     // layoutForFacility
     //
     this.layoutForFacility.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.layoutForFacility.AppearanceItemCaption.ForeColor = System.Drawing.Color.Gray;
     this.layoutForFacility.AppearanceItemCaption.Options.UseFont = true;
     this.layoutForFacility.AppearanceItemCaption.Options.UseForeColor = true;
     this.layoutForFacility.Control = this.lkForFacility;
     this.layoutForFacility.CustomizationFormText = "For Facility";
     this.layoutForFacility.Location = new System.Drawing.Point(0, 48);
     this.layoutForFacility.Name = "layoutForFacility";
     this.layoutForFacility.Size = new System.Drawing.Size(282, 24);
     this.layoutForFacility.Text = "Facility:";
     this.layoutForFacility.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutForFacility.TextSize = new System.Drawing.Size(43, 13);
     this.layoutForFacility.TextToControlDistance = 24;
     //
     // emptySpaceItem3
     //
     this.emptySpaceItem3.AllowHotTrack = false;
     this.emptySpaceItem3.CustomizationFormText = "emptySpaceItem3";
     this.emptySpaceItem3.Location = new System.Drawing.Point(297, 0);
     this.emptySpaceItem3.Name = "emptySpaceItem3";
     this.emptySpaceItem3.Size = new System.Drawing.Size(368, 20);
     this.emptySpaceItem3.Text = "emptySpaceItem3";
     this.emptySpaceItem3.TextSize = new System.Drawing.Size(0, 0);
     //
     // popupMenu1
     //
     this.popupMenu1.Name = "popupMenu1";
     //
     // emptySpaceItem15
     //
     this.emptySpaceItem15.AllowHotTrack = false;
     this.emptySpaceItem15.CustomizationFormText = "emptySpaceItem15";
     this.emptySpaceItem15.Location = new System.Drawing.Point(0, 116);
     this.emptySpaceItem15.Name = "emptySpaceItem15";
     this.emptySpaceItem15.Size = new System.Drawing.Size(717, 10);
     this.emptySpaceItem15.Text = "emptySpaceItem15";
     this.emptySpaceItem15.TextSize = new System.Drawing.Size(0, 0);
     //
     // layoutControlGroup8
     //
     this.layoutControlGroup8.CustomizationFormText = "layoutControlGroup8";
     this.layoutControlGroup8.Location = new System.Drawing.Point(0, 0);
     this.layoutControlGroup8.Name = "layoutControlGroup8";
     this.layoutControlGroup8.OptionsItemText.TextToControlDistance = 5;
     this.layoutControlGroup8.Size = new System.Drawing.Size(717, 116);
     this.layoutControlGroup8.Text = "layoutControlGroup8";
     //
     // layoutControlGroup9
     //
     this.layoutControlGroup9.CustomizationFormText = "layoutControlGroup9";
     this.layoutControlGroup9.Location = new System.Drawing.Point(0, 126);
     this.layoutControlGroup9.Name = "layoutControlGroup9";
     this.layoutControlGroup9.OptionsItemText.TextToControlDistance = 5;
     this.layoutControlGroup9.Size = new System.Drawing.Size(717, 68);
     this.layoutControlGroup9.Text = "layoutControlGroup9";
     //
     // layoutControlGroup10
     //
     this.layoutControlGroup10.CustomizationFormText = "layoutControlGroup10";
     this.layoutControlGroup10.Location = new System.Drawing.Point(0, 126);
     this.layoutControlGroup10.Name = "layoutControlGroup10";
     this.layoutControlGroup10.OptionsItemText.TextToControlDistance = 5;
     this.layoutControlGroup10.Size = new System.Drawing.Size(717, 68);
     this.layoutControlGroup10.Text = "layoutControlGroup10";
     //
     // emptySpaceItem10
     //
     this.emptySpaceItem10.AllowHotTrack = false;
     this.emptySpaceItem10.CustomizationFormText = "emptySpaceItem10";
     this.emptySpaceItem10.Location = new System.Drawing.Point(0, 0);
     this.emptySpaceItem10.Name = "emptySpaceItem10";
     this.emptySpaceItem10.Size = new System.Drawing.Size(693, 10);
     this.emptySpaceItem10.Text = "emptySpaceItem10";
     this.emptySpaceItem10.TextSize = new System.Drawing.Size(0, 0);
     //
     // emptySpaceItem22
     //
     this.emptySpaceItem22.AllowHotTrack = false;
     this.emptySpaceItem22.CustomizationFormText = "emptySpaceItem22";
     this.emptySpaceItem22.Location = new System.Drawing.Point(85, 0);
     this.emptySpaceItem22.Name = "emptySpaceItem22";
     this.emptySpaceItem22.Size = new System.Drawing.Size(119, 479);
     this.emptySpaceItem22.Text = "emptySpaceItem22";
     this.emptySpaceItem22.TextSize = new System.Drawing.Size(0, 0);
     //
     // emptySpaceItem23
     //
     this.emptySpaceItem23.AllowHotTrack = false;
     this.emptySpaceItem23.CustomizationFormText = "emptySpaceItem23";
     this.emptySpaceItem23.Location = new System.Drawing.Point(1179, 24);
     this.emptySpaceItem23.Name = "emptySpaceItem23";
     this.emptySpaceItem23.Size = new System.Drawing.Size(10, 455);
     this.emptySpaceItem23.Text = "emptySpaceItem23";
     this.emptySpaceItem23.TextSize = new System.Drawing.Size(0, 0);
     //
     // printingSystem1
     //
     this.printingSystem1.Links.AddRange(new object[] {
     this.printableComponentLink1,
     this.printOrder});
     //
     // printableComponentLink1
     //
     //
     //
     //
     this.printableComponentLink1.ImageCollection.ImageStream = ((DevExpress.Utils.ImageCollectionStreamer)(resources.GetObject("printableComponentLink1.ImageCollection.ImageStream")));
     this.printableComponentLink1.Landscape = true;
     this.printableComponentLink1.Margins = new System.Drawing.Printing.Margins(20, 20, 20, 20);
     this.printableComponentLink1.PageHeaderFooter = new DevExpress.XtraPrinting.PageHeaderFooter(null, new DevExpress.XtraPrinting.PageFooterArea(new string[] {
         "[Time Printed]",
         "[Date Printed]",
         "[Page # of Pages #]"}, new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))), DevExpress.XtraPrinting.BrickAlignment.Near));
     this.printableComponentLink1.PaperKind = System.Drawing.Printing.PaperKind.A4;
     this.printableComponentLink1.PrintingSystem = this.printingSystem1;
     this.printableComponentLink1.PrintingSystemBase = this.printingSystem1;
     this.printableComponentLink1.RtfReportHeader = resources.GetString("printableComponentLink1.RtfReportHeader");
     //
     // printOrder
     //
     //
     //
     //
     this.printOrder.ImageCollection.ImageStream = ((DevExpress.Utils.ImageCollectionStreamer)(resources.GetObject("printOrder.ImageCollection.ImageStream")));
     this.printOrder.Landscape = true;
     this.printOrder.PaperKind = System.Drawing.Printing.PaperKind.A4;
     this.printOrder.PrintingSystem = this.printingSystem1;
     this.printOrder.PrintingSystemBase = this.printingSystem1;
     //
     // layoutControlItem9
     //
     this.layoutControlItem9.CustomizationFormText = "Type";
     this.layoutControlItem9.Location = new System.Drawing.Point(387, 24);
     this.layoutControlItem9.Name = "layoutControlItem5";
     this.layoutControlItem9.Size = new System.Drawing.Size(356, 24);
     this.layoutControlItem9.Text = "Facility Type";
     this.layoutControlItem9.TextSize = new System.Drawing.Size(78, 13);
     this.layoutControlItem9.TextToControlDistance = 5;
     //
     // layoutControlItem10
     //
     this.layoutControlItem10.CustomizationFormText = "Type";
     this.layoutControlItem10.Location = new System.Drawing.Point(387, 24);
     this.layoutControlItem10.Name = "layoutControlItem5";
     this.layoutControlItem10.Size = new System.Drawing.Size(356, 24);
     this.layoutControlItem10.Text = "Facility Type";
     this.layoutControlItem10.TextSize = new System.Drawing.Size(78, 13);
     this.layoutControlItem10.TextToControlDistance = 5;
     //
     // layoutControlItem6
     //
     this.layoutControlItem6.CustomizationFormText = "Woreda";
     this.layoutControlItem6.Location = new System.Drawing.Point(0, 48);
     this.layoutControlItem6.Name = "layoutControlItem4";
     this.layoutControlItem6.Size = new System.Drawing.Size(387, 24);
     this.layoutControlItem6.Text = "Woreda";
     this.layoutControlItem6.TextSize = new System.Drawing.Size(78, 13);
     this.layoutControlItem6.TextToControlDistance = 5;
     //
     // layoutControlItem16
     //
     this.layoutControlItem16.CustomizationFormText = "Ownership";
     this.layoutControlItem16.Location = new System.Drawing.Point(387, 0);
     this.layoutControlItem16.Name = "layoutControlItem6";
     this.layoutControlItem16.Size = new System.Drawing.Size(356, 24);
     this.layoutControlItem16.Text = "Ownership Type";
     this.layoutControlItem16.TextSize = new System.Drawing.Size(78, 13);
     this.layoutControlItem16.TextToControlDistance = 5;
     //
     // layoutControlItem17
     //
     this.layoutControlItem17.CustomizationFormText = "Type";
     this.layoutControlItem17.Location = new System.Drawing.Point(387, 24);
     this.layoutControlItem17.Name = "layoutControlItem5";
     this.layoutControlItem17.Size = new System.Drawing.Size(356, 24);
     this.layoutControlItem17.Text = "Facility Type";
     this.layoutControlItem17.TextSize = new System.Drawing.Size(78, 13);
     this.layoutControlItem17.TextToControlDistance = 5;
     //
     // layoutControlItem26
     //
     this.layoutControlItem26.CustomizationFormText = "Woreda";
     this.layoutControlItem26.Location = new System.Drawing.Point(0, 48);
     this.layoutControlItem26.Name = "layoutControlItem4";
     this.layoutControlItem26.Size = new System.Drawing.Size(387, 24);
     this.layoutControlItem26.Text = "Woreda";
     this.layoutControlItem26.TextSize = new System.Drawing.Size(78, 13);
     this.layoutControlItem26.TextToControlDistance = 5;
     //
     // layoutControlItem27
     //
     this.layoutControlItem27.CustomizationFormText = "Ownership";
     this.layoutControlItem27.Location = new System.Drawing.Point(387, 0);
     this.layoutControlItem27.Name = "layoutControlItem6";
     this.layoutControlItem27.Size = new System.Drawing.Size(356, 24);
     this.layoutControlItem27.Text = "Ownership Type";
     this.layoutControlItem27.TextSize = new System.Drawing.Size(78, 13);
     this.layoutControlItem27.TextToControlDistance = 5;
     //
     // layoutControlItem28
     //
     this.layoutControlItem28.CustomizationFormText = "Type";
     this.layoutControlItem28.Location = new System.Drawing.Point(387, 24);
     this.layoutControlItem28.Name = "layoutControlItem5";
     this.layoutControlItem28.Size = new System.Drawing.Size(356, 24);
     this.layoutControlItem28.Text = "Facility Type";
     this.layoutControlItem28.TextSize = new System.Drawing.Size(78, 13);
     this.layoutControlItem28.TextToControlDistance = 5;
     //
     // simpleLabelItem13
     //
     this.simpleLabelItem13.AllowHotTrack = false;
     this.simpleLabelItem13.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.simpleLabelItem13.AppearanceItemCaption.Options.UseFont = true;
     this.simpleLabelItem13.CustomizationFormText = "Insurance";
     this.simpleLabelItem13.Location = new System.Drawing.Point(459, 85);
     this.simpleLabelItem13.Name = "simpleLabelItem13";
     this.simpleLabelItem13.Size = new System.Drawing.Size(165, 17);
     this.simpleLabelItem13.Text = "Insurance:";
     this.simpleLabelItem13.TextSize = new System.Drawing.Size(111, 13);
     //
     // simpleLabelItem1
     //
     this.simpleLabelItem1.AllowHotTrack = false;
     this.simpleLabelItem1.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.simpleLabelItem1.AppearanceItemCaption.Options.UseFont = true;
     this.simpleLabelItem1.CustomizationFormText = "Insurance";
     this.simpleLabelItem1.Location = new System.Drawing.Point(459, 85);
     this.simpleLabelItem1.Name = "simpleLabelItem13";
     this.simpleLabelItem1.Size = new System.Drawing.Size(165, 17);
     this.simpleLabelItem1.Text = "Insurance:";
     this.simpleLabelItem1.TextSize = new System.Drawing.Size(111, 13);
     //
     // simpleLabelItem2
     //
     this.simpleLabelItem2.AllowHotTrack = false;
     this.simpleLabelItem2.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.simpleLabelItem2.AppearanceItemCaption.Options.UseFont = true;
     this.simpleLabelItem2.CustomizationFormText = "Insurance";
     this.simpleLabelItem2.Location = new System.Drawing.Point(459, 85);
     this.simpleLabelItem2.Name = "simpleLabelItem13";
     this.simpleLabelItem2.Size = new System.Drawing.Size(165, 17);
     this.simpleLabelItem2.Text = "Insurance:";
     this.simpleLabelItem2.TextSize = new System.Drawing.Size(111, 13);
     //
     // gridColumn23
     //
     this.gridColumn23.Caption = "Ownership Type";
     this.gridColumn23.FieldName = "OwnershipName";
     this.gridColumn23.Name = "gridColumn23";
     this.gridColumn23.Visible = true;
     this.gridColumn23.VisibleIndex = 4;
     //
     // WishListForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(1350, 393);
     this.Controls.Add(this.layoutControl4);
     this.Name = "WishListForm";
     this.Text = "Order";
     this.Load += new System.EventHandler(this.OrderForm_Load);
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.spinEditPack)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.boxSizedList)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemSpinEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit3.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEdit4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl4)).EndInit();
     this.layoutControl4.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.lkRange.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ShowStockOutCheckBox.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl1)).EndInit();
     this.xtraTabControl1.ResumeLayout(false);
     this.ItemSelectionPage.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.orderGrid)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridOrderView)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemMemoEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ExpireDateEditor.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ExpireDateEditor)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEdit2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.spinEditQtyPerPack)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridRecieveView1)).EndInit();
     this.VolumeMetricsPage.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl1)).EndInit();
     this.layoutControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.lkContainerTypes.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.grdVolumeGrid)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.grdVolumeGridView)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem32)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem36)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem37)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem40)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem39)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem33)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.progressBarControl.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkType.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkOwnership.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkWoreda.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtRemark.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtReceivedBy.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtTin.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtVatRegistration.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtRegistrationNo.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtLetterNumber.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtRefNo.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkModes.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtContactPerson.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkZone.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkRegion.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkCategoires.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtItemName.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridItemsChoice)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridItemChoiceView)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemMemoEdit2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkPaymentType.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkForFacility.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridLookUpEdit1View)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkPeriod.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkRequisitionType.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem24)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem25)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutReload)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.progressBarlayoutControlItem)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem23)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem22)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem21)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem13)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup14)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem29)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem30)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem8)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem19)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem12)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem14)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.simpleSeparator2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.LastVisitlayout)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.NoRequisitionlayout)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem15)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ShowStockOutCheckBoxLayout)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.RequisitionTypelayoutControlItem)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem7)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.RangeLayout)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem52)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem31)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem7)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem38)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.simpleSeparator3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem20)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem8)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem18)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem34)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem35)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem9)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem11)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkPeriodlayout)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem14)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutForFacility)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.popupMenu1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem15)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup8)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup9)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup10)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem10)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem22)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem23)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.printingSystem1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.printableComponentLink1.ImageCollection)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.printOrder.ImageCollection)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dxValidation1stTab)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem9)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem10)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem6)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem16)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem17)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem26)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem27)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem28)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.simpleLabelItem13)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.simpleLabelItem1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.simpleLabelItem2)).EndInit();
     this.ResumeLayout(false);
 }