153 lines
6.0 KiB
C#
153 lines
6.0 KiB
C#
|
|
namespace Duck_Simulator
|
|
{
|
|
partial class Form1
|
|
{
|
|
/// <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.groupBox1 = new System.Windows.Forms.GroupBox();
|
|
this.checkBox1 = new System.Windows.Forms.CheckBox();
|
|
this.checkBox2 = new System.Windows.Forms.CheckBox();
|
|
this.checkBox3 = new System.Windows.Forms.CheckBox();
|
|
this.checkBox4 = new System.Windows.Forms.CheckBox();
|
|
this.button1 = new System.Windows.Forms.Button();
|
|
this.button2 = new System.Windows.Forms.Button();
|
|
this.button3 = new System.Windows.Forms.Button();
|
|
this.groupBox1.SuspendLayout();
|
|
this.SuspendLayout();
|
|
//
|
|
// groupBox1
|
|
//
|
|
this.groupBox1.Controls.Add(this.checkBox4);
|
|
this.groupBox1.Controls.Add(this.checkBox3);
|
|
this.groupBox1.Controls.Add(this.checkBox2);
|
|
this.groupBox1.Controls.Add(this.checkBox1);
|
|
this.groupBox1.Location = new System.Drawing.Point(12, 12);
|
|
this.groupBox1.Name = "groupBox1";
|
|
this.groupBox1.Size = new System.Drawing.Size(644, 911);
|
|
this.groupBox1.TabIndex = 0;
|
|
this.groupBox1.TabStop = false;
|
|
this.groupBox1.Text = "Duck Selector";
|
|
//
|
|
// checkBox1
|
|
//
|
|
this.checkBox1.AutoSize = true;
|
|
this.checkBox1.Location = new System.Drawing.Point(39, 42);
|
|
this.checkBox1.Name = "checkBox1";
|
|
this.checkBox1.Size = new System.Drawing.Size(170, 29);
|
|
this.checkBox1.TabIndex = 0;
|
|
this.checkBox1.Text = "Mallard Duck";
|
|
this.checkBox1.UseVisualStyleBackColor = true;
|
|
//
|
|
// checkBox2
|
|
//
|
|
this.checkBox2.AutoSize = true;
|
|
this.checkBox2.Location = new System.Drawing.Point(39, 77);
|
|
this.checkBox2.Name = "checkBox2";
|
|
this.checkBox2.Size = new System.Drawing.Size(186, 29);
|
|
this.checkBox2.TabIndex = 1;
|
|
this.checkBox2.Text = "Redhead Duck";
|
|
this.checkBox2.UseVisualStyleBackColor = true;
|
|
//
|
|
// checkBox3
|
|
//
|
|
this.checkBox3.AutoSize = true;
|
|
this.checkBox3.Location = new System.Drawing.Point(39, 112);
|
|
this.checkBox3.Name = "checkBox3";
|
|
this.checkBox3.Size = new System.Drawing.Size(180, 29);
|
|
this.checkBox3.TabIndex = 2;
|
|
this.checkBox3.Text = "Rubber Ducky";
|
|
this.checkBox3.UseVisualStyleBackColor = true;
|
|
//
|
|
// checkBox4
|
|
//
|
|
this.checkBox4.AutoSize = true;
|
|
this.checkBox4.Location = new System.Drawing.Point(39, 147);
|
|
this.checkBox4.Name = "checkBox4";
|
|
this.checkBox4.Size = new System.Drawing.Size(160, 29);
|
|
this.checkBox4.TabIndex = 3;
|
|
this.checkBox4.Text = "Decoy Duck";
|
|
this.checkBox4.UseVisualStyleBackColor = true;
|
|
//
|
|
// button1
|
|
//
|
|
this.button1.Location = new System.Drawing.Point(682, 36);
|
|
this.button1.Name = "button1";
|
|
this.button1.Size = new System.Drawing.Size(134, 47);
|
|
this.button1.TabIndex = 4;
|
|
this.button1.Text = "Quack";
|
|
this.button1.UseVisualStyleBackColor = true;
|
|
//
|
|
// button2
|
|
//
|
|
this.button2.Location = new System.Drawing.Point(682, 106);
|
|
this.button2.Name = "button2";
|
|
this.button2.Size = new System.Drawing.Size(134, 47);
|
|
this.button2.TabIndex = 5;
|
|
this.button2.Text = "Fly";
|
|
this.button2.UseVisualStyleBackColor = true;
|
|
//
|
|
// button3
|
|
//
|
|
this.button3.Location = new System.Drawing.Point(682, 179);
|
|
this.button3.Name = "button3";
|
|
this.button3.Size = new System.Drawing.Size(134, 47);
|
|
this.button3.TabIndex = 6;
|
|
this.button3.Text = "Swim";
|
|
this.button3.UseVisualStyleBackColor = true;
|
|
//
|
|
// Form1
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(12F, 25F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(1497, 935);
|
|
this.Controls.Add(this.button3);
|
|
this.Controls.Add(this.button2);
|
|
this.Controls.Add(this.button1);
|
|
this.Controls.Add(this.groupBox1);
|
|
this.Name = "Form1";
|
|
this.Text = "Form1";
|
|
this.groupBox1.ResumeLayout(false);
|
|
this.groupBox1.PerformLayout();
|
|
this.ResumeLayout(false);
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.GroupBox groupBox1;
|
|
private System.Windows.Forms.CheckBox checkBox4;
|
|
private System.Windows.Forms.CheckBox checkBox3;
|
|
private System.Windows.Forms.CheckBox checkBox2;
|
|
private System.Windows.Forms.CheckBox checkBox1;
|
|
private System.Windows.Forms.Button button1;
|
|
private System.Windows.Forms.Button button2;
|
|
private System.Windows.Forms.Button button3;
|
|
}
|
|
}
|
|
|