namespace GuessTheCard { partial class Form1 { /// /// Required designer variable. /// private System.ComponentModel.IContainer components = null; /// /// Clean up any resources being used. /// /// true if managed resources should be disposed; otherwise, false. protected override void Dispose(bool disposing) { if (disposing && (components != null)) { components.Dispose(); } base.Dispose(disposing); } #region Windows Form Designer generated code /// /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// private void InitializeComponent() { 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(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; } }