📄 form1.designer.cs
字号:
namespace PocketSoundPlay
{
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.textBox1 = new System.Windows.Forms.TextBox();
this.button2 = new System.Windows.Forms.Button();
this.btnRecorder = new System.Windows.Forms.Button();
this.lblRecorderTime = new System.Windows.Forms.Label();
this.timer1 = new System.Windows.Forms.Timer();
this.btnRecorderStop = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// button1
//
this.button1.Location = new System.Drawing.Point(26, 40);
this.button1.Name = "button1";
this.button1.Size = new System.Drawing.Size(72, 20);
this.button1.TabIndex = 0;
this.button1.Text = "打开";
this.button1.Click += new System.EventHandler(this.button1_Click);
//
// textBox1
//
this.textBox1.Location = new System.Drawing.Point(116, 40);
this.textBox1.Name = "textBox1";
this.textBox1.Size = new System.Drawing.Size(225, 21);
this.textBox1.TabIndex = 1;
//
// button2
//
this.button2.Enabled = false;
this.button2.Location = new System.Drawing.Point(26, 82);
this.button2.Name = "button2";
this.button2.Size = new System.Drawing.Size(72, 20);
this.button2.TabIndex = 2;
this.button2.Text = "停止";
this.button2.Click += new System.EventHandler(this.button2_Click);
//
// btnRecorder
//
this.btnRecorder.Location = new System.Drawing.Point(26, 137);
this.btnRecorder.Name = "btnRecorder";
this.btnRecorder.Size = new System.Drawing.Size(72, 20);
this.btnRecorder.TabIndex = 3;
this.btnRecorder.Text = "录音";
this.btnRecorder.Click += new System.EventHandler(this.btnRecorder_Click);
//
// lblRecorderTime
//
this.lblRecorderTime.Location = new System.Drawing.Point(116, 137);
this.lblRecorderTime.Name = "lblRecorderTime";
this.lblRecorderTime.Size = new System.Drawing.Size(100, 20);
this.lblRecorderTime.Text = "lblRecorderTime";
//
// timer1
//
this.timer1.Tick += new System.EventHandler(this.timer1_Tick);
//
// btnRecorderStop
//
this.btnRecorderStop.Location = new System.Drawing.Point(26, 178);
this.btnRecorderStop.Name = "btnRecorderStop";
this.btnRecorderStop.Size = new System.Drawing.Size(72, 20);
this.btnRecorderStop.TabIndex = 5;
this.btnRecorderStop.Text = "停止";
this.btnRecorderStop.Click += new System.EventHandler(this.btnRecorderStop_Click);
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
this.AutoScroll = true;
this.ClientSize = new System.Drawing.Size(400, 400);
this.Controls.Add(this.btnRecorderStop);
this.Controls.Add(this.lblRecorderTime);
this.Controls.Add(this.btnRecorder);
this.Controls.Add(this.button2);
this.Controls.Add(this.textBox1);
this.Controls.Add(this.button1);
this.Name = "Form1";
this.Text = "Form1";
this.Closed += new System.EventHandler(this.Form1_Closed);
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.Button button1;
private System.Windows.Forms.TextBox textBox1;
private System.Windows.Forms.Button button2;
private System.Windows.Forms.Button btnRecorder;
private System.Windows.Forms.Label lblRecorderTime;
private System.Windows.Forms.Timer timer1;
private System.Windows.Forms.Button btnRecorderStop;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -