Rename LabelCard to labelCard

This commit is contained in:
Dita Aji Pratama 2026-04-11 11:41:47 +07:00
parent 397dac0171
commit f70754c461

22
Form1.Designer.cs generated
View File

@ -28,21 +28,21 @@
/// </summary>
private void InitializeComponent()
{
LabelCard = new Label();
labelCard = new Label();
labelScore = new Label();
buttonHigh = new Button();
buttonLow = new Button();
SuspendLayout();
//
// LabelCard
// 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";
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
//
@ -79,7 +79,7 @@
Controls.Add(buttonLow);
Controls.Add(buttonHigh);
Controls.Add(labelScore);
Controls.Add(LabelCard);
Controls.Add(labelCard);
Name = "Form1";
Text = "Form1";
ResumeLayout(false);
@ -88,7 +88,7 @@
#endregion
private Label LabelCard;
private Label labelCard;
private Label labelScore;
private Button buttonHigh;
private Button buttonLow;