namespace WindowsFormsApplication1
{
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.computeButton = new System.Windows.Forms.Button();
this.clearButton = new System.Windows.Forms.Button();
this.groupBox1 = new System.Windows.Forms.GroupBox();
this.hexTextBox = new System.Windows.Forms.TextBox();
this.binaryGroupBox = new System.Windows.Forms.GroupBox();
this.binaryTextBox = new System.Windows.Forms.TextBox();
this.groupBox2 = new System.Windows.Forms.GroupBox();
this.decimalTextBox = new System.Windows.Forms.TextBox();
this.exitButton = new System.Windows.Forms.Button();
this.groupBox3 = new System.Windows.Forms.GroupBox();
this.octalRadioButton = new System.Windows.Forms.RadioButton();
this.decimalRadioButton = new System.Windows.Forms.RadioButton();
this.hexRadioButton = new System.Windows.Forms.RadioButton();
this.binaryRadioButton = new System.Windows.Forms.RadioButton();
this.groupBox4 = new System.Windows.Forms.GroupBox();
this.octalTextBox = new System.Windows.Forms.TextBox();
this.groupBox1.SuspendLayout();
this.binaryGroupBox.SuspendLayout();
this.groupBox2.SuspendLayout();
this.groupBox3.SuspendLayout();
this.groupBox4.SuspendLayout();
this.SuspendLayout();
//
// computeButton
//
this.computeButton.Location = new System.Drawing.Point(12, 319);
this.computeButton.Name = "computeButton";
this.computeButton.Size = new System.Drawing.Size(91, 23);
this.computeButton.TabIndex = 5;
this.computeButton.Text = "Compute!";
this.computeButton.UseVisualStyleBackColor = true;
this.computeButton.Click += new System.EventHandler(this.computeButton_Click);
//
// clearButton
//
this.clearButton.Location = new System.Drawing.Point(109, 319);
this.clearButton.Name = "clearButton";
this.clearButton.Size = new System.Drawing.Size(85, 23);
this.clearButton.TabIndex = 6;
this.clearButton.Text = "Clear";
this.clearButton.UseVisualStyleBackColor = true;
this.clearButton.Click += new System.EventHandler(this.clearButton_Click);
//
// groupBox1
//
this.groupBox1.Controls.Add(this.hexTextBox);
this.groupBox1.Location = new System.Drawing.Point(12, 72);
this.groupBox1.Name = "groupBox1";
this.groupBox1.Size = new System.Drawing.Size(279, 54);
this.groupBox1.TabIndex = 1;
this.groupBox1.TabStop = false;
this.groupBox1.Text = "Hexadecimal";
//
// hexTextBox
//
this.hexTextBox.AccessibleDescription = "";
this.hexTextBox.Location = new System.Drawing.Point(7, 20);
this.hexTextBox.Name = "hexTextBox";
this.hexTextBox.Size = new System.Drawing.Size(261, 20);
this.hexTextBox.TabIndex = 0;
this.hexTextBox.Text = "0";
//
// binaryGroupBox
//
this.binaryGroupBox.Controls.Add(this.binaryTextBox);
this.binaryGroupBox.Location = new System.Drawing.Point(12, 12);
this.binaryGroupBox.Name = "binaryGroupBox";
this.binaryGroupBox.Size = new System.Drawing.Size(279, 54);
this.binaryGroupBox.TabIndex = 0;
this.binaryGroupBox.TabStop = false;
this.binaryGroupBox.Text = "Binary";
//
// binaryTextBox
//
this.binaryTextBox.AccessibleDescription = "";
this.binaryTextBox.Location = new System.Drawing.Point(7, 20);
this.binaryTextBox.Name = "binaryTextBox";
this.binaryTextBox.Size = new System.Drawing.Size(261, 20);
this.binaryTextBox.TabIndex = 0;
this.binaryTextBox.Text = "0";
//
// groupBox2
//
this.groupBox2.Controls.Add(this.decimalTextBox);
this.groupBox2.Location = new System.Drawing.Point(12, 192);
this.groupBox2.Name = "groupBox2";
this.groupBox2.Size = new System.Drawing.Size(279, 54);
this.groupBox2.TabIndex = 3;
this.groupBox2.TabStop = false;
this.groupBox2.Text = "Decimal";
//
// decimalTextBox
//
this.decimalTextBox.AccessibleDescription = "";
this.decimalTextBox.Location = new System.Drawing.Point(7, 20);
this.decimalTextBox.Name = "decimalTextBox";
this.decimalTextBox.Size = new System.Drawing.Size(261, 20);
this.decimalTextBox.TabIndex = 0;
this.decimalTextBox.Text = "0";
//
// exitButton
//
this.exitButton.Location = new System.Drawing.Point(200, 319);
this.exitButton.Name = "exitButton";
this.exitButton.Size = new System.Drawing.Size(91, 23);
this.exitButton.TabIndex = 7;
this.exitButton.Text = "Exit";
this.exitButton.UseVisualStyleBackColor = true;
this.exitButton.Click += new System.EventHandler(this.exitButton_Click);
//
// groupBox3
//
this.groupBox3.Controls.Add(this.octalRadioButton);
this.groupBox3.Controls.Add(this.decimalRadioButton);
this.groupBox3.Controls.Add(this.hexRadioButton);
this.groupBox3.Controls.Add(this.binaryRadioButton);
this.groupBox3.Location = new System.Drawing.Point(12, 252);
this.groupBox3.Name = "groupBox3";
this.groupBox3.Size = new System.Drawing.Size(279, 52);
this.groupBox3.TabIndex = 4;
this.groupBox3.TabStop = false;
this.groupBox3.Text = "Which Base would you like to convert from?";
//
// octalRadioButton
//
this.octalRadioButton.AutoSize = true;
this.octalRadioButton.Location = new System.Drawing.Point(159, 19);
this.octalRadioButton.Name = "octalRadioButton";
this.octalRadioButton.Size = new System.Drawing.Size(50, 17);
this.octalRadioButton.TabIndex = 3;
this.octalRadioButton.TabStop = true;
this.octalRadioButton.Text = "Octal";
this.octalRadioButton.UseVisualStyleBackColor = true;
this.octalRadioButton.CheckedChanged += new System.EventHandler(this.octalRadioButton_CheckedChanged);
//
// decimalRadioButton
//
this.decimalRadioButton.AutoSize = true;
this.decimalRadioButton.Location = new System.Drawing.Point(215, 19);
this.decimalRadioButton.Name = "decimalRadioButton";
this.decimalRadioButton.Size = new System.Drawing.Size(63, 17);
this.decimalRadioButton.TabIndex = 2;
this.decimalRadioButton.TabStop = true;
this.decimalRadioButton.Text = "Decimal";
this.decimalRadioButton.UseVisualStyleBackColor = true;
this.decimalRadioButton.CheckedChanged += new System.EventHandler(this.decimalRadioButton_CheckedChanged);
//
// hexRadioButton
//
this.hexRadioButton.AutoSize = true;
this.hexRadioButton.Location = new System.Drawing.Point(67, 19);
this.hexRadioButton.Name = "hexRadioButton";
this.hexRadioButton.Size = new System.Drawing.Size(86, 17);
this.hexRadioButton.TabIndex = 1;
this.hexRadioButton.TabStop = true;
this.hexRadioButton.Text = "Hexadecimal";
this.hexRadioButton.UseVisualStyleBackColor = true;
this.hexRadioButton.CheckedChanged += new System.EventHandler(this.hexRadioButton_CheckedChanged);
//
// binaryRadioButton
//
this.binaryRadioButton.AutoSize = true;
this.binaryRadioButton.Location = new System.Drawing.Point(7, 19);
this.binaryRadioButton.Name = "binaryRadioButton";
this.binaryRadioButton.Size = new System.Drawing.Size(54, 17);
this.binaryRadioButton.TabIndex = 0;
this.binaryRadioButton.TabStop = true;
this.binaryRadioButton.Text = "Binary";
this.binaryRadioButton.UseVisualStyleBackColor = true;
this.binaryRadioButton.CheckedChanged += new System.EventHandler(this.binaryRadioButton_CheckedChanged);
//
// groupBox4
//
this.groupBox4.Controls.Add(this.octalTextBox);
this.groupBox4.Location = new System.Drawing.Point(12, 132);
this.groupBox4.Name = "groupBox4";
this.groupBox4.Size = new System.Drawing.Size(279, 54);
this.groupBox4.TabIndex = 2;
this.groupBox4.TabStop = false;
this.groupBox4.Text = "Octal";
//
// octalTextBox
//
this.octalTextBox.AccessibleDescription = "";
this.octalTextBox.Location = new System.Drawing.Point(7, 20);
this.octalTextBox.Name = "octalTextBox";
this.octalTextBox.Size = new System.Drawing.Size(261, 20);
this.octalTextBox.TabIndex = 0;
this.octalTextBox.Text = "0";
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(300, 347);
this.Controls.Add(this.groupBox4);
this.Controls.Add(this.groupBox3);
this.Controls.Add(this.exitButton);
this.Controls.Add(this.groupBox2);
this.Controls.Add(this.binaryGroupBox);
this.Controls.Add(this.groupBox1);
this.Controls.Add(this.clearButton);
this.Controls.Add(this.computeButton);
this.Name = "Form1";
this.Text = "Base Converter - Caleb Fontenot";
this.groupBox1.ResumeLayout(false);
this.groupBox1.PerformLayout();
this.binaryGroupBox.ResumeLayout(false);
this.binaryGroupBox.PerformLayout();
this.groupBox2.ResumeLayout(false);
this.groupBox2.PerformLayout();
this.groupBox3.ResumeLayout(false);
this.groupBox3.PerformLayout();
this.groupBox4.ResumeLayout(false);
this.groupBox4.PerformLayout();
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.Button computeButton;
private System.Windows.Forms.Button clearButton;
private System.Windows.Forms.GroupBox groupBox1;
private System.Windows.Forms.TextBox hexTextBox;
private System.Windows.Forms.GroupBox binaryGroupBox;
private System.Windows.Forms.TextBox binaryTextBox;
private System.Windows.Forms.GroupBox groupBox2;
private System.Windows.Forms.TextBox decimalTextBox;
private System.Windows.Forms.Button exitButton;
private System.Windows.Forms.GroupBox groupBox3;
private System.Windows.Forms.RadioButton decimalRadioButton;
private System.Windows.Forms.RadioButton hexRadioButton;
private System.Windows.Forms.RadioButton binaryRadioButton;
private System.Windows.Forms.RadioButton octalRadioButton;
private System.Windows.Forms.GroupBox groupBox4;
private System.Windows.Forms.TextBox octalTextBox;
}
}