-
Notifications
You must be signed in to change notification settings - Fork 0
/
Form1.Designer.cs
271 lines (265 loc) · 15 KB
/
Form1.Designer.cs
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
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
namespace AudioRecognition
{
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()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1));
this.menuStrip1 = new System.Windows.Forms.MenuStrip();
this.账户ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.退出登录ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.退出登录ToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
this.登录ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.帮助ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.关于ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.label1 = new System.Windows.Forms.Label();
this.flowLayoutPanel1 = new System.Windows.Forms.FlowLayoutPanel();
this.flowLayoutPanel2 = new System.Windows.Forms.FlowLayoutPanel();
this.flowLayoutPanel3 = new System.Windows.Forms.FlowLayoutPanel();
this.flowLayoutPanel4 = new System.Windows.Forms.FlowLayoutPanel();
this.label_live = new System.Windows.Forms.Label();
this.label2 = new System.Windows.Forms.Label();
this.label3 = new System.Windows.Forms.Label();
this.label4 = new System.Windows.Forms.Label();
this.menuStrip1.SuspendLayout();
this.SuspendLayout();
//
// menuStrip1
//
this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.账户ToolStripMenuItem,
this.帮助ToolStripMenuItem});
this.menuStrip1.Location = new System.Drawing.Point(0, 0);
this.menuStrip1.Name = "menuStrip1";
this.menuStrip1.Size = new System.Drawing.Size(800, 25);
this.menuStrip1.TabIndex = 1;
this.menuStrip1.Text = "menuStrip1";
//
// 账户ToolStripMenuItem
//
this.账户ToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.退出登录ToolStripMenuItem,
this.退出登录ToolStripMenuItem1,
this.登录ToolStripMenuItem});
this.账户ToolStripMenuItem.Name = "账户ToolStripMenuItem";
this.账户ToolStripMenuItem.Size = new System.Drawing.Size(44, 21);
this.账户ToolStripMenuItem.Text = "账户";
//
// 退出登录ToolStripMenuItem
//
this.退出登录ToolStripMenuItem.Name = "退出登录ToolStripMenuItem";
this.退出登录ToolStripMenuItem.Size = new System.Drawing.Size(124, 22);
this.退出登录ToolStripMenuItem.Text = "注册账号";
this.退出登录ToolStripMenuItem.Click += new System.EventHandler(this.退出登录ToolStripMenuItem_Click);
//
// 退出登录ToolStripMenuItem1
//
this.退出登录ToolStripMenuItem1.Name = "退出登录ToolStripMenuItem1";
this.退出登录ToolStripMenuItem1.Size = new System.Drawing.Size(180, 22);
this.退出登录ToolStripMenuItem1.Text = "退出登录";
this.退出登录ToolStripMenuItem1.Click += new System.EventHandler(this.退出登录ToolStripMenuItem1_Click);
//
// 登录ToolStripMenuItem
//
this.登录ToolStripMenuItem.Name = "登录ToolStripMenuItem";
this.登录ToolStripMenuItem.Size = new System.Drawing.Size(124, 22);
this.登录ToolStripMenuItem.Text = "登录";
this.登录ToolStripMenuItem.Click += new System.EventHandler(this.登录ToolStripMenuItem_Click);
//
// 帮助ToolStripMenuItem
//
this.帮助ToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.关于ToolStripMenuItem});
this.帮助ToolStripMenuItem.Name = "帮助ToolStripMenuItem";
this.帮助ToolStripMenuItem.Size = new System.Drawing.Size(44, 21);
this.帮助ToolStripMenuItem.Text = "帮助";
//
// 关于ToolStripMenuItem
//
this.关于ToolStripMenuItem.Name = "关于ToolStripMenuItem";
this.关于ToolStripMenuItem.Size = new System.Drawing.Size(180, 22);
this.关于ToolStripMenuItem.Text = "关于";
this.关于ToolStripMenuItem.Click += new System.EventHandler(this.关于ToolStripMenuItem_Click);
//
// label1
//
this.label1.Anchor = System.Windows.Forms.AnchorStyles.None;
this.label1.AutoSize = true;
this.label1.Font = new System.Drawing.Font("微软雅黑", 18F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.label1.ForeColor = System.Drawing.SystemColors.WindowText;
this.label1.Location = new System.Drawing.Point(320, 6);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(159, 31);
this.label1.TabIndex = 2;
this.label1.Text = "ASR语音识别";
//
// flowLayoutPanel1
//
this.flowLayoutPanel1.Anchor = System.Windows.Forms.AnchorStyles.None;
this.flowLayoutPanel1.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("flowLayoutPanel1.BackgroundImage")));
this.flowLayoutPanel1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
this.flowLayoutPanel1.Location = new System.Drawing.Point(44, 137);
this.flowLayoutPanel1.Name = "flowLayoutPanel1";
this.flowLayoutPanel1.Size = new System.Drawing.Size(70, 138);
this.flowLayoutPanel1.TabIndex = 3;
this.flowLayoutPanel1.Click += new System.EventHandler(this.label_live_Click);
this.flowLayoutPanel1.Paint += new System.Windows.Forms.PaintEventHandler(this.flowLayoutPanel1_Paint);
this.flowLayoutPanel1.MouseLeave += new System.EventHandler(this.flowLayoutPanel1_MouseLeave);
this.flowLayoutPanel1.MouseHover += new System.EventHandler(this.flowLayoutPanel1_MouseHover);
//
// flowLayoutPanel2
//
this.flowLayoutPanel2.Anchor = System.Windows.Forms.AnchorStyles.None;
this.flowLayoutPanel2.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("flowLayoutPanel2.BackgroundImage")));
this.flowLayoutPanel2.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
this.flowLayoutPanel2.Location = new System.Drawing.Point(224, 129);
this.flowLayoutPanel2.Name = "flowLayoutPanel2";
this.flowLayoutPanel2.Size = new System.Drawing.Size(89, 146);
this.flowLayoutPanel2.TabIndex = 4;
this.flowLayoutPanel2.Click += new System.EventHandler(this.flowLayoutPanel2_Click);
//
// flowLayoutPanel3
//
this.flowLayoutPanel3.Anchor = System.Windows.Forms.AnchorStyles.None;
this.flowLayoutPanel3.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("flowLayoutPanel3.BackgroundImage")));
this.flowLayoutPanel3.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
this.flowLayoutPanel3.CausesValidation = false;
this.flowLayoutPanel3.Location = new System.Drawing.Point(441, 129);
this.flowLayoutPanel3.Name = "flowLayoutPanel3";
this.flowLayoutPanel3.Size = new System.Drawing.Size(105, 146);
this.flowLayoutPanel3.TabIndex = 5;
this.flowLayoutPanel3.Click += new System.EventHandler(this.flowLayoutPanel3_Click);
this.flowLayoutPanel3.Paint += new System.Windows.Forms.PaintEventHandler(this.flowLayoutPanel3_Paint);
//
// flowLayoutPanel4
//
this.flowLayoutPanel4.Anchor = System.Windows.Forms.AnchorStyles.None;
this.flowLayoutPanel4.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("flowLayoutPanel4.BackgroundImage")));
this.flowLayoutPanel4.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
this.flowLayoutPanel4.Location = new System.Drawing.Point(647, 129);
this.flowLayoutPanel4.Name = "flowLayoutPanel4";
this.flowLayoutPanel4.Size = new System.Drawing.Size(103, 146);
this.flowLayoutPanel4.TabIndex = 6;
this.flowLayoutPanel4.Click += new System.EventHandler(this.label4_Click);
//
// label_live
//
this.label_live.Anchor = System.Windows.Forms.AnchorStyles.None;
this.label_live.AutoSize = true;
this.label_live.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.label_live.ForeColor = System.Drawing.SystemColors.WindowText;
this.label_live.Location = new System.Drawing.Point(40, 307);
this.label_live.Name = "label_live";
this.label_live.Size = new System.Drawing.Size(74, 21);
this.label_live.TabIndex = 7;
this.label_live.Text = "实时识别";
this.label_live.Click += new System.EventHandler(this.label_live_Click);
this.label_live.MouseLeave += new System.EventHandler(this.flowLayoutPanel1_MouseLeave);
this.label_live.MouseHover += new System.EventHandler(this.flowLayoutPanel1_MouseHover);
//
// label2
//
this.label2.Anchor = System.Windows.Forms.AnchorStyles.None;
this.label2.AutoSize = true;
this.label2.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.label2.ForeColor = System.Drawing.SystemColors.WindowText;
this.label2.Location = new System.Drawing.Point(230, 307);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(74, 21);
this.label2.TabIndex = 8;
this.label2.Text = "录音识别";
this.label2.Click += new System.EventHandler(this.flowLayoutPanel2_Click);
//
// label3
//
this.label3.Anchor = System.Windows.Forms.AnchorStyles.None;
this.label3.AutoSize = true;
this.label3.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.label3.ForeColor = System.Drawing.SystemColors.WindowText;
this.label3.Location = new System.Drawing.Point(451, 307);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(74, 21);
this.label3.TabIndex = 10;
this.label3.Text = "视频字幕";
this.label3.Click += new System.EventHandler(this.flowLayoutPanel3_Click);
//
// label4
//
this.label4.Anchor = System.Windows.Forms.AnchorStyles.None;
this.label4.AutoSize = true;
this.label4.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.label4.ForeColor = System.Drawing.SystemColors.WindowText;
this.label4.Location = new System.Drawing.Point(660, 307);
this.label4.Name = "label4";
this.label4.Size = new System.Drawing.Size(74, 21);
this.label4.TabIndex = 11;
this.label4.Text = "录制音频";
this.label4.Click += new System.EventHandler(this.label4_Click);
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackColor = System.Drawing.SystemColors.Control;
this.ClientSize = new System.Drawing.Size(800, 450);
this.Controls.Add(this.label4);
this.Controls.Add(this.label3);
this.Controls.Add(this.flowLayoutPanel3);
this.Controls.Add(this.label2);
this.Controls.Add(this.label_live);
this.Controls.Add(this.flowLayoutPanel4);
this.Controls.Add(this.flowLayoutPanel2);
this.Controls.Add(this.flowLayoutPanel1);
this.Controls.Add(this.label1);
this.Controls.Add(this.menuStrip1);
this.MainMenuStrip = this.menuStrip1;
this.Name = "Form1";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "语音识别";
this.Load += new System.EventHandler(this.Form1_Load);
this.menuStrip1.ResumeLayout(false);
this.menuStrip1.PerformLayout();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.MenuStrip menuStrip1;
private System.Windows.Forms.ToolStripMenuItem 账户ToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem 退出登录ToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem 帮助ToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem 关于ToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem 退出登录ToolStripMenuItem1;
private System.Windows.Forms.ToolStripMenuItem 登录ToolStripMenuItem;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.FlowLayoutPanel flowLayoutPanel1;
private System.Windows.Forms.FlowLayoutPanel flowLayoutPanel2;
private System.Windows.Forms.FlowLayoutPanel flowLayoutPanel3;
private System.Windows.Forms.FlowLayoutPanel flowLayoutPanel4;
private System.Windows.Forms.Label label_live;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.Label label3;
private System.Windows.Forms.Label label4;
}
}