C-Sharp-Moment
This commit is contained in:
85
lab5_2/lab5_3_CalebFontenot/Form1.Designer.cs
generated
Executable file
85
lab5_2/lab5_3_CalebFontenot/Form1.Designer.cs
generated
Executable file
@@ -0,0 +1,85 @@
|
||||
namespace lab5_3_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.outputListBox = new System.Windows.Forms.ListBox();
|
||||
this.displayButton = new System.Windows.Forms.Button();
|
||||
this.exitButton = new System.Windows.Forms.Button();
|
||||
this.SuspendLayout();
|
||||
//
|
||||
// outputListBox
|
||||
//
|
||||
this.outputListBox.FormattingEnabled = true;
|
||||
this.outputListBox.ItemHeight = 15;
|
||||
this.outputListBox.Location = new System.Drawing.Point(12, 12);
|
||||
this.outputListBox.Name = "outputListBox";
|
||||
this.outputListBox.Size = new System.Drawing.Size(291, 229);
|
||||
this.outputListBox.TabIndex = 0;
|
||||
//
|
||||
// displayButton
|
||||
//
|
||||
this.displayButton.Location = new System.Drawing.Point(79, 247);
|
||||
this.displayButton.Name = "displayButton";
|
||||
this.displayButton.Size = new System.Drawing.Size(75, 49);
|
||||
this.displayButton.TabIndex = 1;
|
||||
this.displayButton.Text = "Display Speed";
|
||||
this.displayButton.UseVisualStyleBackColor = true;
|
||||
this.displayButton.Click += new System.EventHandler(this.displayButton_Click);
|
||||
//
|
||||
// exitButton
|
||||
//
|
||||
this.exitButton.Location = new System.Drawing.Point(160, 247);
|
||||
this.exitButton.Name = "exitButton";
|
||||
this.exitButton.Size = new System.Drawing.Size(75, 49);
|
||||
this.exitButton.TabIndex = 2;
|
||||
this.exitButton.Text = "Exit";
|
||||
this.exitButton.UseVisualStyleBackColor = true;
|
||||
this.exitButton.Click += new System.EventHandler(this.exitButton_Click);
|
||||
//
|
||||
// Form1
|
||||
//
|
||||
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
|
||||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
||||
this.ClientSize = new System.Drawing.Size(315, 306);
|
||||
this.Controls.Add(this.exitButton);
|
||||
this.Controls.Add(this.displayButton);
|
||||
this.Controls.Add(this.outputListBox);
|
||||
this.Name = "Form1";
|
||||
this.Text = "Form1";
|
||||
this.ResumeLayout(false);
|
||||
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
private ListBox outputListBox;
|
||||
private Button displayButton;
|
||||
private Button exitButton;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user