ASDV-C-Sharp/lab7_1/lab7_1_CalebFontenot/Form1.Designer.cs
2022-11-17 14:45:04 -06:00

134 lines
5.6 KiB
C#
Executable File

namespace lab7_1_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.firstLabel = new System.Windows.Forms.TextBox();
this.secondLabel = new System.Windows.Forms.TextBox();
this.thirdLabel = new System.Windows.Forms.TextBox();
this.fourthLabel = new System.Windows.Forms.TextBox();
this.fithLabel = new System.Windows.Forms.TextBox();
this.generateButton = new System.Windows.Forms.Button();
this.exitButton = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// firstLabel
//
this.firstLabel.Location = new System.Drawing.Point(12, 12);
this.firstLabel.Name = "firstLabel";
this.firstLabel.ReadOnly = true;
this.firstLabel.Size = new System.Drawing.Size(61, 23);
this.firstLabel.TabIndex = 0;
this.firstLabel.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
//
// secondLabel
//
this.secondLabel.Location = new System.Drawing.Point(79, 12);
this.secondLabel.Name = "secondLabel";
this.secondLabel.ReadOnly = true;
this.secondLabel.Size = new System.Drawing.Size(61, 23);
this.secondLabel.TabIndex = 1;
this.secondLabel.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
//
// thirdLabel
//
this.thirdLabel.Location = new System.Drawing.Point(146, 12);
this.thirdLabel.Name = "thirdLabel";
this.thirdLabel.ReadOnly = true;
this.thirdLabel.Size = new System.Drawing.Size(61, 23);
this.thirdLabel.TabIndex = 2;
this.thirdLabel.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
//
// fourthLabel
//
this.fourthLabel.Location = new System.Drawing.Point(213, 12);
this.fourthLabel.Name = "fourthLabel";
this.fourthLabel.ReadOnly = true;
this.fourthLabel.Size = new System.Drawing.Size(61, 23);
this.fourthLabel.TabIndex = 3;
this.fourthLabel.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
//
// fithLabel
//
this.fithLabel.Location = new System.Drawing.Point(280, 12);
this.fithLabel.Name = "fithLabel";
this.fithLabel.ReadOnly = true;
this.fithLabel.Size = new System.Drawing.Size(61, 23);
this.fithLabel.TabIndex = 4;
this.fithLabel.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
//
// generateButton
//
this.generateButton.Location = new System.Drawing.Point(97, 41);
this.generateButton.Name = "generateButton";
this.generateButton.Size = new System.Drawing.Size(75, 49);
this.generateButton.TabIndex = 5;
this.generateButton.Text = "Generate Numbers";
this.generateButton.UseVisualStyleBackColor = true;
this.generateButton.Click += new System.EventHandler(this.generateButton_Click);
//
// exitButton
//
this.exitButton.Location = new System.Drawing.Point(178, 41);
this.exitButton.Name = "exitButton";
this.exitButton.Size = new System.Drawing.Size(75, 49);
this.exitButton.TabIndex = 6;
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(351, 102);
this.Controls.Add(this.exitButton);
this.Controls.Add(this.generateButton);
this.Controls.Add(this.fithLabel);
this.Controls.Add(this.fourthLabel);
this.Controls.Add(this.thirdLabel);
this.Controls.Add(this.secondLabel);
this.Controls.Add(this.firstLabel);
this.Name = "Form1";
this.Text = "Lottery Numbers";
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private TextBox firstLabel;
private TextBox secondLabel;
private TextBox thirdLabel;
private TextBox fourthLabel;
private TextBox fithLabel;
private Button generateButton;
private Button exitButton;
}
}