namespace Lab4_5_CalebFontenot
{
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.colorGroupBox = new System.Windows.Forms.GroupBox();
this.normalRadioButton = new System.Windows.Forms.RadioButton();
this.blackRadioButton = new System.Windows.Forms.RadioButton();
this.whiteRadioButton = new System.Windows.Forms.RadioButton();
this.redRadioButton = new System.Windows.Forms.RadioButton();
this.yellowRadioButton = new System.Windows.Forms.RadioButton();
this.exitButton = new System.Windows.Forms.Button();
this.colorGroupBox.SuspendLayout();
this.SuspendLayout();
//
// colorGroupBox
//
this.colorGroupBox.Controls.Add(this.normalRadioButton);
this.colorGroupBox.Controls.Add(this.blackRadioButton);
this.colorGroupBox.Controls.Add(this.whiteRadioButton);
this.colorGroupBox.Controls.Add(this.redRadioButton);
this.colorGroupBox.Controls.Add(this.yellowRadioButton);
this.colorGroupBox.Location = new System.Drawing.Point(12, 12);
this.colorGroupBox.Name = "colorGroupBox";
this.colorGroupBox.Size = new System.Drawing.Size(161, 153);
this.colorGroupBox.TabIndex = 0;
this.colorGroupBox.TabStop = false;
this.colorGroupBox.Text = "Select a background color";
//
// normalRadioButton
//
this.normalRadioButton.AutoSize = true;
this.normalRadioButton.Checked = true;
this.normalRadioButton.Location = new System.Drawing.Point(36, 122);
this.normalRadioButton.Name = "normalRadioButton";
this.normalRadioButton.Size = new System.Drawing.Size(107, 19);
this.normalRadioButton.TabIndex = 4;
this.normalRadioButton.TabStop = true;
this.normalRadioButton.Text = "Back to Normal";
this.normalRadioButton.UseVisualStyleBackColor = true;
this.normalRadioButton.CheckedChanged += new System.EventHandler(this.normalRadioButton_CheckedChanged);
//
// blackRadioButton
//
this.blackRadioButton.AutoSize = true;
this.blackRadioButton.Location = new System.Drawing.Point(36, 97);
this.blackRadioButton.Name = "blackRadioButton";
this.blackRadioButton.Size = new System.Drawing.Size(53, 19);
this.blackRadioButton.TabIndex = 3;
this.blackRadioButton.Text = "Black";
this.blackRadioButton.UseVisualStyleBackColor = true;
this.blackRadioButton.CheckedChanged += new System.EventHandler(this.blackRadioButton_CheckedChanged);
//
// whiteRadioButton
//
this.whiteRadioButton.AutoSize = true;
this.whiteRadioButton.Location = new System.Drawing.Point(36, 72);
this.whiteRadioButton.Name = "whiteRadioButton";
this.whiteRadioButton.Size = new System.Drawing.Size(56, 19);
this.whiteRadioButton.TabIndex = 2;
this.whiteRadioButton.Text = "White";
this.whiteRadioButton.UseVisualStyleBackColor = true;
this.whiteRadioButton.CheckedChanged += new System.EventHandler(this.whiteRadioButton_CheckedChanged);
//
// redRadioButton
//
this.redRadioButton.AutoSize = true;
this.redRadioButton.Location = new System.Drawing.Point(36, 47);
this.redRadioButton.Name = "redRadioButton";
this.redRadioButton.Size = new System.Drawing.Size(45, 19);
this.redRadioButton.TabIndex = 1;
this.redRadioButton.Text = "Red";
this.redRadioButton.UseVisualStyleBackColor = true;
this.redRadioButton.CheckedChanged += new System.EventHandler(this.redRadioButton_CheckedChanged);
//
// yellowRadioButton
//
this.yellowRadioButton.AutoSize = true;
this.yellowRadioButton.Location = new System.Drawing.Point(36, 22);
this.yellowRadioButton.Name = "yellowRadioButton";
this.yellowRadioButton.Size = new System.Drawing.Size(59, 19);
this.yellowRadioButton.TabIndex = 0;
this.yellowRadioButton.Text = "Yellow";
this.yellowRadioButton.UseVisualStyleBackColor = true;
this.yellowRadioButton.CheckedChanged += new System.EventHandler(this.yellowRadioButton_CheckedChanged);
//
// exitButton
//
this.exitButton.Location = new System.Drawing.Point(48, 171);
this.exitButton.Name = "exitButton";
this.exitButton.Size = new System.Drawing.Size(75, 23);
this.exitButton.TabIndex = 1;
this.exitButton.Text = "Exit";
this.exitButton.UseVisualStyleBackColor = true;
this.exitButton.Click += new System.EventHandler(this.exitButton_Click);
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(187, 205);
this.Controls.Add(this.exitButton);
this.Controls.Add(this.colorGroupBox);
this.Name = "Form1";
this.Text = "Color Theme";
this.colorGroupBox.ResumeLayout(false);
this.colorGroupBox.PerformLayout();
this.ResumeLayout(false);
}
#endregion
private GroupBox colorGroupBox;
private RadioButton normalRadioButton;
private RadioButton blackRadioButton;
private RadioButton whiteRadioButton;
private RadioButton redRadioButton;
private RadioButton yellowRadioButton;
private Button exitButton;
}
}