2022-08-30 14:15:11 -05:00

84 lines
3.1 KiB
C#

namespace Speed_Converter
{
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.exitButton = new System.Windows.Forms.Button();
this.displayButton = new System.Windows.Forms.Button();
this.outputListBox = new System.Windows.Forms.ListBox();
this.SuspendLayout();
//
// exitButton
//
this.exitButton.Location = new System.Drawing.Point(114, 152);
this.exitButton.Name = "exitButton";
this.exitButton.Size = new System.Drawing.Size(75, 37);
this.exitButton.TabIndex = 5;
this.exitButton.Text = "Exit";
this.exitButton.UseVisualStyleBackColor = true;
//
// displayButton
//
this.displayButton.Location = new System.Drawing.Point(33, 152);
this.displayButton.Name = "displayButton";
this.displayButton.Size = new System.Drawing.Size(75, 37);
this.displayButton.TabIndex = 4;
this.displayButton.Text = "Display Speeds";
this.displayButton.UseVisualStyleBackColor = true;
//
// outputListBox
//
this.outputListBox.FormattingEnabled = true;
this.outputListBox.Location = new System.Drawing.Point(12, 12);
this.outputListBox.Name = "outputListBox";
this.outputListBox.Size = new System.Drawing.Size(198, 134);
this.outputListBox.TabIndex = 3;
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(222, 200);
this.Controls.Add(this.exitButton);
this.Controls.Add(this.displayButton);
this.Controls.Add(this.outputListBox);
this.Name = "Form1";
this.Text = "Speed Converter";
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.Button exitButton;
private System.Windows.Forms.Button displayButton;
private System.Windows.Forms.ListBox outputListBox;
}
}