You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
148 lines
6.8 KiB
C#
148 lines
6.8 KiB
C#
|
|
namespace DQ.Construction.NewLook.DataManager
|
|
{
|
|
partial class FrmDataTemplateEditor
|
|
{
|
|
/// <summary>
|
|
/// Required designer variable.
|
|
/// </summary>
|
|
private System.ComponentModel.IContainer components = null;
|
|
|
|
/// <summary>
|
|
/// Clean up any resources being used.
|
|
/// </summary>
|
|
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
|
|
protected override void Dispose(bool disposing)
|
|
{
|
|
if (disposing && (components != null))
|
|
{
|
|
components.Dispose();
|
|
}
|
|
base.Dispose(disposing);
|
|
}
|
|
|
|
#region Windows Form Designer generated code
|
|
|
|
/// <summary>
|
|
/// Required method for Designer support - do not modify
|
|
/// the contents of this method with the code editor.
|
|
/// </summary>
|
|
private void InitializeComponent()
|
|
{
|
|
this.gridMain = new DevExpress.XtraGrid.GridControl();
|
|
this.gridViewMain = new DevExpress.XtraGrid.Views.Grid.GridView();
|
|
this.gridColumn1 = new DevExpress.XtraGrid.Columns.GridColumn();
|
|
this.gridColumn2 = new DevExpress.XtraGrid.Columns.GridColumn();
|
|
this.panelControl1 = new DevExpress.XtraEditors.PanelControl();
|
|
this.btnCancel = new DevExpress.XtraEditors.SimpleButton();
|
|
this.btnOK = new DevExpress.XtraEditors.SimpleButton();
|
|
((System.ComponentModel.ISupportInitialize)(this.gridMain)).BeginInit();
|
|
((System.ComponentModel.ISupportInitialize)(this.gridViewMain)).BeginInit();
|
|
((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
|
|
this.panelControl1.SuspendLayout();
|
|
this.SuspendLayout();
|
|
//
|
|
// gridMain
|
|
//
|
|
this.gridMain.Dock = System.Windows.Forms.DockStyle.Fill;
|
|
this.gridMain.EmbeddedNavigator.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
|
|
this.gridMain.Location = new System.Drawing.Point(0, 0);
|
|
this.gridMain.MainView = this.gridViewMain;
|
|
this.gridMain.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
|
|
this.gridMain.Name = "gridMain";
|
|
this.gridMain.Size = new System.Drawing.Size(494, 278);
|
|
this.gridMain.TabIndex = 0;
|
|
this.gridMain.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
|
|
this.gridViewMain});
|
|
//
|
|
// gridViewMain
|
|
//
|
|
this.gridViewMain.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
|
|
this.gridColumn1,
|
|
this.gridColumn2});
|
|
this.gridViewMain.DetailHeight = 288;
|
|
this.gridViewMain.GridControl = this.gridMain;
|
|
this.gridViewMain.Name = "gridViewMain";
|
|
this.gridViewMain.OptionsView.ShowGroupPanel = false;
|
|
this.gridViewMain.OptionsView.ShowIndicator = false;
|
|
//
|
|
// gridColumn1
|
|
//
|
|
this.gridColumn1.Caption = "名称";
|
|
this.gridColumn1.FieldName = "From";
|
|
this.gridColumn1.Name = "gridColumn1";
|
|
this.gridColumn1.Visible = true;
|
|
this.gridColumn1.VisibleIndex = 0;
|
|
//
|
|
// gridColumn2
|
|
//
|
|
this.gridColumn2.Caption = "关联";
|
|
this.gridColumn2.FieldName = "To";
|
|
this.gridColumn2.Name = "gridColumn2";
|
|
this.gridColumn2.Visible = true;
|
|
this.gridColumn2.VisibleIndex = 1;
|
|
//
|
|
// panelControl1
|
|
//
|
|
this.panelControl1.Controls.Add(this.btnCancel);
|
|
this.panelControl1.Controls.Add(this.btnOK);
|
|
this.panelControl1.Dock = System.Windows.Forms.DockStyle.Bottom;
|
|
this.panelControl1.Location = new System.Drawing.Point(0, 278);
|
|
this.panelControl1.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
|
|
this.panelControl1.Name = "panelControl1";
|
|
this.panelControl1.Size = new System.Drawing.Size(494, 27);
|
|
this.panelControl1.TabIndex = 7;
|
|
//
|
|
// btnCancel
|
|
//
|
|
this.btnCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
|
this.btnCancel.Location = new System.Drawing.Point(389, 4);
|
|
this.btnCancel.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
|
|
this.btnCancel.Name = "btnCancel";
|
|
this.btnCancel.Size = new System.Drawing.Size(75, 19);
|
|
this.btnCancel.TabIndex = 2;
|
|
this.btnCancel.Text = "取消";
|
|
this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
|
|
//
|
|
// btnOK
|
|
//
|
|
this.btnOK.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
|
this.btnOK.Location = new System.Drawing.Point(290, 4);
|
|
this.btnOK.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
|
|
this.btnOK.Name = "btnOK";
|
|
this.btnOK.Size = new System.Drawing.Size(75, 19);
|
|
this.btnOK.TabIndex = 3;
|
|
this.btnOK.Text = "确定";
|
|
this.btnOK.Click += new System.EventHandler(this.btnOK_Click);
|
|
//
|
|
// FrmDataTemplateEditor
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 14F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(494, 305);
|
|
this.Controls.Add(this.gridMain);
|
|
this.Controls.Add(this.panelControl1);
|
|
this.IconOptions.ShowIcon = false;
|
|
this.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
|
|
this.Name = "FrmDataTemplateEditor";
|
|
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
|
|
this.Text = "模板编辑";
|
|
((System.ComponentModel.ISupportInitialize)(this.gridMain)).EndInit();
|
|
((System.ComponentModel.ISupportInitialize)(this.gridViewMain)).EndInit();
|
|
((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
|
|
this.panelControl1.ResumeLayout(false);
|
|
this.ResumeLayout(false);
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private DevExpress.XtraGrid.GridControl gridMain;
|
|
private DevExpress.XtraGrid.Views.Grid.GridView gridViewMain;
|
|
private DevExpress.XtraEditors.PanelControl panelControl1;
|
|
private DevExpress.XtraEditors.SimpleButton btnCancel;
|
|
private DevExpress.XtraEditors.SimpleButton btnOK;
|
|
private DevExpress.XtraGrid.Columns.GridColumn gridColumn1;
|
|
private DevExpress.XtraGrid.Columns.GridColumn gridColumn2;
|
|
}
|
|
} |