125 lines
5.1 KiB
C#
Executable File
125 lines
5.1 KiB
C#
Executable File
namespace CtoF_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.groupBox1 = new System.Windows.Forms.GroupBox();
|
|
this.celsiusListBox = new System.Windows.Forms.ListBox();
|
|
this.groupBox2 = new System.Windows.Forms.GroupBox();
|
|
this.fahrenheitListBox = new System.Windows.Forms.ListBox();
|
|
this.exitButton = new System.Windows.Forms.Button();
|
|
this.label1 = new System.Windows.Forms.Label();
|
|
this.groupBox1.SuspendLayout();
|
|
this.groupBox2.SuspendLayout();
|
|
this.SuspendLayout();
|
|
//
|
|
// groupBox1
|
|
//
|
|
this.groupBox1.Controls.Add(this.celsiusListBox);
|
|
this.groupBox1.Location = new System.Drawing.Point(12, 12);
|
|
this.groupBox1.Name = "groupBox1";
|
|
this.groupBox1.Size = new System.Drawing.Size(122, 267);
|
|
this.groupBox1.TabIndex = 0;
|
|
this.groupBox1.TabStop = false;
|
|
this.groupBox1.Text = "Celsius";
|
|
//
|
|
// celsiusListBox
|
|
//
|
|
this.celsiusListBox.FormattingEnabled = true;
|
|
this.celsiusListBox.ItemHeight = 15;
|
|
this.celsiusListBox.Location = new System.Drawing.Point(6, 22);
|
|
this.celsiusListBox.Name = "celsiusListBox";
|
|
this.celsiusListBox.Size = new System.Drawing.Size(110, 229);
|
|
this.celsiusListBox.TabIndex = 0;
|
|
//
|
|
// groupBox2
|
|
//
|
|
this.groupBox2.Controls.Add(this.fahrenheitListBox);
|
|
this.groupBox2.Location = new System.Drawing.Point(208, 12);
|
|
this.groupBox2.Name = "groupBox2";
|
|
this.groupBox2.Size = new System.Drawing.Size(122, 267);
|
|
this.groupBox2.TabIndex = 1;
|
|
this.groupBox2.TabStop = false;
|
|
this.groupBox2.Text = "Fahrenheit";
|
|
//
|
|
// fahrenheitListBox
|
|
//
|
|
this.fahrenheitListBox.FormattingEnabled = true;
|
|
this.fahrenheitListBox.ItemHeight = 15;
|
|
this.fahrenheitListBox.Location = new System.Drawing.Point(6, 22);
|
|
this.fahrenheitListBox.Name = "fahrenheitListBox";
|
|
this.fahrenheitListBox.Size = new System.Drawing.Size(110, 229);
|
|
this.fahrenheitListBox.TabIndex = 0;
|
|
//
|
|
// exitButton
|
|
//
|
|
this.exitButton.Location = new System.Drawing.Point(12, 285);
|
|
this.exitButton.Name = "exitButton";
|
|
this.exitButton.Size = new System.Drawing.Size(314, 23);
|
|
this.exitButton.TabIndex = 3;
|
|
this.exitButton.Text = "Exit";
|
|
this.exitButton.UseVisualStyleBackColor = true;
|
|
this.exitButton.Click += new System.EventHandler(this.exitButton_Click);
|
|
//
|
|
// label1
|
|
//
|
|
this.label1.Location = new System.Drawing.Point(134, 136);
|
|
this.label1.Name = "label1";
|
|
this.label1.Size = new System.Drawing.Size(74, 15);
|
|
this.label1.TabIndex = 4;
|
|
this.label1.Text = "equates to";
|
|
this.label1.TextAlign = System.Drawing.ContentAlignment.TopCenter;
|
|
//
|
|
// Form1
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(343, 320);
|
|
this.Controls.Add(this.label1);
|
|
this.Controls.Add(this.exitButton);
|
|
this.Controls.Add(this.groupBox2);
|
|
this.Controls.Add(this.groupBox1);
|
|
this.Name = "Form1";
|
|
this.Text = "Form1";
|
|
this.Load += new System.EventHandler(this.Form1_Load);
|
|
this.groupBox1.ResumeLayout(false);
|
|
this.groupBox2.ResumeLayout(false);
|
|
this.ResumeLayout(false);
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private GroupBox groupBox1;
|
|
private GroupBox groupBox2;
|
|
private Button exitButton;
|
|
private ListBox celsiusListBox;
|
|
private ListBox fahrenheitListBox;
|
|
private Label label1;
|
|
}
|
|
} |