qtc-net-client/qtc-net-client-2/Forms/TokenJackpotSpinner.Designer.cs
AlanMoonbase 88806e93a4 Implement Jackpot Win Animation (> 200)
Change Currency Name To "Q's" (i could probably come up with a better name here)
2025-06-23 14:03:57 -07:00

116 lines
4.3 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();
pbHornLeft = new PictureBox();
pbHornRight = new PictureBox();
((System.ComponentModel.ISupportInitialize)pbHornLeft).BeginInit();
((System.ComponentModel.ISupportInitialize)pbHornRight).BeginInit();
SuspendLayout();
//
// lblTokensWon
//
lblTokensWon.AutoEllipsis = true;
lblTokensWon.Font = new Font("Segoe UI Black", 13F);
lblTokensWon.Location = new Point(145, 33);
lblTokensWon.Name = "lblTokensWon";
lblTokensWon.Size = new Size(129, 25);
lblTokensWon.TabIndex = 0;
lblTokensWon.Text = "300 Q's Won";
lblTokensWon.TextAlign = ContentAlignment.MiddleCenter;
//
// btnClaim
//
btnClaim.Enabled = false;
btnClaim.Location = new Point(173, 72);
btnClaim.Name = "btnClaim";
btnClaim.Size = new Size(75, 23);
btnClaim.TabIndex = 1;
btnClaim.Text = "Claim";
btnClaim.UseVisualStyleBackColor = true;
btnClaim.Click += btnClaim_Click;
//
// pbHornLeft
//
pbHornLeft.Image = Properties.Resources.right_horn_animated;
pbHornLeft.Location = new Point(12, 8);
pbHornLeft.Name = "pbHornLeft";
pbHornLeft.Size = new Size(80, 100);
pbHornLeft.SizeMode = PictureBoxSizeMode.Zoom;
pbHornLeft.TabIndex = 2;
pbHornLeft.TabStop = false;
pbHornLeft.Visible = false;
//
// pbHornRight
//
pbHornRight.Image = Properties.Resources.left_horn_animated;
pbHornRight.Location = new Point(337, 8);
pbHornRight.Name = "pbHornRight";
pbHornRight.Size = new Size(78, 101);
pbHornRight.SizeMode = PictureBoxSizeMode.Zoom;
pbHornRight.TabIndex = 3;
pbHornRight.TabStop = false;
pbHornRight.Visible = false;
//
// TokenJackpotSpinner
//
AutoScaleDimensions = new SizeF(7F, 15F);
AutoScaleMode = AutoScaleMode.Font;
BackColor = Color.DodgerBlue;
ClientSize = new Size(427, 117);
Controls.Add(pbHornRight);
Controls.Add(pbHornLeft);
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;
((System.ComponentModel.ISupportInitialize)pbHornLeft).EndInit();
((System.ComponentModel.ISupportInitialize)pbHornRight).EndInit();
ResumeLayout(false);
}
#endregion
private Label lblTokensWon;
private Button btnClaim;
private PictureBox pbHornLeft;
private PictureBox pbHornRight;
}
}