-
Notifications
You must be signed in to change notification settings - Fork 7
/
Form1.Designer.cs
687 lines (680 loc) · 32.4 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
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
namespace Numsieve
{
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()
{
this.components = new System.ComponentModel.Container();
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1));
this.stabox = new System.Windows.Forms.ListBox();
this.button4 = new System.Windows.Forms.Button();
this.button3 = new System.Windows.Forms.Button();
this.ResultBox = new System.Windows.Forms.RichTextBox();
this.urltxt = new System.Windows.Forms.TextBox();
this.label1 = new System.Windows.Forms.Label();
this.button1 = new System.Windows.Forms.Button();
this.statusStrip1 = new System.Windows.Forms.StatusStrip();
this.toolStripStatusLabel6 = new System.Windows.Forms.ToolStripStatusLabel();
this.toolStripStatusLabel1 = new System.Windows.Forms.ToolStripStatusLabel();
this.toolStripStatusLabel7 = new System.Windows.Forms.ToolStripStatusLabel();
this.AAAAAAbox = new System.Windows.Forms.RichTextBox();
this.richTextBox2 = new System.Windows.Forms.RichTextBox();
this.button2 = new System.Windows.Forms.Button();
this.label2 = new System.Windows.Forms.Label();
this.AAAAAbox = new System.Windows.Forms.RichTextBox();
this.label3 = new System.Windows.Forms.Label();
this.AAAAbox = new System.Windows.Forms.RichTextBox();
this.label4 = new System.Windows.Forms.Label();
this.AAAbox = new System.Windows.Forms.RichTextBox();
this.label5 = new System.Windows.Forms.Label();
this.label6 = new System.Windows.Forms.Label();
this.endAAAbox = new System.Windows.Forms.RichTextBox();
this.label7 = new System.Windows.Forms.Label();
this.label8 = new System.Windows.Forms.Label();
this.numericUpDown1 = new System.Windows.Forms.NumericUpDown();
this.AABBbox = new System.Windows.Forms.RichTextBox();
this.label9 = new System.Windows.Forms.Label();
this.ABCABCbox = new System.Windows.Forms.RichTextBox();
this.label10 = new System.Windows.Forms.Label();
this.ABABbox = new System.Windows.Forms.RichTextBox();
this.label11 = new System.Windows.Forms.Label();
this.ABCDbox = new System.Windows.Forms.RichTextBox();
this.label12 = new System.Windows.Forms.Label();
this.ABCBAbox = new System.Windows.Forms.RichTextBox();
this.label13 = new System.Windows.Forms.Label();
this.ABCCBAbox = new System.Windows.Forms.RichTextBox();
this.label14 = new System.Windows.Forms.Label();
this.menuStrip1 = new System.Windows.Forms.MenuStrip();
this.功能ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.地址获取器30ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.地址获取器20ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.防封代理ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.控制ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.开始ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.停止ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.说明ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.关于ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.button6 = new System.Windows.Forms.Button();
this.button7 = new System.Windows.Forms.Button();
this.Checktimer = new System.Windows.Forms.Timer(this.components);
this.timer1 = new System.Windows.Forms.Timer(this.components);
this.button5 = new System.Windows.Forms.Button();
this.statusStrip1.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.numericUpDown1)).BeginInit();
this.menuStrip1.SuspendLayout();
this.SuspendLayout();
//
// stabox
//
this.stabox.FormattingEnabled = true;
this.stabox.ItemHeight = 12;
this.stabox.Location = new System.Drawing.Point(14, 454);
this.stabox.Margin = new System.Windows.Forms.Padding(2);
this.stabox.Name = "stabox";
this.stabox.Size = new System.Drawing.Size(682, 52);
this.stabox.TabIndex = 31;
//
// button4
//
this.button4.Location = new System.Drawing.Point(737, 98);
this.button4.Margin = new System.Windows.Forms.Padding(2);
this.button4.Name = "button4";
this.button4.Size = new System.Drawing.Size(98, 28);
this.button4.TabIndex = 30;
this.button4.Text = "Export";
this.button4.UseVisualStyleBackColor = true;
//
// button3
//
this.button3.Location = new System.Drawing.Point(737, 49);
this.button3.Margin = new System.Windows.Forms.Padding(2);
this.button3.Name = "button3";
this.button3.Size = new System.Drawing.Size(98, 28);
this.button3.TabIndex = 29;
this.button3.Text = "Empty";
this.button3.UseVisualStyleBackColor = true;
this.button3.Click += new System.EventHandler(this.button3_Click);
//
// ResultBox
//
this.ResultBox.Location = new System.Drawing.Point(14, 124);
this.ResultBox.Margin = new System.Windows.Forms.Padding(2);
this.ResultBox.Name = "ResultBox";
this.ResultBox.Size = new System.Drawing.Size(110, 140);
this.ResultBox.TabIndex = 26;
this.ResultBox.Text = "";
//
// urltxt
//
this.urltxt.Location = new System.Drawing.Point(82, 39);
this.urltxt.Margin = new System.Windows.Forms.Padding(2);
this.urltxt.Name = "urltxt";
this.urltxt.Size = new System.Drawing.Size(614, 21);
this.urltxt.TabIndex = 25;
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(16, 41);
this.label1.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(53, 12);
this.label1.TabIndex = 24;
this.label1.Text = "json地址";
//
// button1
//
this.button1.Location = new System.Drawing.Point(598, 68);
this.button1.Margin = new System.Windows.Forms.Padding(2);
this.button1.Name = "button1";
this.button1.Size = new System.Drawing.Size(98, 21);
this.button1.TabIndex = 23;
this.button1.Text = "START ! ! !";
this.button1.UseVisualStyleBackColor = true;
this.button1.Click += new System.EventHandler(this.button1_Click);
//
// statusStrip1
//
this.statusStrip1.ImageScalingSize = new System.Drawing.Size(20, 20);
this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.toolStripStatusLabel6,
this.toolStripStatusLabel1,
this.toolStripStatusLabel7});
this.statusStrip1.Location = new System.Drawing.Point(0, 523);
this.statusStrip1.Name = "statusStrip1";
this.statusStrip1.Padding = new System.Windows.Forms.Padding(1, 0, 10, 0);
this.statusStrip1.Size = new System.Drawing.Size(713, 22);
this.statusStrip1.TabIndex = 32;
this.statusStrip1.Text = "statusStrip1";
//
// toolStripStatusLabel6
//
this.toolStripStatusLabel6.Name = "toolStripStatusLabel6";
this.toolStripStatusLabel6.Size = new System.Drawing.Size(52, 17);
this.toolStripStatusLabel6.Text = "Version";
//
// toolStripStatusLabel1
//
this.toolStripStatusLabel1.Name = "toolStripStatusLabel1";
this.toolStripStatusLabel1.Size = new System.Drawing.Size(0, 17);
//
// toolStripStatusLabel7
//
this.toolStripStatusLabel7.Name = "toolStripStatusLabel7";
this.toolStripStatusLabel7.Size = new System.Drawing.Size(0, 17);
//
// AAAAAAbox
//
this.AAAAAAbox.Location = new System.Drawing.Point(129, 124);
this.AAAAAAbox.Name = "AAAAAAbox";
this.AAAAAAbox.Size = new System.Drawing.Size(110, 140);
this.AAAAAAbox.TabIndex = 33;
this.AAAAAAbox.Text = "";
//
// richTextBox2
//
this.richTextBox2.Location = new System.Drawing.Point(737, 147);
this.richTextBox2.Name = "richTextBox2";
this.richTextBox2.Size = new System.Drawing.Size(98, 144);
this.richTextBox2.TabIndex = 34;
this.richTextBox2.Text = resources.GetString("richTextBox2.Text");
//
// button2
//
this.button2.Location = new System.Drawing.Point(737, 328);
this.button2.Name = "button2";
this.button2.Size = new System.Drawing.Size(75, 23);
this.button2.TabIndex = 35;
this.button2.Text = "button2";
this.button2.UseVisualStyleBackColor = true;
this.button2.Click += new System.EventHandler(this.button2_Click);
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(127, 103);
this.label2.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(41, 12);
this.label2.TabIndex = 36;
this.label2.Text = "AAAAAA";
//
// AAAAAbox
//
this.AAAAAbox.Location = new System.Drawing.Point(244, 124);
this.AAAAAbox.Margin = new System.Windows.Forms.Padding(2);
this.AAAAAbox.Name = "AAAAAbox";
this.AAAAAbox.Size = new System.Drawing.Size(110, 140);
this.AAAAAbox.TabIndex = 37;
this.AAAAAbox.Text = "";
//
// label3
//
this.label3.AutoSize = true;
this.label3.Location = new System.Drawing.Point(242, 103);
this.label3.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(35, 12);
this.label3.TabIndex = 36;
this.label3.Text = "AAAAA";
//
// AAAAbox
//
this.AAAAbox.Location = new System.Drawing.Point(358, 124);
this.AAAAbox.Margin = new System.Windows.Forms.Padding(2);
this.AAAAbox.Name = "AAAAbox";
this.AAAAbox.Size = new System.Drawing.Size(110, 140);
this.AAAAbox.TabIndex = 38;
this.AAAAbox.Text = "";
//
// label4
//
this.label4.AutoSize = true;
this.label4.Location = new System.Drawing.Point(356, 103);
this.label4.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
this.label4.Name = "label4";
this.label4.Size = new System.Drawing.Size(29, 12);
this.label4.TabIndex = 36;
this.label4.Text = "AAAA";
//
// AAAbox
//
this.AAAbox.Location = new System.Drawing.Point(472, 124);
this.AAAbox.Margin = new System.Windows.Forms.Padding(2);
this.AAAbox.Name = "AAAbox";
this.AAAbox.Size = new System.Drawing.Size(110, 140);
this.AAAbox.TabIndex = 39;
this.AAAbox.Text = "";
//
// label5
//
this.label5.AutoSize = true;
this.label5.Location = new System.Drawing.Point(470, 103);
this.label5.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
this.label5.Name = "label5";
this.label5.Size = new System.Drawing.Size(29, 12);
this.label5.TabIndex = 40;
this.label5.Text = "AAA ";
//
// label6
//
this.label6.AutoSize = true;
this.label6.Location = new System.Drawing.Point(584, 103);
this.label6.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
this.label6.Name = "label6";
this.label6.Size = new System.Drawing.Size(47, 12);
this.label6.TabIndex = 36;
this.label6.Text = "AAA结尾";
//
// endAAAbox
//
this.endAAAbox.Location = new System.Drawing.Point(586, 124);
this.endAAAbox.Margin = new System.Windows.Forms.Padding(2);
this.endAAAbox.Name = "endAAAbox";
this.endAAAbox.Size = new System.Drawing.Size(110, 140);
this.endAAAbox.TabIndex = 38;
this.endAAAbox.Text = "";
//
// label7
//
this.label7.AutoSize = true;
this.label7.Location = new System.Drawing.Point(12, 103);
this.label7.Name = "label7";
this.label7.Size = new System.Drawing.Size(53, 12);
this.label7.TabIndex = 41;
this.label7.Text = "所有号码";
//
// label8
//
this.label8.AutoSize = true;
this.label8.Location = new System.Drawing.Point(16, 72);
this.label8.Name = "label8";
this.label8.Size = new System.Drawing.Size(53, 12);
this.label8.TabIndex = 42;
this.label8.Text = "延迟(秒)";
//
// numericUpDown1
//
this.numericUpDown1.Location = new System.Drawing.Point(82, 70);
this.numericUpDown1.Minimum = new decimal(new int[] {
1,
0,
0,
0});
this.numericUpDown1.Name = "numericUpDown1";
this.numericUpDown1.Size = new System.Drawing.Size(120, 21);
this.numericUpDown1.TabIndex = 43;
this.numericUpDown1.Value = new decimal(new int[] {
3,
0,
0,
0});
//
// AABBbox
//
this.AABBbox.Location = new System.Drawing.Point(13, 299);
this.AABBbox.Name = "AABBbox";
this.AABBbox.Size = new System.Drawing.Size(110, 140);
this.AABBbox.TabIndex = 33;
this.AABBbox.Text = "";
//
// label9
//
this.label9.AutoSize = true;
this.label9.Location = new System.Drawing.Point(11, 278);
this.label9.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
this.label9.Name = "label9";
this.label9.Size = new System.Drawing.Size(29, 12);
this.label9.TabIndex = 36;
this.label9.Text = "AABB";
//
// ABCABCbox
//
this.ABCABCbox.Location = new System.Drawing.Point(244, 299);
this.ABCABCbox.Name = "ABCABCbox";
this.ABCABCbox.Size = new System.Drawing.Size(110, 140);
this.ABCABCbox.TabIndex = 33;
this.ABCABCbox.Text = "";
//
// label10
//
this.label10.AutoSize = true;
this.label10.Location = new System.Drawing.Point(242, 278);
this.label10.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
this.label10.Name = "label10";
this.label10.Size = new System.Drawing.Size(41, 12);
this.label10.TabIndex = 36;
this.label10.Text = "ABCABC";
//
// ABABbox
//
this.ABABbox.Location = new System.Drawing.Point(129, 299);
this.ABABbox.Name = "ABABbox";
this.ABABbox.Size = new System.Drawing.Size(110, 140);
this.ABABbox.TabIndex = 33;
this.ABABbox.Text = "";
//
// label11
//
this.label11.AutoSize = true;
this.label11.Location = new System.Drawing.Point(127, 278);
this.label11.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
this.label11.Name = "label11";
this.label11.Size = new System.Drawing.Size(29, 12);
this.label11.TabIndex = 36;
this.label11.Text = "ABAB";
//
// ABCDbox
//
this.ABCDbox.Location = new System.Drawing.Point(358, 299);
this.ABCDbox.Name = "ABCDbox";
this.ABCDbox.Size = new System.Drawing.Size(110, 140);
this.ABCDbox.TabIndex = 33;
this.ABCDbox.Text = "";
//
// label12
//
this.label12.AutoSize = true;
this.label12.Location = new System.Drawing.Point(356, 278);
this.label12.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
this.label12.Name = "label12";
this.label12.Size = new System.Drawing.Size(29, 12);
this.label12.TabIndex = 36;
this.label12.Text = "ABCD";
//
// ABCBAbox
//
this.ABCBAbox.Location = new System.Drawing.Point(472, 299);
this.ABCBAbox.Name = "ABCBAbox";
this.ABCBAbox.Size = new System.Drawing.Size(110, 140);
this.ABCBAbox.TabIndex = 33;
this.ABCBAbox.Text = "";
//
// label13
//
this.label13.AutoSize = true;
this.label13.Location = new System.Drawing.Point(470, 278);
this.label13.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
this.label13.Name = "label13";
this.label13.Size = new System.Drawing.Size(35, 12);
this.label13.TabIndex = 36;
this.label13.Text = "ABCBA";
//
// ABCCBAbox
//
this.ABCCBAbox.Location = new System.Drawing.Point(586, 299);
this.ABCCBAbox.Name = "ABCCBAbox";
this.ABCCBAbox.Size = new System.Drawing.Size(110, 140);
this.ABCCBAbox.TabIndex = 33;
this.ABCCBAbox.Text = "";
//
// label14
//
this.label14.AutoSize = true;
this.label14.Location = new System.Drawing.Point(584, 278);
this.label14.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
this.label14.Name = "label14";
this.label14.Size = new System.Drawing.Size(41, 12);
this.label14.TabIndex = 36;
this.label14.Text = "ABCCBA";
//
// menuStrip1
//
this.menuStrip1.ImageScalingSize = new System.Drawing.Size(20, 20);
this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.功能ToolStripMenuItem,
this.控制ToolStripMenuItem,
this.说明ToolStripMenuItem,
this.关于ToolStripMenuItem});
this.menuStrip1.Location = new System.Drawing.Point(0, 0);
this.menuStrip1.Name = "menuStrip1";
this.menuStrip1.Size = new System.Drawing.Size(713, 25);
this.menuStrip1.TabIndex = 44;
this.menuStrip1.Text = "menuStrip1";
//
// 功能ToolStripMenuItem
//
this.功能ToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.地址获取器30ToolStripMenuItem,
this.地址获取器20ToolStripMenuItem,
this.防封代理ToolStripMenuItem});
this.功能ToolStripMenuItem.Name = "功能ToolStripMenuItem";
this.功能ToolStripMenuItem.Size = new System.Drawing.Size(44, 21);
this.功能ToolStripMenuItem.Text = "功能";
this.功能ToolStripMenuItem.Click += new System.EventHandler(this.功能ToolStripMenuItem_Click);
//
// 地址获取器30ToolStripMenuItem
//
this.地址获取器30ToolStripMenuItem.Name = "地址获取器30ToolStripMenuItem";
this.地址获取器30ToolStripMenuItem.Size = new System.Drawing.Size(157, 22);
this.地址获取器30ToolStripMenuItem.Text = "地址获取器 3.0";
this.地址获取器30ToolStripMenuItem.Click += new System.EventHandler(this.地址获取器30ToolStripMenuItem_Click);
//
// 地址获取器20ToolStripMenuItem
//
this.地址获取器20ToolStripMenuItem.Name = "地址获取器20ToolStripMenuItem";
this.地址获取器20ToolStripMenuItem.Size = new System.Drawing.Size(157, 22);
this.地址获取器20ToolStripMenuItem.Text = "地址获取器 2.0";
this.地址获取器20ToolStripMenuItem.Click += new System.EventHandler(this.地址获取器20ToolStripMenuItem_Click);
//
// 防封代理ToolStripMenuItem
//
this.防封代理ToolStripMenuItem.Name = "防封代理ToolStripMenuItem";
this.防封代理ToolStripMenuItem.Size = new System.Drawing.Size(157, 22);
this.防封代理ToolStripMenuItem.Text = "防封代理";
this.防封代理ToolStripMenuItem.Click += new System.EventHandler(this.防封代理ToolStripMenuItem_Click);
//
// 控制ToolStripMenuItem
//
this.控制ToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.开始ToolStripMenuItem,
this.停止ToolStripMenuItem});
this.控制ToolStripMenuItem.Name = "控制ToolStripMenuItem";
this.控制ToolStripMenuItem.Size = new System.Drawing.Size(44, 21);
this.控制ToolStripMenuItem.Text = "控制";
//
// 开始ToolStripMenuItem
//
this.开始ToolStripMenuItem.Name = "开始ToolStripMenuItem";
this.开始ToolStripMenuItem.Size = new System.Drawing.Size(100, 22);
this.开始ToolStripMenuItem.Text = "开始";
this.开始ToolStripMenuItem.Click += new System.EventHandler(this.开始ToolStripMenuItem_Click);
//
// 停止ToolStripMenuItem
//
this.停止ToolStripMenuItem.Name = "停止ToolStripMenuItem";
this.停止ToolStripMenuItem.Size = new System.Drawing.Size(100, 22);
this.停止ToolStripMenuItem.Text = "停止";
this.停止ToolStripMenuItem.Click += new System.EventHandler(this.停止ToolStripMenuItem_Click);
//
// 说明ToolStripMenuItem
//
this.说明ToolStripMenuItem.Name = "说明ToolStripMenuItem";
this.说明ToolStripMenuItem.Size = new System.Drawing.Size(44, 21);
this.说明ToolStripMenuItem.Text = "说明";
this.说明ToolStripMenuItem.Click += new System.EventHandler(this.说明ToolStripMenuItem_Click);
//
// 关于ToolStripMenuItem
//
this.关于ToolStripMenuItem.Name = "关于ToolStripMenuItem";
this.关于ToolStripMenuItem.Size = new System.Drawing.Size(44, 21);
this.关于ToolStripMenuItem.Text = "关于";
this.关于ToolStripMenuItem.Visible = false;
this.关于ToolStripMenuItem.Click += new System.EventHandler(this.关于ToolStripMenuItem_Click);
//
// button6
//
this.button6.Location = new System.Drawing.Point(310, 68);
this.button6.Name = "button6";
this.button6.Size = new System.Drawing.Size(110, 21);
this.button6.TabIndex = 46;
this.button6.Text = "地址获取器 2.0";
this.button6.UseVisualStyleBackColor = true;
this.button6.Click += new System.EventHandler(this.button6_Click);
//
// button7
//
this.button7.Location = new System.Drawing.Point(737, 371);
this.button7.Margin = new System.Windows.Forms.Padding(2);
this.button7.Name = "button7";
this.button7.Size = new System.Drawing.Size(56, 18);
this.button7.TabIndex = 47;
this.button7.Text = "button7";
this.button7.UseVisualStyleBackColor = true;
this.button7.Click += new System.EventHandler(this.button7_Click);
//
// Checktimer
//
this.Checktimer.Enabled = true;
this.Checktimer.Interval = 600000;
this.Checktimer.Tick += new System.EventHandler(this.VersionChecktimer_Tick);
//
// button5
//
this.button5.Location = new System.Drawing.Point(439, 68);
this.button5.Name = "button5";
this.button5.Size = new System.Drawing.Size(143, 21);
this.button5.TabIndex = 46;
this.button5.Text = "地址获取器 3.0(推荐)";
this.button5.UseVisualStyleBackColor = true;
this.button5.Click += new System.EventHandler(this.button5_Click);
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(713, 545);
this.Controls.Add(this.button7);
this.Controls.Add(this.button5);
this.Controls.Add(this.button6);
this.Controls.Add(this.numericUpDown1);
this.Controls.Add(this.label8);
this.Controls.Add(this.label7);
this.Controls.Add(this.label5);
this.Controls.Add(this.AAAbox);
this.Controls.Add(this.endAAAbox);
this.Controls.Add(this.AAAAbox);
this.Controls.Add(this.AAAAAbox);
this.Controls.Add(this.label6);
this.Controls.Add(this.label4);
this.Controls.Add(this.label3);
this.Controls.Add(this.label11);
this.Controls.Add(this.label14);
this.Controls.Add(this.label13);
this.Controls.Add(this.label12);
this.Controls.Add(this.label10);
this.Controls.Add(this.label9);
this.Controls.Add(this.label2);
this.Controls.Add(this.button2);
this.Controls.Add(this.richTextBox2);
this.Controls.Add(this.ABABbox);
this.Controls.Add(this.ABCCBAbox);
this.Controls.Add(this.ABCBAbox);
this.Controls.Add(this.ABCDbox);
this.Controls.Add(this.ABCABCbox);
this.Controls.Add(this.AABBbox);
this.Controls.Add(this.AAAAAAbox);
this.Controls.Add(this.statusStrip1);
this.Controls.Add(this.menuStrip1);
this.Controls.Add(this.stabox);
this.Controls.Add(this.button4);
this.Controls.Add(this.button3);
this.Controls.Add(this.ResultBox);
this.Controls.Add(this.urltxt);
this.Controls.Add(this.label1);
this.Controls.Add(this.button1);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.MainMenuStrip = this.menuStrip1;
this.Margin = new System.Windows.Forms.Padding(2);
this.MaximizeBox = false;
this.Name = "Form1";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "NumSieve By Kiros ";
this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.Form1_FormClosed);
this.Load += new System.EventHandler(this.Form1_Load);
this.statusStrip1.ResumeLayout(false);
this.statusStrip1.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.numericUpDown1)).EndInit();
this.menuStrip1.ResumeLayout(false);
this.menuStrip1.PerformLayout();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.ListBox stabox;
private System.Windows.Forms.Button button4;
private System.Windows.Forms.Button button3;
private System.Windows.Forms.RichTextBox ResultBox;
private System.Windows.Forms.TextBox urltxt;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.Button button1;
private System.Windows.Forms.StatusStrip statusStrip1;
private System.Windows.Forms.RichTextBox AAAAAAbox;
private System.Windows.Forms.RichTextBox richTextBox2;
private System.Windows.Forms.Button button2;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.RichTextBox AAAAAbox;
private System.Windows.Forms.Label label3;
private System.Windows.Forms.RichTextBox AAAAbox;
private System.Windows.Forms.Label label4;
private System.Windows.Forms.RichTextBox AAAbox;
private System.Windows.Forms.Label label5;
private System.Windows.Forms.Label label6;
private System.Windows.Forms.RichTextBox endAAAbox;
private System.Windows.Forms.Label label7;
private System.Windows.Forms.Label label8;
private System.Windows.Forms.NumericUpDown numericUpDown1;
private System.Windows.Forms.RichTextBox AABBbox;
private System.Windows.Forms.Label label9;
private System.Windows.Forms.RichTextBox ABCABCbox;
private System.Windows.Forms.Label label10;
private System.Windows.Forms.RichTextBox ABABbox;
private System.Windows.Forms.Label label11;
private System.Windows.Forms.RichTextBox ABCDbox;
private System.Windows.Forms.Label label12;
private System.Windows.Forms.RichTextBox ABCBAbox;
private System.Windows.Forms.Label label13;
private System.Windows.Forms.RichTextBox ABCCBAbox;
private System.Windows.Forms.Label label14;
private System.Windows.Forms.MenuStrip menuStrip1;
private System.Windows.Forms.ToolStripMenuItem 功能ToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem 关于ToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem 控制ToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem 开始ToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem 停止ToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem 防封代理ToolStripMenuItem;
private System.Windows.Forms.ToolStripStatusLabel toolStripStatusLabel6;
private System.Windows.Forms.ToolStripStatusLabel toolStripStatusLabel7;
private System.Windows.Forms.ToolStripMenuItem 说明ToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem 地址获取器20ToolStripMenuItem;
private System.Windows.Forms.Button button6;
private System.Windows.Forms.Button button7;
private System.Windows.Forms.Timer Checktimer;
private System.Windows.Forms.Timer timer1;
private System.Windows.Forms.ToolStripStatusLabel toolStripStatusLabel1;
private System.Windows.Forms.ToolStripMenuItem 地址获取器30ToolStripMenuItem;
private System.Windows.Forms.Button button5;
}
}