懒羊羊
2023-12-28 e46d3baaf3e8d7d85f4bafec3aad75e52b078408
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
namespace YX
{
    partial class FrmUserInfoEdit
    {
        /// <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(FrmUserInfoEdit));
            this.tabControl1 = new System.Windows.Forms.TabControl();
            this.tab_baseInfo = new System.Windows.Forms.TabPage();
            this.txt_Title = new System.Windows.Forms.TextBox();
            this.txt_Email = new System.Windows.Forms.TextBox();
            this.com_User_Sex = new System.Windows.Forms.ComboBox();
            this.txt_User_Account = new System.Windows.Forms.TextBox();
            this.txt_User_Name = new System.Windows.Forms.TextBox();
            this.richTextBox1 = new System.Windows.Forms.RichTextBox();
            this.label12 = new System.Windows.Forms.Label();
            this.label7 = new System.Windows.Forms.Label();
            this.label5 = new System.Windows.Forms.Label();
            this.label6 = new System.Windows.Forms.Label();
            this.label4 = new System.Windows.Forms.Label();
            this.label2 = new System.Windows.Forms.Label();
            this.txt_User_Code = new System.Windows.Forms.TextBox();
            this.label1 = new System.Windows.Forms.Label();
            this.tab_AppendProperty = new System.Windows.Forms.TabPage();
            this.flowLayoutPanel1 = new System.Windows.Forms.FlowLayoutPanel();
            this.tab_Dept = new System.Windows.Forms.TabPage();
            this.tree_Dept = new System.Windows.Forms.TreeView();
            this.tab_Role = new System.Windows.Forms.TabPage();
            this.tree_UserRole = new System.Windows.Forms.TreeView();
            this.tab_group = new System.Windows.Forms.TabPage();
            this.tab_UserRight = new System.Windows.Forms.TabPage();
            this.tree_UserRight = new System.Windows.Forms.TreeView();
            this.btn_save = new System.Windows.Forms.Button();
            this.btn_concel = new System.Windows.Forms.Button();
            this.imageList1 = new System.Windows.Forms.ImageList(this.components);
            this.tabControl1.SuspendLayout();
            this.tab_baseInfo.SuspendLayout();
            this.tab_AppendProperty.SuspendLayout();
            this.tab_Dept.SuspendLayout();
            this.tab_Role.SuspendLayout();
            this.tab_UserRight.SuspendLayout();
            this.SuspendLayout();
            // 
            // tabControl1
            // 
            this.tabControl1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
            | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.tabControl1.Controls.Add(this.tab_baseInfo);
            this.tabControl1.Controls.Add(this.tab_AppendProperty);
            this.tabControl1.Controls.Add(this.tab_Dept);
            this.tabControl1.Controls.Add(this.tab_Role);
            this.tabControl1.Controls.Add(this.tab_group);
            this.tabControl1.Controls.Add(this.tab_UserRight);
            this.tabControl1.Location = new System.Drawing.Point(0, 4);
            this.tabControl1.Name = "tabControl1";
            this.tabControl1.SelectedIndex = 0;
            this.tabControl1.Size = new System.Drawing.Size(588, 314);
            this.tabControl1.TabIndex = 0;
            // 
            // tab_baseInfo
            // 
            this.tab_baseInfo.Controls.Add(this.txt_Title);
            this.tab_baseInfo.Controls.Add(this.txt_Email);
            this.tab_baseInfo.Controls.Add(this.com_User_Sex);
            this.tab_baseInfo.Controls.Add(this.txt_User_Account);
            this.tab_baseInfo.Controls.Add(this.txt_User_Name);
            this.tab_baseInfo.Controls.Add(this.richTextBox1);
            this.tab_baseInfo.Controls.Add(this.label12);
            this.tab_baseInfo.Controls.Add(this.label7);
            this.tab_baseInfo.Controls.Add(this.label5);
            this.tab_baseInfo.Controls.Add(this.label6);
            this.tab_baseInfo.Controls.Add(this.label4);
            this.tab_baseInfo.Controls.Add(this.label2);
            this.tab_baseInfo.Controls.Add(this.txt_User_Code);
            this.tab_baseInfo.Controls.Add(this.label1);
            this.tab_baseInfo.Location = new System.Drawing.Point(4, 22);
            this.tab_baseInfo.Name = "tab_baseInfo";
            this.tab_baseInfo.Padding = new System.Windows.Forms.Padding(3);
            this.tab_baseInfo.Size = new System.Drawing.Size(580, 288);
            this.tab_baseInfo.TabIndex = 0;
            this.tab_baseInfo.Text = "基本信息";
            this.tab_baseInfo.UseVisualStyleBackColor = true;
            // 
            // txt_Title
            // 
            this.txt_Title.Location = new System.Drawing.Point(364, 65);
            this.txt_Title.Name = "txt_Title";
            this.txt_Title.Size = new System.Drawing.Size(197, 21);
            this.txt_Title.TabIndex = 35;
            // 
            // txt_Email
            // 
            this.txt_Email.Location = new System.Drawing.Point(364, 99);
            this.txt_Email.Name = "txt_Email";
            this.txt_Email.Size = new System.Drawing.Size(197, 21);
            this.txt_Email.TabIndex = 33;
            // 
            // com_User_Sex
            // 
            this.com_User_Sex.FormattingEnabled = true;
            this.com_User_Sex.Items.AddRange(new object[] {
            "男",
            "女"});
            this.com_User_Sex.Location = new System.Drawing.Point(91, 101);
            this.com_User_Sex.Name = "com_User_Sex";
            this.com_User_Sex.Size = new System.Drawing.Size(196, 20);
            this.com_User_Sex.TabIndex = 32;
            this.com_User_Sex.Text = "男";
            // 
            // txt_User_Account
            // 
            this.txt_User_Account.Location = new System.Drawing.Point(90, 62);
            this.txt_User_Account.Name = "txt_User_Account";
            this.txt_User_Account.Size = new System.Drawing.Size(197, 21);
            this.txt_User_Account.TabIndex = 30;
            // 
            // txt_User_Name
            // 
            this.txt_User_Name.Location = new System.Drawing.Point(364, 25);
            this.txt_User_Name.Name = "txt_User_Name";
            this.txt_User_Name.Size = new System.Drawing.Size(197, 21);
            this.txt_User_Name.TabIndex = 29;
            // 
            // richTextBox1
            // 
            this.richTextBox1.Location = new System.Drawing.Point(72, 136);
            this.richTextBox1.Name = "richTextBox1";
            this.richTextBox1.Size = new System.Drawing.Size(489, 117);
            this.richTextBox1.TabIndex = 23;
            this.richTextBox1.Text = "";
            // 
            // label12
            // 
            this.label12.AutoSize = true;
            this.label12.Location = new System.Drawing.Point(25, 181);
            this.label12.Name = "label12";
            this.label12.Size = new System.Drawing.Size(41, 12);
            this.label12.TabIndex = 22;
            this.label12.Text = "备注:";
            // 
            // label7
            // 
            this.label7.AutoSize = true;
            this.label7.Location = new System.Drawing.Point(293, 68);
            this.label7.Name = "label7";
            this.label7.Size = new System.Drawing.Size(65, 12);
            this.label7.TabIndex = 14;
            this.label7.Text = "职工职称:";
            // 
            // label5
            // 
            this.label5.AutoSize = true;
            this.label5.Location = new System.Drawing.Point(293, 104);
            this.label5.Name = "label5";
            this.label5.Size = new System.Drawing.Size(65, 12);
            this.label5.TabIndex = 10;
            this.label5.Text = "电子邮件:";
            // 
            // label6
            // 
            this.label6.AutoSize = true;
            this.label6.Location = new System.Drawing.Point(19, 104);
            this.label6.Name = "label6";
            this.label6.Size = new System.Drawing.Size(65, 12);
            this.label6.TabIndex = 8;
            this.label6.Text = "职工性别:";
            // 
            // label4
            // 
            this.label4.AutoSize = true;
            this.label4.Location = new System.Drawing.Point(19, 68);
            this.label4.Name = "label4";
            this.label4.Size = new System.Drawing.Size(65, 12);
            this.label4.TabIndex = 4;
            this.label4.Text = "登录账户:";
            // 
            // label2
            // 
            this.label2.AutoSize = true;
            this.label2.Location = new System.Drawing.Point(293, 31);
            this.label2.Name = "label2";
            this.label2.Size = new System.Drawing.Size(65, 12);
            this.label2.TabIndex = 2;
            this.label2.Text = "职工姓名:";
            // 
            // txt_User_Code
            // 
            this.txt_User_Code.Location = new System.Drawing.Point(90, 25);
            this.txt_User_Code.Name = "txt_User_Code";
            this.txt_User_Code.Size = new System.Drawing.Size(197, 21);
            this.txt_User_Code.TabIndex = 1;
            // 
            // label1
            // 
            this.label1.AutoSize = true;
            this.label1.Location = new System.Drawing.Point(19, 30);
            this.label1.Name = "label1";
            this.label1.Size = new System.Drawing.Size(65, 12);
            this.label1.TabIndex = 0;
            this.label1.Text = "职工工号:";
            // 
            // tab_AppendProperty
            // 
            this.tab_AppendProperty.Controls.Add(this.flowLayoutPanel1);
            this.tab_AppendProperty.Location = new System.Drawing.Point(4, 22);
            this.tab_AppendProperty.Name = "tab_AppendProperty";
            this.tab_AppendProperty.Padding = new System.Windows.Forms.Padding(3);
            this.tab_AppendProperty.Size = new System.Drawing.Size(580, 288);
            this.tab_AppendProperty.TabIndex = 1;
            this.tab_AppendProperty.Text = "附加信息";
            this.tab_AppendProperty.UseVisualStyleBackColor = true;
            // 
            // flowLayoutPanel1
            // 
            this.flowLayoutPanel1.AutoScroll = true;
            this.flowLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.flowLayoutPanel1.Location = new System.Drawing.Point(3, 3);
            this.flowLayoutPanel1.Name = "flowLayoutPanel1";
            this.flowLayoutPanel1.Size = new System.Drawing.Size(574, 282);
            this.flowLayoutPanel1.TabIndex = 0;
            // 
            // tab_Dept
            // 
            this.tab_Dept.Controls.Add(this.tree_Dept);
            this.tab_Dept.Location = new System.Drawing.Point(4, 22);
            this.tab_Dept.Name = "tab_Dept";
            this.tab_Dept.Size = new System.Drawing.Size(580, 288);
            this.tab_Dept.TabIndex = 3;
            this.tab_Dept.Text = "所属部门";
            this.tab_Dept.UseVisualStyleBackColor = true;
            // 
            // tree_Dept
            // 
            this.tree_Dept.CheckBoxes = true;
            this.tree_Dept.Dock = System.Windows.Forms.DockStyle.Fill;
            this.tree_Dept.ItemHeight = 25;
            this.tree_Dept.Location = new System.Drawing.Point(0, 0);
            this.tree_Dept.Name = "tree_Dept";
            this.tree_Dept.Size = new System.Drawing.Size(580, 288);
            this.tree_Dept.TabIndex = 0;
            // 
            // tab_Role
            // 
            this.tab_Role.Controls.Add(this.tree_UserRole);
            this.tab_Role.Location = new System.Drawing.Point(4, 22);
            this.tab_Role.Name = "tab_Role";
            this.tab_Role.Size = new System.Drawing.Size(580, 288);
            this.tab_Role.TabIndex = 4;
            this.tab_Role.Text = "所属角色";
            this.tab_Role.UseVisualStyleBackColor = true;
            // 
            // tree_UserRole
            // 
            this.tree_UserRole.CheckBoxes = true;
            this.tree_UserRole.Dock = System.Windows.Forms.DockStyle.Fill;
            this.tree_UserRole.ItemHeight = 20;
            this.tree_UserRole.Location = new System.Drawing.Point(0, 0);
            this.tree_UserRole.Name = "tree_UserRole";
            this.tree_UserRole.Size = new System.Drawing.Size(580, 288);
            this.tree_UserRole.TabIndex = 0;
            // 
            // tab_group
            // 
            this.tab_group.Location = new System.Drawing.Point(4, 22);
            this.tab_group.Name = "tab_group";
            this.tab_group.Size = new System.Drawing.Size(580, 288);
            this.tab_group.TabIndex = 5;
            this.tab_group.Text = "所属工作组";
            this.tab_group.UseVisualStyleBackColor = true;
            // 
            // tab_UserRight
            // 
            this.tab_UserRight.Controls.Add(this.tree_UserRight);
            this.tab_UserRight.Location = new System.Drawing.Point(4, 22);
            this.tab_UserRight.Name = "tab_UserRight";
            this.tab_UserRight.Size = new System.Drawing.Size(580, 288);
            this.tab_UserRight.TabIndex = 2;
            this.tab_UserRight.Text = "用户权限";
            this.tab_UserRight.UseVisualStyleBackColor = true;
            // 
            // tree_UserRight
            // 
            this.tree_UserRight.CheckBoxes = true;
            this.tree_UserRight.Dock = System.Windows.Forms.DockStyle.Fill;
            this.tree_UserRight.ItemHeight = 25;
            this.tree_UserRight.Location = new System.Drawing.Point(0, 0);
            this.tree_UserRight.Name = "tree_UserRight";
            this.tree_UserRight.Size = new System.Drawing.Size(580, 288);
            this.tree_UserRight.TabIndex = 0;
            // 
            // btn_save
            // 
            this.btn_save.Image = global::YX.Properties.Resources.save;
            this.btn_save.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
            this.btn_save.Location = new System.Drawing.Point(208, 324);
            this.btn_save.Name = "btn_save";
            this.btn_save.Size = new System.Drawing.Size(83, 32);
            this.btn_save.TabIndex = 27;
            this.btn_save.Text = "保存";
            this.btn_save.UseVisualStyleBackColor = true;
            this.btn_save.Click += new System.EventHandler(this.btn_save_Click);
            // 
            // btn_concel
            // 
            this.btn_concel.Image = global::YX.Properties.Resources.delete;
            this.btn_concel.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
            this.btn_concel.Location = new System.Drawing.Point(299, 324);
            this.btn_concel.Name = "btn_concel";
            this.btn_concel.Size = new System.Drawing.Size(83, 32);
            this.btn_concel.TabIndex = 28;
            this.btn_concel.Text = "关闭";
            this.btn_concel.UseVisualStyleBackColor = true;
            this.btn_concel.Click += new System.EventHandler(this.btn_concel_Click);
            // 
            // imageList1
            // 
            this.imageList1.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
            this.imageList1.TransparentColor = System.Drawing.Color.Transparent;
            this.imageList1.Images.SetKeyName(0, "0.png");
            this.imageList1.Images.SetKeyName(1, "1.png");
            this.imageList1.Images.SetKeyName(2, "2.png");
            this.imageList1.Images.SetKeyName(3, "3.png");
            this.imageList1.Images.SetKeyName(4, "4.png");
            this.imageList1.Images.SetKeyName(5, "5.png");
            this.imageList1.Images.SetKeyName(6, "6.png");
            this.imageList1.Images.SetKeyName(7, "7.png");
            this.imageList1.Images.SetKeyName(8, "8.png");
            this.imageList1.Images.SetKeyName(9, "9.png");
            this.imageList1.Images.SetKeyName(10, "10.png");
            this.imageList1.Images.SetKeyName(11, "11.png");
            this.imageList1.Images.SetKeyName(12, "12.png");
            this.imageList1.Images.SetKeyName(13, "13.png");
            this.imageList1.Images.SetKeyName(14, "14.png");
            this.imageList1.Images.SetKeyName(15, "15.png");
            this.imageList1.Images.SetKeyName(16, "16.png");
            this.imageList1.Images.SetKeyName(17, "17.png");
            this.imageList1.Images.SetKeyName(18, "18.png");
            this.imageList1.Images.SetKeyName(19, "19.png");
            this.imageList1.Images.SetKeyName(20, "20.png");
            this.imageList1.Images.SetKeyName(21, "21.png");
            this.imageList1.Images.SetKeyName(22, "22.png");
            this.imageList1.Images.SetKeyName(23, "23.png");
            this.imageList1.Images.SetKeyName(24, "24.png");
            this.imageList1.Images.SetKeyName(25, "25.png");
            this.imageList1.Images.SetKeyName(26, "26.png");
            this.imageList1.Images.SetKeyName(27, "27.png");
            this.imageList1.Images.SetKeyName(28, "28.png");
            this.imageList1.Images.SetKeyName(29, "29.png");
            this.imageList1.Images.SetKeyName(30, "30.png");
            this.imageList1.Images.SetKeyName(31, "31.png");
            this.imageList1.Images.SetKeyName(32, "32.png");
            this.imageList1.Images.SetKeyName(33, "33.png");
            this.imageList1.Images.SetKeyName(34, "34.png");
            this.imageList1.Images.SetKeyName(35, "35.png");
            this.imageList1.Images.SetKeyName(36, "36.png");
            this.imageList1.Images.SetKeyName(37, "37.png");
            this.imageList1.Images.SetKeyName(38, "38.png");
            this.imageList1.Images.SetKeyName(39, "39.png");
            this.imageList1.Images.SetKeyName(40, "40.png");
            this.imageList1.Images.SetKeyName(41, "41.png");
            this.imageList1.Images.SetKeyName(42, "42.png");
            this.imageList1.Images.SetKeyName(43, "43.png");
            this.imageList1.Images.SetKeyName(44, "44.png");
            this.imageList1.Images.SetKeyName(45, "45.png");
            this.imageList1.Images.SetKeyName(46, "46.png");
            this.imageList1.Images.SetKeyName(47, "47.png");
            this.imageList1.Images.SetKeyName(48, "48.png");
            this.imageList1.Images.SetKeyName(49, "49.png");
            this.imageList1.Images.SetKeyName(50, "50.png");
            this.imageList1.Images.SetKeyName(51, "51.png");
            this.imageList1.Images.SetKeyName(52, "52.png");
            this.imageList1.Images.SetKeyName(53, "53.png");
            this.imageList1.Images.SetKeyName(54, "54.png");
            this.imageList1.Images.SetKeyName(55, "55.png");
            this.imageList1.Images.SetKeyName(56, "56.png");
            this.imageList1.Images.SetKeyName(57, "57.png");
            this.imageList1.Images.SetKeyName(58, "58.png");
            this.imageList1.Images.SetKeyName(59, "59.png");
            this.imageList1.Images.SetKeyName(60, "60.png");
            this.imageList1.Images.SetKeyName(61, "61.png");
            this.imageList1.Images.SetKeyName(62, "62.png");
            this.imageList1.Images.SetKeyName(63, "63.png");
            this.imageList1.Images.SetKeyName(64, "64.png");
            this.imageList1.Images.SetKeyName(65, "65.png");
            this.imageList1.Images.SetKeyName(66, "66.png");
            this.imageList1.Images.SetKeyName(67, "67.png");
            this.imageList1.Images.SetKeyName(68, "68.png");
            this.imageList1.Images.SetKeyName(69, "69.png");
            this.imageList1.Images.SetKeyName(70, "70.png");
            this.imageList1.Images.SetKeyName(71, "71.png");
            this.imageList1.Images.SetKeyName(72, "72.png");
            this.imageList1.Images.SetKeyName(73, "73.png");
            this.imageList1.Images.SetKeyName(74, "74.png");
            this.imageList1.Images.SetKeyName(75, "75.png");
            this.imageList1.Images.SetKeyName(76, "76.png");
            this.imageList1.Images.SetKeyName(77, "77.png");
            this.imageList1.Images.SetKeyName(78, "78.png");
            this.imageList1.Images.SetKeyName(79, "79.png");
            this.imageList1.Images.SetKeyName(80, "80.png");
            this.imageList1.Images.SetKeyName(81, "81.png");
            this.imageList1.Images.SetKeyName(82, "82.png");
            this.imageList1.Images.SetKeyName(83, "83.png");
            this.imageList1.Images.SetKeyName(84, "84.png");
            this.imageList1.Images.SetKeyName(85, "85.png");
            this.imageList1.Images.SetKeyName(86, "86.png");
            this.imageList1.Images.SetKeyName(87, "87.png");
            this.imageList1.Images.SetKeyName(88, "88.png");
            this.imageList1.Images.SetKeyName(89, "89.png");
            this.imageList1.Images.SetKeyName(90, "90.png");
            this.imageList1.Images.SetKeyName(91, "91.png");
            this.imageList1.Images.SetKeyName(92, "92.png");
            this.imageList1.Images.SetKeyName(93, "93.png");
            this.imageList1.Images.SetKeyName(94, "94.png");
            this.imageList1.Images.SetKeyName(95, "95.png");
            this.imageList1.Images.SetKeyName(96, "96.png");
            this.imageList1.Images.SetKeyName(97, "97.png");
            this.imageList1.Images.SetKeyName(98, "98.png");
            this.imageList1.Images.SetKeyName(99, "99.png");
            this.imageList1.Images.SetKeyName(100, "100.png");
            this.imageList1.Images.SetKeyName(101, "101.png");
            this.imageList1.Images.SetKeyName(102, "102.png");
            this.imageList1.Images.SetKeyName(103, "103.png");
            this.imageList1.Images.SetKeyName(104, "104.png");
            this.imageList1.Images.SetKeyName(105, "105.png");
            this.imageList1.Images.SetKeyName(106, "106.png");
            this.imageList1.Images.SetKeyName(107, "107.png");
            this.imageList1.Images.SetKeyName(108, "108.png");
            this.imageList1.Images.SetKeyName(109, "109.png");
            this.imageList1.Images.SetKeyName(110, "110.png");
            this.imageList1.Images.SetKeyName(111, "111.png");
            this.imageList1.Images.SetKeyName(112, "112.png");
            this.imageList1.Images.SetKeyName(113, "113.png");
            this.imageList1.Images.SetKeyName(114, "114.png");
            this.imageList1.Images.SetKeyName(115, "115.png");
            this.imageList1.Images.SetKeyName(116, "116.png");
            this.imageList1.Images.SetKeyName(117, "117.png");
            this.imageList1.Images.SetKeyName(118, "118.png");
            this.imageList1.Images.SetKeyName(119, "119.png");
            this.imageList1.Images.SetKeyName(120, "120.png");
            this.imageList1.Images.SetKeyName(121, "121.png");
            this.imageList1.Images.SetKeyName(122, "122.png");
            this.imageList1.Images.SetKeyName(123, "123.png");
            this.imageList1.Images.SetKeyName(124, "124.png");
            this.imageList1.Images.SetKeyName(125, "125.png");
            this.imageList1.Images.SetKeyName(126, "126.png");
            this.imageList1.Images.SetKeyName(127, "127.png");
            this.imageList1.Images.SetKeyName(128, "128.png");
            this.imageList1.Images.SetKeyName(129, "129.png");
            this.imageList1.Images.SetKeyName(130, "130.png");
            this.imageList1.Images.SetKeyName(131, "131.png");
            this.imageList1.Images.SetKeyName(132, "132.png");
            this.imageList1.Images.SetKeyName(133, "133.png");
            this.imageList1.Images.SetKeyName(134, "134.png");
            this.imageList1.Images.SetKeyName(135, "135.png");
            this.imageList1.Images.SetKeyName(136, "136.png");
            this.imageList1.Images.SetKeyName(137, "137.png");
            this.imageList1.Images.SetKeyName(138, "138.png");
            this.imageList1.Images.SetKeyName(139, "139.png");
            this.imageList1.Images.SetKeyName(140, "140.png");
            this.imageList1.Images.SetKeyName(141, "141.png");
            this.imageList1.Images.SetKeyName(142, "142.png");
            this.imageList1.Images.SetKeyName(143, "143.png");
            this.imageList1.Images.SetKeyName(144, "144.png");
            this.imageList1.Images.SetKeyName(145, "145.png");
            this.imageList1.Images.SetKeyName(146, "146.png");
            this.imageList1.Images.SetKeyName(147, "147.png");
            this.imageList1.Images.SetKeyName(148, "148.png");
            this.imageList1.Images.SetKeyName(149, "149.png");
            this.imageList1.Images.SetKeyName(150, "150.png");
            this.imageList1.Images.SetKeyName(151, "151.png");
            this.imageList1.Images.SetKeyName(152, "152.png");
            this.imageList1.Images.SetKeyName(153, "153.png");
            this.imageList1.Images.SetKeyName(154, "154.png");
            this.imageList1.Images.SetKeyName(155, "155.png");
            this.imageList1.Images.SetKeyName(156, "156.png");
            this.imageList1.Images.SetKeyName(157, "157.png");
            this.imageList1.Images.SetKeyName(158, "158.png");
            this.imageList1.Images.SetKeyName(159, "159.png");
            this.imageList1.Images.SetKeyName(160, "160.png");
            this.imageList1.Images.SetKeyName(161, "161.png");
            this.imageList1.Images.SetKeyName(162, "162.png");
            this.imageList1.Images.SetKeyName(163, "163.png");
            this.imageList1.Images.SetKeyName(164, "164.png");
            this.imageList1.Images.SetKeyName(165, "165.png");
            this.imageList1.Images.SetKeyName(166, "166.png");
            this.imageList1.Images.SetKeyName(167, "167.png");
            this.imageList1.Images.SetKeyName(168, "168.png");
            this.imageList1.Images.SetKeyName(169, "169.png");
            this.imageList1.Images.SetKeyName(170, "170.png");
            this.imageList1.Images.SetKeyName(171, "171.png");
            this.imageList1.Images.SetKeyName(172, "172.png");
            this.imageList1.Images.SetKeyName(173, "173.png");
            this.imageList1.Images.SetKeyName(174, "174.png");
            this.imageList1.Images.SetKeyName(175, "175.png");
            this.imageList1.Images.SetKeyName(176, "176.png");
            this.imageList1.Images.SetKeyName(177, "177.png");
            this.imageList1.Images.SetKeyName(178, "178.png");
            this.imageList1.Images.SetKeyName(179, "179.png");
            this.imageList1.Images.SetKeyName(180, "180.png");
            this.imageList1.Images.SetKeyName(181, "181.png");
            this.imageList1.Images.SetKeyName(182, "182.png");
            this.imageList1.Images.SetKeyName(183, "183.png");
            this.imageList1.Images.SetKeyName(184, "184.png");
            this.imageList1.Images.SetKeyName(185, "185.png");
            this.imageList1.Images.SetKeyName(186, "186.png");
            this.imageList1.Images.SetKeyName(187, "187.png");
            this.imageList1.Images.SetKeyName(188, "188.png");
            this.imageList1.Images.SetKeyName(189, "189.png");
            this.imageList1.Images.SetKeyName(190, "190.png");
            this.imageList1.Images.SetKeyName(191, "191.png");
            this.imageList1.Images.SetKeyName(192, "192.png");
            this.imageList1.Images.SetKeyName(193, "193.png");
            this.imageList1.Images.SetKeyName(194, "194.png");
            this.imageList1.Images.SetKeyName(195, "195.png");
            this.imageList1.Images.SetKeyName(196, "196.png");
            this.imageList1.Images.SetKeyName(197, "197.png");
            this.imageList1.Images.SetKeyName(198, "198.png");
            this.imageList1.Images.SetKeyName(199, "199.png");
            this.imageList1.Images.SetKeyName(200, "200.png");
            this.imageList1.Images.SetKeyName(201, "201.png");
            this.imageList1.Images.SetKeyName(202, "202.png");
            this.imageList1.Images.SetKeyName(203, "203.png");
            this.imageList1.Images.SetKeyName(204, "204.png");
            this.imageList1.Images.SetKeyName(205, "205.png");
            this.imageList1.Images.SetKeyName(206, "206.png");
            this.imageList1.Images.SetKeyName(207, "207.png");
            this.imageList1.Images.SetKeyName(208, "208.png");
            this.imageList1.Images.SetKeyName(209, "209.png");
            this.imageList1.Images.SetKeyName(210, "210.png");
            this.imageList1.Images.SetKeyName(211, "211.png");
            this.imageList1.Images.SetKeyName(212, "212.png");
            this.imageList1.Images.SetKeyName(213, "213.png");
            this.imageList1.Images.SetKeyName(214, "214.png");
            this.imageList1.Images.SetKeyName(215, "215.png");
            this.imageList1.Images.SetKeyName(216, "216.png");
            this.imageList1.Images.SetKeyName(217, "217.png");
            this.imageList1.Images.SetKeyName(218, "218.png");
            this.imageList1.Images.SetKeyName(219, "219.png");
            this.imageList1.Images.SetKeyName(220, "220.png");
            this.imageList1.Images.SetKeyName(221, "221.png");
            this.imageList1.Images.SetKeyName(222, "222.png");
            this.imageList1.Images.SetKeyName(223, "223.png");
            this.imageList1.Images.SetKeyName(224, "224.png");
            this.imageList1.Images.SetKeyName(225, "225.png");
            this.imageList1.Images.SetKeyName(226, "226.png");
            this.imageList1.Images.SetKeyName(227, "227.png");
            this.imageList1.Images.SetKeyName(228, "228.png");
            this.imageList1.Images.SetKeyName(229, "229.png");
            this.imageList1.Images.SetKeyName(230, "230.png");
            this.imageList1.Images.SetKeyName(231, "231.png");
            this.imageList1.Images.SetKeyName(232, "232.png");
            this.imageList1.Images.SetKeyName(233, "233.png");
            this.imageList1.Images.SetKeyName(234, "234.png");
            this.imageList1.Images.SetKeyName(235, "235.png");
            this.imageList1.Images.SetKeyName(236, "236.png");
            this.imageList1.Images.SetKeyName(237, "237.png");
            this.imageList1.Images.SetKeyName(238, "238.png");
            this.imageList1.Images.SetKeyName(239, "239.png");
            this.imageList1.Images.SetKeyName(240, "240.png");
            this.imageList1.Images.SetKeyName(241, "241.png");
            this.imageList1.Images.SetKeyName(242, "242.png");
            this.imageList1.Images.SetKeyName(243, "243.png");
            this.imageList1.Images.SetKeyName(244, "244.png");
            this.imageList1.Images.SetKeyName(245, "245.png");
            this.imageList1.Images.SetKeyName(246, "246.png");
            this.imageList1.Images.SetKeyName(247, "247.png");
            this.imageList1.Images.SetKeyName(248, "248.png");
            this.imageList1.Images.SetKeyName(249, "249.png");
            this.imageList1.Images.SetKeyName(250, "250.png");
            this.imageList1.Images.SetKeyName(251, "251.png");
            this.imageList1.Images.SetKeyName(252, "252.png");
            this.imageList1.Images.SetKeyName(253, "253.png");
            this.imageList1.Images.SetKeyName(254, "254.png");
            this.imageList1.Images.SetKeyName(255, "255.png");
            this.imageList1.Images.SetKeyName(256, "256.png");
            this.imageList1.Images.SetKeyName(257, "257.png");
            this.imageList1.Images.SetKeyName(258, "258.png");
            this.imageList1.Images.SetKeyName(259, "259.png");
            this.imageList1.Images.SetKeyName(260, "260.png");
            this.imageList1.Images.SetKeyName(261, "261.png");
            this.imageList1.Images.SetKeyName(262, "262.png");
            this.imageList1.Images.SetKeyName(263, "263.png");
            this.imageList1.Images.SetKeyName(264, "264.png");
            this.imageList1.Images.SetKeyName(265, "265.png");
            this.imageList1.Images.SetKeyName(266, "266.png");
            this.imageList1.Images.SetKeyName(267, "267.png");
            this.imageList1.Images.SetKeyName(268, "268.png");
            this.imageList1.Images.SetKeyName(269, "269.png");
            this.imageList1.Images.SetKeyName(270, "270.png");
            this.imageList1.Images.SetKeyName(271, "271.png");
            this.imageList1.Images.SetKeyName(272, "272.png");
            this.imageList1.Images.SetKeyName(273, "273.png");
            this.imageList1.Images.SetKeyName(274, "274.png");
            this.imageList1.Images.SetKeyName(275, "275.png");
            this.imageList1.Images.SetKeyName(276, "276.png");
            this.imageList1.Images.SetKeyName(277, "277.png");
            this.imageList1.Images.SetKeyName(278, "278.png");
            this.imageList1.Images.SetKeyName(279, "279.png");
            this.imageList1.Images.SetKeyName(280, "280.png");
            this.imageList1.Images.SetKeyName(281, "281.png");
            this.imageList1.Images.SetKeyName(282, "282.png");
            this.imageList1.Images.SetKeyName(283, "283.png");
            this.imageList1.Images.SetKeyName(284, "284.png");
            this.imageList1.Images.SetKeyName(285, "285.png");
            this.imageList1.Images.SetKeyName(286, "286.png");
            this.imageList1.Images.SetKeyName(287, "287.png");
            this.imageList1.Images.SetKeyName(288, "288.png");
            this.imageList1.Images.SetKeyName(289, "289.png");
            this.imageList1.Images.SetKeyName(290, "290.png");
            this.imageList1.Images.SetKeyName(291, "291.png");
            this.imageList1.Images.SetKeyName(292, "292.png");
            this.imageList1.Images.SetKeyName(293, "293.png");
            this.imageList1.Images.SetKeyName(294, "294.png");
            this.imageList1.Images.SetKeyName(295, "295.png");
            this.imageList1.Images.SetKeyName(296, "296.png");
            this.imageList1.Images.SetKeyName(297, "297.png");
            this.imageList1.Images.SetKeyName(298, "298.png");
            this.imageList1.Images.SetKeyName(299, "299.png");
            this.imageList1.Images.SetKeyName(300, "300.png");
            this.imageList1.Images.SetKeyName(301, "301.png");
            this.imageList1.Images.SetKeyName(302, "302.png");
            this.imageList1.Images.SetKeyName(303, "303.png");
            this.imageList1.Images.SetKeyName(304, "304.png");
            this.imageList1.Images.SetKeyName(305, "305.png");
            this.imageList1.Images.SetKeyName(306, "306.png");
            this.imageList1.Images.SetKeyName(307, "307.png");
            this.imageList1.Images.SetKeyName(308, "308.png");
            this.imageList1.Images.SetKeyName(309, "309.png");
            this.imageList1.Images.SetKeyName(310, "310.png");
            this.imageList1.Images.SetKeyName(311, "311.png");
            this.imageList1.Images.SetKeyName(312, "312.png");
            this.imageList1.Images.SetKeyName(313, "313.png");
            this.imageList1.Images.SetKeyName(314, "314.png");
            this.imageList1.Images.SetKeyName(315, "315.png");
            this.imageList1.Images.SetKeyName(316, "316.png");
            this.imageList1.Images.SetKeyName(317, "317.png");
            this.imageList1.Images.SetKeyName(318, "318.png");
            this.imageList1.Images.SetKeyName(319, "319.png");
            this.imageList1.Images.SetKeyName(320, "320.png");
            this.imageList1.Images.SetKeyName(321, "321.png");
            this.imageList1.Images.SetKeyName(322, "322.png");
            this.imageList1.Images.SetKeyName(323, "323.png");
            this.imageList1.Images.SetKeyName(324, "324.png");
            this.imageList1.Images.SetKeyName(325, "325.png");
            this.imageList1.Images.SetKeyName(326, "326.png");
            this.imageList1.Images.SetKeyName(327, "327.png");
            this.imageList1.Images.SetKeyName(328, "328.png");
            this.imageList1.Images.SetKeyName(329, "329.png");
            this.imageList1.Images.SetKeyName(330, "330.png");
            this.imageList1.Images.SetKeyName(331, "331.png");
            this.imageList1.Images.SetKeyName(332, "332.png");
            this.imageList1.Images.SetKeyName(333, "333.png");
            this.imageList1.Images.SetKeyName(334, "334.png");
            this.imageList1.Images.SetKeyName(335, "335.png");
            this.imageList1.Images.SetKeyName(336, "336.png");
            this.imageList1.Images.SetKeyName(337, "337.png");
            this.imageList1.Images.SetKeyName(338, "338.png");
            this.imageList1.Images.SetKeyName(339, "339.png");
            this.imageList1.Images.SetKeyName(340, "340.png");
            this.imageList1.Images.SetKeyName(341, "341.png");
            this.imageList1.Images.SetKeyName(342, "342.png");
            this.imageList1.Images.SetKeyName(343, "343.png");
            this.imageList1.Images.SetKeyName(344, "344.png");
            this.imageList1.Images.SetKeyName(345, "345.png");
            this.imageList1.Images.SetKeyName(346, "346.png");
            this.imageList1.Images.SetKeyName(347, "347.png");
            this.imageList1.Images.SetKeyName(348, "348.png");
            this.imageList1.Images.SetKeyName(349, "349.png");
            this.imageList1.Images.SetKeyName(350, "350.png");
            this.imageList1.Images.SetKeyName(351, "351.png");
            this.imageList1.Images.SetKeyName(352, "352.png");
            this.imageList1.Images.SetKeyName(353, "353.png");
            this.imageList1.Images.SetKeyName(354, "354.png");
            this.imageList1.Images.SetKeyName(355, "355.png");
            this.imageList1.Images.SetKeyName(356, "356.png");
            this.imageList1.Images.SetKeyName(357, "357.png");
            this.imageList1.Images.SetKeyName(358, "358.png");
            this.imageList1.Images.SetKeyName(359, "359.png");
            this.imageList1.Images.SetKeyName(360, "360.png");
            this.imageList1.Images.SetKeyName(361, "361.png");
            this.imageList1.Images.SetKeyName(362, "362.png");
            this.imageList1.Images.SetKeyName(363, "363.png");
            this.imageList1.Images.SetKeyName(364, "364.png");
            this.imageList1.Images.SetKeyName(365, "365.png");
            this.imageList1.Images.SetKeyName(366, "366.png");
            this.imageList1.Images.SetKeyName(367, "367.png");
            this.imageList1.Images.SetKeyName(368, "368.png");
            this.imageList1.Images.SetKeyName(369, "369.png");
            this.imageList1.Images.SetKeyName(370, "370.png");
            this.imageList1.Images.SetKeyName(371, "371.png");
            this.imageList1.Images.SetKeyName(372, "372.png");
            this.imageList1.Images.SetKeyName(373, "373.png");
            this.imageList1.Images.SetKeyName(374, "374.png");
            this.imageList1.Images.SetKeyName(375, "375.png");
            this.imageList1.Images.SetKeyName(376, "376.png");
            this.imageList1.Images.SetKeyName(377, "377.png");
            this.imageList1.Images.SetKeyName(378, "378.png");
            this.imageList1.Images.SetKeyName(379, "379.png");
            this.imageList1.Images.SetKeyName(380, "380.png");
            this.imageList1.Images.SetKeyName(381, "381.png");
            this.imageList1.Images.SetKeyName(382, "382.png");
            this.imageList1.Images.SetKeyName(383, "383.png");
            this.imageList1.Images.SetKeyName(384, "384.png");
            this.imageList1.Images.SetKeyName(385, "385.png");
            this.imageList1.Images.SetKeyName(386, "386.png");
            this.imageList1.Images.SetKeyName(387, "387.png");
            this.imageList1.Images.SetKeyName(388, "388.png");
            this.imageList1.Images.SetKeyName(389, "389.png");
            this.imageList1.Images.SetKeyName(390, "390.png");
            this.imageList1.Images.SetKeyName(391, "391.png");
            this.imageList1.Images.SetKeyName(392, "392.png");
            this.imageList1.Images.SetKeyName(393, "393.png");
            this.imageList1.Images.SetKeyName(394, "394.png");
            this.imageList1.Images.SetKeyName(395, "395.png");
            this.imageList1.Images.SetKeyName(396, "396.png");
            this.imageList1.Images.SetKeyName(397, "397.png");
            this.imageList1.Images.SetKeyName(398, "398.png");
            this.imageList1.Images.SetKeyName(399, "399.png");
            this.imageList1.Images.SetKeyName(400, "400.png");
            this.imageList1.Images.SetKeyName(401, "401.png");
            this.imageList1.Images.SetKeyName(402, "402.png");
            this.imageList1.Images.SetKeyName(403, "403.png");
            this.imageList1.Images.SetKeyName(404, "404.png");
            this.imageList1.Images.SetKeyName(405, "405.png");
            this.imageList1.Images.SetKeyName(406, "406.png");
            this.imageList1.Images.SetKeyName(407, "407.png");
            this.imageList1.Images.SetKeyName(408, "408.png");
            this.imageList1.Images.SetKeyName(409, "409.png");
            this.imageList1.Images.SetKeyName(410, "410.png");
            this.imageList1.Images.SetKeyName(411, "411.png");
            this.imageList1.Images.SetKeyName(412, "412.png");
            this.imageList1.Images.SetKeyName(413, "413.png");
            this.imageList1.Images.SetKeyName(414, "414.png");
            this.imageList1.Images.SetKeyName(415, "415.png");
            this.imageList1.Images.SetKeyName(416, "416.png");
            this.imageList1.Images.SetKeyName(417, "417.png");
            this.imageList1.Images.SetKeyName(418, "418.png");
            this.imageList1.Images.SetKeyName(419, "419.png");
            this.imageList1.Images.SetKeyName(420, "420.png");
            this.imageList1.Images.SetKeyName(421, "421.png");
            this.imageList1.Images.SetKeyName(422, "422.png");
            this.imageList1.Images.SetKeyName(423, "423.png");
            this.imageList1.Images.SetKeyName(424, "424.png");
            this.imageList1.Images.SetKeyName(425, "425.png");
            this.imageList1.Images.SetKeyName(426, "426.png");
            this.imageList1.Images.SetKeyName(427, "427.png");
            this.imageList1.Images.SetKeyName(428, "428.png");
            this.imageList1.Images.SetKeyName(429, "429.png");
            this.imageList1.Images.SetKeyName(430, "430.png");
            this.imageList1.Images.SetKeyName(431, "431.png");
            this.imageList1.Images.SetKeyName(432, "432.png");
            this.imageList1.Images.SetKeyName(433, "433.png");
            this.imageList1.Images.SetKeyName(434, "434.png");
            this.imageList1.Images.SetKeyName(435, "435.png");
            this.imageList1.Images.SetKeyName(436, "436.png");
            this.imageList1.Images.SetKeyName(437, "437.png");
            this.imageList1.Images.SetKeyName(438, "438.png");
            this.imageList1.Images.SetKeyName(439, "439.png");
            this.imageList1.Images.SetKeyName(440, "440.png");
            this.imageList1.Images.SetKeyName(441, "441.png");
            this.imageList1.Images.SetKeyName(442, "442.png");
            this.imageList1.Images.SetKeyName(443, "443.png");
            this.imageList1.Images.SetKeyName(444, "444.png");
            this.imageList1.Images.SetKeyName(445, "445.png");
            this.imageList1.Images.SetKeyName(446, "446.png");
            this.imageList1.Images.SetKeyName(447, "447.png");
            this.imageList1.Images.SetKeyName(448, "448.png");
            this.imageList1.Images.SetKeyName(449, "449.png");
            this.imageList1.Images.SetKeyName(450, "450.png");
            this.imageList1.Images.SetKeyName(451, "451.png");
            this.imageList1.Images.SetKeyName(452, "452.png");
            this.imageList1.Images.SetKeyName(453, "453.png");
            this.imageList1.Images.SetKeyName(454, "454.png");
            this.imageList1.Images.SetKeyName(455, "455.png");
            this.imageList1.Images.SetKeyName(456, "456.png");
            this.imageList1.Images.SetKeyName(457, "457.png");
            this.imageList1.Images.SetKeyName(458, "458.png");
            this.imageList1.Images.SetKeyName(459, "459.png");
            this.imageList1.Images.SetKeyName(460, "460.png");
            this.imageList1.Images.SetKeyName(461, "461.png");
            this.imageList1.Images.SetKeyName(462, "462.png");
            this.imageList1.Images.SetKeyName(463, "463.png");
            this.imageList1.Images.SetKeyName(464, "464.png");
            this.imageList1.Images.SetKeyName(465, "465.png");
            this.imageList1.Images.SetKeyName(466, "466.png");
            this.imageList1.Images.SetKeyName(467, "467.png");
            this.imageList1.Images.SetKeyName(468, "468.png");
            this.imageList1.Images.SetKeyName(469, "469.png");
            this.imageList1.Images.SetKeyName(470, "470.png");
            this.imageList1.Images.SetKeyName(471, "471.png");
            this.imageList1.Images.SetKeyName(472, "472.png");
            this.imageList1.Images.SetKeyName(473, "473.png");
            this.imageList1.Images.SetKeyName(474, "474.png");
            this.imageList1.Images.SetKeyName(475, "475.png");
            this.imageList1.Images.SetKeyName(476, "476.png");
            this.imageList1.Images.SetKeyName(477, "477.png");
            this.imageList1.Images.SetKeyName(478, "478.png");
            this.imageList1.Images.SetKeyName(479, "479.png");
            this.imageList1.Images.SetKeyName(480, "480.png");
            this.imageList1.Images.SetKeyName(481, "481.png");
            this.imageList1.Images.SetKeyName(482, "482.png");
            this.imageList1.Images.SetKeyName(483, "483.png");
            this.imageList1.Images.SetKeyName(484, "484.png");
            this.imageList1.Images.SetKeyName(485, "485.png");
            this.imageList1.Images.SetKeyName(486, "486.png");
            this.imageList1.Images.SetKeyName(487, "487.png");
            this.imageList1.Images.SetKeyName(488, "488.png");
            this.imageList1.Images.SetKeyName(489, "489.png");
            this.imageList1.Images.SetKeyName(490, "490.png");
            this.imageList1.Images.SetKeyName(491, "491.png");
            this.imageList1.Images.SetKeyName(492, "492.png");
            this.imageList1.Images.SetKeyName(493, "493.png");
            this.imageList1.Images.SetKeyName(494, "494.png");
            this.imageList1.Images.SetKeyName(495, "495.png");
            this.imageList1.Images.SetKeyName(496, "496.png");
            this.imageList1.Images.SetKeyName(497, "497.png");
            this.imageList1.Images.SetKeyName(498, "498.png");
            this.imageList1.Images.SetKeyName(499, "499.png");
            this.imageList1.Images.SetKeyName(500, "500.png");
            this.imageList1.Images.SetKeyName(501, "501.png");
            this.imageList1.Images.SetKeyName(502, "502.png");
            this.imageList1.Images.SetKeyName(503, "503.png");
            this.imageList1.Images.SetKeyName(504, "504.png");
            this.imageList1.Images.SetKeyName(505, "505.png");
            this.imageList1.Images.SetKeyName(506, "506.png");
            this.imageList1.Images.SetKeyName(507, "507.png");
            this.imageList1.Images.SetKeyName(508, "508.png");
            this.imageList1.Images.SetKeyName(509, "509.png");
            this.imageList1.Images.SetKeyName(510, "510.png");
            this.imageList1.Images.SetKeyName(511, "511.png");
            this.imageList1.Images.SetKeyName(512, "512.png");
            this.imageList1.Images.SetKeyName(513, "513.png");
            this.imageList1.Images.SetKeyName(514, "514.png");
            this.imageList1.Images.SetKeyName(515, "515.png");
            this.imageList1.Images.SetKeyName(516, "516.png");
            this.imageList1.Images.SetKeyName(517, "517.png");
            this.imageList1.Images.SetKeyName(518, "518.png");
            this.imageList1.Images.SetKeyName(519, "519.png");
            this.imageList1.Images.SetKeyName(520, "520.png");
            this.imageList1.Images.SetKeyName(521, "521.png");
            this.imageList1.Images.SetKeyName(522, "522.png");
            this.imageList1.Images.SetKeyName(523, "523.png");
            this.imageList1.Images.SetKeyName(524, "524.png");
            this.imageList1.Images.SetKeyName(525, "525.png");
            this.imageList1.Images.SetKeyName(526, "526.png");
            this.imageList1.Images.SetKeyName(527, "527.png");
            this.imageList1.Images.SetKeyName(528, "528.png");
            this.imageList1.Images.SetKeyName(529, "529.png");
            this.imageList1.Images.SetKeyName(530, "530.png");
            this.imageList1.Images.SetKeyName(531, "531.png");
            this.imageList1.Images.SetKeyName(532, "532.png");
            this.imageList1.Images.SetKeyName(533, "533.png");
            this.imageList1.Images.SetKeyName(534, "534.png");
            this.imageList1.Images.SetKeyName(535, "535.png");
            this.imageList1.Images.SetKeyName(536, "536.png");
            this.imageList1.Images.SetKeyName(537, "537.png");
            this.imageList1.Images.SetKeyName(538, "538.png");
            this.imageList1.Images.SetKeyName(539, "539.png");
            this.imageList1.Images.SetKeyName(540, "540.png");
            this.imageList1.Images.SetKeyName(541, "541.png");
            this.imageList1.Images.SetKeyName(542, "542.png");
            this.imageList1.Images.SetKeyName(543, "543.png");
            this.imageList1.Images.SetKeyName(544, "544.png");
            this.imageList1.Images.SetKeyName(545, "545.png");
            this.imageList1.Images.SetKeyName(546, "546.png");
            this.imageList1.Images.SetKeyName(547, "547.png");
            this.imageList1.Images.SetKeyName(548, "548.png");
            this.imageList1.Images.SetKeyName(549, "549.png");
            this.imageList1.Images.SetKeyName(550, "550.png");
            this.imageList1.Images.SetKeyName(551, "551.png");
            this.imageList1.Images.SetKeyName(552, "552.png");
            this.imageList1.Images.SetKeyName(553, "553.png");
            this.imageList1.Images.SetKeyName(554, "554.png");
            this.imageList1.Images.SetKeyName(555, "555.png");
            this.imageList1.Images.SetKeyName(556, "556.png");
            this.imageList1.Images.SetKeyName(557, "557.png");
            this.imageList1.Images.SetKeyName(558, "558.png");
            this.imageList1.Images.SetKeyName(559, "559.png");
            this.imageList1.Images.SetKeyName(560, "560.png");
            this.imageList1.Images.SetKeyName(561, "561.png");
            this.imageList1.Images.SetKeyName(562, "562.png");
            this.imageList1.Images.SetKeyName(563, "563.png");
            this.imageList1.Images.SetKeyName(564, "564.png");
            this.imageList1.Images.SetKeyName(565, "565.png");
            this.imageList1.Images.SetKeyName(566, "566.png");
            this.imageList1.Images.SetKeyName(567, "567.png");
            this.imageList1.Images.SetKeyName(568, "568.png");
            this.imageList1.Images.SetKeyName(569, "569.png");
            this.imageList1.Images.SetKeyName(570, "570.png");
            this.imageList1.Images.SetKeyName(571, "571.png");
            this.imageList1.Images.SetKeyName(572, "572.png");
            this.imageList1.Images.SetKeyName(573, "573.png");
            this.imageList1.Images.SetKeyName(574, "574.png");
            this.imageList1.Images.SetKeyName(575, "575.png");
            this.imageList1.Images.SetKeyName(576, "576.png");
            this.imageList1.Images.SetKeyName(577, "577.png");
            this.imageList1.Images.SetKeyName(578, "578.png");
            this.imageList1.Images.SetKeyName(579, "579.png");
            this.imageList1.Images.SetKeyName(580, "580.png");
            this.imageList1.Images.SetKeyName(581, "581.png");
            this.imageList1.Images.SetKeyName(582, "582.png");
            this.imageList1.Images.SetKeyName(583, "583.png");
            this.imageList1.Images.SetKeyName(584, "584.png");
            this.imageList1.Images.SetKeyName(585, "585.png");
            this.imageList1.Images.SetKeyName(586, "586.png");
            this.imageList1.Images.SetKeyName(587, "587.png");
            this.imageList1.Images.SetKeyName(588, "588.png");
            this.imageList1.Images.SetKeyName(589, "589.png");
            this.imageList1.Images.SetKeyName(590, "590.png");
            this.imageList1.Images.SetKeyName(591, "591.png");
            this.imageList1.Images.SetKeyName(592, "592.png");
            this.imageList1.Images.SetKeyName(593, "593.png");
            this.imageList1.Images.SetKeyName(594, "594.png");
            this.imageList1.Images.SetKeyName(595, "595.png");
            this.imageList1.Images.SetKeyName(596, "596.png");
            this.imageList1.Images.SetKeyName(597, "597.png");
            this.imageList1.Images.SetKeyName(598, "598.png");
            this.imageList1.Images.SetKeyName(599, "599.png");
            this.imageList1.Images.SetKeyName(600, "600.png");
            this.imageList1.Images.SetKeyName(601, "601.png");
            this.imageList1.Images.SetKeyName(602, "602.png");
            this.imageList1.Images.SetKeyName(603, "603.png");
            this.imageList1.Images.SetKeyName(604, "604.png");
            this.imageList1.Images.SetKeyName(605, "605.png");
            this.imageList1.Images.SetKeyName(606, "606.png");
            this.imageList1.Images.SetKeyName(607, "607.png");
            this.imageList1.Images.SetKeyName(608, "608.png");
            this.imageList1.Images.SetKeyName(609, "609.png");
            this.imageList1.Images.SetKeyName(610, "610.png");
            this.imageList1.Images.SetKeyName(611, "611.png");
            this.imageList1.Images.SetKeyName(612, "612.png");
            this.imageList1.Images.SetKeyName(613, "613.png");
            this.imageList1.Images.SetKeyName(614, "614.png");
            this.imageList1.Images.SetKeyName(615, "615.png");
            this.imageList1.Images.SetKeyName(616, "616.png");
            this.imageList1.Images.SetKeyName(617, "617.png");
            this.imageList1.Images.SetKeyName(618, "618.png");
            this.imageList1.Images.SetKeyName(619, "619.png");
            this.imageList1.Images.SetKeyName(620, "620.png");
            this.imageList1.Images.SetKeyName(621, "621.png");
            this.imageList1.Images.SetKeyName(622, "622.png");
            this.imageList1.Images.SetKeyName(623, "623.png");
            this.imageList1.Images.SetKeyName(624, "624.png");
            this.imageList1.Images.SetKeyName(625, "625.png");
            this.imageList1.Images.SetKeyName(626, "626.png");
            this.imageList1.Images.SetKeyName(627, "627.png");
            this.imageList1.Images.SetKeyName(628, "628.png");
            this.imageList1.Images.SetKeyName(629, "629.png");
            this.imageList1.Images.SetKeyName(630, "630.png");
            this.imageList1.Images.SetKeyName(631, "631.png");
            this.imageList1.Images.SetKeyName(632, "632.png");
            this.imageList1.Images.SetKeyName(633, "633.png");
            this.imageList1.Images.SetKeyName(634, "634.png");
            this.imageList1.Images.SetKeyName(635, "635.png");
            this.imageList1.Images.SetKeyName(636, "636.png");
            this.imageList1.Images.SetKeyName(637, "637.png");
            this.imageList1.Images.SetKeyName(638, "638.png");
            this.imageList1.Images.SetKeyName(639, "639.png");
            this.imageList1.Images.SetKeyName(640, "640.png");
            this.imageList1.Images.SetKeyName(641, "641.png");
            this.imageList1.Images.SetKeyName(642, "642.png");
            this.imageList1.Images.SetKeyName(643, "643.png");
            this.imageList1.Images.SetKeyName(644, "644.png");
            this.imageList1.Images.SetKeyName(645, "645.png");
            // 
            // FrmUserInfoEdit
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(590, 368);
            this.Controls.Add(this.tabControl1);
            this.Controls.Add(this.btn_save);
            this.Controls.Add(this.btn_concel);
            this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
            this.MaximizeBox = false;
            this.MinimizeBox = false;
            this.Name = "FrmUserInfoEdit";
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
            this.Text = "用户管理编辑";
            this.Load += new System.EventHandler(this.FrmUserInfoEdit_Load);
            this.tabControl1.ResumeLayout(false);
            this.tab_baseInfo.ResumeLayout(false);
            this.tab_baseInfo.PerformLayout();
            this.tab_AppendProperty.ResumeLayout(false);
            this.tab_Dept.ResumeLayout(false);
            this.tab_Role.ResumeLayout(false);
            this.tab_UserRight.ResumeLayout(false);
            this.ResumeLayout(false);
 
        }
 
        #endregion
 
        private System.Windows.Forms.TabControl tabControl1;
        private System.Windows.Forms.TabPage tab_baseInfo;
        private System.Windows.Forms.TabPage tab_AppendProperty;
        private System.Windows.Forms.TabPage tab_UserRight;
        private System.Windows.Forms.TabPage tab_Dept;
        private System.Windows.Forms.TabPage tab_Role;
        private System.Windows.Forms.TabPage tab_group;
        private System.Windows.Forms.RichTextBox richTextBox1;
        private System.Windows.Forms.Label label12;
        private System.Windows.Forms.Label label7;
        private System.Windows.Forms.Label label5;
        private System.Windows.Forms.Label label6;
        private System.Windows.Forms.Label label4;
        private System.Windows.Forms.Label label2;
        private System.Windows.Forms.TextBox txt_User_Code;
        private System.Windows.Forms.Label label1;
        private System.Windows.Forms.Button btn_save;
        private System.Windows.Forms.Button btn_concel;
        private System.Windows.Forms.TextBox txt_User_Name;
        private System.Windows.Forms.TextBox txt_User_Account;
        private System.Windows.Forms.ComboBox com_User_Sex;
        private System.Windows.Forms.TextBox txt_Email;
        private System.Windows.Forms.TextBox txt_Title;
        private System.Windows.Forms.FlowLayoutPanel flowLayoutPanel1;
        private System.Windows.Forms.TreeView tree_UserRight;
        private System.Windows.Forms.ImageList imageList1;
        private System.Windows.Forms.TreeView tree_Dept;
        private System.Windows.Forms.TreeView tree_UserRole;
    }
}