Catch-the-Button-2/Catch the button/LeaderDialog.Designer.cs

133 lines
5.9 KiB
C#
Raw Normal View History

2021-05-26 21:16:20 +00:00

namespace Catch_the_button {
partial class LeaderDialog {
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing) {
if (disposing && (components != null)) {
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent() {
this.score = new System.Windows.Forms.Label();
this.label1 = new System.Windows.Forms.Label();
this.label2 = new System.Windows.Forms.Label();
this.name = new System.Windows.Forms.TextBox();
this.submit = new System.Windows.Forms.Button();
this.label3 = new System.Windows.Forms.Label();
this.SuspendLayout();
//
// score
//
this.score.AutoSize = true;
2021-05-27 09:44:39 +00:00
this.score.Font = new System.Drawing.Font("Microsoft Sans Serif", 18F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
2021-05-27 10:41:00 +00:00
this.score.Location = new System.Drawing.Point(13, 80);
2021-05-27 09:44:39 +00:00
this.score.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
2021-05-26 21:16:20 +00:00
this.score.Name = "score";
2021-05-30 19:47:54 +00:00
this.score.Size = new System.Drawing.Size(238, 36);
2021-05-26 21:16:20 +00:00
this.score.TabIndex = 0;
this.score.Text = "Your score is: ...";
//
// label1
//
this.label1.AutoSize = true;
2021-05-27 10:41:00 +00:00
this.label1.Location = new System.Drawing.Point(14, 123);
2021-05-27 09:44:39 +00:00
this.label1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
2021-05-26 21:16:20 +00:00
this.label1.Name = "label1";
2021-05-30 19:47:54 +00:00
this.label1.Size = new System.Drawing.Size(267, 29);
2021-05-26 21:16:20 +00:00
this.label1.TabIndex = 1;
this.label1.Text = "Please enter your name";
//
// label2
//
this.label2.AutoSize = true;
2021-05-27 10:41:00 +00:00
this.label2.Location = new System.Drawing.Point(14, 147);
2021-05-27 09:44:39 +00:00
this.label2.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
2021-05-26 21:16:20 +00:00
this.label2.Name = "label2";
2021-05-30 19:47:54 +00:00
this.label2.Size = new System.Drawing.Size(377, 29);
2021-05-26 21:16:20 +00:00
this.label2.TabIndex = 2;
this.label2.Text = "(leave blank to not save the score)";
//
// name
//
2021-05-27 10:41:00 +00:00
this.name.Location = new System.Drawing.Point(18, 187);
2021-05-27 09:44:39 +00:00
this.name.Margin = new System.Windows.Forms.Padding(4, 7, 4, 7);
2021-05-26 21:16:20 +00:00
this.name.Name = "name";
2021-05-30 19:47:54 +00:00
this.name.Size = new System.Drawing.Size(373, 34);
2021-05-26 21:16:20 +00:00
this.name.TabIndex = 3;
//
// submit
//
2021-05-27 10:41:00 +00:00
this.submit.Location = new System.Drawing.Point(297, 229);
2021-05-27 09:44:39 +00:00
this.submit.Margin = new System.Windows.Forms.Padding(4, 7, 4, 7);
2021-05-26 21:16:20 +00:00
this.submit.Name = "submit";
2021-05-27 09:44:39 +00:00
this.submit.Size = new System.Drawing.Size(94, 41);
2021-05-26 21:16:20 +00:00
this.submit.TabIndex = 4;
this.submit.Text = "Submit";
this.submit.UseVisualStyleBackColor = true;
this.submit.Click += new System.EventHandler(this.submit_Click);
//
// label3
//
this.label3.AutoSize = true;
this.label3.Font = new System.Drawing.Font("Microsoft Sans Serif", 36F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
2021-05-27 10:41:00 +00:00
this.label3.Location = new System.Drawing.Point(63, 9);
2021-05-27 09:44:39 +00:00
this.label3.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
2021-05-26 21:16:20 +00:00
this.label3.Name = "label3";
2021-05-30 19:47:54 +00:00
this.label3.Size = new System.Drawing.Size(339, 69);
2021-05-26 21:16:20 +00:00
this.label3.TabIndex = 5;
this.label3.Text = "Game Over";
//
// LeaderDialog
//
2021-05-30 19:47:54 +00:00
this.AutoScaleDimensions = new System.Drawing.SizeF(14F, 29F);
2021-05-26 21:16:20 +00:00
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
2021-05-27 10:41:00 +00:00
this.ClientSize = new System.Drawing.Size(408, 290);
2021-05-26 21:16:20 +00:00
this.Controls.Add(this.label3);
this.Controls.Add(this.submit);
this.Controls.Add(this.name);
this.Controls.Add(this.label2);
this.Controls.Add(this.label1);
this.Controls.Add(this.score);
2021-05-27 09:44:39 +00:00
this.Font = new System.Drawing.Font("Microsoft Sans Serif", 13.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
2021-05-26 21:16:20 +00:00
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
this.KeyPreview = true;
2021-05-27 09:44:39 +00:00
this.Margin = new System.Windows.Forms.Padding(4, 7, 4, 7);
2021-05-30 19:47:54 +00:00
this.MaximizeBox = false;
this.MaximumSize = new System.Drawing.Size(426, 337);
this.MinimizeBox = false;
this.MinimumSize = new System.Drawing.Size(426, 337);
2021-05-26 21:16:20 +00:00
this.Name = "LeaderDialog";
this.Text = "Leaderboards";
this.Load += new System.EventHandler(this.Form2_Load);
this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.LeaderDialog_KeyDown);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Label score;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.TextBox name;
private System.Windows.Forms.Button submit;
private System.Windows.Forms.Label label3;
}
}