-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathForm1.Designer.cs
More file actions
112 lines (105 loc) · 4.41 KB
/
Form1.Designer.cs
File metadata and controls
112 lines (105 loc) · 4.41 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
namespace PongProject
{
partial class Form1
{
/// <summary>
/// Erforderliche Designervariable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Verwendete Ressourcen bereinigen.
/// </summary>
/// <param name="disposing">True, wenn verwaltete Ressourcen gelöscht werden sollen; andernfalls False.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Vom Windows Form-Designer generierter Code
/// <summary>
/// Erforderliche Methode für die Designerunterstützung.
/// Der Inhalt der Methode darf nicht mit dem Code-Editor geändert werden.
/// </summary>
private void InitializeComponent()
{
this.label1 = new System.Windows.Forms.Label();
this.label2 = new System.Windows.Forms.Label();
this.btnStart = new System.Windows.Forms.Button();
this.btnScore = new System.Windows.Forms.Button();
this.btnStop = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(72, 52);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(105, 13);
this.label1.TabIndex = 0;
this.label1.Text = "Herzlich willkommen!";
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(72, 85);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(252, 13);
this.label2.TabIndex = 1;
this.label2.Text = "Bitte wähle eine der unten stehenden Optionen aus:";
//
// btnStart
//
this.btnStart.Location = new System.Drawing.Point(72, 120);
this.btnStart.Name = "btnStart";
this.btnStart.Size = new System.Drawing.Size(132, 23);
this.btnStart.TabIndex = 2;
this.btnStart.Text = "Startbutton";
this.btnStart.UseVisualStyleBackColor = true;
this.btnStart.Click += new System.EventHandler(this.btnStart_Click);
//
// btnScore
//
this.btnScore.Location = new System.Drawing.Point(72, 170);
this.btnScore.Name = "btnScore";
this.btnScore.Size = new System.Drawing.Size(132, 23);
this.btnScore.TabIndex = 3;
this.btnScore.Text = "Highscore einsehen";
this.btnScore.UseVisualStyleBackColor = true;
this.btnScore.Click += new System.EventHandler(this.btnScore_Click);
//
// btnStop
//
this.btnStop.Location = new System.Drawing.Point(72, 220);
this.btnStop.Name = "btnStop";
this.btnStop.Size = new System.Drawing.Size(132, 23);
this.btnStop.TabIndex = 4;
this.btnStop.Text = "Spiel beenden";
this.btnStop.UseVisualStyleBackColor = true;
this.btnStop.Click += new System.EventHandler(this.btnStop_Click);
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(398, 362);
this.Controls.Add(this.btnStop);
this.Controls.Add(this.btnScore);
this.Controls.Add(this.btnStart);
this.Controls.Add(this.label2);
this.Controls.Add(this.label1);
this.Name = "Form1";
this.Text = "Form1";
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Button btnStart;
private System.Windows.Forms.Button btnScore;
private System.Windows.Forms.Button btnStop;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.Label label1;
}
}