namespace SecretNumber
{
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.lblExplanation = new System.Windows.Forms.Label();
this.btnGuess = new System.Windows.Forms.Button();
this.txtGuess = new System.Windows.Forms.TextBox();
this.lstGuesses = new System.Windows.Forms.ListBox();
this.label2 = new System.Windows.Forms.Label();
this.lblGuesses = new System.Windows.Forms.Label();
this.SuspendLayout();
//
// lblExplanation
//
this.lblExplanation.AutoSize = true;
this.lblExplanation.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.lblExplanation.Location = new System.Drawing.Point(12, 9);
this.lblExplanation.Name = "lblExplanation";
this.lblExplanation.Size = new System.Drawing.Size(437, 58);
this.lblExplanation.TabIndex = 1;
this.lblExplanation.Text = "I am thinking of a number between 1 and 50\r\nCan you guess it?\r\n";
//
// btnGuess
//
this.btnGuess.AutoSize = true;
this.btnGuess.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.btnGuess.Location = new System.Drawing.Point(268, 98);
this.btnGuess.Name = "btnGuess";
this.btnGuess.Size = new System.Drawing.Size(369, 40);
this.btnGuess.TabIndex = 2;
this.btnGuess.Text = "Enter a number and then press here";
this.btnGuess.UseVisualStyleBackColor = true;
this.btnGuess.Click += new System.EventHandler(this.btnGuess_Click);
//
// txtGuess
//
this.txtGuess.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.txtGuess.Location = new System.Drawing.Point(417, 158);
this.txtGuess.Multiline = true;
this.txtGuess.Name = "txtGuess";
this.txtGuess.Size = new System.Drawing.Size(46, 43);
this.txtGuess.TabIndex = 0;
//
// lstGuesses
//
this.lstGuesses.Font = new System.Drawing.Font("Comic Sans MS", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.lstGuesses.FormattingEnabled = true;
this.lstGuesses.ItemHeight = 29;
this.lstGuesses.Location = new System.Drawing.Point(551, 211);
this.lstGuesses.Name = "lstGuesses";
this.lstGuesses.Size = new System.Drawing.Size(50, 149);
this.lstGuesses.TabIndex = 5;
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(509, 188);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(92, 13);
this.label2.TabIndex = 6;
this.label2.Text = "Previous Guesses";
//
// lblGuesses
//
this.lblGuesses.Font = new System.Drawing.Font("Comic Sans MS", 15.75F);
this.lblGuesses.Location = new System.Drawing.Point(12, 351);
this.lblGuesses.Name = "lblGuesses";
this.lblGuesses.Size = new System.Drawing.Size(219, 77);
this.lblGuesses.TabIndex = 7;
this.lblGuesses.Text = "Guesses made: 0";
this.lblGuesses.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
//
// Form1
//
this.AcceptButton = this.btnGuess;
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(658, 437);
this.Controls.Add(this.lblGuesses);
this.Controls.Add(this.label2);
this.Controls.Add(this.lstGuesses);
this.Controls.Add(this.txtGuess);
this.Controls.Add(this.btnGuess);
this.Controls.Add(this.lblExplanation);
this.Name = "Form1";
this.Text = "Form1";
this.Load += new System.EventHandler(this.Form1_Load);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Label lblExplanation;
private System.Windows.Forms.Button btnGuess;
private System.Windows.Forms.TextBox txtGuess;
private System.Windows.Forms.ListBox lstGuesses;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.Label lblGuesses;
}
}