135 lines
5.1 KiB
C#
135 lines
5.1 KiB
C#
namespace qtc_net_client_2.Forms
|
|
{
|
|
partial class GuessTheNumber
|
|
{
|
|
/// <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()
|
|
{
|
|
lblHeader = new Label();
|
|
nudNumberGuess = new NumericUpDown();
|
|
btnGuess = new Button();
|
|
lblPrizeInfo = new Label();
|
|
lblResult = new Label();
|
|
btnClaimPrize = new Button();
|
|
((System.ComponentModel.ISupportInitialize)nudNumberGuess).BeginInit();
|
|
SuspendLayout();
|
|
//
|
|
// lblHeader
|
|
//
|
|
lblHeader.Font = new Font("Segoe UI", 15F, FontStyle.Bold);
|
|
lblHeader.Location = new Point(12, 9);
|
|
lblHeader.Name = "lblHeader";
|
|
lblHeader.Size = new Size(486, 62);
|
|
lblHeader.TabIndex = 0;
|
|
lblHeader.Text = "Please Wait, Getting Number...";
|
|
lblHeader.TextAlign = ContentAlignment.MiddleCenter;
|
|
//
|
|
// nudNumberGuess
|
|
//
|
|
nudNumberGuess.Location = new Point(190, 127);
|
|
nudNumberGuess.Maximum = new decimal(new int[] { 500, 0, 0, 0 });
|
|
nudNumberGuess.Name = "nudNumberGuess";
|
|
nudNumberGuess.Size = new Size(120, 23);
|
|
nudNumberGuess.TabIndex = 1;
|
|
//
|
|
// btnGuess
|
|
//
|
|
btnGuess.ForeColor = Color.Black;
|
|
btnGuess.Location = new Point(225, 156);
|
|
btnGuess.Name = "btnGuess";
|
|
btnGuess.Size = new Size(46, 23);
|
|
btnGuess.TabIndex = 2;
|
|
btnGuess.Text = "Guess";
|
|
btnGuess.UseVisualStyleBackColor = true;
|
|
btnGuess.Click += btnGuess_Click;
|
|
//
|
|
// lblPrizeInfo
|
|
//
|
|
lblPrizeInfo.Font = new Font("Segoe UI", 9F, FontStyle.Bold);
|
|
lblPrizeInfo.ForeColor = Color.Black;
|
|
lblPrizeInfo.Location = new Point(142, 180);
|
|
lblPrizeInfo.Name = "lblPrizeInfo";
|
|
lblPrizeInfo.Size = new Size(212, 63);
|
|
lblPrizeInfo.TabIndex = 3;
|
|
lblPrizeInfo.Text = "Prize Possibilities:\r\nGuess Is Higher By 10 - Jackpot Spin\r\nGuess Is Lower By 10 - 200 Q's\r\nGuess Is Equal - Jackpot";
|
|
lblPrizeInfo.TextAlign = ContentAlignment.TopCenter;
|
|
//
|
|
// lblResult
|
|
//
|
|
lblResult.Font = new Font("Segoe UI", 9F, FontStyle.Bold);
|
|
lblResult.Location = new Point(12, 81);
|
|
lblResult.Name = "lblResult";
|
|
lblResult.Size = new Size(477, 15);
|
|
lblResult.TabIndex = 4;
|
|
lblResult.Text = "lblResult";
|
|
lblResult.TextAlign = ContentAlignment.MiddleCenter;
|
|
lblResult.Visible = false;
|
|
//
|
|
// btnClaimPrize
|
|
//
|
|
btnClaimPrize.ForeColor = Color.Black;
|
|
btnClaimPrize.Location = new Point(200, 100);
|
|
btnClaimPrize.Name = "btnClaimPrize";
|
|
btnClaimPrize.Size = new Size(99, 23);
|
|
btnClaimPrize.TabIndex = 5;
|
|
btnClaimPrize.Text = "PRIZE_CLAIM";
|
|
btnClaimPrize.UseVisualStyleBackColor = true;
|
|
btnClaimPrize.Visible = false;
|
|
//
|
|
// GuessTheNumber
|
|
//
|
|
AutoScaleDimensions = new SizeF(7F, 15F);
|
|
AutoScaleMode = AutoScaleMode.Font;
|
|
BackColor = Color.DodgerBlue;
|
|
ClientSize = new Size(511, 253);
|
|
Controls.Add(btnClaimPrize);
|
|
Controls.Add(lblResult);
|
|
Controls.Add(lblPrizeInfo);
|
|
Controls.Add(btnGuess);
|
|
Controls.Add(nudNumberGuess);
|
|
Controls.Add(lblHeader);
|
|
ForeColor = Color.White;
|
|
FormBorderStyle = FormBorderStyle.FixedDialog;
|
|
MaximizeBox = false;
|
|
MinimizeBox = false;
|
|
Name = "GuessTheNumber";
|
|
StartPosition = FormStartPosition.CenterScreen;
|
|
Text = "QtC.NET qGame - Guess The Number";
|
|
Load += GuessTheNumber_Load;
|
|
((System.ComponentModel.ISupportInitialize)nudNumberGuess).EndInit();
|
|
ResumeLayout(false);
|
|
}
|
|
|
|
#endregion
|
|
|
|
private Label lblHeader;
|
|
private NumericUpDown nudNumberGuess;
|
|
private Button btnGuess;
|
|
private Label lblPrizeInfo;
|
|
private Label lblResult;
|
|
private Button btnClaimPrize;
|
|
}
|
|
} |