-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathForm1.Designer.cs
297 lines (290 loc) · 14.3 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
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
namespace Ukiatality
{
partial class Form1
{
/// <summary>
/// 必需的设计器变量。
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// 清理所有正在使用的资源。
/// </summary>
/// <param name="disposing">如果应释放托管资源,为 true;否则为 false。</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows 窗体设计器生成的代码
/// <summary>
/// 设计器支持所需的方法 - 不要修改
/// 使用代码编辑器修改此方法的内容。
/// </summary>
private void InitializeComponent()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1));
this.Initialize = new System.Windows.Forms.Button();
this.ConfigList = new System.Windows.Forms.ListBox();
this.label1 = new System.Windows.Forms.Label();
this.Dir = new System.Windows.Forms.TextBox();
this.Load = new System.Windows.Forms.Button();
this.Save = new System.Windows.Forms.Button();
this.Refresh = new System.Windows.Forms.Button();
this.label2 = new System.Windows.Forms.Label();
this.CFGName = new System.Windows.Forms.TextBox();
this.Create = new System.Windows.Forms.Button();
this.label3 = new System.Windows.Forms.Label();
this.linkLabel1 = new System.Windows.Forms.LinkLabel();
this.linkLabel2 = new System.Windows.Forms.LinkLabel();
this.linkLabel3 = new System.Windows.Forms.LinkLabel();
this.label4 = new System.Windows.Forms.Label();
this.OpenDir = new System.Windows.Forms.Button();
this.label5 = new System.Windows.Forms.Label();
this.CFGDir = new System.Windows.Forms.TextBox();
this.SuspendLayout();
//
// Initialize
//
this.Initialize.Font = new System.Drawing.Font("黑体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.Initialize.Location = new System.Drawing.Point(297, 7);
this.Initialize.Name = "Initialize";
this.Initialize.Size = new System.Drawing.Size(75, 23);
this.Initialize.TabIndex = 0;
this.Initialize.Text = "Initialize";
this.Initialize.UseVisualStyleBackColor = true;
this.Initialize.Click += new System.EventHandler(this.Initialize_Click);
//
// ConfigList
//
this.ConfigList.Font = new System.Drawing.Font("黑体", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.ConfigList.FormattingEnabled = true;
this.ConfigList.Location = new System.Drawing.Point(12, 61);
this.ConfigList.Name = "ConfigList";
this.ConfigList.Size = new System.Drawing.Size(279, 160);
this.ConfigList.TabIndex = 1;
this.ConfigList.SelectedIndexChanged += new System.EventHandler(this.ConfigList_SelectedIndexChanged);
//
// label1
//
this.label1.AutoSize = true;
this.label1.Font = new System.Drawing.Font("黑体", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.label1.Location = new System.Drawing.Point(12, 12);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(49, 13);
this.label1.TabIndex = 2;
this.label1.Text = "CSDir:";
//
// Dir
//
this.Dir.Location = new System.Drawing.Point(83, 9);
this.Dir.Name = "Dir";
this.Dir.Size = new System.Drawing.Size(208, 21);
this.Dir.TabIndex = 3;
//
// Load
//
this.Load.Enabled = false;
this.Load.Font = new System.Drawing.Font("黑体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.Load.Location = new System.Drawing.Point(297, 61);
this.Load.Name = "Load";
this.Load.Size = new System.Drawing.Size(75, 23);
this.Load.TabIndex = 4;
this.Load.Text = "Load";
this.Load.UseVisualStyleBackColor = true;
this.Load.Click += new System.EventHandler(this.Load_Click);
//
// Save
//
this.Save.Enabled = false;
this.Save.Font = new System.Drawing.Font("黑体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.Save.Location = new System.Drawing.Point(297, 90);
this.Save.Name = "Save";
this.Save.Size = new System.Drawing.Size(75, 23);
this.Save.TabIndex = 5;
this.Save.Text = "Save";
this.Save.UseVisualStyleBackColor = true;
this.Save.Click += new System.EventHandler(this.Save_Click);
//
// Refresh
//
this.Refresh.Enabled = false;
this.Refresh.Font = new System.Drawing.Font("黑体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.Refresh.Location = new System.Drawing.Point(297, 119);
this.Refresh.Name = "Refresh";
this.Refresh.Size = new System.Drawing.Size(75, 23);
this.Refresh.TabIndex = 6;
this.Refresh.Text = "Refresh";
this.Refresh.UseVisualStyleBackColor = true;
this.Refresh.Click += new System.EventHandler(this.Refresh_Click);
//
// label2
//
this.label2.AutoSize = true;
this.label2.Font = new System.Drawing.Font("黑体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.label2.Location = new System.Drawing.Point(10, 230);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(71, 12);
this.label2.TabIndex = 7;
this.label2.Text = "ConfigName:";
//
// CFGName
//
this.CFGName.Font = new System.Drawing.Font("黑体", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.CFGName.Location = new System.Drawing.Point(83, 227);
this.CFGName.Name = "CFGName";
this.CFGName.Size = new System.Drawing.Size(208, 22);
this.CFGName.TabIndex = 8;
//
// Create
//
this.Create.Enabled = false;
this.Create.Font = new System.Drawing.Font("黑体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.Create.Location = new System.Drawing.Point(297, 225);
this.Create.Name = "Create";
this.Create.Size = new System.Drawing.Size(75, 23);
this.Create.TabIndex = 9;
this.Create.Text = "Create";
this.Create.UseVisualStyleBackColor = true;
this.Create.Click += new System.EventHandler(this.Create_Click);
//
// label3
//
this.label3.AutoSize = true;
this.label3.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.label3.Location = new System.Drawing.Point(10, 251);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(352, 42);
this.label3.TabIndex = 10;
this.label3.Text = "The Israeli occupation of Palestine has caused THOUSANDS OF\r\nCHILDREN to suffer w" +
"hile u are enjoy your HvH gaming time. \r\nConsider helping them:";
//
// linkLabel1
//
this.linkLabel1.AutoSize = true;
this.linkLabel1.Location = new System.Drawing.Point(146, 281);
this.linkLabel1.Name = "linkLabel1";
this.linkLabel1.Size = new System.Drawing.Size(29, 12);
this.linkLabel1.TabIndex = 11;
this.linkLabel1.TabStop = true;
this.linkLabel1.Text = "PCRF";
this.linkLabel1.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel1_LinkClicked);
//
// linkLabel2
//
this.linkLabel2.AutoSize = true;
this.linkLabel2.Location = new System.Drawing.Point(181, 281);
this.linkLabel2.Name = "linkLabel2";
this.linkLabel2.Size = new System.Drawing.Size(41, 12);
this.linkLabel2.TabIndex = 12;
this.linkLabel2.TabStop = true;
this.linkLabel2.Text = "UNICEF";
this.linkLabel2.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel2_LinkClicked);
//
// linkLabel3
//
this.linkLabel3.AutoSize = true;
this.linkLabel3.Location = new System.Drawing.Point(228, 281);
this.linkLabel3.Name = "linkLabel3";
this.linkLabel3.Size = new System.Drawing.Size(35, 12);
this.linkLabel3.TabIndex = 13;
this.linkLabel3.TabStop = true;
this.linkLabel3.Text = "UNRWA";
this.linkLabel3.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel3_LinkClicked);
//
// label4
//
this.label4.AutoSize = true;
this.label4.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.label4.ForeColor = System.Drawing.Color.IndianRed;
this.label4.Location = new System.Drawing.Point(10, 293);
this.label4.Name = "label4";
this.label4.Size = new System.Drawing.Size(346, 42);
this.label4.TabIndex = 15;
this.label4.Text = "In addition, we hope that you contact public opinion \r\nrepresentatives in your ar" +
"ea to convey your concerns about \r\nchildren in Palestine and urge the government" +
" to take action.";
//
// OpenDir
//
this.OpenDir.Enabled = false;
this.OpenDir.Font = new System.Drawing.Font("黑体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.OpenDir.Location = new System.Drawing.Point(297, 148);
this.OpenDir.Name = "OpenDir";
this.OpenDir.Size = new System.Drawing.Size(75, 23);
this.OpenDir.TabIndex = 16;
this.OpenDir.Text = "OpenDir";
this.OpenDir.UseVisualStyleBackColor = true;
this.OpenDir.Click += new System.EventHandler(this.OpenDir_Click);
//
// label5
//
this.label5.AutoSize = true;
this.label5.Font = new System.Drawing.Font("黑体", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.label5.Location = new System.Drawing.Point(12, 40);
this.label5.Name = "label5";
this.label5.Size = new System.Drawing.Size(77, 13);
this.label5.TabIndex = 17;
this.label5.Text = "ConfigDir:";
//
// CFGDir
//
this.CFGDir.Location = new System.Drawing.Point(83, 37);
this.CFGDir.Name = "CFGDir";
this.CFGDir.Size = new System.Drawing.Size(208, 21);
this.CFGDir.TabIndex = 18;
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(384, 346);
this.Controls.Add(this.CFGDir);
this.Controls.Add(this.label5);
this.Controls.Add(this.OpenDir);
this.Controls.Add(this.label4);
this.Controls.Add(this.linkLabel3);
this.Controls.Add(this.linkLabel2);
this.Controls.Add(this.linkLabel1);
this.Controls.Add(this.label3);
this.Controls.Add(this.Create);
this.Controls.Add(this.CFGName);
this.Controls.Add(this.label2);
this.Controls.Add(this.Refresh);
this.Controls.Add(this.Save);
this.Controls.Add(this.Load);
this.Controls.Add(this.Dir);
this.Controls.Add(this.label1);
this.Controls.Add(this.ConfigList);
this.Controls.Add(this.Initialize);
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.MaximizeBox = false;
this.Name = "Form1";
this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide;
this.Text = "FALITATA Config Loader";
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Button Initialize;
private System.Windows.Forms.ListBox ConfigList;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.TextBox Dir;
private System.Windows.Forms.Button Load;
private System.Windows.Forms.Button Save;
private System.Windows.Forms.Button Refresh;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.TextBox CFGName;
private System.Windows.Forms.Button Create;
private System.Windows.Forms.Label label3;
private System.Windows.Forms.LinkLabel linkLabel1;
private System.Windows.Forms.LinkLabel linkLabel2;
private System.Windows.Forms.LinkLabel linkLabel3;
private System.Windows.Forms.Label label4;
private System.Windows.Forms.Button OpenDir;
private System.Windows.Forms.Label label5;
private System.Windows.Forms.TextBox CFGDir;
}
}