Files
2022-08-30 14:15:11 -05:00

169 lines
8.1 KiB
C#

namespace Test_Average
{
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.averageScoreDescriptionLabel = new System.Windows.Forms.Label();
this.lowScoreDescriptionLabel = new System.Windows.Forms.Label();
this.highScoreDescriptionLabel = new System.Windows.Forms.Label();
this.testScoresListBox = new System.Windows.Forms.ListBox();
this.testScoresDescriptionLabel = new System.Windows.Forms.Label();
this.highScoreLabel = new System.Windows.Forms.Label();
this.lowScoreLabel = new System.Windows.Forms.Label();
this.averageScoreLabel = new System.Windows.Forms.Label();
this.getScoresButton = new System.Windows.Forms.Button();
this.exitButton = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// averageScoreDescriptionLabel
//
this.averageScoreDescriptionLabel.AutoSize = true;
this.averageScoreDescriptionLabel.Location = new System.Drawing.Point(136, 106);
this.averageScoreDescriptionLabel.Name = "averageScoreDescriptionLabel";
this.averageScoreDescriptionLabel.Size = new System.Drawing.Size(78, 13);
this.averageScoreDescriptionLabel.TabIndex = 9;
this.averageScoreDescriptionLabel.Text = "Average Score";
//
// lowScoreDescriptionLabel
//
this.lowScoreDescriptionLabel.AutoSize = true;
this.lowScoreDescriptionLabel.Location = new System.Drawing.Point(142, 70);
this.lowScoreDescriptionLabel.Name = "lowScoreDescriptionLabel";
this.lowScoreDescriptionLabel.Size = new System.Drawing.Size(72, 13);
this.lowScoreDescriptionLabel.TabIndex = 8;
this.lowScoreDescriptionLabel.Text = "Lowest Score";
//
// highScoreDescriptionLabel
//
this.highScoreDescriptionLabel.AutoSize = true;
this.highScoreDescriptionLabel.Location = new System.Drawing.Point(140, 35);
this.highScoreDescriptionLabel.Name = "highScoreDescriptionLabel";
this.highScoreDescriptionLabel.Size = new System.Drawing.Size(74, 13);
this.highScoreDescriptionLabel.TabIndex = 7;
this.highScoreDescriptionLabel.Text = "Highest Score";
//
// testScoresListBox
//
this.testScoresListBox.FormattingEnabled = true;
this.testScoresListBox.Location = new System.Drawing.Point(12, 29);
this.testScoresListBox.Name = "testScoresListBox";
this.testScoresListBox.Size = new System.Drawing.Size(120, 95);
this.testScoresListBox.TabIndex = 6;
//
// testScoresDescriptionLabel
//
this.testScoresDescriptionLabel.AutoSize = true;
this.testScoresDescriptionLabel.Location = new System.Drawing.Point(12, 13);
this.testScoresDescriptionLabel.Name = "testScoresDescriptionLabel";
this.testScoresDescriptionLabel.Size = new System.Drawing.Size(64, 13);
this.testScoresDescriptionLabel.TabIndex = 5;
this.testScoresDescriptionLabel.Text = "Test Scores";
//
// highScoreLabel
//
this.highScoreLabel.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.highScoreLabel.Location = new System.Drawing.Point(218, 29);
this.highScoreLabel.Name = "highScoreLabel";
this.highScoreLabel.Size = new System.Drawing.Size(100, 23);
this.highScoreLabel.TabIndex = 10;
this.highScoreLabel.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
//
// lowScoreLabel
//
this.lowScoreLabel.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.lowScoreLabel.Location = new System.Drawing.Point(218, 65);
this.lowScoreLabel.Name = "lowScoreLabel";
this.lowScoreLabel.Size = new System.Drawing.Size(100, 23);
this.lowScoreLabel.TabIndex = 11;
this.lowScoreLabel.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
//
// averageScoreLabel
//
this.averageScoreLabel.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.averageScoreLabel.Location = new System.Drawing.Point(218, 101);
this.averageScoreLabel.Name = "averageScoreLabel";
this.averageScoreLabel.Size = new System.Drawing.Size(100, 23);
this.averageScoreLabel.TabIndex = 12;
this.averageScoreLabel.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
//
// getScoresButton
//
this.getScoresButton.Location = new System.Drawing.Point(90, 149);
this.getScoresButton.Name = "getScoresButton";
this.getScoresButton.Size = new System.Drawing.Size(75, 23);
this.getScoresButton.TabIndex = 13;
this.getScoresButton.Text = "Get Scores";
this.getScoresButton.UseVisualStyleBackColor = true;
//
// exitButton
//
this.exitButton.Location = new System.Drawing.Point(171, 149);
this.exitButton.Name = "exitButton";
this.exitButton.Size = new System.Drawing.Size(75, 23);
this.exitButton.TabIndex = 14;
this.exitButton.Text = "Exit";
this.exitButton.UseVisualStyleBackColor = true;
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(336, 187);
this.Controls.Add(this.exitButton);
this.Controls.Add(this.getScoresButton);
this.Controls.Add(this.averageScoreLabel);
this.Controls.Add(this.lowScoreLabel);
this.Controls.Add(this.highScoreLabel);
this.Controls.Add(this.averageScoreDescriptionLabel);
this.Controls.Add(this.lowScoreDescriptionLabel);
this.Controls.Add(this.highScoreDescriptionLabel);
this.Controls.Add(this.testScoresListBox);
this.Controls.Add(this.testScoresDescriptionLabel);
this.Name = "Form1";
this.Text = "Test Average";
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Label averageScoreDescriptionLabel;
private System.Windows.Forms.Label lowScoreDescriptionLabel;
private System.Windows.Forms.Label highScoreDescriptionLabel;
private System.Windows.Forms.ListBox testScoresListBox;
private System.Windows.Forms.Label testScoresDescriptionLabel;
private System.Windows.Forms.Label highScoreLabel;
private System.Windows.Forms.Label lowScoreLabel;
private System.Windows.Forms.Label averageScoreLabel;
private System.Windows.Forms.Button getScoresButton;
private System.Windows.Forms.Button exitButton;
}
}