forked from AnyListen/tianruoocr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
FmSetting.Designer.cs
1261 lines (1181 loc) · 62.7 KB
/
FmSetting.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 TrOCR
{
public sealed partial class FmSetting : global::System.Windows.Forms.Form
{
protected override void Dispose(bool disposing)
{
if (disposing && this.components != null)
{
this.components.Dispose();
}
base.Dispose(disposing);
}
private void InitializeComponent()
{
this.Page_代理 = new System.Windows.Forms.TabPage();
this.代理Button = new System.Windows.Forms.Button();
this.groupBox4 = new System.Windows.Forms.GroupBox();
this.chbox_代理服务器 = new System.Windows.Forms.CheckBox();
this.text_密码 = new System.Windows.Forms.TextBox();
this.text_端口 = new System.Windows.Forms.TextBox();
this.label15 = new System.Windows.Forms.Label();
this.text_账号 = new System.Windows.Forms.TextBox();
this.text_服务器 = new System.Windows.Forms.TextBox();
this.label14 = new System.Windows.Forms.Label();
this.label13 = new System.Windows.Forms.Label();
this.label12 = new System.Windows.Forms.Label();
this.combox_代理 = new System.Windows.Forms.ComboBox();
this.label11 = new System.Windows.Forms.Label();
this.Page_密钥 = new System.Windows.Forms.TabPage();
this.百度_btn = new System.Windows.Forms.Button();
this.密钥Button_apply = new System.Windows.Forms.Button();
this.密钥Button = new System.Windows.Forms.Button();
this.tabControl2 = new System.Windows.Forms.TabControl();
this.inPage_百度接口 = new System.Windows.Forms.TabPage();
this.text_baidupassword = new System.Windows.Forms.TextBox();
this.text_baiduaccount = new System.Windows.Forms.TextBox();
this.label10 = new System.Windows.Forms.Label();
this.label9 = new System.Windows.Forms.Label();
this.Page_快捷键 = new System.Windows.Forms.TabPage();
this.快捷键Button = new System.Windows.Forms.Button();
this.label8 = new System.Windows.Forms.Label();
this.groupBox3 = new System.Windows.Forms.GroupBox();
this.txtBox_识别界面 = new System.Windows.Forms.TextBox();
this.txtBox_记录界面 = new System.Windows.Forms.TextBox();
this.txtBox_翻译文本 = new System.Windows.Forms.TextBox();
this.txtBox_文字识别 = new System.Windows.Forms.TextBox();
this.label7 = new System.Windows.Forms.Label();
this.label6 = new System.Windows.Forms.Label();
this.label5 = new System.Windows.Forms.Label();
this.label4 = new System.Windows.Forms.Label();
this.page_常规 = new System.Windows.Forms.TabPage();
this.groupBox10 = new System.Windows.Forms.GroupBox();
this.chbox_save = new System.Windows.Forms.CheckBox();
this.chbox_copy = new System.Windows.Forms.CheckBox();
this.label20 = new System.Windows.Forms.Label();
this.btn_音效路径 = new System.Windows.Forms.Button();
this.text_音效path = new System.Windows.Forms.TextBox();
this.label18 = new System.Windows.Forms.Label();
this.groupBox6 = new System.Windows.Forms.GroupBox();
this.btn_浏览 = new System.Windows.Forms.Button();
this.textBox_path = new System.Windows.Forms.TextBox();
this.label1 = new System.Windows.Forms.Label();
this.cbBox_保存 = new System.Windows.Forms.CheckBox();
this.常规Button = new System.Windows.Forms.Button();
this.groupBox2 = new System.Windows.Forms.GroupBox();
this.numbox_记录 = new System.Windows.Forms.NumericUpDown();
this.label3 = new System.Windows.Forms.Label();
this.cobBox_动画 = new System.Windows.Forms.ComboBox();
this.label2 = new System.Windows.Forms.Label();
this.groupBox1 = new System.Windows.Forms.GroupBox();
this.chbox_取色 = new System.Windows.Forms.CheckBox();
this.cbBox_弹窗 = new System.Windows.Forms.CheckBox();
this.cbBox_翻译 = new System.Windows.Forms.CheckBox();
this.cbBox_开机 = new System.Windows.Forms.CheckBox();
this.tab_标签 = new System.Windows.Forms.TabControl();
this.Page_更新 = new System.Windows.Forms.TabPage();
this.更新Button_check = new System.Windows.Forms.Button();
this.更新Button = new System.Windows.Forms.Button();
this.groupBox5 = new System.Windows.Forms.GroupBox();
this.label16 = new System.Windows.Forms.Label();
this.numbox_间隔时间 = new System.Windows.Forms.NumericUpDown();
this.checkBox_更新间隔 = new System.Windows.Forms.CheckBox();
this.check_检查更新 = new System.Windows.Forms.CheckBox();
this.btn_音效 = new System.Windows.Forms.Button();
this.pic_help = new System.Windows.Forms.PictureBox();
this.pictureBox_识别界面 = new System.Windows.Forms.PictureBox();
this.pictureBox_记录界面 = new System.Windows.Forms.PictureBox();
this.pictureBox_翻译文本 = new System.Windows.Forms.PictureBox();
this.pictureBox_文字识别 = new System.Windows.Forms.PictureBox();
this.groupBox8 = new System.Windows.Forms.GroupBox();
this.label19 = new System.Windows.Forms.Label();
this.label_版本号 = new System.Windows.Forms.Label();
this.label_更新日期 = new System.Windows.Forms.Label();
this.pictureBox6 = new System.Windows.Forms.PictureBox();
this.txt_更新说明 = new System.Windows.Forms.TextBox();
this.txt_问题反馈 = new System.Windows.Forms.TextBox();
this.反馈Button = new System.Windows.Forms.Button();
this.label21 = new System.Windows.Forms.Label();
this.Page_反馈 = new System.Windows.Forms.TabPage();
this.Page_代理.SuspendLayout();
this.groupBox4.SuspendLayout();
this.Page_密钥.SuspendLayout();
this.tabControl2.SuspendLayout();
this.inPage_百度接口.SuspendLayout();
this.Page_快捷键.SuspendLayout();
this.groupBox3.SuspendLayout();
this.page_常规.SuspendLayout();
this.groupBox10.SuspendLayout();
this.groupBox6.SuspendLayout();
this.groupBox2.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.numbox_记录)).BeginInit();
this.groupBox1.SuspendLayout();
this.tab_标签.SuspendLayout();
this.Page_更新.SuspendLayout();
this.groupBox5.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.numbox_间隔时间)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.pic_help)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.pictureBox_识别界面)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.pictureBox_记录界面)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.pictureBox_翻译文本)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.pictureBox_文字识别)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.pictureBox6)).BeginInit();
this.Page_反馈.SuspendLayout();
this.SuspendLayout();
//
// Page_代理
//
this.Page_代理.BackColor = System.Drawing.Color.White;
this.Page_代理.Controls.Add(this.代理Button);
this.Page_代理.Controls.Add(this.groupBox4);
this.Page_代理.Location = new System.Drawing.Point(4, 22);
this.Page_代理.Name = "Page_代理";
this.Page_代理.Padding = new System.Windows.Forms.Padding(3);
this.Page_代理.Size = new System.Drawing.Size(390, 329);
this.Page_代理.TabIndex = 4;
this.Page_代理.Text = "代理";
//
// 代理Button
//
this.代理Button.BackColor = System.Drawing.Color.White;
this.代理Button.Location = new System.Drawing.Point(309, 193);
this.代理Button.Name = "代理Button";
this.代理Button.Size = new System.Drawing.Size(75, 23);
this.代理Button.TabIndex = 9;
this.代理Button.Text = "恢复默认";
this.代理Button.UseVisualStyleBackColor = false;
this.代理Button.Click += new System.EventHandler(this.代理Button_Click);
//
// groupBox4
//
this.groupBox4.Controls.Add(this.chbox_代理服务器);
this.groupBox4.Controls.Add(this.text_密码);
this.groupBox4.Controls.Add(this.text_端口);
this.groupBox4.Controls.Add(this.label15);
this.groupBox4.Controls.Add(this.text_账号);
this.groupBox4.Controls.Add(this.text_服务器);
this.groupBox4.Controls.Add(this.label14);
this.groupBox4.Controls.Add(this.label13);
this.groupBox4.Controls.Add(this.label12);
this.groupBox4.Controls.Add(this.combox_代理);
this.groupBox4.Controls.Add(this.label11);
this.groupBox4.Location = new System.Drawing.Point(3, 6);
this.groupBox4.Name = "groupBox4";
this.groupBox4.Size = new System.Drawing.Size(381, 183);
this.groupBox4.TabIndex = 0;
this.groupBox4.TabStop = false;
this.groupBox4.Text = "代理";
//
// chbox_代理服务器
//
this.chbox_代理服务器.AutoSize = true;
this.chbox_代理服务器.Location = new System.Drawing.Point(78, 84);
this.chbox_代理服务器.Name = "chbox_代理服务器";
this.chbox_代理服务器.Size = new System.Drawing.Size(132, 16);
this.chbox_代理服务器.TabIndex = 12;
this.chbox_代理服务器.Text = "代理服务器需要密码";
this.chbox_代理服务器.UseVisualStyleBackColor = true;
//
// text_密码
//
this.text_密码.Location = new System.Drawing.Point(78, 144);
this.text_密码.Name = "text_密码";
this.text_密码.Size = new System.Drawing.Size(128, 21);
this.text_密码.TabIndex = 11;
this.text_密码.TextChanged += new System.EventHandler(this.text_密码_TextChanged);
//
// text_端口
//
this.text_端口.Location = new System.Drawing.Point(248, 52);
this.text_端口.Name = "text_端口";
this.text_端口.Size = new System.Drawing.Size(55, 21);
this.text_端口.TabIndex = 10;
this.text_端口.Text = " ";
this.text_端口.TextChanged += new System.EventHandler(this.text_端口_TextChanged);
//
// label15
//
this.label15.AutoSize = true;
this.label15.Location = new System.Drawing.Point(212, 57);
this.label15.Name = "label15";
this.label15.Size = new System.Drawing.Size(41, 12);
this.label15.TabIndex = 9;
this.label15.Text = "端口:";
//
// text_账号
//
this.text_账号.Location = new System.Drawing.Point(78, 110);
this.text_账号.Name = "text_账号";
this.text_账号.Size = new System.Drawing.Size(128, 21);
this.text_账号.TabIndex = 8;
this.text_账号.TextChanged += new System.EventHandler(this.text_账号_TextChanged);
//
// text_服务器
//
this.text_服务器.Location = new System.Drawing.Point(78, 52);
this.text_服务器.Name = "text_服务器";
this.text_服务器.Size = new System.Drawing.Size(128, 21);
this.text_服务器.TabIndex = 7;
this.text_服务器.TextChanged += new System.EventHandler(this.text_服务器_TextChanged);
//
// label14
//
this.label14.AutoSize = true;
this.label14.Location = new System.Drawing.Point(9, 147);
this.label14.Name = "label14";
this.label14.Size = new System.Drawing.Size(41, 12);
this.label14.TabIndex = 6;
this.label14.Text = "密码:";
//
// label13
//
this.label13.AutoSize = true;
this.label13.Location = new System.Drawing.Point(9, 114);
this.label13.Name = "label13";
this.label13.Size = new System.Drawing.Size(53, 12);
this.label13.TabIndex = 5;
this.label13.Text = "用户名:";
//
// label12
//
this.label12.AutoSize = true;
this.label12.Location = new System.Drawing.Point(9, 57);
this.label12.Name = "label12";
this.label12.Size = new System.Drawing.Size(53, 12);
this.label12.TabIndex = 4;
this.label12.Text = "服务器:";
//
// combox_代理
//
this.combox_代理.BackColor = System.Drawing.Color.White;
this.combox_代理.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.combox_代理.FormattingEnabled = true;
this.combox_代理.Items.AddRange(new object[] {
"不使用代理",
"系统代理",
"自定义代理"});
this.combox_代理.Location = new System.Drawing.Point(78, 18);
this.combox_代理.Name = "combox_代理";
this.combox_代理.Size = new System.Drawing.Size(95, 20);
this.combox_代理.TabIndex = 3;
this.combox_代理.SelectedIndexChanged += new System.EventHandler(this.combox_代理_SelectedIndexChanged);
//
// label11
//
this.label11.AutoSize = true;
this.label11.Location = new System.Drawing.Point(7, 22);
this.label11.Name = "label11";
this.label11.Size = new System.Drawing.Size(65, 12);
this.label11.TabIndex = 0;
this.label11.Text = "代理类型:";
//
// Page_密钥
//
this.Page_密钥.BackColor = System.Drawing.Color.White;
this.Page_密钥.Controls.Add(this.百度_btn);
this.Page_密钥.Controls.Add(this.密钥Button_apply);
this.Page_密钥.Controls.Add(this.密钥Button);
this.Page_密钥.Controls.Add(this.tabControl2);
this.Page_密钥.Location = new System.Drawing.Point(4, 22);
this.Page_密钥.Name = "Page_密钥";
this.Page_密钥.Padding = new System.Windows.Forms.Padding(3);
this.Page_密钥.Size = new System.Drawing.Size(390, 329);
this.Page_密钥.TabIndex = 3;
this.Page_密钥.Text = "密钥";
//
// 百度_btn
//
this.百度_btn.BackColor = System.Drawing.Color.White;
this.百度_btn.Location = new System.Drawing.Point(152, 136);
this.百度_btn.Name = "百度_btn";
this.百度_btn.Size = new System.Drawing.Size(75, 23);
this.百度_btn.TabIndex = 10;
this.百度_btn.Text = "密钥测试";
this.百度_btn.UseVisualStyleBackColor = false;
this.百度_btn.Click += new System.EventHandler(this.百度_btn_Click);
//
// 密钥Button_apply
//
this.密钥Button_apply.BackColor = System.Drawing.Color.White;
this.密钥Button_apply.Location = new System.Drawing.Point(6, 136);
this.密钥Button_apply.Name = "密钥Button_apply";
this.密钥Button_apply.Size = new System.Drawing.Size(75, 23);
this.密钥Button_apply.TabIndex = 9;
this.密钥Button_apply.Text = "接口申请";
this.密钥Button_apply.UseVisualStyleBackColor = false;
this.密钥Button_apply.Click += new System.EventHandler(this.百度申请_Click);
//
// 密钥Button
//
this.密钥Button.BackColor = System.Drawing.Color.White;
this.密钥Button.Location = new System.Drawing.Point(309, 136);
this.密钥Button.Name = "密钥Button";
this.密钥Button.Size = new System.Drawing.Size(75, 23);
this.密钥Button.TabIndex = 8;
this.密钥Button.Text = "恢复默认";
this.密钥Button.UseVisualStyleBackColor = false;
this.密钥Button.Click += new System.EventHandler(this.密钥Button_Click);
//
// tabControl2
//
this.tabControl2.Controls.Add(this.inPage_百度接口);
this.tabControl2.Location = new System.Drawing.Point(6, 6);
this.tabControl2.Name = "tabControl2";
this.tabControl2.SelectedIndex = 0;
this.tabControl2.Size = new System.Drawing.Size(378, 124);
this.tabControl2.TabIndex = 0;
//
// inPage_百度接口
//
this.inPage_百度接口.BackColor = System.Drawing.Color.White;
this.inPage_百度接口.Controls.Add(this.text_baidupassword);
this.inPage_百度接口.Controls.Add(this.text_baiduaccount);
this.inPage_百度接口.Controls.Add(this.label10);
this.inPage_百度接口.Controls.Add(this.label9);
this.inPage_百度接口.Location = new System.Drawing.Point(4, 22);
this.inPage_百度接口.Name = "inPage_百度接口";
this.inPage_百度接口.Padding = new System.Windows.Forms.Padding(3);
this.inPage_百度接口.Size = new System.Drawing.Size(370, 98);
this.inPage_百度接口.TabIndex = 0;
this.inPage_百度接口.Text = "百度识别接口";
//
// text_baidupassword
//
this.text_baidupassword.BackColor = System.Drawing.Color.White;
this.text_baidupassword.Location = new System.Drawing.Point(56, 55);
this.text_baidupassword.Name = "text_baidupassword";
this.text_baidupassword.Size = new System.Drawing.Size(260, 21);
this.text_baidupassword.TabIndex = 3;
this.text_baidupassword.TextChanged += new System.EventHandler(this.text_baidupassword_TextChanged);
//
// text_baiduaccount
//
this.text_baiduaccount.BackColor = System.Drawing.Color.White;
this.text_baiduaccount.Location = new System.Drawing.Point(56, 20);
this.text_baiduaccount.Name = "text_baiduaccount";
this.text_baiduaccount.Size = new System.Drawing.Size(260, 21);
this.text_baiduaccount.TabIndex = 2;
this.text_baiduaccount.TextChanged += new System.EventHandler(this.text_baiduaccount_TextChanged);
//
// label10
//
this.label10.AutoSize = true;
this.label10.Location = new System.Drawing.Point(18, 58);
this.label10.Name = "label10";
this.label10.Size = new System.Drawing.Size(41, 12);
this.label10.TabIndex = 1;
this.label10.Text = "密码:";
//
// label9
//
this.label9.AutoSize = true;
this.label9.Location = new System.Drawing.Point(18, 23);
this.label9.Name = "label9";
this.label9.Size = new System.Drawing.Size(41, 12);
this.label9.TabIndex = 0;
this.label9.Text = "账号:";
//
// Page_快捷键
//
this.Page_快捷键.BackColor = System.Drawing.Color.White;
this.Page_快捷键.Controls.Add(this.快捷键Button);
this.Page_快捷键.Controls.Add(this.label8);
this.Page_快捷键.Controls.Add(this.groupBox3);
this.Page_快捷键.Location = new System.Drawing.Point(4, 22);
this.Page_快捷键.Name = "Page_快捷键";
this.Page_快捷键.Padding = new System.Windows.Forms.Padding(3);
this.Page_快捷键.Size = new System.Drawing.Size(390, 329);
this.Page_快捷键.TabIndex = 2;
this.Page_快捷键.Text = "快捷键";
//
// 快捷键Button
//
this.快捷键Button.BackColor = System.Drawing.Color.White;
this.快捷键Button.Location = new System.Drawing.Point(309, 175);
this.快捷键Button.Name = "快捷键Button";
this.快捷键Button.Size = new System.Drawing.Size(75, 23);
this.快捷键Button.TabIndex = 7;
this.快捷键Button.Text = "恢复默认";
this.快捷键Button.UseVisualStyleBackColor = false;
this.快捷键Button.Click += new System.EventHandler(this.快捷键Button_Click);
//
// label8
//
this.label8.AutoSize = true;
this.label8.Location = new System.Drawing.Point(6, 180);
this.label8.Name = "label8";
this.label8.Size = new System.Drawing.Size(215, 12);
this.label8.TabIndex = 1;
this.label8.Text = "说明:按Backspace键可清除当前快捷键";
//
// groupBox3
//
this.groupBox3.Controls.Add(this.pictureBox_识别界面);
this.groupBox3.Controls.Add(this.pictureBox_记录界面);
this.groupBox3.Controls.Add(this.pictureBox_翻译文本);
this.groupBox3.Controls.Add(this.pictureBox_文字识别);
this.groupBox3.Controls.Add(this.txtBox_识别界面);
this.groupBox3.Controls.Add(this.txtBox_记录界面);
this.groupBox3.Controls.Add(this.txtBox_翻译文本);
this.groupBox3.Controls.Add(this.txtBox_文字识别);
this.groupBox3.Controls.Add(this.label7);
this.groupBox3.Controls.Add(this.label6);
this.groupBox3.Controls.Add(this.label5);
this.groupBox3.Controls.Add(this.label4);
this.groupBox3.Location = new System.Drawing.Point(6, 6);
this.groupBox3.Name = "groupBox3";
this.groupBox3.Size = new System.Drawing.Size(378, 163);
this.groupBox3.TabIndex = 0;
this.groupBox3.TabStop = false;
this.groupBox3.Text = "全局快捷键";
//
// txtBox_识别界面
//
this.txtBox_识别界面.Font = new System.Drawing.Font("微软雅黑", 9F);
this.txtBox_识别界面.Location = new System.Drawing.Point(78, 122);
this.txtBox_识别界面.Name = "txtBox_识别界面";
this.txtBox_识别界面.Size = new System.Drawing.Size(260, 23);
this.txtBox_识别界面.TabIndex = 7;
this.txtBox_识别界面.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
this.txtBox_识别界面.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtBox_KeyDown);
this.txtBox_识别界面.KeyUp += new System.Windows.Forms.KeyEventHandler(this.txtBox_KeyUp);
//
// txtBox_记录界面
//
this.txtBox_记录界面.Font = new System.Drawing.Font("微软雅黑", 9F);
this.txtBox_记录界面.Location = new System.Drawing.Point(78, 89);
this.txtBox_记录界面.Name = "txtBox_记录界面";
this.txtBox_记录界面.Size = new System.Drawing.Size(260, 23);
this.txtBox_记录界面.TabIndex = 6;
this.txtBox_记录界面.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
this.txtBox_记录界面.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtBox_KeyDown);
this.txtBox_记录界面.KeyUp += new System.Windows.Forms.KeyEventHandler(this.txtBox_KeyUp);
//
// txtBox_翻译文本
//
this.txtBox_翻译文本.Font = new System.Drawing.Font("微软雅黑", 9F);
this.txtBox_翻译文本.Location = new System.Drawing.Point(78, 52);
this.txtBox_翻译文本.Name = "txtBox_翻译文本";
this.txtBox_翻译文本.Size = new System.Drawing.Size(260, 23);
this.txtBox_翻译文本.TabIndex = 5;
this.txtBox_翻译文本.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
this.txtBox_翻译文本.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtBox_KeyDown);
this.txtBox_翻译文本.KeyUp += new System.Windows.Forms.KeyEventHandler(this.txtBox_KeyUp);
//
// txtBox_文字识别
//
this.txtBox_文字识别.Font = new System.Drawing.Font("微软雅黑", 9F);
this.txtBox_文字识别.Location = new System.Drawing.Point(78, 19);
this.txtBox_文字识别.Name = "txtBox_文字识别";
this.txtBox_文字识别.Size = new System.Drawing.Size(260, 23);
this.txtBox_文字识别.TabIndex = 4;
this.txtBox_文字识别.TabStop = false;
this.txtBox_文字识别.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
this.txtBox_文字识别.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtBox_KeyDown);
this.txtBox_文字识别.KeyUp += new System.Windows.Forms.KeyEventHandler(this.txtBox_KeyUp);
//
// label7
//
this.label7.AutoSize = true;
this.label7.Location = new System.Drawing.Point(6, 125);
this.label7.Name = "label7";
this.label7.Size = new System.Drawing.Size(65, 12);
this.label7.TabIndex = 3;
this.label7.Text = "识别界面:";
//
// label6
//
this.label6.AutoSize = true;
this.label6.Location = new System.Drawing.Point(7, 92);
this.label6.Name = "label6";
this.label6.Size = new System.Drawing.Size(65, 12);
this.label6.TabIndex = 2;
this.label6.Text = "记录界面:";
//
// label5
//
this.label5.AutoSize = true;
this.label5.Location = new System.Drawing.Point(6, 58);
this.label5.Name = "label5";
this.label5.Size = new System.Drawing.Size(65, 12);
this.label5.TabIndex = 1;
this.label5.Text = "翻译文本:";
//
// label4
//
this.label4.AutoSize = true;
this.label4.Location = new System.Drawing.Point(7, 24);
this.label4.Name = "label4";
this.label4.Size = new System.Drawing.Size(65, 12);
this.label4.TabIndex = 0;
this.label4.Text = "文字识别:";
//
// page_常规
//
this.page_常规.BackColor = System.Drawing.Color.White;
this.page_常规.Controls.Add(this.groupBox10);
this.page_常规.Controls.Add(this.groupBox6);
this.page_常规.Controls.Add(this.pic_help);
this.page_常规.Controls.Add(this.常规Button);
this.page_常规.Controls.Add(this.groupBox2);
this.page_常规.Controls.Add(this.groupBox1);
this.page_常规.Location = new System.Drawing.Point(4, 22);
this.page_常规.Name = "page_常规";
this.page_常规.Padding = new System.Windows.Forms.Padding(3);
this.page_常规.Size = new System.Drawing.Size(390, 329);
this.page_常规.TabIndex = 0;
this.page_常规.Text = "常规";
//
// groupBox10
//
this.groupBox10.Controls.Add(this.chbox_save);
this.groupBox10.Controls.Add(this.chbox_copy);
this.groupBox10.Controls.Add(this.label20);
this.groupBox10.Controls.Add(this.btn_音效路径);
this.groupBox10.Controls.Add(this.btn_音效);
this.groupBox10.Controls.Add(this.text_音效path);
this.groupBox10.Controls.Add(this.label18);
this.groupBox10.Location = new System.Drawing.Point(6, 136);
this.groupBox10.Name = "groupBox10";
this.groupBox10.Size = new System.Drawing.Size(378, 86);
this.groupBox10.TabIndex = 8;
this.groupBox10.TabStop = false;
this.groupBox10.Text = "音效";
//
// chbox_save
//
this.chbox_save.AutoSize = true;
this.chbox_save.Checked = true;
this.chbox_save.CheckState = System.Windows.Forms.CheckState.Checked;
this.chbox_save.Location = new System.Drawing.Point(167, 54);
this.chbox_save.Name = "chbox_save";
this.chbox_save.Size = new System.Drawing.Size(96, 16);
this.chbox_save.TabIndex = 10;
this.chbox_save.Text = "快速保存图片";
this.chbox_save.UseVisualStyleBackColor = true;
this.chbox_save.CheckedChanged += new System.EventHandler(this.chbox_save_CheckedChanged);
//
// chbox_copy
//
this.chbox_copy.AutoSize = true;
this.chbox_copy.Location = new System.Drawing.Point(53, 54);
this.chbox_copy.Name = "chbox_copy";
this.chbox_copy.Size = new System.Drawing.Size(96, 16);
this.chbox_copy.TabIndex = 6;
this.chbox_copy.Text = "复制到粘贴板";
this.chbox_copy.UseVisualStyleBackColor = true;
this.chbox_copy.CheckedChanged += new System.EventHandler(this.chbox_copy_CheckedChanged);
//
// label20
//
this.label20.AutoSize = true;
this.label20.Location = new System.Drawing.Point(14, 55);
this.label20.Name = "label20";
this.label20.Size = new System.Drawing.Size(41, 12);
this.label20.TabIndex = 9;
this.label20.Text = "何时:";
//
// btn_音效路径
//
this.btn_音效路径.BackColor = System.Drawing.Color.White;
this.btn_音效路径.Location = new System.Drawing.Point(332, 49);
this.btn_音效路径.Name = "btn_音效路径";
this.btn_音效路径.Size = new System.Drawing.Size(40, 23);
this.btn_音效路径.TabIndex = 8;
this.btn_音效路径.Text = "更改";
this.btn_音效路径.UseVisualStyleBackColor = false;
this.btn_音效路径.Click += new System.EventHandler(this.btn_音效路径_Click);
//
// text_音效path
//
this.text_音效path.BackColor = System.Drawing.Color.White;
this.text_音效path.Location = new System.Drawing.Point(51, 19);
this.text_音效path.Name = "text_音效path";
this.text_音效path.ReadOnly = true;
this.text_音效path.Size = new System.Drawing.Size(288, 21);
this.text_音效path.TabIndex = 4;
this.text_音效path.Text = "Data\\screenshot.wav";
//
// label18
//
this.label18.AutoSize = true;
this.label18.Location = new System.Drawing.Point(13, 22);
this.label18.Name = "label18";
this.label18.Size = new System.Drawing.Size(41, 12);
this.label18.TabIndex = 3;
this.label18.Text = "文件:";
//
// groupBox6
//
this.groupBox6.Controls.Add(this.btn_浏览);
this.groupBox6.Controls.Add(this.textBox_path);
this.groupBox6.Controls.Add(this.label1);
this.groupBox6.Controls.Add(this.cbBox_保存);
this.groupBox6.Location = new System.Drawing.Point(6, 227);
this.groupBox6.Name = "groupBox6";
this.groupBox6.Size = new System.Drawing.Size(378, 63);
this.groupBox6.TabIndex = 6;
this.groupBox6.TabStop = false;
//
// btn_浏览
//
this.btn_浏览.BackColor = System.Drawing.Color.White;
this.btn_浏览.Location = new System.Drawing.Point(332, 24);
this.btn_浏览.Name = "btn_浏览";
this.btn_浏览.Size = new System.Drawing.Size(40, 23);
this.btn_浏览.TabIndex = 7;
this.btn_浏览.Text = "浏览";
this.btn_浏览.UseVisualStyleBackColor = false;
this.btn_浏览.Click += new System.EventHandler(this.btn_浏览_Click);
//
// textBox_path
//
this.textBox_path.BackColor = System.Drawing.Color.White;
this.textBox_path.Location = new System.Drawing.Point(51, 26);
this.textBox_path.Name = "textBox_path";
this.textBox_path.ReadOnly = true;
this.textBox_path.Size = new System.Drawing.Size(275, 21);
this.textBox_path.TabIndex = 4;
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(15, 29);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(41, 12);
this.label1.TabIndex = 3;
this.label1.Text = "目录:";
//
// cbBox_保存
//
this.cbBox_保存.AutoSize = true;
this.cbBox_保存.BackColor = System.Drawing.Color.White;
this.cbBox_保存.Location = new System.Drawing.Point(6, 0);
this.cbBox_保存.Name = "cbBox_保存";
this.cbBox_保存.Size = new System.Drawing.Size(72, 16);
this.cbBox_保存.TabIndex = 2;
this.cbBox_保存.Text = "自动保存";
this.cbBox_保存.UseVisualStyleBackColor = false;
this.cbBox_保存.CheckedChanged += new System.EventHandler(this.cbBox_保存_CheckedChanged);
//
// 常规Button
//
this.常规Button.BackColor = System.Drawing.Color.White;
this.常规Button.Location = new System.Drawing.Point(310, 297);
this.常规Button.Name = "常规Button";
this.常规Button.Size = new System.Drawing.Size(75, 23);
this.常规Button.TabIndex = 6;
this.常规Button.Text = "恢复默认";
this.常规Button.UseVisualStyleBackColor = false;
this.常规Button.Click += new System.EventHandler(this.常规Button_Click);
//
// groupBox2
//
this.groupBox2.Controls.Add(this.numbox_记录);
this.groupBox2.Controls.Add(this.label3);
this.groupBox2.Controls.Add(this.cobBox_动画);
this.groupBox2.Controls.Add(this.label2);
this.groupBox2.Location = new System.Drawing.Point(6, 60);
this.groupBox2.Name = "groupBox2";
this.groupBox2.Size = new System.Drawing.Size(378, 70);
this.groupBox2.TabIndex = 4;
this.groupBox2.TabStop = false;
this.groupBox2.Text = "界面";
//
// numbox_记录
//
this.numbox_记录.Location = new System.Drawing.Point(276, 28);
this.numbox_记录.Name = "numbox_记录";
this.numbox_记录.Size = new System.Drawing.Size(63, 21);
this.numbox_记录.TabIndex = 5;
this.numbox_记录.ValueChanged += new System.EventHandler(this.numbox_记录_ValueChanged);
//
// label3
//
this.label3.AutoSize = true;
this.label3.Location = new System.Drawing.Point(205, 32);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(65, 12);
this.label3.TabIndex = 4;
this.label3.Text = "记录数目:";
//
// cobBox_动画
//
this.cobBox_动画.BackColor = System.Drawing.Color.White;
this.cobBox_动画.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.cobBox_动画.FormattingEnabled = true;
this.cobBox_动画.Items.AddRange(new object[] {
"窗体",
"少女",
"罗小黑"});
this.cobBox_动画.Location = new System.Drawing.Point(84, 30);
this.cobBox_动画.Name = "cobBox_动画";
this.cobBox_动画.Size = new System.Drawing.Size(63, 20);
this.cobBox_动画.TabIndex = 3;
this.cobBox_动画.SelectedIndexChanged += new System.EventHandler(this.cobBox_动画_SelectedIndexChanged);
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(13, 33);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(65, 12);
this.label2.TabIndex = 1;
this.label2.Text = "窗体动画:";
//
// groupBox1
//
this.groupBox1.Controls.Add(this.chbox_取色);
this.groupBox1.Controls.Add(this.cbBox_弹窗);
this.groupBox1.Controls.Add(this.cbBox_翻译);
this.groupBox1.Controls.Add(this.cbBox_开机);
this.groupBox1.Location = new System.Drawing.Point(6, 6);
this.groupBox1.Name = "groupBox1";
this.groupBox1.Size = new System.Drawing.Size(378, 48);
this.groupBox1.TabIndex = 2;
this.groupBox1.TabStop = false;
this.groupBox1.Text = "设置";
//
// chbox_取色
//
this.chbox_取色.AutoSize = true;
this.chbox_取色.Location = new System.Drawing.Point(298, 20);
this.chbox_取色.Name = "chbox_取色";
this.chbox_取色.Size = new System.Drawing.Size(66, 16);
this.chbox_取色.TabIndex = 6;
this.chbox_取色.Text = "取色HEX";
this.chbox_取色.UseVisualStyleBackColor = true;
this.chbox_取色.CheckedChanged += new System.EventHandler(this.chbox_取色_CheckedChanged);
//
// cbBox_弹窗
//
this.cbBox_弹窗.AutoSize = true;
this.cbBox_弹窗.Location = new System.Drawing.Point(204, 20);
this.cbBox_弹窗.Name = "cbBox_弹窗";
this.cbBox_弹窗.Size = new System.Drawing.Size(72, 16);
this.cbBox_弹窗.TabIndex = 5;
this.cbBox_弹窗.Text = "识别弹窗";
this.cbBox_弹窗.UseVisualStyleBackColor = true;
this.cbBox_弹窗.CheckedChanged += new System.EventHandler(this.cbBox_弹窗_CheckedChanged);
//
// cbBox_翻译
//
this.cbBox_翻译.AutoSize = true;
this.cbBox_翻译.Location = new System.Drawing.Point(107, 20);
this.cbBox_翻译.Name = "cbBox_翻译";
this.cbBox_翻译.Size = new System.Drawing.Size(72, 16);
this.cbBox_翻译.TabIndex = 4;
this.cbBox_翻译.Text = "快速翻译";
this.cbBox_翻译.UseVisualStyleBackColor = true;
this.cbBox_翻译.CheckedChanged += new System.EventHandler(this.cbBox_翻译_CheckedChanged);
//
// cbBox_开机
//
this.cbBox_开机.AutoSize = true;
this.cbBox_开机.Location = new System.Drawing.Point(17, 20);
this.cbBox_开机.Name = "cbBox_开机";
this.cbBox_开机.Size = new System.Drawing.Size(72, 16);
this.cbBox_开机.TabIndex = 2;
this.cbBox_开机.Text = "开机启动";
this.cbBox_开机.UseVisualStyleBackColor = true;
this.cbBox_开机.CheckedChanged += new System.EventHandler(this.cbBox_开机_CheckedChanged);
//
// tab_标签
//
this.tab_标签.Controls.Add(this.page_常规);
this.tab_标签.Controls.Add(this.Page_快捷键);
this.tab_标签.Controls.Add(this.Page_密钥);
this.tab_标签.Controls.Add(this.Page_代理);
this.tab_标签.Controls.Add(this.Page_更新);
this.tab_标签.Controls.Add(this.Page_反馈);
this.tab_标签.Location = new System.Drawing.Point(10, 2);
this.tab_标签.Name = "tab_标签";
this.tab_标签.SelectedIndex = 0;
this.tab_标签.Size = new System.Drawing.Size(398, 355);
this.tab_标签.TabIndex = 0;
this.tab_标签.SelectedIndexChanged += new System.EventHandler(this.tab_标签_SelectedIndexChanged);
//
// Page_更新
//
this.Page_更新.BackColor = System.Drawing.Color.White;
this.Page_更新.Controls.Add(this.更新Button_check);
this.Page_更新.Controls.Add(this.更新Button);
this.Page_更新.Controls.Add(this.groupBox5);
this.Page_更新.Location = new System.Drawing.Point(4, 22);
this.Page_更新.Name = "Page_更新";
this.Page_更新.Padding = new System.Windows.Forms.Padding(3);
this.Page_更新.Size = new System.Drawing.Size(390, 329);
this.Page_更新.TabIndex = 5;
this.Page_更新.Text = "更新";
this.Page_更新.UseVisualStyleBackColor = true;
//
// 更新Button_check
//
this.更新Button_check.BackColor = System.Drawing.Color.White;
this.更新Button_check.Location = new System.Drawing.Point(6, 83);
this.更新Button_check.Name = "更新Button_check";
this.更新Button_check.Size = new System.Drawing.Size(75, 23);
this.更新Button_check.TabIndex = 11;
this.更新Button_check.Text = "检查更新";
this.更新Button_check.UseVisualStyleBackColor = false;
//
// 更新Button
//
this.更新Button.BackColor = System.Drawing.Color.White;
this.更新Button.Location = new System.Drawing.Point(309, 83);
this.更新Button.Name = "更新Button";
this.更新Button.Size = new System.Drawing.Size(75, 23);
this.更新Button.TabIndex = 10;
this.更新Button.Text = "恢复默认";
this.更新Button.UseVisualStyleBackColor = false;
this.更新Button.Click += new System.EventHandler(this.更新Button_Click);
//
// groupBox5
//
this.groupBox5.Controls.Add(this.label16);
this.groupBox5.Controls.Add(this.numbox_间隔时间);
this.groupBox5.Controls.Add(this.checkBox_更新间隔);
this.groupBox5.Controls.Add(this.check_检查更新);
this.groupBox5.Location = new System.Drawing.Point(6, 14);
this.groupBox5.Name = "groupBox5";
this.groupBox5.Size = new System.Drawing.Size(378, 65);
this.groupBox5.TabIndex = 0;
this.groupBox5.TabStop = false;
//
// label16
//
this.label16.AutoSize = true;
this.label16.Location = new System.Drawing.Point(98, 31);
this.label16.Name = "label16";
this.label16.Size = new System.Drawing.Size(29, 12);
this.label16.TabIndex = 3;
this.label16.Text = "小时";
//
// numbox_间隔时间
//
this.numbox_间隔时间.Location = new System.Drawing.Point(54, 27);
this.numbox_间隔时间.Name = "numbox_间隔时间";
this.numbox_间隔时间.Size = new System.Drawing.Size(37, 21);
this.numbox_间隔时间.TabIndex = 2;
this.numbox_间隔时间.ValueChanged += new System.EventHandler(this.numbox_间隔时间_ValueChanged);
//
// checkBox_更新间隔
//
this.checkBox_更新间隔.AutoSize = true;
this.checkBox_更新间隔.Location = new System.Drawing.Point(6, 31);
this.checkBox_更新间隔.Name = "checkBox_更新间隔";
this.checkBox_更新间隔.Size = new System.Drawing.Size(48, 16);
this.checkBox_更新间隔.TabIndex = 1;
this.checkBox_更新间隔.Text = "每隔";
this.checkBox_更新间隔.UseVisualStyleBackColor = true;
this.checkBox_更新间隔.CheckedChanged += new System.EventHandler(this.checkBox_更新间隔_CheckedChanged);
//
// check_检查更新
//
this.check_检查更新.AutoSize = true;
this.check_检查更新.BackColor = System.Drawing.Color.White;
this.check_检查更新.Location = new System.Drawing.Point(6, 0);
this.check_检查更新.Name = "check_检查更新";
this.check_检查更新.Size = new System.Drawing.Size(108, 16);
this.check_检查更新.TabIndex = 0;
this.check_检查更新.Text = "启动时检查更新";
this.check_检查更新.UseVisualStyleBackColor = false;
this.check_检查更新.CheckedChanged += new System.EventHandler(this.check_检查更新_CheckedChanged);
//
// btn_音效
//
this.btn_音效.BackColor = System.Drawing.Color.White;
this.btn_音效.Image = global::TrOCR.Properties.Resources.语音按钮;
this.btn_音效.Location = new System.Drawing.Point(344, 17);
this.btn_音效.Name = "btn_音效";
this.btn_音效.Size = new System.Drawing.Size(26, 23);
this.btn_音效.TabIndex = 7;
this.btn_音效.UseVisualStyleBackColor = false;
this.btn_音效.Click += new System.EventHandler(this.btn_音效_Click);
//
// pic_help
//
this.pic_help.Image = global::TrOCR.Properties.Resources.帮助;
this.pic_help.Location = new System.Drawing.Point(7, 296);
this.pic_help.Name = "pic_help";
this.pic_help.Size = new System.Drawing.Size(27, 23);
this.pic_help.TabIndex = 7;
this.pic_help.TabStop = false;
this.pic_help.Click += new System.EventHandler(this.pic_help_Click);
//
// pictureBox_识别界面
//
this.pictureBox_识别界面.Image = global::TrOCR.Properties.Resources.快捷键_1;
this.pictureBox_识别界面.Location = new System.Drawing.Point(351, 122);
this.pictureBox_识别界面.Name = "pictureBox_识别界面";
this.pictureBox_识别界面.Size = new System.Drawing.Size(21, 21);
this.pictureBox_识别界面.SizeMode = System.Windows.Forms.PictureBoxSizeMode.CenterImage;
this.pictureBox_识别界面.TabIndex = 11;
this.pictureBox_识别界面.TabStop = false;
//
// pictureBox_记录界面
//
this.pictureBox_记录界面.Image = global::TrOCR.Properties.Resources.快捷键_1;
this.pictureBox_记录界面.Location = new System.Drawing.Point(351, 89);
this.pictureBox_记录界面.Name = "pictureBox_记录界面";
this.pictureBox_记录界面.Size = new System.Drawing.Size(21, 21);
this.pictureBox_记录界面.SizeMode = System.Windows.Forms.PictureBoxSizeMode.CenterImage;
this.pictureBox_记录界面.TabIndex = 10;
this.pictureBox_记录界面.TabStop = false;
//
// pictureBox_翻译文本
//
this.pictureBox_翻译文本.Image = global::TrOCR.Properties.Resources.快捷键_1;
this.pictureBox_翻译文本.Location = new System.Drawing.Point(351, 52);
this.pictureBox_翻译文本.Name = "pictureBox_翻译文本";
this.pictureBox_翻译文本.Size = new System.Drawing.Size(21, 21);
this.pictureBox_翻译文本.SizeMode = System.Windows.Forms.PictureBoxSizeMode.CenterImage;
this.pictureBox_翻译文本.TabIndex = 9;
this.pictureBox_翻译文本.TabStop = false;
//
// pictureBox_文字识别
//
this.pictureBox_文字识别.Image = global::TrOCR.Properties.Resources.快捷键_1;
this.pictureBox_文字识别.Location = new System.Drawing.Point(351, 19);
this.pictureBox_文字识别.Name = "pictureBox_文字识别";
this.pictureBox_文字识别.Size = new System.Drawing.Size(21, 21);
this.pictureBox_文字识别.SizeMode = System.Windows.Forms.PictureBoxSizeMode.CenterImage;
this.pictureBox_文字识别.TabIndex = 8;
this.pictureBox_文字识别.TabStop = false;
//
// groupBox8
//
this.groupBox8.Location = new System.Drawing.Point(117, 14);
this.groupBox8.Name = "groupBox8";
this.groupBox8.Size = new System.Drawing.Size(255, 83);
this.groupBox8.TabIndex = 4;
this.groupBox8.TabStop = false;
//
// label19
//
this.label19.AutoSize = true;
this.label19.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.label19.Location = new System.Drawing.Point(13, 56);
this.label19.Name = "label19";
this.label19.Size = new System.Drawing.Size(141, 17);
this.label19.TabIndex = 5;
//
// label_版本号
//
this.label_版本号.AutoSize = true;
this.label_版本号.Location = new System.Drawing.Point(13, 13);
this.label_版本号.Name = "label_版本号";
this.label_版本号.Size = new System.Drawing.Size(95, 12);
this.label_版本号.TabIndex = 4;
//
// label_更新日期
//
this.label_更新日期.AutoSize = true;
this.label_更新日期.Location = new System.Drawing.Point(13, 34);
this.label_更新日期.Name = "label_更新日期";
this.label_更新日期.Size = new System.Drawing.Size(125, 12);
this.label_更新日期.TabIndex = 6;
//
// pictureBox6
//
this.pictureBox6.BackColor = System.Drawing.Color.White;
this.pictureBox6.Image = global::TrOCR.Properties.Resources.头像;
this.pictureBox6.Location = new System.Drawing.Point(12, 15);
this.pictureBox6.Name = "pictureBox6";
this.pictureBox6.Size = new System.Drawing.Size(84, 82);
this.pictureBox6.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
this.pictureBox6.TabIndex = 5;
this.pictureBox6.TabStop = false;
//
// txt_更新说明
//
this.txt_更新说明.BackColor = System.Drawing.Color.White;
this.txt_更新说明.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.txt_更新说明.Location = new System.Drawing.Point(6, 20);
this.txt_更新说明.Multiline = true;
this.txt_更新说明.Name = "txt_更新说明";
this.txt_更新说明.Size = new System.Drawing.Size(366, 155);