namespace
SoundOfLife {partial
class
Form1 {///
/// Required designer variable.
///
private
System.ComponentModel.IContainer components = null;///
/// Clean up any resources being used.
///
/// true if managed resources should be disposed; otherwise, false.
protected
override
void
Dispose(bool disposing) {if
(disposing && (components != null)) { components.Dispose(); } base.Dispose(disposing); } #region Windows Form Designer generated code///
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
///
private
void
InitializeComponent() { this.components =new
System.ComponentModel.Container(); System.ComponentModel.ComponentResourceManager resources =new
System.ComponentModel.ComponentResourceManager(typeof(Form1)); this.panel1 =new
System.Windows.Forms.Panel(); this.timer1 =new
System.Windows.Forms.Timer(this.components); this.button1 =new
System.Windows.Forms.Button(); this.button2 =new
System.Windows.Forms.Button(); this.button3 =new
System.Windows.Forms.Button(); this.comboBox1 =new
System.Windows.Forms.ComboBox(); this.comboBox2 =new
System.Windows.Forms.ComboBox(); this.comboBox3 =new
System.Windows.Forms.ComboBox(); this.comboBox4 =new
System.Windows.Forms.ComboBox(); this.SuspendLayout();//
// panel1
//
this.panel1.BackColor = System.Drawing.Color.White; this.panel1.Location =new
System.Drawing.Point(12, 12); this.panel1.Name = "panel1"; this.panel1.Size =new
System.Drawing.Size(480, 480); this.panel1.TabIndex = 1; this.panel1.MouseClick +=new
System.Windows.Forms.MouseEventHandler(this.panel1_MouseClick); this.panel1.Paint +=new
System.Windows.Forms.PaintEventHandler(this.panel1_Paint);//
// timer1
//
this.timer1.Interval = 500; this.timer1.Tick +=new
System.EventHandler(this.timer1_Tick);//
// button1
//
this.button1.Location =new
System.Drawing.Point(417, 535); this.button1.Name = "button1"; this.button1.Size =new
System.Drawing.Size(75, 23); this.button1.TabIndex = 2; this.button1.Text = "Go"; this.button1.UseVisualStyleBackColor = true; this.button1.Click +=new
System.EventHandler(this.button1_Click);//
// button2
//
this.button2.Location =new
System.Drawing.Point(336, 535); this.button2.Name = "button2"; this.button2.Size =new
System.Drawing.Size(75, 23); this.button2.TabIndex = 3; this.button2.Text = "Stop"; this.button2.UseVisualStyleBackColor = true; this.button2.Click +=new
System.EventHandler(this.button2_Click);//
// button3
//
this.button3.Location =new
System.Drawing.Point(12, 535); this.button3.Name = "button3"; this.button3.Size =new
System.Drawing.Size(75, 23); this.button3.TabIndex = 4; this.button3.Text = "Test Sound"; this.button3.UseVisualStyleBackColor = true; this.button3.Click +=new
System.EventHandler(this.button3_Click);//
// comboBox1
//
this.comboBox1.FormattingEnabled = true; this.comboBox1.Location =new
System.Drawing.Point(12, 498); this.comboBox1.Name = "comboBox1"; this.comboBox1.Size =new
System.Drawing.Size(106, 21); this.comboBox1.TabIndex = 5;//
// comboBox2
//
this.comboBox2.FormattingEnabled = true; this.comboBox2.Location =new
System.Drawing.Point(136, 498); this.comboBox2.Name = "comboBox2"; this.comboBox2.Size =new
System.Drawing.Size(106, 21); this.comboBox2.TabIndex = 6;//
// comboBox3
//
this.comboBox3.FormattingEnabled = true; this.comboBox3.Location =new
System.Drawing.Point(260, 498); this.comboBox3.Name = "comboBox3"; this.comboBox3.Size =new
System.Drawing.Size(106, 21); this.comboBox3.TabIndex = 7;//
// comboBox4
//
this.comboBox4.FormattingEnabled = true; this.comboBox4.Location =new
System.Drawing.Point(384, 498); this.comboBox4.Name = "comboBox4"; this.comboBox4.Size =new
System.Drawing.Size(106, 21); this.comboBox4.TabIndex = 8;//
// Form1
//
this.AutoScaleDimensions =new
System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize =new
System.Drawing.Size(505, 570); this.Controls.Add(this.comboBox4); this.Controls.Add(this.comboBox3); this.Controls.Add(this.comboBox2); this.Controls.Add(this.comboBox1); this.Controls.Add(this.button3); this.Controls.Add(this.button2); this.Controls.Add(this.button1); this.Controls.Add(this.panel1); this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.Fixed3D; this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); this.MaximizeBox = false; this.Name = "Form1"; this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide; this.Text = "StarScream"; this.FormClosing +=new
System.Windows.Forms.FormClosingEventHandler(this.Form1_FormClosing); this.ResumeLayout(false); } #endregionprivate
System.Windows.Forms.Panel panel1;private
System.Windows.Forms.Timer timer1;private
System.Windows.Forms.Button button1;private
System.Windows.Forms.Button button2;private
System.Windows.Forms.Button button3;private
System.Windows.Forms.ComboBox comboBox1;private
System.Windows.Forms.ComboBox comboBox2;private
System.Windows.Forms.ComboBox comboBox3;private
System.Windows.Forms.ComboBox comboBox4; } }