-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathForm1.Designer.cs
170 lines (164 loc) · 5.78 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
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
// **********************************
// Densen Informatica 中讯科技
// 作者:Alex Chow
// e-mail:[email protected]
// **********************************
namespace WinFormsTabs
{
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()
{
tabControl1 = new TabControl();
tabPage1 = new TabPage();
tabPage2 = new TabPage();
tabPage3 = new TabPage();
tabPage4 = new TabPage();
tabPage5 = new TabPage();
tabPage6 = new TabPage();
tabPage7 = new TabPage();
tabPage8 = new TabPage();
tabControl1.SuspendLayout();
SuspendLayout();
//
// tabControl1
//
tabControl1.Controls.Add(tabPage1);
tabControl1.Controls.Add(tabPage2);
tabControl1.Controls.Add(tabPage3);
tabControl1.Controls.Add(tabPage4);
tabControl1.Controls.Add(tabPage5);
tabControl1.Controls.Add(tabPage6);
tabControl1.Controls.Add(tabPage7);
tabControl1.Controls.Add(tabPage8);
tabControl1.Dock = DockStyle.Fill;
tabControl1.Location = new Point(0, 0);
tabControl1.Name = "tabControl1";
tabControl1.SelectedIndex = 0;
tabControl1.Size = new Size(1085, 666);
tabControl1.TabIndex = 0;
//
// tabPage1
//
tabPage1.Location = new Point(4, 37);
tabPage1.Name = "tabPage1";
tabPage1.Padding = new Padding(3);
tabPage1.Size = new Size(897, 562);
tabPage1.TabIndex = 0;
tabPage1.Text = "tabPage1";
tabPage1.UseVisualStyleBackColor = true;
//
// tabPage2
//
tabPage2.Location = new Point(4, 37);
tabPage2.Name = "tabPage2";
tabPage2.Padding = new Padding(3);
tabPage2.Size = new Size(897, 562);
tabPage2.TabIndex = 1;
tabPage2.Text = "tabPage2";
tabPage2.UseVisualStyleBackColor = true;
//
// tabPage3
//
tabPage3.Location = new Point(4, 37);
tabPage3.Name = "tabPage3";
tabPage3.Padding = new Padding(3);
tabPage3.Size = new Size(897, 562);
tabPage3.TabIndex = 2;
tabPage3.Text = "tabPage3";
tabPage3.UseVisualStyleBackColor = true;
//
// tabPage4
//
tabPage4.Location = new Point(4, 37);
tabPage4.Name = "tabPage4";
tabPage4.Padding = new Padding(3);
tabPage4.Size = new Size(897, 562);
tabPage4.TabIndex = 3;
tabPage4.Text = "tabPage4";
tabPage4.UseVisualStyleBackColor = true;
//
// tabPage5
//
tabPage5.Location = new Point(4, 37);
tabPage5.Name = "tabPage5";
tabPage5.Padding = new Padding(3);
tabPage5.Size = new Size(897, 562);
tabPage5.TabIndex = 4;
tabPage5.Text = "tabPage5";
tabPage5.UseVisualStyleBackColor = true;
//
// tabPage6
//
tabPage6.Location = new Point(4, 37);
tabPage6.Name = "tabPage6";
tabPage6.Padding = new Padding(3);
tabPage6.Size = new Size(897, 562);
tabPage6.TabIndex = 5;
tabPage6.Text = "tabPage6";
tabPage6.UseVisualStyleBackColor = true;
//
// tabPage7
//
tabPage7.Location = new Point(4, 37);
tabPage7.Name = "tabPage7";
tabPage7.Padding = new Padding(3);
tabPage7.Size = new Size(897, 562);
tabPage7.TabIndex = 6;
tabPage7.Text = "tabPage7";
tabPage7.UseVisualStyleBackColor = true;
//
// tabPage8
//
tabPage8.Location = new Point(4, 37);
tabPage8.Name = "tabPage8";
tabPage8.Padding = new Padding(3);
tabPage8.Size = new Size(1077, 625);
tabPage8.TabIndex = 7;
tabPage8.Text = "tabPage8";
tabPage8.UseVisualStyleBackColor = true;
//
// Form1
//
AutoScaleDimensions = new SizeF(13F, 28F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(1085, 666);
Controls.Add(tabControl1);
Name = "Form1";
Text = "Form1";
tabControl1.ResumeLayout(false);
ResumeLayout(false);
}
#endregion
private TabControl tabControl1;
private TabPage tabPage1;
private TabPage tabPage2;
private TabPage tabPage3;
private TabPage tabPage4;
private TabPage tabPage5;
private TabPage tabPage6;
private TabPage tabPage7;
private TabPage tabPage8;
}
}