forked from hong-ye-feng-le/PVFSimple
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Form1.Designer.cs
4793 lines (4785 loc) · 292 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
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
namespace PVFSimple
{
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();
}
if (base.IsDisposed==false)
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.ANI开始在线提取button = new System.Windows.Forms.Button();
this.pvf中的全路径radioButton = new System.Windows.Forms.RadioButton();
this.Windows中的全路径radioButton = new System.Windows.Forms.RadioButton();
this.ANI开始提取button = new System.Windows.Forms.Button();
this.ANI使用说明button = new System.Windows.Forms.Button();
this.ANI查找img路径checkBox = new System.Windows.Forms.CheckBox();
this.ANI导出目录text = new System.Windows.Forms.MaskedTextBox();
this.label11 = new System.Windows.Forms.Label();
this.ANIpvf文件目录text = new System.Windows.Forms.MaskedTextBox();
this.ANI全路径文件text = new System.Windows.Forms.MaskedTextBox();
this.label12 = new System.Windows.Forms.Label();
this.label13 = new System.Windows.Forms.Label();
this.APC开始在线提取button = new System.Windows.Forms.Button();
this.APC编号textbutton = new System.Windows.Forms.Button();
this.APC开始提取button = new System.Windows.Forms.Button();
this.APC使用说明button = new System.Windows.Forms.Button();
this.APC查找img路径checkBox = new System.Windows.Forms.CheckBox();
this.APC导出目录text = new System.Windows.Forms.MaskedTextBox();
this.label14 = new System.Windows.Forms.Label();
this.APCpvf文件目录text = new System.Windows.Forms.MaskedTextBox();
this.APC编号text = new System.Windows.Forms.MaskedTextBox();
this.label15 = new System.Windows.Forms.Label();
this.label16 = new System.Windows.Forms.Label();
this.特效开始在线提取button = new System.Windows.Forms.Button();
this.特效编号textbutton = new System.Windows.Forms.Button();
this.特效开始提取button = new System.Windows.Forms.Button();
this.特效使用说明button = new System.Windows.Forms.Button();
this.特效查找img路径checkBox = new System.Windows.Forms.CheckBox();
this.特效导出目录text = new System.Windows.Forms.MaskedTextBox();
this.label8 = new System.Windows.Forms.Label();
this.特效pvf文件目录text = new System.Windows.Forms.MaskedTextBox();
this.特效编号text = new System.Windows.Forms.MaskedTextBox();
this.label9 = new System.Windows.Forms.Label();
this.label10 = new System.Windows.Forms.Label();
this.怪物开始在线提取button = new System.Windows.Forms.Button();
this.怪物编号textbutton = new System.Windows.Forms.Button();
this.怪物开始提取button = new System.Windows.Forms.Button();
this.怪物使用说明button = new System.Windows.Forms.Button();
this.怪物查找img路径checkBox = new System.Windows.Forms.CheckBox();
this.怪物导出目录text = new System.Windows.Forms.MaskedTextBox();
this.label5 = new System.Windows.Forms.Label();
this.怪物pvf文件目录text = new System.Windows.Forms.MaskedTextBox();
this.怪物编号text = new System.Windows.Forms.MaskedTextBox();
this.label6 = new System.Windows.Forms.Label();
this.label7 = new System.Windows.Forms.Label();
this.开始在线提取城镇button = new System.Windows.Forms.Button();
this.城镇编号textbutton = new System.Windows.Forms.Button();
this.开始提取城镇 = new System.Windows.Forms.Button();
this.城镇提取使用说明button = new System.Windows.Forms.Button();
this.城镇提取完后查找img路径 = new System.Windows.Forms.CheckBox();
this.城镇导出目录txt = new System.Windows.Forms.MaskedTextBox();
this.城镇导出目录 = new System.Windows.Forms.Label();
this.城镇pvf文件txt = new System.Windows.Forms.MaskedTextBox();
this.城镇编号txt = new System.Windows.Forms.MaskedTextBox();
this.城镇文件所在目录 = new System.Windows.Forms.Label();
this.城镇编号 = new System.Windows.Forms.Label();
this.开始在线提取副本button = new System.Windows.Forms.Button();
this.副本编号textbutton = new System.Windows.Forms.Button();
this.开始提取副本 = new System.Windows.Forms.Button();
this.副本提取使用说明button = new System.Windows.Forms.Button();
this.副本提取完后查找img路径 = new System.Windows.Forms.CheckBox();
this.提取并导出的目录 = new System.Windows.Forms.MaskedTextBox();
this.label3 = new System.Windows.Forms.Label();
this.PVF文件所在目录 = new System.Windows.Forms.MaskedTextBox();
this.副本编号 = new System.Windows.Forms.MaskedTextBox();
this.label1 = new System.Windows.Forms.Label();
this.label2 = new System.Windows.Forms.Label();
this.Lst列表寻找结果信息button = new System.Windows.Forms.Button();
this.Lst列表寻找使用说明button = new System.Windows.Forms.Button();
this.Lst列表寻找开始寻找button = new System.Windows.Forms.Button();
this.Lst列表寻找根据路径radioButton = new System.Windows.Forms.RadioButton();
this.Lst列表寻找根据编号radioButton = new System.Windows.Forms.RadioButton();
this.Lst列表寻找被寻找的编号或路径button = new System.Windows.Forms.Button();
this.Lst列表寻找列表内容button = new System.Windows.Forms.Button();
this.提取宝珠使用说明button = new System.Windows.Forms.Button();
this.提取宝珠寻找img路径checkBox = new System.Windows.Forms.CheckBox();
this.提取宝珠开始在线提取button = new System.Windows.Forms.Button();
this.提取宝珠开始本地提取button = new System.Windows.Forms.Button();
this.提取宝珠导出目录textmaskedTextBox = new System.Windows.Forms.MaskedTextBox();
this.label31 = new System.Windows.Forms.Label();
this.提取宝珠编号button = new System.Windows.Forms.Button();
this.提取宝珠pvf所在目录textmaskedTextBox = new System.Windows.Forms.MaskedTextBox();
this.提取宝珠编号textmaskedTextBox = new System.Windows.Forms.MaskedTextBox();
this.label29 = new System.Windows.Forms.Label();
this.label30 = new System.Windows.Forms.Label();
this.寻找礼包记录信息button = new System.Windows.Forms.Button();
this.寻找礼包开始在线寻找button = new System.Windows.Forms.Button();
this.groupBox22 = new System.Windows.Forms.GroupBox();
this.寻找礼包深层搜索checkBox = new System.Windows.Forms.CheckBox();
this.groupBox21 = new System.Windows.Forms.GroupBox();
this.寻找礼包equ代码checkBox = new System.Windows.Forms.CheckBox();
this.寻找礼包stk代码checkBox = new System.Windows.Forms.CheckBox();
this.寻找礼包开始本地寻找button = new System.Windows.Forms.Button();
this.寻找礼包使用说明button = new System.Windows.Forms.Button();
this.寻找礼包编号button = new System.Windows.Forms.Button();
this.寻找礼包pvf所在目录textmaskedTextBox = new System.Windows.Forms.MaskedTextBox();
this.寻找礼包编号textmaskedTextBox = new System.Windows.Forms.MaskedTextBox();
this.label26 = new System.Windows.Forms.Label();
this.label28 = new System.Windows.Forms.Label();
this.装备编号text = new System.Windows.Forms.TextBox();
this.装备开始在线提取button = new System.Windows.Forms.Button();
this.装备提取宠物crecheckBox = new System.Windows.Forms.CheckBox();
this.groupBox23 = new System.Windows.Forms.GroupBox();
this.装备查找img路径checkBox = new System.Windows.Forms.CheckBox();
this.装备提取模型checkBox = new System.Windows.Forms.CheckBox();
this.装备编号textbutton = new System.Windows.Forms.Button();
this.装备开始提取button = new System.Windows.Forms.Button();
this.装备提取使用说明button = new System.Windows.Forms.Button();
this.装备导出目录text = new System.Windows.Forms.MaskedTextBox();
this.label17 = new System.Windows.Forms.Label();
this.装备pvf文件目录text = new System.Windows.Forms.MaskedTextBox();
this.label18 = new System.Windows.Forms.Label();
this.label19 = new System.Windows.Forms.Label();
this.NPK操作使用说明button = new System.Windows.Forms.Button();
this.label23 = new System.Windows.Forms.Label();
this.groupBox13 = new System.Windows.Forms.GroupBox();
this.NPK操作npk文件名radioButton = new System.Windows.Forms.RadioButton();
this.NPK操作img全路径radioButton = new System.Windows.Forms.RadioButton();
this.NPK操作img名称radioButton = new System.Windows.Forms.RadioButton();
this.groupBox12 = new System.Windows.Forms.GroupBox();
this.NPK操作模糊查找radioButton = new System.Windows.Forms.RadioButton();
this.NPK操作精准查找radioButton = new System.Windows.Forms.RadioButton();
this.NPK操作查询button = new System.Windows.Forms.Button();
this.NPK操作查找内容maskedTextBox = new System.Windows.Forms.MaskedTextBox();
this.NPK操作查找内容button = new System.Windows.Forms.Button();
this.label20 = new System.Windows.Forms.Label();
this.NPK操作数据库mdbcomboBox = new System.Windows.Forms.ComboBox();
this.NPK操作img2目录button = new System.Windows.Forms.Button();
this.NPK操作img2目录comboBox = new System.Windows.Forms.ComboBox();
this.NPK操作创建数据库button = new System.Windows.Forms.Button();
this.label21 = new System.Windows.Forms.Label();
this.label22 = new System.Windows.Forms.Label();
this.NPK操作列表框ListView = new System.Windows.Forms.ListView();
this.columnHeader1 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.columnHeader2 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.columnHeader3 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.columnHeader4 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.NPK查询contextMenuStrip = new System.Windows.Forms.ContextMenuStrip(this.components);
this.定位NPK文件ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.选择所有查找项ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.复制选中img全路径ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.复制选中img名称ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.复制选中npk文件名ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.导出所有查找结果ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.NPKimg合并labelmb = new System.Windows.Forms.Label();
this.NPKimg合并maskedTextBox = new System.Windows.Forms.MaskedTextBox();
this.NPKimg合并checkBox = new System.Windows.Forms.CheckBox();
this.NPKimg合并使用说明button = new System.Windows.Forms.Button();
this.NPKimg合并button = new System.Windows.Forms.Button();
this.NPKimg合并label大小 = new System.Windows.Forms.Label();
this.groupBox19 = new System.Windows.Forms.GroupBox();
this.NPKimg加入删除我自己radioButton = new System.Windows.Forms.RadioButton();
this.NPKimg加入删除对方radioButton = new System.Windows.Forms.RadioButton();
this.NPKimg加入使用说明button = new System.Windows.Forms.Button();
this.groupBox18 = new System.Windows.Forms.GroupBox();
this.NPKimg加入按原文件radioButton = new System.Windows.Forms.RadioButton();
this.NPKimg加入按全路径radioButton = new System.Windows.Forms.RadioButton();
this.NPKimg加入开始加入button = new System.Windows.Forms.Button();
this.NPKimg加入不存在创建checkBox = new System.Windows.Forms.CheckBox();
this.NPKimg全路径提取使用说明button = new System.Windows.Forms.Button();
this.NPKimg全路径提取button = new System.Windows.Forms.Button();
this.NPKimgNPKimg全路径radioButton = new System.Windows.Forms.RadioButton();
this.NPKimg明文全路径radioButton = new System.Windows.Forms.RadioButton();
this.NPKimg装备模型全路径radioButton = new System.Windows.Forms.RadioButton();
this.NPKimg开始去重复使用说明button = new System.Windows.Forms.Button();
this.NPKimg开始去重复button = new System.Windows.Forms.Button();
this.NPKimg删除所有radioButton = new System.Windows.Forms.RadioButton();
this.NPKimg删除第一个找到的radioButton = new System.Windows.Forms.RadioButton();
this.NPKimg开始删除使用说明button = new System.Windows.Forms.Button();
this.NPKimg开始删除button = new System.Windows.Forms.Button();
this.NPKimg全路径保存NPK文件名radioButton = new System.Windows.Forms.RadioButton();
this.NPKimg使用说明button = new System.Windows.Forms.Button();
this.NPKimg开始提取并保存button = new System.Windows.Forms.Button();
this.NPKimg按原NPK文件名输出radioButton = new System.Windows.Forms.RadioButton();
this.NPKimg合并为一个NPK保存radioButton = new System.Windows.Forms.RadioButton();
this.NPKimg全路径文本maskedTextBox = new System.Windows.Forms.MaskedTextBox();
this.NPKimg目录maskedTextBox = new System.Windows.Forms.MaskedTextBox();
this.label25 = new System.Windows.Forms.Label();
this.NPKimg提取并导出目录maskedTextBox = new System.Windows.Forms.MaskedTextBox();
this.label27 = new System.Windows.Forms.Label();
this.label24 = new System.Windows.Forms.Label();
this.reoGridControl1 = new unvell.ReoGrid.ReoGridControl();
this.设计图表格contextMenuStrip = new System.Windows.Forms.ContextMenuStrip(this.components);
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.物品品级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.卖出价格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.图标边框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.填充所有必填默认ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.填充所有默认额外可选ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.设计图导出到PVFradioButton = new System.Windows.Forms.RadioButton();
this.设计图导出到本地radioButton = new System.Windows.Forms.RadioButton();
this.设计图导出目录maskedTextBox = new System.Windows.Forms.MaskedTextBox();
this.设计图开始导出button = new System.Windows.Forms.Button();
this.label32 = new System.Windows.Forms.Label();
this.label4 = new System.Windows.Forms.Label();
this.Lst列表加入缓存button = new System.Windows.Forms.Button();
this.Lst列表加入使用说明button = new System.Windows.Forms.Button();
this.groupBox1 = new System.Windows.Forms.GroupBox();
this.groupBox31 = new System.Windows.Forms.GroupBox();
this.Lst列表加入删除自己radioButton = new System.Windows.Forms.RadioButton();
this.Lst列表加入删除对方radioButton = new System.Windows.Forms.RadioButton();
this.groupBox29 = new System.Windows.Forms.GroupBox();
this.Lst列表加入根据整行radioButton = new System.Windows.Forms.RadioButton();
this.Lst列表加入根据编号radioButton = new System.Windows.Forms.RadioButton();
this.Lst列表加入开始加入button = new System.Windows.Forms.Button();
this.groupBox2 = new System.Windows.Forms.GroupBox();
this.Lst列表加入单行去重button = new System.Windows.Forms.Button();
this.Lst列表加入打乱排序button = new System.Windows.Forms.Button();
this.Lst列表加入倒序排序button = new System.Windows.Forms.Button();
this.Lst列表加入正序排序button = new System.Windows.Forms.Button();
this.Lst列表待加入内容button = new System.Windows.Forms.Button();
this.Lst列表加入lst内容button = new System.Windows.Forms.Button();
this.tabControl1 = new System.Windows.Forms.TabControl();
this.tabPage1 = new System.Windows.Forms.TabPage();
this.groupBox8 = new System.Windows.Forms.GroupBox();
this.groupBox7 = new System.Windows.Forms.GroupBox();
this.groupBox6 = new System.Windows.Forms.GroupBox();
this.groupBox5 = new System.Windows.Forms.GroupBox();
this.groupBox4 = new System.Windows.Forms.GroupBox();
this.groupBox3 = new System.Windows.Forms.GroupBox();
this.tabPage2 = new System.Windows.Forms.TabPage();
this.groupBox33 = new System.Windows.Forms.GroupBox();
this.Etc套装删除自己radioButton = new System.Windows.Forms.RadioButton();
this.Etc套装删除对方radioButton = new System.Windows.Forms.RadioButton();
this.Etc套装缓存信息Button = new System.Windows.Forms.Button();
this.Etc套装内容Button = new System.Windows.Forms.Button();
this.Etc套装使用说明Button = new System.Windows.Forms.Button();
this.Etc套装待加入内容Button = new System.Windows.Forms.Button();
this.Etc套装开始加入Button = new System.Windows.Forms.Button();
this.groupBox15 = new System.Windows.Forms.GroupBox();
this.groupBox14 = new System.Windows.Forms.GroupBox();
this.寻找礼包导出礼包radioButton = new System.Windows.Forms.RadioButton();
this.寻找礼包不导出radioButton = new System.Windows.Forms.RadioButton();
this.寻找礼包所有radioButton = new System.Windows.Forms.RadioButton();
this.groupBox11 = new System.Windows.Forms.GroupBox();
this.groupBox10 = new System.Windows.Forms.GroupBox();
this.groupBox9 = new System.Windows.Forms.GroupBox();
this.tabPage3 = new System.Windows.Forms.TabPage();
this.groupBox20 = new System.Windows.Forms.GroupBox();
this.groupBox17 = new System.Windows.Forms.GroupBox();
this.NPK操作删除数据库button = new System.Windows.Forms.Button();
this.tabPage4 = new System.Windows.Forms.TabPage();
this.groupBox30 = new System.Windows.Forms.GroupBox();
this.groupBox27 = new System.Windows.Forms.GroupBox();
this.groupBox28 = new System.Windows.Forms.GroupBox();
this.groupBox26 = new System.Windows.Forms.GroupBox();
this.groupBox25 = new System.Windows.Forms.GroupBox();
this.groupBox24 = new System.Windows.Forms.GroupBox();
this.tabPage5 = new System.Windows.Forms.TabPage();
this.设计图转为繁体checkBox = new System.Windows.Forms.CheckBox();
this.设计图lst生成button = new System.Windows.Forms.Button();
this.设计图使用说明button = new System.Windows.Forms.Button();
this.tabPage11 = new System.Windows.Forms.TabPage();
this.tabControl3 = new System.Windows.Forms.TabControl();
this.tabPage23 = new System.Windows.Forms.TabPage();
this.完成奖励类型comboBox = new System.Windows.Forms.ComboBox();
this.完成条件子类型comboBox = new System.Windows.Forms.ComboBox();
this.完成条件类型comboBox = new System.Windows.Forms.ComboBox();
this.任务类型comboBox = new System.Windows.Forms.ComboBox();
this.reoGridControl2 = new unvell.ReoGrid.ReoGridControl();
this.任务contextMenuStrip = new System.Windows.Forms.ContextMenuStrip(this.components);
this.设置行数ToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
this.重置任务表格ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.查看详细信息ToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
this.填充默认必填ToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
this.接取npcToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.完成npcToolStripMenuItem = 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.无法放弃ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.填充所有默认必填ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.填充所有默认额外可选ToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
this.label34 = new System.Windows.Forms.Label();
this.tabPage24 = new System.Windows.Forms.TabPage();
this.reoGridControl3 = new unvell.ReoGrid.ReoGridControl();
this.任务转为繁体checkBox = new System.Windows.Forms.CheckBox();
this.任务lst生成button = new System.Windows.Forms.Button();
this.任务使用说明button = new System.Windows.Forms.Button();
this.任务开始导出button = new System.Windows.Forms.Button();
this.任务导出到PVFradioButton = new System.Windows.Forms.RadioButton();
this.任务导出本地radioButton = new System.Windows.Forms.RadioButton();
this.任务导出目录maskedTextBox = new System.Windows.Forms.MaskedTextBox();
this.label33 = new System.Windows.Forms.Label();
this.tabPage6 = new System.Windows.Forms.TabPage();
this.tabControl2 = new System.Windows.Forms.TabControl();
this.tabPage8 = new System.Windows.Forms.TabPage();
this.checkBox2 = new System.Windows.Forms.CheckBox();
this.button5 = new System.Windows.Forms.Button();
this.商城礼包使用说明button = new System.Windows.Forms.Button();
this.button7 = new System.Windows.Forms.Button();
this.radioButton2 = new System.Windows.Forms.RadioButton();
this.radioButton3 = new System.Windows.Forms.RadioButton();
this.maskedTextBox2 = new System.Windows.Forms.MaskedTextBox();
this.label35 = new System.Windows.Forms.Label();
this.reoGridControl4 = new unvell.ReoGrid.ReoGridControl();
this.tabPage9 = new System.Windows.Forms.TabPage();
this.tabPage7 = new System.Windows.Forms.TabPage();
this.tabPage10 = new System.Windows.Forms.TabPage();
this.tabPage12 = new System.Windows.Forms.TabPage();
this.tabControl4 = new System.Windows.Forms.TabControl();
this.tabPage13 = new System.Windows.Forms.TabPage();
this.groupBox35 = new System.Windows.Forms.GroupBox();
this.Nut打乱变量名文本maskedTextBox = new System.Windows.Forms.MaskedTextBox();
this.label42 = new System.Windows.Forms.Label();
this.Nut打乱加入文本textBox = new System.Windows.Forms.TextBox();
this.Nut打乱打开编码comboBox = new System.Windows.Forms.ComboBox();
this.Nut打乱扩展名comboBox = new System.Windows.Forms.ComboBox();
this.label41 = new System.Windows.Forms.Label();
this.label40 = new System.Windows.Forms.Label();
this.Nut打乱开始打乱button = new System.Windows.Forms.Button();
this.Nut打乱使用说明button = new System.Windows.Forms.Button();
this.Nut打乱所在目录maskedTextBox = new System.Windows.Forms.MaskedTextBox();
this.label36 = new System.Windows.Forms.Label();
this.label39 = new System.Windows.Forms.Label();
this.groupBox34 = new System.Windows.Forms.GroupBox();
this.修复裸体本地生成button = new System.Windows.Forms.Button();
this.修复裸体选择角色comboBox = new System.Windows.Forms.ComboBox();
this.修复裸体使用说明button = new System.Windows.Forms.Button();
this.修复裸体导出目录maskedTextBox = new System.Windows.Forms.MaskedTextBox();
this.修复裸体动作文件maskedTextBox = new System.Windows.Forms.MaskedTextBox();
this.label37 = new System.Windows.Forms.Label();
this.label38 = new System.Windows.Forms.Label();
this.tabPage14 = new System.Windows.Forms.TabPage();
this.groupBox16 = new System.Windows.Forms.GroupBox();
this.button2 = new System.Windows.Forms.Button();
this.CeShi = new System.Windows.Forms.Button();
this.richTextBox1 = new System.Windows.Forms.RichTextBox();
this.pictureBox1 = new System.Windows.Forms.PictureBox();
this.groupBox32 = new System.Windows.Forms.GroupBox();
this.progressBar1 = new System.Windows.Forms.ProgressBar();
this.气泡timer = new System.Windows.Forms.Timer(this.components);
this.groupBox22.SuspendLayout();
this.groupBox21.SuspendLayout();
this.groupBox23.SuspendLayout();
this.groupBox13.SuspendLayout();
this.groupBox12.SuspendLayout();
this.NPK查询contextMenuStrip.SuspendLayout();
this.groupBox19.SuspendLayout();
this.groupBox18.SuspendLayout();
this.设计图表格contextMenuStrip.SuspendLayout();
this.groupBox1.SuspendLayout();
this.groupBox31.SuspendLayout();
this.groupBox29.SuspendLayout();
this.groupBox2.SuspendLayout();
this.tabControl1.SuspendLayout();
this.tabPage1.SuspendLayout();
this.groupBox8.SuspendLayout();
this.groupBox7.SuspendLayout();
this.groupBox6.SuspendLayout();
this.groupBox5.SuspendLayout();
this.groupBox4.SuspendLayout();
this.groupBox3.SuspendLayout();
this.tabPage2.SuspendLayout();
this.groupBox33.SuspendLayout();
this.groupBox15.SuspendLayout();
this.groupBox14.SuspendLayout();
this.groupBox11.SuspendLayout();
this.groupBox10.SuspendLayout();
this.groupBox9.SuspendLayout();
this.tabPage3.SuspendLayout();
this.groupBox20.SuspendLayout();
this.groupBox17.SuspendLayout();
this.tabPage4.SuspendLayout();
this.groupBox30.SuspendLayout();
this.groupBox27.SuspendLayout();
this.groupBox28.SuspendLayout();
this.groupBox26.SuspendLayout();
this.groupBox25.SuspendLayout();
this.groupBox24.SuspendLayout();
this.tabPage5.SuspendLayout();
this.tabPage11.SuspendLayout();
this.tabControl3.SuspendLayout();
this.tabPage23.SuspendLayout();
this.任务contextMenuStrip.SuspendLayout();
this.tabPage24.SuspendLayout();
this.tabPage6.SuspendLayout();
this.tabControl2.SuspendLayout();
this.tabPage8.SuspendLayout();
this.tabPage12.SuspendLayout();
this.tabControl4.SuspendLayout();
this.tabPage13.SuspendLayout();
this.groupBox35.SuspendLayout();
this.groupBox34.SuspendLayout();
this.tabPage14.SuspendLayout();
this.groupBox16.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
this.groupBox32.SuspendLayout();
this.SuspendLayout();
//
// ANI开始在线提取button
//
this.ANI开始在线提取button.BackColor = System.Drawing.Color.Transparent;
this.ANI开始在线提取button.Location = new System.Drawing.Point(265, 163);
this.ANI开始在线提取button.Name = "ANI开始在线提取button";
this.ANI开始在线提取button.Size = new System.Drawing.Size(120, 27);
this.ANI开始在线提取button.TabIndex = 31;
this.ANI开始在线提取button.Text = "在线寻找ani;als";
this.ANI开始在线提取button.UseVisualStyleBackColor = false;
this.ANI开始在线提取button.Click += new System.EventHandler(this.ANI开始在线提取button_Click);
//
// pvf中的全路径radioButton
//
this.pvf中的全路径radioButton.AutoSize = true;
this.pvf中的全路径radioButton.BackColor = System.Drawing.Color.White;
this.pvf中的全路径radioButton.Checked = true;
this.pvf中的全路径radioButton.Location = new System.Drawing.Point(129, 119);
this.pvf中的全路径radioButton.Name = "pvf中的全路径radioButton";
this.pvf中的全路径radioButton.Size = new System.Drawing.Size(101, 16);
this.pvf中的全路径radioButton.TabIndex = 29;
this.pvf中的全路径radioButton.TabStop = true;
this.pvf中的全路径radioButton.Text = "pvf中的全路径";
this.pvf中的全路径radioButton.UseVisualStyleBackColor = false;
//
// Windows中的全路径radioButton
//
this.Windows中的全路径radioButton.AutoSize = true;
this.Windows中的全路径radioButton.BackColor = System.Drawing.Color.White;
this.Windows中的全路径radioButton.Location = new System.Drawing.Point(263, 119);
this.Windows中的全路径radioButton.Name = "Windows中的全路径radioButton";
this.Windows中的全路径radioButton.Size = new System.Drawing.Size(125, 16);
this.Windows中的全路径radioButton.TabIndex = 28;
this.Windows中的全路径radioButton.Text = "Windows中的全路径";
this.Windows中的全路径radioButton.UseVisualStyleBackColor = false;
//
// ANI开始提取button
//
this.ANI开始提取button.BackColor = System.Drawing.Color.Transparent;
this.ANI开始提取button.Location = new System.Drawing.Point(112, 163);
this.ANI开始提取button.Name = "ANI开始提取button";
this.ANI开始提取button.Size = new System.Drawing.Size(120, 27);
this.ANI开始提取button.TabIndex = 27;
this.ANI开始提取button.Text = "本地寻找ani;als";
this.ANI开始提取button.UseVisualStyleBackColor = false;
this.ANI开始提取button.Click += new System.EventHandler(this.ANI开始提取button_Click);
//
// ANI使用说明button
//
this.ANI使用说明button.Location = new System.Drawing.Point(6, 173);
this.ANI使用说明button.Name = "ANI使用说明button";
this.ANI使用说明button.Size = new System.Drawing.Size(67, 24);
this.ANI使用说明button.TabIndex = 26;
this.ANI使用说明button.Text = "使用说明";
this.ANI使用说明button.UseVisualStyleBackColor = true;
this.ANI使用说明button.Click += new System.EventHandler(this.ANI使用说明button_Click);
//
// ANI查找img路径checkBox
//
this.ANI查找img路径checkBox.AutoSize = true;
this.ANI查找img路径checkBox.BackColor = System.Drawing.Color.White;
this.ANI查找img路径checkBox.Checked = true;
this.ANI查找img路径checkBox.CheckState = System.Windows.Forms.CheckState.Checked;
this.ANI查找img路径checkBox.Location = new System.Drawing.Point(163, 141);
this.ANI查找img路径checkBox.Name = "ANI查找img路径checkBox";
this.ANI查找img路径checkBox.Size = new System.Drawing.Size(180, 16);
this.ANI查找img路径checkBox.TabIndex = 25;
this.ANI查找img路径checkBox.Text = "ani;als提取完后查找img路径";
this.ANI查找img路径checkBox.UseVisualStyleBackColor = false;
//
// ANI导出目录text
//
this.ANI导出目录text.BackColor = System.Drawing.SystemColors.ButtonHighlight;
this.ANI导出目录text.Location = new System.Drawing.Point(130, 90);
this.ANI导出目录text.Name = "ANI导出目录text";
this.ANI导出目录text.Size = new System.Drawing.Size(290, 21);
this.ANI导出目录text.TabIndex = 23;
this.ANI导出目录text.MouseDown += new System.Windows.Forms.MouseEventHandler(this.ANI导出目录text_MouseDown);
//
// label11
//
this.label11.AutoSize = true;
this.label11.BackColor = System.Drawing.Color.White;
this.label11.Location = new System.Drawing.Point(25, 92);
this.label11.Name = "label11";
this.label11.Size = new System.Drawing.Size(113, 12);
this.label11.TabIndex = 24;
this.label11.Text = "提取并导出的目录:";
//
// ANIpvf文件目录text
//
this.ANIpvf文件目录text.BackColor = System.Drawing.SystemColors.ButtonHighlight;
this.ANIpvf文件目录text.Location = new System.Drawing.Point(130, 57);
this.ANIpvf文件目录text.Name = "ANIpvf文件目录text";
this.ANIpvf文件目录text.Size = new System.Drawing.Size(290, 21);
this.ANIpvf文件目录text.TabIndex = 21;
this.ANIpvf文件目录text.MouseDown += new System.Windows.Forms.MouseEventHandler(this.ANIpvf文件目录text_MouseDown);
//
// ANI全路径文件text
//
this.ANI全路径文件text.BackColor = System.Drawing.SystemColors.ButtonHighlight;
this.ANI全路径文件text.Location = new System.Drawing.Point(130, 25);
this.ANI全路径文件text.Name = "ANI全路径文件text";
this.ANI全路径文件text.Size = new System.Drawing.Size(290, 21);
this.ANI全路径文件text.TabIndex = 19;
this.ANI全路径文件text.MouseDown += new System.Windows.Forms.MouseEventHandler(this.ANI全路径文件text_MouseDown);
//
// label12
//
this.label12.AutoSize = true;
this.label12.BackColor = System.Drawing.Color.White;
this.label12.Location = new System.Drawing.Point(31, 59);
this.label12.Name = "label12";
this.label12.Size = new System.Drawing.Size(107, 12);
this.label12.TabIndex = 20;
this.label12.Text = "PVF文件所在目录:";
//
// label13
//
this.label13.AutoSize = true;
this.label13.BackColor = System.Drawing.Color.White;
this.label13.Location = new System.Drawing.Point(43, 29);
this.label13.Name = "label13";
this.label13.Size = new System.Drawing.Size(95, 12);
this.label13.TabIndex = 22;
this.label13.Text = "ani全路径文件:";
//
// APC开始在线提取button
//
this.APC开始在线提取button.BackColor = System.Drawing.Color.Transparent;
this.APC开始在线提取button.Location = new System.Drawing.Point(271, 154);
this.APC开始在线提取button.Name = "APC开始在线提取button";
this.APC开始在线提取button.Size = new System.Drawing.Size(95, 27);
this.APC开始在线提取button.TabIndex = 32;
this.APC开始在线提取button.Text = "在线提取APC";
this.APC开始在线提取button.UseVisualStyleBackColor = false;
this.APC开始在线提取button.Click += new System.EventHandler(this.APC开始在线提取button_Click);
//
// APC编号textbutton
//
this.APC编号textbutton.Font = new System.Drawing.Font("宋体", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.APC编号textbutton.Location = new System.Drawing.Point(410, 31);
this.APC编号textbutton.Name = "APC编号textbutton";
this.APC编号textbutton.Size = new System.Drawing.Size(25, 23);
this.APC编号textbutton.TabIndex = 28;
this.APC编号textbutton.Text = "……";
this.APC编号textbutton.UseVisualStyleBackColor = true;
this.APC编号textbutton.Click += new System.EventHandler(this.APC编号textbutton_Click);
//
// APC开始提取button
//
this.APC开始提取button.BackColor = System.Drawing.Color.Transparent;
this.APC开始提取button.Location = new System.Drawing.Point(135, 154);
this.APC开始提取button.Name = "APC开始提取button";
this.APC开始提取button.Size = new System.Drawing.Size(95, 27);
this.APC开始提取button.TabIndex = 27;
this.APC开始提取button.Text = "本地提取APC";
this.APC开始提取button.UseVisualStyleBackColor = false;
this.APC开始提取button.Click += new System.EventHandler(this.APC开始提取button_Click);
//
// APC使用说明button
//
this.APC使用说明button.Location = new System.Drawing.Point(6, 173);
this.APC使用说明button.Name = "APC使用说明button";
this.APC使用说明button.Size = new System.Drawing.Size(67, 24);
this.APC使用说明button.TabIndex = 26;
this.APC使用说明button.Text = "使用说明";
this.APC使用说明button.UseVisualStyleBackColor = true;
this.APC使用说明button.Click += new System.EventHandler(this.APC使用说明button_Click);
//
// APC查找img路径checkBox
//
this.APC查找img路径checkBox.AutoSize = true;
this.APC查找img路径checkBox.BackColor = System.Drawing.Color.White;
this.APC查找img路径checkBox.Checked = true;
this.APC查找img路径checkBox.CheckState = System.Windows.Forms.CheckState.Checked;
this.APC查找img路径checkBox.Location = new System.Drawing.Point(180, 129);
this.APC查找img路径checkBox.Name = "APC查找img路径checkBox";
this.APC查找img路径checkBox.Size = new System.Drawing.Size(156, 16);
this.APC查找img路径checkBox.TabIndex = 25;
this.APC查找img路径checkBox.Text = "APC提取完后查找img路径";
this.APC查找img路径checkBox.UseVisualStyleBackColor = false;
//
// APC导出目录text
//
this.APC导出目录text.BackColor = System.Drawing.SystemColors.ButtonHighlight;
this.APC导出目录text.Location = new System.Drawing.Point(120, 97);
this.APC导出目录text.Name = "APC导出目录text";
this.APC导出目录text.Size = new System.Drawing.Size(290, 21);
this.APC导出目录text.TabIndex = 23;
this.APC导出目录text.MouseDown += new System.Windows.Forms.MouseEventHandler(this.APC导出目录text_MouseDown);
//
// label14
//
this.label14.AutoSize = true;
this.label14.BackColor = System.Drawing.Color.White;
this.label14.Location = new System.Drawing.Point(15, 99);
this.label14.Name = "label14";
this.label14.Size = new System.Drawing.Size(113, 12);
this.label14.TabIndex = 24;
this.label14.Text = "提取并导出的目录:";
//
// APCpvf文件目录text
//
this.APCpvf文件目录text.BackColor = System.Drawing.SystemColors.ButtonHighlight;
this.APCpvf文件目录text.Location = new System.Drawing.Point(120, 64);
this.APCpvf文件目录text.Name = "APCpvf文件目录text";
this.APCpvf文件目录text.Size = new System.Drawing.Size(290, 21);
this.APCpvf文件目录text.TabIndex = 21;
this.APCpvf文件目录text.MouseDown += new System.Windows.Forms.MouseEventHandler(this.APCpvf文件目录text_MouseDown);
//
// APC编号text
//
this.APC编号text.BackColor = System.Drawing.SystemColors.ButtonHighlight;
this.APC编号text.Location = new System.Drawing.Point(120, 32);
this.APC编号text.Name = "APC编号text";
this.APC编号text.Size = new System.Drawing.Size(290, 21);
this.APC编号text.TabIndex = 19;
//
// label15
//
this.label15.AutoSize = true;
this.label15.BackColor = System.Drawing.Color.White;
this.label15.Location = new System.Drawing.Point(21, 68);
this.label15.Name = "label15";
this.label15.Size = new System.Drawing.Size(107, 12);
this.label15.TabIndex = 20;
this.label15.Text = "PVF文件所在目录:";
//
// label16
//
this.label16.AutoSize = true;
this.label16.BackColor = System.Drawing.Color.White;
this.label16.Location = new System.Drawing.Point(63, 34);
this.label16.Name = "label16";
this.label16.Size = new System.Drawing.Size(65, 12);
this.label16.TabIndex = 22;
this.label16.Text = " APC编号:";
//
// 特效开始在线提取button
//
this.特效开始在线提取button.BackColor = System.Drawing.Color.Transparent;
this.特效开始在线提取button.Location = new System.Drawing.Point(271, 154);
this.特效开始在线提取button.Name = "特效开始在线提取button";
this.特效开始在线提取button.Size = new System.Drawing.Size(95, 27);
this.特效开始在线提取button.TabIndex = 30;
this.特效开始在线提取button.Text = "在线提取特效";
this.特效开始在线提取button.UseVisualStyleBackColor = false;
this.特效开始在线提取button.Click += new System.EventHandler(this.特效开始在线提取button_Click);
//
// 特效编号textbutton
//
this.特效编号textbutton.Font = new System.Drawing.Font("宋体", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.特效编号textbutton.Location = new System.Drawing.Point(410, 31);
this.特效编号textbutton.Name = "特效编号textbutton";
this.特效编号textbutton.Size = new System.Drawing.Size(25, 23);
this.特效编号textbutton.TabIndex = 28;
this.特效编号textbutton.Text = "……";
this.特效编号textbutton.UseVisualStyleBackColor = true;
this.特效编号textbutton.Click += new System.EventHandler(this.特效编号textbutton_Click);
//
// 特效开始提取button
//
this.特效开始提取button.BackColor = System.Drawing.Color.Transparent;
this.特效开始提取button.Location = new System.Drawing.Point(135, 154);
this.特效开始提取button.Name = "特效开始提取button";
this.特效开始提取button.Size = new System.Drawing.Size(95, 27);
this.特效开始提取button.TabIndex = 27;
this.特效开始提取button.Text = "本地提取特效";
this.特效开始提取button.UseVisualStyleBackColor = false;
this.特效开始提取button.Click += new System.EventHandler(this.特效开始提取button_Click);
//
// 特效使用说明button
//
this.特效使用说明button.Location = new System.Drawing.Point(6, 173);
this.特效使用说明button.Name = "特效使用说明button";
this.特效使用说明button.Size = new System.Drawing.Size(67, 24);
this.特效使用说明button.TabIndex = 26;
this.特效使用说明button.Text = "使用说明";
this.特效使用说明button.UseVisualStyleBackColor = true;
this.特效使用说明button.Click += new System.EventHandler(this.特效使用说明button_Click);
//
// 特效查找img路径checkBox
//
this.特效查找img路径checkBox.AutoSize = true;
this.特效查找img路径checkBox.BackColor = System.Drawing.Color.White;
this.特效查找img路径checkBox.Checked = true;
this.特效查找img路径checkBox.CheckState = System.Windows.Forms.CheckState.Checked;
this.特效查找img路径checkBox.Location = new System.Drawing.Point(180, 129);
this.特效查找img路径checkBox.Name = "特效查找img路径checkBox";
this.特效查找img路径checkBox.Size = new System.Drawing.Size(162, 16);
this.特效查找img路径checkBox.TabIndex = 25;
this.特效查找img路径checkBox.Text = "特效提取完后查找img路径";
this.特效查找img路径checkBox.UseVisualStyleBackColor = false;
//
// 特效导出目录text
//
this.特效导出目录text.BackColor = System.Drawing.SystemColors.ButtonHighlight;
this.特效导出目录text.Location = new System.Drawing.Point(120, 97);
this.特效导出目录text.Name = "特效导出目录text";
this.特效导出目录text.Size = new System.Drawing.Size(290, 21);
this.特效导出目录text.TabIndex = 23;
this.特效导出目录text.MouseDown += new System.Windows.Forms.MouseEventHandler(this.特效导出目录text_MouseDown);
//
// label8
//
this.label8.AutoSize = true;
this.label8.BackColor = System.Drawing.Color.White;
this.label8.Location = new System.Drawing.Point(15, 99);
this.label8.Name = "label8";
this.label8.Size = new System.Drawing.Size(113, 12);
this.label8.TabIndex = 24;
this.label8.Text = "提取并导出的目录:";
//
// 特效pvf文件目录text
//
this.特效pvf文件目录text.BackColor = System.Drawing.SystemColors.ButtonHighlight;
this.特效pvf文件目录text.Location = new System.Drawing.Point(120, 64);
this.特效pvf文件目录text.Name = "特效pvf文件目录text";
this.特效pvf文件目录text.Size = new System.Drawing.Size(290, 21);
this.特效pvf文件目录text.TabIndex = 21;
this.特效pvf文件目录text.MouseDown += new System.Windows.Forms.MouseEventHandler(this.特效pvf文件目录text_MouseDown);
//
// 特效编号text
//
this.特效编号text.BackColor = System.Drawing.SystemColors.ButtonHighlight;
this.特效编号text.Location = new System.Drawing.Point(120, 32);
this.特效编号text.Name = "特效编号text";
this.特效编号text.Size = new System.Drawing.Size(290, 21);
this.特效编号text.TabIndex = 19;
//
// label9
//
this.label9.AutoSize = true;
this.label9.BackColor = System.Drawing.Color.White;
this.label9.Location = new System.Drawing.Point(21, 68);
this.label9.Name = "label9";
this.label9.Size = new System.Drawing.Size(107, 12);
this.label9.TabIndex = 20;
this.label9.Text = "PVF文件所在目录:";
//
// label10
//
this.label10.AutoSize = true;
this.label10.BackColor = System.Drawing.Color.White;
this.label10.Location = new System.Drawing.Point(63, 34);
this.label10.Name = "label10";
this.label10.Size = new System.Drawing.Size(65, 12);
this.label10.TabIndex = 22;
this.label10.Text = "特效编号:";
//
// 怪物开始在线提取button
//
this.怪物开始在线提取button.BackColor = System.Drawing.Color.Transparent;
this.怪物开始在线提取button.Location = new System.Drawing.Point(271, 154);
this.怪物开始在线提取button.Name = "怪物开始在线提取button";
this.怪物开始在线提取button.Size = new System.Drawing.Size(95, 27);
this.怪物开始在线提取button.TabIndex = 29;
this.怪物开始在线提取button.Text = "在线提取怪物";
this.怪物开始在线提取button.UseVisualStyleBackColor = false;
this.怪物开始在线提取button.Click += new System.EventHandler(this.怪物开始在线提取button_Click);
//
// 怪物编号textbutton
//
this.怪物编号textbutton.Font = new System.Drawing.Font("宋体", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.怪物编号textbutton.Location = new System.Drawing.Point(410, 31);
this.怪物编号textbutton.Name = "怪物编号textbutton";
this.怪物编号textbutton.Size = new System.Drawing.Size(25, 23);
this.怪物编号textbutton.TabIndex = 28;
this.怪物编号textbutton.Text = "……";
this.怪物编号textbutton.UseVisualStyleBackColor = true;
this.怪物编号textbutton.Click += new System.EventHandler(this.怪物编号textbutton_Click);
//
// 怪物开始提取button
//
this.怪物开始提取button.BackColor = System.Drawing.Color.Transparent;
this.怪物开始提取button.Location = new System.Drawing.Point(135, 154);
this.怪物开始提取button.Name = "怪物开始提取button";
this.怪物开始提取button.Size = new System.Drawing.Size(95, 27);
this.怪物开始提取button.TabIndex = 27;
this.怪物开始提取button.Text = "开始提取怪物";
this.怪物开始提取button.UseVisualStyleBackColor = false;
this.怪物开始提取button.Click += new System.EventHandler(this.怪物开始提取button_Click);
//
// 怪物使用说明button
//
this.怪物使用说明button.Location = new System.Drawing.Point(6, 173);
this.怪物使用说明button.Name = "怪物使用说明button";
this.怪物使用说明button.Size = new System.Drawing.Size(67, 24);
this.怪物使用说明button.TabIndex = 26;
this.怪物使用说明button.Text = "使用说明";
this.怪物使用说明button.UseVisualStyleBackColor = true;
this.怪物使用说明button.Click += new System.EventHandler(this.怪物使用说明button_Click);
//
// 怪物查找img路径checkBox
//
this.怪物查找img路径checkBox.AutoSize = true;
this.怪物查找img路径checkBox.BackColor = System.Drawing.Color.White;
this.怪物查找img路径checkBox.Checked = true;
this.怪物查找img路径checkBox.CheckState = System.Windows.Forms.CheckState.Checked;
this.怪物查找img路径checkBox.Location = new System.Drawing.Point(180, 129);
this.怪物查找img路径checkBox.Name = "怪物查找img路径checkBox";
this.怪物查找img路径checkBox.Size = new System.Drawing.Size(162, 16);
this.怪物查找img路径checkBox.TabIndex = 25;
this.怪物查找img路径checkBox.Text = "怪物提取完后查找img路径";
this.怪物查找img路径checkBox.UseVisualStyleBackColor = false;
//
// 怪物导出目录text
//
this.怪物导出目录text.BackColor = System.Drawing.SystemColors.ButtonHighlight;
this.怪物导出目录text.Location = new System.Drawing.Point(120, 97);
this.怪物导出目录text.Name = "怪物导出目录text";
this.怪物导出目录text.Size = new System.Drawing.Size(290, 21);
this.怪物导出目录text.TabIndex = 23;
this.怪物导出目录text.MouseDown += new System.Windows.Forms.MouseEventHandler(this.怪物导出目录text_MouseDown);
//
// label5
//
this.label5.AutoSize = true;
this.label5.BackColor = System.Drawing.Color.White;
this.label5.Location = new System.Drawing.Point(15, 99);
this.label5.Name = "label5";
this.label5.Size = new System.Drawing.Size(113, 12);
this.label5.TabIndex = 24;
this.label5.Text = "提取并导出的目录:";
//
// 怪物pvf文件目录text
//
this.怪物pvf文件目录text.BackColor = System.Drawing.SystemColors.ButtonHighlight;
this.怪物pvf文件目录text.Location = new System.Drawing.Point(120, 64);
this.怪物pvf文件目录text.Name = "怪物pvf文件目录text";
this.怪物pvf文件目录text.Size = new System.Drawing.Size(290, 21);
this.怪物pvf文件目录text.TabIndex = 21;
this.怪物pvf文件目录text.MouseDown += new System.Windows.Forms.MouseEventHandler(this.怪物pvf文件目录text_MouseDown);
//
// 怪物编号text
//
this.怪物编号text.BackColor = System.Drawing.SystemColors.ButtonHighlight;
this.怪物编号text.Location = new System.Drawing.Point(120, 32);
this.怪物编号text.Name = "怪物编号text";
this.怪物编号text.Size = new System.Drawing.Size(290, 21);
this.怪物编号text.TabIndex = 19;
//
// label6
//
this.label6.AutoSize = true;
this.label6.BackColor = System.Drawing.Color.White;
this.label6.Location = new System.Drawing.Point(21, 68);
this.label6.Name = "label6";
this.label6.Size = new System.Drawing.Size(107, 12);
this.label6.TabIndex = 20;
this.label6.Text = "PVF文件所在目录:";
//
// label7
//
this.label7.AutoSize = true;
this.label7.BackColor = System.Drawing.Color.White;
this.label7.Location = new System.Drawing.Point(63, 34);
this.label7.Name = "label7";
this.label7.Size = new System.Drawing.Size(65, 12);
this.label7.TabIndex = 22;
this.label7.Text = "怪物编号:";
//
// 开始在线提取城镇button
//
this.开始在线提取城镇button.BackColor = System.Drawing.Color.Transparent;
this.开始在线提取城镇button.Location = new System.Drawing.Point(271, 154);
this.开始在线提取城镇button.Name = "开始在线提取城镇button";
this.开始在线提取城镇button.Size = new System.Drawing.Size(95, 27);
this.开始在线提取城镇button.TabIndex = 20;
this.开始在线提取城镇button.Text = "在线提取城镇";
this.开始在线提取城镇button.UseVisualStyleBackColor = false;
this.开始在线提取城镇button.Click += new System.EventHandler(this.开始在线提取城镇button_Click);
//
// 城镇编号textbutton
//
this.城镇编号textbutton.Font = new System.Drawing.Font("宋体", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.城镇编号textbutton.Location = new System.Drawing.Point(410, 31);
this.城镇编号textbutton.Name = "城镇编号textbutton";
this.城镇编号textbutton.Size = new System.Drawing.Size(25, 23);
this.城镇编号textbutton.TabIndex = 19;
this.城镇编号textbutton.Text = "……";
this.城镇编号textbutton.UseVisualStyleBackColor = true;
this.城镇编号textbutton.Click += new System.EventHandler(this.城镇编号textbutton_Click);
//
// 开始提取城镇
//
this.开始提取城镇.BackColor = System.Drawing.Color.Transparent;
this.开始提取城镇.Location = new System.Drawing.Point(135, 154);
this.开始提取城镇.Name = "开始提取城镇";
this.开始提取城镇.Size = new System.Drawing.Size(95, 27);
this.开始提取城镇.TabIndex = 18;
this.开始提取城镇.Text = "本地提取城镇";
this.开始提取城镇.UseVisualStyleBackColor = false;
this.开始提取城镇.Click += new System.EventHandler(this.开始提取城镇_Click);
//
// 城镇提取使用说明button
//
this.城镇提取使用说明button.Location = new System.Drawing.Point(6, 173);
this.城镇提取使用说明button.Name = "城镇提取使用说明button";
this.城镇提取使用说明button.Size = new System.Drawing.Size(67, 24);
this.城镇提取使用说明button.TabIndex = 17;
this.城镇提取使用说明button.Text = "使用说明";
this.城镇提取使用说明button.UseVisualStyleBackColor = true;
this.城镇提取使用说明button.Click += new System.EventHandler(this.城镇提取使用说明button_Click);
//
// 城镇提取完后查找img路径
//
this.城镇提取完后查找img路径.AutoSize = true;
this.城镇提取完后查找img路径.BackColor = System.Drawing.Color.White;
this.城镇提取完后查找img路径.Checked = true;
this.城镇提取完后查找img路径.CheckState = System.Windows.Forms.CheckState.Checked;
this.城镇提取完后查找img路径.Location = new System.Drawing.Point(180, 129);
this.城镇提取完后查找img路径.Name = "城镇提取完后查找img路径";
this.城镇提取完后查找img路径.Size = new System.Drawing.Size(162, 16);
this.城镇提取完后查找img路径.TabIndex = 16;
this.城镇提取完后查找img路径.Text = "城镇提取完后查找img路径";
this.城镇提取完后查找img路径.UseVisualStyleBackColor = false;
//
// 城镇导出目录txt
//
this.城镇导出目录txt.BackColor = System.Drawing.SystemColors.ButtonHighlight;
this.城镇导出目录txt.Location = new System.Drawing.Point(120, 97);
this.城镇导出目录txt.Name = "城镇导出目录txt";
this.城镇导出目录txt.Size = new System.Drawing.Size(290, 21);
this.城镇导出目录txt.TabIndex = 14;
this.城镇导出目录txt.MouseDown += new System.Windows.Forms.MouseEventHandler(this.城镇导出目录txt_MouseDown);
//
// 城镇导出目录
//
this.城镇导出目录.AutoSize = true;
this.城镇导出目录.BackColor = System.Drawing.Color.White;
this.城镇导出目录.Location = new System.Drawing.Point(15, 99);
this.城镇导出目录.Name = "城镇导出目录";
this.城镇导出目录.Size = new System.Drawing.Size(113, 12);
this.城镇导出目录.TabIndex = 15;
this.城镇导出目录.Text = "提取并导出的目录:";
//
// 城镇pvf文件txt
//
this.城镇pvf文件txt.BackColor = System.Drawing.SystemColors.ButtonHighlight;
this.城镇pvf文件txt.Location = new System.Drawing.Point(120, 64);
this.城镇pvf文件txt.Name = "城镇pvf文件txt";
this.城镇pvf文件txt.Size = new System.Drawing.Size(290, 21);
this.城镇pvf文件txt.TabIndex = 12;
this.城镇pvf文件txt.MouseDown += new System.Windows.Forms.MouseEventHandler(this.城镇pvf文件txt_MouseDown);
//
// 城镇编号txt
//
this.城镇编号txt.BackColor = System.Drawing.SystemColors.ButtonHighlight;
this.城镇编号txt.Location = new System.Drawing.Point(120, 32);
this.城镇编号txt.Name = "城镇编号txt";
this.城镇编号txt.Size = new System.Drawing.Size(290, 21);