namespace PEIS.View.Setting { partial class DictionaryForm { /// /// Required designer variable. /// private System.ComponentModel.IContainer components = null; /// /// Clean up any resources being used. /// /// true if managed resources should be disposed; otherwise, false. protected override void Dispose(bool disposing) { if (disposing && (components != null)) { components.Dispose(); } base.Dispose(disposing); } #region Windows Form Designer generated code /// /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// private void InitializeComponent() { this.splitContainer1 = new System.Windows.Forms.SplitContainer(); this.gridControl1 = new DevExpress.XtraGrid.GridControl(); this.gridView1 = new DevExpress.XtraGrid.Views.Grid.GridView(); this.ID = new DevExpress.XtraGrid.Columns.GridColumn(); this.DictName = new DevExpress.XtraGrid.Columns.GridColumn(); this.DictCode = new DevExpress.XtraGrid.Columns.GridColumn(); this.DictOrder = new DevExpress.XtraGrid.Columns.GridColumn(); this.DictNote = new DevExpress.XtraGrid.Columns.GridColumn(); this.panel1 = new System.Windows.Forms.Panel(); this.BtnTypeDelete = new System.Windows.Forms.Button(); this.BtnTypeAddUser = new System.Windows.Forms.Button(); this.BtnTypeRefresh = new System.Windows.Forms.Button(); this.treeList1 = new DevExpress.XtraTreeList.TreeList(); this.id1 = new DevExpress.XtraTreeList.Columns.TreeListColumn(); this.TID = new DevExpress.XtraTreeList.Columns.TreeListColumn(); this.DetailName = new DevExpress.XtraTreeList.Columns.TreeListColumn(); this.DetailCode = new DevExpress.XtraTreeList.Columns.TreeListColumn(); this.DetailOrder = new DevExpress.XtraTreeList.Columns.TreeListColumn(); this.ParentId = new DevExpress.XtraTreeList.Columns.TreeListColumn(); this.DetailNote = new DevExpress.XtraTreeList.Columns.TreeListColumn(); this.panel2 = new System.Windows.Forms.Panel(); this.label3 = new System.Windows.Forms.Label(); this.TxtCode = new System.Windows.Forms.TextBox(); this.button1 = new System.Windows.Forms.Button(); this.BtnDictDAdd = new System.Windows.Forms.Button(); this.button3 = new System.Windows.Forms.Button(); ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit(); this.splitContainer1.Panel1.SuspendLayout(); this.splitContainer1.Panel2.SuspendLayout(); this.splitContainer1.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.gridControl1)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit(); this.panel1.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.treeList1)).BeginInit(); this.panel2.SuspendLayout(); this.SuspendLayout(); // // splitContainer1 // this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill; this.splitContainer1.Location = new System.Drawing.Point(0, 0); this.splitContainer1.Name = "splitContainer1"; // // splitContainer1.Panel1 // this.splitContainer1.Panel1.AutoScroll = true; this.splitContainer1.Panel1.Controls.Add(this.gridControl1); this.splitContainer1.Panel1.Controls.Add(this.panel1); // // splitContainer1.Panel2 // this.splitContainer1.Panel2.AutoScroll = true; this.splitContainer1.Panel2.Controls.Add(this.treeList1); this.splitContainer1.Panel2.Controls.Add(this.panel2); this.splitContainer1.Size = new System.Drawing.Size(1187, 671); this.splitContainer1.SplitterDistance = 251; this.splitContainer1.TabIndex = 0; // // gridControl1 // this.gridControl1.Dock = System.Windows.Forms.DockStyle.Fill; this.gridControl1.Location = new System.Drawing.Point(0, 42); this.gridControl1.MainView = this.gridView1; this.gridControl1.Name = "gridControl1"; this.gridControl1.Size = new System.Drawing.Size(251, 629); this.gridControl1.TabIndex = 1; this.gridControl1.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] { this.gridView1}); // // gridView1 // this.gridView1.Appearance.ViewCaption.Options.UseTextOptions = true; this.gridView1.Appearance.ViewCaption.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Near; this.gridView1.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] { this.ID, this.DictName, this.DictCode, this.DictOrder, this.DictNote}); this.gridView1.GridControl = this.gridControl1; this.gridView1.Name = "gridView1"; this.gridView1.OptionsView.ShowFilterPanelMode = DevExpress.XtraGrid.Views.Base.ShowFilterPanelMode.Never; this.gridView1.OptionsView.ShowGroupPanel = false; this.gridView1.OptionsView.ShowVerticalLines = DevExpress.Utils.DefaultBoolean.False; this.gridView1.OptionsView.ShowViewCaption = true; this.gridView1.ViewCaption = "字典分类"; // // ID // this.ID.Caption = "ID"; this.ID.FieldName = "ID"; this.ID.Name = "ID"; this.ID.OptionsFilter.AllowAutoFilter = false; this.ID.OptionsFilter.AllowFilter = false; // // DictName // this.DictName.Caption = "名称"; this.DictName.FieldName = "DictName"; this.DictName.Name = "DictName"; this.DictName.OptionsColumn.AllowEdit = false; this.DictName.OptionsColumn.AllowFocus = false; this.DictName.OptionsFilter.AllowAutoFilter = false; this.DictName.OptionsFilter.AllowFilter = false; this.DictName.Visible = true; this.DictName.VisibleIndex = 0; // // DictCode // this.DictCode.Caption = "编码"; this.DictCode.FieldName = "DictCode"; this.DictCode.Name = "DictCode"; this.DictCode.OptionsColumn.AllowEdit = false; this.DictCode.OptionsColumn.AllowFocus = false; this.DictCode.OptionsFilter.AllowAutoFilter = false; this.DictCode.OptionsFilter.AllowFilter = false; this.DictCode.Visible = true; this.DictCode.VisibleIndex = 1; // // DictOrder // this.DictOrder.Caption = "分类顺序"; this.DictOrder.FieldName = "DictOrder"; this.DictOrder.Name = "DictOrder"; this.DictOrder.OptionsColumn.AllowEdit = false; this.DictOrder.OptionsColumn.AllowFocus = false; this.DictOrder.OptionsFilter.AllowAutoFilter = false; this.DictOrder.OptionsFilter.AllowFilter = false; // // DictNote // this.DictNote.Caption = "备注"; this.DictNote.Name = "DictNote"; this.DictNote.OptionsColumn.AllowEdit = false; this.DictNote.OptionsColumn.AllowFocus = false; this.DictNote.OptionsFilter.AllowAutoFilter = false; this.DictNote.OptionsFilter.AllowFilter = false; // // panel1 // this.panel1.Controls.Add(this.BtnTypeDelete); this.panel1.Controls.Add(this.BtnTypeAddUser); this.panel1.Controls.Add(this.BtnTypeRefresh); this.panel1.Dock = System.Windows.Forms.DockStyle.Top; this.panel1.Location = new System.Drawing.Point(0, 0); this.panel1.Name = "panel1"; this.panel1.Size = new System.Drawing.Size(251, 42); this.panel1.TabIndex = 0; // // BtnTypeDelete // this.BtnTypeDelete.ForeColor = System.Drawing.Color.Black; this.BtnTypeDelete.Image = global::PEIS.Properties.Resources.删除1; this.BtnTypeDelete.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft; this.BtnTypeDelete.Location = new System.Drawing.Point(169, 8); this.BtnTypeDelete.Margin = new System.Windows.Forms.Padding(0); this.BtnTypeDelete.Name = "BtnTypeDelete"; this.BtnTypeDelete.Padding = new System.Windows.Forms.Padding(3, 0, 3, 0); this.BtnTypeDelete.Size = new System.Drawing.Size(70, 30); this.BtnTypeDelete.TabIndex = 12; this.BtnTypeDelete.Text = "删除"; this.BtnTypeDelete.TextAlign = System.Drawing.ContentAlignment.MiddleRight; this.BtnTypeDelete.UseVisualStyleBackColor = true; // // BtnTypeAddUser // this.BtnTypeAddUser.Image = global::PEIS.Properties.Resources.添加; this.BtnTypeAddUser.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft; this.BtnTypeAddUser.Location = new System.Drawing.Point(89, 9); this.BtnTypeAddUser.Margin = new System.Windows.Forms.Padding(0); this.BtnTypeAddUser.Name = "BtnTypeAddUser"; this.BtnTypeAddUser.Padding = new System.Windows.Forms.Padding(3, 0, 3, 0); this.BtnTypeAddUser.Size = new System.Drawing.Size(70, 30); this.BtnTypeAddUser.TabIndex = 11; this.BtnTypeAddUser.Text = "添加"; this.BtnTypeAddUser.TextAlign = System.Drawing.ContentAlignment.MiddleRight; this.BtnTypeAddUser.UseVisualStyleBackColor = true; // // BtnTypeRefresh // this.BtnTypeRefresh.Image = global::PEIS.Properties.Resources.刷新; this.BtnTypeRefresh.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft; this.BtnTypeRefresh.Location = new System.Drawing.Point(9, 9); this.BtnTypeRefresh.Margin = new System.Windows.Forms.Padding(0); this.BtnTypeRefresh.Name = "BtnTypeRefresh"; this.BtnTypeRefresh.Padding = new System.Windows.Forms.Padding(3, 0, 3, 0); this.BtnTypeRefresh.Size = new System.Drawing.Size(70, 30); this.BtnTypeRefresh.TabIndex = 10; this.BtnTypeRefresh.Text = "刷新"; this.BtnTypeRefresh.TextAlign = System.Drawing.ContentAlignment.MiddleRight; this.BtnTypeRefresh.UseVisualStyleBackColor = true; // // treeList1 // this.treeList1.Appearance.Caption.Options.UseTextOptions = true; this.treeList1.Appearance.Caption.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Near; this.treeList1.Caption = "字典明细"; this.treeList1.Columns.AddRange(new DevExpress.XtraTreeList.Columns.TreeListColumn[] { this.id1, this.TID, this.DetailName, this.DetailCode, this.DetailOrder, this.ParentId, this.DetailNote}); this.treeList1.Cursor = System.Windows.Forms.Cursors.Default; this.treeList1.Dock = System.Windows.Forms.DockStyle.Fill; this.treeList1.Location = new System.Drawing.Point(0, 42); this.treeList1.Name = "treeList1"; this.treeList1.OptionsView.ShowCaption = true; this.treeList1.OptionsView.ShowHorzLines = false; this.treeList1.OptionsView.ShowIndicator = false; this.treeList1.OptionsView.ShowVertLines = false; this.treeList1.Size = new System.Drawing.Size(932, 629); this.treeList1.TabIndex = 0; // // id1 // this.id1.Caption = "ID"; this.id1.FieldName = "ID"; this.id1.Name = "id1"; this.id1.OptionsFilter.AllowAutoFilter = false; this.id1.OptionsFilter.AllowFilter = false; // // TID // this.TID.Caption = "字典类型ID"; this.TID.FieldName = "TID"; this.TID.Name = "TID"; this.TID.OptionsColumn.AllowEdit = false; this.TID.OptionsColumn.AllowSort = false; this.TID.OptionsFilter.AllowAutoFilter = false; this.TID.OptionsFilter.AllowFilter = false; // // DetailName // this.DetailName.Caption = "字典名称"; this.DetailName.FieldName = "DetailName"; this.DetailName.Name = "DetailName"; this.DetailName.OptionsColumn.AllowEdit = false; this.DetailName.OptionsColumn.AllowSort = false; this.DetailName.OptionsFilter.AllowAutoFilter = false; this.DetailName.OptionsFilter.AllowFilter = false; this.DetailName.Visible = true; this.DetailName.VisibleIndex = 0; // // DetailCode // this.DetailCode.Caption = "字典编码"; this.DetailCode.FieldName = "DetailCode"; this.DetailCode.Name = "DetailCode"; this.DetailCode.OptionsColumn.AllowEdit = false; this.DetailCode.OptionsColumn.AllowSort = false; this.DetailCode.OptionsFilter.AllowAutoFilter = false; this.DetailCode.OptionsFilter.AllowFilter = false; this.DetailCode.Visible = true; this.DetailCode.VisibleIndex = 1; // // DetailOrder // this.DetailOrder.Caption = "字典顺序"; this.DetailOrder.FieldName = "字典顺序"; this.DetailOrder.Name = "DetailOrder"; this.DetailOrder.OptionsColumn.AllowEdit = false; this.DetailOrder.OptionsColumn.AllowSort = false; this.DetailOrder.OptionsFilter.AllowAutoFilter = false; this.DetailOrder.OptionsFilter.AllowFilter = false; this.DetailOrder.Visible = true; this.DetailOrder.VisibleIndex = 2; // // ParentId // this.ParentId.Caption = "父级节点"; this.ParentId.FieldName = "父级节点"; this.ParentId.Name = "ParentId"; this.ParentId.OptionsColumn.AllowEdit = false; this.ParentId.OptionsColumn.AllowSort = false; this.ParentId.OptionsFilter.AllowAutoFilter = false; this.ParentId.OptionsFilter.AllowFilter = false; // // DetailNote // this.DetailNote.Caption = "字典备注"; this.DetailNote.FieldName = "字典备注"; this.DetailNote.Name = "DetailNote"; this.DetailNote.OptionsColumn.AllowEdit = false; this.DetailNote.OptionsColumn.AllowSort = false; this.DetailNote.OptionsFilter.AllowAutoFilter = false; this.DetailNote.OptionsFilter.AllowFilter = false; // // panel2 // this.panel2.Controls.Add(this.label3); this.panel2.Controls.Add(this.TxtCode); this.panel2.Controls.Add(this.button1); this.panel2.Controls.Add(this.BtnDictDAdd); this.panel2.Controls.Add(this.button3); this.panel2.Dock = System.Windows.Forms.DockStyle.Top; this.panel2.Location = new System.Drawing.Point(0, 0); this.panel2.Name = "panel2"; this.panel2.Size = new System.Drawing.Size(932, 42); this.panel2.TabIndex = 1; // // label3 // this.label3.AutoSize = true; this.label3.Location = new System.Drawing.Point(2, 15); this.label3.Name = "label3"; this.label3.Size = new System.Drawing.Size(68, 17); this.label3.TabIndex = 14; this.label3.Text = "明细编码:"; // // TxtCode // this.TxtCode.Location = new System.Drawing.Point(76, 12); this.TxtCode.Name = "TxtCode"; this.TxtCode.Size = new System.Drawing.Size(120, 23); this.TxtCode.TabIndex = 13; // // button1 // this.button1.ForeColor = System.Drawing.Color.Black; this.button1.Image = global::PEIS.Properties.Resources.删除1; this.button1.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft; this.button1.Location = new System.Drawing.Point(398, 8); this.button1.Margin = new System.Windows.Forms.Padding(0); this.button1.Name = "button1"; this.button1.Padding = new System.Windows.Forms.Padding(3, 0, 3, 0); this.button1.Size = new System.Drawing.Size(70, 30); this.button1.TabIndex = 12; this.button1.Text = "删除"; this.button1.TextAlign = System.Drawing.ContentAlignment.MiddleRight; this.button1.UseVisualStyleBackColor = true; // // BtnDictDAdd // this.BtnDictDAdd.Image = global::PEIS.Properties.Resources.添加; this.BtnDictDAdd.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft; this.BtnDictDAdd.Location = new System.Drawing.Point(317, 8); this.BtnDictDAdd.Margin = new System.Windows.Forms.Padding(0); this.BtnDictDAdd.Name = "BtnDictDAdd"; this.BtnDictDAdd.Padding = new System.Windows.Forms.Padding(3, 0, 3, 0); this.BtnDictDAdd.Size = new System.Drawing.Size(70, 30); this.BtnDictDAdd.TabIndex = 11; this.BtnDictDAdd.Text = "添加"; this.BtnDictDAdd.TextAlign = System.Drawing.ContentAlignment.MiddleRight; this.BtnDictDAdd.UseVisualStyleBackColor = true; // // button3 // this.button3.Image = global::PEIS.Properties.Resources.刷新; this.button3.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft; this.button3.Location = new System.Drawing.Point(235, 8); this.button3.Margin = new System.Windows.Forms.Padding(0); this.button3.Name = "button3"; this.button3.Padding = new System.Windows.Forms.Padding(3, 0, 3, 0); this.button3.Size = new System.Drawing.Size(70, 30); this.button3.TabIndex = 10; this.button3.Text = "刷新"; this.button3.TextAlign = System.Drawing.ContentAlignment.MiddleRight; this.button3.UseVisualStyleBackColor = true; // // DictionaryForm // this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 17F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.BackColor = System.Drawing.Color.White; this.ClientSize = new System.Drawing.Size(1187, 671); this.Controls.Add(this.splitContainer1); this.Name = "DictionaryForm"; this.Text = "DictionaryForm"; this.splitContainer1.Panel1.ResumeLayout(false); this.splitContainer1.Panel2.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit(); this.splitContainer1.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.gridControl1)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit(); this.panel1.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.treeList1)).EndInit(); this.panel2.ResumeLayout(false); this.panel2.PerformLayout(); this.ResumeLayout(false); } #endregion private System.Windows.Forms.SplitContainer splitContainer1; private System.Windows.Forms.Panel panel1; private System.Windows.Forms.Button BtnTypeRefresh; private System.Windows.Forms.Button BtnTypeAddUser; private DevExpress.XtraGrid.GridControl gridControl1; private DevExpress.XtraGrid.Views.Grid.GridView gridView1; private System.Windows.Forms.Button BtnTypeDelete; private System.Windows.Forms.Panel panel2; private System.Windows.Forms.Button button1; private System.Windows.Forms.Button BtnDictDAdd; private System.Windows.Forms.Button button3; private DevExpress.XtraTreeList.TreeList treeList1; private System.Windows.Forms.TextBox TxtCode; private System.Windows.Forms.Label label3; private DevExpress.XtraGrid.Columns.GridColumn ID; private DevExpress.XtraGrid.Columns.GridColumn DictName; private DevExpress.XtraGrid.Columns.GridColumn DictCode; private DevExpress.XtraGrid.Columns.GridColumn DictOrder; private DevExpress.XtraGrid.Columns.GridColumn DictNote; private DevExpress.XtraTreeList.Columns.TreeListColumn id1; private DevExpress.XtraTreeList.Columns.TreeListColumn TID; private DevExpress.XtraTreeList.Columns.TreeListColumn DetailName; private DevExpress.XtraTreeList.Columns.TreeListColumn DetailCode; private DevExpress.XtraTreeList.Columns.TreeListColumn DetailOrder; private DevExpress.XtraTreeList.Columns.TreeListColumn ParentId; private DevExpress.XtraTreeList.Columns.TreeListColumn DetailNote; } }