Lab 2
This commit is contained in:
121
Student Sample Programs/Chap04/Grader2/Grader2/Form1.Designer.cs
generated
Normal file
121
Student Sample Programs/Chap04/Grader2/Grader2/Form1.Designer.cs
generated
Normal file
@@ -0,0 +1,121 @@
|
||||
namespace Grader2
|
||||
{
|
||||
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.exitButton = new System.Windows.Forms.Button();
|
||||
this.determineGradeButton = new System.Windows.Forms.Button();
|
||||
this.gradeLabel = new System.Windows.Forms.Label();
|
||||
this.outputDescriptionLabel = new System.Windows.Forms.Label();
|
||||
this.testScoreTextBox = new System.Windows.Forms.TextBox();
|
||||
this.testScorePromptLabel = new System.Windows.Forms.Label();
|
||||
this.SuspendLayout();
|
||||
//
|
||||
// exitButton
|
||||
//
|
||||
this.exitButton.Location = new System.Drawing.Point(126, 86);
|
||||
this.exitButton.Name = "exitButton";
|
||||
this.exitButton.Size = new System.Drawing.Size(75, 36);
|
||||
this.exitButton.TabIndex = 11;
|
||||
this.exitButton.Text = "Exit";
|
||||
this.exitButton.UseVisualStyleBackColor = true;
|
||||
this.exitButton.Click += new System.EventHandler(this.exitButton_Click);
|
||||
//
|
||||
// determineGradeButton
|
||||
//
|
||||
this.determineGradeButton.Location = new System.Drawing.Point(45, 86);
|
||||
this.determineGradeButton.Name = "determineGradeButton";
|
||||
this.determineGradeButton.Size = new System.Drawing.Size(75, 36);
|
||||
this.determineGradeButton.TabIndex = 10;
|
||||
this.determineGradeButton.Text = "Determine Grade";
|
||||
this.determineGradeButton.UseVisualStyleBackColor = true;
|
||||
this.determineGradeButton.Click += new System.EventHandler(this.determineGradeButton_Click);
|
||||
//
|
||||
// gradeLabel
|
||||
//
|
||||
this.gradeLabel.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
|
||||
this.gradeLabel.Location = new System.Drawing.Point(130, 42);
|
||||
this.gradeLabel.Name = "gradeLabel";
|
||||
this.gradeLabel.Size = new System.Drawing.Size(100, 23);
|
||||
this.gradeLabel.TabIndex = 9;
|
||||
this.gradeLabel.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
|
||||
//
|
||||
// outputDescriptionLabel
|
||||
//
|
||||
this.outputDescriptionLabel.AutoSize = true;
|
||||
this.outputDescriptionLabel.Location = new System.Drawing.Point(62, 47);
|
||||
this.outputDescriptionLabel.Name = "outputDescriptionLabel";
|
||||
this.outputDescriptionLabel.Size = new System.Drawing.Size(62, 13);
|
||||
this.outputDescriptionLabel.TabIndex = 8;
|
||||
this.outputDescriptionLabel.Text = "Your grade:";
|
||||
//
|
||||
// testScoreTextBox
|
||||
//
|
||||
this.testScoreTextBox.Location = new System.Drawing.Point(130, 10);
|
||||
this.testScoreTextBox.Name = "testScoreTextBox";
|
||||
this.testScoreTextBox.Size = new System.Drawing.Size(100, 20);
|
||||
this.testScoreTextBox.TabIndex = 7;
|
||||
//
|
||||
// testScorePromptLabel
|
||||
//
|
||||
this.testScorePromptLabel.AutoSize = true;
|
||||
this.testScorePromptLabel.Location = new System.Drawing.Point(17, 13);
|
||||
this.testScorePromptLabel.Name = "testScorePromptLabel";
|
||||
this.testScorePromptLabel.Size = new System.Drawing.Size(107, 13);
|
||||
this.testScorePromptLabel.TabIndex = 6;
|
||||
this.testScorePromptLabel.Text = "Enter your test score:";
|
||||
//
|
||||
// Form1
|
||||
//
|
||||
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
||||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
||||
this.ClientSize = new System.Drawing.Size(247, 133);
|
||||
this.Controls.Add(this.exitButton);
|
||||
this.Controls.Add(this.determineGradeButton);
|
||||
this.Controls.Add(this.gradeLabel);
|
||||
this.Controls.Add(this.outputDescriptionLabel);
|
||||
this.Controls.Add(this.testScoreTextBox);
|
||||
this.Controls.Add(this.testScorePromptLabel);
|
||||
this.Name = "Form1";
|
||||
this.Text = "Grader";
|
||||
this.ResumeLayout(false);
|
||||
this.PerformLayout();
|
||||
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
private System.Windows.Forms.Button exitButton;
|
||||
private System.Windows.Forms.Button determineGradeButton;
|
||||
private System.Windows.Forms.Label gradeLabel;
|
||||
private System.Windows.Forms.Label outputDescriptionLabel;
|
||||
private System.Windows.Forms.TextBox testScoreTextBox;
|
||||
private System.Windows.Forms.Label testScorePromptLabel;
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user