namespace WindowsForms
{
partial class MainFormWindow
{
///
/// 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.label1 = new System.Windows.Forms.Label();
this.aboutButton = new System.Windows.Forms.Button();
this.button1 = new System.Windows.Forms.Button();
this.textField = new System.Windows.Forms.TextBox();
this.checkBox = new System.Windows.Forms.CheckBox();
this.checkBoxLabel = new System.Windows.Forms.Label();
this.groupBox1 = new System.Windows.Forms.GroupBox();
this.radioButtonReset = new System.Windows.Forms.Button();
this.radioButtonLabel = new System.Windows.Forms.Label();
this.radioButton2 = new System.Windows.Forms.RadioButton();
this.radioButton1 = new System.Windows.Forms.RadioButton();
this.groupBox2 = new System.Windows.Forms.GroupBox();
this.fruitsLabel = new System.Windows.Forms.Label();
this.FruitsComboBox = new System.Windows.Forms.ComboBox();
this.nextFormButton = new System.Windows.Forms.Button();
this.label2 = new System.Windows.Forms.Label();
this.buttonButton = new System.Windows.Forms.Button();
this.groupBox1.SuspendLayout();
this.groupBox2.SuspendLayout();
this.SuspendLayout();
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(139, 38);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(102, 13);
this.label1.TabIndex = 0;
this.label1.Text = "This is a sample text";
this.label1.Click += new System.EventHandler(this.label1_Click);
//
// aboutButton
//
this.aboutButton.Location = new System.Drawing.Point(12, 9);
this.aboutButton.Name = "aboutButton";
this.aboutButton.Size = new System.Drawing.Size(95, 23);
this.aboutButton.TabIndex = 1;
this.aboutButton.Text = "&About";
this.aboutButton.UseVisualStyleBackColor = true;
this.aboutButton.Click += new System.EventHandler(this.aboutButton_Click);
//
// button1
//
this.button1.Location = new System.Drawing.Point(12, 96);
this.button1.Name = "button1";
this.button1.Size = new System.Drawing.Size(95, 23);
this.button1.TabIndex = 2;
this.button1.Text = "Close";
this.button1.UseVisualStyleBackColor = true;
this.button1.Click += new System.EventHandler(this.button1_Click);
//
// textField
//
this.textField.Location = new System.Drawing.Point(142, 69);
this.textField.Name = "textField";
this.textField.Size = new System.Drawing.Size(253, 20);
this.textField.TabIndex = 3;
//
// checkBox
//
this.checkBox.AutoSize = true;
this.checkBox.Location = new System.Drawing.Point(142, 105);
this.checkBox.Name = "checkBox";
this.checkBox.Size = new System.Drawing.Size(74, 17);
this.checkBox.TabIndex = 4;
this.checkBox.Text = "checkBox";
this.checkBox.UseVisualStyleBackColor = true;
this.checkBox.CheckedChanged += new System.EventHandler(this.checkBox_CheckedChanged);
//
// checkBoxLabel
//
this.checkBoxLabel.AutoSize = true;
this.checkBoxLabel.Location = new System.Drawing.Point(246, 106);
this.checkBoxLabel.Name = "checkBoxLabel";
this.checkBoxLabel.Size = new System.Drawing.Size(80, 13);
this.checkBoxLabel.TabIndex = 5;
this.checkBoxLabel.Text = "checkBox is off";
//
// groupBox1
//
this.groupBox1.Controls.Add(this.radioButtonReset);
this.groupBox1.Controls.Add(this.radioButtonLabel);
this.groupBox1.Controls.Add(this.radioButton2);
this.groupBox1.Controls.Add(this.radioButton1);
this.groupBox1.Location = new System.Drawing.Point(142, 136);
this.groupBox1.Name = "groupBox1";
this.groupBox1.Size = new System.Drawing.Size(234, 89);
this.groupBox1.TabIndex = 6;
this.groupBox1.TabStop = false;
this.groupBox1.Text = "Groupd of radio buttons";
//
// radioButtonReset
//
this.radioButtonReset.Location = new System.Drawing.Point(143, 56);
this.radioButtonReset.Name = "radioButtonReset";
this.radioButtonReset.Size = new System.Drawing.Size(75, 23);
this.radioButtonReset.TabIndex = 3;
this.radioButtonReset.Text = "Reset";
this.radioButtonReset.UseVisualStyleBackColor = true;
this.radioButtonReset.Click += new System.EventHandler(this.radioButtonReset_Click);
//
// radioButtonLabel
//
this.radioButtonLabel.AutoSize = true;
this.radioButtonLabel.Location = new System.Drawing.Point(6, 61);
this.radioButtonLabel.Name = "radioButtonLabel";
this.radioButtonLabel.Size = new System.Drawing.Size(96, 13);
this.radioButtonLabel.TabIndex = 2;
this.radioButtonLabel.Text = "No option selected";
//
// radioButton2
//
this.radioButton2.AutoSize = true;
this.radioButton2.Location = new System.Drawing.Point(107, 28);
this.radioButton2.Name = "radioButton2";
this.radioButton2.Size = new System.Drawing.Size(65, 17);
this.radioButton2.TabIndex = 1;
this.radioButton2.TabStop = true;
this.radioButton2.Text = "Option 2";
this.radioButton2.UseVisualStyleBackColor = true;
this.radioButton2.CheckedChanged += new System.EventHandler(this.radioButton2_CheckedChanged);
//
// radioButton1
//
this.radioButton1.AutoSize = true;
this.radioButton1.Location = new System.Drawing.Point(9, 28);
this.radioButton1.Name = "radioButton1";
this.radioButton1.Size = new System.Drawing.Size(65, 17);
this.radioButton1.TabIndex = 0;
this.radioButton1.TabStop = true;
this.radioButton1.Text = "Option 1";
this.radioButton1.UseVisualStyleBackColor = true;
this.radioButton1.CheckedChanged += new System.EventHandler(this.radioButton1_CheckedChanged);
//
// groupBox2
//
this.groupBox2.Controls.Add(this.fruitsLabel);
this.groupBox2.Controls.Add(this.FruitsComboBox);
this.groupBox2.Location = new System.Drawing.Point(142, 231);
this.groupBox2.Name = "groupBox2";
this.groupBox2.Size = new System.Drawing.Size(325, 63);
this.groupBox2.TabIndex = 7;
this.groupBox2.TabStop = false;
this.groupBox2.Text = "Drop down list";
//
// fruitsLabel
//
this.fruitsLabel.AutoSize = true;
this.fruitsLabel.Location = new System.Drawing.Point(133, 30);
this.fruitsLabel.Name = "fruitsLabel";
this.fruitsLabel.Size = new System.Drawing.Size(35, 13);
this.fruitsLabel.TabIndex = 1;
this.fruitsLabel.Text = "label2";
//
// FruitsComboBox
//
this.FruitsComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.FruitsComboBox.FormattingEnabled = true;
this.FruitsComboBox.Items.AddRange(new object[] {
"Apple",
"Caimito",
"Coconut",
"Orange",
"Passion Fruit"});
this.FruitsComboBox.Location = new System.Drawing.Point(6, 27);
this.FruitsComboBox.Name = "FruitsComboBox";
this.FruitsComboBox.Size = new System.Drawing.Size(121, 21);
this.FruitsComboBox.TabIndex = 0;
this.FruitsComboBox.SelectedIndexChanged += new System.EventHandler(this.FruitsComboBox_SelectedIndexChanged);
//
// nextFormButton
//
this.nextFormButton.Location = new System.Drawing.Point(12, 38);
this.nextFormButton.Name = "nextFormButton";
this.nextFormButton.Size = new System.Drawing.Size(95, 23);
this.nextFormButton.TabIndex = 8;
this.nextFormButton.Text = "Data Entry Form";
this.nextFormButton.UseVisualStyleBackColor = true;
this.nextFormButton.Click += new System.EventHandler(this.nextFormButton_Click);
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(139, 14);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(108, 13);
this.label2.TabIndex = 9;
this.label2.Text = "Assorted UI Elements";
//
// buttonButton
//
this.buttonButton.Location = new System.Drawing.Point(12, 67);
this.buttonButton.Name = "buttonButton";
this.buttonButton.Size = new System.Drawing.Size(95, 23);
this.buttonButton.TabIndex = 10;
this.buttonButton.Text = "Simple Elements";
this.buttonButton.UseVisualStyleBackColor = true;
this.buttonButton.Click += new System.EventHandler(this.buttonButton_Click);
//
// MainFormWindow
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(724, 474);
this.Controls.Add(this.buttonButton);
this.Controls.Add(this.label2);
this.Controls.Add(this.nextFormButton);
this.Controls.Add(this.groupBox2);
this.Controls.Add(this.groupBox1);
this.Controls.Add(this.checkBoxLabel);
this.Controls.Add(this.checkBox);
this.Controls.Add(this.textField);
this.Controls.Add(this.button1);
this.Controls.Add(this.aboutButton);
this.Controls.Add(this.label1);
this.Name = "MainFormWindow";
this.Text = "MainFormWindow";
this.groupBox1.ResumeLayout(false);
this.groupBox1.PerformLayout();
this.groupBox2.ResumeLayout(false);
this.groupBox2.PerformLayout();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Label label1;
private System.Windows.Forms.Button aboutButton;
private System.Windows.Forms.Button button1;
private System.Windows.Forms.TextBox textField;
private System.Windows.Forms.CheckBox checkBox;
private System.Windows.Forms.Label checkBoxLabel;
private System.Windows.Forms.GroupBox groupBox1;
private System.Windows.Forms.Label radioButtonLabel;
private System.Windows.Forms.RadioButton radioButton2;
private System.Windows.Forms.RadioButton radioButton1;
private System.Windows.Forms.Button radioButtonReset;
private System.Windows.Forms.GroupBox groupBox2;
private System.Windows.Forms.ComboBox FruitsComboBox;
private System.Windows.Forms.Label fruitsLabel;
private System.Windows.Forms.Button nextFormButton;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.Button buttonButton;
}
}