1
yhj
2024-07-24 5e5d945e91568b973faa27d8ab0bcef99fc4a6c5
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
 
/*===================================================================
 *   程序说明: MES_Order的数据管理窗体
 *   作者资料: 孙中吕
 *   创建日期: 2024/05/21 03:13:43
 *   最后修改: 2024/05/21 03:13:43
 *   
 *   注: 本文件由代码生成器(Code Generator)自动生成。
 *   版权所有 Copyright 2006~2024, C/S框架网(www.cscode.net)
 *===================================================================*/
 
namespace CSFrameworkV5.WorkOrder
{
///<summary>
/// MES_Order的资料管理窗体
/// </summary>
public partial class frmWorkOrder
{
private const int gridsCount = 3;
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
 
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
    components.Dispose();
}
base.Dispose(disposing);
}
 
#region 生成本窗体所有组件成员清单
 
private DevExpress.XtraGrid.GridControl gcSummary;
private DevExpress.XtraGrid.Views.Grid.GridView gvSummary;
private DevExpress.XtraLayout.LayoutControl pcDetailEditor;
private DevExpress.XtraLayout.LayoutControlGroup layoutGroup;
private DevExpress.XtraLayout.EmptySpaceItem emptyRowEditor;
private DevExpress.XtraGrid.Columns.GridColumn coldaa001;
private DevExpress.XtraEditors.LabelControl lbldaa001;
private DevExpress.XtraLayout.LayoutControlItem layoutItemdaa001;
private DevExpress.XtraGrid.Columns.GridColumn colnotes;
private DevExpress.XtraEditors.LabelControl lblnotes;
        private DevExpress.XtraEditors.TextEdit txtnotes;
private DevExpress.XtraGrid.Columns.GridColumn colCreatedBy;
private DevExpress.XtraEditors.LabelControl lblcreate_by;
        private DevExpress.XtraEditors.TextEdit CreatedByTxt;
private DevExpress.XtraLayout.LayoutControlItem layoutItemcreate_by;
private DevExpress.XtraGrid.Columns.GridColumn colCreationDate;
private DevExpress.XtraEditors.LabelControl lblcreate_date;
private DevExpress.XtraLayout.LayoutControlItem layoutItemcreate_date;
private DevExpress.XtraEditors.PanelControl pcDetail;
private DevExpress.XtraGrid.Columns.GridColumn colD_Table0_IMAGE;
private DevExpress.XtraGrid.Columns.GridColumn colD_Table0_create_by;
private DevExpress.XtraGrid.Columns.GridColumn colD_Table0_create_date;
private DevExpress.XtraLayout.LayoutControlGroup detailGridTabPageLayoutControlGroup0;
private DevExpress.XtraLayout.LayoutControlItem detailGridTabPageLayoutControlItem0;
private DevExpress.XtraLayout.LayoutControl pnlSearch;
private DevExpress.XtraEditors.SimpleButton btnQuery;
private DevExpress.XtraLayout.LayoutControlItem layoutItem_QueryButton;
private DevExpress.XtraLayout.LayoutControlGroup layoutGroupSearch;
private DevExpress.XtraEditors.LabelControl lbl_daa001;
private DevExpress.XtraEditors.LabelControl lbl_create_by;
 
private DevExpress.XtraLayout.LayoutControl editorAndDetailTabLayout;
private DevExpress.XtraLayout.LayoutControlGroup editorAndDetailTabLayoutGroup;
private DevExpress.XtraEditors.SplitContainerControl splitContainerEditorAndDetailGrid;
private DevExpress.XtraLayout.LayoutControlItem splitContainerEditorAndDetailGridLayoutControlItem;
private DevExpress.XtraLayout.LayoutControl searchAndSummaryTabLayout;
private DevExpress.XtraLayout.LayoutControlGroup searchAndSummaryTabLayoutGroup;
private DevExpress.XtraLayout.LayoutControlGroup queryAndEmptyButtonLayoutGroup;
private DevExpress.XtraEditors.SplitContainerControl splitContainerSearchAndSummary;
private DevExpress.XtraLayout.LayoutControlItem splitContainerSearchAndSummaryLayoutControlItem;
private DevExpress.XtraLayout.LayoutControl detailGridsLayoutControl;
private DevExpress.XtraLayout.LayoutControlGroup detailGridsLayoutControlGroup;
private DevExpress.XtraLayout.TabbedControlGroup detailGridsTabbedControlGroup;
private DevExpress.XtraGrid.GridControl gcDetail0;
private DevExpress.XtraGrid.Views.Grid.GridView gvDetail0;
#endregion
 
#region Windows Form Designer generated code
 
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmWorkOrder));
            DevExpress.XtraLayout.RowDefinition rowDefinition3 = new DevExpress.XtraLayout.RowDefinition();
            DevExpress.XtraLayout.RowDefinition rowDefinition4 = new DevExpress.XtraLayout.RowDefinition();
            DevExpress.XtraLayout.ColumnDefinition columnDefinition1 = new DevExpress.XtraLayout.ColumnDefinition();
            DevExpress.XtraLayout.ColumnDefinition columnDefinition2 = new DevExpress.XtraLayout.ColumnDefinition();
            DevExpress.XtraLayout.ColumnDefinition columnDefinition3 = new DevExpress.XtraLayout.ColumnDefinition();
            DevExpress.XtraLayout.ColumnDefinition columnDefinition4 = new DevExpress.XtraLayout.ColumnDefinition();
            DevExpress.XtraLayout.RowDefinition rowDefinition1 = new DevExpress.XtraLayout.RowDefinition();
            DevExpress.XtraLayout.ColumnDefinition columnDefinition6 = new DevExpress.XtraLayout.ColumnDefinition();
            DevExpress.XtraLayout.RowDefinition rowDefinition5 = new DevExpress.XtraLayout.RowDefinition();
            DevExpress.XtraLayout.ColumnDefinition columnDefinition7 = new DevExpress.XtraLayout.ColumnDefinition();
            DevExpress.XtraLayout.RowDefinition rowDefinition6 = new DevExpress.XtraLayout.RowDefinition();
            DevExpress.XtraLayout.ColumnDefinition columnDefinition5 = new DevExpress.XtraLayout.ColumnDefinition();
            DevExpress.XtraLayout.RowDefinition rowDefinition2 = new DevExpress.XtraLayout.RowDefinition();
            this.gcSummary = new DevExpress.XtraGrid.GridControl();
            this.gvSummary = new DevExpress.XtraGrid.Views.Grid.GridView();
            this.coldaa001 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colnotes = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colCreatedBy = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colCreationDate = new DevExpress.XtraGrid.Columns.GridColumn();
            this.pcDetailEditor = new DevExpress.XtraLayout.LayoutControl();
            this.simpleButton1 = new DevExpress.XtraEditors.SimpleButton();
            this.buttonEdit1 = new DevExpress.XtraEditors.ButtonEdit();
            this.txtnotes = new DevExpress.XtraEditors.TextEdit();
            this.CreatedByTxt = new DevExpress.XtraEditors.TextEdit();
            this.txtdaa001 = new DevExpress.XtraEditors.SearchLookUpEdit();
            this.searchLookUpEdit1View = new DevExpress.XtraGrid.Views.Grid.GridView();
            this.CreateDateTxt = new DevExpress.XtraEditors.DateEdit();
            this.layoutGroup = new DevExpress.XtraLayout.LayoutControlGroup();
            this.layoutItemdaa001 = new DevExpress.XtraLayout.LayoutControlItem();
            this.layoutItemcreate_by = new DevExpress.XtraLayout.LayoutControlItem();
            this.layoutItemcreate_date = new DevExpress.XtraLayout.LayoutControlItem();
            this.layoutItemnotes = new DevExpress.XtraLayout.LayoutControlItem();
            this.layoutControlItem1 = new DevExpress.XtraLayout.LayoutControlItem();
            this.layoutControlItem2 = new DevExpress.XtraLayout.LayoutControlItem();
            this.emptyRowEditor = new DevExpress.XtraLayout.EmptySpaceItem();
            this.lbldaa001 = new DevExpress.XtraEditors.LabelControl();
            this.lblnotes = new DevExpress.XtraEditors.LabelControl();
            this.lblcreate_by = new DevExpress.XtraEditors.LabelControl();
            this.lblcreate_date = new DevExpress.XtraEditors.LabelControl();
            this.pcDetail = new DevExpress.XtraEditors.PanelControl();
            this.gcDetail0 = new DevExpress.XtraGrid.GridControl();
            this.gvDetail0 = new DevExpress.XtraGrid.Views.Grid.GridView();
            this.colD_Table0_IMAGE = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colD_Table0_create_by = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colD_Table0_create_date = new DevExpress.XtraGrid.Columns.GridColumn();
            this.pnlSearch = new DevExpress.XtraLayout.LayoutControl();
            this.btnQuery = new DevExpress.XtraEditors.SimpleButton();
            this.layoutGroupSearch = new DevExpress.XtraLayout.LayoutControlGroup();
            this.queryAndEmptyButtonLayoutGroup = new DevExpress.XtraLayout.LayoutControlGroup();
            this.layoutItem_QueryButton = new DevExpress.XtraLayout.LayoutControlItem();
            this.lbl_daa001 = new DevExpress.XtraEditors.LabelControl();
            this.lbl_create_by = new DevExpress.XtraEditors.LabelControl();
            this.editorAndDetailTabLayout = new DevExpress.XtraLayout.LayoutControl();
            this.splitContainerEditorAndDetailGrid = new DevExpress.XtraEditors.SplitContainerControl();
            this.detailGridsLayoutControl = new DevExpress.XtraLayout.LayoutControl();
            this.detailGridsLayoutControlGroup = new DevExpress.XtraLayout.LayoutControlGroup();
            this.detailGridsTabbedControlGroup = new DevExpress.XtraLayout.TabbedControlGroup();
            this.detailGridTabPageLayoutControlGroup0 = new DevExpress.XtraLayout.LayoutControlGroup();
            this.detailGridTabPageLayoutControlItem0 = new DevExpress.XtraLayout.LayoutControlItem();
            this.editorAndDetailTabLayoutGroup = new DevExpress.XtraLayout.LayoutControlGroup();
            this.splitContainerEditorAndDetailGridLayoutControlItem = new DevExpress.XtraLayout.LayoutControlItem();
            this.searchAndSummaryTabLayout = new DevExpress.XtraLayout.LayoutControl();
            this.splitContainerSearchAndSummary = new DevExpress.XtraEditors.SplitContainerControl();
            this.searchAndSummaryTabLayoutGroup = new DevExpress.XtraLayout.LayoutControlGroup();
            this.splitContainerSearchAndSummaryLayoutControlItem = new DevExpress.XtraLayout.LayoutControlItem();
            this.tpSummary.SuspendLayout();
            this.pnlSummary.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.tcBusiness)).BeginInit();
            this.tcBusiness.SuspendLayout();
            this.tpDetail.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.gcNavigator)).BeginInit();
            this.gcNavigator.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gcSummary)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gvSummary)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.pcDetailEditor)).BeginInit();
            this.pcDetailEditor.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.buttonEdit1.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.txtnotes.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.CreatedByTxt.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.txtdaa001.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.searchLookUpEdit1View)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.CreateDateTxt.Properties.CalendarTimeProperties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.CreateDateTxt.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutGroup)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutItemdaa001)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutItemcreate_by)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutItemcreate_date)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutItemnotes)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.emptyRowEditor)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.pcDetail)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gcDetail0)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gvDetail0)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.pnlSearch)).BeginInit();
            this.pnlSearch.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.layoutGroupSearch)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.queryAndEmptyButtonLayoutGroup)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutItem_QueryButton)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.editorAndDetailTabLayout)).BeginInit();
            this.editorAndDetailTabLayout.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.splitContainerEditorAndDetailGrid)).BeginInit();
            this.splitContainerEditorAndDetailGrid.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.detailGridsLayoutControl)).BeginInit();
            this.detailGridsLayoutControl.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.detailGridsLayoutControlGroup)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.detailGridsTabbedControlGroup)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.detailGridTabPageLayoutControlGroup0)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.detailGridTabPageLayoutControlItem0)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.editorAndDetailTabLayoutGroup)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.splitContainerEditorAndDetailGridLayoutControlItem)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.searchAndSummaryTabLayout)).BeginInit();
            this.searchAndSummaryTabLayout.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.splitContainerSearchAndSummary)).BeginInit();
            this.splitContainerSearchAndSummary.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.searchAndSummaryTabLayoutGroup)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.splitContainerSearchAndSummaryLayoutControlItem)).BeginInit();
            this.SuspendLayout();
            // 
            // tpSummary
            // 
            this.tpSummary.Appearance.PageClient.BackColor = System.Drawing.SystemColors.Control;
            this.tpSummary.Appearance.PageClient.Options.UseBackColor = true;
            this.tpSummary.Controls.Add(this.searchAndSummaryTabLayout);
            this.tpSummary.ImageOptions.Image = ((System.Drawing.Image)(resources.GetObject("tpSummary.ImageOptions.Image")));
            this.tpSummary.Margin = new System.Windows.Forms.Padding(3, 6, 3, 6);
            this.tpSummary.Size = new System.Drawing.Size(1147, 756);
            // 
            // pnlSummary
            // 
            this.pnlSummary.Location = new System.Drawing.Point(2, 5);
            this.pnlSummary.Margin = new System.Windows.Forms.Padding(3, 6, 3, 6);
            this.pnlSummary.Size = new System.Drawing.Size(1149, 788);
            // 
            // tcBusiness
            // 
            this.tcBusiness.Margin = new System.Windows.Forms.Padding(3, 6, 3, 6);
            this.tcBusiness.Size = new System.Drawing.Size(1149, 788);
            // 
            // tpDetail
            // 
            this.tpDetail.Appearance.PageClient.BackColor = System.Drawing.SystemColors.Control;
            this.tpDetail.Appearance.PageClient.Options.UseBackColor = true;
            this.tpDetail.Controls.Add(this.editorAndDetailTabLayout);
            this.tpDetail.ImageOptions.Image = ((System.Drawing.Image)(resources.GetObject("tpDetail.ImageOptions.Image")));
            this.tpDetail.Margin = new System.Windows.Forms.Padding(3, 6, 3, 6);
            this.tpDetail.Size = new System.Drawing.Size(1066, 758);
            // 
            // gcNavigator
            // 
            this.gcNavigator.Appearance.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
            this.gcNavigator.Appearance.Options.UseBackColor = true;
            this.gcNavigator.Margin = new System.Windows.Forms.Padding(3, 5, 3, 5);
            this.gcNavigator.Padding = new System.Windows.Forms.Padding(2, 4, 2, 4);
            this.gcNavigator.Size = new System.Drawing.Size(952, 33);
            // 
            // controlNavigatorSummary
            // 
            this.controlNavigatorSummary.Buttons.Append.Visible = false;
            this.controlNavigatorSummary.Buttons.CancelEdit.Visible = false;
            this.controlNavigatorSummary.Buttons.Edit.Visible = false;
            this.controlNavigatorSummary.Buttons.EndEdit.Visible = false;
            this.controlNavigatorSummary.Buttons.NextPage.Visible = false;
            this.controlNavigatorSummary.Buttons.PrevPage.Visible = false;
            this.controlNavigatorSummary.Buttons.Remove.Visible = false;
            this.controlNavigatorSummary.Location = new System.Drawing.Point(749, 4);
            this.controlNavigatorSummary.Margin = new System.Windows.Forms.Padding(3, 5, 3, 5);
            this.controlNavigatorSummary.Size = new System.Drawing.Size(201, 25);
            // 
            // txtFocusForSave
            // 
            this.txtFocusForSave.Margin = new System.Windows.Forms.Padding(3, 6, 3, 6);
            // 
            // lblAboutInfo
            // 
            this.lblAboutInfo.Location = new System.Drawing.Point(523, 3);
            // 
            // gcSummary
            // 
            this.gcSummary.Dock = System.Windows.Forms.DockStyle.Fill;
            this.gcSummary.EmbeddedNavigator.Buttons.Append.Visible = false;
            this.gcSummary.EmbeddedNavigator.Buttons.CancelEdit.Visible = false;
            this.gcSummary.EmbeddedNavigator.Buttons.Edit.Visible = false;
            this.gcSummary.EmbeddedNavigator.Buttons.EndEdit.Visible = false;
            this.gcSummary.EmbeddedNavigator.Buttons.NextPage.Visible = false;
            this.gcSummary.EmbeddedNavigator.Buttons.PrevPage.Visible = false;
            this.gcSummary.EmbeddedNavigator.Buttons.Remove.Visible = false;
            this.gcSummary.EmbeddedNavigator.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
            this.gcSummary.Location = new System.Drawing.Point(0, 0);
            this.gcSummary.MainView = this.gvSummary;
            this.gcSummary.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
            this.gcSummary.Name = "gcSummary";
            this.gcSummary.RightToLeft = System.Windows.Forms.RightToLeft.No;
            this.gcSummary.Size = new System.Drawing.Size(1131, 664);
            this.gcSummary.TabIndex = 10;
            this.gcSummary.UseEmbeddedNavigator = true;
            this.gcSummary.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
            this.gvSummary});
            // 
            // gvSummary
            // 
            this.gvSummary.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
            this.coldaa001,
            this.colnotes,
            this.colCreatedBy,
            this.colCreationDate});
            this.gvSummary.DetailHeight = 450;
            this.gvSummary.FixedLineWidth = 3;
            this.gvSummary.GridControl = this.gcSummary;
            this.gvSummary.Name = "gvSummary";
            this.gvSummary.OptionsView.ColumnAutoWidth = false;
            this.gvSummary.OptionsView.ShowButtonMode = DevExpress.XtraGrid.Views.Base.ShowButtonModeEnum.ShowAlways;
            this.gvSummary.OptionsView.ShowFooter = true;
            this.gvSummary.OptionsView.ShowGroupPanel = false;
            this.gvSummary.RowClick += new DevExpress.XtraGrid.Views.Grid.RowClickEventHandler(this.gvSummary_RowClick);
            // 
            // coldaa001
            // 
            this.coldaa001.AppearanceCell.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
            this.coldaa001.AppearanceCell.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
            this.coldaa001.AppearanceCell.Options.UseBackColor = true;
            this.coldaa001.AppearanceCell.Options.UseForeColor = true;
            this.coldaa001.Caption = "工单号";
            this.coldaa001.FieldName = "daa001";
            this.coldaa001.MinWidth = 23;
            this.coldaa001.Name = "coldaa001";
            this.coldaa001.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] {
            new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Count, "daa001", "条数:{0}")});
            this.coldaa001.Visible = true;
            this.coldaa001.VisibleIndex = 0;
            this.coldaa001.Width = 114;
            // 
            // colnotes
            // 
            this.colnotes.AppearanceCell.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
            this.colnotes.AppearanceCell.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
            this.colnotes.AppearanceCell.Options.UseBackColor = true;
            this.colnotes.AppearanceCell.Options.UseForeColor = true;
            this.colnotes.Caption = "要求内容";
            this.colnotes.FieldName = "notes";
            this.colnotes.MinWidth = 23;
            this.colnotes.Name = "colnotes";
            this.colnotes.Visible = true;
            this.colnotes.VisibleIndex = 1;
            this.colnotes.Width = 114;
            // 
            // colCreatedBy
            // 
            this.colCreatedBy.AppearanceCell.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
            this.colCreatedBy.AppearanceCell.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
            this.colCreatedBy.AppearanceCell.Options.UseBackColor = true;
            this.colCreatedBy.AppearanceCell.Options.UseForeColor = true;
            this.colCreatedBy.Caption = "创建人";
            this.colCreatedBy.FieldName = "CreatedBy";
            this.colCreatedBy.MinWidth = 23;
            this.colCreatedBy.Name = "colCreatedBy";
            this.colCreatedBy.Visible = true;
            this.colCreatedBy.VisibleIndex = 2;
            this.colCreatedBy.Width = 114;
            // 
            // colCreationDate
            // 
            this.colCreationDate.AppearanceCell.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
            this.colCreationDate.AppearanceCell.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
            this.colCreationDate.AppearanceCell.Options.UseBackColor = true;
            this.colCreationDate.AppearanceCell.Options.UseForeColor = true;
            this.colCreationDate.Caption = "创建时间";
            this.colCreationDate.FieldName = "CreationDate";
            this.colCreationDate.MinWidth = 23;
            this.colCreationDate.Name = "colCreationDate";
            this.colCreationDate.Visible = true;
            this.colCreationDate.VisibleIndex = 3;
            this.colCreationDate.Width = 114;
            // 
            // pcDetailEditor
            // 
            this.pcDetailEditor.Controls.Add(this.simpleButton1);
            this.pcDetailEditor.Controls.Add(this.buttonEdit1);
            this.pcDetailEditor.Controls.Add(this.txtnotes);
            this.pcDetailEditor.Controls.Add(this.CreatedByTxt);
            this.pcDetailEditor.Controls.Add(this.txtdaa001);
            this.pcDetailEditor.Controls.Add(this.CreateDateTxt);
            this.pcDetailEditor.Dock = System.Windows.Forms.DockStyle.Fill;
            this.pcDetailEditor.Location = new System.Drawing.Point(0, 0);
            this.pcDetailEditor.Name = "pcDetailEditor";
            this.pcDetailEditor.OptionsCustomizationForm.DesignTimeCustomizationFormPositionAndSize = new System.Drawing.Rectangle(863, 177, 650, 400);
            this.pcDetailEditor.Root = this.layoutGroup;
            this.pcDetailEditor.Size = new System.Drawing.Size(1050, 99);
            this.pcDetailEditor.TabIndex = 1;
            this.pcDetailEditor.Text = "pcDetailEditor";
            // 
            // simpleButton1
            // 
            this.simpleButton1.Location = new System.Drawing.Point(267, 35);
            this.simpleButton1.Name = "simpleButton1";
            this.simpleButton1.Size = new System.Drawing.Size(256, 27);
            this.simpleButton1.StyleController = this.pcDetailEditor;
            this.simpleButton1.TabIndex = 5;
            this.simpleButton1.Text = "上传";
            this.simpleButton1.Click += new System.EventHandler(this.simpleButton1_Click);
            // 
            // buttonEdit1
            // 
            this.buttonEdit1.Location = new System.Drawing.Point(40, 35);
            this.buttonEdit1.Name = "buttonEdit1";
            this.buttonEdit1.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton()});
            this.buttonEdit1.Size = new System.Drawing.Size(223, 24);
            this.buttonEdit1.StyleController = this.pcDetailEditor;
            this.buttonEdit1.TabIndex = 4;
            this.buttonEdit1.Click += new System.EventHandler(this.buttonEdit1_Click);
            // 
            // txtnotes
            // 
            this.txtnotes.Location = new System.Drawing.Point(347, 7);
            this.txtnotes.Name = "txtnotes";
            this.txtnotes.Properties.Appearance.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
            this.txtnotes.Properties.Appearance.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
            this.txtnotes.Properties.Appearance.Options.UseBackColor = true;
            this.txtnotes.Properties.Appearance.Options.UseForeColor = true;
            this.txtnotes.Size = new System.Drawing.Size(176, 24);
            this.txtnotes.StyleController = this.pcDetailEditor;
            this.txtnotes.TabIndex = 0;
            // 
            // CreatedByTxt
            // 
            this.CreatedByTxt.Location = new System.Drawing.Point(592, 7);
            this.CreatedByTxt.Name = "CreatedByTxt";
            this.CreatedByTxt.Properties.Appearance.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
            this.CreatedByTxt.Properties.Appearance.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
            this.CreatedByTxt.Properties.Appearance.Options.UseBackColor = true;
            this.CreatedByTxt.Properties.Appearance.Options.UseForeColor = true;
            this.CreatedByTxt.Size = new System.Drawing.Size(191, 24);
            this.CreatedByTxt.StyleController = this.pcDetailEditor;
            this.CreatedByTxt.TabIndex = 0;
            // 
            // txtdaa001
            // 
            this.txtdaa001.Location = new System.Drawing.Point(72, 7);
            this.txtdaa001.Name = "txtdaa001";
            this.txtdaa001.Properties.Appearance.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
            this.txtdaa001.Properties.Appearance.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
            this.txtdaa001.Properties.Appearance.Options.UseBackColor = true;
            this.txtdaa001.Properties.Appearance.Options.UseForeColor = true;
            this.txtdaa001.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.txtdaa001.Properties.NullText = "";
            this.txtdaa001.Properties.PopupView = this.searchLookUpEdit1View;
            this.txtdaa001.Properties.EditValueChanged += new System.EventHandler(this.txtdaa001_Properties_EditValueChanged);
            this.txtdaa001.Size = new System.Drawing.Size(191, 24);
            this.txtdaa001.StyleController = this.pcDetailEditor;
            this.txtdaa001.TabIndex = 0;
            // 
            // searchLookUpEdit1View
            // 
            this.searchLookUpEdit1View.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
            this.searchLookUpEdit1View.Name = "searchLookUpEdit1View";
            this.searchLookUpEdit1View.OptionsSelection.EnableAppearanceFocusedCell = false;
            this.searchLookUpEdit1View.OptionsView.ShowGroupPanel = false;
            // 
            // CreateDateTxt
            // 
            this.CreateDateTxt.EditValue = null;
            this.CreateDateTxt.Location = new System.Drawing.Point(867, 7);
            this.CreateDateTxt.Name = "CreateDateTxt";
            this.CreateDateTxt.Properties.Appearance.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
            this.CreateDateTxt.Properties.Appearance.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
            this.CreateDateTxt.Properties.Appearance.Options.UseBackColor = true;
            this.CreateDateTxt.Properties.Appearance.Options.UseForeColor = true;
            this.CreateDateTxt.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.CreateDateTxt.Properties.CalendarTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.CreateDateTxt.Properties.DisplayFormat.FormatString = "";
            this.CreateDateTxt.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
            this.CreateDateTxt.Properties.EditFormat.FormatString = "";
            this.CreateDateTxt.Properties.EditFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
            this.CreateDateTxt.Properties.Mask.EditMask = "";
            this.CreateDateTxt.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.None;
            this.CreateDateTxt.Size = new System.Drawing.Size(176, 24);
            this.CreateDateTxt.StyleController = this.pcDetailEditor;
            this.CreateDateTxt.TabIndex = 0;
            this.CreateDateTxt.EditValueChanged += new System.EventHandler(this.CreateDateTxt_EditValueChanged);
            // 
            // layoutGroup
            // 
            this.layoutGroup.EnableIndentsWithoutBorders = DevExpress.Utils.DefaultBoolean.True;
            this.layoutGroup.GroupBordersVisible = false;
            this.layoutGroup.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
            this.layoutItemdaa001,
            this.layoutItemcreate_by,
            this.layoutItemcreate_date,
            this.layoutItemnotes,
            this.layoutControlItem1,
            this.layoutControlItem2});
            this.layoutGroup.LayoutMode = DevExpress.XtraLayout.Utils.LayoutMode.Table;
            this.layoutGroup.Name = "Root";
            this.layoutGroup.OptionsTableLayoutGroup.ColumnDefinitions.AddRange(new DevExpress.XtraLayout.ColumnDefinition[] {
            columnDefinition1,
            columnDefinition2,
            columnDefinition3,
            columnDefinition4});
            rowDefinition3.Height = 28D;
            rowDefinition3.SizeType = System.Windows.Forms.SizeType.AutoSize;
            rowDefinition4.Height = 61D;
            rowDefinition4.SizeType = System.Windows.Forms.SizeType.AutoSize;
            this.layoutGroup.OptionsTableLayoutGroup.RowDefinitions.AddRange(new DevExpress.XtraLayout.RowDefinition[] {
            rowDefinition3,
            rowDefinition4});
            this.layoutGroup.Padding = new DevExpress.XtraLayout.Utils.Padding(5, 5, 5, 5);
            this.layoutGroup.Size = new System.Drawing.Size(1050, 99);
            this.layoutGroup.TextVisible = false;
            // 
            // layoutItemdaa001
            // 
            this.layoutItemdaa001.Control = this.txtdaa001;
            this.layoutItemdaa001.Location = new System.Drawing.Point(0, 0);
            this.layoutItemdaa001.Name = "layoutItemdaa001";
            this.layoutItemdaa001.Size = new System.Drawing.Size(260, 28);
            this.layoutItemdaa001.Text = "工单号:";
            this.layoutItemdaa001.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
            this.layoutItemdaa001.TextSize = new System.Drawing.Size(60, 18);
            this.layoutItemdaa001.TextToControlDistance = 5;
            // 
            // layoutItemcreate_by
            // 
            this.layoutItemcreate_by.Control = this.CreatedByTxt;
            this.layoutItemcreate_by.Location = new System.Drawing.Point(520, 0);
            this.layoutItemcreate_by.Name = "layoutItemcreate_by";
            this.layoutItemcreate_by.OptionsTableLayoutItem.ColumnIndex = 2;
            this.layoutItemcreate_by.Size = new System.Drawing.Size(260, 28);
            this.layoutItemcreate_by.Text = "创建人:";
            this.layoutItemcreate_by.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
            this.layoutItemcreate_by.TextSize = new System.Drawing.Size(60, 18);
            this.layoutItemcreate_by.TextToControlDistance = 5;
            // 
            // layoutItemcreate_date
            // 
            this.layoutItemcreate_date.Control = this.CreateDateTxt;
            this.layoutItemcreate_date.Location = new System.Drawing.Point(780, 0);
            this.layoutItemcreate_date.Name = "layoutItemcreate_date";
            this.layoutItemcreate_date.OptionsTableLayoutItem.ColumnIndex = 3;
            this.layoutItemcreate_date.Size = new System.Drawing.Size(260, 28);
            this.layoutItemcreate_date.Text = "创建时间:";
            this.layoutItemcreate_date.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
            this.layoutItemcreate_date.TextSize = new System.Drawing.Size(75, 18);
            this.layoutItemcreate_date.TextToControlDistance = 5;
            // 
            // layoutItemnotes
            // 
            this.layoutItemnotes.Control = this.txtnotes;
            this.layoutItemnotes.Location = new System.Drawing.Point(260, 0);
            this.layoutItemnotes.Name = "layoutItemnotes";
            this.layoutItemnotes.OptionsTableLayoutItem.ColumnIndex = 1;
            this.layoutItemnotes.Size = new System.Drawing.Size(260, 28);
            this.layoutItemnotes.Text = "要求内容:";
            this.layoutItemnotes.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
            this.layoutItemnotes.TextSize = new System.Drawing.Size(75, 18);
            this.layoutItemnotes.TextToControlDistance = 5;
            // 
            // layoutControlItem1
            // 
            this.layoutControlItem1.Control = this.buttonEdit1;
            this.layoutControlItem1.Location = new System.Drawing.Point(0, 28);
            this.layoutControlItem1.Name = "layoutControlItem1";
            this.layoutControlItem1.OptionsTableLayoutItem.RowIndex = 1;
            this.layoutControlItem1.Size = new System.Drawing.Size(260, 61);
            this.layoutControlItem1.Text = "图纸";
            this.layoutControlItem1.TextSize = new System.Drawing.Size(30, 18);
            // 
            // layoutControlItem2
            // 
            this.layoutControlItem2.Control = this.simpleButton1;
            this.layoutControlItem2.Location = new System.Drawing.Point(260, 28);
            this.layoutControlItem2.Name = "layoutControlItem2";
            this.layoutControlItem2.OptionsTableLayoutItem.ColumnIndex = 1;
            this.layoutControlItem2.OptionsTableLayoutItem.RowIndex = 1;
            this.layoutControlItem2.Size = new System.Drawing.Size(260, 61);
            this.layoutControlItem2.Text = "上传";
            this.layoutControlItem2.TextSize = new System.Drawing.Size(0, 0);
            this.layoutControlItem2.TextVisible = false;
            // 
            // emptyRowEditor
            // 
            this.emptyRowEditor.AllowHotTrack = false;
            this.emptyRowEditor.Location = new System.Drawing.Point(0, 300);
            this.emptyRowEditor.Name = "emptyRowEditor";
            this.emptyRowEditor.Size = new System.Drawing.Size(989, 94);
            this.emptyRowEditor.TextSize = new System.Drawing.Size(0, 0);
            // 
            // lbldaa001
            // 
            this.lbldaa001.Location = new System.Drawing.Point(0, 0);
            this.lbldaa001.Name = "lbldaa001";
            this.lbldaa001.Size = new System.Drawing.Size(94, 17);
            this.lbldaa001.TabIndex = 0;
            // 
            // lblnotes
            // 
            this.lblnotes.Location = new System.Drawing.Point(0, 0);
            this.lblnotes.Name = "lblnotes";
            this.lblnotes.Size = new System.Drawing.Size(94, 17);
            this.lblnotes.TabIndex = 0;
            // 
            // lblcreate_by
            // 
            this.lblcreate_by.Location = new System.Drawing.Point(0, 0);
            this.lblcreate_by.Name = "lblcreate_by";
            this.lblcreate_by.Size = new System.Drawing.Size(94, 17);
            this.lblcreate_by.TabIndex = 0;
            // 
            // lblcreate_date
            // 
            this.lblcreate_date.Location = new System.Drawing.Point(0, 0);
            this.lblcreate_date.Name = "lblcreate_date";
            this.lblcreate_date.Size = new System.Drawing.Size(94, 17);
            this.lblcreate_date.TabIndex = 0;
            // 
            // pcDetail
            // 
            this.pcDetail.Dock = System.Windows.Forms.DockStyle.Fill;
            this.pcDetail.Location = new System.Drawing.Point(0, 298);
            this.pcDetail.Name = "pcDetail";
            this.pcDetail.Size = new System.Drawing.Size(826, 465);
            this.pcDetail.TabIndex = 0;
            // 
            // gcDetail0
            // 
            this.gcDetail0.EmbeddedNavigator.Buttons.Append.Visible = false;
            this.gcDetail0.EmbeddedNavigator.Buttons.CancelEdit.Visible = false;
            this.gcDetail0.EmbeddedNavigator.Buttons.Edit.Visible = false;
            this.gcDetail0.EmbeddedNavigator.Buttons.EndEdit.Visible = false;
            this.gcDetail0.EmbeddedNavigator.Buttons.NextPage.Visible = false;
            this.gcDetail0.EmbeddedNavigator.Buttons.PrevPage.Visible = false;
            this.gcDetail0.EmbeddedNavigator.Buttons.Remove.Visible = false;
            this.gcDetail0.Location = new System.Drawing.Point(14, 44);
            this.gcDetail0.MainView = this.gvDetail0;
            this.gcDetail0.Name = "gcDetail0";
            this.gcDetail0.RightToLeft = System.Windows.Forms.RightToLeft.No;
            this.gcDetail0.Size = new System.Drawing.Size(1022, 576);
            this.gcDetail0.TabIndex = 10;
            this.gcDetail0.UseEmbeddedNavigator = true;
            this.gcDetail0.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
            this.gvDetail0});
            // 
            // gvDetail0
            // 
            this.gvDetail0.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
            this.colD_Table0_IMAGE,
            this.colD_Table0_create_by,
            this.colD_Table0_create_date});
            this.gvDetail0.GridControl = this.gcDetail0;
            this.gvDetail0.Name = "gvDetail0";
            this.gvDetail0.OptionsNavigation.EnterMoveNextColumn = true;
            this.gvDetail0.OptionsView.ColumnAutoWidth = false;
            this.gvDetail0.OptionsView.ShowButtonMode = DevExpress.XtraGrid.Views.Base.ShowButtonModeEnum.ShowAlways;
            this.gvDetail0.OptionsView.ShowFooter = true;
            this.gvDetail0.OptionsView.ShowGroupPanel = false;
            this.gvDetail0.Tag = "DA01IMAGE";
            this.gvDetail0.RowClick += new DevExpress.XtraGrid.Views.Grid.RowClickEventHandler(this.gvDetail0_RowClick);
            this.gvDetail0.KeyDown += new System.Windows.Forms.KeyEventHandler(this.gvDetail_KeyDown);
            // 
            // colD_Table0_IMAGE
            // 
            this.colD_Table0_IMAGE.AppearanceCell.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
            this.colD_Table0_IMAGE.AppearanceCell.Options.UseBackColor = true;
            this.colD_Table0_IMAGE.Caption = "图片";
            this.colD_Table0_IMAGE.FieldName = "IMAGE";
            this.colD_Table0_IMAGE.Name = "colD_Table0_IMAGE";
            this.colD_Table0_IMAGE.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] {
            new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Count, "IMAGE", "条数:{0}")});
            this.colD_Table0_IMAGE.Visible = true;
            this.colD_Table0_IMAGE.VisibleIndex = 0;
            this.colD_Table0_IMAGE.Width = 100;
            // 
            // colD_Table0_create_by
            // 
            this.colD_Table0_create_by.AppearanceCell.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
            this.colD_Table0_create_by.AppearanceCell.Options.UseBackColor = true;
            this.colD_Table0_create_by.Caption = "创建人";
            this.colD_Table0_create_by.FieldName = "create_by";
            this.colD_Table0_create_by.Name = "colD_Table0_create_by";
            this.colD_Table0_create_by.Visible = true;
            this.colD_Table0_create_by.VisibleIndex = 1;
            this.colD_Table0_create_by.Width = 100;
            // 
            // colD_Table0_create_date
            // 
            this.colD_Table0_create_date.AppearanceCell.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
            this.colD_Table0_create_date.AppearanceCell.Options.UseBackColor = true;
            this.colD_Table0_create_date.Caption = "创建时间";
            this.colD_Table0_create_date.FieldName = "create_date";
            this.colD_Table0_create_date.Name = "colD_Table0_create_date";
            this.colD_Table0_create_date.Visible = true;
            this.colD_Table0_create_date.VisibleIndex = 2;
            this.colD_Table0_create_date.Width = 100;
            // 
            // pnlSearch
            // 
            this.pnlSearch.Controls.Add(this.btnQuery);
            this.pnlSearch.Dock = System.Windows.Forms.DockStyle.Fill;
            this.pnlSearch.Location = new System.Drawing.Point(0, 0);
            this.pnlSearch.Margin = new System.Windows.Forms.Padding(0);
            this.pnlSearch.Name = "pnlSearch";
            this.pnlSearch.Root = this.layoutGroupSearch;
            this.pnlSearch.Size = new System.Drawing.Size(1131, 64);
            this.pnlSearch.TabIndex = 11;
            this.pnlSearch.Text = "pnlSearch";
            // 
            // btnQuery
            // 
            this.btnQuery.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.HotFlat;
            this.btnQuery.Cursor = System.Windows.Forms.Cursors.Hand;
            this.btnQuery.Location = new System.Drawing.Point(1013, 8);
            this.btnQuery.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
            this.btnQuery.Name = "btnQuery";
            this.btnQuery.Size = new System.Drawing.Size(110, 47);
            this.btnQuery.StyleController = this.pnlSearch;
            this.btnQuery.TabIndex = 20;
            this.btnQuery.Text = "查询(&S)";
            this.btnQuery.Click += new System.EventHandler(this.btnQuery_Click);
            // 
            // layoutGroupSearch
            // 
            this.layoutGroupSearch.EnableIndentsWithoutBorders = DevExpress.Utils.DefaultBoolean.True;
            this.layoutGroupSearch.GroupBordersVisible = false;
            this.layoutGroupSearch.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
            this.queryAndEmptyButtonLayoutGroup});
            this.layoutGroupSearch.LayoutMode = DevExpress.XtraLayout.Utils.LayoutMode.Table;
            this.layoutGroupSearch.Name = "layoutGroupSearch";
            columnDefinition1.SizeType = System.Windows.Forms.SizeType.Percent;
            columnDefinition1.Width = 25D;
            columnDefinition2.SizeType = System.Windows.Forms.SizeType.Percent;
            columnDefinition2.Width = 25D;
            columnDefinition3.SizeType = System.Windows.Forms.SizeType.Percent;
            columnDefinition3.Width = 25D;
            columnDefinition4.SizeType = System.Windows.Forms.SizeType.Percent;
            columnDefinition4.Width = 25D;
            this.layoutGroupSearch.OptionsTableLayoutGroup.ColumnDefinitions.AddRange(new DevExpress.XtraLayout.ColumnDefinition[] {
            columnDefinition1,
            columnDefinition2,
            columnDefinition3,
            columnDefinition4});
            rowDefinition1.Height = 52D;
            rowDefinition1.SizeType = System.Windows.Forms.SizeType.AutoSize;
            this.layoutGroupSearch.OptionsTableLayoutGroup.RowDefinitions.AddRange(new DevExpress.XtraLayout.RowDefinition[] {
            rowDefinition1});
            this.layoutGroupSearch.Padding = new DevExpress.XtraLayout.Utils.Padding(6, 6, 6, 6);
            this.layoutGroupSearch.Size = new System.Drawing.Size(1131, 64);
            this.layoutGroupSearch.TextVisible = false;
            // 
            // queryAndEmptyButtonLayoutGroup
            // 
            this.queryAndEmptyButtonLayoutGroup.DefaultLayoutType = DevExpress.XtraLayout.Utils.LayoutType.Horizontal;
            this.queryAndEmptyButtonLayoutGroup.FlowDirection = System.Windows.Forms.FlowDirection.RightToLeft;
            this.queryAndEmptyButtonLayoutGroup.GroupBordersVisible = false;
            this.queryAndEmptyButtonLayoutGroup.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
            this.layoutItem_QueryButton});
            this.queryAndEmptyButtonLayoutGroup.LayoutMode = DevExpress.XtraLayout.Utils.LayoutMode.Flow;
            this.queryAndEmptyButtonLayoutGroup.Location = new System.Drawing.Point(839, 0);
            this.queryAndEmptyButtonLayoutGroup.Name = "queryAndEmptyButtonLayoutGroup";
            this.queryAndEmptyButtonLayoutGroup.OptionsTableLayoutItem.ColumnIndex = 3;
            this.queryAndEmptyButtonLayoutGroup.Size = new System.Drawing.Size(280, 52);
            this.queryAndEmptyButtonLayoutGroup.TextVisible = false;
            // 
            // layoutItem_QueryButton
            // 
            this.layoutItem_QueryButton.ContentHorzAlignment = DevExpress.Utils.HorzAlignment.Far;
            this.layoutItem_QueryButton.Control = this.btnQuery;
            this.layoutItem_QueryButton.Location = new System.Drawing.Point(166, 0);
            this.layoutItem_QueryButton.MaxSize = new System.Drawing.Size(114, 51);
            this.layoutItem_QueryButton.MinSize = new System.Drawing.Size(114, 51);
            this.layoutItem_QueryButton.Name = "layoutItem_QueryButton";
            this.layoutItem_QueryButton.OptionsTableLayoutItem.ColumnIndex = 1;
            this.layoutItem_QueryButton.Size = new System.Drawing.Size(114, 51);
            this.layoutItem_QueryButton.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
            this.layoutItem_QueryButton.TextSize = new System.Drawing.Size(0, 0);
            this.layoutItem_QueryButton.TextVisible = false;
            // 
            // lbl_daa001
            // 
            this.lbl_daa001.Location = new System.Drawing.Point(0, 0);
            this.lbl_daa001.Name = "lbl_daa001";
            this.lbl_daa001.Size = new System.Drawing.Size(94, 17);
            this.lbl_daa001.TabIndex = 0;
            // 
            // lbl_create_by
            // 
            this.lbl_create_by.Location = new System.Drawing.Point(0, 0);
            this.lbl_create_by.Name = "lbl_create_by";
            this.lbl_create_by.Size = new System.Drawing.Size(94, 17);
            this.lbl_create_by.TabIndex = 0;
            // 
            // editorAndDetailTabLayout
            // 
            this.editorAndDetailTabLayout.Controls.Add(this.splitContainerEditorAndDetailGrid);
            this.editorAndDetailTabLayout.Dock = System.Windows.Forms.DockStyle.Fill;
            this.editorAndDetailTabLayout.Location = new System.Drawing.Point(0, 0);
            this.editorAndDetailTabLayout.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
            this.editorAndDetailTabLayout.Name = "editorAndDetailTabLayout";
            this.editorAndDetailTabLayout.OptionsCustomizationForm.DesignTimeCustomizationFormPositionAndSize = new System.Drawing.Rectangle(768, 224, 824, 400);
            this.editorAndDetailTabLayout.Root = this.editorAndDetailTabLayoutGroup;
            this.editorAndDetailTabLayout.Size = new System.Drawing.Size(1066, 758);
            this.editorAndDetailTabLayout.TabIndex = 1;
            this.editorAndDetailTabLayout.Text = "editorAndDetailTabLayout";
            // 
            // splitContainerEditorAndDetailGrid
            // 
            this.splitContainerEditorAndDetailGrid.Horizontal = false;
            this.splitContainerEditorAndDetailGrid.Location = new System.Drawing.Point(8, 5);
            this.splitContainerEditorAndDetailGrid.Name = "splitContainerEditorAndDetailGrid";
            this.splitContainerEditorAndDetailGrid.Panel1.Controls.Add(this.pcDetailEditor);
            this.splitContainerEditorAndDetailGrid.Panel2.Controls.Add(this.detailGridsLayoutControl);
            this.splitContainerEditorAndDetailGrid.Size = new System.Drawing.Size(1050, 745);
            this.splitContainerEditorAndDetailGrid.SplitterPosition = 99;
            this.splitContainerEditorAndDetailGrid.TabIndex = 4;
            // 
            // detailGridsLayoutControl
            // 
            this.detailGridsLayoutControl.Controls.Add(this.gcDetail0);
            this.detailGridsLayoutControl.Dock = System.Windows.Forms.DockStyle.Fill;
            this.detailGridsLayoutControl.Location = new System.Drawing.Point(0, 0);
            this.detailGridsLayoutControl.Name = "detailGridsLayoutControl";
            this.detailGridsLayoutControl.OptionsCustomizationForm.DesignTimeCustomizationFormPositionAndSize = new System.Drawing.Rectangle(694, 408, 812, 500);
            this.detailGridsLayoutControl.Root = this.detailGridsLayoutControlGroup;
            this.detailGridsLayoutControl.Size = new System.Drawing.Size(1050, 634);
            this.detailGridsLayoutControl.TabIndex = 1;
            this.detailGridsLayoutControl.Text = "detailGridsLayoutControl";
            // 
            // detailGridsLayoutControlGroup
            // 
            this.detailGridsLayoutControlGroup.GroupBordersVisible = false;
            this.detailGridsLayoutControlGroup.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
            this.detailGridsTabbedControlGroup});
            this.detailGridsLayoutControlGroup.Name = "Root";
            this.detailGridsLayoutControlGroup.Size = new System.Drawing.Size(1050, 634);
            this.detailGridsLayoutControlGroup.TextVisible = false;
            // 
            // detailGridsTabbedControlGroup
            // 
            this.detailGridsTabbedControlGroup.Location = new System.Drawing.Point(0, 0);
            this.detailGridsTabbedControlGroup.Name = "detailGridsTabbedControlGroup";
            this.detailGridsTabbedControlGroup.SelectedTabPage = this.detailGridTabPageLayoutControlGroup0;
            this.detailGridsTabbedControlGroup.Size = new System.Drawing.Size(1050, 634);
            this.detailGridsTabbedControlGroup.TabPages.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
            this.detailGridTabPageLayoutControlGroup0});
            // 
            // detailGridTabPageLayoutControlGroup0
            // 
            this.detailGridTabPageLayoutControlGroup0.GroupBordersVisible = false;
            this.detailGridTabPageLayoutControlGroup0.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
            this.detailGridTabPageLayoutControlItem0});
            this.detailGridTabPageLayoutControlGroup0.LayoutMode = DevExpress.XtraLayout.Utils.LayoutMode.Table;
            this.detailGridTabPageLayoutControlGroup0.Location = new System.Drawing.Point(0, 0);
            this.detailGridTabPageLayoutControlGroup0.Name = "detailGridTabPageLayoutControlGroup0";
            columnDefinition6.SizeType = System.Windows.Forms.SizeType.Percent;
            columnDefinition6.Width = 100D;
            this.detailGridTabPageLayoutControlGroup0.OptionsTableLayoutGroup.ColumnDefinitions.AddRange(new DevExpress.XtraLayout.ColumnDefinition[] {
            columnDefinition6});
            rowDefinition5.Height = 100D;
            rowDefinition5.SizeType = System.Windows.Forms.SizeType.Percent;
            this.detailGridTabPageLayoutControlGroup0.OptionsTableLayoutGroup.RowDefinitions.AddRange(new DevExpress.XtraLayout.RowDefinition[] {
            rowDefinition5});
            this.detailGridTabPageLayoutControlGroup0.Size = new System.Drawing.Size(1026, 580);
            this.detailGridTabPageLayoutControlGroup0.Text = "上传的图纸";
            // 
            // detailGridTabPageLayoutControlItem0
            // 
            this.detailGridTabPageLayoutControlItem0.Control = this.gcDetail0;
            this.detailGridTabPageLayoutControlItem0.Location = new System.Drawing.Point(0, 0);
            this.detailGridTabPageLayoutControlItem0.Name = "detailGridTabPageLayoutControlItem0";
            this.detailGridTabPageLayoutControlItem0.Size = new System.Drawing.Size(1026, 580);
            this.detailGridTabPageLayoutControlItem0.TextSize = new System.Drawing.Size(0, 0);
            this.detailGridTabPageLayoutControlItem0.TextVisible = false;
            // 
            // editorAndDetailTabLayoutGroup
            // 
            this.editorAndDetailTabLayoutGroup.EnableIndentsWithoutBorders = DevExpress.Utils.DefaultBoolean.True;
            this.editorAndDetailTabLayoutGroup.GroupBordersVisible = false;
            this.editorAndDetailTabLayoutGroup.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
            this.splitContainerEditorAndDetailGridLayoutControlItem});
            this.editorAndDetailTabLayoutGroup.LayoutMode = DevExpress.XtraLayout.Utils.LayoutMode.Table;
            this.editorAndDetailTabLayoutGroup.Name = "Root";
            columnDefinition7.SizeType = System.Windows.Forms.SizeType.Percent;
            columnDefinition7.Width = 100D;
            this.editorAndDetailTabLayoutGroup.OptionsTableLayoutGroup.ColumnDefinitions.AddRange(new DevExpress.XtraLayout.ColumnDefinition[] {
            columnDefinition7});
            rowDefinition6.Height = 746D;
            rowDefinition6.SizeType = System.Windows.Forms.SizeType.AutoSize;
            this.editorAndDetailTabLayoutGroup.OptionsTableLayoutGroup.RowDefinitions.AddRange(new DevExpress.XtraLayout.RowDefinition[] {
            rowDefinition6});
            this.editorAndDetailTabLayoutGroup.Padding = new DevExpress.XtraLayout.Utils.Padding(6, 6, 6, 6);
            this.editorAndDetailTabLayoutGroup.Size = new System.Drawing.Size(1066, 758);
            // 
            // splitContainerEditorAndDetailGridLayoutControlItem
            // 
            this.splitContainerEditorAndDetailGridLayoutControlItem.Control = this.splitContainerEditorAndDetailGrid;
            this.splitContainerEditorAndDetailGridLayoutControlItem.Location = new System.Drawing.Point(0, 0);
            this.splitContainerEditorAndDetailGridLayoutControlItem.Name = "splitContainerEditorAndDetailGridLayoutControlItem";
            this.splitContainerEditorAndDetailGridLayoutControlItem.Padding = new DevExpress.XtraLayout.Utils.Padding(2, 2, -1, 2);
            this.splitContainerEditorAndDetailGridLayoutControlItem.Size = new System.Drawing.Size(1054, 746);
            this.splitContainerEditorAndDetailGridLayoutControlItem.TextSize = new System.Drawing.Size(0, 0);
            this.splitContainerEditorAndDetailGridLayoutControlItem.TextVisible = false;
            // 
            // searchAndSummaryTabLayout
            // 
            this.searchAndSummaryTabLayout.Controls.Add(this.splitContainerSearchAndSummary);
            this.searchAndSummaryTabLayout.Dock = System.Windows.Forms.DockStyle.Fill;
            this.searchAndSummaryTabLayout.Location = new System.Drawing.Point(0, 0);
            this.searchAndSummaryTabLayout.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
            this.searchAndSummaryTabLayout.Name = "searchAndSummaryTabLayout";
            this.searchAndSummaryTabLayout.OptionsCustomizationForm.DesignTimeCustomizationFormPositionAndSize = new System.Drawing.Rectangle(1088, 207, 650, 400);
            this.searchAndSummaryTabLayout.Root = this.searchAndSummaryTabLayoutGroup;
            this.searchAndSummaryTabLayout.Size = new System.Drawing.Size(1147, 756);
            this.searchAndSummaryTabLayout.TabIndex = 1;
            this.searchAndSummaryTabLayout.Text = "searchAndSummaryTabLayout";
            // 
            // splitContainerSearchAndSummary
            // 
            this.splitContainerSearchAndSummary.Horizontal = false;
            this.splitContainerSearchAndSummary.Location = new System.Drawing.Point(8, 8);
            this.splitContainerSearchAndSummary.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
            this.splitContainerSearchAndSummary.Name = "splitContainerSearchAndSummary";
            this.splitContainerSearchAndSummary.Panel1.Controls.Add(this.pnlSearch);
            this.splitContainerSearchAndSummary.Panel2.Controls.Add(this.gcSummary);
            this.splitContainerSearchAndSummary.Size = new System.Drawing.Size(1131, 740);
            this.splitContainerSearchAndSummary.SplitterPosition = 64;
            this.splitContainerSearchAndSummary.TabIndex = 4;
            // 
            // searchAndSummaryTabLayoutGroup
            // 
            this.searchAndSummaryTabLayoutGroup.EnableIndentsWithoutBorders = DevExpress.Utils.DefaultBoolean.True;
            this.searchAndSummaryTabLayoutGroup.GroupBordersVisible = false;
            this.searchAndSummaryTabLayoutGroup.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
            this.splitContainerSearchAndSummaryLayoutControlItem});
            this.searchAndSummaryTabLayoutGroup.LayoutMode = DevExpress.XtraLayout.Utils.LayoutMode.Table;
            this.searchAndSummaryTabLayoutGroup.Name = "editorAndDetailTabLayoutGroup";
            columnDefinition5.SizeType = System.Windows.Forms.SizeType.Percent;
            columnDefinition5.Width = 100D;
            this.searchAndSummaryTabLayoutGroup.OptionsTableLayoutGroup.ColumnDefinitions.AddRange(new DevExpress.XtraLayout.ColumnDefinition[] {
            columnDefinition5});
            rowDefinition2.Height = 100D;
            rowDefinition2.SizeType = System.Windows.Forms.SizeType.Percent;
            this.searchAndSummaryTabLayoutGroup.OptionsTableLayoutGroup.RowDefinitions.AddRange(new DevExpress.XtraLayout.RowDefinition[] {
            rowDefinition2});
            this.searchAndSummaryTabLayoutGroup.Padding = new DevExpress.XtraLayout.Utils.Padding(6, 6, 6, 6);
            this.searchAndSummaryTabLayoutGroup.Size = new System.Drawing.Size(1147, 756);
            this.searchAndSummaryTabLayoutGroup.TextVisible = false;
            // 
            // splitContainerSearchAndSummaryLayoutControlItem
            // 
            this.splitContainerSearchAndSummaryLayoutControlItem.Control = this.splitContainerSearchAndSummary;
            this.splitContainerSearchAndSummaryLayoutControlItem.Location = new System.Drawing.Point(0, 0);
            this.splitContainerSearchAndSummaryLayoutControlItem.Name = "splitContainerSearchAndSummaryLayoutControlItem";
            this.splitContainerSearchAndSummaryLayoutControlItem.Size = new System.Drawing.Size(1135, 744);
            this.splitContainerSearchAndSummaryLayoutControlItem.TextSize = new System.Drawing.Size(0, 0);
            this.splitContainerSearchAndSummaryLayoutControlItem.TextVisible = false;
            // 
            // frmWorkOrder
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 18F);
            this.ClientSize = new System.Drawing.Size(1153, 798);
            this.Margin = new System.Windows.Forms.Padding(3, 10, 3, 10);
            this.Name = "frmWorkOrder";
            this.Padding = new System.Windows.Forms.Padding(2, 5, 2, 5);
            this.Text = "工单要求";
            this.Load += new System.EventHandler(this.frmWorkOrder_Load);
            this.tpSummary.ResumeLayout(false);
            this.pnlSummary.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.tcBusiness)).EndInit();
            this.tcBusiness.ResumeLayout(false);
            this.tpDetail.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.gcNavigator)).EndInit();
            this.gcNavigator.ResumeLayout(false);
            this.gcNavigator.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gcSummary)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gvSummary)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.pcDetailEditor)).EndInit();
            this.pcDetailEditor.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.buttonEdit1.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.txtnotes.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.CreatedByTxt.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.txtdaa001.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.searchLookUpEdit1View)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.CreateDateTxt.Properties.CalendarTimeProperties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.CreateDateTxt.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutGroup)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutItemdaa001)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutItemcreate_by)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutItemcreate_date)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutItemnotes)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.emptyRowEditor)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.pcDetail)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gcDetail0)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gvDetail0)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.pnlSearch)).EndInit();
            this.pnlSearch.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.layoutGroupSearch)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.queryAndEmptyButtonLayoutGroup)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.layoutItem_QueryButton)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.editorAndDetailTabLayout)).EndInit();
            this.editorAndDetailTabLayout.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.splitContainerEditorAndDetailGrid)).EndInit();
            this.splitContainerEditorAndDetailGrid.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.detailGridsLayoutControl)).EndInit();
            this.detailGridsLayoutControl.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.detailGridsLayoutControlGroup)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.detailGridsTabbedControlGroup)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.detailGridTabPageLayoutControlGroup0)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.detailGridTabPageLayoutControlItem0)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.editorAndDetailTabLayoutGroup)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.splitContainerEditorAndDetailGridLayoutControlItem)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.searchAndSummaryTabLayout)).EndInit();
            this.searchAndSummaryTabLayout.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.splitContainerSearchAndSummary)).EndInit();
            this.splitContainerSearchAndSummary.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.searchAndSummaryTabLayoutGroup)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.splitContainerSearchAndSummaryLayoutControlItem)).EndInit();
            this.ResumeLayout(false);
            this.PerformLayout();
 
}
 
        #endregion
 
        private DevExpress.XtraLayout.LayoutControlItem layoutItemnotes;
        private DevExpress.XtraEditors.SearchLookUpEdit txtdaa001;
        private DevExpress.XtraGrid.Views.Grid.GridView searchLookUpEdit1View;
        private DevExpress.XtraEditors.SimpleButton simpleButton1;
        private DevExpress.XtraEditors.ButtonEdit buttonEdit1;
        private DevExpress.XtraLayout.LayoutControlItem layoutControlItem1;
        private DevExpress.XtraLayout.LayoutControlItem layoutControlItem2;
        private DevExpress.XtraEditors.DateEdit CreateDateTxt;
    }//public partial class
}//namespace