117 lines
4.9 KiB
C#
Executable File
117 lines
4.9 KiB
C#
Executable File
namespace DriversLicenseExam_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.openFileButton = new System.Windows.Forms.Button();
|
|
this.exitButton = new System.Windows.Forms.Button();
|
|
this.groupBox1 = new System.Windows.Forms.GroupBox();
|
|
this.correctAnswersLabel = new System.Windows.Forms.Label();
|
|
this.feedbackLabel = new System.Windows.Forms.Label();
|
|
this.openFileDialog1 = new System.Windows.Forms.OpenFileDialog();
|
|
this.groupBox1.SuspendLayout();
|
|
this.SuspendLayout();
|
|
//
|
|
// openFileButton
|
|
//
|
|
this.openFileButton.Location = new System.Drawing.Point(12, 106);
|
|
this.openFileButton.Name = "openFileButton";
|
|
this.openFileButton.Size = new System.Drawing.Size(93, 23);
|
|
this.openFileButton.TabIndex = 0;
|
|
this.openFileButton.Text = "Open File";
|
|
this.openFileButton.UseVisualStyleBackColor = true;
|
|
this.openFileButton.Click += new System.EventHandler(this.openFileButton_Click);
|
|
//
|
|
// exitButton
|
|
//
|
|
this.exitButton.Location = new System.Drawing.Point(111, 106);
|
|
this.exitButton.Name = "exitButton";
|
|
this.exitButton.Size = new System.Drawing.Size(97, 23);
|
|
this.exitButton.TabIndex = 1;
|
|
this.exitButton.Text = "Exit";
|
|
this.exitButton.UseVisualStyleBackColor = true;
|
|
this.exitButton.Click += new System.EventHandler(this.exitButton_Click);
|
|
//
|
|
// groupBox1
|
|
//
|
|
this.groupBox1.Controls.Add(this.correctAnswersLabel);
|
|
this.groupBox1.Location = new System.Drawing.Point(12, 12);
|
|
this.groupBox1.Name = "groupBox1";
|
|
this.groupBox1.Size = new System.Drawing.Size(196, 54);
|
|
this.groupBox1.TabIndex = 2;
|
|
this.groupBox1.TabStop = false;
|
|
this.groupBox1.Text = "Total Score";
|
|
//
|
|
// correctAnswersLabel
|
|
//
|
|
this.correctAnswersLabel.Location = new System.Drawing.Point(6, 19);
|
|
this.correctAnswersLabel.Name = "correctAnswersLabel";
|
|
this.correctAnswersLabel.Size = new System.Drawing.Size(184, 26);
|
|
this.correctAnswersLabel.TabIndex = 0;
|
|
this.correctAnswersLabel.Text = " ??/20";
|
|
this.correctAnswersLabel.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
|
|
//
|
|
// feedbackLabel
|
|
//
|
|
this.feedbackLabel.Location = new System.Drawing.Point(12, 69);
|
|
this.feedbackLabel.Name = "feedbackLabel";
|
|
this.feedbackLabel.Size = new System.Drawing.Size(196, 34);
|
|
this.feedbackLabel.TabIndex = 3;
|
|
this.feedbackLabel.Text = "Please open a text file containing Letter answers. (A,B,C,D)";
|
|
this.feedbackLabel.TextAlign = System.Drawing.ContentAlignment.TopCenter;
|
|
//
|
|
// openFileDialog1
|
|
//
|
|
this.openFileDialog1.FileName = "openFileDialog1";
|
|
//
|
|
// Form1
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(216, 136);
|
|
this.Controls.Add(this.feedbackLabel);
|
|
this.Controls.Add(this.groupBox1);
|
|
this.Controls.Add(this.exitButton);
|
|
this.Controls.Add(this.openFileButton);
|
|
this.Name = "Form1";
|
|
this.Text = "Grading Tool - Caleb Fontenot";
|
|
this.groupBox1.ResumeLayout(false);
|
|
this.ResumeLayout(false);
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private Button openFileButton;
|
|
private Button exitButton;
|
|
private GroupBox groupBox1;
|
|
private Label correctAnswersLabel;
|
|
private Label feedbackLabel;
|
|
private OpenFileDialog openFileDialog1;
|
|
}
|
|
} |