Files
ASDV-C-Sharp/Student Sample Programs/Chap04/Secret Word/Secret Word/Form1.Designer.cs
2022-08-30 14:15:11 -05:00

99 lines
4.0 KiB
C#

namespace Secret_Word
{
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.checkButton = new System.Windows.Forms.Button();
this.promptLabel = new System.Windows.Forms.Label();
this.inputTextBox = new System.Windows.Forms.TextBox();
this.SuspendLayout();
//
// exitButton
//
this.exitButton.Location = new System.Drawing.Point(137, 82);
this.exitButton.Name = "exitButton";
this.exitButton.Size = new System.Drawing.Size(75, 36);
this.exitButton.TabIndex = 7;
this.exitButton.Text = "Exit";
this.exitButton.UseVisualStyleBackColor = true;
this.exitButton.Click += new System.EventHandler(this.exitButton_Click);
//
// checkButton
//
this.checkButton.Location = new System.Drawing.Point(56, 82);
this.checkButton.Name = "checkButton";
this.checkButton.Size = new System.Drawing.Size(75, 36);
this.checkButton.TabIndex = 6;
this.checkButton.Text = "Check the Word";
this.checkButton.UseVisualStyleBackColor = true;
this.checkButton.Click += new System.EventHandler(this.checkButton_Click);
//
// promptLabel
//
this.promptLabel.AutoSize = true;
this.promptLabel.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.promptLabel.Location = new System.Drawing.Point(53, 16);
this.promptLabel.Name = "promptLabel";
this.promptLabel.Size = new System.Drawing.Size(163, 16);
this.promptLabel.TabIndex = 4;
this.promptLabel.Text = "Enter the Secret Word.";
//
// inputTextBox
//
this.inputTextBox.Location = new System.Drawing.Point(56, 44);
this.inputTextBox.Name = "inputTextBox";
this.inputTextBox.Size = new System.Drawing.Size(156, 20);
this.inputTextBox.TabIndex = 8;
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(268, 136);
this.Controls.Add(this.inputTextBox);
this.Controls.Add(this.exitButton);
this.Controls.Add(this.checkButton);
this.Controls.Add(this.promptLabel);
this.Name = "Form1";
this.Text = "Secret Word";
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Button exitButton;
private System.Windows.Forms.Button checkButton;
private System.Windows.Forms.Label promptLabel;
private System.Windows.Forms.TextBox inputTextBox;
}
}