169 lines
7.2 KiB
C#
Executable File
169 lines
7.2 KiB
C#
Executable File
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();
|
|
this.highestScoreTextBox = new System.Windows.Forms.TextBox();
|
|
this.label2 = new System.Windows.Forms.Label();
|
|
this.lowestScoreTextBox = new System.Windows.Forms.TextBox();
|
|
this.averageScoreTextBox = new System.Windows.Forms.TextBox();
|
|
this.label3 = new System.Windows.Forms.Label();
|
|
this.getScoresButton = new System.Windows.Forms.Button();
|
|
this.exitButton = new System.Windows.Forms.Button();
|
|
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;
|
|
this.groupBox1.Text = "Test Scores";
|
|
//
|
|
// 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:";
|
|
//
|
|
// highestScoreTextBox
|
|
//
|
|
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;
|
|
//
|
|
// 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:";
|
|
//
|
|
// lowestScoreTextBox
|
|
//
|
|
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;
|
|
//
|
|
// averageScoreTextBox
|
|
//
|
|
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;
|
|
//
|
|
// 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:";
|
|
//
|
|
// getScoresButton
|
|
//
|
|
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);
|
|
//
|
|
// exitButton
|
|
//
|
|
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);
|
|
//
|
|
// Form1
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(445, 248);
|
|
this.Controls.Add(this.exitButton);
|
|
this.Controls.Add(this.getScoresButton);
|
|
this.Controls.Add(this.label3);
|
|
this.Controls.Add(this.averageScoreTextBox);
|
|
this.Controls.Add(this.lowestScoreTextBox);
|
|
this.Controls.Add(this.label2);
|
|
this.Controls.Add(this.highestScoreTextBox);
|
|
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;
|
|
private TextBox highestScoreTextBox;
|
|
private Label label2;
|
|
private TextBox lowestScoreTextBox;
|
|
private TextBox averageScoreTextBox;
|
|
private Label label3;
|
|
private Button getScoresButton;
|
|
private Button exitButton;
|
|
}
|
|
} |