namespace WindowsFormsApp9 { partial class Form1 { /// /// 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); } #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.FlashCard = new System.Windows.Forms.RichTextBox(); this.Right_Button = new System.Windows.Forms.Button(); this.Wrong_Button = new System.Windows.Forms.Button(); this.label1 = new System.Windows.Forms.Label(); this.Score_TextBox = new System.Windows.Forms.TextBox(); this.progressBar1 = new System.Windows.Forms.ProgressBar(); this.label2 = new System.Windows.Forms.Label(); this.label3 = new System.Windows.Forms.Label(); this.History_TextBox = new System.Windows.Forms.TextBox(); this.SuspendLayout(); // // FlashCard // this.FlashCard.BackColor = System.Drawing.Color.Black; this.FlashCard.Cursor = System.Windows.Forms.Cursors.Hand; this.FlashCard.Font = new System.Drawing.Font("Microsoft Sans Serif", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.FlashCard.ForeColor = System.Drawing.Color.White; this.FlashCard.Location = new System.Drawing.Point(237, 12); this.FlashCard.Name = "FlashCard"; this.FlashCard.ReadOnly = true; this.FlashCard.Size = new System.Drawing.Size(838, 396); this.FlashCard.TabIndex = 0; this.FlashCard.Text = ""; this.FlashCard.Click += new System.EventHandler(this.FlashCard_Click); // // Right_Button // this.Right_Button.Cursor = System.Windows.Forms.Cursors.Hand; this.Right_Button.Location = new System.Drawing.Point(16, 150); this.Right_Button.Name = "Right_Button"; this.Right_Button.Size = new System.Drawing.Size(65, 65); this.Right_Button.TabIndex = 1; this.Right_Button.Image = Image.FromFile("green_check_mark.png"); // This assumes the green check mark file is in the same directory as the executable this.Right_Button.UseVisualStyleBackColor = true; this.Right_Button.Click += new System.EventHandler(this.Response_Button); // // Wrong_Button // this.Wrong_Button.Cursor = System.Windows.Forms.Cursors.Hand; this.Wrong_Button.Location = new System.Drawing.Point(157, 150); this.Wrong_Button.Name = "Wrong_Button"; this.Wrong_Button.Size = new System.Drawing.Size(65, 65); this.Wrong_Button.TabIndex = 2; this.Right_Button.Image = Image.FromFile("red_x_mark.png"); // This assumes the red X mark file is in the same directory as the executable this.Wrong_Button.UseVisualStyleBackColor = true; this.Wrong_Button.Click += new System.EventHandler(this.Response_Button); // // label1 // this.label1.AutoSize = true; this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label1.ForeColor = System.Drawing.Color.White; this.label1.Location = new System.Drawing.Point(8, 63); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(189, 20); this.label1.TabIndex = 3; this.label1.Text = "Score for Current Quiz"; // // Score_TextBox // this.Score_TextBox.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.Score_TextBox.ForeColor = System.Drawing.Color.Black; this.Score_TextBox.Location = new System.Drawing.Point(12, 86); this.Score_TextBox.Name = "Score_TextBox"; this.Score_TextBox.Size = new System.Drawing.Size(210, 22); this.Score_TextBox.TabIndex = 4; // // progressBar1 // this.progressBar1.Location = new System.Drawing.Point(12, 32); this.progressBar1.Maximum = 10; this.progressBar1.Name = "progressBar1"; this.progressBar1.Size = new System.Drawing.Size(210, 23); this.progressBar1.Step = 1; this.progressBar1.TabIndex = 5; // // label2 // this.label2.AutoSize = true; this.label2.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label2.ForeColor = System.Drawing.Color.White; this.label2.Location = new System.Drawing.Point(12, 9); this.label2.Name = "label2"; this.label2.Size = new System.Drawing.Size(210, 20); this.label2.TabIndex = 6; this.label2.Text = "Current Quiz Progression"; // // label3 // this.label3.AutoSize = true; this.label3.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label3.ForeColor = System.Drawing.Color.White; this.label3.Location = new System.Drawing.Point(12, 388); this.label3.Name = "label3"; this.label3.Size = new System.Drawing.Size(106, 20); this.label3.TabIndex = 7; this.label3.Text = "Quiz History"; // // History_TextBox // this.History_TextBox.Location = new System.Drawing.Point(13, 412); this.History_TextBox.Name = "History_TextBox"; this.History_TextBox.ReadOnly = true; this.History_TextBox.Size = new System.Drawing.Size(1062, 20); this.History_TextBox.TabIndex = 8; // // Form1 // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.BackColor = System.Drawing.Color.Black; this.ClientSize = new System.Drawing.Size(1087, 625); this.Controls.Add(this.History_TextBox); this.Controls.Add(this.label3); this.Controls.Add(this.label2); this.Controls.Add(this.progressBar1); this.Controls.Add(this.Score_TextBox); this.Controls.Add(this.label1); this.Controls.Add(this.Wrong_Button); this.Controls.Add(this.Right_Button); this.Controls.Add(this.FlashCard); this.Name = "Form1"; this.Text = "Form1"; this.ResumeLayout(false); this.PerformLayout(); } #endregion private System.Windows.Forms.RichTextBox FlashCard; private System.Windows.Forms.Button Right_Button; private System.Windows.Forms.Button Wrong_Button; private System.Windows.Forms.Label label1; private System.Windows.Forms.TextBox Score_TextBox; private System.Windows.Forms.ProgressBar progressBar1; private System.Windows.Forms.Label label2; private System.Windows.Forms.Label label3; private System.Windows.Forms.TextBox History_TextBox; } }