85 lines
2.9 KiB
C#
85 lines
2.9 KiB
C#
namespace qtc_net_client_2.Forms
|
|
{
|
|
partial class TokenJackpotSpinner
|
|
{
|
|
/// <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()
|
|
{
|
|
lblTokensWon = new Label();
|
|
btnClaim = new Button();
|
|
SuspendLayout();
|
|
//
|
|
// lblTokensWon
|
|
//
|
|
lblTokensWon.AutoSize = true;
|
|
lblTokensWon.Font = new Font("Segoe UI Black", 13F);
|
|
lblTokensWon.Location = new Point(137, 30);
|
|
lblTokensWon.Name = "lblTokensWon";
|
|
lblTokensWon.Size = new Size(137, 25);
|
|
lblTokensWon.TabIndex = 0;
|
|
lblTokensWon.Text = "0 Tokens Won";
|
|
lblTokensWon.TextAlign = ContentAlignment.MiddleCenter;
|
|
//
|
|
// btnClaim
|
|
//
|
|
btnClaim.Enabled = false;
|
|
btnClaim.Location = new Point(167, 76);
|
|
btnClaim.Name = "btnClaim";
|
|
btnClaim.Size = new Size(75, 23);
|
|
btnClaim.TabIndex = 1;
|
|
btnClaim.Text = "Claim";
|
|
btnClaim.UseVisualStyleBackColor = true;
|
|
btnClaim.Click += btnClaim_Click;
|
|
//
|
|
// TokenJackpotSpinner
|
|
//
|
|
AutoScaleDimensions = new SizeF(7F, 15F);
|
|
AutoScaleMode = AutoScaleMode.Font;
|
|
BackColor = Color.DodgerBlue;
|
|
ClientSize = new Size(427, 125);
|
|
Controls.Add(btnClaim);
|
|
Controls.Add(lblTokensWon);
|
|
DoubleBuffered = true;
|
|
ForeColor = Color.Black;
|
|
FormBorderStyle = FormBorderStyle.FixedDialog;
|
|
MaximizeBox = false;
|
|
MinimizeBox = false;
|
|
Name = "TokenJackpotSpinner";
|
|
StartPosition = FormStartPosition.CenterScreen;
|
|
Text = "QtC.NET Client - Daily Jackpot Spin";
|
|
FormClosing += TokenJackpotSpinner_FormClosing;
|
|
FormClosed += TokenJackpotSpinner_FormClosed;
|
|
Load += TokenJackpotSpinner_Load;
|
|
ResumeLayout(false);
|
|
PerformLayout();
|
|
}
|
|
|
|
#endregion
|
|
|
|
private Label lblTokensWon;
|
|
private Button btnClaim;
|
|
}
|
|
} |