namespace WindowsFormsApp14
{
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()
{
this.Canvas = new System.Windows.Forms.PictureBox();
this.TopScoreLabel = new System.Windows.Forms.Label();
this.BottomScoreLabel = new System.Windows.Forms.Label();
this.StreakScoreLabel = new System.Windows.Forms.Label();
((System.ComponentModel.ISupportInitialize)(this.Canvas)).BeginInit();
this.SuspendLayout();
//
// Canvas
//
this.Canvas.Location = new System.Drawing.Point(13, 13);
this.Canvas.Name = "Canvas";
this.Canvas.Size = new System.Drawing.Size(1075, 533);
this.Canvas.TabIndex = 0;
this.Canvas.TabStop = false;
this.Canvas.Paint += new System.Windows.Forms.PaintEventHandler(this.Canvas_Paint);
//
// TopScoreLabel
//
this.TopScoreLabel.AutoSize = true;
this.TopScoreLabel.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.TopScoreLabel.ForeColor = System.Drawing.Color.Gold;
this.TopScoreLabel.Location = new System.Drawing.Point(200, 178);
this.TopScoreLabel.Name = "TopScoreLabel";
this.TopScoreLabel.Size = new System.Drawing.Size(57, 20);
this.TopScoreLabel.TabIndex = 1;
this.TopScoreLabel.Text = "label1";
//
// BottomScoreLabel
//
this.BottomScoreLabel.AutoSize = true;
this.BottomScoreLabel.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.BottomScoreLabel.ForeColor = System.Drawing.Color.Gold;
this.BottomScoreLabel.Location = new System.Drawing.Point(200, 356);
this.BottomScoreLabel.Name = "BottomScoreLabel";
this.BottomScoreLabel.Size = new System.Drawing.Size(57, 20);
this.BottomScoreLabel.TabIndex = 2;
this.BottomScoreLabel.Text = "label1";
//
// StreakScoreLabel
//
this.StreakScoreLabel.AutoSize = true;
this.StreakScoreLabel.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.StreakScoreLabel.ForeColor = System.Drawing.Color.Crimson;
this.StreakScoreLabel.Location = new System.Drawing.Point(399, 27);
this.StreakScoreLabel.Name = "StreakScoreLabel";
this.StreakScoreLabel.Size = new System.Drawing.Size(57, 20);
this.StreakScoreLabel.TabIndex = 3;
this.StreakScoreLabel.Text = "label1";
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackColor = System.Drawing.Color.Black;
this.ClientSize = new System.Drawing.Size(1100, 558);
this.Controls.Add(this.StreakScoreLabel);
this.Controls.Add(this.BottomScoreLabel);
this.Controls.Add(this.TopScoreLabel);
this.Controls.Add(this.Canvas);
this.Name = "Form1";
this.Text = "Form1";
this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.Form1_KeyDown);
this.KeyUp += new System.Windows.Forms.KeyEventHandler(this.Form1_KeyUp);
((System.ComponentModel.ISupportInitialize)(this.Canvas)).EndInit();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.PictureBox Canvas;
private System.Windows.Forms.Label TopScoreLabel;
private System.Windows.Forms.Label BottomScoreLabel;
private System.Windows.Forms.Label StreakScoreLabel;
}
}