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.
126 lines
5.0 KiB
C#
126 lines
5.0 KiB
C#
namespace Mesnac.Gui.Edit.Dialog
|
|
{
|
|
partial class FrmNew
|
|
{
|
|
/// <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.btnCancel = new System.Windows.Forms.Button();
|
|
this.btnAdd = new System.Windows.Forms.Button();
|
|
this.txtFileName = new System.Windows.Forms.TextBox();
|
|
this.label1 = new System.Windows.Forms.Label();
|
|
this.label2 = new System.Windows.Forms.Label();
|
|
this.txtNodeName = new System.Windows.Forms.TextBox();
|
|
this.SuspendLayout();
|
|
//
|
|
// btnCancel
|
|
//
|
|
this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
|
|
this.btnCancel.Location = new System.Drawing.Point(266, 80);
|
|
this.btnCancel.Name = "btnCancel";
|
|
this.btnCancel.Size = new System.Drawing.Size(75, 23);
|
|
this.btnCancel.TabIndex = 7;
|
|
this.btnCancel.Text = "取消(&C)";
|
|
this.btnCancel.UseVisualStyleBackColor = true;
|
|
this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
|
|
//
|
|
// btnAdd
|
|
//
|
|
this.btnAdd.Location = new System.Drawing.Point(185, 80);
|
|
this.btnAdd.Name = "btnAdd";
|
|
this.btnAdd.Size = new System.Drawing.Size(75, 23);
|
|
this.btnAdd.TabIndex = 6;
|
|
this.btnAdd.Text = "添加(&A)";
|
|
this.btnAdd.UseVisualStyleBackColor = true;
|
|
this.btnAdd.Click += new System.EventHandler(this.btnAdd_Click);
|
|
//
|
|
// txtFileName
|
|
//
|
|
this.txtFileName.Location = new System.Drawing.Point(85, 14);
|
|
this.txtFileName.Name = "txtFileName";
|
|
this.txtFileName.Size = new System.Drawing.Size(256, 21);
|
|
this.txtFileName.TabIndex = 5;
|
|
//
|
|
// label1
|
|
//
|
|
this.label1.AutoSize = true;
|
|
this.label1.Location = new System.Drawing.Point(8, 18);
|
|
this.label1.Name = "label1";
|
|
this.label1.Size = new System.Drawing.Size(53, 12);
|
|
this.label1.TabIndex = 4;
|
|
this.label1.Text = "文件名称";
|
|
//
|
|
// label2
|
|
//
|
|
this.label2.AutoSize = true;
|
|
this.label2.Location = new System.Drawing.Point(8, 49);
|
|
this.label2.Name = "label2";
|
|
this.label2.Size = new System.Drawing.Size(53, 12);
|
|
this.label2.TabIndex = 8;
|
|
this.label2.Text = "节点名称";
|
|
//
|
|
// txtNodeName
|
|
//
|
|
this.txtNodeName.Location = new System.Drawing.Point(85, 46);
|
|
this.txtNodeName.Name = "txtNodeName";
|
|
this.txtNodeName.Size = new System.Drawing.Size(256, 21);
|
|
this.txtNodeName.TabIndex = 9;
|
|
//
|
|
// FrmNew
|
|
//
|
|
this.AcceptButton = this.btnAdd;
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.CancelButton = this.btnCancel;
|
|
this.ClientSize = new System.Drawing.Size(349, 115);
|
|
this.Controls.Add(this.txtNodeName);
|
|
this.Controls.Add(this.label2);
|
|
this.Controls.Add(this.btnCancel);
|
|
this.Controls.Add(this.btnAdd);
|
|
this.Controls.Add(this.txtFileName);
|
|
this.Controls.Add(this.label1);
|
|
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
|
|
this.MaximizeBox = false;
|
|
this.MinimizeBox = false;
|
|
this.Name = "FrmNew";
|
|
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
|
|
this.Text = "新建";
|
|
this.Load += new System.EventHandler(this.FrmNew_Load);
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.Button btnCancel;
|
|
private System.Windows.Forms.Button btnAdd;
|
|
private System.Windows.Forms.TextBox txtFileName;
|
|
private System.Windows.Forms.Label label1;
|
|
private System.Windows.Forms.Label label2;
|
|
private System.Windows.Forms.TextBox txtNodeName;
|
|
}
|
|
} |