-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMainForm.Designer.cs
More file actions
160 lines (153 loc) · 6.99 KB
/
Copy pathMainForm.Designer.cs
File metadata and controls
160 lines (153 loc) · 6.99 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
namespace SQLGenerator
{
partial class MainForm
{
/// <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()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm));
this.btnGeneral = new System.Windows.Forms.Button();
this.label1 = new System.Windows.Forms.Label();
this.tbQuerySQL = new System.Windows.Forms.TextBox();
this.tbResultSQL = new System.Windows.Forms.TextBox();
this.label2 = new System.Windows.Forms.Label();
this.menuStrip1 = new System.Windows.Forms.MenuStrip();
this.文件ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.连接数据库ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.lbDBInfo = new System.Windows.Forms.Label();
this.menuStrip1.SuspendLayout();
this.SuspendLayout();
//
// btnGeneral
//
this.btnGeneral.Location = new System.Drawing.Point(138, 210);
this.btnGeneral.Name = "btnGeneral";
this.btnGeneral.Size = new System.Drawing.Size(119, 32);
this.btnGeneral.TabIndex = 0;
this.btnGeneral.Text = "生成INSERT";
this.btnGeneral.UseVisualStyleBackColor = true;
this.btnGeneral.Click += new System.EventHandler(this.btnGeneral_Click);
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(27, 130);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(71, 18);
this.label1.TabIndex = 1;
this.label1.Text = "查询SQL";
//
// tbQuerySQL
//
this.tbQuerySQL.Location = new System.Drawing.Point(138, 82);
this.tbQuerySQL.Multiline = true;
this.tbQuerySQL.Name = "tbQuerySQL";
this.tbQuerySQL.Size = new System.Drawing.Size(875, 100);
this.tbQuerySQL.TabIndex = 2;
//
// tbResultSQL
//
this.tbResultSQL.Location = new System.Drawing.Point(138, 271);
this.tbResultSQL.Multiline = true;
this.tbResultSQL.Name = "tbResultSQL";
this.tbResultSQL.ScrollBars = System.Windows.Forms.ScrollBars.Both;
this.tbResultSQL.Size = new System.Drawing.Size(875, 263);
this.tbResultSQL.TabIndex = 3;
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(27, 379);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(71, 18);
this.label2.TabIndex = 4;
this.label2.Text = "生成SQL";
//
// menuStrip1
//
this.menuStrip1.ImageScalingSize = new System.Drawing.Size(24, 24);
this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.文件ToolStripMenuItem});
this.menuStrip1.Location = new System.Drawing.Point(0, 0);
this.menuStrip1.Name = "menuStrip1";
this.menuStrip1.Size = new System.Drawing.Size(1066, 32);
this.menuStrip1.TabIndex = 5;
this.menuStrip1.Text = "menuStrip1";
//
// 文件ToolStripMenuItem
//
this.文件ToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.连接数据库ToolStripMenuItem});
this.文件ToolStripMenuItem.Name = "文件ToolStripMenuItem";
this.文件ToolStripMenuItem.Size = new System.Drawing.Size(58, 28);
this.文件ToolStripMenuItem.Text = "文件";
//
// 连接数据库ToolStripMenuItem
//
this.连接数据库ToolStripMenuItem.Name = "连接数据库ToolStripMenuItem";
this.连接数据库ToolStripMenuItem.Size = new System.Drawing.Size(182, 30);
this.连接数据库ToolStripMenuItem.Text = "连接数据库";
this.连接数据库ToolStripMenuItem.Click += new System.EventHandler(this.连接数据库ToolStripMenuItem_Click);
//
// lbDBInfo
//
this.lbDBInfo.AutoSize = true;
this.lbDBInfo.Location = new System.Drawing.Point(13, 36);
this.lbDBInfo.Name = "lbDBInfo";
this.lbDBInfo.Size = new System.Drawing.Size(0, 18);
this.lbDBInfo.TabIndex = 6;
//
// MainForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 18F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(1066, 576);
this.Controls.Add(this.lbDBInfo);
this.Controls.Add(this.label2);
this.Controls.Add(this.tbResultSQL);
this.Controls.Add(this.tbQuerySQL);
this.Controls.Add(this.label1);
this.Controls.Add(this.btnGeneral);
this.Controls.Add(this.menuStrip1);
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.MainMenuStrip = this.menuStrip1;
this.Name = "MainForm";
this.Text = "SQL生成工具";
this.Load += new System.EventHandler(this.MainForm_Load);
this.menuStrip1.ResumeLayout(false);
this.menuStrip1.PerformLayout();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Button btnGeneral;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.TextBox tbQuerySQL;
private System.Windows.Forms.TextBox tbResultSQL;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.MenuStrip menuStrip1;
private System.Windows.Forms.ToolStripMenuItem 文件ToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem 连接数据库ToolStripMenuItem;
private System.Windows.Forms.Label lbDBInfo;
}
}