123 lines
5.3 KiB
C#
123 lines
5.3 KiB
C#
|
namespace CelsiusAndFahrenheitTemperatureConverter_CalebFontenot
|
|||
|
{
|
|||
|
partial class Form1
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// Required designer variable.
|
|||
|
/// </summary>
|
|||
|
private System.ComponentModel.IContainer components = null;
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// Clean up any resources being used.
|
|||
|
/// </summary>
|
|||
|
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
|
|||
|
protected override void Dispose(bool disposing)
|
|||
|
{
|
|||
|
if (disposing && (components != null))
|
|||
|
{
|
|||
|
components.Dispose();
|
|||
|
}
|
|||
|
base.Dispose(disposing);
|
|||
|
}
|
|||
|
|
|||
|
#region Windows Form Designer generated code
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// Required method for Designer support - do not modify
|
|||
|
/// the contents of this method with the code editor.
|
|||
|
/// </summary>
|
|||
|
private void InitializeComponent()
|
|||
|
{
|
|||
|
this.celsiusTextBox = new System.Windows.Forms.TextBox();
|
|||
|
this.fahrenheitTextBox = new System.Windows.Forms.TextBox();
|
|||
|
this.buttonConvertCelsius = new System.Windows.Forms.Button();
|
|||
|
this.buttonConvertFahrenheit = new System.Windows.Forms.Button();
|
|||
|
this.groupBox1 = new System.Windows.Forms.GroupBox();
|
|||
|
this.groupBox2 = new System.Windows.Forms.GroupBox();
|
|||
|
this.groupBox1.SuspendLayout();
|
|||
|
this.groupBox2.SuspendLayout();
|
|||
|
this.SuspendLayout();
|
|||
|
//
|
|||
|
// celsiusTextBox
|
|||
|
//
|
|||
|
this.celsiusTextBox.Location = new System.Drawing.Point(6, 22);
|
|||
|
this.celsiusTextBox.Name = "celsiusTextBox";
|
|||
|
this.celsiusTextBox.Size = new System.Drawing.Size(105, 23);
|
|||
|
this.celsiusTextBox.TabIndex = 2;
|
|||
|
//
|
|||
|
// fahrenheitTextBox
|
|||
|
//
|
|||
|
this.fahrenheitTextBox.Location = new System.Drawing.Point(6, 22);
|
|||
|
this.fahrenheitTextBox.Name = "fahrenheitTextBox";
|
|||
|
this.fahrenheitTextBox.Size = new System.Drawing.Size(118, 23);
|
|||
|
this.fahrenheitTextBox.TabIndex = 3;
|
|||
|
//
|
|||
|
// buttonConvertCelsius
|
|||
|
//
|
|||
|
this.buttonConvertCelsius.Location = new System.Drawing.Point(6, 51);
|
|||
|
this.buttonConvertCelsius.Name = "buttonConvertCelsius";
|
|||
|
this.buttonConvertCelsius.Size = new System.Drawing.Size(118, 23);
|
|||
|
this.buttonConvertCelsius.TabIndex = 4;
|
|||
|
this.buttonConvertCelsius.Text = "Convert to C";
|
|||
|
this.buttonConvertCelsius.UseVisualStyleBackColor = true;
|
|||
|
this.buttonConvertCelsius.Click += new System.EventHandler(this.buttonConvertCelsius_Click);
|
|||
|
//
|
|||
|
// buttonConvertFahrenheit
|
|||
|
//
|
|||
|
this.buttonConvertFahrenheit.Location = new System.Drawing.Point(6, 51);
|
|||
|
this.buttonConvertFahrenheit.Name = "buttonConvertFahrenheit";
|
|||
|
this.buttonConvertFahrenheit.Size = new System.Drawing.Size(105, 23);
|
|||
|
this.buttonConvertFahrenheit.TabIndex = 5;
|
|||
|
this.buttonConvertFahrenheit.Text = "Convert to F";
|
|||
|
this.buttonConvertFahrenheit.UseVisualStyleBackColor = true;
|
|||
|
this.buttonConvertFahrenheit.Click += new System.EventHandler(this.buttonConvertFahrenheit_Click);
|
|||
|
//
|
|||
|
// groupBox1
|
|||
|
//
|
|||
|
this.groupBox1.Controls.Add(this.celsiusTextBox);
|
|||
|
this.groupBox1.Controls.Add(this.buttonConvertFahrenheit);
|
|||
|
this.groupBox1.Location = new System.Drawing.Point(12, 14);
|
|||
|
this.groupBox1.Name = "groupBox1";
|
|||
|
this.groupBox1.Size = new System.Drawing.Size(120, 82);
|
|||
|
this.groupBox1.TabIndex = 6;
|
|||
|
this.groupBox1.TabStop = false;
|
|||
|
this.groupBox1.Text = "Celsius";
|
|||
|
//
|
|||
|
// groupBox2
|
|||
|
//
|
|||
|
this.groupBox2.Controls.Add(this.fahrenheitTextBox);
|
|||
|
this.groupBox2.Controls.Add(this.buttonConvertCelsius);
|
|||
|
this.groupBox2.Location = new System.Drawing.Point(138, 14);
|
|||
|
this.groupBox2.Name = "groupBox2";
|
|||
|
this.groupBox2.Size = new System.Drawing.Size(130, 82);
|
|||
|
this.groupBox2.TabIndex = 7;
|
|||
|
this.groupBox2.TabStop = false;
|
|||
|
this.groupBox2.Text = "Fahrenheit";
|
|||
|
//
|
|||
|
// Form1
|
|||
|
//
|
|||
|
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
|
|||
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|||
|
this.ClientSize = new System.Drawing.Size(280, 108);
|
|||
|
this.Controls.Add(this.groupBox2);
|
|||
|
this.Controls.Add(this.groupBox1);
|
|||
|
this.Name = "Form1";
|
|||
|
this.Text = "Form1";
|
|||
|
this.groupBox1.ResumeLayout(false);
|
|||
|
this.groupBox1.PerformLayout();
|
|||
|
this.groupBox2.ResumeLayout(false);
|
|||
|
this.groupBox2.PerformLayout();
|
|||
|
this.ResumeLayout(false);
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
#endregion
|
|||
|
|
|||
|
private TextBox celsiusTextBox;
|
|||
|
private TextBox fahrenheitTextBox;
|
|||
|
private Button buttonConvertCelsius;
|
|||
|
private Button buttonConvertFahrenheit;
|
|||
|
private GroupBox groupBox1;
|
|||
|
private GroupBox groupBox2;
|
|||
|
}
|
|||
|
}
|