namespace GNAT { partial class StudentTestList { /// /// Required designer variable. /// private System.ComponentModel.IContainer components = null; /// /// Clean up any resources being used. /// /// true if managed resources should be disposed; otherwise, false. protected override void Dispose(bool disposing) { if (disposing && (components != null)) { components.Dispose(); } base.Dispose(disposing); Program.mainForm.Close(); } #region Windows Form Designer generated code /// /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// private void InitializeComponent() { this.label1 = new System.Windows.Forms.Label(); this.dataGridView1 = new System.Windows.Forms.DataGridView(); this.TestName = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.Course = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.Instructor = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.TimeLimit = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.Due = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.button1 = new System.Windows.Forms.Button(); this.button2 = new System.Windows.Forms.Button(); ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).BeginInit(); this.SuspendLayout(); // // label1 // this.label1.AutoSize = true; this.label1.Location = new System.Drawing.Point(29, 17); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(82, 13); this.label1.TabIndex = 0; this.label1.Text = "Available Tests:"; // // dataGridView1 // this.dataGridView1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize; this.dataGridView1.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] { this.TestName, this.Course, this.Instructor, this.TimeLimit, this.Due}); this.dataGridView1.Location = new System.Drawing.Point(32, 33); this.dataGridView1.Name = "dataGridView1"; this.dataGridView1.Size = new System.Drawing.Size(542, 193); this.dataGridView1.TabIndex = 1; this.dataGridView1.CellContentClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dataGridView1_CellContentClick); // // TestName // this.TestName.HeaderText = "Test Name"; this.TestName.Name = "TestName"; // // Course // this.Course.HeaderText = "Course"; this.Course.Name = "Course"; // // Instructor // this.Instructor.HeaderText = "Instructor"; this.Instructor.Name = "Instructor"; // // TimeLimit // this.TimeLimit.HeaderText = "Time Limit"; this.TimeLimit.Name = "TimeLimit"; // // Due // this.Due.HeaderText = "Due"; this.Due.Name = "Due"; // // button1 // this.button1.Location = new System.Drawing.Point(203, 231); this.button1.Name = "button1"; this.button1.Size = new System.Drawing.Size(75, 23); this.button1.TabIndex = 2; this.button1.Text = "Submit"; this.button1.UseVisualStyleBackColor = true; // // button2 // this.button2.Location = new System.Drawing.Point(298, 231); this.button2.Name = "button2"; this.button2.Size = new System.Drawing.Size(75, 23); this.button2.TabIndex = 3; this.button2.Text = "Cancel"; this.button2.UseVisualStyleBackColor = true; // // StudentTestList // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(599, 266); this.Controls.Add(this.button2); this.Controls.Add(this.button1); this.Controls.Add(this.dataGridView1); this.Controls.Add(this.label1); this.Name = "StudentTestList"; this.Text = "GNAT: Available Tests"; ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).EndInit(); this.ResumeLayout(false); this.PerformLayout(); } #endregion private System.Windows.Forms.Label label1; private System.Windows.Forms.DataGridView dataGridView1; private System.Windows.Forms.DataGridViewTextBoxColumn TestName; private System.Windows.Forms.DataGridViewTextBoxColumn Course; private System.Windows.Forms.DataGridViewTextBoxColumn Instructor; private System.Windows.Forms.DataGridViewTextBoxColumn TimeLimit; private System.Windows.Forms.DataGridViewTextBoxColumn Due; private System.Windows.Forms.Button button1; private System.Windows.Forms.Button button2; } }