ASDV-C-Sharp/lab7_1/lab7_2_CalebFontenot/Form1.Designer.cs

169 lines
7.2 KiB
C#

2022-11-17 14:45:04 +07:00
namespace lab7_2_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.testScoresListBox = new System.Windows.Forms.ListBox();
this.label1 = new System.Windows.Forms.Label();
2022-11-17 17:00:33 +07:00
this.highestScoreTextBox = new System.Windows.Forms.TextBox();
2022-11-17 14:45:04 +07:00
this.label2 = new System.Windows.Forms.Label();
2022-11-17 17:00:33 +07:00
this.lowestScoreTextBox = new System.Windows.Forms.TextBox();
this.averageScoreTextBox = new System.Windows.Forms.TextBox();
2022-11-17 14:45:04 +07:00
this.label3 = new System.Windows.Forms.Label();
2022-11-17 17:00:33 +07:00
this.getScoresButton = new System.Windows.Forms.Button();
this.exitButton = new System.Windows.Forms.Button();
2022-11-17 14:45:04 +07:00
this.groupBox1.SuspendLayout();
this.SuspendLayout();
//
// groupBox1
//
this.groupBox1.Controls.Add(this.testScoresListBox);
this.groupBox1.Location = new System.Drawing.Point(12, 12);
this.groupBox1.Name = "groupBox1";
this.groupBox1.Size = new System.Drawing.Size(199, 181);
this.groupBox1.TabIndex = 0;
this.groupBox1.TabStop = false;
2022-11-17 17:00:33 +07:00
this.groupBox1.Text = "Test Scores";
2022-11-17 14:45:04 +07:00
//
// testScoresListBox
//
this.testScoresListBox.FormattingEnabled = true;
this.testScoresListBox.ItemHeight = 15;
this.testScoresListBox.Location = new System.Drawing.Point(6, 22);
this.testScoresListBox.Name = "testScoresListBox";
this.testScoresListBox.Size = new System.Drawing.Size(187, 154);
this.testScoresListBox.TabIndex = 0;
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(218, 40);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(83, 15);
this.label1.TabIndex = 1;
this.label1.Text = "Highest Score:";
//
2022-11-17 17:00:33 +07:00
// highestScoreTextBox
2022-11-17 14:45:04 +07:00
//
2022-11-17 17:00:33 +07:00
this.highestScoreTextBox.Location = new System.Drawing.Point(307, 37);
this.highestScoreTextBox.Name = "highestScoreTextBox";
this.highestScoreTextBox.ReadOnly = true;
this.highestScoreTextBox.Size = new System.Drawing.Size(126, 23);
this.highestScoreTextBox.TabIndex = 2;
2022-11-17 14:45:04 +07:00
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(222, 83);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(79, 15);
this.label2.TabIndex = 3;
this.label2.Text = "Lowest Score:";
//
2022-11-17 17:00:33 +07:00
// lowestScoreTextBox
2022-11-17 14:45:04 +07:00
//
2022-11-17 17:00:33 +07:00
this.lowestScoreTextBox.Location = new System.Drawing.Point(307, 80);
this.lowestScoreTextBox.Name = "lowestScoreTextBox";
this.lowestScoreTextBox.ReadOnly = true;
this.lowestScoreTextBox.Size = new System.Drawing.Size(126, 23);
this.lowestScoreTextBox.TabIndex = 4;
2022-11-17 14:45:04 +07:00
//
2022-11-17 17:00:33 +07:00
// averageScoreTextBox
2022-11-17 14:45:04 +07:00
//
2022-11-17 17:00:33 +07:00
this.averageScoreTextBox.Location = new System.Drawing.Point(307, 120);
this.averageScoreTextBox.Name = "averageScoreTextBox";
this.averageScoreTextBox.ReadOnly = true;
this.averageScoreTextBox.Size = new System.Drawing.Size(126, 23);
this.averageScoreTextBox.TabIndex = 5;
2022-11-17 14:45:04 +07:00
//
// label3
//
this.label3.AutoSize = true;
this.label3.Location = new System.Drawing.Point(218, 123);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(85, 15);
this.label3.TabIndex = 6;
this.label3.Text = "Average Score:";
//
2022-11-17 17:00:33 +07:00
// getScoresButton
2022-11-17 14:45:04 +07:00
//
2022-11-17 17:00:33 +07:00
this.getScoresButton.Location = new System.Drawing.Point(136, 213);
this.getScoresButton.Name = "getScoresButton";
this.getScoresButton.Size = new System.Drawing.Size(75, 23);
this.getScoresButton.TabIndex = 7;
this.getScoresButton.Text = "Get Scores";
this.getScoresButton.UseVisualStyleBackColor = true;
this.getScoresButton.Click += new System.EventHandler(this.getScoresButton_Click);
2022-11-17 14:45:04 +07:00
//
2022-11-17 17:00:33 +07:00
// exitButton
2022-11-17 14:45:04 +07:00
//
2022-11-17 17:00:33 +07:00
this.exitButton.Location = new System.Drawing.Point(218, 213);
this.exitButton.Name = "exitButton";
this.exitButton.Size = new System.Drawing.Size(75, 23);
this.exitButton.TabIndex = 8;
this.exitButton.Text = "Exit";
this.exitButton.UseVisualStyleBackColor = true;
this.exitButton.Click += new System.EventHandler(this.exitButton_Click);
2022-11-17 14:45:04 +07:00
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(445, 248);
2022-11-17 17:00:33 +07:00
this.Controls.Add(this.exitButton);
this.Controls.Add(this.getScoresButton);
2022-11-17 14:45:04 +07:00
this.Controls.Add(this.label3);
2022-11-17 17:00:33 +07:00
this.Controls.Add(this.averageScoreTextBox);
this.Controls.Add(this.lowestScoreTextBox);
2022-11-17 14:45:04 +07:00
this.Controls.Add(this.label2);
2022-11-17 17:00:33 +07:00
this.Controls.Add(this.highestScoreTextBox);
2022-11-17 14:45:04 +07:00
this.Controls.Add(this.label1);
this.Controls.Add(this.groupBox1);
this.Name = "Form1";
this.Text = "Form1";
this.groupBox1.ResumeLayout(false);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private GroupBox groupBox1;
private ListBox testScoresListBox;
private Label label1;
2022-11-17 17:00:33 +07:00
private TextBox highestScoreTextBox;
2022-11-17 14:45:04 +07:00
private Label label2;
2022-11-17 17:00:33 +07:00
private TextBox lowestScoreTextBox;
private TextBox averageScoreTextBox;
2022-11-17 14:45:04 +07:00
private Label label3;
2022-11-17 17:00:33 +07:00
private Button getScoresButton;
private Button exitButton;
2022-11-17 14:45:04 +07:00
}
}