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> /// </summary>
private void InitializeComponent() private void InitializeComponent()
{ {
LabelCard = new Label(); labelCard = new Label();
labelScore = new Label(); labelScore = new Label();
buttonHigh = new Button(); buttonHigh = new Button();
buttonLow = new Button(); buttonLow = new Button();
SuspendLayout(); SuspendLayout();
// //
// LabelCard // labelCard
// //
LabelCard.AutoSize = true; labelCard.AutoSize = true;
LabelCard.Font = new Font("Segoe UI", 32F); labelCard.Font = new Font("Segoe UI", 32F);
LabelCard.Location = new Point(12, 58); labelCard.Location = new Point(12, 58);
LabelCard.Name = "LabelCard"; labelCard.Name = "labelCard";
LabelCard.Size = new Size(240, 59); labelCard.Size = new Size(240, 59);
LabelCard.TabIndex = 0; labelCard.TabIndex = 0;
LabelCard.Text = "Card Result"; labelCard.Text = "Card Result";
// //
// labelScore // labelScore
// //
@ -79,7 +79,7 @@
Controls.Add(buttonLow); Controls.Add(buttonLow);
Controls.Add(buttonHigh); Controls.Add(buttonHigh);
Controls.Add(labelScore); Controls.Add(labelScore);
Controls.Add(LabelCard); Controls.Add(labelCard);
Name = "Form1"; Name = "Form1";
Text = "Form1"; Text = "Form1";
ResumeLayout(false); ResumeLayout(false);
@ -88,7 +88,7 @@
#endregion #endregion
private Label LabelCard; private Label labelCard;
private Label labelScore; private Label labelScore;
private Button buttonHigh; private Button buttonHigh;
private Button buttonLow; private Button buttonLow;