Files
ASDV-C-Sharp/Student Sample Programs/Chap02/Presidential Trivia/Presidential Trivia/Form1.Designer.cs
2022-08-30 14:15:11 -05:00

88 lines
3.8 KiB
C#

namespace Presidential_Trivia
{
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.questionLabel = new System.Windows.Forms.Label();
this.answerLabel = new System.Windows.Forms.Label();
this.showAnswerButton = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// questionLabel
//
this.questionLabel.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.questionLabel.Location = new System.Drawing.Point(12, 19);
this.questionLabel.Name = "questionLabel";
this.questionLabel.Size = new System.Drawing.Size(260, 38);
this.questionLabel.TabIndex = 0;
this.questionLabel.Text = "What former U.S. president is known for going on an African safari?";
this.questionLabel.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
//
// answerLabel
//
this.answerLabel.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.answerLabel.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.answerLabel.Location = new System.Drawing.Point(12, 77);
this.answerLabel.Name = "answerLabel";
this.answerLabel.Size = new System.Drawing.Size(260, 38);
this.answerLabel.TabIndex = 1;
this.answerLabel.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
//
// showAnswerButton
//
this.showAnswerButton.Location = new System.Drawing.Point(88, 135);
this.showAnswerButton.Name = "showAnswerButton";
this.showAnswerButton.Size = new System.Drawing.Size(110, 23);
this.showAnswerButton.TabIndex = 2;
this.showAnswerButton.Text = "Show the Answer";
this.showAnswerButton.UseVisualStyleBackColor = true;
this.showAnswerButton.Click += new System.EventHandler(this.showAnswerButton_Click);
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(284, 177);
this.Controls.Add(this.showAnswerButton);
this.Controls.Add(this.answerLabel);
this.Controls.Add(this.questionLabel);
this.Name = "Form1";
this.Text = "Presidential Trivia";
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.Label questionLabel;
private System.Windows.Forms.Label answerLabel;
private System.Windows.Forms.Button showAnswerButton;
}
}