Update MP4

This commit is contained in:
2022-11-17 17:00:33 -06:00
parent 1fdcdabcbe
commit 2be3b984a3
49 changed files with 329 additions and 128 deletions

View File

@@ -31,13 +31,13 @@
this.groupBox1 = new System.Windows.Forms.GroupBox();
this.testScoresListBox = new System.Windows.Forms.ListBox();
this.label1 = new System.Windows.Forms.Label();
this.textBox1 = new System.Windows.Forms.TextBox();
this.highestScoreTextBox = new System.Windows.Forms.TextBox();
this.label2 = new System.Windows.Forms.Label();
this.textBox2 = new System.Windows.Forms.TextBox();
this.textBox3 = new System.Windows.Forms.TextBox();
this.lowestScoreTextBox = new System.Windows.Forms.TextBox();
this.averageScoreTextBox = new System.Windows.Forms.TextBox();
this.label3 = new System.Windows.Forms.Label();
this.button1 = new System.Windows.Forms.Button();
this.button2 = new System.Windows.Forms.Button();
this.getScoresButton = new System.Windows.Forms.Button();
this.exitButton = new System.Windows.Forms.Button();
this.groupBox1.SuspendLayout();
this.SuspendLayout();
//
@@ -49,7 +49,7 @@
this.groupBox1.Size = new System.Drawing.Size(199, 181);
this.groupBox1.TabIndex = 0;
this.groupBox1.TabStop = false;
this.groupBox1.Text = "groupBox1";
this.groupBox1.Text = "Test Scores";
//
// testScoresListBox
//
@@ -69,12 +69,13 @@
this.label1.TabIndex = 1;
this.label1.Text = "Highest Score:";
//
// textBox1
// highestScoreTextBox
//
this.textBox1.Location = new System.Drawing.Point(307, 37);
this.textBox1.Name = "textBox1";
this.textBox1.Size = new System.Drawing.Size(126, 23);
this.textBox1.TabIndex = 2;
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
//
@@ -85,19 +86,21 @@
this.label2.TabIndex = 3;
this.label2.Text = "Lowest Score:";
//
// textBox2
// lowestScoreTextBox
//
this.textBox2.Location = new System.Drawing.Point(307, 80);
this.textBox2.Name = "textBox2";
this.textBox2.Size = new System.Drawing.Size(126, 23);
this.textBox2.TabIndex = 4;
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;
//
// textBox3
// averageScoreTextBox
//
this.textBox3.Location = new System.Drawing.Point(307, 120);
this.textBox3.Name = "textBox3";
this.textBox3.Size = new System.Drawing.Size(126, 23);
this.textBox3.TabIndex = 5;
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
//
@@ -108,38 +111,38 @@
this.label3.TabIndex = 6;
this.label3.Text = "Average Score:";
//
// button1
// getScoresButton
//
this.button1.Location = new System.Drawing.Point(136, 213);
this.button1.Name = "button1";
this.button1.Size = new System.Drawing.Size(75, 23);
this.button1.TabIndex = 7;
this.button1.Text = "Get Scores";
this.button1.UseVisualStyleBackColor = true;
this.button1.Click += new System.EventHandler(this.button1_Click);
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);
//
// button2
// exitButton
//
this.button2.Location = new System.Drawing.Point(218, 213);
this.button2.Name = "button2";
this.button2.Size = new System.Drawing.Size(75, 23);
this.button2.TabIndex = 8;
this.button2.Text = "Exit";
this.button2.UseVisualStyleBackColor = true;
this.button2.Click += new System.EventHandler(this.button2_Click);
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.button2);
this.Controls.Add(this.button1);
this.Controls.Add(this.exitButton);
this.Controls.Add(this.getScoresButton);
this.Controls.Add(this.label3);
this.Controls.Add(this.textBox3);
this.Controls.Add(this.textBox2);
this.Controls.Add(this.averageScoreTextBox);
this.Controls.Add(this.lowestScoreTextBox);
this.Controls.Add(this.label2);
this.Controls.Add(this.textBox1);
this.Controls.Add(this.highestScoreTextBox);
this.Controls.Add(this.label1);
this.Controls.Add(this.groupBox1);
this.Name = "Form1";
@@ -155,12 +158,12 @@
private GroupBox groupBox1;
private ListBox testScoresListBox;
private Label label1;
private TextBox textBox1;
private TextBox highestScoreTextBox;
private Label label2;
private TextBox textBox2;
private TextBox textBox3;
private TextBox lowestScoreTextBox;
private TextBox averageScoreTextBox;
private Label label3;
private Button button1;
private Button button2;
private Button getScoresButton;
private Button exitButton;
}
}