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
namespace CSFrameworkV5.SystemModule
{
    partial class frmSystemMain
    {
        /// <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()
        {
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmSystemMain));
            this.menuStrip1 = new System.Windows.Forms.MenuStrip();
            this.menuSystemManager = new System.Windows.Forms.ToolStripMenuItem();
            this.menuItemUserMgr = new System.Windows.Forms.ToolStripMenuItem();
            this.menuItemRole = new System.Windows.Forms.ToolStripMenuItem();
            this.menuItemTempAuth = new System.Windows.Forms.ToolStripMenuItem();
            this.menuItemAuth = new System.Windows.Forms.ToolStripMenuItem();
            this.menuRightsLevel = new System.Windows.Forms.ToolStripMenuItem();
            this.menuCustomMenuAuth = new System.Windows.Forms.ToolStripMenuItem();
            this.toolStripMenuItem3 = new System.Windows.Forms.ToolStripSeparator();
            this.menuCompanyInfo = new System.Windows.Forms.ToolStripMenuItem();
            this.menuItemSetup = new System.Windows.Forms.ToolStripMenuItem();
            this.menuLog = new System.Windows.Forms.ToolStripMenuItem();
            this.menuOperateLog = new System.Windows.Forms.ToolStripMenuItem();
            this.toolStripMenuItem2 = new System.Windows.Forms.ToolStripSeparator();
            this.menuUpgraderMgr = new System.Windows.Forms.ToolStripMenuItem();
            this.menuSysMessage = new System.Windows.Forms.ToolStripMenuItem();
            this.menuModuleMgr = new System.Windows.Forms.ToolStripMenuItem();
            this.menuDataSetMgr = new System.Windows.Forms.ToolStripMenuItem();
            this.menuFieldNameManager = new System.Windows.Forms.ToolStripMenuItem();
            this.menuFormConfig = new System.Windows.Forms.ToolStripMenuItem();
            this.menuDocNoRule = new System.Windows.Forms.ToolStripMenuItem();
            this.menuBusinessTables = new System.Windows.Forms.ToolStripMenuItem();
            this.menuReportMgr = new System.Windows.Forms.ToolStripMenuItem();
            this.menuMultiLanguage = new System.Windows.Forms.ToolStripMenuItem();
            this.menuOrganization = new System.Windows.Forms.ToolStripMenuItem();
            this.menuGridPermission = new System.Windows.Forms.ToolStripMenuItem();
            this.menuDataLogQuery = new System.Windows.Forms.ToolStripMenuItem();
            this.xxxToolStripMenuItem2 = new System.Windows.Forms.ToolStripMenuItem();
            this.测试ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.toolStripMenuItem1 = new System.Windows.Forms.ToolStripSeparator();
            this.xxxToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.xxxToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
            this.flowLayoutPanel1 = new System.Windows.Forms.FlowLayoutPanel();
            this.btnUser = new DevExpress.XtraEditors.SimpleButton();
            this.btnRole = new DevExpress.XtraEditors.SimpleButton();
            this.btnAuth = new DevExpress.XtraEditors.SimpleButton();
            this.btnOrganization = new DevExpress.XtraEditors.SimpleButton();
            this.btnGridPermission = new DevExpress.XtraEditors.SimpleButton();
            this.btnCustomMenuAuth = new DevExpress.XtraEditors.SimpleButton();
            this.btnTempAuth = new DevExpress.XtraEditors.SimpleButton();
            this.btnRightsLevel = new DevExpress.XtraEditors.SimpleButton();
            this.btnDocNoRule = new DevExpress.XtraEditors.SimpleButton();
            this.btnSetup = new DevExpress.XtraEditors.SimpleButton();
            this.btnCompanyInfo = new DevExpress.XtraEditors.SimpleButton();
            this.btnLog = new DevExpress.XtraEditors.SimpleButton();
            this.btnDataLogQuery = new DevExpress.XtraEditors.SimpleButton();
            this.btnOperateLog = new DevExpress.XtraEditors.SimpleButton();
            this.btnMessage = new DevExpress.XtraEditors.SimpleButton();
            this.btnModuleMgr = new DevExpress.XtraEditors.SimpleButton();
            this.btnFieldNameManager = new DevExpress.XtraEditors.SimpleButton();
            this.btnReportMgr = new DevExpress.XtraEditors.SimpleButton();
            this.btn多语言管理 = new DevExpress.XtraEditors.SimpleButton();
            this.btnUpgrader = new DevExpress.XtraEditors.SimpleButton();
            this.btnBusinessTables = new DevExpress.XtraEditors.SimpleButton();
            this.btnDataSetMgr = new DevExpress.XtraEditors.SimpleButton();
            this.btnFormConfig = new DevExpress.XtraEditors.SimpleButton();
            this.pictureBox2 = new System.Windows.Forms.PictureBox();
            this.simpleButton1 = new DevExpress.XtraEditors.SimpleButton();
            ((System.ComponentModel.ISupportInitialize)(this.pnlContainer)).BeginInit();
            this.pnlContainer.SuspendLayout();
            this.menuStrip1.SuspendLayout();
            this.flowLayoutPanel1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).BeginInit();
            this.SuspendLayout();
            // 
            // ilReports
            // 
            this.ilReports.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("ilReports.ImageStream")));
            this.ilReports.Images.SetKeyName(0, "16_ArrayWhite.bmp");
            // 
            // pnlContainer
            // 
            this.pnlContainer.Appearance.BackColor = System.Drawing.Color.Transparent;
            this.pnlContainer.Appearance.Options.UseBackColor = true;
            this.pnlContainer.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
            this.pnlContainer.Controls.Add(this.simpleButton1);
            this.pnlContainer.Controls.Add(this.pictureBox2);
            this.pnlContainer.Controls.Add(this.flowLayoutPanel1);
            this.pnlContainer.Margin = new System.Windows.Forms.Padding(3, 5, 3, 5);
            this.pnlContainer.Size = new System.Drawing.Size(919, 712);
            // 
            // menuStrip1
            // 
            this.menuStrip1.ImageScalingSize = new System.Drawing.Size(20, 20);
            this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.menuSystemManager});
            this.menuStrip1.Location = new System.Drawing.Point(0, 0);
            this.menuStrip1.Name = "menuStrip1";
            this.menuStrip1.Padding = new System.Windows.Forms.Padding(8, 3, 0, 3);
            this.menuStrip1.Size = new System.Drawing.Size(919, 30);
            this.menuStrip1.TabIndex = 2;
            this.menuStrip1.Text = "menuStrip1";
            // 
            // menuSystemManager
            // 
            this.menuSystemManager.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.menuItemUserMgr,
            this.menuItemRole,
            this.menuItemTempAuth,
            this.menuItemAuth,
            this.menuRightsLevel,
            this.menuCustomMenuAuth,
            this.toolStripMenuItem3,
            this.menuCompanyInfo,
            this.menuItemSetup,
            this.menuLog,
            this.menuOperateLog,
            this.toolStripMenuItem2,
            this.menuUpgraderMgr,
            this.menuSysMessage,
            this.menuModuleMgr,
            this.menuDataSetMgr,
            this.menuFieldNameManager,
            this.menuFormConfig,
            this.menuDocNoRule,
            this.menuBusinessTables,
            this.menuReportMgr,
            this.menuMultiLanguage,
            this.menuOrganization,
            this.menuGridPermission,
            this.menuDataLogQuery,
            this.xxxToolStripMenuItem2,
            this.测试ToolStripMenuItem});
            this.menuSystemManager.Name = "menuSystemManager";
            this.menuSystemManager.Size = new System.Drawing.Size(83, 24);
            this.menuSystemManager.Text = "系统管理";
            // 
            // menuItemUserMgr
            // 
            this.menuItemUserMgr.Name = "menuItemUserMgr";
            this.menuItemUserMgr.Size = new System.Drawing.Size(212, 26);
            this.menuItemUserMgr.Text = "用户管理";
            this.menuItemUserMgr.Click += new System.EventHandler(this.menuItemUserMgr_Click);
            // 
            // menuItemRole
            // 
            this.menuItemRole.Name = "menuItemRole";
            this.menuItemRole.Size = new System.Drawing.Size(212, 26);
            this.menuItemRole.Text = "角色/岗位管理";
            this.menuItemRole.Click += new System.EventHandler(this.menuItemRole_Click);
            // 
            // menuItemTempAuth
            // 
            this.menuItemTempAuth.Name = "menuItemTempAuth";
            this.menuItemTempAuth.Size = new System.Drawing.Size(212, 26);
            this.menuItemTempAuth.Text = "临时权限";
            this.menuItemTempAuth.Click += new System.EventHandler(this.menuItemTempAuth_Click);
            // 
            // menuItemAuth
            // 
            this.menuItemAuth.Name = "menuItemAuth";
            this.menuItemAuth.Size = new System.Drawing.Size(212, 26);
            this.menuItemAuth.Text = "组织机构权限管理";
            this.menuItemAuth.Click += new System.EventHandler(this.menuItemAuth_Click);
            // 
            // menuRightsLevel
            // 
            this.menuRightsLevel.Name = "menuRightsLevel";
            this.menuRightsLevel.Size = new System.Drawing.Size(212, 26);
            this.menuRightsLevel.Text = "级别权限";
            this.menuRightsLevel.Click += new System.EventHandler(this.menuRightsLevel_Click);
            // 
            // menuCustomMenuAuth
            // 
            this.menuCustomMenuAuth.Name = "menuCustomMenuAuth";
            this.menuCustomMenuAuth.Size = new System.Drawing.Size(212, 26);
            this.menuCustomMenuAuth.Text = "菜单功能";
            this.menuCustomMenuAuth.Click += new System.EventHandler(this.menuCustomMenuAuth_Click);
            // 
            // toolStripMenuItem3
            // 
            this.toolStripMenuItem3.Name = "toolStripMenuItem3";
            this.toolStripMenuItem3.Size = new System.Drawing.Size(209, 6);
            // 
            // menuCompanyInfo
            // 
            this.menuCompanyInfo.Name = "menuCompanyInfo";
            this.menuCompanyInfo.Size = new System.Drawing.Size(212, 26);
            this.menuCompanyInfo.Text = "公司设置";
            this.menuCompanyInfo.Click += new System.EventHandler(this.menuCompanyInfo_Click);
            // 
            // menuItemSetup
            // 
            this.menuItemSetup.Name = "menuItemSetup";
            this.menuItemSetup.Size = new System.Drawing.Size(212, 26);
            this.menuItemSetup.Text = "系统参数";
            this.menuItemSetup.Click += new System.EventHandler(this.menuItemSetup_Click);
            // 
            // menuLog
            // 
            this.menuLog.Name = "menuLog";
            this.menuLog.Size = new System.Drawing.Size(212, 26);
            this.menuLog.Text = "日志字段配置";
            this.menuLog.Click += new System.EventHandler(this.menuLog_Click);
            // 
            // menuOperateLog
            // 
            this.menuOperateLog.Name = "menuOperateLog";
            this.menuOperateLog.Size = new System.Drawing.Size(212, 26);
            this.menuOperateLog.Text = "系统操作记录";
            this.menuOperateLog.Click += new System.EventHandler(this.menuOperateLog_Click);
            // 
            // toolStripMenuItem2
            // 
            this.toolStripMenuItem2.Name = "toolStripMenuItem2";
            this.toolStripMenuItem2.Size = new System.Drawing.Size(209, 6);
            // 
            // menuUpgraderMgr
            // 
            this.menuUpgraderMgr.Name = "menuUpgraderMgr";
            this.menuUpgraderMgr.Size = new System.Drawing.Size(212, 26);
            this.menuUpgraderMgr.Text = "升级程序管理";
            this.menuUpgraderMgr.Click += new System.EventHandler(this.menuUpgraderMgr_Click);
            // 
            // menuSysMessage
            // 
            this.menuSysMessage.Name = "menuSysMessage";
            this.menuSysMessage.Size = new System.Drawing.Size(212, 26);
            this.menuSysMessage.Text = "广播消息";
            this.menuSysMessage.Click += new System.EventHandler(this.menuSysMessage_Click);
            // 
            // menuModuleMgr
            // 
            this.menuModuleMgr.Name = "menuModuleMgr";
            this.menuModuleMgr.Size = new System.Drawing.Size(212, 26);
            this.menuModuleMgr.Text = "模块管理";
            this.menuModuleMgr.Click += new System.EventHandler(this.menuModuleMgr_Click);
            // 
            // menuDataSetMgr
            // 
            this.menuDataSetMgr.Name = "menuDataSetMgr";
            this.menuDataSetMgr.Size = new System.Drawing.Size(212, 26);
            this.menuDataSetMgr.Text = "帐套管理";
            this.menuDataSetMgr.Click += new System.EventHandler(this.menuDataSetMgr_Click);
            // 
            // menuFieldNameManager
            // 
            this.menuFieldNameManager.Name = "menuFieldNameManager";
            this.menuFieldNameManager.Size = new System.Drawing.Size(212, 26);
            this.menuFieldNameManager.Text = "字段名称管理";
            this.menuFieldNameManager.Click += new System.EventHandler(this.menuFieldNameManager_Click);
            // 
            // menuFormConfig
            // 
            this.menuFormConfig.Name = "menuFormConfig";
            this.menuFormConfig.Size = new System.Drawing.Size(212, 26);
            this.menuFormConfig.Text = "界面配置";
            this.menuFormConfig.Click += new System.EventHandler(this.menuFormConfig_Click);
            // 
            // menuDocNoRule
            // 
            this.menuDocNoRule.Name = "menuDocNoRule";
            this.menuDocNoRule.Size = new System.Drawing.Size(212, 26);
            this.menuDocNoRule.Text = "号码规则";
            this.menuDocNoRule.Click += new System.EventHandler(this.menuDocNoRule_Click);
            // 
            // menuBusinessTables
            // 
            this.menuBusinessTables.Name = "menuBusinessTables";
            this.menuBusinessTables.Size = new System.Drawing.Size(212, 26);
            this.menuBusinessTables.Text = "资料表维护";
            this.menuBusinessTables.Click += new System.EventHandler(this.menuBusinessTables_Click);
            // 
            // menuReportMgr
            // 
            this.menuReportMgr.Name = "menuReportMgr";
            this.menuReportMgr.Size = new System.Drawing.Size(212, 26);
            this.menuReportMgr.Text = "报表管理";
            this.menuReportMgr.Click += new System.EventHandler(this.menuReportMgr_Click);
            // 
            // menuMultiLanguage
            // 
            this.menuMultiLanguage.Name = "menuMultiLanguage";
            this.menuMultiLanguage.Size = new System.Drawing.Size(212, 26);
            this.menuMultiLanguage.Text = "多语言管理";
            this.menuMultiLanguage.Click += new System.EventHandler(this.menuMultiLanguage_Click);
            // 
            // menuOrganization
            // 
            this.menuOrganization.Name = "menuOrganization";
            this.menuOrganization.Size = new System.Drawing.Size(212, 26);
            this.menuOrganization.Text = "组织机构管理";
            this.menuOrganization.Click += new System.EventHandler(this.menuOrganization_Click);
            // 
            // menuGridPermission
            // 
            this.menuGridPermission.Name = "menuGridPermission";
            this.menuGridPermission.Size = new System.Drawing.Size(212, 26);
            this.menuGridPermission.Text = "数据权限配置";
            this.menuGridPermission.Click += new System.EventHandler(this.menuGridPermission_Click);
            // 
            // menuDataLogQuery
            // 
            this.menuDataLogQuery.Name = "menuDataLogQuery";
            this.menuDataLogQuery.Size = new System.Drawing.Size(212, 26);
            this.menuDataLogQuery.Text = "数据日志查询";
            this.menuDataLogQuery.Click += new System.EventHandler(this.menuDataLogQuery_Click);
            // 
            // xxxToolStripMenuItem2
            // 
            this.xxxToolStripMenuItem2.Name = "xxxToolStripMenuItem2";
            this.xxxToolStripMenuItem2.Size = new System.Drawing.Size(212, 26);
            this.xxxToolStripMenuItem2.Text = "开始测试";
            this.xxxToolStripMenuItem2.Click += new System.EventHandler(this.xxxToolStripMenuItem2_Click);
            // 
            // 测试ToolStripMenuItem
            // 
            this.测试ToolStripMenuItem.Name = "测试ToolStripMenuItem";
            this.测试ToolStripMenuItem.Size = new System.Drawing.Size(212, 26);
            this.测试ToolStripMenuItem.Text = "测试";
            // 
            // toolStripMenuItem1
            // 
            this.toolStripMenuItem1.Name = "toolStripMenuItem1";
            this.toolStripMenuItem1.Size = new System.Drawing.Size(149, 6);
            // 
            // xxxToolStripMenuItem
            // 
            this.xxxToolStripMenuItem.Name = "xxxToolStripMenuItem";
            this.xxxToolStripMenuItem.Size = new System.Drawing.Size(35, 20);
            this.xxxToolStripMenuItem.Text = "xxx";
            // 
            // xxxToolStripMenuItem1
            // 
            this.xxxToolStripMenuItem1.Name = "xxxToolStripMenuItem1";
            this.xxxToolStripMenuItem1.Size = new System.Drawing.Size(152, 22);
            this.xxxToolStripMenuItem1.Text = "xxx";
            // 
            // flowLayoutPanel1
            // 
            this.flowLayoutPanel1.Controls.Add(this.btnUser);
            this.flowLayoutPanel1.Controls.Add(this.btnRole);
            this.flowLayoutPanel1.Controls.Add(this.btnAuth);
            this.flowLayoutPanel1.Controls.Add(this.btnOrganization);
            this.flowLayoutPanel1.Controls.Add(this.btnGridPermission);
            this.flowLayoutPanel1.Controls.Add(this.btnCustomMenuAuth);
            this.flowLayoutPanel1.Controls.Add(this.btnTempAuth);
            this.flowLayoutPanel1.Controls.Add(this.btnRightsLevel);
            this.flowLayoutPanel1.Controls.Add(this.btnDocNoRule);
            this.flowLayoutPanel1.Controls.Add(this.btnSetup);
            this.flowLayoutPanel1.Controls.Add(this.btnCompanyInfo);
            this.flowLayoutPanel1.Controls.Add(this.btnLog);
            this.flowLayoutPanel1.Controls.Add(this.btnDataLogQuery);
            this.flowLayoutPanel1.Controls.Add(this.btnOperateLog);
            this.flowLayoutPanel1.Controls.Add(this.btnMessage);
            this.flowLayoutPanel1.Controls.Add(this.btnModuleMgr);
            this.flowLayoutPanel1.Controls.Add(this.btnFieldNameManager);
            this.flowLayoutPanel1.Controls.Add(this.btnReportMgr);
            this.flowLayoutPanel1.Controls.Add(this.btn多语言管理);
            this.flowLayoutPanel1.Controls.Add(this.btnUpgrader);
            this.flowLayoutPanel1.Controls.Add(this.btnBusinessTables);
            this.flowLayoutPanel1.Controls.Add(this.btnDataSetMgr);
            this.flowLayoutPanel1.Controls.Add(this.btnFormConfig);
            this.flowLayoutPanel1.Location = new System.Drawing.Point(15, 98);
            this.flowLayoutPanel1.Margin = new System.Windows.Forms.Padding(0);
            this.flowLayoutPanel1.Name = "flowLayoutPanel1";
            this.flowLayoutPanel1.Size = new System.Drawing.Size(863, 527);
            this.flowLayoutPanel1.TabIndex = 50;
            // 
            // btnUser
            // 
            this.btnUser.Appearance.Options.UseTextOptions = true;
            this.btnUser.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
            this.btnUser.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.HotFlat;
            this.btnUser.Cursor = System.Windows.Forms.Cursors.Hand;
            this.btnUser.ImageOptions.Image = ((System.Drawing.Image)(resources.GetObject("btnUser.ImageOptions.Image")));
            this.btnUser.ImageOptions.Location = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
            this.btnUser.Location = new System.Drawing.Point(6, 6);
            this.btnUser.Margin = new System.Windows.Forms.Padding(6);
            this.btnUser.Name = "btnUser";
            this.btnUser.Padding = new System.Windows.Forms.Padding(11, 13, 11, 13);
            this.btnUser.Size = new System.Drawing.Size(158, 89);
            this.btnUser.TabIndex = 19;
            this.btnUser.Text = "用户管理";
            this.btnUser.Click += new System.EventHandler(this.menuItemUserMgr_Click);
            // 
            // btnRole
            // 
            this.btnRole.Appearance.Options.UseTextOptions = true;
            this.btnRole.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
            this.btnRole.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.HotFlat;
            this.btnRole.Cursor = System.Windows.Forms.Cursors.Hand;
            this.btnRole.ImageOptions.Image = ((System.Drawing.Image)(resources.GetObject("btnRole.ImageOptions.Image")));
            this.btnRole.ImageOptions.Location = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
            this.btnRole.Location = new System.Drawing.Point(176, 6);
            this.btnRole.Margin = new System.Windows.Forms.Padding(6);
            this.btnRole.Name = "btnRole";
            this.btnRole.Padding = new System.Windows.Forms.Padding(11, 13, 11, 13);
            this.btnRole.Size = new System.Drawing.Size(158, 89);
            this.btnRole.TabIndex = 41;
            this.btnRole.Text = "角色/岗位";
            this.btnRole.Click += new System.EventHandler(this.menuItemRole_Click);
            // 
            // btnAuth
            // 
            this.btnAuth.Appearance.Options.UseTextOptions = true;
            this.btnAuth.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
            this.btnAuth.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.HotFlat;
            this.btnAuth.Cursor = System.Windows.Forms.Cursors.Hand;
            this.btnAuth.ImageOptions.Image = ((System.Drawing.Image)(resources.GetObject("btnAuth.ImageOptions.Image")));
            this.btnAuth.ImageOptions.Location = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
            this.btnAuth.Location = new System.Drawing.Point(346, 6);
            this.btnAuth.Margin = new System.Windows.Forms.Padding(6);
            this.btnAuth.Name = "btnAuth";
            this.btnAuth.Padding = new System.Windows.Forms.Padding(11, 13, 11, 13);
            this.btnAuth.Size = new System.Drawing.Size(158, 89);
            this.btnAuth.TabIndex = 20;
            this.btnAuth.Text = "组织机构\r\n权限设置";
            this.btnAuth.Click += new System.EventHandler(this.menuItemAuth_Click);
            // 
            // btnOrganization
            // 
            this.btnOrganization.Appearance.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
            this.btnOrganization.Appearance.Options.UseForeColor = true;
            this.btnOrganization.Appearance.Options.UseTextOptions = true;
            this.btnOrganization.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
            this.btnOrganization.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.HotFlat;
            this.btnOrganization.Cursor = System.Windows.Forms.Cursors.Hand;
            this.btnOrganization.ImageOptions.Image = ((System.Drawing.Image)(resources.GetObject("btnOrganization.ImageOptions.Image")));
            this.btnOrganization.ImageOptions.Location = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
            this.btnOrganization.Location = new System.Drawing.Point(516, 6);
            this.btnOrganization.Margin = new System.Windows.Forms.Padding(6);
            this.btnOrganization.Name = "btnOrganization";
            this.btnOrganization.Size = new System.Drawing.Size(158, 89);
            this.btnOrganization.TabIndex = 60;
            this.btnOrganization.Text = "组织机构管理";
            this.btnOrganization.Click += new System.EventHandler(this.menuOrganization_Click);
            // 
            // btnGridPermission
            // 
            this.btnGridPermission.Appearance.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
            this.btnGridPermission.Appearance.Options.UseForeColor = true;
            this.btnGridPermission.Appearance.Options.UseTextOptions = true;
            this.btnGridPermission.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
            this.btnGridPermission.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.HotFlat;
            this.btnGridPermission.Cursor = System.Windows.Forms.Cursors.Hand;
            this.btnGridPermission.ImageOptions.Image = ((System.Drawing.Image)(resources.GetObject("btnGridPermission.ImageOptions.Image")));
            this.btnGridPermission.ImageOptions.Location = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
            this.btnGridPermission.Location = new System.Drawing.Point(686, 6);
            this.btnGridPermission.Margin = new System.Windows.Forms.Padding(6);
            this.btnGridPermission.Name = "btnGridPermission";
            this.btnGridPermission.Size = new System.Drawing.Size(158, 89);
            this.btnGridPermission.TabIndex = 60;
            this.btnGridPermission.Text = "集团组织架构\r\n数据权限";
            this.btnGridPermission.Click += new System.EventHandler(this.menuGridPermission_Click);
            // 
            // btnCustomMenuAuth
            // 
            this.btnCustomMenuAuth.Appearance.Options.UseTextOptions = true;
            this.btnCustomMenuAuth.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
            this.btnCustomMenuAuth.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.HotFlat;
            this.btnCustomMenuAuth.Cursor = System.Windows.Forms.Cursors.Hand;
            this.btnCustomMenuAuth.ImageOptions.Image = ((System.Drawing.Image)(resources.GetObject("btnCustomMenuAuth.ImageOptions.Image")));
            this.btnCustomMenuAuth.ImageOptions.Location = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
            this.btnCustomMenuAuth.Location = new System.Drawing.Point(6, 107);
            this.btnCustomMenuAuth.Margin = new System.Windows.Forms.Padding(6);
            this.btnCustomMenuAuth.Name = "btnCustomMenuAuth";
            this.btnCustomMenuAuth.Padding = new System.Windows.Forms.Padding(11, 13, 11, 13);
            this.btnCustomMenuAuth.Size = new System.Drawing.Size(158, 89);
            this.btnCustomMenuAuth.TabIndex = 36;
            this.btnCustomMenuAuth.Text = "菜单功能";
            this.btnCustomMenuAuth.Click += new System.EventHandler(this.menuCustomMenuAuth_Click);
            // 
            // btnTempAuth
            // 
            this.btnTempAuth.Appearance.Options.UseTextOptions = true;
            this.btnTempAuth.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
            this.btnTempAuth.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.HotFlat;
            this.btnTempAuth.Cursor = System.Windows.Forms.Cursors.Hand;
            this.btnTempAuth.ImageOptions.Image = ((System.Drawing.Image)(resources.GetObject("btnTempAuth.ImageOptions.Image")));
            this.btnTempAuth.ImageOptions.Location = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
            this.btnTempAuth.Location = new System.Drawing.Point(176, 107);
            this.btnTempAuth.Margin = new System.Windows.Forms.Padding(6);
            this.btnTempAuth.Name = "btnTempAuth";
            this.btnTempAuth.Padding = new System.Windows.Forms.Padding(11, 13, 11, 13);
            this.btnTempAuth.Size = new System.Drawing.Size(158, 89);
            this.btnTempAuth.TabIndex = 43;
            this.btnTempAuth.Text = "临时权限";
            this.btnTempAuth.Click += new System.EventHandler(this.menuItemTempAuth_Click);
            // 
            // btnRightsLevel
            // 
            this.btnRightsLevel.Appearance.Options.UseTextOptions = true;
            this.btnRightsLevel.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
            this.btnRightsLevel.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.HotFlat;
            this.btnRightsLevel.Cursor = System.Windows.Forms.Cursors.Hand;
            this.btnRightsLevel.ImageOptions.Image = ((System.Drawing.Image)(resources.GetObject("btnRightsLevel.ImageOptions.Image")));
            this.btnRightsLevel.ImageOptions.Location = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
            this.btnRightsLevel.Location = new System.Drawing.Point(346, 107);
            this.btnRightsLevel.Margin = new System.Windows.Forms.Padding(6);
            this.btnRightsLevel.Name = "btnRightsLevel";
            this.btnRightsLevel.Padding = new System.Windows.Forms.Padding(11, 13, 11, 13);
            this.btnRightsLevel.Size = new System.Drawing.Size(158, 89);
            this.btnRightsLevel.TabIndex = 53;
            this.btnRightsLevel.Text = "级别权限";
            this.btnRightsLevel.Click += new System.EventHandler(this.menuRightsLevel_Click);
            // 
            // btnDocNoRule
            // 
            this.btnDocNoRule.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.HotFlat;
            this.btnDocNoRule.Cursor = System.Windows.Forms.Cursors.Hand;
            this.btnDocNoRule.ImageOptions.Image = ((System.Drawing.Image)(resources.GetObject("btnDocNoRule.ImageOptions.Image")));
            this.btnDocNoRule.ImageOptions.Location = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
            this.btnDocNoRule.Location = new System.Drawing.Point(516, 107);
            this.btnDocNoRule.Margin = new System.Windows.Forms.Padding(6);
            this.btnDocNoRule.Name = "btnDocNoRule";
            this.btnDocNoRule.Size = new System.Drawing.Size(158, 89);
            this.btnDocNoRule.TabIndex = 56;
            this.btnDocNoRule.Text = "号码规则";
            this.btnDocNoRule.Click += new System.EventHandler(this.menuDocNoRule_Click);
            // 
            // btnSetup
            // 
            this.btnSetup.Appearance.Options.UseTextOptions = true;
            this.btnSetup.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
            this.btnSetup.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.HotFlat;
            this.btnSetup.Cursor = System.Windows.Forms.Cursors.Hand;
            this.btnSetup.ImageOptions.Image = ((System.Drawing.Image)(resources.GetObject("btnSetup.ImageOptions.Image")));
            this.btnSetup.ImageOptions.Location = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
            this.btnSetup.Location = new System.Drawing.Point(686, 107);
            this.btnSetup.Margin = new System.Windows.Forms.Padding(6);
            this.btnSetup.Name = "btnSetup";
            this.btnSetup.Size = new System.Drawing.Size(158, 89);
            this.btnSetup.TabIndex = 21;
            this.btnSetup.Text = "系统参数";
            this.btnSetup.Click += new System.EventHandler(this.menuItemSetup_Click);
            // 
            // btnCompanyInfo
            // 
            this.btnCompanyInfo.Appearance.Options.UseTextOptions = true;
            this.btnCompanyInfo.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
            this.btnCompanyInfo.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.HotFlat;
            this.btnCompanyInfo.Cursor = System.Windows.Forms.Cursors.Hand;
            this.btnCompanyInfo.ImageOptions.Image = ((System.Drawing.Image)(resources.GetObject("btnCompanyInfo.ImageOptions.Image")));
            this.btnCompanyInfo.ImageOptions.Location = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
            this.btnCompanyInfo.Location = new System.Drawing.Point(6, 208);
            this.btnCompanyInfo.Margin = new System.Windows.Forms.Padding(6);
            this.btnCompanyInfo.Name = "btnCompanyInfo";
            this.btnCompanyInfo.Size = new System.Drawing.Size(158, 89);
            this.btnCompanyInfo.TabIndex = 34;
            this.btnCompanyInfo.Text = "公司设置";
            this.btnCompanyInfo.Click += new System.EventHandler(this.menuCompanyInfo_Click);
            // 
            // btnLog
            // 
            this.btnLog.Appearance.Options.UseTextOptions = true;
            this.btnLog.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
            this.btnLog.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.HotFlat;
            this.btnLog.Cursor = System.Windows.Forms.Cursors.Hand;
            this.btnLog.ImageOptions.Image = ((System.Drawing.Image)(resources.GetObject("btnLog.ImageOptions.Image")));
            this.btnLog.ImageOptions.Location = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
            this.btnLog.Location = new System.Drawing.Point(176, 208);
            this.btnLog.Margin = new System.Windows.Forms.Padding(6);
            this.btnLog.Name = "btnLog";
            this.btnLog.Size = new System.Drawing.Size(158, 89);
            this.btnLog.TabIndex = 32;
            this.btnLog.Text = "日志字段配置";
            this.btnLog.Click += new System.EventHandler(this.menuLog_Click);
            // 
            // btnDataLogQuery
            // 
            this.btnDataLogQuery.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.HotFlat;
            this.btnDataLogQuery.Cursor = System.Windows.Forms.Cursors.Hand;
            this.btnDataLogQuery.ImageOptions.Image = ((System.Drawing.Image)(resources.GetObject("btnDataLogQuery.ImageOptions.Image")));
            this.btnDataLogQuery.ImageOptions.Location = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
            this.btnDataLogQuery.Location = new System.Drawing.Point(346, 208);
            this.btnDataLogQuery.Margin = new System.Windows.Forms.Padding(6);
            this.btnDataLogQuery.Name = "btnDataLogQuery";
            this.btnDataLogQuery.Size = new System.Drawing.Size(158, 89);
            this.btnDataLogQuery.TabIndex = 51;
            this.btnDataLogQuery.Text = "数据日志查询";
            this.btnDataLogQuery.Click += new System.EventHandler(this.menuDataLogQuery_Click);
            // 
            // btnOperateLog
            // 
            this.btnOperateLog.Appearance.Options.UseTextOptions = true;
            this.btnOperateLog.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
            this.btnOperateLog.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.HotFlat;
            this.btnOperateLog.Cursor = System.Windows.Forms.Cursors.Hand;
            this.btnOperateLog.ImageOptions.Image = ((System.Drawing.Image)(resources.GetObject("btnOperateLog.ImageOptions.Image")));
            this.btnOperateLog.ImageOptions.Location = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
            this.btnOperateLog.Location = new System.Drawing.Point(516, 208);
            this.btnOperateLog.Margin = new System.Windows.Forms.Padding(6);
            this.btnOperateLog.Name = "btnOperateLog";
            this.btnOperateLog.Size = new System.Drawing.Size(158, 89);
            this.btnOperateLog.TabIndex = 54;
            this.btnOperateLog.Text = "系统操作记录";
            this.btnOperateLog.Click += new System.EventHandler(this.menuOperateLog_Click);
            // 
            // btnMessage
            // 
            this.btnMessage.Appearance.Options.UseTextOptions = true;
            this.btnMessage.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
            this.btnMessage.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.HotFlat;
            this.btnMessage.Cursor = System.Windows.Forms.Cursors.Hand;
            this.btnMessage.ImageOptions.Image = ((System.Drawing.Image)(resources.GetObject("btnMessage.ImageOptions.Image")));
            this.btnMessage.ImageOptions.Location = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
            this.btnMessage.Location = new System.Drawing.Point(686, 208);
            this.btnMessage.Margin = new System.Windows.Forms.Padding(6);
            this.btnMessage.Name = "btnMessage";
            this.btnMessage.Size = new System.Drawing.Size(158, 89);
            this.btnMessage.TabIndex = 48;
            this.btnMessage.Text = "广播消息";
            this.btnMessage.Click += new System.EventHandler(this.menuSysMessage_Click);
            // 
            // btnModuleMgr
            // 
            this.btnModuleMgr.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.HotFlat;
            this.btnModuleMgr.Cursor = System.Windows.Forms.Cursors.Hand;
            this.btnModuleMgr.ImageOptions.Image = ((System.Drawing.Image)(resources.GetObject("btnModuleMgr.ImageOptions.Image")));
            this.btnModuleMgr.ImageOptions.Location = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
            this.btnModuleMgr.Location = new System.Drawing.Point(6, 309);
            this.btnModuleMgr.Margin = new System.Windows.Forms.Padding(6);
            this.btnModuleMgr.Name = "btnModuleMgr";
            this.btnModuleMgr.Size = new System.Drawing.Size(158, 89);
            this.btnModuleMgr.TabIndex = 50;
            this.btnModuleMgr.Text = "模块管理";
            this.btnModuleMgr.Click += new System.EventHandler(this.menuModuleMgr_Click);
            // 
            // btnFieldNameManager
            // 
            this.btnFieldNameManager.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.HotFlat;
            this.btnFieldNameManager.Cursor = System.Windows.Forms.Cursors.Hand;
            this.btnFieldNameManager.ImageOptions.Image = ((System.Drawing.Image)(resources.GetObject("btnFieldNameManager.ImageOptions.Image")));
            this.btnFieldNameManager.ImageOptions.Location = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
            this.btnFieldNameManager.Location = new System.Drawing.Point(176, 309);
            this.btnFieldNameManager.Margin = new System.Windows.Forms.Padding(6);
            this.btnFieldNameManager.Name = "btnFieldNameManager";
            this.btnFieldNameManager.Size = new System.Drawing.Size(158, 89);
            this.btnFieldNameManager.TabIndex = 52;
            this.btnFieldNameManager.Text = "字段名管理";
            this.btnFieldNameManager.Click += new System.EventHandler(this.menuFieldNameManager_Click);
            // 
            // btnReportMgr
            // 
            this.btnReportMgr.Appearance.Options.UseTextOptions = true;
            this.btnReportMgr.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
            this.btnReportMgr.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.HotFlat;
            this.btnReportMgr.Cursor = System.Windows.Forms.Cursors.Hand;
            this.btnReportMgr.ImageOptions.Image = ((System.Drawing.Image)(resources.GetObject("btnReportMgr.ImageOptions.Image")));
            this.btnReportMgr.ImageOptions.Location = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
            this.btnReportMgr.Location = new System.Drawing.Point(346, 309);
            this.btnReportMgr.Margin = new System.Windows.Forms.Padding(6);
            this.btnReportMgr.Name = "btnReportMgr";
            this.btnReportMgr.Size = new System.Drawing.Size(158, 89);
            this.btnReportMgr.TabIndex = 57;
            this.btnReportMgr.Text = "报表管理";
            this.btnReportMgr.Click += new System.EventHandler(this.menuReportMgr_Click);
            // 
            // btn多语言管理
            // 
            this.btn多语言管理.Appearance.Options.UseTextOptions = true;
            this.btn多语言管理.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
            this.btn多语言管理.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.HotFlat;
            this.btn多语言管理.Cursor = System.Windows.Forms.Cursors.Hand;
            this.btn多语言管理.ImageOptions.Image = ((System.Drawing.Image)(resources.GetObject("btn多语言管理.ImageOptions.Image")));
            this.btn多语言管理.ImageOptions.Location = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
            this.btn多语言管理.Location = new System.Drawing.Point(516, 309);
            this.btn多语言管理.Margin = new System.Windows.Forms.Padding(6);
            this.btn多语言管理.Name = "btn多语言管理";
            this.btn多语言管理.Size = new System.Drawing.Size(158, 89);
            this.btn多语言管理.TabIndex = 57;
            this.btn多语言管理.Text = "多语言管理";
            this.btn多语言管理.Click += new System.EventHandler(this.menuMultiLanguage_Click);
            // 
            // btnUpgrader
            // 
            this.btnUpgrader.Appearance.Options.UseTextOptions = true;
            this.btnUpgrader.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
            this.btnUpgrader.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.HotFlat;
            this.btnUpgrader.Cursor = System.Windows.Forms.Cursors.Hand;
            this.btnUpgrader.ImageOptions.Image = ((System.Drawing.Image)(resources.GetObject("btnUpgrader.ImageOptions.Image")));
            this.btnUpgrader.ImageOptions.ImageToTextIndent = 0;
            this.btnUpgrader.Location = new System.Drawing.Point(686, 309);
            this.btnUpgrader.Margin = new System.Windows.Forms.Padding(6);
            this.btnUpgrader.Name = "btnUpgrader";
            this.btnUpgrader.Size = new System.Drawing.Size(158, 89);
            this.btnUpgrader.TabIndex = 46;
            this.btnUpgrader.Text = "升级程序";
            this.btnUpgrader.Click += new System.EventHandler(this.menuUpgraderMgr_Click);
            // 
            // btnBusinessTables
            // 
            this.btnBusinessTables.Appearance.Options.UseTextOptions = true;
            this.btnBusinessTables.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
            this.btnBusinessTables.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.HotFlat;
            this.btnBusinessTables.Cursor = System.Windows.Forms.Cursors.Hand;
            this.btnBusinessTables.ImageOptions.Image = ((System.Drawing.Image)(resources.GetObject("btnBusinessTables.ImageOptions.Image")));
            this.btnBusinessTables.ImageOptions.Location = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
            this.btnBusinessTables.Location = new System.Drawing.Point(6, 410);
            this.btnBusinessTables.Margin = new System.Windows.Forms.Padding(6);
            this.btnBusinessTables.Name = "btnBusinessTables";
            this.btnBusinessTables.Size = new System.Drawing.Size(158, 89);
            this.btnBusinessTables.TabIndex = 39;
            this.btnBusinessTables.Text = "资料表维护";
            this.btnBusinessTables.Click += new System.EventHandler(this.menuBusinessTables_Click);
            // 
            // btnDataSetMgr
            // 
            this.btnDataSetMgr.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.HotFlat;
            this.btnDataSetMgr.Cursor = System.Windows.Forms.Cursors.Hand;
            this.btnDataSetMgr.ImageOptions.Image = ((System.Drawing.Image)(resources.GetObject("btnDataSetMgr.ImageOptions.Image")));
            this.btnDataSetMgr.ImageOptions.Location = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
            this.btnDataSetMgr.Location = new System.Drawing.Point(176, 410);
            this.btnDataSetMgr.Margin = new System.Windows.Forms.Padding(6);
            this.btnDataSetMgr.Name = "btnDataSetMgr";
            this.btnDataSetMgr.Size = new System.Drawing.Size(158, 89);
            this.btnDataSetMgr.TabIndex = 51;
            this.btnDataSetMgr.Text = "帐套管理";
            this.btnDataSetMgr.Click += new System.EventHandler(this.menuDataSetMgr_Click);
            // 
            // btnFormConfig
            // 
            this.btnFormConfig.Appearance.ForeColor = System.Drawing.Color.DarkGray;
            this.btnFormConfig.Appearance.Options.UseForeColor = true;
            this.btnFormConfig.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.HotFlat;
            this.btnFormConfig.Cursor = System.Windows.Forms.Cursors.Hand;
            this.btnFormConfig.ImageOptions.Image = ((System.Drawing.Image)(resources.GetObject("btnFormConfig.ImageOptions.Image")));
            this.btnFormConfig.ImageOptions.Location = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
            this.btnFormConfig.Location = new System.Drawing.Point(346, 410);
            this.btnFormConfig.Margin = new System.Windows.Forms.Padding(6);
            this.btnFormConfig.Name = "btnFormConfig";
            this.btnFormConfig.Size = new System.Drawing.Size(158, 89);
            this.btnFormConfig.TabIndex = 55;
            this.btnFormConfig.Text = "界面配置";
            this.btnFormConfig.Click += new System.EventHandler(this.menuFormConfig_Click);
            // 
            // pictureBox2
            // 
            this.pictureBox2.Dock = System.Windows.Forms.DockStyle.Top;
            this.pictureBox2.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox2.Image")));
            this.pictureBox2.Location = new System.Drawing.Point(2, 2);
            this.pictureBox2.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
            this.pictureBox2.Name = "pictureBox2";
            this.pictureBox2.Size = new System.Drawing.Size(915, 87);
            this.pictureBox2.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
            this.pictureBox2.TabIndex = 52;
            this.pictureBox2.TabStop = false;
            // 
            // simpleButton1
            // 
            this.simpleButton1.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.HotFlat;
            this.simpleButton1.Location = new System.Drawing.Point(15, 640);
            this.simpleButton1.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
            this.simpleButton1.Name = "simpleButton1";
            this.simpleButton1.Size = new System.Drawing.Size(334, 48);
            this.simpleButton1.TabIndex = 53;
            this.simpleButton1.Text = "模拟代码生成器打开【字段名管理】";
            this.simpleButton1.Click += new System.EventHandler(this.simpleButton1_Click);
            // 
            // frmSystemMain
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 18F);
            this.ClientSize = new System.Drawing.Size(919, 712);
            this.Controls.Add(this.menuStrip1);
            this.Margin = new System.Windows.Forms.Padding(3, 6, 3, 6);
            this.Name = "frmSystemMain";
            this.Text = "系统管理模块主窗体";
            this.Load += new System.EventHandler(this.frmSystemMain_Load);
            this.Controls.SetChildIndex(this.pnlContainer, 0);
            this.Controls.SetChildIndex(this.menuStrip1, 0);
            ((System.ComponentModel.ISupportInitialize)(this.pnlContainer)).EndInit();
            this.pnlContainer.ResumeLayout(false);
            this.menuStrip1.ResumeLayout(false);
            this.menuStrip1.PerformLayout();
            this.flowLayoutPanel1.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).EndInit();
            this.ResumeLayout(false);
            this.PerformLayout();
 
        }
 
        #endregion
 
        private System.Windows.Forms.MenuStrip menuStrip1;
        private System.Windows.Forms.ToolStripMenuItem menuSystemManager;
        private System.Windows.Forms.ToolStripMenuItem menuItemSetup;
        private System.Windows.Forms.ToolStripSeparator toolStripMenuItem1;
        private System.Windows.Forms.ToolStripMenuItem menuItemUserMgr;
        private System.Windows.Forms.ToolStripMenuItem menuItemAuth;
        private DevExpress.XtraEditors.SimpleButton btnSetup;
        private DevExpress.XtraEditors.SimpleButton btnAuth;
        private DevExpress.XtraEditors.SimpleButton btnUser;
        private DevExpress.XtraEditors.SimpleButton btnLog;
        private System.Windows.Forms.ToolStripMenuItem menuLog;
        private DevExpress.XtraEditors.SimpleButton btnCompanyInfo;
        private System.Windows.Forms.ToolStripMenuItem menuCompanyInfo;
        private DevExpress.XtraEditors.SimpleButton btnCustomMenuAuth;
        private System.Windows.Forms.ToolStripMenuItem menuCustomMenuAuth;
        private System.Windows.Forms.ToolStripMenuItem xxxToolStripMenuItem;
        private System.Windows.Forms.ToolStripMenuItem xxxToolStripMenuItem1;
        private DevExpress.XtraEditors.SimpleButton btnBusinessTables;
        private DevExpress.XtraEditors.SimpleButton btnRole;
        private System.Windows.Forms.ToolStripMenuItem menuItemRole;
        private System.Windows.Forms.ToolStripSeparator toolStripMenuItem2;
        private System.Windows.Forms.ToolStripSeparator toolStripMenuItem3;
        private DevExpress.XtraEditors.SimpleButton btnTempAuth;
        private System.Windows.Forms.ToolStripMenuItem menuItemTempAuth;
        private DevExpress.XtraEditors.SimpleButton btnUpgrader;
        private System.Windows.Forms.ToolStripMenuItem menuUpgraderMgr;
        private DevExpress.XtraEditors.SimpleButton btnMessage;
        private System.Windows.Forms.ToolStripMenuItem menuSysMessage;
        private System.Windows.Forms.FlowLayoutPanel flowLayoutPanel1;
        private System.Windows.Forms.PictureBox pictureBox2;
        private DevExpress.XtraEditors.SimpleButton btnModuleMgr;
        private System.Windows.Forms.ToolStripMenuItem menuModuleMgr;
        private DevExpress.XtraEditors.SimpleButton btnDataSetMgr;
        private System.Windows.Forms.ToolStripMenuItem menuDataSetMgr;
        private System.Windows.Forms.ToolStripMenuItem menuFieldNameManager;
        private DevExpress.XtraEditors.SimpleButton btnFieldNameManager;
        private DevExpress.XtraEditors.SimpleButton btnRightsLevel;
        private System.Windows.Forms.ToolStripMenuItem menuRightsLevel;
        private DevExpress.XtraEditors.SimpleButton btnOperateLog;
        private System.Windows.Forms.ToolStripMenuItem menuOperateLog;
        private System.Windows.Forms.ToolStripMenuItem menuFormConfig;
        private DevExpress.XtraEditors.SimpleButton btnFormConfig;
        private DevExpress.XtraEditors.SimpleButton btnDocNoRule;
        private System.Windows.Forms.ToolStripMenuItem menuDocNoRule;
        private DevExpress.XtraEditors.SimpleButton simpleButton1;
        private System.Windows.Forms.ToolStripMenuItem menuBusinessTables;
        private DevExpress.XtraEditors.SimpleButton btnReportMgr;
        private System.Windows.Forms.ToolStripMenuItem menuReportMgr;
        private DevExpress.XtraEditors.SimpleButton btn多语言管理;
        private System.Windows.Forms.ToolStripMenuItem menuMultiLanguage;
        private System.Windows.Forms.ToolStripMenuItem menuOrganization;
        private DevExpress.XtraEditors.SimpleButton btnOrganization;
        private DevExpress.XtraEditors.SimpleButton btnGridPermission;
        private System.Windows.Forms.ToolStripMenuItem menuGridPermission;
        private DevExpress.XtraEditors.SimpleButton btnDataLogQuery;
        private System.Windows.Forms.ToolStripMenuItem menuDataLogQuery;
        private System.Windows.Forms.ToolStripMenuItem xxxToolStripMenuItem2;
        private System.Windows.Forms.ToolStripMenuItem 测试ToolStripMenuItem;
    }
}