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.

136 lines
5.3 KiB
C#

1 year ago
namespace WindowsFormsApp1
{
partial class Form1
{
/// <summary>
/// 必需的设计器变量。
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// 清理所有正在使用的资源。
/// </summary>
/// <param name="disposing">如果应释放托管资源,为 true否则为 false。</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows 窗体设计器生成的代码
/// <summary>
/// 设计器支持所需的方法 - 不要修改
/// 使用代码编辑器修改此方法的内容。
/// </summary>
private void InitializeComponent()
{
this.button1 = new System.Windows.Forms.Button();
this.label2 = new System.Windows.Forms.Label();
this.txt_ret = new System.Windows.Forms.TextBox();
this.label3 = new System.Windows.Forms.Label();
this.namespace_name = new System.Windows.Forms.TextBox();
this.lable2 = new System.Windows.Forms.Label();
this.txt_tablename = new System.Windows.Forms.ComboBox();
this.SuspendLayout();
//
// button1
//
this.button1.Location = new System.Drawing.Point(81, 322);
this.button1.Name = "button1";
this.button1.Size = new System.Drawing.Size(75, 23);
this.button1.TabIndex = 0;
this.button1.Text = "开始";
this.button1.UseVisualStyleBackColor = true;
this.button1.Click += new System.EventHandler(this.button1_Click);
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(70, 120);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(41, 12);
this.label2.TabIndex = 4;
this.label2.Text = "表名:";
//
// txt_ret
//
this.txt_ret.Font = new System.Drawing.Font("宋体", 11F);
this.txt_ret.Location = new System.Drawing.Point(453, 61);
this.txt_ret.Multiline = true;
this.txt_ret.Name = "txt_ret";
this.txt_ret.Size = new System.Drawing.Size(335, 341);
this.txt_ret.TabIndex = 68;
//
// label3
//
this.label3.AutoSize = true;
this.label3.Location = new System.Drawing.Point(453, 43);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(53, 12);
this.label3.TabIndex = 69;
this.label3.Text = "生成后:";
//
// namespace_name
//
this.namespace_name.Location = new System.Drawing.Point(117, 155);
this.namespace_name.Name = "namespace_name";
this.namespace_name.Size = new System.Drawing.Size(218, 21);
this.namespace_name.TabIndex = 70;
this.namespace_name.Text = "default_namespace";
//
// lable2
//
this.lable2.AutoSize = true;
this.lable2.Location = new System.Drawing.Point(53, 160);
this.lable2.Name = "lable2";
this.lable2.Size = new System.Drawing.Size(59, 12);
this.lable2.TabIndex = 71;
this.lable2.Text = "名称空间:";
//
// txt_tablename
//
this.txt_tablename.FormattingEnabled = true;
this.txt_tablename.Location = new System.Drawing.Point(117, 116);
this.txt_tablename.Name = "txt_tablename";
this.txt_tablename.Size = new System.Drawing.Size(218, 20);
this.txt_tablename.TabIndex = 72;
this.txt_tablename.Text = "请选择";
this.txt_tablename.TextUpdate += new System.EventHandler(this.orderId_TextUpdate);
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(800, 450);
this.Controls.Add(this.txt_tablename);
this.Controls.Add(this.lable2);
this.Controls.Add(this.namespace_name);
this.Controls.Add(this.label3);
this.Controls.Add(this.txt_ret);
this.Controls.Add(this.label2);
this.Controls.Add(this.button1);
this.Name = "Form1";
this.Text = "Form1";
this.Load += new System.EventHandler(this.Form1_Load);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Button button1;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.TextBox txt_ret;
private System.Windows.Forms.Label label3;
private System.Windows.Forms.TextBox namespace_name;
private System.Windows.Forms.Label lable2;
private System.Windows.Forms.ComboBox txt_tablename;
}
}