namespace CSFrameworkV5.Library.CommonForms
{
partial class frmDataFieldsConfig
{
///
/// 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()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmDataFieldsConfig));
this.gc = new DevExpress.XtraGrid.GridControl();
this.gv = new DevExpress.XtraGrid.Views.Grid.GridView();
this.gridColumn1 = new DevExpress.XtraGrid.Columns.GridColumn();
this.gridColumn2 = new DevExpress.XtraGrid.Columns.GridColumn();
this.gridColumn3 = new DevExpress.XtraGrid.Columns.GridColumn();
this.gridColumn4 = new DevExpress.XtraGrid.Columns.GridColumn();
this.repositoryItemCheckEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
this.gridColumn5 = new DevExpress.XtraGrid.Columns.GridColumn();
this.btnApply = new DevExpress.XtraEditors.SimpleButton();
this.btnClose = new DevExpress.XtraEditors.SimpleButton();
this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
this.txtConfigUser = new DevExpress.XtraEditors.LookUpEdit();
this.labelControl2 = new DevExpress.XtraEditors.LabelControl();
this.txtConfigName = new DevExpress.XtraEditors.TextEdit();
((System.ComponentModel.ISupportInitialize)(this.gc)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.gv)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit1)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.txtConfigUser.Properties)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.txtConfigName.Properties)).BeginInit();
this.SuspendLayout();
//
// gc
//
this.gc.Location = new System.Drawing.Point(1, 40);
this.gc.MainView = this.gv;
this.gc.Name = "gc";
this.gc.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
this.repositoryItemCheckEdit1});
this.gc.Size = new System.Drawing.Size(646, 501);
this.gc.TabIndex = 0;
this.gc.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
this.gv});
//
// gv
//
this.gv.ColumnPanelRowHeight = 25;
this.gv.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
this.gridColumn1,
this.gridColumn2,
this.gridColumn3,
this.gridColumn4,
this.gridColumn5});
this.gv.GridControl = this.gc;
this.gv.Name = "gv";
this.gv.OptionsView.ColumnAutoWidth = false;
this.gv.OptionsView.ShowGroupPanel = false;
//
// gridColumn1
//
this.gridColumn1.AppearanceCell.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
this.gridColumn1.AppearanceCell.Options.UseBackColor = true;
this.gridColumn1.Caption = "序";
this.gridColumn1.FieldName = "OrderID";
this.gridColumn1.Name = "gridColumn1";
this.gridColumn1.OptionsColumn.AllowEdit = false;
this.gridColumn1.OptionsColumn.ReadOnly = true;
this.gridColumn1.Visible = true;
this.gridColumn1.VisibleIndex = 0;
this.gridColumn1.Width = 40;
//
// gridColumn2
//
this.gridColumn2.Caption = "字段名";
this.gridColumn2.FieldName = "FieldName";
this.gridColumn2.Name = "gridColumn2";
this.gridColumn2.OptionsColumn.AllowEdit = false;
this.gridColumn2.OptionsColumn.ReadOnly = true;
this.gridColumn2.Visible = true;
this.gridColumn2.VisibleIndex = 1;
this.gridColumn2.Width = 187;
//
// gridColumn3
//
this.gridColumn3.Caption = "标题名称";
this.gridColumn3.FieldName = "FieldCaption";
this.gridColumn3.Name = "gridColumn3";
this.gridColumn3.OptionsColumn.AllowEdit = false;
this.gridColumn3.OptionsColumn.ReadOnly = true;
this.gridColumn3.Visible = true;
this.gridColumn3.VisibleIndex = 2;
this.gridColumn3.Width = 196;
//
// gridColumn4
//
this.gridColumn4.AppearanceHeader.Options.UseTextOptions = true;
this.gridColumn4.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
this.gridColumn4.Caption = "可修改";
this.gridColumn4.ColumnEdit = this.repositoryItemCheckEdit1;
this.gridColumn4.FieldName = "IsEditable";
this.gridColumn4.Name = "gridColumn4";
this.gridColumn4.Visible = true;
this.gridColumn4.VisibleIndex = 3;
this.gridColumn4.Width = 66;
//
// repositoryItemCheckEdit1
//
this.repositoryItemCheckEdit1.AutoHeight = false;
this.repositoryItemCheckEdit1.Caption = "Check";
this.repositoryItemCheckEdit1.Name = "repositoryItemCheckEdit1";
this.repositoryItemCheckEdit1.NullStyle = DevExpress.XtraEditors.Controls.StyleIndeterminate.Unchecked;
this.repositoryItemCheckEdit1.ValueChecked = "Y";
this.repositoryItemCheckEdit1.ValueUnchecked = "N";
//
// gridColumn5
//
this.gridColumn5.AppearanceHeader.Options.UseTextOptions = true;
this.gridColumn5.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
this.gridColumn5.Caption = "可显示";
this.gridColumn5.ColumnEdit = this.repositoryItemCheckEdit1;
this.gridColumn5.FieldName = "IsDisplay";
this.gridColumn5.Name = "gridColumn5";
this.gridColumn5.Visible = true;
this.gridColumn5.VisibleIndex = 4;
this.gridColumn5.Width = 62;
//
// btnApply
//
this.btnApply.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.HotFlat;
this.btnApply.Cursor = System.Windows.Forms.Cursors.Hand;
this.btnApply.ImageOptions.Image = ((System.Drawing.Image)(resources.GetObject("btnApply.ImageOptions.Image")));
this.btnApply.Location = new System.Drawing.Point(243, 553);
this.btnApply.Name = "btnApply";
this.btnApply.Size = new System.Drawing.Size(93, 38);
this.btnApply.TabIndex = 1;
this.btnApply.Text = "应用";
this.btnApply.Click += new System.EventHandler(this.btnApply_Click);
//
// btnClose
//
this.btnClose.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.HotFlat;
this.btnClose.Cursor = System.Windows.Forms.Cursors.Hand;
this.btnClose.ImageOptions.Image = ((System.Drawing.Image)(resources.GetObject("btnClose.ImageOptions.Image")));
this.btnClose.Location = new System.Drawing.Point(346, 553);
this.btnClose.Name = "btnClose";
this.btnClose.Size = new System.Drawing.Size(93, 38);
this.btnClose.TabIndex = 2;
this.btnClose.Text = "关闭";
this.btnClose.Click += new System.EventHandler(this.btnClose_Click);
//
// labelControl1
//
this.labelControl1.Location = new System.Drawing.Point(16, 11);
this.labelControl1.Name = "labelControl1";
this.labelControl1.Size = new System.Drawing.Size(108, 14);
this.labelControl1.TabIndex = 3;
this.labelControl1.Text = "使用此配置的用户:";
//
// txtConfigUser
//
this.txtConfigUser.Location = new System.Drawing.Point(130, 9);
this.txtConfigUser.Name = "txtConfigUser";
this.txtConfigUser.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
this.txtConfigUser.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Account", "帐号", 80, DevExpress.Utils.FormatType.None, "", true, DevExpress.Utils.HorzAlignment.Default, DevExpress.Data.ColumnSortOrder.None, DevExpress.Utils.DefaultBoolean.Default),
new DevExpress.XtraEditors.Controls.LookUpColumnInfo("UserName", "用户名", 120, DevExpress.Utils.FormatType.None, "", true, DevExpress.Utils.HorzAlignment.Default, DevExpress.Data.ColumnSortOrder.None, DevExpress.Utils.DefaultBoolean.Default)});
this.txtConfigUser.Properties.DropDownRows = 15;
this.txtConfigUser.Properties.NullText = "";
this.txtConfigUser.Properties.PopupWidth = 200;
this.txtConfigUser.Size = new System.Drawing.Size(136, 20);
this.txtConfigUser.TabIndex = 4;
this.txtConfigUser.EditValueChanged += new System.EventHandler(this.txtConfigUser_EditValueChanged);
//
// labelControl2
//
this.labelControl2.Location = new System.Drawing.Point(293, 11);
this.labelControl2.Name = "labelControl2";
this.labelControl2.Size = new System.Drawing.Size(60, 14);
this.labelControl2.TabIndex = 5;
this.labelControl2.Text = "配置名称:";
//
// txtConfigName
//
this.txtConfigName.Location = new System.Drawing.Point(360, 9);
this.txtConfigName.Name = "txtConfigName";
this.txtConfigName.Properties.ReadOnly = true;
this.txtConfigName.Size = new System.Drawing.Size(246, 20);
this.txtConfigName.TabIndex = 6;
//
// frmDataFieldsConfig
//
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 14F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(658, 603);
this.ControlBox = false;
this.Controls.Add(this.txtConfigName);
this.Controls.Add(this.labelControl2);
this.Controls.Add(this.txtConfigUser);
this.Controls.Add(this.labelControl1);
this.Controls.Add(this.btnClose);
this.Controls.Add(this.btnApply);
this.Controls.Add(this.gc);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
this.Name = "frmDataFieldsConfig";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "栏目更新配置";
this.Load += new System.EventHandler(this.frmDataFieldsConfig_Load);
((System.ComponentModel.ISupportInitialize)(this.gc)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.gv)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit1)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.txtConfigUser.Properties)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.txtConfigName.Properties)).EndInit();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private DevExpress.XtraGrid.GridControl gc;
private DevExpress.XtraGrid.Views.Grid.GridView gv;
private DevExpress.XtraGrid.Columns.GridColumn gridColumn1;
private DevExpress.XtraGrid.Columns.GridColumn gridColumn2;
private DevExpress.XtraGrid.Columns.GridColumn gridColumn3;
private DevExpress.XtraGrid.Columns.GridColumn gridColumn4;
private DevExpress.XtraGrid.Columns.GridColumn gridColumn5;
private DevExpress.XtraEditors.SimpleButton btnApply;
private DevExpress.XtraEditors.SimpleButton btnClose;
private DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit repositoryItemCheckEdit1;
private DevExpress.XtraEditors.LabelControl labelControl1;
private DevExpress.XtraEditors.LookUpEdit txtConfigUser;
private DevExpress.XtraEditors.LabelControl labelControl2;
private DevExpress.XtraEditors.TextEdit txtConfigName;
}
}