108 lines
4.7 KiB
C#
108 lines
4.7 KiB
C#
namespace DocumentManagement
|
|
{
|
|
partial class frmViewSelect
|
|
{
|
|
/// <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.panel2 = new System.Windows.Forms.Panel();
|
|
this.btnCancel = new System.Windows.Forms.Button();
|
|
this.btnSave = new System.Windows.Forms.Button();
|
|
this.tvReflection = new System.Windows.Forms.TreeView();
|
|
this.panel2.SuspendLayout();
|
|
this.SuspendLayout();
|
|
//
|
|
// panel2
|
|
//
|
|
this.panel2.Controls.Add(this.btnCancel);
|
|
this.panel2.Controls.Add(this.btnSave);
|
|
this.panel2.Dock = System.Windows.Forms.DockStyle.Bottom;
|
|
this.panel2.Font = new System.Drawing.Font("宋体", 10.5F);
|
|
this.panel2.Location = new System.Drawing.Point(0, 490);
|
|
this.panel2.Name = "panel2";
|
|
this.panel2.Size = new System.Drawing.Size(454, 67);
|
|
this.panel2.TabIndex = 4;
|
|
//
|
|
// 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(329, 19);
|
|
this.btnCancel.Margin = new System.Windows.Forms.Padding(4);
|
|
this.btnCancel.Name = "btnCancel";
|
|
this.btnCancel.Size = new System.Drawing.Size(100, 29);
|
|
this.btnCancel.TabIndex = 13;
|
|
this.btnCancel.Text = "取消(&C)";
|
|
this.btnCancel.UseVisualStyleBackColor = true;
|
|
this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
|
|
//
|
|
// btnSave
|
|
//
|
|
this.btnSave.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
|
this.btnSave.Location = new System.Drawing.Point(176, 19);
|
|
this.btnSave.Margin = new System.Windows.Forms.Padding(4);
|
|
this.btnSave.Name = "btnSave";
|
|
this.btnSave.Size = new System.Drawing.Size(100, 29);
|
|
this.btnSave.TabIndex = 1;
|
|
this.btnSave.Text = "确定(&S)";
|
|
this.btnSave.UseVisualStyleBackColor = true;
|
|
this.btnSave.Click += new System.EventHandler(this.btnSave_Click);
|
|
//
|
|
// tvReflection
|
|
//
|
|
this.tvReflection.Dock = System.Windows.Forms.DockStyle.Fill;
|
|
this.tvReflection.Font = new System.Drawing.Font("宋体", 10.5F);
|
|
this.tvReflection.Location = new System.Drawing.Point(0, 0);
|
|
this.tvReflection.Name = "tvReflection";
|
|
this.tvReflection.Size = new System.Drawing.Size(454, 490);
|
|
this.tvReflection.TabIndex = 5;
|
|
this.tvReflection.NodeMouseDoubleClick += new System.Windows.Forms.TreeNodeMouseClickEventHandler(this.tvReflection_NodeMouseDoubleClick);
|
|
//
|
|
// frmViewSelect
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 15F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(454, 557);
|
|
this.Controls.Add(this.tvReflection);
|
|
this.Controls.Add(this.panel2);
|
|
this.MaximizeBox = false;
|
|
this.MinimizeBox = false;
|
|
this.Name = "frmViewSelect";
|
|
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
|
|
this.Text = "选择要映射的视图列名";
|
|
this.Load += new System.EventHandler(this.frmViewSelect_Load);
|
|
this.panel2.ResumeLayout(false);
|
|
this.ResumeLayout(false);
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.Panel panel2;
|
|
private System.Windows.Forms.Button btnCancel;
|
|
private System.Windows.Forms.Button btnSave;
|
|
private System.Windows.Forms.TreeView tvReflection;
|
|
}
|
|
} |