namespace WindowsFormsApp1
{
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.AddItem_Button = new System.Windows.Forms.Button();
this.Output_ListBox = new System.Windows.Forms.ListBox();
this.label1 = new System.Windows.Forms.Label();
this.Reset_Button = new System.Windows.Forms.Button();
this.label2 = new System.Windows.Forms.Label();
this.textBox1 = new System.Windows.Forms.TextBox();
this.richTextBox1 = new System.Windows.Forms.RichTextBox();
this.checkBox1 = new System.Windows.Forms.CheckBox();
this.label3 = new System.Windows.Forms.Label();
this.SuspendLayout();
//
// AddItem_Button
//
this.AddItem_Button.BackColor = System.Drawing.Color.Black;
this.AddItem_Button.ForeColor = System.Drawing.Color.White;
this.AddItem_Button.Location = new System.Drawing.Point(216, 35);
this.AddItem_Button.Name = "AddItem_Button";
this.AddItem_Button.Size = new System.Drawing.Size(109, 23);
this.AddItem_Button.TabIndex = 0;
this.AddItem_Button.Text = "Add an Item";
this.AddItem_Button.UseVisualStyleBackColor = false;
this.AddItem_Button.Click += new System.EventHandler(this.AddItem_Button_Click);
//
// Output_ListBox
//
this.Output_ListBox.FormattingEnabled = true;
this.Output_ListBox.Location = new System.Drawing.Point(16, 35);
this.Output_ListBox.Name = "Output_ListBox";
this.Output_ListBox.Size = new System.Drawing.Size(194, 277);
this.Output_ListBox.TabIndex = 1;
this.Output_ListBox.Click += new System.EventHandler(this.Output_ListBox_Click);
this.Output_ListBox.SelectedValueChanged += new System.EventHandler(this.Output_ListBox_SelectedValueChanged);
//
// label1
//
this.label1.AutoSize = true;
this.label1.Font = new System.Drawing.Font("Courier New", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.label1.Location = new System.Drawing.Point(12, 9);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(179, 23);
this.label1.TabIndex = 2;
this.label1.Text = "Output Values";
//
// Reset_Button
//
this.Reset_Button.Location = new System.Drawing.Point(216, 96);
this.Reset_Button.Name = "Reset_Button";
this.Reset_Button.Size = new System.Drawing.Size(75, 23);
this.Reset_Button.TabIndex = 3;
this.Reset_Button.Text = "Reset";
this.Reset_Button.UseVisualStyleBackColor = true;
this.Reset_Button.Click += new System.EventHandler(this.Reset_Button_Click);
//
// label2
//
this.label2.AutoSize = true;
this.label2.Font = new System.Drawing.Font("Courier New", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.label2.Location = new System.Drawing.Point(338, 9);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(270, 23);
this.label2.TabIndex = 4;
this.label2.Text = "Input Field Examples";
//
// textBox1
//
this.textBox1.Location = new System.Drawing.Point(342, 37);
this.textBox1.MaxLength = 15;
this.textBox1.Name = "textBox1";
this.textBox1.PasswordChar = '*';
this.textBox1.Size = new System.Drawing.Size(238, 20);
this.textBox1.TabIndex = 5;
//
// richTextBox1
//
this.richTextBox1.Location = new System.Drawing.Point(342, 79);
this.richTextBox1.Name = "richTextBox1";
this.richTextBox1.ReadOnly = true;
this.richTextBox1.Size = new System.Drawing.Size(238, 233);
this.richTextBox1.TabIndex = 6;
this.richTextBox1.Text = "";
//
// checkBox1
//
this.checkBox1.AutoSize = true;
this.checkBox1.Location = new System.Drawing.Point(216, 295);
this.checkBox1.Name = "checkBox1";
this.checkBox1.Size = new System.Drawing.Size(60, 17);
this.checkBox1.TabIndex = 7;
this.checkBox1.Text = "Display";
this.checkBox1.UseVisualStyleBackColor = true;
this.checkBox1.Click += new System.EventHandler(this.checkBox1_Click);
//
// label3
//
this.label3.AutoSize = true;
this.label3.Location = new System.Drawing.Point(216, 319);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(0, 13);
this.label3.TabIndex = 8;
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(800, 450);
this.Controls.Add(this.label3);
this.Controls.Add(this.checkBox1);
this.Controls.Add(this.richTextBox1);
this.Controls.Add(this.textBox1);
this.Controls.Add(this.label2);
this.Controls.Add(this.Reset_Button);
this.Controls.Add(this.label1);
this.Controls.Add(this.Output_ListBox);
this.Controls.Add(this.AddItem_Button);
this.ForeColor = System.Drawing.Color.Black;
this.Name = "Form1";
this.Text = "Mister Rogness\' First Form Example";
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Button AddItem_Button;
private System.Windows.Forms.ListBox Output_ListBox;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.Button Reset_Button;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.TextBox textBox1;
private System.Windows.Forms.RichTextBox richTextBox1;
private System.Windows.Forms.CheckBox checkBox1;
private System.Windows.Forms.Label label3;
}
}