Initial Design

This commit is contained in:
Dita Aji Pratama 2026-04-11 11:30:11 +07:00
parent ff891658d2
commit 495496c049
2 changed files with 215 additions and 158 deletions

61
Form1.Designer.cs generated
View File

@ -28,12 +28,69 @@
/// </summary>
private void InitializeComponent()
{
components = new System.ComponentModel.Container();
LabelCard = new Label();
labelScore = new Label();
buttonHigh = new Button();
buttonLow = new Button();
SuspendLayout();
//
// LabelCard
//
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";
//
// 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(800, 450);
ClientSize = new Size(400, 155);
Controls.Add(buttonLow);
Controls.Add(buttonHigh);
Controls.Add(labelScore);
Controls.Add(LabelCard);
Name = "Form1";
Text = "Form1";
ResumeLayout(false);
PerformLayout();
}
#endregion
private Label LabelCard;
private Label labelScore;
private Button buttonHigh;
private Button buttonLow;
}
}