Add additional polish

This commit is contained in:
2022-10-03 15:49:04 -05:00
parent c401da8662
commit d9c6c69486
14 changed files with 216 additions and 27 deletions

View File

@@ -38,12 +38,12 @@
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.octalRadioButton = new System.Windows.Forms.RadioButton();
this.groupBox1.SuspendLayout();
this.binaryGroupBox.SuspendLayout();
this.groupBox2.SuspendLayout();
@@ -151,6 +151,18 @@
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;
@@ -206,18 +218,6 @@
this.octalTextBox.TabIndex = 0;
this.octalTextBox.Text = "0";
//
// 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);
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
@@ -232,7 +232,7 @@
this.Controls.Add(this.clearButton);
this.Controls.Add(this.computeButton);
this.Name = "Form1";
this.Text = "Base Converter";
this.Text = "Base Converter - Caleb Fontenot";
this.groupBox1.ResumeLayout(false);
this.groupBox1.PerformLayout();
this.binaryGroupBox.ResumeLayout(false);