-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathForm1.Designer.cs
145 lines (138 loc) · 5.89 KB
/
Form1.Designer.cs
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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
namespace Quiccent
{
partial class Form1
{
/// <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.FirstButton = new System.Windows.Forms.Button();
this.SecondButton = new System.Windows.Forms.Button();
this.ThirdButton = new System.Windows.Forms.Button();
this.FourthButton = new System.Windows.Forms.Button();
this.FifthButton = new System.Windows.Forms.Button();
this.SixthButton = new System.Windows.Forms.Button();
this.SeventhButton = new System.Windows.Forms.Button();
this.EighthButton = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// FirstButton
//
this.FirstButton.Location = new System.Drawing.Point(12, 33);
this.FirstButton.Name = "FirstButton";
this.FirstButton.Size = new System.Drawing.Size(92, 63);
this.FirstButton.TabIndex = 0;
this.FirstButton.Text = "button1";
this.FirstButton.UseVisualStyleBackColor = true;
//
// SecondButton
//
this.SecondButton.Location = new System.Drawing.Point(123, 33);
this.SecondButton.Name = "SecondButton";
this.SecondButton.Size = new System.Drawing.Size(94, 63);
this.SecondButton.TabIndex = 1;
this.SecondButton.Text = "button2";
this.SecondButton.UseVisualStyleBackColor = true;
//
// ThirdButton
//
this.ThirdButton.Location = new System.Drawing.Point(239, 33);
this.ThirdButton.Name = "ThirdButton";
this.ThirdButton.Size = new System.Drawing.Size(97, 63);
this.ThirdButton.TabIndex = 2;
this.ThirdButton.Text = "button3";
this.ThirdButton.UseVisualStyleBackColor = true;
//
// FourthButton
//
this.FourthButton.Location = new System.Drawing.Point(361, 33);
this.FourthButton.Name = "FourthButton";
this.FourthButton.Size = new System.Drawing.Size(90, 63);
this.FourthButton.TabIndex = 3;
this.FourthButton.Text = "button4";
this.FourthButton.UseVisualStyleBackColor = true;
//
// FifthButton
//
this.FifthButton.Location = new System.Drawing.Point(475, 33);
this.FifthButton.Name = "FifthButton";
this.FifthButton.Size = new System.Drawing.Size(91, 63);
this.FifthButton.TabIndex = 4;
this.FifthButton.Text = "button5";
this.FifthButton.UseVisualStyleBackColor = true;
//
// SixthButton
//
this.SixthButton.Location = new System.Drawing.Point(590, 33);
this.SixthButton.Name = "SixthButton";
this.SixthButton.Size = new System.Drawing.Size(91, 63);
this.SixthButton.TabIndex = 5;
this.SixthButton.Text = "button6";
this.SixthButton.UseVisualStyleBackColor = true;
//
// SeventhButton
//
this.SeventhButton.Location = new System.Drawing.Point(706, 33);
this.SeventhButton.Name = "SeventhButton";
this.SeventhButton.Size = new System.Drawing.Size(91, 63);
this.SeventhButton.TabIndex = 6;
this.SeventhButton.Text = "button7";
this.SeventhButton.UseVisualStyleBackColor = true;
//
// EighthButton
//
this.EighthButton.Location = new System.Drawing.Point(827, 33);
this.EighthButton.Name = "EighthButton";
this.EighthButton.Size = new System.Drawing.Size(98, 63);
this.EighthButton.TabIndex = 7;
this.EighthButton.Text = "button8";
this.EighthButton.UseVisualStyleBackColor = true;
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 20F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(938, 131);
this.Controls.Add(this.EighthButton);
this.Controls.Add(this.SeventhButton);
this.Controls.Add(this.SixthButton);
this.Controls.Add(this.FifthButton);
this.Controls.Add(this.FourthButton);
this.Controls.Add(this.ThirdButton);
this.Controls.Add(this.SecondButton);
this.Controls.Add(this.FirstButton);
this.Name = "Form1";
this.Text = "Form1";
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.Button FirstButton;
private System.Windows.Forms.Button SecondButton;
private System.Windows.Forms.Button ThirdButton;
private System.Windows.Forms.Button FourthButton;
private System.Windows.Forms.Button FifthButton;
private System.Windows.Forms.Button SixthButton;
private System.Windows.Forms.Button SeventhButton;
private System.Windows.Forms.Button EighthButton;
}
}