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
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
namespace CSFrameworkV5.Library.Entry
{
    partial class frmMain1
    {
        /// <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 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()
        {
            this.components = new System.ComponentModel.Container();
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmMain1));
            this.xtraTabbedMdiManager1 = new DevExpress.XtraTabbedMdi.XtraTabbedMdiManager(this.components);
            this.barAndDockingController1 = new DevExpress.XtraBars.BarAndDockingController(this.components);
            this.barManager1 = new DevExpress.XtraBars.BarManager(this.components);
            this.barMainMenu = new DevExpress.XtraBars.Bar();
            this.bar3 = new DevExpress.XtraBars.Bar();
            this.btnLoginInfo = new DevExpress.XtraBars.BarLinkContainerItem();
            this.btnLogOut = new DevExpress.XtraBars.BarButtonItem();
            this.btnLockUI = new DevExpress.XtraBars.BarButtonItem();
            this.btnExit = new DevExpress.XtraBars.BarButtonItem();
            this.barDataSet = new DevExpress.XtraBars.BarStaticItem();
            this.btnBridgeType = new DevExpress.XtraBars.BarLinkContainerItem();
            this.btnBridgeADO = new DevExpress.XtraBars.BarCheckItem();
            this.btnBridgeWinSvc = new DevExpress.XtraBars.BarCheckItem();
            this.btnCompany = new DevExpress.XtraBars.BarButtonItem();
            this.btnRefreshCache = new DevExpress.XtraBars.BarButtonItem();
            this.btnMessagePrompt = new DevExpress.XtraBars.BarButtonItem();
            this.lbSystemMSG = new DevExpress.XtraBars.BarStaticItem();
            this.barStaticItem1 = new DevExpress.XtraBars.BarStaticItem();
            this.barDockControlTop = new DevExpress.XtraBars.BarDockControl();
            this.barDockControlBottom = new DevExpress.XtraBars.BarDockControl();
            this.barDockControlLeft = new DevExpress.XtraBars.BarDockControl();
            this.barDockControlRight = new DevExpress.XtraBars.BarDockControl();
            this.dockManager1 = new DevExpress.XtraBars.Docking.DockManager(this.components);
            this.dockPanel1 = new DevExpress.XtraBars.Docking.DockPanel();
            this.dockPanel1_Container = new DevExpress.XtraBars.Docking.ControlContainer();
            this.xtraScrollableControl1 = new DevExpress.XtraEditors.XtraScrollableControl();
            this.navBarControl1 = new DevExpress.XtraNavBar.NavBarControl();
            this.navBarGroup1 = new DevExpress.XtraNavBar.NavBarGroup();
            this.menuNavStyle = new System.Windows.Forms.ContextMenuStrip(this.components);
            this.menuNavStyleList = new System.Windows.Forms.ToolStripMenuItem();
            this.menuNavStyleTree = new System.Windows.Forms.ToolStripMenuItem();
            this.menuNavStylePanelList = new System.Windows.Forms.ToolStripMenuItem();
            this.menuNavStyleGroup = new System.Windows.Forms.ToolStripMenuItem();
            this.navBarGroup2 = new DevExpress.XtraNavBar.NavBarGroup();
            this.navBarGroup3 = new DevExpress.XtraNavBar.NavBarGroup();
            this.ilModuleIcon32 = new DevExpress.Utils.ImageCollection(this.components);
            this.ilSmall16 = new DevExpress.Utils.ImageCollection(this.components);
            this.barSubItem2 = new DevExpress.XtraBars.BarSubItem();
            this.barSubItem3 = new DevExpress.XtraBars.BarSubItem();
            this.lblCopyRights = new DevExpress.XtraBars.BarStaticItem();
            this.btnAbout = new DevExpress.XtraBars.BarButtonItem();
            this.menuDeveloper = new DevExpress.XtraBars.BarButtonItem();
            this.menuStripCloseForm = new System.Windows.Forms.ContextMenuStrip(this.components);
            this.menuCloseThis = new System.Windows.Forms.ToolStripMenuItem();
            this.menuCloseAll = new System.Windows.Forms.ToolStripMenuItem();
            this.timerMessage = new System.Windows.Forms.Timer(this.components);
            this.timerTick = new System.Windows.Forms.Timer(this.components);
            this.ribbon = new DevExpress.XtraBars.Ribbon.RibbonControl();
            this.ribbon_btnAbout = new DevExpress.XtraBars.BarButtonItem();
            this.ribbon_btnWindowList = new DevExpress.XtraBars.BarMdiChildrenListItem();
            this.ribbon_btnSetSkin = new DevExpress.XtraBars.BarLinkContainerItem();
            this.ribbon_btnHelp = new DevExpress.XtraBars.BarButtonItem();
            this.ribbon_btnShortCut = new DevExpress.XtraBars.BarButtonItem();
            this.ribbon_btnLan = new DevExpress.XtraBars.BarLinkContainerItem();
            this.ribbon_btnCHT = new DevExpress.XtraBars.BarCheckItem();
            this.ribbon_btnCHS = new DevExpress.XtraBars.BarCheckItem();
            this.ribbon_btnENG = new DevExpress.XtraBars.BarCheckItem();
            this.ribbonGallary = new DevExpress.XtraBars.RibbonGalleryBarItem();
            this.ribbon_btnSystemOptions = new DevExpress.XtraBars.BarButtonItem();
            this.ribbon_btnUserMgr = new DevExpress.XtraBars.BarButtonItem();
            this.ribbon_btnRoleMgr = new DevExpress.XtraBars.BarButtonItem();
            this.ribbon_btnSendMsg = new DevExpress.XtraBars.BarButtonItem();
            this.btnSetNormal = new DevExpress.XtraBars.BarButtonItem();
            this.btnSetOther = new DevExpress.XtraBars.BarButtonItem();
            this.btnShowTabPageHeader = new DevExpress.XtraBars.BarButtonItem();
            this.btnHideTabPageHeader = new DevExpress.XtraBars.BarButtonItem();
            this.btnShowMainMenu = new DevExpress.XtraBars.BarButtonItem();
            this.ribbon_PageToolBar = new DevExpress.XtraBars.Ribbon.RibbonPage();
            this.帮助关于 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            this.窗体皮肤 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            this.语言常用 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            this.ribbon_PageOther = new DevExpress.XtraBars.Ribbon.RibbonPage();
            this.ribbonPageGroup1 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            this.ribbonPageGroup2 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            this.ribbonPageGroup3 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            this.popToolBar = new DevExpress.XtraBars.PopupMenu(this.components);
            this.popupMenu1 = new DevExpress.XtraBars.PopupMenu(this.components);
            this.pnlQuickSearch = new DevExpress.XtraEditors.PanelControl();
            this.btnUserCustomParam = new System.Windows.Forms.LinkLabel();
            this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
            this.pictureBox1 = new System.Windows.Forms.PictureBox();
            this.txtCommand = new DevExpress.XtraEditors.TextEdit();
            ((System.ComponentModel.ISupportInitialize)(this.xtraTabbedMdiManager1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.barAndDockingController1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.barManager1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.dockManager1)).BeginInit();
            this.dockPanel1.SuspendLayout();
            this.dockPanel1_Container.SuspendLayout();
            this.xtraScrollableControl1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.navBarControl1)).BeginInit();
            this.menuNavStyle.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.ilModuleIcon32)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.ilSmall16)).BeginInit();
            this.menuStripCloseForm.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.ribbon)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.popToolBar)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.popupMenu1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.pnlQuickSearch)).BeginInit();
            this.pnlQuickSearch.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.txtCommand.Properties)).BeginInit();
            this.SuspendLayout();
            // 
            // xtraTabbedMdiManager1
            // 
            this.xtraTabbedMdiManager1.ClosePageButtonShowMode = DevExpress.XtraTab.ClosePageButtonShowMode.InAllTabPageHeaders;
            this.xtraTabbedMdiManager1.Controller = this.barAndDockingController1;
            this.xtraTabbedMdiManager1.HeaderLocation = DevExpress.XtraTab.TabHeaderLocation.Bottom;
            this.xtraTabbedMdiManager1.MdiParent = this;
            this.xtraTabbedMdiManager1.MouseUp += new System.Windows.Forms.MouseEventHandler(this.xtraTabbedMdiManager1_MouseUp);
            // 
            // barAndDockingController1
            // 
            this.barAndDockingController1.PropertiesBar.AllowLinkLighting = false;
            // 
            // barManager1
            // 
            this.barManager1.AllowCustomization = false;
            this.barManager1.AllowMoveBarOnToolbar = false;
            this.barManager1.AllowQuickCustomization = false;
            this.barManager1.Bars.AddRange(new DevExpress.XtraBars.Bar[] {
            this.barMainMenu,
            this.bar3});
            this.barManager1.Controller = this.barAndDockingController1;
            this.barManager1.DockControls.Add(this.barDockControlTop);
            this.barManager1.DockControls.Add(this.barDockControlBottom);
            this.barManager1.DockControls.Add(this.barDockControlLeft);
            this.barManager1.DockControls.Add(this.barDockControlRight);
            this.barManager1.DockManager = this.dockManager1;
            this.barManager1.Form = this;
            this.barManager1.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
            this.barSubItem2,
            this.barSubItem3,
            this.lblCopyRights,
            this.btnAbout,
            this.menuDeveloper,
            this.btnRefreshCache,
            this.barDataSet,
            this.btnCompany,
            this.btnMessagePrompt,
            this.lbSystemMSG,
            this.btnBridgeType,
            this.btnBridgeADO,
            this.btnBridgeWinSvc,
            this.btnLoginInfo,
            this.btnLogOut,
            this.btnLockUI,
            this.btnExit,
            this.barStaticItem1});
            this.barManager1.MainMenu = this.barMainMenu;
            this.barManager1.MaxItemId = 35;
            this.barManager1.StatusBar = this.bar3;
            // 
            // barMainMenu
            // 
            this.barMainMenu.BarName = "Main menu";
            this.barMainMenu.CanDockStyle = DevExpress.XtraBars.BarCanDockStyle.Top;
            this.barMainMenu.DockCol = 0;
            this.barMainMenu.DockRow = 0;
            this.barMainMenu.DockStyle = DevExpress.XtraBars.BarDockStyle.Top;
            this.barMainMenu.OptionsBar.AllowQuickCustomization = false;
            this.barMainMenu.OptionsBar.DrawDragBorder = false;
            this.barMainMenu.OptionsBar.UseWholeRow = true;
            this.barMainMenu.Text = "Main menu";
            this.barMainMenu.Visible = false;
            // 
            // bar3
            // 
            this.bar3.BarName = "Status bar";
            this.bar3.CanDockStyle = DevExpress.XtraBars.BarCanDockStyle.Bottom;
            this.bar3.DockCol = 0;
            this.bar3.DockRow = 0;
            this.bar3.DockStyle = DevExpress.XtraBars.BarDockStyle.Bottom;
            this.bar3.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.PaintStyle, this.btnLoginInfo, "", true, true, true, 0, null, DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph),
            new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.PaintStyle, this.barDataSet, DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph),
            new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.PaintStyle, this.btnBridgeType, "", true, true, true, 0, null, DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph),
            new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.PaintStyle, this.btnCompany, "", true, true, true, 0, null, DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph),
            new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.PaintStyle, this.btnRefreshCache, "", true, true, true, 0, null, DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph),
            new DevExpress.XtraBars.LinkPersistInfo(this.btnMessagePrompt, true),
            new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.PaintStyle, this.lbSystemMSG, "", true, true, true, 0, null, DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph),
            new DevExpress.XtraBars.LinkPersistInfo(this.barStaticItem1)});
            this.bar3.OptionsBar.AllowQuickCustomization = false;
            this.bar3.OptionsBar.DrawDragBorder = false;
            this.bar3.OptionsBar.UseWholeRow = true;
            this.bar3.Text = "Status bar";
            // 
            // btnLoginInfo
            // 
            this.btnLoginInfo.Caption = "登出(admin)";
            this.btnLoginInfo.Id = 30;
            this.btnLoginInfo.ImageOptions.Image = ((System.Drawing.Image)(resources.GetObject("btnLoginInfo.ImageOptions.Image")));
            this.btnLoginInfo.ImageOptions.ImageIndex = 0;
            this.btnLoginInfo.ImageOptions.LargeImage = ((System.Drawing.Image)(resources.GetObject("btnLoginInfo.ImageOptions.LargeImage")));
            this.btnLoginInfo.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.btnLogOut),
            new DevExpress.XtraBars.LinkPersistInfo(this.btnLockUI),
            new DevExpress.XtraBars.LinkPersistInfo(this.btnExit, true)});
            this.btnLoginInfo.Name = "btnLoginInfo";
            // 
            // btnLogOut
            // 
            this.btnLogOut.Caption = "注销";
            this.btnLogOut.Id = 31;
            this.btnLogOut.ImageOptions.Image = ((System.Drawing.Image)(resources.GetObject("btnLogOut.ImageOptions.Image")));
            this.btnLogOut.ImageOptions.ImageIndex = 18;
            this.btnLogOut.ImageOptions.LargeImage = ((System.Drawing.Image)(resources.GetObject("btnLogOut.ImageOptions.LargeImage")));
            this.btnLogOut.Name = "btnLogOut";
            this.btnLogOut.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btnLogout_ItemClick);
            // 
            // btnLockUI
            // 
            this.btnLockUI.Caption = "锁定";
            this.btnLockUI.Id = 32;
            this.btnLockUI.ImageOptions.Image = ((System.Drawing.Image)(resources.GetObject("btnLockUI.ImageOptions.Image")));
            this.btnLockUI.ImageOptions.ImageIndex = 14;
            this.btnLockUI.Name = "btnLockUI";
            this.btnLockUI.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btnLockUI_ItemClick);
            // 
            // btnExit
            // 
            this.btnExit.Caption = "退出";
            this.btnExit.Id = 33;
            this.btnExit.ImageOptions.Image = ((System.Drawing.Image)(resources.GetObject("btnExit.ImageOptions.Image")));
            this.btnExit.ImageOptions.ImageIndex = 17;
            this.btnExit.ImageOptions.LargeImage = ((System.Drawing.Image)(resources.GetObject("btnExit.ImageOptions.LargeImage")));
            this.btnExit.Name = "btnExit";
            this.btnExit.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btnExit_ItemClick);
            // 
            // barDataSet
            // 
            this.barDataSet.Caption = "帐套";
            this.barDataSet.Id = 14;
            this.barDataSet.ImageOptions.Image = ((System.Drawing.Image)(resources.GetObject("barDataSet.ImageOptions.Image")));
            this.barDataSet.ImageOptions.ImageIndex = 4;
            this.barDataSet.ImageOptions.LargeImage = ((System.Drawing.Image)(resources.GetObject("barDataSet.ImageOptions.LargeImage")));
            this.barDataSet.Name = "barDataSet";
            this.barDataSet.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
            // 
            // btnBridgeType
            // 
            this.btnBridgeType.Caption = "后台连接方式";
            this.btnBridgeType.Id = 23;
            this.btnBridgeType.ImageOptions.Image = ((System.Drawing.Image)(resources.GetObject("btnBridgeType.ImageOptions.Image")));
            this.btnBridgeType.ImageOptions.ImageIndex = 13;
            this.btnBridgeType.ImageOptions.LargeImage = ((System.Drawing.Image)(resources.GetObject("btnBridgeType.ImageOptions.LargeImage")));
            this.btnBridgeType.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.btnBridgeADO),
            new DevExpress.XtraBars.LinkPersistInfo(this.btnBridgeWinSvc)});
            this.btnBridgeType.Name = "btnBridgeType";
            // 
            // btnBridgeADO
            // 
            this.btnBridgeADO.Caption = "ADO-Direct";
            this.btnBridgeADO.Id = 27;
            this.btnBridgeADO.Name = "btnBridgeADO";
            this.btnBridgeADO.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btnBridgeADO_ItemClick);
            // 
            // btnBridgeWinSvc
            // 
            this.btnBridgeWinSvc.Caption = "WCF Windows Service Host";
            this.btnBridgeWinSvc.Id = 29;
            this.btnBridgeWinSvc.Name = "btnBridgeWinSvc";
            this.btnBridgeWinSvc.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btnBridgeWinSvc_ItemClick);
            // 
            // btnCompany
            // 
            this.btnCompany.Caption = "系统设置";
            this.btnCompany.Id = 16;
            this.btnCompany.ImageOptions.Image = ((System.Drawing.Image)(resources.GetObject("btnCompany.ImageOptions.Image")));
            this.btnCompany.ImageOptions.ImageIndex = 10;
            this.btnCompany.ImageOptions.LargeImage = ((System.Drawing.Image)(resources.GetObject("btnCompany.ImageOptions.LargeImage")));
            this.btnCompany.Name = "btnCompany";
            this.btnCompany.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btnCompany_ItemClick);
            // 
            // btnRefreshCache
            // 
            this.btnRefreshCache.Caption = "更新缓存数据";
            this.btnRefreshCache.Id = 13;
            this.btnRefreshCache.ImageOptions.Image = ((System.Drawing.Image)(resources.GetObject("btnRefreshCache.ImageOptions.Image")));
            this.btnRefreshCache.ImageOptions.ImageIndex = 7;
            this.btnRefreshCache.ImageOptions.LargeImage = ((System.Drawing.Image)(resources.GetObject("btnRefreshCache.ImageOptions.LargeImage")));
            this.btnRefreshCache.Name = "btnRefreshCache";
            this.btnRefreshCache.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btnRefreshCache_ItemClick);
            // 
            // btnMessagePrompt
            // 
            this.btnMessagePrompt.Caption = "您有(1)条未读消息";
            this.btnMessagePrompt.Id = 17;
            this.btnMessagePrompt.ImageOptions.Image = ((System.Drawing.Image)(resources.GetObject("btnMessagePrompt.ImageOptions.Image")));
            this.btnMessagePrompt.ImageOptions.ImageIndex = 1;
            this.btnMessagePrompt.ImageOptions.LargeImage = ((System.Drawing.Image)(resources.GetObject("btnMessagePrompt.ImageOptions.LargeImage")));
            this.btnMessagePrompt.Name = "btnMessagePrompt";
            this.btnMessagePrompt.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
            this.btnMessagePrompt.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btnMessagePrompt_ItemClick);
            // 
            // lbSystemMSG
            // 
            this.lbSystemMSG.Caption = "广播消息";
            this.lbSystemMSG.Id = 18;
            this.lbSystemMSG.ImageOptions.Image = ((System.Drawing.Image)(resources.GetObject("lbSystemMSG.ImageOptions.Image")));
            this.lbSystemMSG.ImageOptions.ImageIndex = 6;
            this.lbSystemMSG.ItemAppearance.Normal.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
            this.lbSystemMSG.ItemAppearance.Normal.Options.UseForeColor = true;
            this.lbSystemMSG.Name = "lbSystemMSG";
            this.lbSystemMSG.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
            // 
            // barStaticItem1
            // 
            this.barStaticItem1.Caption = "宁波广深科技";
            this.barStaticItem1.Id = 34;
            this.barStaticItem1.ImageOptions.Image = global::CSFrameworkV5.Library.Properties.Resources.home_16x16;
            this.barStaticItem1.Name = "barStaticItem1";
            this.barStaticItem1.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
            // 
            // barDockControlTop
            // 
            this.barDockControlTop.CausesValidation = false;
            this.barDockControlTop.Dock = System.Windows.Forms.DockStyle.Top;
            this.barDockControlTop.Location = new System.Drawing.Point(0, 0);
            this.barDockControlTop.Manager = this.barManager1;
            this.barDockControlTop.Size = new System.Drawing.Size(1121, 35);
            // 
            // barDockControlBottom
            // 
            this.barDockControlBottom.CausesValidation = false;
            this.barDockControlBottom.Dock = System.Windows.Forms.DockStyle.Bottom;
            this.barDockControlBottom.Location = new System.Drawing.Point(0, 598);
            this.barDockControlBottom.Manager = this.barManager1;
            this.barDockControlBottom.Size = new System.Drawing.Size(1121, 33);
            // 
            // barDockControlLeft
            // 
            this.barDockControlLeft.CausesValidation = false;
            this.barDockControlLeft.Dock = System.Windows.Forms.DockStyle.Left;
            this.barDockControlLeft.Location = new System.Drawing.Point(0, 35);
            this.barDockControlLeft.Manager = this.barManager1;
            this.barDockControlLeft.Size = new System.Drawing.Size(0, 563);
            // 
            // barDockControlRight
            // 
            this.barDockControlRight.CausesValidation = false;
            this.barDockControlRight.Dock = System.Windows.Forms.DockStyle.Right;
            this.barDockControlRight.Location = new System.Drawing.Point(1121, 35);
            this.barDockControlRight.Manager = this.barManager1;
            this.barDockControlRight.Size = new System.Drawing.Size(0, 563);
            // 
            // dockManager1
            // 
            this.dockManager1.Controller = this.barAndDockingController1;
            this.dockManager1.Form = this;
            this.dockManager1.MenuManager = this.barManager1;
            this.dockManager1.RootPanels.AddRange(new DevExpress.XtraBars.Docking.DockPanel[] {
            this.dockPanel1});
            this.dockManager1.TopZIndexControls.AddRange(new string[] {
            "DevExpress.XtraBars.BarDockControl",
            "DevExpress.XtraBars.StandaloneBarDockControl",
            "System.Windows.Forms.StatusBar",
            "DevExpress.XtraBars.Ribbon.RibbonStatusBar",
            "DevExpress.XtraBars.Ribbon.RibbonControl"});
            // 
            // dockPanel1
            // 
            this.dockPanel1.Controls.Add(this.dockPanel1_Container);
            this.dockPanel1.Dock = DevExpress.XtraBars.Docking.DockingStyle.Left;
            this.dockPanel1.ID = new System.Guid("4b327cf4-2932-4385-8dbd-9a7f7b53dde9");
            this.dockPanel1.Location = new System.Drawing.Point(0, 163);
            this.dockPanel1.Name = "dockPanel1";
            this.dockPanel1.Options.ShowCloseButton = false;
            this.dockPanel1.OriginalSize = new System.Drawing.Size(185, 200);
            this.dockPanel1.Size = new System.Drawing.Size(185, 435);
            this.dockPanel1.Text = "模块列表";
            this.dockPanel1.SizeChanged += new System.EventHandler(this.dockPanel1_SizeChanged);
            // 
            // dockPanel1_Container
            // 
            this.dockPanel1_Container.Controls.Add(this.xtraScrollableControl1);
            this.dockPanel1_Container.Location = new System.Drawing.Point(4, 32);
            this.dockPanel1_Container.Name = "dockPanel1_Container";
            this.dockPanel1_Container.Size = new System.Drawing.Size(175, 399);
            this.dockPanel1_Container.TabIndex = 0;
            // 
            // xtraScrollableControl1
            // 
            this.xtraScrollableControl1.AlwaysScrollActiveControlIntoView = false;
            this.xtraScrollableControl1.Controls.Add(this.navBarControl1);
            this.xtraScrollableControl1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.xtraScrollableControl1.Location = new System.Drawing.Point(0, 0);
            this.xtraScrollableControl1.Name = "xtraScrollableControl1";
            this.xtraScrollableControl1.Size = new System.Drawing.Size(175, 399);
            this.xtraScrollableControl1.TabIndex = 1;
            // 
            // navBarControl1
            // 
            this.navBarControl1.ActiveGroup = this.navBarGroup1;
            this.navBarControl1.ContentButtonHint = null;
            this.navBarControl1.ContextMenuStrip = this.menuNavStyle;
            this.navBarControl1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.navBarControl1.Groups.AddRange(new DevExpress.XtraNavBar.NavBarGroup[] {
            this.navBarGroup1,
            this.navBarGroup2,
            this.navBarGroup3});
            this.navBarControl1.LargeImages = this.ilModuleIcon32;
            this.navBarControl1.LinkSelectionMode = DevExpress.XtraNavBar.LinkSelectionModeType.OneInGroupAndAllowAutoSelect;
            this.navBarControl1.Location = new System.Drawing.Point(0, 0);
            this.navBarControl1.Name = "navBarControl1";
            this.navBarControl1.OptionsNavPane.ExpandedWidth = 175;
            this.navBarControl1.OptionsNavPane.ShowGroupImageInHeader = true;
            this.navBarControl1.PaintStyleKind = DevExpress.XtraNavBar.NavBarViewKind.NavigationPane;
            this.navBarControl1.Size = new System.Drawing.Size(175, 399);
            this.navBarControl1.SmallImages = this.ilSmall16;
            this.navBarControl1.StoreDefaultPaintStyleName = true;
            this.navBarControl1.TabIndex = 0;
            this.navBarControl1.Text = "navBarControl1";
            this.navBarControl1.SizeChanged += new System.EventHandler(this.navBarControl1_SizeChanged);
            // 
            // navBarGroup1
            // 
            this.navBarGroup1.Caption = "navBarGroup1";
            this.navBarGroup1.Expanded = true;
            this.navBarGroup1.GroupStyle = DevExpress.XtraNavBar.NavBarGroupStyle.LargeIconsText;
            this.navBarGroup1.ImageOptions.LargeImageIndex = 1;
            this.navBarGroup1.Name = "navBarGroup1";
            this.navBarGroup1.ShowIcons = DevExpress.Utils.DefaultBoolean.True;
            // 
            // menuNavStyle
            // 
            this.menuNavStyle.ImageScalingSize = new System.Drawing.Size(20, 20);
            this.menuNavStyle.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.menuNavStyleList,
            this.menuNavStyleTree,
            this.menuNavStylePanelList,
            this.menuNavStyleGroup});
            this.menuNavStyle.Name = "menuNavStyle";
            this.menuNavStyle.Size = new System.Drawing.Size(245, 108);
            // 
            // menuNavStyleList
            // 
            this.menuNavStyleList.Image = global::CSFrameworkV5.Library.Properties.Resources.List_16x16;
            this.menuNavStyleList.Name = "menuNavStyleList";
            this.menuNavStyleList.Size = new System.Drawing.Size(244, 26);
            this.menuNavStyleList.Text = "功能菜单-列表样式";
            this.menuNavStyleList.Click += new System.EventHandler(this.menuNavStyleList_Click);
            // 
            // menuNavStyleTree
            // 
            this.menuNavStyleTree.Name = "menuNavStyleTree";
            this.menuNavStyleTree.Size = new System.Drawing.Size(244, 26);
            this.menuNavStyleTree.Text = "功能菜单-树型样式";
            this.menuNavStyleTree.Click += new System.EventHandler(this.menuNavStyleTree_Click);
            // 
            // menuNavStylePanelList
            // 
            this.menuNavStylePanelList.Image = ((System.Drawing.Image)(resources.GetObject("menuNavStylePanelList.Image")));
            this.menuNavStylePanelList.Name = "menuNavStylePanelList";
            this.menuNavStylePanelList.Size = new System.Drawing.Size(244, 26);
            this.menuNavStylePanelList.Text = "Navigation Panel Style";
            this.menuNavStylePanelList.Click += new System.EventHandler(this.menuNavStylePanelList_Click);
            // 
            // menuNavStyleGroup
            // 
            this.menuNavStyleGroup.Image = ((System.Drawing.Image)(resources.GetObject("menuNavStyleGroup.Image")));
            this.menuNavStyleGroup.Name = "menuNavStyleGroup";
            this.menuNavStyleGroup.Size = new System.Drawing.Size(244, 26);
            this.menuNavStyleGroup.Text = "Group Style";
            this.menuNavStyleGroup.Click += new System.EventHandler(this.menuNavStyleGroup_Click);
            // 
            // navBarGroup2
            // 
            this.navBarGroup2.Caption = "navBarGroup2";
            this.navBarGroup2.ImageOptions.LargeImageIndex = 4;
            this.navBarGroup2.Name = "navBarGroup2";
            // 
            // navBarGroup3
            // 
            this.navBarGroup3.Caption = "navBarGroup3";
            this.navBarGroup3.Name = "navBarGroup3";
            // 
            // ilModuleIcon32
            // 
            this.ilModuleIcon32.ImageSize = new System.Drawing.Size(32, 32);
            this.ilModuleIcon32.ImageStream = ((DevExpress.Utils.ImageCollectionStreamer)(resources.GetObject("ilModuleIcon32.ImageStream")));
            this.ilModuleIcon32.InsertGalleryImage("mapit_32x32.png", "devav/actions/mapit_32x32.png", DevExpress.Images.ImageResourceCache.Default.GetImage("devav/actions/mapit_32x32.png"), 0);
            this.ilModuleIcon32.Images.SetKeyName(0, "mapit_32x32.png");
            this.ilModuleIcon32.InsertGalleryImage("support_32x32.png", "devav/actions/support_32x32.png", DevExpress.Images.ImageResourceCache.Default.GetImage("devav/actions/support_32x32.png"), 1);
            this.ilModuleIcon32.Images.SetKeyName(1, "support_32x32.png");
            this.ilModuleIcon32.InsertGalleryImage("documentmap_32x32.png", "grayscaleimages/page/documentmap_32x32.png", DevExpress.Images.ImageResourceCache.Default.GetImage("grayscaleimages/page/documentmap_32x32.png"), 2);
            this.ilModuleIcon32.Images.SetKeyName(2, "documentmap_32x32.png");
            this.ilModuleIcon32.InsertGalleryImage("newsales_32x32.png", "devav/actions/newsales_32x32.png", DevExpress.Images.ImageResourceCache.Default.GetImage("devav/actions/newsales_32x32.png"), 3);
            this.ilModuleIcon32.Images.SetKeyName(3, "newsales_32x32.png");
            this.ilModuleIcon32.InsertGalleryImage("costanalysis_32x32.png", "devav/actions/costanalysis_32x32.png", DevExpress.Images.ImageResourceCache.Default.GetImage("devav/actions/costanalysis_32x32.png"), 4);
            this.ilModuleIcon32.Images.SetKeyName(4, "costanalysis_32x32.png");
            this.ilModuleIcon32.InsertGalleryImage("home_32x32.png", "grayscaleimages/navigation/home_32x32.png", DevExpress.Images.ImageResourceCache.Default.GetImage("grayscaleimages/navigation/home_32x32.png"), 5);
            this.ilModuleIcon32.Images.SetKeyName(5, "home_32x32.png");
            this.ilModuleIcon32.InsertGalleryImage("currency_32x32.png", "office2013/miscellaneous/currency_32x32.png", DevExpress.Images.ImageResourceCache.Default.GetImage("office2013/miscellaneous/currency_32x32.png"), 6);
            this.ilModuleIcon32.Images.SetKeyName(6, "currency_32x32.png");
            this.ilModuleIcon32.InsertGalleryImage("chart_32x32.png", "office2013/chart/chart_32x32.png", DevExpress.Images.ImageResourceCache.Default.GetImage("office2013/chart/chart_32x32.png"), 7);
            this.ilModuleIcon32.Images.SetKeyName(7, "chart_32x32.png");
            this.ilModuleIcon32.InsertGalleryImage("operatingsystem_32x32.png", "office2013/programming/operatingsystem_32x32.png", DevExpress.Images.ImageResourceCache.Default.GetImage("office2013/programming/operatingsystem_32x32.png"), 8);
            this.ilModuleIcon32.Images.SetKeyName(8, "operatingsystem_32x32.png");
            this.ilModuleIcon32.InsertGalleryImage("editdatasource_32x32.png", "grayscaleimages/data/editdatasource_32x32.png", DevExpress.Images.ImageResourceCache.Default.GetImage("grayscaleimages/data/editdatasource_32x32.png"), 9);
            this.ilModuleIcon32.Images.SetKeyName(9, "editdatasource_32x32.png");
            this.ilModuleIcon32.InsertGalleryImage("customization_32x32.png", "grayscaleimages/edit/customization_32x32.png", DevExpress.Images.ImageResourceCache.Default.GetImage("grayscaleimages/edit/customization_32x32.png"), 10);
            this.ilModuleIcon32.Images.SetKeyName(10, "customization_32x32.png");
            this.ilModuleIcon32.InsertGalleryImage("customizegrid_32x32.png", "office2013/grid/customizegrid_32x32.png", DevExpress.Images.ImageResourceCache.Default.GetImage("office2013/grid/customizegrid_32x32.png"), 11);
            this.ilModuleIcon32.Images.SetKeyName(11, "customizegrid_32x32.png");
            this.ilModuleIcon32.InsertGalleryImage("customizegrid_32x32.png", "grayscaleimages/grid/customizegrid_32x32.png", DevExpress.Images.ImageResourceCache.Default.GetImage("grayscaleimages/grid/customizegrid_32x32.png"), 12);
            this.ilModuleIcon32.Images.SetKeyName(12, "customizegrid_32x32.png");
            this.ilModuleIcon32.InsertGalleryImage("palette_32x32.png", "office2013/miscellaneous/palette_32x32.png", DevExpress.Images.ImageResourceCache.Default.GetImage("office2013/miscellaneous/palette_32x32.png"), 13);
            this.ilModuleIcon32.Images.SetKeyName(13, "palette_32x32.png");
            this.ilModuleIcon32.InsertGalleryImage("documentmap_32x32.png", "office2013/navigation/documentmap_32x32.png", DevExpress.Images.ImageResourceCache.Default.GetImage("office2013/navigation/documentmap_32x32.png"), 14);
            this.ilModuleIcon32.Images.SetKeyName(14, "documentmap_32x32.png");
            this.ilModuleIcon32.InsertGalleryImage("home_32x32.png", "grayscaleimages/navigation/home_32x32.png", DevExpress.Images.ImageResourceCache.Default.GetImage("grayscaleimages/navigation/home_32x32.png"), 15);
            this.ilModuleIcon32.Images.SetKeyName(15, "home_32x32.png");
            this.ilModuleIcon32.InsertGalleryImage("printviapdf_32x32.png", "office2013/print/printviapdf_32x32.png", DevExpress.Images.ImageResourceCache.Default.GetImage("office2013/print/printviapdf_32x32.png"), 16);
            this.ilModuleIcon32.Images.SetKeyName(16, "printviapdf_32x32.png");
            this.ilModuleIcon32.InsertGalleryImage("projectdirectory_32x32.png", "office2013/programming/projectdirectory_32x32.png", DevExpress.Images.ImageResourceCache.Default.GetImage("office2013/programming/projectdirectory_32x32.png"), 17);
            this.ilModuleIcon32.Images.SetKeyName(17, "projectdirectory_32x32.png");
            this.ilModuleIcon32.InsertGalleryImage("feature_32x32.png", "office2013/support/feature_32x32.png", DevExpress.Images.ImageResourceCache.Default.GetImage("office2013/support/feature_32x32.png"), 18);
            this.ilModuleIcon32.Images.SetKeyName(18, "feature_32x32.png");
            // 
            // ilSmall16
            // 
            this.ilSmall16.ImageStream = ((DevExpress.Utils.ImageCollectionStreamer)(resources.GetObject("ilSmall16.ImageStream")));
            this.ilSmall16.InsertGalleryImage("open_16x16.png", "grayscaleimages/actions/open_16x16.png", DevExpress.Images.ImageResourceCache.Default.GetImage("grayscaleimages/actions/open_16x16.png"), 0);
            this.ilSmall16.Images.SetKeyName(0, "open_16x16.png");
            this.ilSmall16.InsertGalleryImage("cube_16x16.png", "grayscaleimages/miscellaneous/cube_16x16.png", DevExpress.Images.ImageResourceCache.Default.GetImage("grayscaleimages/miscellaneous/cube_16x16.png"), 1);
            this.ilSmall16.Images.SetKeyName(1, "cube_16x16.png");
            this.ilSmall16.InsertGalleryImage("operatingsystem_16x16.png", "office2013/programming/operatingsystem_16x16.png", DevExpress.Images.ImageResourceCache.Default.GetImage("office2013/programming/operatingsystem_16x16.png"), 2);
            this.ilSmall16.Images.SetKeyName(2, "operatingsystem_16x16.png");
            // 
            // barSubItem2
            // 
            this.barSubItem2.Caption = "关于C/S结构系统框架";
            this.barSubItem2.Id = 2;
            this.barSubItem2.Name = "barSubItem2";
            // 
            // barSubItem3
            // 
            this.barSubItem3.Caption = "孙中吕(Jonny Sun)";
            this.barSubItem3.Id = 3;
            this.barSubItem3.Name = "barSubItem3";
            // 
            // lblCopyRights
            // 
            this.lblCopyRights.Caption = "宁波广深科技";
            this.lblCopyRights.Id = 4;
            this.lblCopyRights.ImageOptions.Image = ((System.Drawing.Image)(resources.GetObject("lblCopyRights.ImageOptions.Image")));
            this.lblCopyRights.ImageOptions.LargeImage = ((System.Drawing.Image)(resources.GetObject("lblCopyRights.ImageOptions.LargeImage")));
            this.lblCopyRights.Name = "lblCopyRights";
            this.lblCopyRights.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
            // 
            // btnAbout
            // 
            this.btnAbout.Caption = "关于C/S开发框架";
            this.btnAbout.Id = 7;
            this.btnAbout.Name = "btnAbout";
            this.btnAbout.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btnAbout_ItemClick);
            // 
            // menuDeveloper
            // 
            this.menuDeveloper.Caption = "开发人员";
            this.menuDeveloper.Id = 11;
            this.menuDeveloper.Name = "menuDeveloper";
            // 
            // menuStripCloseForm
            // 
            this.menuStripCloseForm.ImageScalingSize = new System.Drawing.Size(20, 20);
            this.menuStripCloseForm.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.menuCloseThis,
            this.menuCloseAll});
            this.menuStripCloseForm.Name = "menuStripCloseForm";
            this.menuStripCloseForm.Size = new System.Drawing.Size(203, 56);
            // 
            // menuCloseThis
            // 
            this.menuCloseThis.Image = global::CSFrameworkV5.Library.Properties.Resources.Close_16x16;
            this.menuCloseThis.Name = "menuCloseThis";
            this.menuCloseThis.Size = new System.Drawing.Size(202, 26);
            this.menuCloseThis.Text = "关闭当前窗体";
            this.menuCloseThis.Click += new System.EventHandler(this.menuCloseThis_Click);
            // 
            // menuCloseAll
            // 
            this.menuCloseAll.Image = global::CSFrameworkV5.Library.Properties.Resources.TrendNone_16x16;
            this.menuCloseAll.Name = "menuCloseAll";
            this.menuCloseAll.Size = new System.Drawing.Size(202, 26);
            this.menuCloseAll.Text = "除此之外全部关闭";
            this.menuCloseAll.Click += new System.EventHandler(this.menuCloseAll_Click);
            // 
            // timerMessage
            // 
            this.timerMessage.Interval = 300000;
            this.timerMessage.Tick += new System.EventHandler(this.timerMessage_Tick);
            // 
            // timerTick
            // 
            this.timerTick.Interval = 500;
            this.timerTick.Tick += new System.EventHandler(this.timerTick_Tick);
            // 
            // ribbon
            // 
            this.ribbon.AllowKeyTips = false;
            this.ribbon.AllowMdiChildButtons = false;
            this.ribbon.AllowMinimizeRibbon = false;
            this.ribbon.AllowTrimPageText = false;
            this.ribbon.Controller = this.barAndDockingController1;
            this.ribbon.DrawGroupsBorderMode = DevExpress.Utils.DefaultBoolean.False;
            this.ribbon.ExpandCollapseItem.Id = 0;
            this.ribbon.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
            this.ribbon.ExpandCollapseItem,
            this.ribbon.SearchEditItem,
            this.ribbon_btnAbout,
            this.ribbon_btnWindowList,
            this.ribbon_btnSetSkin,
            this.ribbon_btnHelp,
            this.ribbon_btnShortCut,
            this.ribbon_btnLan,
            this.ribbonGallary,
            this.ribbon_btnSystemOptions,
            this.ribbon_btnUserMgr,
            this.ribbon_btnRoleMgr,
            this.ribbon_btnSendMsg,
            this.btnSetNormal,
            this.btnSetOther,
            this.btnShowTabPageHeader,
            this.btnHideTabPageHeader,
            this.btnShowMainMenu,
            this.ribbon_btnCHT,
            this.ribbon_btnCHS,
            this.ribbon_btnENG});
            this.ribbon.ItemsVertAlign = DevExpress.Utils.VertAlignment.Center;
            this.ribbon.Location = new System.Drawing.Point(0, 35);
            this.ribbon.MaxItemId = 4;
            this.ribbon.Name = "ribbon";
            this.ribbon.OptionsPageCategories.ShowCaptions = false;
            this.ribbon.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
            this.ribbon_PageToolBar,
            this.ribbon_PageOther});
            this.ribbon.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonControlStyle.Office2013;
            this.ribbon.ShowApplicationButton = DevExpress.Utils.DefaultBoolean.False;
            this.ribbon.ShowDisplayOptionsMenuButton = DevExpress.Utils.DefaultBoolean.False;
            this.ribbon.ShowExpandCollapseButton = DevExpress.Utils.DefaultBoolean.False;
            this.ribbon.ShowToolbarCustomizeItem = false;
            this.ribbon.Size = new System.Drawing.Size(1121, 128);
            this.ribbon.Toolbar.ShowCustomizeItem = false;
            this.ribbon.ToolbarLocation = DevExpress.XtraBars.Ribbon.RibbonQuickAccessToolbarLocation.Hidden;
            this.ribbon.SizeChanged += new System.EventHandler(this.ribbon_SizeChanged);
            this.ribbon.MouseUp += new System.Windows.Forms.MouseEventHandler(this.ribbon_MouseUp);
            // 
            // ribbon_btnAbout
            // 
            this.ribbon_btnAbout.Caption = "关于程序";
            this.ribbon_btnAbout.Id = 1;
            this.ribbon_btnAbout.ImageOptions.Image = ((System.Drawing.Image)(resources.GetObject("ribbon_btnAbout.ImageOptions.Image")));
            this.ribbon_btnAbout.ImageOptions.LargeImage = ((System.Drawing.Image)(resources.GetObject("ribbon_btnAbout.ImageOptions.LargeImage")));
            this.ribbon_btnAbout.Name = "ribbon_btnAbout";
            this.ribbon_btnAbout.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
            this.ribbon_btnAbout.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText;
            this.ribbon_btnAbout.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.ribbon_btnAbout_ItemClick);
            // 
            // ribbon_btnWindowList
            // 
            this.ribbon_btnWindowList.Caption = "窗体列表";
            this.ribbon_btnWindowList.Id = 2;
            this.ribbon_btnWindowList.ImageOptions.Image = ((System.Drawing.Image)(resources.GetObject("ribbon_btnWindowList.ImageOptions.Image")));
            this.ribbon_btnWindowList.ImageOptions.LargeImage = ((System.Drawing.Image)(resources.GetObject("ribbon_btnWindowList.ImageOptions.LargeImage")));
            this.ribbon_btnWindowList.Name = "ribbon_btnWindowList";
            this.ribbon_btnWindowList.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
            this.ribbon_btnWindowList.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText;
            // 
            // ribbon_btnSetSkin
            // 
            this.ribbon_btnSetSkin.Caption = "设置皮肤";
            this.ribbon_btnSetSkin.Id = 4;
            this.ribbon_btnSetSkin.ImageOptions.Image = ((System.Drawing.Image)(resources.GetObject("ribbon_btnSetSkin.ImageOptions.Image")));
            this.ribbon_btnSetSkin.ImageOptions.LargeImage = ((System.Drawing.Image)(resources.GetObject("ribbon_btnSetSkin.ImageOptions.LargeImage")));
            this.ribbon_btnSetSkin.Name = "ribbon_btnSetSkin";
            this.ribbon_btnSetSkin.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
            this.ribbon_btnSetSkin.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText;
            // 
            // ribbon_btnHelp
            // 
            this.ribbon_btnHelp.Caption = "系统帮助";
            this.ribbon_btnHelp.Id = 7;
            this.ribbon_btnHelp.ImageOptions.Image = ((System.Drawing.Image)(resources.GetObject("ribbon_btnHelp.ImageOptions.Image")));
            this.ribbon_btnHelp.Name = "ribbon_btnHelp";
            this.ribbon_btnHelp.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
            this.ribbon_btnHelp.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText;
            this.ribbon_btnHelp.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.ribbon_btnHelp_ItemClick);
            // 
            // ribbon_btnShortCut
            // 
            this.ribbon_btnShortCut.Caption = "设为常用";
            this.ribbon_btnShortCut.Id = 18;
            this.ribbon_btnShortCut.ImageOptions.Image = ((System.Drawing.Image)(resources.GetObject("ribbon_btnShortCut.ImageOptions.Image")));
            this.ribbon_btnShortCut.ImageOptions.LargeImage = ((System.Drawing.Image)(resources.GetObject("ribbon_btnShortCut.ImageOptions.LargeImage")));
            this.ribbon_btnShortCut.Name = "ribbon_btnShortCut";
            this.ribbon_btnShortCut.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
            this.ribbon_btnShortCut.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText;
            this.ribbon_btnShortCut.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.ribbon_btnShortCut_ItemClick);
            // 
            // ribbon_btnLan
            // 
            this.ribbon_btnLan.Caption = "设置语言";
            this.ribbon_btnLan.Id = 20;
            this.ribbon_btnLan.ImageOptions.Image = ((System.Drawing.Image)(resources.GetObject("ribbon_btnLan.ImageOptions.Image")));
            this.ribbon_btnLan.ImageOptions.LargeImage = ((System.Drawing.Image)(resources.GetObject("ribbon_btnLan.ImageOptions.LargeImage")));
            this.ribbon_btnLan.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.ribbon_btnCHT),
            new DevExpress.XtraBars.LinkPersistInfo(this.ribbon_btnCHS),
            new DevExpress.XtraBars.LinkPersistInfo(this.ribbon_btnENG)});
            this.ribbon_btnLan.Name = "ribbon_btnLan";
            this.ribbon_btnLan.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
            this.ribbon_btnLan.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText;
            // 
            // ribbon_btnCHT
            // 
            this.ribbon_btnCHT.Caption = "繁体";
            this.ribbon_btnCHT.Id = 1;
            this.ribbon_btnCHT.Name = "ribbon_btnCHT";
            this.ribbon_btnCHT.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.ribbon_btnCHT_ItemClick);
            // 
            // ribbon_btnCHS
            // 
            this.ribbon_btnCHS.Caption = "简体";
            this.ribbon_btnCHS.Id = 2;
            this.ribbon_btnCHS.Name = "ribbon_btnCHS";
            this.ribbon_btnCHS.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.ribbon_btnCHS_ItemClick);
            // 
            // ribbon_btnENG
            // 
            this.ribbon_btnENG.Caption = "英文";
            this.ribbon_btnENG.Id = 3;
            this.ribbon_btnENG.Name = "ribbon_btnENG";
            this.ribbon_btnENG.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.ribbon_btnENG_ItemClick);
            // 
            // ribbonGallary
            // 
            this.ribbonGallary.Caption = "ribbonGalleryBarItem1";
            this.ribbonGallary.Id = 24;
            this.ribbonGallary.Name = "ribbonGallary";
            this.ribbonGallary.GalleryItemClick += new DevExpress.XtraBars.Ribbon.GalleryItemClickEventHandler(this.ribbonGallary_GalleryItemClick);
            // 
            // ribbon_btnSystemOptions
            // 
            this.ribbon_btnSystemOptions.Caption = "系统选项";
            this.ribbon_btnSystemOptions.Id = 25;
            this.ribbon_btnSystemOptions.ImageOptions.Image = ((System.Drawing.Image)(resources.GetObject("ribbon_btnSystemOptions.ImageOptions.Image")));
            this.ribbon_btnSystemOptions.ImageOptions.LargeImage = ((System.Drawing.Image)(resources.GetObject("ribbon_btnSystemOptions.ImageOptions.LargeImage")));
            this.ribbon_btnSystemOptions.Name = "ribbon_btnSystemOptions";
            this.ribbon_btnSystemOptions.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
            this.ribbon_btnSystemOptions.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText;
            this.ribbon_btnSystemOptions.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.ribbon_btnSystemOptions_ItemClick);
            // 
            // ribbon_btnUserMgr
            // 
            this.ribbon_btnUserMgr.Caption = "用户管理";
            this.ribbon_btnUserMgr.Id = 26;
            this.ribbon_btnUserMgr.ImageOptions.Image = ((System.Drawing.Image)(resources.GetObject("ribbon_btnUserMgr.ImageOptions.Image")));
            this.ribbon_btnUserMgr.ImageOptions.LargeImage = ((System.Drawing.Image)(resources.GetObject("ribbon_btnUserMgr.ImageOptions.LargeImage")));
            this.ribbon_btnUserMgr.Name = "ribbon_btnUserMgr";
            this.ribbon_btnUserMgr.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
            this.ribbon_btnUserMgr.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText;
            this.ribbon_btnUserMgr.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.ribbon_btnUserMgr_ItemClick);
            // 
            // ribbon_btnRoleMgr
            // 
            this.ribbon_btnRoleMgr.Caption = "分配权限";
            this.ribbon_btnRoleMgr.Id = 27;
            this.ribbon_btnRoleMgr.ImageOptions.Image = ((System.Drawing.Image)(resources.GetObject("ribbon_btnRoleMgr.ImageOptions.Image")));
            this.ribbon_btnRoleMgr.ImageOptions.LargeImage = ((System.Drawing.Image)(resources.GetObject("ribbon_btnRoleMgr.ImageOptions.LargeImage")));
            this.ribbon_btnRoleMgr.Name = "ribbon_btnRoleMgr";
            this.ribbon_btnRoleMgr.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
            this.ribbon_btnRoleMgr.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText;
            this.ribbon_btnRoleMgr.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.ribbon_btnRoleMgr_ItemClick);
            // 
            // ribbon_btnSendMsg
            // 
            this.ribbon_btnSendMsg.Caption = "发送消息";
            this.ribbon_btnSendMsg.Id = 28;
            this.ribbon_btnSendMsg.ImageOptions.Image = ((System.Drawing.Image)(resources.GetObject("ribbon_btnSendMsg.ImageOptions.Image")));
            this.ribbon_btnSendMsg.ImageOptions.LargeImage = ((System.Drawing.Image)(resources.GetObject("ribbon_btnSendMsg.ImageOptions.LargeImage")));
            this.ribbon_btnSendMsg.Name = "ribbon_btnSendMsg";
            this.ribbon_btnSendMsg.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
            this.ribbon_btnSendMsg.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText;
            this.ribbon_btnSendMsg.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.ribbon_btnSendMsg_ItemClick);
            // 
            // btnSetNormal
            // 
            this.btnSetNormal.Caption = "常用功能";
            this.btnSetNormal.Id = 29;
            this.btnSetNormal.ImageOptions.Image = global::CSFrameworkV5.Library.Properties.Resources.checkbox_16x16;
            this.btnSetNormal.ImageOptions.LargeImage = global::CSFrameworkV5.Library.Properties.Resources.checkbox_32x32;
            this.btnSetNormal.Name = "btnSetNormal";
            this.btnSetNormal.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btnSetNormal_ItemClick);
            // 
            // btnSetOther
            // 
            this.btnSetOther.Caption = "其它功能";
            this.btnSetOther.Id = 30;
            this.btnSetOther.ImageOptions.Image = global::CSFrameworkV5.Library.Properties.Resources.pageorientation_16x16;
            this.btnSetOther.ImageOptions.LargeImage = global::CSFrameworkV5.Library.Properties.Resources.pageorientation_32x32;
            this.btnSetOther.Name = "btnSetOther";
            this.btnSetOther.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btnSetOther_ItemClick);
            // 
            // btnShowTabPageHeader
            // 
            this.btnShowTabPageHeader.Caption = "显示标签";
            this.btnShowTabPageHeader.Id = 31;
            this.btnShowTabPageHeader.ImageOptions.Image = global::CSFrameworkV5.Library.Properties.Resources.show_16x161;
            this.btnShowTabPageHeader.ImageOptions.LargeImage = global::CSFrameworkV5.Library.Properties.Resources.show_32x321;
            this.btnShowTabPageHeader.Name = "btnShowTabPageHeader";
            this.btnShowTabPageHeader.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btnShowTabPageHeader_ItemClick);
            // 
            // btnHideTabPageHeader
            // 
            this.btnHideTabPageHeader.Caption = "隐藏标签";
            this.btnHideTabPageHeader.Id = 32;
            this.btnHideTabPageHeader.ImageOptions.Image = global::CSFrameworkV5.Library.Properties.Resources.hiddentext_16x16;
            this.btnHideTabPageHeader.ImageOptions.LargeImage = global::CSFrameworkV5.Library.Properties.Resources.hiddentext_32x32;
            this.btnHideTabPageHeader.Name = "btnHideTabPageHeader";
            this.btnHideTabPageHeader.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btnHideTabPageHeader_ItemClick);
            // 
            // btnShowMainMenu
            // 
            this.btnShowMainMenu.Caption = "显示主菜单";
            this.btnShowMainMenu.Id = 33;
            this.btnShowMainMenu.ImageOptions.Image = global::CSFrameworkV5.Library.Properties.Resources.withtextwrapping_bottomright_16x16;
            this.btnShowMainMenu.ImageOptions.LargeImage = global::CSFrameworkV5.Library.Properties.Resources.withtextwrapping_bottomright_32x32;
            this.btnShowMainMenu.Name = "btnShowMainMenu";
            this.btnShowMainMenu.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btnShowMainMenu_ItemClick);
            // 
            // ribbon_PageToolBar
            // 
            this.ribbon_PageToolBar.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.帮助关于,
            this.窗体皮肤,
            this.语言常用});
            this.ribbon_PageToolBar.Name = "ribbon_PageToolBar";
            this.ribbon_PageToolBar.Text = "系统功能";
            // 
            // 帮助关于
            // 
            this.帮助关于.CaptionButtonVisible = DevExpress.Utils.DefaultBoolean.False;
            this.帮助关于.ItemLinks.Add(this.ribbon_btnAbout);
            this.帮助关于.ItemLinks.Add(this.ribbon_btnHelp);
            this.帮助关于.ItemsLayout = DevExpress.XtraBars.Ribbon.RibbonPageGroupItemsLayout.TwoRows;
            this.帮助关于.Name = "帮助关于";
            this.帮助关于.State = DevExpress.XtraBars.Ribbon.RibbonPageGroupState.Expanded;
            this.帮助关于.Text = "关于系统";
            // 
            // 窗体皮肤
            // 
            this.窗体皮肤.CaptionButtonVisible = DevExpress.Utils.DefaultBoolean.False;
            this.窗体皮肤.ItemLinks.Add(this.ribbon_btnWindowList);
            this.窗体皮肤.ItemLinks.Add(this.ribbon_btnSetSkin);
            this.窗体皮肤.Name = "窗体皮肤";
            this.窗体皮肤.State = DevExpress.XtraBars.Ribbon.RibbonPageGroupState.Expanded;
            this.窗体皮肤.Text = "皮肤设置";
            // 
            // 语言常用
            // 
            this.语言常用.CaptionButtonVisible = DevExpress.Utils.DefaultBoolean.False;
            this.语言常用.ItemLinks.Add(this.ribbon_btnShortCut);
            this.语言常用.ItemLinks.Add(this.ribbon_btnLan);
            this.语言常用.Name = "语言常用";
            this.语言常用.State = DevExpress.XtraBars.Ribbon.RibbonPageGroupState.Expanded;
            this.语言常用.Text = "常用设置";
            // 
            // ribbon_PageOther
            // 
            this.ribbon_PageOther.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.ribbonPageGroup1,
            this.ribbonPageGroup2,
            this.ribbonPageGroup3});
            this.ribbon_PageOther.Name = "ribbon_PageOther";
            this.ribbon_PageOther.Text = "其它功能";
            // 
            // ribbonPageGroup1
            // 
            this.ribbonPageGroup1.CaptionButtonVisible = DevExpress.Utils.DefaultBoolean.False;
            this.ribbonPageGroup1.ItemLinks.Add(this.ribbonGallary);
            this.ribbonPageGroup1.Name = "ribbonPageGroup1";
            this.ribbonPageGroup1.Text = "设置皮肤";
            // 
            // ribbonPageGroup2
            // 
            this.ribbonPageGroup2.CaptionButtonVisible = DevExpress.Utils.DefaultBoolean.False;
            this.ribbonPageGroup2.ItemLinks.Add(this.ribbon_btnSystemOptions);
            this.ribbonPageGroup2.ItemLinks.Add(this.ribbon_btnSendMsg);
            this.ribbonPageGroup2.Name = "ribbonPageGroup2";
            this.ribbonPageGroup2.Text = "扩展功能";
            // 
            // ribbonPageGroup3
            // 
            this.ribbonPageGroup3.CaptionButtonVisible = DevExpress.Utils.DefaultBoolean.False;
            this.ribbonPageGroup3.ItemLinks.Add(this.ribbon_btnUserMgr);
            this.ribbonPageGroup3.ItemLinks.Add(this.ribbon_btnRoleMgr);
            this.ribbonPageGroup3.Name = "ribbonPageGroup3";
            this.ribbonPageGroup3.Text = "权限功能";
            // 
            // popToolBar
            // 
            this.popToolBar.ItemLinks.Add(this.btnSetNormal);
            this.popToolBar.ItemLinks.Add(this.btnSetOther);
            this.popToolBar.ItemLinks.Add(this.btnShowTabPageHeader);
            this.popToolBar.ItemLinks.Add(this.btnHideTabPageHeader);
            this.popToolBar.ItemLinks.Add(this.btnShowMainMenu);
            this.popToolBar.Name = "popToolBar";
            this.popToolBar.Ribbon = this.ribbon;
            // 
            // popupMenu1
            // 
            this.popupMenu1.Manager = this.barManager1;
            this.popupMenu1.Name = "popupMenu1";
            // 
            // pnlQuickSearch
            // 
            this.pnlQuickSearch.Anchor = System.Windows.Forms.AnchorStyles.Right;
            this.pnlQuickSearch.Appearance.BackColor = System.Drawing.Color.Transparent;
            this.pnlQuickSearch.Appearance.Font = new System.Drawing.Font("微软雅黑", 8.25F);
            this.pnlQuickSearch.Appearance.Options.UseBackColor = true;
            this.pnlQuickSearch.Appearance.Options.UseFont = true;
            this.pnlQuickSearch.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
            this.pnlQuickSearch.Controls.Add(this.btnUserCustomParam);
            this.pnlQuickSearch.Controls.Add(this.labelControl1);
            this.pnlQuickSearch.Controls.Add(this.pictureBox1);
            this.pnlQuickSearch.Controls.Add(this.txtCommand);
            this.pnlQuickSearch.Location = new System.Drawing.Point(870, 82);
            this.pnlQuickSearch.Name = "pnlQuickSearch";
            this.pnlQuickSearch.Size = new System.Drawing.Size(240, 81);
            this.pnlQuickSearch.TabIndex = 23;
            // 
            // btnUserCustomParam
            // 
            this.btnUserCustomParam.AutoSize = true;
            this.btnUserCustomParam.Font = new System.Drawing.Font("微软雅黑", 10F, System.Drawing.FontStyle.Bold);
            this.btnUserCustomParam.LinkColor = System.Drawing.Color.SteelBlue;
            this.btnUserCustomParam.Location = new System.Drawing.Point(29, 45);
            this.btnUserCustomParam.Name = "btnUserCustomParam";
            this.btnUserCustomParam.Size = new System.Drawing.Size(78, 24);
            this.btnUserCustomParam.TabIndex = 18;
            this.btnUserCustomParam.TabStop = true;
            this.btnUserCustomParam.Text = "我的设置";
            this.btnUserCustomParam.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.btnUserCustomParam_LinkClicked);
            // 
            // labelControl1
            // 
            this.labelControl1.Location = new System.Drawing.Point(38, 17);
            this.labelControl1.Name = "labelControl1";
            this.labelControl1.Size = new System.Drawing.Size(75, 18);
            this.labelControl1.TabIndex = 17;
            this.labelControl1.Text = "快速命令:";
            // 
            // pictureBox1
            // 
            this.pictureBox1.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox1.Image")));
            this.pictureBox1.Location = new System.Drawing.Point(13, 16);
            this.pictureBox1.Name = "pictureBox1";
            this.pictureBox1.Size = new System.Drawing.Size(16, 16);
            this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.AutoSize;
            this.pictureBox1.TabIndex = 2;
            this.pictureBox1.TabStop = false;
            // 
            // txtCommand
            // 
            this.txtCommand.Location = new System.Drawing.Point(102, 12);
            this.txtCommand.MenuManager = this.barManager1;
            this.txtCommand.Name = "txtCommand";
            this.txtCommand.Properties.Appearance.Font = new System.Drawing.Font("微软雅黑", 9F);
            this.txtCommand.Properties.Appearance.Options.UseFont = true;
            this.txtCommand.Properties.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
            this.txtCommand.Properties.NullValuePrompt = "输入命令,按回车";
            this.txtCommand.Size = new System.Drawing.Size(124, 26);
            this.txtCommand.TabIndex = 0;
            this.txtCommand.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtCommand_KeyDown);
            // 
            // frmMain1
            // 
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
            this.ClientSize = new System.Drawing.Size(1121, 631);
            this.Controls.Add(this.pnlQuickSearch);
            this.Controls.Add(this.dockPanel1);
            this.Controls.Add(this.ribbon);
            this.Controls.Add(this.barDockControlLeft);
            this.Controls.Add(this.barDockControlRight);
            this.Controls.Add(this.barDockControlBottom);
            this.Controls.Add(this.barDockControlTop);
            this.IconOptions.Icon = ((System.Drawing.Icon)(resources.GetObject("frmMain1.IconOptions.Icon")));
            this.IconOptions.Image = global::CSFrameworkV5.Library.Properties.Resources.app_logo;
            this.IsMdiContainer = true;
            this.KeyPreview = false;
            this.Name = "frmMain1";
            this.Text = "MES(广深科技)";
            this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
            this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.frmMain_FormClosing);
            this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.frmMain_FormClosed);
            this.Load += new System.EventHandler(this.frmMain_Load);
            this.SizeChanged += new System.EventHandler(this.frmMain_SizeChanged);
            ((System.ComponentModel.ISupportInitialize)(this.xtraTabbedMdiManager1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.barAndDockingController1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.barManager1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.dockManager1)).EndInit();
            this.dockPanel1.ResumeLayout(false);
            this.dockPanel1_Container.ResumeLayout(false);
            this.xtraScrollableControl1.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.navBarControl1)).EndInit();
            this.menuNavStyle.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.ilModuleIcon32)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.ilSmall16)).EndInit();
            this.menuStripCloseForm.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.ribbon)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.popToolBar)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.popupMenu1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.pnlQuickSearch)).EndInit();
            this.pnlQuickSearch.ResumeLayout(false);
            this.pnlQuickSearch.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.txtCommand.Properties)).EndInit();
            this.ResumeLayout(false);
            this.PerformLayout();
 
        }
 
        #endregion
 
        private DevExpress.XtraTabbedMdi.XtraTabbedMdiManager xtraTabbedMdiManager1;
        private DevExpress.XtraBars.BarAndDockingController barAndDockingController1;
        private DevExpress.XtraBars.Docking.DockPanel dockPanel1;
        private DevExpress.XtraBars.Docking.ControlContainer dockPanel1_Container;
        private DevExpress.XtraBars.BarDockControl barDockControlLeft;
        private DevExpress.XtraBars.BarDockControl barDockControlRight;
        private DevExpress.XtraBars.BarDockControl barDockControlBottom;
        private DevExpress.XtraBars.BarDockControl barDockControlTop;
        private DevExpress.XtraBars.BarManager barManager1;
        private DevExpress.XtraBars.Bar barMainMenu;
        private DevExpress.XtraBars.Bar bar3;
        private DevExpress.XtraBars.Docking.DockManager dockManager1;
        private DevExpress.XtraBars.BarSubItem barSubItem2;
        private DevExpress.XtraBars.BarSubItem barSubItem3;
        private DevExpress.XtraBars.BarStaticItem lblCopyRights;
        private DevExpress.XtraBars.BarButtonItem btnAbout;
        private DevExpress.XtraNavBar.NavBarControl navBarControl1;
        private DevExpress.XtraBars.BarButtonItem menuDeveloper;
        private DevExpress.XtraBars.BarButtonItem btnRefreshCache;
        private DevExpress.XtraBars.BarStaticItem barDataSet;
        private DevExpress.XtraBars.BarButtonItem btnCompany;
        private System.Windows.Forms.ContextMenuStrip menuStripCloseForm;
        private System.Windows.Forms.ToolStripMenuItem menuCloseThis;
        private System.Windows.Forms.ToolStripMenuItem menuCloseAll;
        private DevExpress.XtraBars.BarButtonItem btnMessagePrompt;
        private System.Windows.Forms.Timer timerMessage;
        private System.Windows.Forms.Timer timerTick;
        private DevExpress.XtraBars.BarStaticItem lbSystemMSG;
        private DevExpress.XtraBars.Ribbon.RibbonControl ribbon;
        private DevExpress.XtraBars.BarButtonItem ribbon_btnAbout;
        private DevExpress.XtraBars.BarMdiChildrenListItem ribbon_btnWindowList;
        private DevExpress.XtraBars.BarLinkContainerItem ribbon_btnSetSkin;
        private DevExpress.XtraBars.BarButtonItem ribbon_btnHelp;
        private DevExpress.XtraBars.Ribbon.RibbonPage ribbon_PageToolBar;
        private DevExpress.XtraBars.Ribbon.RibbonPageGroup 帮助关于;
        private DevExpress.XtraBars.Ribbon.RibbonPageGroup 窗体皮肤;
        private DevExpress.XtraBars.Ribbon.RibbonPage ribbon_PageOther;
        private DevExpress.XtraBars.BarButtonItem ribbon_btnShortCut;
        private DevExpress.XtraBars.BarLinkContainerItem ribbon_btnLan;
        private DevExpress.XtraBars.Ribbon.RibbonPageGroup 语言常用;
        private DevExpress.XtraBars.RibbonGalleryBarItem ribbonGallary;
        private DevExpress.XtraBars.Ribbon.RibbonPageGroup ribbonPageGroup1;
        private DevExpress.XtraBars.Ribbon.RibbonPageGroup ribbonPageGroup2;
        private DevExpress.XtraBars.BarButtonItem ribbon_btnSystemOptions;
        private DevExpress.XtraBars.BarButtonItem ribbon_btnUserMgr;
        private DevExpress.XtraBars.BarButtonItem ribbon_btnRoleMgr;
        private DevExpress.XtraBars.Ribbon.RibbonPageGroup ribbonPageGroup3;
        private DevExpress.XtraBars.BarButtonItem ribbon_btnSendMsg;
        private DevExpress.XtraBars.BarButtonItem btnSetNormal;
        private DevExpress.XtraBars.BarButtonItem btnSetOther;
        private DevExpress.XtraBars.PopupMenu popToolBar;
        private DevExpress.XtraBars.BarButtonItem btnShowTabPageHeader;
        private DevExpress.XtraBars.BarButtonItem btnHideTabPageHeader;
        private DevExpress.XtraBars.BarLinkContainerItem btnBridgeType;
        private DevExpress.XtraBars.BarCheckItem btnBridgeADO;
        private DevExpress.XtraBars.BarCheckItem btnBridgeWinSvc;
        private DevExpress.XtraBars.BarLinkContainerItem btnLoginInfo;
        private DevExpress.XtraBars.PopupMenu popupMenu1;
        private DevExpress.XtraBars.BarButtonItem btnLogOut;
        private DevExpress.XtraBars.BarButtonItem btnLockUI;
        private DevExpress.XtraBars.BarButtonItem btnExit;
        private DevExpress.XtraBars.BarButtonItem btnShowMainMenu;
        private DevExpress.XtraEditors.PanelControl pnlQuickSearch;
        private System.Windows.Forms.PictureBox pictureBox1;
        private DevExpress.XtraEditors.TextEdit txtCommand;
        private DevExpress.XtraEditors.LabelControl labelControl1;
        private DevExpress.XtraEditors.XtraScrollableControl xtraScrollableControl1;
        private System.Windows.Forms.ContextMenuStrip menuNavStyle;
        private System.Windows.Forms.ToolStripMenuItem menuNavStyleList;
        private System.Windows.Forms.ToolStripMenuItem menuNavStyleTree;
        private System.Windows.Forms.LinkLabel btnUserCustomParam;
        private System.Windows.Forms.ToolStripMenuItem menuNavStylePanelList;
        private System.Windows.Forms.ToolStripMenuItem menuNavStyleGroup;
        private DevExpress.Utils.ImageCollection ilModuleIcon32;
        private DevExpress.XtraNavBar.NavBarGroup navBarGroup1;
        private DevExpress.XtraNavBar.NavBarGroup navBarGroup2;
        private DevExpress.XtraNavBar.NavBarGroup navBarGroup3;
        private DevExpress.Utils.ImageCollection ilSmall16;
        private DevExpress.XtraBars.BarCheckItem ribbon_btnCHT;
        private DevExpress.XtraBars.BarCheckItem ribbon_btnCHS;
        private DevExpress.XtraBars.BarCheckItem ribbon_btnENG;
        private DevExpress.XtraBars.BarStaticItem barStaticItem1;
    }
}