-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathMainForm.Designer.cs
855 lines (845 loc) · 52.8 KB
/
MainForm.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
namespace StudentPhotoCollection
{
partial class MainForm
{
/// <summary>
/// 必需的设计器变量。
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// 清理所有正在使用的资源。
/// </summary>
/// <param name="disposing">如果应释放托管资源,为 true;否则为 false。</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows 窗体设计器生成的代码
/// <summary>
/// 设计器支持所需的方法 - 不要修改
/// 使用代码编辑器修改此方法的内容。
/// </summary>
private void InitializeComponent()
{
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle();
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle3 = new System.Windows.Forms.DataGridViewCellStyle();
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle4 = new System.Windows.Forms.DataGridViewCellStyle();
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm));
this.splitContainer1 = new System.Windows.Forms.SplitContainer();
this.groupBox3 = new System.Windows.Forms.GroupBox();
this.dataGridView = new System.Windows.Forms.DataGridView();
this.splitContainer2 = new System.Windows.Forms.SplitContainer();
this.groupBox2 = new System.Windows.Forms.GroupBox();
this.label8 = new System.Windows.Forms.Label();
this.pictureBox_showMsg7 = new System.Windows.Forms.PictureBox();
this.checkBox_everCheckPhoto = new System.Windows.Forms.CheckBox();
this.pictureBox_showMsg6 = new System.Windows.Forms.PictureBox();
this.pictureBox_showMsg4 = new System.Windows.Forms.PictureBox();
this.pictureBox_showMsg5 = new System.Windows.Forms.PictureBox();
this.pictureBox_showMsg3 = new System.Windows.Forms.PictureBox();
this.pictureBox_showMsg2 = new System.Windows.Forms.PictureBox();
this.pictureBox_showMsg1 = new System.Windows.Forms.PictureBox();
this.label_lastFilePathName = new System.Windows.Forms.Label();
this.checkBox_everCutPhoto = new System.Windows.Forms.CheckBox();
this.button_Shoot = new System.Windows.Forms.Button();
this.button_ExportData = new System.Windows.Forms.Button();
this.button_Disconnect = new System.Windows.Forms.Button();
this.button_Connect = new System.Windows.Forms.Button();
this.label1 = new System.Windows.Forms.Label();
this.textBox_sjmb = new System.Windows.Forms.TextBox();
this.label2 = new System.Windows.Forms.Label();
this.comboBox_saveFile02 = new System.Windows.Forms.ComboBox();
this.comboBox_camara = new System.Windows.Forms.ComboBox();
this.comboBox_saveFile01 = new System.Windows.Forms.ComboBox();
this.label3 = new System.Windows.Forms.Label();
this.label7 = new System.Windows.Forms.Label();
this.comboBox_Resolution = new System.Windows.Forms.ComboBox();
this.label4 = new System.Windows.Forms.Label();
this.textBox_excelSheetName = new System.Windows.Forms.TextBox();
this.textBox_photoFileSavePath = new System.Windows.Forms.TextBox();
this.label6 = new System.Windows.Forms.Label();
this.label5 = new System.Windows.Forms.Label();
this.comboBox_photoName = new System.Windows.Forms.ComboBox();
this.splitContainer3 = new System.Windows.Forms.SplitContainer();
this.groupBox4 = new System.Windows.Forms.GroupBox();
this.pictureBox_shootFocus = new System.Windows.Forms.PictureBox();
this.videoSourcePlayer = new AForge.Controls.VideoSourcePlayer();
this.splitContainer4 = new System.Windows.Forms.SplitContainer();
this.groupBox_photoPreviewLast = new System.Windows.Forms.GroupBox();
this.pictureBox_photoLast = new System.Windows.Forms.PictureBox();
this.groupBox_photoPreview = new System.Windows.Forms.GroupBox();
this.pictureBox_photo = new System.Windows.Forms.PictureBox();
this.openFileDialog_chooseFile = new System.Windows.Forms.OpenFileDialog();
this.folderBrowserDialog = new System.Windows.Forms.FolderBrowserDialog();
this.saveFileDialog = new System.Windows.Forms.SaveFileDialog();
((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit();
this.splitContainer1.Panel1.SuspendLayout();
this.splitContainer1.Panel2.SuspendLayout();
this.splitContainer1.SuspendLayout();
this.groupBox3.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.dataGridView)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.splitContainer2)).BeginInit();
this.splitContainer2.Panel1.SuspendLayout();
this.splitContainer2.Panel2.SuspendLayout();
this.splitContainer2.SuspendLayout();
this.groupBox2.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.pictureBox_showMsg7)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.pictureBox_showMsg6)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.pictureBox_showMsg4)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.pictureBox_showMsg5)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.pictureBox_showMsg3)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.pictureBox_showMsg2)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.pictureBox_showMsg1)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.splitContainer3)).BeginInit();
this.splitContainer3.Panel1.SuspendLayout();
this.splitContainer3.Panel2.SuspendLayout();
this.splitContainer3.SuspendLayout();
this.groupBox4.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.pictureBox_shootFocus)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.splitContainer4)).BeginInit();
this.splitContainer4.Panel1.SuspendLayout();
this.splitContainer4.Panel2.SuspendLayout();
this.splitContainer4.SuspendLayout();
this.groupBox_photoPreviewLast.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.pictureBox_photoLast)).BeginInit();
this.groupBox_photoPreview.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.pictureBox_photo)).BeginInit();
this.SuspendLayout();
//
// splitContainer1
//
this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
this.splitContainer1.Location = new System.Drawing.Point(0, 0);
this.splitContainer1.Name = "splitContainer1";
//
// splitContainer1.Panel1
//
this.splitContainer1.Panel1.Controls.Add(this.groupBox3);
//
// splitContainer1.Panel2
//
this.splitContainer1.Panel2.Controls.Add(this.splitContainer2);
this.splitContainer1.Size = new System.Drawing.Size(1163, 651);
this.splitContainer1.SplitterDistance = 519;
this.splitContainer1.TabIndex = 0;
//
// groupBox3
//
this.groupBox3.Controls.Add(this.dataGridView);
this.groupBox3.Dock = System.Windows.Forms.DockStyle.Fill;
this.groupBox3.Location = new System.Drawing.Point(0, 0);
this.groupBox3.Name = "groupBox3";
this.groupBox3.Size = new System.Drawing.Size(519, 651);
this.groupBox3.TabIndex = 1;
this.groupBox3.TabStop = false;
this.groupBox3.Text = "信息列表";
//
// dataGridView
//
this.dataGridView.AllowUserToAddRows = false;
this.dataGridView.AllowUserToDeleteRows = false;
this.dataGridView.AllowUserToResizeColumns = false;
this.dataGridView.AllowUserToResizeRows = false;
this.dataGridView.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill;
this.dataGridView.AutoSizeRowsMode = System.Windows.Forms.DataGridViewAutoSizeRowsMode.DisplayedHeaders;
this.dataGridView.BackgroundColor = System.Drawing.SystemColors.Window;
this.dataGridView.BorderStyle = System.Windows.Forms.BorderStyle.None;
dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
dataGridViewCellStyle1.BackColor = System.Drawing.SystemColors.Info;
dataGridViewCellStyle1.Font = new System.Drawing.Font("宋体", 10F);
dataGridViewCellStyle1.ForeColor = System.Drawing.SystemColors.WindowText;
dataGridViewCellStyle1.SelectionBackColor = System.Drawing.SystemColors.Highlight;
dataGridViewCellStyle1.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
dataGridViewCellStyle1.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
this.dataGridView.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle1;
this.dataGridView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
dataGridViewCellStyle2.BackColor = System.Drawing.SystemColors.Info;
dataGridViewCellStyle2.Font = new System.Drawing.Font("宋体", 10F);
dataGridViewCellStyle2.ForeColor = System.Drawing.SystemColors.ControlText;
dataGridViewCellStyle2.SelectionBackColor = System.Drawing.Color.MediumSeaGreen;
dataGridViewCellStyle2.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
dataGridViewCellStyle2.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
this.dataGridView.DefaultCellStyle = dataGridViewCellStyle2;
this.dataGridView.Dock = System.Windows.Forms.DockStyle.Fill;
this.dataGridView.Location = new System.Drawing.Point(3, 17);
this.dataGridView.Name = "dataGridView";
this.dataGridView.ReadOnly = true;
dataGridViewCellStyle3.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
dataGridViewCellStyle3.BackColor = System.Drawing.SystemColors.Info;
dataGridViewCellStyle3.Font = new System.Drawing.Font("宋体", 10F);
dataGridViewCellStyle3.ForeColor = System.Drawing.SystemColors.WindowText;
dataGridViewCellStyle3.SelectionBackColor = System.Drawing.SystemColors.Highlight;
dataGridViewCellStyle3.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
dataGridViewCellStyle3.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
this.dataGridView.RowHeadersDefaultCellStyle = dataGridViewCellStyle3;
dataGridViewCellStyle4.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
dataGridViewCellStyle4.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.dataGridView.RowsDefaultCellStyle = dataGridViewCellStyle4;
this.dataGridView.RowTemplate.Height = 23;
this.dataGridView.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
this.dataGridView.Size = new System.Drawing.Size(513, 631);
this.dataGridView.TabIndex = 0;
this.dataGridView.CellDoubleClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.DataGridView_CellDoubleClick);
//
// splitContainer2
//
this.splitContainer2.Dock = System.Windows.Forms.DockStyle.Fill;
this.splitContainer2.Location = new System.Drawing.Point(0, 0);
this.splitContainer2.Name = "splitContainer2";
//
// splitContainer2.Panel1
//
this.splitContainer2.Panel1.Controls.Add(this.groupBox2);
//
// splitContainer2.Panel2
//
this.splitContainer2.Panel2.Controls.Add(this.splitContainer3);
this.splitContainer2.Size = new System.Drawing.Size(640, 651);
this.splitContainer2.SplitterDistance = 246;
this.splitContainer2.TabIndex = 0;
//
// groupBox2
//
this.groupBox2.BackColor = System.Drawing.SystemColors.Window;
this.groupBox2.Controls.Add(this.label8);
this.groupBox2.Controls.Add(this.pictureBox_showMsg7);
this.groupBox2.Controls.Add(this.checkBox_everCheckPhoto);
this.groupBox2.Controls.Add(this.pictureBox_showMsg6);
this.groupBox2.Controls.Add(this.pictureBox_showMsg4);
this.groupBox2.Controls.Add(this.pictureBox_showMsg5);
this.groupBox2.Controls.Add(this.pictureBox_showMsg3);
this.groupBox2.Controls.Add(this.pictureBox_showMsg2);
this.groupBox2.Controls.Add(this.pictureBox_showMsg1);
this.groupBox2.Controls.Add(this.label_lastFilePathName);
this.groupBox2.Controls.Add(this.checkBox_everCutPhoto);
this.groupBox2.Controls.Add(this.button_Shoot);
this.groupBox2.Controls.Add(this.button_ExportData);
this.groupBox2.Controls.Add(this.button_Disconnect);
this.groupBox2.Controls.Add(this.button_Connect);
this.groupBox2.Controls.Add(this.label1);
this.groupBox2.Controls.Add(this.textBox_sjmb);
this.groupBox2.Controls.Add(this.label2);
this.groupBox2.Controls.Add(this.comboBox_saveFile02);
this.groupBox2.Controls.Add(this.comboBox_camara);
this.groupBox2.Controls.Add(this.comboBox_saveFile01);
this.groupBox2.Controls.Add(this.label3);
this.groupBox2.Controls.Add(this.label7);
this.groupBox2.Controls.Add(this.comboBox_Resolution);
this.groupBox2.Controls.Add(this.label4);
this.groupBox2.Controls.Add(this.textBox_excelSheetName);
this.groupBox2.Controls.Add(this.textBox_photoFileSavePath);
this.groupBox2.Controls.Add(this.label6);
this.groupBox2.Controls.Add(this.label5);
this.groupBox2.Controls.Add(this.comboBox_photoName);
this.groupBox2.Dock = System.Windows.Forms.DockStyle.Fill;
this.groupBox2.Location = new System.Drawing.Point(0, 0);
this.groupBox2.Name = "groupBox2";
this.groupBox2.Size = new System.Drawing.Size(246, 651);
this.groupBox2.TabIndex = 28;
this.groupBox2.TabStop = false;
this.groupBox2.Text = "信息设置";
//
// label8
//
this.label8.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.label8.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.label8.ForeColor = System.Drawing.Color.Red;
this.label8.Location = new System.Drawing.Point(19, 690);
this.label8.Name = "label8";
this.label8.Size = new System.Drawing.Size(204, 100);
this.label8.TabIndex = 38;
this.label8.Text = "1、拍照时,请将头部对准焦点图\r\n\r\n2、首次拍照后,后面可以使用键盘回车键拍照\r\n\r\n3、点击照片预览,可以再次预览此照片\r\n\r\n4、双击左侧【图片路径】可以查" +
"看本地照片\r\n";
//
// pictureBox_showMsg7
//
this.pictureBox_showMsg7.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
this.pictureBox_showMsg7.Image = global::StudentPhotoCollection.Properties.Resources.help;
this.pictureBox_showMsg7.Location = new System.Drawing.Point(187, 609);
this.pictureBox_showMsg7.Name = "pictureBox_showMsg7";
this.pictureBox_showMsg7.Size = new System.Drawing.Size(18, 16);
this.pictureBox_showMsg7.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
this.pictureBox_showMsg7.TabIndex = 37;
this.pictureBox_showMsg7.TabStop = false;
this.pictureBox_showMsg7.Click += new System.EventHandler(this.PictureBox_showMsg7_Click);
//
// checkBox_everCheckPhoto
//
this.checkBox_everCheckPhoto.AutoSize = true;
this.checkBox_everCheckPhoto.Checked = true;
this.checkBox_everCheckPhoto.CheckState = System.Windows.Forms.CheckState.Checked;
this.checkBox_everCheckPhoto.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.checkBox_everCheckPhoto.Location = new System.Drawing.Point(21, 611);
this.checkBox_everCheckPhoto.Name = "checkBox_everCheckPhoto";
this.checkBox_everCheckPhoto.Size = new System.Drawing.Size(168, 16);
this.checkBox_everCheckPhoto.TabIndex = 36;
this.checkBox_everCheckPhoto.Text = "是否需要立即检查拍摄照片";
this.checkBox_everCheckPhoto.UseVisualStyleBackColor = true;
this.checkBox_everCheckPhoto.CheckedChanged += new System.EventHandler(this.CheckBox_everCheckPhoto_CheckedChanged);
//
// pictureBox_showMsg6
//
this.pictureBox_showMsg6.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
this.pictureBox_showMsg6.Image = global::StudentPhotoCollection.Properties.Resources.help;
this.pictureBox_showMsg6.Location = new System.Drawing.Point(93, 162);
this.pictureBox_showMsg6.Name = "pictureBox_showMsg6";
this.pictureBox_showMsg6.Size = new System.Drawing.Size(18, 16);
this.pictureBox_showMsg6.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
this.pictureBox_showMsg6.TabIndex = 35;
this.pictureBox_showMsg6.TabStop = false;
this.pictureBox_showMsg6.Click += new System.EventHandler(this.PictureBox_showMsg6_Click);
//
// pictureBox_showMsg4
//
this.pictureBox_showMsg4.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
this.pictureBox_showMsg4.Image = global::StudentPhotoCollection.Properties.Resources.help;
this.pictureBox_showMsg4.Location = new System.Drawing.Point(205, 390);
this.pictureBox_showMsg4.Name = "pictureBox_showMsg4";
this.pictureBox_showMsg4.Size = new System.Drawing.Size(18, 16);
this.pictureBox_showMsg4.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
this.pictureBox_showMsg4.TabIndex = 34;
this.pictureBox_showMsg4.TabStop = false;
this.pictureBox_showMsg4.Click += new System.EventHandler(this.PictureBox_showMsg4_Click);
//
// pictureBox_showMsg5
//
this.pictureBox_showMsg5.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
this.pictureBox_showMsg5.Image = global::StudentPhotoCollection.Properties.Resources.help;
this.pictureBox_showMsg5.Location = new System.Drawing.Point(104, 65);
this.pictureBox_showMsg5.Name = "pictureBox_showMsg5";
this.pictureBox_showMsg5.Size = new System.Drawing.Size(18, 16);
this.pictureBox_showMsg5.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
this.pictureBox_showMsg5.TabIndex = 33;
this.pictureBox_showMsg5.TabStop = false;
this.pictureBox_showMsg5.Click += new System.EventHandler(this.PictureBox_showMsg5_Click);
//
// pictureBox_showMsg3
//
this.pictureBox_showMsg3.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
this.pictureBox_showMsg3.Image = global::StudentPhotoCollection.Properties.Resources.help;
this.pictureBox_showMsg3.Location = new System.Drawing.Point(116, 339);
this.pictureBox_showMsg3.Name = "pictureBox_showMsg3";
this.pictureBox_showMsg3.Size = new System.Drawing.Size(18, 16);
this.pictureBox_showMsg3.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
this.pictureBox_showMsg3.TabIndex = 32;
this.pictureBox_showMsg3.TabStop = false;
this.pictureBox_showMsg3.Click += new System.EventHandler(this.PictureBox_showMsg3_Click);
//
// pictureBox_showMsg2
//
this.pictureBox_showMsg2.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
this.pictureBox_showMsg2.Image = global::StudentPhotoCollection.Properties.Resources.help;
this.pictureBox_showMsg2.Location = new System.Drawing.Point(124, 262);
this.pictureBox_showMsg2.Name = "pictureBox_showMsg2";
this.pictureBox_showMsg2.Size = new System.Drawing.Size(18, 16);
this.pictureBox_showMsg2.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
this.pictureBox_showMsg2.TabIndex = 31;
this.pictureBox_showMsg2.TabStop = false;
this.pictureBox_showMsg2.Click += new System.EventHandler(this.PictureBox_showMsg2_Click);
//
// pictureBox_showMsg1
//
this.pictureBox_showMsg1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
this.pictureBox_showMsg1.Image = global::StudentPhotoCollection.Properties.Resources.help;
this.pictureBox_showMsg1.Location = new System.Drawing.Point(129, 211);
this.pictureBox_showMsg1.Name = "pictureBox_showMsg1";
this.pictureBox_showMsg1.Size = new System.Drawing.Size(18, 16);
this.pictureBox_showMsg1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
this.pictureBox_showMsg1.TabIndex = 30;
this.pictureBox_showMsg1.TabStop = false;
this.pictureBox_showMsg1.Click += new System.EventHandler(this.PictureBox_showMsg1_Click);
//
// label_lastFilePathName
//
this.label_lastFilePathName.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.label_lastFilePathName.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.label_lastFilePathName.ForeColor = System.Drawing.Color.Red;
this.label_lastFilePathName.Location = new System.Drawing.Point(19, 632);
this.label_lastFilePathName.Name = "label_lastFilePathName";
this.label_lastFilePathName.Size = new System.Drawing.Size(204, 54);
this.label_lastFilePathName.TabIndex = 29;
this.label_lastFilePathName.Text = "照片路径样式:";
this.label_lastFilePathName.Visible = false;
//
// checkBox_everCutPhoto
//
this.checkBox_everCutPhoto.AutoSize = true;
this.checkBox_everCutPhoto.Enabled = false;
this.checkBox_everCutPhoto.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.checkBox_everCutPhoto.Location = new System.Drawing.Point(21, 390);
this.checkBox_everCutPhoto.Name = "checkBox_everCutPhoto";
this.checkBox_everCutPhoto.Size = new System.Drawing.Size(186, 16);
this.checkBox_everCutPhoto.TabIndex = 27;
this.checkBox_everCutPhoto.Text = "是否需要自动剪裁图片720x960";
this.checkBox_everCutPhoto.UseVisualStyleBackColor = true;
this.checkBox_everCutPhoto.CheckedChanged += new System.EventHandler(this.CheckBox_everCutPhoto_CheckedChanged);
//
// button_Shoot
//
this.button_Shoot.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.button_Shoot.BackColor = System.Drawing.SystemColors.Control;
this.button_Shoot.Enabled = false;
this.button_Shoot.Font = new System.Drawing.Font("宋体", 15F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.button_Shoot.ForeColor = System.Drawing.SystemColors.ControlText;
this.button_Shoot.Location = new System.Drawing.Point(21, 554);
this.button_Shoot.Name = "button_Shoot";
this.button_Shoot.Size = new System.Drawing.Size(202, 54);
this.button_Shoot.TabIndex = 15;
this.button_Shoot.Text = "拍 照";
this.button_Shoot.UseVisualStyleBackColor = true;
this.button_Shoot.Click += new System.EventHandler(this.Button_shoot_Click);
//
// button_ExportData
//
this.button_ExportData.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.button_ExportData.Enabled = false;
this.button_ExportData.Location = new System.Drawing.Point(21, 510);
this.button_ExportData.Name = "button_ExportData";
this.button_ExportData.Size = new System.Drawing.Size(202, 35);
this.button_ExportData.TabIndex = 26;
this.button_ExportData.Text = "导出新数据";
this.button_ExportData.UseVisualStyleBackColor = true;
this.button_ExportData.Click += new System.EventHandler(this.Button_ExportData_Click);
//
// button_Disconnect
//
this.button_Disconnect.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.button_Disconnect.Enabled = false;
this.button_Disconnect.Location = new System.Drawing.Point(21, 466);
this.button_Disconnect.Name = "button_Disconnect";
this.button_Disconnect.Size = new System.Drawing.Size(202, 35);
this.button_Disconnect.TabIndex = 24;
this.button_Disconnect.Text = "断开摄像头";
this.button_Disconnect.UseVisualStyleBackColor = true;
this.button_Disconnect.Click += new System.EventHandler(this.Button_Disconnect_Click);
//
// button_Connect
//
this.button_Connect.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.button_Connect.Location = new System.Drawing.Point(21, 422);
this.button_Connect.Name = "button_Connect";
this.button_Connect.Size = new System.Drawing.Size(202, 35);
this.button_Connect.TabIndex = 23;
this.button_Connect.Text = "连接摄像头";
this.button_Connect.UseVisualStyleBackColor = true;
this.button_Connect.Click += new System.EventHandler(this.Button_Connect_Click);
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(19, 18);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(83, 12);
this.label1.TabIndex = 0;
this.label1.Text = "*选择数据模板";
//
// textBox_sjmb
//
this.textBox_sjmb.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.textBox_sjmb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.textBox_sjmb.Font = new System.Drawing.Font("宋体", 15F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.textBox_sjmb.Location = new System.Drawing.Point(21, 33);
this.textBox_sjmb.Name = "textBox_sjmb";
this.textBox_sjmb.Size = new System.Drawing.Size(202, 30);
this.textBox_sjmb.TabIndex = 1;
this.textBox_sjmb.Click += new System.EventHandler(this.TextBox_sjmb_Click);
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(19, 116);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(71, 12);
this.label2.TabIndex = 3;
this.label2.Text = "*选择摄像头";
//
// comboBox_saveFile02
//
this.comboBox_saveFile02.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.comboBox_saveFile02.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.comboBox_saveFile02.Font = new System.Drawing.Font("宋体", 16F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.comboBox_saveFile02.FormattingEnabled = true;
this.comboBox_saveFile02.ItemHeight = 21;
this.comboBox_saveFile02.Location = new System.Drawing.Point(21, 308);
this.comboBox_saveFile02.Name = "comboBox_saveFile02";
this.comboBox_saveFile02.Size = new System.Drawing.Size(202, 29);
this.comboBox_saveFile02.TabIndex = 21;
this.comboBox_saveFile02.SelectedIndexChanged += new System.EventHandler(this.ComboBox_saveFile02_SelectedIndexChanged);
//
// comboBox_camara
//
this.comboBox_camara.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.comboBox_camara.BackColor = System.Drawing.SystemColors.Window;
this.comboBox_camara.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.comboBox_camara.Font = new System.Drawing.Font("宋体", 16F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.comboBox_camara.FormattingEnabled = true;
this.comboBox_camara.ItemHeight = 21;
this.comboBox_camara.Location = new System.Drawing.Point(21, 132);
this.comboBox_camara.Name = "comboBox_camara";
this.comboBox_camara.Size = new System.Drawing.Size(202, 29);
this.comboBox_camara.TabIndex = 4;
this.comboBox_camara.SelectedIndexChanged += new System.EventHandler(this.ComboBox_camara_SelectedIndexChanged);
//
// comboBox_saveFile01
//
this.comboBox_saveFile01.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.comboBox_saveFile01.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.comboBox_saveFile01.Font = new System.Drawing.Font("宋体", 16F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.comboBox_saveFile01.FormattingEnabled = true;
this.comboBox_saveFile01.ItemHeight = 21;
this.comboBox_saveFile01.Location = new System.Drawing.Point(21, 280);
this.comboBox_saveFile01.Name = "comboBox_saveFile01";
this.comboBox_saveFile01.Size = new System.Drawing.Size(202, 29);
this.comboBox_saveFile01.TabIndex = 20;
this.comboBox_saveFile01.SelectedIndexChanged += new System.EventHandler(this.ComboBox_saveFile01_SelectedIndexChanged);
//
// label3
//
this.label3.AutoSize = true;
this.label3.Location = new System.Drawing.Point(19, 165);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(71, 12);
this.label3.TabIndex = 5;
this.label3.Text = "*选择分辨率";
//
// label7
//
this.label7.AutoSize = true;
this.label7.Location = new System.Drawing.Point(19, 264);
this.label7.Name = "label7";
this.label7.Size = new System.Drawing.Size(101, 12);
this.label7.TabIndex = 19;
this.label7.Text = "选择照片文件夹列";
//
// comboBox_Resolution
//
this.comboBox_Resolution.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.comboBox_Resolution.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.comboBox_Resolution.DropDownWidth = 190;
this.comboBox_Resolution.Font = new System.Drawing.Font("宋体", 16F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.comboBox_Resolution.FormattingEnabled = true;
this.comboBox_Resolution.ItemHeight = 21;
this.comboBox_Resolution.Location = new System.Drawing.Point(21, 181);
this.comboBox_Resolution.Name = "comboBox_Resolution";
this.comboBox_Resolution.Size = new System.Drawing.Size(202, 29);
this.comboBox_Resolution.TabIndex = 6;
this.comboBox_Resolution.SelectedIndexChanged += new System.EventHandler(this.ComboBox_Resolution_SelectedIndexChanged);
//
// label4
//
this.label4.AutoSize = true;
this.label4.Location = new System.Drawing.Point(19, 67);
this.label4.Name = "label4";
this.label4.Size = new System.Drawing.Size(83, 12);
this.label4.TabIndex = 7;
this.label4.Text = "*设置工作表名";
//
// textBox_excelSheetName
//
this.textBox_excelSheetName.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.textBox_excelSheetName.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.textBox_excelSheetName.Font = new System.Drawing.Font("宋体", 15F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.textBox_excelSheetName.Location = new System.Drawing.Point(21, 83);
this.textBox_excelSheetName.Name = "textBox_excelSheetName";
this.textBox_excelSheetName.Size = new System.Drawing.Size(202, 30);
this.textBox_excelSheetName.TabIndex = 8;
this.textBox_excelSheetName.Text = "Sheet1";
//
// textBox_photoFileSavePath
//
this.textBox_photoFileSavePath.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.textBox_photoFileSavePath.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.textBox_photoFileSavePath.Font = new System.Drawing.Font("宋体", 15F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.textBox_photoFileSavePath.Location = new System.Drawing.Point(21, 230);
this.textBox_photoFileSavePath.Name = "textBox_photoFileSavePath";
this.textBox_photoFileSavePath.Size = new System.Drawing.Size(202, 30);
this.textBox_photoFileSavePath.TabIndex = 16;
this.textBox_photoFileSavePath.Text = "C:\\Users\\Administrator\\Desktop";
this.textBox_photoFileSavePath.Click += new System.EventHandler(this.TextBox_photoFileSavePath_Click);
this.textBox_photoFileSavePath.TextChanged += new System.EventHandler(this.TextBox_photoFileSavePath_TextChanged);
//
// label6
//
this.label6.AutoSize = true;
this.label6.Location = new System.Drawing.Point(19, 214);
this.label6.Name = "label6";
this.label6.Size = new System.Drawing.Size(107, 12);
this.label6.TabIndex = 15;
this.label6.Text = "*选择文件保存路径";
//
// label5
//
this.label5.AutoSize = true;
this.label5.Location = new System.Drawing.Point(19, 341);
this.label5.Name = "label5";
this.label5.Size = new System.Drawing.Size(95, 12);
this.label5.TabIndex = 12;
this.label5.Text = "*选择照片名称列";
//
// comboBox_photoName
//
this.comboBox_photoName.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.comboBox_photoName.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.comboBox_photoName.Font = new System.Drawing.Font("宋体", 16F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.comboBox_photoName.FormattingEnabled = true;
this.comboBox_photoName.ItemHeight = 21;
this.comboBox_photoName.Location = new System.Drawing.Point(21, 357);
this.comboBox_photoName.Name = "comboBox_photoName";
this.comboBox_photoName.Size = new System.Drawing.Size(202, 29);
this.comboBox_photoName.TabIndex = 13;
this.comboBox_photoName.SelectedIndexChanged += new System.EventHandler(this.ComboBox_photoName_SelectedIndexChanged);
//
// splitContainer3
//
this.splitContainer3.Dock = System.Windows.Forms.DockStyle.Fill;
this.splitContainer3.Location = new System.Drawing.Point(0, 0);
this.splitContainer3.Name = "splitContainer3";
this.splitContainer3.Orientation = System.Windows.Forms.Orientation.Horizontal;
//
// splitContainer3.Panel1
//
this.splitContainer3.Panel1.Controls.Add(this.groupBox4);
//
// splitContainer3.Panel2
//
this.splitContainer3.Panel2.Controls.Add(this.splitContainer4);
this.splitContainer3.Size = new System.Drawing.Size(390, 651);
this.splitContainer3.SplitterDistance = 448;
this.splitContainer3.TabIndex = 0;
//
// groupBox4
//
this.groupBox4.Controls.Add(this.pictureBox_shootFocus);
this.groupBox4.Controls.Add(this.videoSourcePlayer);
this.groupBox4.Dock = System.Windows.Forms.DockStyle.Fill;
this.groupBox4.Location = new System.Drawing.Point(0, 0);
this.groupBox4.Name = "groupBox4";
this.groupBox4.Size = new System.Drawing.Size(390, 448);
this.groupBox4.TabIndex = 27;
this.groupBox4.TabStop = false;
this.groupBox4.Text = "照片拍摄";
//
// pictureBox_shootFocus
//
this.pictureBox_shootFocus.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.pictureBox_shootFocus.BackColor = System.Drawing.Color.Transparent;
this.pictureBox_shootFocus.Image = global::StudentPhotoCollection.Properties.Resources.焦点;
this.pictureBox_shootFocus.Location = new System.Drawing.Point(152, 160);
this.pictureBox_shootFocus.Name = "pictureBox_shootFocus";
this.pictureBox_shootFocus.Size = new System.Drawing.Size(100, 100);
this.pictureBox_shootFocus.SizeMode = System.Windows.Forms.PictureBoxSizeMode.CenterImage;
this.pictureBox_shootFocus.TabIndex = 14;
this.pictureBox_shootFocus.TabStop = false;
//
// videoSourcePlayer
//
this.videoSourcePlayer.BackColor = System.Drawing.SystemColors.Window;
this.videoSourcePlayer.BorderColor = System.Drawing.Color.Transparent;
this.videoSourcePlayer.Dock = System.Windows.Forms.DockStyle.Fill;
this.videoSourcePlayer.Location = new System.Drawing.Point(3, 17);
this.videoSourcePlayer.Name = "videoSourcePlayer";
this.videoSourcePlayer.Size = new System.Drawing.Size(384, 428);
this.videoSourcePlayer.TabIndex = 13;
this.videoSourcePlayer.Text = "videoSourcePlayer";
this.videoSourcePlayer.VideoSource = null;
this.videoSourcePlayer.DoubleClick += new System.EventHandler(this.VideoSourcePlayer_DoubleClick);
//
// splitContainer4
//
this.splitContainer4.Dock = System.Windows.Forms.DockStyle.Fill;
this.splitContainer4.Location = new System.Drawing.Point(0, 0);
this.splitContainer4.Name = "splitContainer4";
//
// splitContainer4.Panel1
//
this.splitContainer4.Panel1.Controls.Add(this.groupBox_photoPreviewLast);
//
// splitContainer4.Panel2
//
this.splitContainer4.Panel2.Controls.Add(this.groupBox_photoPreview);
this.splitContainer4.Size = new System.Drawing.Size(390, 199);
this.splitContainer4.SplitterDistance = 198;
this.splitContainer4.TabIndex = 0;
//
// groupBox_photoPreviewLast
//
this.groupBox_photoPreviewLast.BackColor = System.Drawing.SystemColors.Window;
this.groupBox_photoPreviewLast.Controls.Add(this.pictureBox_photoLast);
this.groupBox_photoPreviewLast.Dock = System.Windows.Forms.DockStyle.Fill;
this.groupBox_photoPreviewLast.Location = new System.Drawing.Point(0, 0);
this.groupBox_photoPreviewLast.Name = "groupBox_photoPreviewLast";
this.groupBox_photoPreviewLast.Size = new System.Drawing.Size(198, 199);
this.groupBox_photoPreviewLast.TabIndex = 0;
this.groupBox_photoPreviewLast.TabStop = false;
this.groupBox_photoPreviewLast.Text = "上张照片预览";
//
// pictureBox_photoLast
//
this.pictureBox_photoLast.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
this.pictureBox_photoLast.Dock = System.Windows.Forms.DockStyle.Fill;
this.pictureBox_photoLast.Location = new System.Drawing.Point(3, 17);
this.pictureBox_photoLast.Name = "pictureBox_photoLast";
this.pictureBox_photoLast.Size = new System.Drawing.Size(192, 179);
this.pictureBox_photoLast.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
this.pictureBox_photoLast.TabIndex = 15;
this.pictureBox_photoLast.TabStop = false;
this.pictureBox_photoLast.Click += new System.EventHandler(this.PictureBoxLast_photo_Click);
//
// groupBox_photoPreview
//
this.groupBox_photoPreview.BackColor = System.Drawing.SystemColors.Window;
this.groupBox_photoPreview.Controls.Add(this.pictureBox_photo);
this.groupBox_photoPreview.Dock = System.Windows.Forms.DockStyle.Fill;
this.groupBox_photoPreview.Location = new System.Drawing.Point(0, 0);
this.groupBox_photoPreview.Name = "groupBox_photoPreview";
this.groupBox_photoPreview.Size = new System.Drawing.Size(188, 199);
this.groupBox_photoPreview.TabIndex = 30;
this.groupBox_photoPreview.TabStop = false;
this.groupBox_photoPreview.Text = "当前照片预览";
//
// pictureBox_photo
//
this.pictureBox_photo.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
this.pictureBox_photo.Dock = System.Windows.Forms.DockStyle.Fill;
this.pictureBox_photo.Location = new System.Drawing.Point(3, 17);
this.pictureBox_photo.Name = "pictureBox_photo";
this.pictureBox_photo.Size = new System.Drawing.Size(182, 179);
this.pictureBox_photo.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
this.pictureBox_photo.TabIndex = 16;
this.pictureBox_photo.TabStop = false;
this.pictureBox_photo.Click += new System.EventHandler(this.PictureBox_photo_Click);
//
// openFileDialog_chooseFile
//
this.openFileDialog_chooseFile.FileName = "openFileDialog_chooseFile";
this.openFileDialog_chooseFile.Filter = "Files|*.xls;*.xlsx";
//
// folderBrowserDialog
//
this.folderBrowserDialog.Description = "请选择图片保存路径";
//
// MainForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.AutoScroll = true;
this.AutoSize = true;
this.BackColor = System.Drawing.SystemColors.Window;
this.ClientSize = new System.Drawing.Size(1163, 651);
this.Controls.Add(this.splitContainer1);
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.MinimumSize = new System.Drawing.Size(1000, 690);
this.Name = "MainForm";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "学生照片信息采集";
this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.MainForm_FormClosing);
this.Load += new System.EventHandler(this.MainForm_Load);
this.Resize += new System.EventHandler(this.MainForm_Resize);
this.splitContainer1.Panel1.ResumeLayout(false);
this.splitContainer1.Panel2.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit();
this.splitContainer1.ResumeLayout(false);
this.groupBox3.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(this.dataGridView)).EndInit();
this.splitContainer2.Panel1.ResumeLayout(false);
this.splitContainer2.Panel2.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(this.splitContainer2)).EndInit();
this.splitContainer2.ResumeLayout(false);
this.groupBox2.ResumeLayout(false);
this.groupBox2.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.pictureBox_showMsg7)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.pictureBox_showMsg6)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.pictureBox_showMsg4)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.pictureBox_showMsg5)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.pictureBox_showMsg3)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.pictureBox_showMsg2)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.pictureBox_showMsg1)).EndInit();
this.splitContainer3.Panel1.ResumeLayout(false);
this.splitContainer3.Panel2.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(this.splitContainer3)).EndInit();
this.splitContainer3.ResumeLayout(false);
this.groupBox4.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(this.pictureBox_shootFocus)).EndInit();
this.splitContainer4.Panel1.ResumeLayout(false);
this.splitContainer4.Panel2.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(this.splitContainer4)).EndInit();
this.splitContainer4.ResumeLayout(false);
this.groupBox_photoPreviewLast.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(this.pictureBox_photoLast)).EndInit();
this.groupBox_photoPreview.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(this.pictureBox_photo)).EndInit();
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.SplitContainer splitContainer1;
private System.Windows.Forms.DataGridView dataGridView;
private System.Windows.Forms.OpenFileDialog openFileDialog_chooseFile;
private System.Windows.Forms.FolderBrowserDialog folderBrowserDialog;
private System.Windows.Forms.SaveFileDialog saveFileDialog;
private System.Windows.Forms.GroupBox groupBox3;
private System.Windows.Forms.SplitContainer splitContainer2;
private System.Windows.Forms.GroupBox groupBox2;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.TextBox textBox_sjmb;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.ComboBox comboBox_saveFile02;
private System.Windows.Forms.ComboBox comboBox_camara;
private System.Windows.Forms.ComboBox comboBox_saveFile01;
private System.Windows.Forms.Label label3;
private System.Windows.Forms.Label label7;
private System.Windows.Forms.ComboBox comboBox_Resolution;
private System.Windows.Forms.Label label4;
private System.Windows.Forms.TextBox textBox_excelSheetName;
private System.Windows.Forms.TextBox textBox_photoFileSavePath;
private System.Windows.Forms.Label label6;
private System.Windows.Forms.Label label5;
private System.Windows.Forms.ComboBox comboBox_photoName;
private System.Windows.Forms.SplitContainer splitContainer3;
private System.Windows.Forms.GroupBox groupBox4;
private System.Windows.Forms.Button button_Connect;
private System.Windows.Forms.Button button_Disconnect;
private System.Windows.Forms.Button button_ExportData;
private AForge.Controls.VideoSourcePlayer videoSourcePlayer;
private System.Windows.Forms.Button button_Shoot;
private System.Windows.Forms.SplitContainer splitContainer4;
private System.Windows.Forms.GroupBox groupBox_photoPreviewLast;
private System.Windows.Forms.PictureBox pictureBox_photoLast;
private System.Windows.Forms.GroupBox groupBox_photoPreview;
private System.Windows.Forms.CheckBox checkBox_everCutPhoto;
private System.Windows.Forms.Label label_lastFilePathName;
private System.Windows.Forms.PictureBox pictureBox_showMsg1;
private System.Windows.Forms.PictureBox pictureBox_showMsg3;
private System.Windows.Forms.PictureBox pictureBox_showMsg2;
private System.Windows.Forms.PictureBox pictureBox_photo;
private System.Windows.Forms.PictureBox pictureBox_showMsg4;
private System.Windows.Forms.PictureBox pictureBox_showMsg5;
private System.Windows.Forms.PictureBox pictureBox_showMsg6;
private System.Windows.Forms.PictureBox pictureBox_shootFocus;
private System.Windows.Forms.PictureBox pictureBox_showMsg7;
private System.Windows.Forms.CheckBox checkBox_everCheckPhoto;
private System.Windows.Forms.Label label8;
}
}