guess-the-card/Form1.Designer.cs

97 lines
3.1 KiB
C#
Raw Permalink Normal View History

2026-04-11 11:30:11 +07:00
namespace GuessTheCard
{
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()
{
2026-04-11 11:41:47 +07:00
labelCard = new Label();
2026-04-11 11:30:11 +07:00
labelScore = new Label();
buttonHigh = new Button();
buttonLow = new Button();
SuspendLayout();
//
2026-04-11 11:41:47 +07:00
// labelCard
2026-04-11 11:30:11 +07:00
//
2026-04-11 11:41:47 +07:00
labelCard.AutoSize = true;
labelCard.Font = new Font("Segoe UI", 32F);
labelCard.Location = new Point(12, 58);
labelCard.Name = "labelCard";
labelCard.Size = new Size(240, 59);
labelCard.TabIndex = 0;
labelCard.Text = "Card Result";
2026-04-11 11:30:11 +07:00
//
// labelScore
//
labelScore.AutoSize = true;
labelScore.Location = new Point(12, 9);
labelScore.Name = "labelScore";
labelScore.Size = new Size(36, 15);
labelScore.TabIndex = 1;
labelScore.Text = "Score";
//
// buttonHigh
//
buttonHigh.Location = new Point(313, 12);
buttonHigh.Name = "buttonHigh";
buttonHigh.Size = new Size(75, 23);
buttonHigh.TabIndex = 2;
buttonHigh.Text = "Higher";
buttonHigh.UseVisualStyleBackColor = true;
//
// buttonLow
//
buttonLow.Location = new Point(313, 41);
buttonLow.Name = "buttonLow";
buttonLow.Size = new Size(75, 23);
buttonLow.TabIndex = 3;
buttonLow.Text = "Lower";
buttonLow.UseVisualStyleBackColor = true;
//
// Form1
//
AutoScaleDimensions = new SizeF(7F, 15F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(400, 155);
Controls.Add(buttonLow);
Controls.Add(buttonHigh);
Controls.Add(labelScore);
2026-04-11 11:41:47 +07:00
Controls.Add(labelCard);
2026-04-11 11:30:11 +07:00
Name = "Form1";
Text = "Form1";
ResumeLayout(false);
PerformLayout();
}
#endregion
2026-04-11 11:41:47 +07:00
private Label labelCard;
2026-04-11 11:30:11 +07:00
private Label labelScore;
private Button buttonHigh;
private Button buttonLow;
}
}