Esempio n. 1
0
        /// <summary>
        /// Add a structure criteria item to the criteria tab
        /// </summary>
        /// <param name="text"></param>
        /// <param name="tag"></param>

        void AddCriteriaTabStructureItem(
            QueryColumn qc)
        {
            LabelControl label      = AddColumnLabel(qc.ActiveLabel);
            int          structBoxX = 142;

            if (label.Left + label.Width > structBoxX)             // shift textbox as needed
            {
                structBoxX = label.Left + label.Width + 4;
            }
            else
            {
                label.Text += " . . . . . . . . . . . .";
            }

// Build the structure control

            PictureEdit structBox = new DevExpress.XtraEditors.PictureEdit();

            structBox.Location = new System.Drawing.Point(142, CriteriaTabYPos + 6);
            structBox.Name     = "CtStructBox";
            structBox.Size     = new System.Drawing.Size(200, 136);

            structBox.Tag = qc.QueryTable.MetaTable.Name + "." + qc.MetaColumn.Name;
            structBox.Properties.ContextMenuStrip = this.CriteriaTabRtClickContextMenu;

            int    pixWidth = structBox.Width;
            Font   font     = structBox.Font;
            Bitmap bm       = QueryTableControl.GetQueryMoleculeBitmap(qc, pixWidth, font);
            int    height   = bm.Height;

            if (height < 20)
            {
                height = 20;
            }
            structBox.Height = height;
            structBox.Image  = bm;

            structBox.MouseDown += new System.Windows.Forms.MouseEventHandler(CtStructBox_MouseDown);

            ScrollablePanel.Controls.Add(structBox);
            ScrollablePanel.Controls.Add(label);
            CtStructBox = structBox;             // so references to CtStructBox refer to new box

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

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

		}
Esempio n. 5
0
        public static void LoadControlsLayOut(ref System.Windows.Forms.SplitContainer ctrs, string formName)
        {
            int       height    = 0;
            const int width     = 250;
            const int heightBox = 32;
            Control   ctlParent = ctrs.Panel1;

            try
            {
                string    ControlName = string.Empty;
                DataTable dt          = UIMessage.DBEngine.execReturnDataTable(string.Format("select * from tblFormLayout where FormName = '{0}' and (IsLayout is null or IsLayout =0)", formName));
                if (dt != null && dt.Rows.Count > 0)
                {
                    foreach (DataRow dr in dt.Rows)
                    {
                        ControlName = dr["ControlName"].ToString();
                        if (ctlParent.Controls.Find(ControlName, true).Length <= 0)
                        {
                            DevExpress.XtraEditors.LabelControl lbl = new DevExpress.XtraEditors.LabelControl()
                            {
                                Name = string.Format("lbl{0}", ControlName), Text = UIMessage.Get_Message(string.Format("lbl{0}", ControlName)), Location = new Point(10, height)
                            };
                            ctlParent.Controls.Add(lbl);
                            switch (dr["SystemType"].ToString())
                            {
                            case "ComboBox":
                                DevExpress.XtraEditors.LookUpEdit led = new DevExpress.XtraEditors.LookUpEdit()
                                {
                                    Name = string.Format("cbx{0}", ControlName), Location = new Point(130, height), Width = width, Height = heightBox
                                };
                                ctlParent.Controls.Add(led);
                                break;

                            case "Datetime":
                            case "Date":
                                if (!ControlName.ToLower().Contains("time"))
                                {
                                    DevExpress.XtraEditors.DateEdit dtp = new DevExpress.XtraEditors.DateEdit()
                                    {
                                        Name = string.Format("dtp{0}", ControlName), Location = new Point(130, height), Width = width, Height = heightBox
                                    };
                                    ctlParent.Controls.Add(dtp);
                                }
                                else
                                {
                                    DevExpress.XtraEditors.TimeEdit tid = new DevExpress.XtraEditors.TimeEdit()
                                    {
                                        Name = string.Format("tid{0}", ControlName), Location = new Point(130, height), Width = width, Height = heightBox
                                    };
                                    ctlParent.Controls.Add(tid);
                                }
                                break;

                            case "Time":
                                DevExpress.XtraEditors.TimeEdit tid1 = new DevExpress.XtraEditors.TimeEdit()
                                {
                                    Name = string.Format("tid{0}", ControlName), Location = new Point(130, height), Width = width, Height = heightBox
                                };
                                ctlParent.Controls.Add(tid1);
                                break;

                            case "CheckEdit":
                                DevExpress.XtraEditors.CheckEdit ckb = new DevExpress.XtraEditors.CheckEdit()
                                {
                                    Name = string.Format("ckb{0}", ControlName), Location = new Point(130, height), Width = width, Height = heightBox
                                };
                                ctlParent.Controls.Add(ckb);
                                break;

                            case "PictureEdit":
                                DevExpress.XtraEditors.PictureEdit pic = new DevExpress.XtraEditors.PictureEdit()
                                {
                                    Name = string.Format("ckb{0}", ControlName), Location = new Point(130, height), Width = width, Height = heightBox
                                };
                                ctlParent.Controls.Add(pic);
                                break;

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

		}
Esempio n. 7
0
        //起始位置11、11 |128、8;size 337:21|
        //垂直增加33  
        private void frmSBTZ_Load(object sender, EventArgs e)
        {
            List<DicType> dicTypeList = new List<DicType>();
            if (sdxl != null)
            {
                gtList = Client.ClientHelper.PlatformSqlMap.GetListByWhere<sd_gt>("where LineCode='" + sdxl.LineCode + "'");
            }
            foreach (sd_gt sdgt in gtList)
            {
                dicTypeList.Add(new DicType(sdgt.gtCode, sdgt.gtCode));
            }
            //lable一个字符站12个宽度
            this.xtraTabControl1.TabPages.Clear();
            this.splitContainerControl1.Panel2.Controls.Clear();
            //lable起始位置
            int startlblw = 11;
            int startlblh = 11;
            //textbox起始位置
            int starttextw = 180;
            int starttexth = 8;
            int addh = 33;
            int pageNumber = 1;
            int nrows = 30;
            IList<sd_tsqyzlsx> sbsxList = Client.ClientHelper.PlatformSqlMap.GetListByWhere<sd_tsqyzlsx>("where zldm='" + tsqyzl.zldm + "' and isuse='是' order by convert(int,norder)");
            int[] widthArr = new int[sbsxList.Count / nrows + 1];
            for (int i = 0; i < widthArr.Length; i++)
            {
                widthArr[i] = GetMaxLblWidth(i, sbsxList);
            }
            if (widthArr[0] == 0)
                widthArr[0] = 48;
            if (pageNumber == 1)
            {
                XtraPage = new DevExpress.XtraTab.XtraTabPage();
                XtraPage.Name = "xtrpage" + pageNumber;
                XtraPage.Text = string.Format("特殊区域属性");
                this.xtraTabControl1.TabPages.Add(XtraPage);

                DevExpress.XtraEditors.LabelControl lblstart = new DevExpress.XtraEditors.LabelControl();
                lblstart.Name = "lblStart";
                lblstart.Text = "起始杆塔";
                lblstart.Location = new Point(startlblw, startlblh);

                DevExpress.XtraEditors.LookUpEdit lkueStart = new LookUpEdit();
                lkueStart.Name = "lkueStart";
                SetComboBoxData(lkueStart, "Value", "Key", "请选择", "起始杆塔", dicTypeList);

                lkueStart.Location = new Point(widthArr[pageNumber - 1] + 40, starttexth);
                lkueStart.DataBindings.Add("EditValue", rowData, "gtbegin");

                XtraPage.Controls.Add(lblstart);
                XtraPage.Controls.Add(lkueStart);
                startlblh += 33;
                starttexth += 33;
                

                DevExpress.XtraEditors.LabelControl lblend = new DevExpress.XtraEditors.LabelControl();
                lblend.Name = "lblend";
                lblend.Text = "终止杆塔";
                lblend.Location = new Point(startlblw, startlblh);

                DevExpress.XtraEditors.LookUpEdit lkueEnd = new LookUpEdit();
                lkueEnd.Name = "lkueend";
                SetComboBoxData(lkueEnd, "Value", "Key", "请选择", "终止杆塔", dicTypeList);
                lkueEnd.Location = new Point(widthArr[pageNumber - 1] + 40, starttexth);
                lkueEnd.DataBindings.Add("EditValue", rowData, "gtend");

                XtraPage.Controls.Add(lblend);
                XtraPage.Controls.Add(lkueEnd);
                startlblh += 33;
                starttexth += 33;
                
            }

                if (sbsxList.Count > 0)
                {
                    
                    int i = 3;
                    foreach (sd_tsqyzlsx sbsx in sbsxList)
                    {
                        if (i > nrows || XtraPage == null)
                        {
                            pageNumber++;
                            XtraPage = new DevExpress.XtraTab.XtraTabPage();
                            XtraPage.Name = "xtrpage" + pageNumber;
                            XtraPage.Text = string.Format("特殊区域第{0}页", pageNumber);
                            this.xtraTabControl1.TabPages.Add(XtraPage);
                            XtraPage.AutoScroll = true;
                            //XtraPage.SizeChanged += new EventHandler(XtraPage_SizeChanged);
                        }

                        if (i > nrows)
                        {
                            i = 1;
                            startlblw = 11;
                            startlblh = 11;
                            starttextw = 180;
                            starttexth = 8;
                        }
                        
                        DevExpress.XtraEditors.LabelControl lbl = new DevExpress.XtraEditors.LabelControl();
                        lbl.Name = lbl + sbsx.sxcol;
                        lbl.Text = sbsx.sxname.Trim();
                        lbl.Location = new Point(startlblw, startlblh);

                        Control txtEdit = createControl(sbsx);
                        txtEdit.Name = sbsx.sxcol;
                        //txtEdit.DataBindings.Add("EditValue", rowData, sbsx.sxcol);
                        txtEdit.Size = new Size(337, 21);
                        //txtEdit.Location = new Point(starttextw, starttexth);
                        txtEdit.Location = new Point(widthArr[pageNumber - 1] + 40, starttexth);
                        
                        XtraPage.Controls.Add(lbl);
                        XtraPage.Controls.Add(txtEdit);
                        XtraPage.AutoScrollMinSize = new Size(txtEdit.Right + 10, txtEdit.Bottom + 10);
                        startlblh += 33;
                        starttexth += 33;
                        i++;
                    }
                    

                }
                XtraPage = new DevExpress.XtraTab.XtraTabPage();
                XtraPage.Name = "xtrPagePicture";
                XtraPage.Text = "特殊区域照片";
                this.xtraTabControl1.TabPages.Add(XtraPage);
                GroupBox grpbox = new GroupBox();
                grpbox.Location = new Point(0, 0);
                grpbox.Text = "照片";
                grpbox.Name = "grppicture";
                //grpbox.Dock = DockStyle.Top;
                grpbox.Dock = DockStyle.Fill;
                grpbox.Size = new Size(565, 386);
                XtraPage.Controls.Add(grpbox);

                pictureEdit1 = new DevExpress.XtraEditors.PictureEdit();
                pictureEdit1.Dock = DockStyle.Fill;
                pictureEdit1.Name = "pictureEdit1";
                grpbox.Controls.Add(pictureEdit1);
                pictureEdit1.EditValueChanged += new EventHandler(pictureEdit1_EditValueChanged);


                DevExpress.XtraEditors.SimpleButton btnOk = new DevExpress.XtraEditors.SimpleButton();
                btnOk.Name = "btnOk";
                btnOk.Text = "确定";
                btnOk.Location = new Point(357, 9);
                btnOk.Click += new EventHandler(btnOk_Click);
                btnOk.Anchor = AnchorStyles.Bottom | AnchorStyles.Right;
                DevExpress.XtraEditors.SimpleButton btnCancel = new DevExpress.XtraEditors.SimpleButton();
                btnCancel.Name = "btnCancel";
                btnCancel.Text = "取消";
                btnCancel.Location = new Point(461, 9);
                btnCancel.Click += new EventHandler(btnCancel_Click);
                btnCancel.Anchor = AnchorStyles.Bottom | AnchorStyles.Right;
                this.splitContainerControl1.Panel2.Controls.Add(btnOk);
                this.splitContainerControl1.Panel2.Controls.Add(btnCancel);
            setImage();

        }
Esempio n. 8
0
        //起始位置11、11 |128、8;size 337:21|
        //垂直增加33  
        private void frmSBTZ_Load(object sender, EventArgs e)
        {
            //lable一个字符站12个宽度
            this.xtraTabControl1.TabPages.Clear();
            this.splitContainerControl1.Panel2.Controls.Clear();
            //lable起始位置
            int startlblw = 11;
            int startlblh = 11;
            //textbox起始位置
            int starttextw = 180;
            int starttexth = 8;
            int addh = 33;
            int pageNumber = 1;
            IList<BD_SBTZ_SX> sbsxList = Client.ClientHelper.PlatformSqlMap.GetListByWhere<BD_SBTZ_SX>("where zldm='" + rowData.sbtype + "' order by convert(int,norder)");
            int[] widthArr = new int[sbsxList.Count / 11 + 1];
            for (int i = 0; i < widthArr.Length; i++)
            {
                widthArr[i] = GetMaxLblWidth(i, sbsxList);
            }
                if (sbsxList.Count > 0)
                {
                    DevExpress.XtraTab.XtraTabPage XtraPage = null;
                    int i = 1;
                    foreach (BD_SBTZ_SX sbsx in sbsxList)
                    {
                        if (i > 100 || XtraPage == null)
                        {
                            XtraPage = new DevExpress.XtraTab.XtraTabPage();
                            XtraPage.Name = "xtrpage" + pageNumber;
                            XtraPage.Text = "设备属性";
                            this.xtraTabControl1.TabPages.Add(XtraPage);
                            XtraPage.AutoScroll = true;
                            pageNumber++;
                        }
                        if (i > 100)
                        {
                            i = 1;
                            startlblw = 11;
                            startlblh = 11;
                            starttextw = 180;
                            starttexth = 8;
                        }
                        DevExpress.XtraEditors.LabelControl lbl = new DevExpress.XtraEditors.LabelControl();
                        lbl.Name = lbl + sbsx.sxcol;
                        lbl.Text = sbsx.sxname.Trim();
                        lbl.Location = new Point(startlblw, startlblh);

                        //DevExpress.XtraEditors.TextEdit txtEdit = new DevExpress.XtraEditors.TextEdit();
                        Control txtEdit = createControl(sbsx);
                        txtEdit.Name = sbsx.sxcol;
                        //txtEdit.DataBindings.Add("EditValue", rowData, sbsx.sxcol);
                        txtEdit.Size = new Size(337, 21);
                        //txtEdit.Location = new Point(starttextw, starttexth);
                        txtEdit.Location = new Point(widthArr[pageNumber - 2] + 40, starttexth);
                        
                        XtraPage.Controls.Add(lbl);
                        XtraPage.Controls.Add(txtEdit);
                        startlblh += 33;
                        starttexth += 33;
                        i++;
                    }
                    XtraPage = new DevExpress.XtraTab.XtraTabPage();
                    XtraPage.Name = "xtrPagePicture";
                    XtraPage.Text = "变电设备照片";
                    this.xtraTabControl1.TabPages.Add(XtraPage);
                    GroupBox grpbox = new GroupBox();
                    grpbox.Location = new Point(0, 0);
                    grpbox.Text = "照片";
                    grpbox.Name = "grppicture";
                    //grpbox.Dock = DockStyle.Top;
                    grpbox.Dock = DockStyle.Fill;
                    grpbox.Size = new Size(565, 386);
                    XtraPage.Controls.Add(grpbox);

                    pictureEdit1 = new DevExpress.XtraEditors.PictureEdit();
                    pictureEdit1.Dock = DockStyle.Fill;
                    pictureEdit1.Name = "pictureEdit1";
                    pictureEdit1.Properties.SizeMode = DevExpress.XtraEditors.Controls.PictureSizeMode.Zoom;
                    grpbox.Controls.Add(pictureEdit1);
                    pictureEdit1.EditValueChanged += new EventHandler(pictureEdit1_EditValueChanged);


                    DevExpress.XtraEditors.SimpleButton btnOk = new DevExpress.XtraEditors.SimpleButton();
                    btnOk.Name = "btnOk";
                    btnOk.Text = "确定";
                    btnOk.Location = new Point(357, 9);
                    btnOk.Click += new EventHandler(btnOk_Click);
                    btnOk.Anchor = AnchorStyles.Bottom | AnchorStyles.Right;

                    DevExpress.XtraEditors.SimpleButton btnCancel = new DevExpress.XtraEditors.SimpleButton();
                    btnCancel.Name = "btnCancel";
                    btnCancel.Text = "取消";
                    btnCancel.Location = new Point(461, 9);
                    btnCancel.Click += new EventHandler(btnCancel_Click);
                    btnCancel.Anchor = AnchorStyles.Bottom | AnchorStyles.Right;

                    this.splitContainerControl1.Panel2.Controls.Add(btnOk);
                    this.splitContainerControl1.Panel2.Controls.Add(btnCancel);

                }
            setImage();

        }