领胜LDS 键盘AOI检测项目
wells.liu
2020-07-07 5918194fccdb2a2303e713b8d2f3335243b9e2ef
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
using Autofac;
using Bro.Common.Factory;
using Bro.Common.Interface;
using Bro.Common.Model;
using Newtonsoft.Json;
using System;
using System.Collections;
using System.Collections.Generic;
using System.ComponentModel;
using System.ComponentModel.Design;
using System.Drawing.Design;
using System.Drawing.Printing;
using System.Globalization;
using System.IO.Ports;
using System.Linq;
using System.Windows.Forms;
using System.Windows.Forms.Design;
 
namespace Bro.Common.Helper
{
    #region TypeConvert
    public class SerialPortConverter : StringConverter
    {
        public override bool GetStandardValuesSupported(ITypeDescriptorContext context)
        {
            return true;
        }
 
        public override bool GetStandardValuesExclusive(ITypeDescriptorContext context)
        {
            return true;
        }
 
        public override StandardValuesCollection GetStandardValues(ITypeDescriptorContext context)
        {
            List<string> portNames = SerialPort.GetPortNames().ToList();
            //if (portNames.Count == 0)
            //{
            //    portNames.Add("当前无可用串口");
            //}
 
            return new StandardValuesCollection(portNames);
        }
    }
 
    public class ExcelTypeConverter : StringConverter
    {
        public override bool GetStandardValuesSupported(ITypeDescriptorContext context)
        {
            return true;
        }
 
        public override bool GetStandardValuesExclusive(ITypeDescriptorContext context)
        {
            return true;
        }
 
        public override StandardValuesCollection GetStandardValues(ITypeDescriptorContext context)
        {
            List<string> portNames = new List<string>() { "Excel文件", "CSV文件" };
            //if (portNames.Count == 0)
            //{
            //    portNames.Add("当前无可用串口");
            //}
 
            return new StandardValuesCollection(portNames);
        }
    }
 
    public class BaudRateConverter : StringConverter
    {
        public override bool GetStandardValuesSupported(ITypeDescriptorContext context)
        {
            return true;
        }
 
        public override bool GetStandardValuesExclusive(ITypeDescriptorContext context)
        {
            return true;
        }
 
        public override StandardValuesCollection GetStandardValues(ITypeDescriptorContext context)
        {
            List<string> bauds = new List<string>()
            {
                "9600",
                "19200",
                "38400",
                "43000",
                "56000",
                "57600",
                "115200",
            };
 
            return new StandardValuesCollection(bauds);
        }
    }
 
    public abstract class ComboBoxItemTypeConvert : TypeConverter
    {
        //private Hashtable hash = null;
 
        public Hashtable Hash { get; set; } = new Hashtable();
        //{
        //    get
        //    {
        //        if (hash == null)
        //        {
        //            hash = GetConvertHash();
        //        }
 
        //        return hash;
        //    }
        //    set => hash = value;
        //}
 
        public abstract Hashtable GetConvertHash(ITypeDescriptorContext context);
 
        public override bool GetStandardValuesSupported(ITypeDescriptorContext context)
        {
            return true;
        }
 
        public override StandardValuesCollection GetStandardValues(ITypeDescriptorContext context)
        {
            Hash = GetConvertHash(context);
 
            string[] ids = new string[Hash.Values.Count];
            int i = 0;
 
            foreach (DictionaryEntry myDE in Hash)
            {
                ids[i++] = (myDE.Key).ToString();
            }
 
            return new StandardValuesCollection(ids);
        }
 
        public override bool CanConvertFrom(ITypeDescriptorContext context, Type sourceType)
        {
            if (sourceType == typeof(string))
            {
                return true;
            }
 
            return base.CanConvertFrom(context, sourceType);
        }
 
        public override object ConvertFrom(ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object v)
        {
            try
            {
                if (Hash.Count > 0)
                {
                    if (v is string)
                    {
                        foreach (DictionaryEntry myDE in Hash)
                        {
                            if (myDE.Value.Equals((v.ToString())))
                                return myDE.Key;
                        }
                    }
                }
            }
            catch (Exception)
            {
            }
 
            return base.ConvertFrom(context, culture, v);
        }
 
        public override object ConvertTo(ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object v, Type destinationType)
        {
            try
            {
                if (Hash.Count > 0)
                {
                    if (destinationType == typeof(string))
                    {
                        foreach (DictionaryEntry myDE in Hash)
                        {
                            if (myDE.Key.Equals(v))
                                return myDE.Value.ToString();
                        }
                        return "";
                    }
 
                    //foreach (DictionaryEntry myDE in Hash)
                    //{
                    //    if (myDE.Key.Equals(v))
                    //        return myDE.Value;
                    //}
                    return null;
                }
            }
            catch (Exception)
            {
            }
 
            return base.ConvertTo(context, culture, v, destinationType);
        }
    }
 
    public class NoEditStringConvert : StringConverter
    {
        public override bool GetStandardValuesExclusive(ITypeDescriptorContext context)
        {
            return true;
        }
    }
 
    public class ComplexObjectConvert : StringConverter
    {
        public override bool GetStandardValuesExclusive(ITypeDescriptorContext context)
        {
            return true;
        }
 
        public override object ConvertTo(ITypeDescriptorContext context, CultureInfo culture, object value, Type destinationType)
        {
            //return base.ConvertTo(context, culture, value, destinationType);
            if (value != null)
            {
                if (value is IComplexDisplay)
                {
                    return (value as IComplexDisplay).GetDisplayText();
                }
                else if (value is IEnumerable enumList)
                {
                    string display = "";
                    bool iComplexDisplayMatch = false;
                    var enumrator = enumList.GetEnumerator();
                    while (enumrator.MoveNext())
                    {
                        if (enumrator.Current is IComplexDisplay d)
                        {
                            iComplexDisplayMatch = true;
                            display += $"{d.GetDisplayText()} ";
                        }
                    }
 
                    if (iComplexDisplayMatch)
                    {
                        return display.Trim();
                    }
                }
 
                {
                    return JsonConvert.SerializeObject(value);
                }
            }
            else
            {
                return "NULL";
            }
        }
 
        public override object ConvertFrom(ITypeDescriptorContext context, CultureInfo culture, object value)
        {
            if (value.ToString() != "NULL")
            {
                return JsonConvert.DeserializeObject(value.ToString());
            }
            else
            {
                return null;
            }
        }
    }
 
    public class CollectionCountConvert : TypeConverter
    {
        public override bool GetStandardValuesExclusive(ITypeDescriptorContext context)
        {
            return true;
        }
 
        public override object ConvertTo(ITypeDescriptorContext context, CultureInfo culture, object value, Type destinationType)
        {
            if (value is ICollection)
            {
                return (value as ICollection).Count.ToString();
            }
            else
            {
                return base.ConvertTo(context, culture, value, destinationType);
            }
        }
    }
 
    public class SimpleCollectionConvert<T> : TypeConverter
    {
        public override bool GetStandardValuesExclusive(ITypeDescriptorContext context)
        {
            return true;
        }
 
        public override object ConvertTo(ITypeDescriptorContext context, CultureInfo culture, object value, Type destinationType)
        {
            if (value is IEnumerable<T>)
            {
                return String.Join(",", (value as IEnumerable<T>));
            }
 
            return base.ConvertTo(context, culture, value, destinationType);
        }
    }
 
    public class ShortTimeConverter : StringConverter
    {
        public override object ConvertTo(ITypeDescriptorContext context, CultureInfo culture, object value, Type destinationType)
        {
            if (value is DateTime?)
            {
                if (value == null)
                {
                    return "";
                }
                else
                {
                    return ((DateTime)value).ToString("mm:ss.fff");
                }
            }
            else
            {
                return base.ConvertTo(context, culture, value, destinationType);
            }
        }
    }
 
    public class ShortTimeHHmmConverter : StringConverter
    {
        public override object ConvertFrom(ITypeDescriptorContext context, CultureInfo culture, object value)
        {
            return DateTime.Parse(value.ToString());
        }
 
        public override object ConvertTo(ITypeDescriptorContext context, CultureInfo culture, object value, Type destinationType)
        {
            if (value is DateTime?)
            {
                if (value == null)
                {
                    return "";
                }
                else
                {
                    return ((DateTime)value).ToString("HH:mm");
                }
            }
            else
            {
                return base.ConvertTo(context, culture, value, destinationType);
            }
        }
    }
 
    public class PrinterConverter : StringConverter
    {
        public string Filter { get; set; }
 
        public PrinterConverter() : base() { }
 
        public PrinterConverter(string filter) : base()
        {
            Filter = filter;
        }
 
        public override StandardValuesCollection GetStandardValues(ITypeDescriptorContext context)
        {
            List<string> printerList = new List<string>();
            foreach (string sPrint in PrinterSettings.InstalledPrinters)//获取所有打印机名称
            {
                if (!string.IsNullOrWhiteSpace(Filter))
                {
                    if (sPrint.Contains("Deli"))
                    {
                        printerList.Add(sPrint);
                    }
                }
                else
                {
                    printerList.Add(sPrint);
                }
            }
 
            return new StandardValuesCollection(printerList);
        }
 
        public override bool GetStandardValuesExclusive(ITypeDescriptorContext context)
        {
            return true;
        }
    }
 
    public class EnumDescriptionConverter<T> : TypeConverter where T : Enum
    {
        Dictionary<T, string> itemDict = new Dictionary<T, string>();
        public override StandardValuesCollection GetStandardValues(ITypeDescriptorContext context)
        {
            typeof(T).GetEnumNames().ToList().ForEach(e =>
            {
                T temp = (T)Enum.Parse(typeof(T), e);
                itemDict[temp] = temp.GetEnumDescription();
            });
 
            return new StandardValuesCollection(itemDict.Keys);
        }
        public override bool GetStandardValuesSupported(ITypeDescriptorContext context)
        {
            return true;
        }
 
        public override bool GetStandardValuesExclusive(ITypeDescriptorContext context)
        {
            return true;
        }
 
        public override bool CanConvertFrom(ITypeDescriptorContext context, Type sourceType)
        {
            if (sourceType == typeof(String))
                return true;
 
            return base.CanConvertFrom(context, sourceType);
        }
 
        public override bool CanConvertTo(ITypeDescriptorContext context, Type destinationType)
        {
            return base.CanConvertTo(context, destinationType);
        }
 
        public override object CreateInstance(ITypeDescriptorContext context, IDictionary propertyValues)
        {
            return base.CreateInstance(context, propertyValues);
        }
 
        /// <summary>
        /// 
        /// </summary>
        /// <param name="context"></param>
        /// <param name="culture"></param>
        /// <param name="value">string</param>
        /// <returns></returns>
        public override object ConvertFrom(ITypeDescriptorContext context, CultureInfo culture, object value)
        {
            try
            {
                foreach (string e in typeof(T).GetEnumNames().ToList())
                {
                    T temp = (T)Enum.Parse(typeof(T), e);
 
                    if (temp.GetEnumDescription() == value.ToString())
                        return temp;
                }
            }
            catch (Exception ex)
            {
            }
 
            return base.ConvertFrom(context, culture, value);
        }
 
        /// <summary>
        /// 
        /// </summary>
        /// <param name="context"></param>
        /// <param name="culture"></param>
        /// <param name="value">IOItem</param>
        /// <param name="destinationType"></param>
        /// <returns></returns>
        public override object ConvertTo(ITypeDescriptorContext context, CultureInfo culture, object value, Type destinationType)
        {
            if (value is T temp)
            {
                //foreach (KeyValuePair<T, string> pair in itemDict)
                //{
                //    if (Convert.ToInt32(pair.Key) == Convert.ToInt32(temp))
                //    {
                //        return pair.Value;
                //    }
                //}
 
                return temp.GetEnumDescription();
            }
 
            return base.ConvertTo(context, culture, value, destinationType);
        }
    }
    #endregion
 
    #region UITypeEditor
    public class FoldDialogEditor : UITypeEditor
    {
        public override UITypeEditorEditStyle GetEditStyle(System.ComponentModel.ITypeDescriptorContext context)
        {
            return UITypeEditorEditStyle.Modal;
        }
 
        public override object EditValue(System.ComponentModel.ITypeDescriptorContext context, System.IServiceProvider provider, object value)
        {
            IWindowsFormsEditorService edSvc = (IWindowsFormsEditorService)provider.GetService(typeof(IWindowsFormsEditorService));
 
            if (edSvc != null)
            {
                // 可以打开任何特定的对话框  
                FolderBrowserDialog dialog = new FolderBrowserDialog();
 
                if (dialog.ShowDialog().Equals(DialogResult.OK))
                {
                    return dialog.SelectedPath;
                }
            }
            return value;
        }
    }
 
    public class FileDialogEditor : UITypeEditor
    {
        public override UITypeEditorEditStyle GetEditStyle(System.ComponentModel.ITypeDescriptorContext context)
        {
            return UITypeEditorEditStyle.Modal;
        }
 
        public override object EditValue(System.ComponentModel.ITypeDescriptorContext context, System.IServiceProvider provider, object value)
        {
            IWindowsFormsEditorService edSvc = (IWindowsFormsEditorService)provider.GetService(typeof(IWindowsFormsEditorService));
 
            if (edSvc != null)
            {
                // 可以打开任何特定的对话框  
                OpenFileDialog dialog = new OpenFileDialog
                {
                    AddExtension = false
                };
 
                if (dialog.ShowDialog().Equals(DialogResult.OK))
                {
                    return dialog.FileName;
                }
            }
            return value;
        }
    }
 
    public class SaveFileDialogEditor : UITypeEditor
    {
        public override UITypeEditorEditStyle GetEditStyle(System.ComponentModel.ITypeDescriptorContext context)
        {
            return UITypeEditorEditStyle.Modal;
        }
 
        public override object EditValue(System.ComponentModel.ITypeDescriptorContext context, System.IServiceProvider provider, object value)
        {
            IWindowsFormsEditorService edSvc = (IWindowsFormsEditorService)provider.GetService(typeof(IWindowsFormsEditorService));
 
            if (edSvc != null)
            {
                // 可以打开任何特定的对话框  
                SaveFileDialog dialog = new SaveFileDialog();
 
                if (dialog.ShowDialog().Equals(DialogResult.OK))
                {
                    return dialog.FileName;
                }
            }
            return value;
        }
    }
 
    public class PropertyObjectEditor : UITypeEditor
    {
        public override UITypeEditorEditStyle GetEditStyle(System.ComponentModel.ITypeDescriptorContext context)
        {
            return UITypeEditorEditStyle.Modal;
        }
 
        public override object EditValue(ITypeDescriptorContext context, IServiceProvider provider, object value)
        {
            IWindowsFormsEditorService edSvc = (IWindowsFormsEditorService)provider.GetService(typeof(IWindowsFormsEditorService));
 
            if (edSvc != null)
            {
                Form form = new Form
                {
                    FormBorderStyle = FormBorderStyle.SizableToolWindow,
                    StartPosition = FormStartPosition.CenterParent,
                    Text = context.PropertyDescriptor.DisplayName + "--" + context.PropertyDescriptor.Description
                };
 
                PropertyGrid pg = new PropertyGrid
                {
                    Dock = DockStyle.Fill,
                    ToolbarVisible = false,
 
                    SelectedObject = value
                };
 
                form.Controls.Add(pg);
 
                form.ShowDialog();
 
                value = pg.SelectedObject;
                return value;
            }
 
            return base.EditValue(context, provider, value);
        }
    }
 
    public class PropertyObjectDropDownEditor : UITypeEditor
    {
        public override UITypeEditorEditStyle GetEditStyle(System.ComponentModel.ITypeDescriptorContext context)
        {
            return UITypeEditorEditStyle.DropDown;
        }
 
        public override object EditValue(ITypeDescriptorContext context, IServiceProvider provider, object value)
        {
            IWindowsFormsEditorService edSvc = (IWindowsFormsEditorService)provider.GetService(typeof(IWindowsFormsEditorService));
 
            if (edSvc != null)
            {
                UserControl form = new UserControl
                {
                    //form.FormBorderStyle = FormBorderStyle.SizableToolWindow;
                    //form.StartPosition = FormStartPosition.CenterParent;
                    Text = context.PropertyDescriptor.DisplayName + "--" + context.PropertyDescriptor.Description
                };
 
                PropertyGrid pg = new PropertyGrid
                {
                    Dock = DockStyle.Fill,
                    ToolbarVisible = false,
 
                    SelectedObject = value
                };
 
                form.Controls.Add(pg);
 
                //form.ShowDialog();
                edSvc.DropDownControl(form);
 
                value = pg.SelectedObject;
                return value;
            }
 
            return base.EditValue(context, provider, value);
        }
    }
 
    //public class DropDownEditor : UITypeEditor
    //{
    //    public override UITypeEditorEditStyle GetEditStyle(System.ComponentModel.ITypeDescriptorContext context)
    //    {
    //        return UITypeEditorEditStyle.DropDown;
    //    }
    //}
 
    public class SimpleCollectionEditor<T> : UITypeEditor
    {
        public override UITypeEditorEditStyle GetEditStyle(ITypeDescriptorContext context)
        {
            return UITypeEditorEditStyle.Modal;
        }
 
        public override object EditValue(ITypeDescriptorContext context, IServiceProvider provider, object value)
        {
            IWindowsFormsEditorService edSvc = (IWindowsFormsEditorService)provider.GetService(typeof(IWindowsFormsEditorService));
 
            if (edSvc != null)
            {
                Form form = new Form
                {
                    FormBorderStyle = FormBorderStyle.SizableToolWindow,
                    StartPosition = FormStartPosition.CenterParent,
                    Text = context.PropertyDescriptor.DisplayName + "--" + context.PropertyDescriptor.Description
                };
 
                TextBox tbox = new TextBox
                {
                    Dock = DockStyle.Fill,
                    Multiline = true
                };
                form.Controls.Add(tbox);
 
                if (value is List<T> tList)
                {
                    tList.ForEach(t =>
                    {
                        tbox.AppendText(t.ToString());
                        tbox.AppendText("\r\n");
                    });
                }
 
                form.ShowDialog();
                List<string> returnStrs = tbox.Text.Split(new char[] { '\r', '\n', ',' }, StringSplitOptions.RemoveEmptyEntries).ToList();
 
                switch (typeof(T).Name)
                {
                    case "Int32":
                        return returnStrs.ConvertAll<int>(u => int.Parse(u));
                    case "Int16":
                        return returnStrs.ConvertAll<short>(u => short.Parse(u));
                    case "Int64":
                        return returnStrs.ConvertAll<long>(u => long.Parse(u));
                    case "Single":
                        return returnStrs.ConvertAll<float>(u => float.Parse(u));
                    case "Double":
                        return returnStrs.ConvertAll<double>(u => double.Parse(u));
                    case "String":
                        return returnStrs;
                    case "DateTime":
                        return returnStrs.ConvertAll<DateTime>(u => DateTime.Parse(u));
                }
            }
 
            return base.EditValue(context, provider, value);
        }
    }
 
    /// <summary>
    /// 用于对象的显示
    /// </summary>
    public interface IComplexDisplay
    {
        string GetDisplayText();
    }
 
    public class ComplexCollectionEditor<T> : CollectionEditor where T : new()
    {
        protected override CollectionForm CreateCollectionForm()
        {
            var form = base.CreateCollectionForm();
 
            var prop = form.GetType().GetField("propertyBrowser", System.Reflection.BindingFlags.NonPublic | System.Reflection.BindingFlags.Instance);
 
            if (prop != null)
            {
                if (prop.GetValue(form) is PropertyGrid grid)
                {
                    grid.HelpVisible = true;
                    grid.ToolbarVisible = false;
                }
            }
 
            return form;
        }
 
        protected override object CreateInstance(Type itemType)
        {
            return base.CreateInstance(itemType);
        }
 
        //protected override object[] GetItems(object editValue)
        //{
        //    return base.GetItems(editValue);
        //}
 
        //protected override object SetItems(object editValue, object[] value)
        //{
        //    return base.SetItems(editValue, value);
        //}
 
        //public override object EditValue(ITypeDescriptorContext context, IServiceProvider provider, object value)
        //{
        //    return base.EditValue(context, provider, value);
        //}
 
        public ComplexCollectionEditor(Type type) : base(type)
        {
        }
 
        /// <summary> 
        /// 限制一次选一个实例 
        /// </summary> 
        /// <returns></returns> 
        protected override bool CanSelectMultipleInstances()
        {
            return false;
        }
 
        /// <summary> 
        /// 指定创建的对象类型 
        /// </summary> 
        /// <returns></returns> 
        protected override Type CreateCollectionItemType()
        {
            return typeof(T);
        }
 
        protected override string GetDisplayText(object value)
        {
            if (value is IComplexDisplay)
            {
                return (value as IComplexDisplay).GetDisplayText();
            }
 
            return base.GetDisplayText(value);
        }
 
        //protected override void DestroyInstance(object instance)
        //{
        //    base.DestroyInstance(instance);//重要!自动删除组件的设计时代码! 
        //}
    }
 
    public sealed class TimePickerEditor : UITypeEditor, IDisposable
    {
        IWindowsFormsEditorService editorService;
        readonly DateTimePicker picker = new DateTimePicker();
 
        public TimePickerEditor()
        {
            picker.Format = DateTimePickerFormat.Custom;
            picker.CustomFormat = "HH:mm";
            picker.ShowUpDown = true;
        }
 
        public override UITypeEditorEditStyle GetEditStyle(System.ComponentModel.ITypeDescriptorContext context)
        {
            return UITypeEditorEditStyle.DropDown;//显示下拉按钮
        }
 
        public override object EditValue(System.ComponentModel.ITypeDescriptorContext context, IServiceProvider provider, object value)
        {
            if (provider != null)
            {
                editorService = provider.GetService(typeof(IWindowsFormsEditorService)) as IWindowsFormsEditorService;
            }
            if (editorService != null)
            {
                try
                {
                    //if (value == null)
                    //{
                    //    picker.Value = DateTime.Parse("00:00" as string);
                    //}
                    //else
                    //{
                    //    picker.Value = DateTime.Parse(value.ToString());
                    //}
 
                    picker.Value = Convert.ToDateTime(value);
                }
                catch (Exception)
                {
                    picker.Value = DateTime.Now;
                }
 
                editorService.DropDownControl(picker);
            }
            return picker.Value;
        }
 
        public void Dispose()
        {
            picker.Dispose();
        }
    }
 
    public class InitialConfigCollectionEditor<T> : CollectionEditor where T : class, IInitialConfig, new()
    {
        protected override CollectionForm CreateCollectionForm()
        {
            var form = base.CreateCollectionForm();
 
            var prop = form.GetType().GetField("propertyBrowser", System.Reflection.BindingFlags.NonPublic | System.Reflection.BindingFlags.Instance);
 
            if (prop != null)
            {
                if (prop.GetValue(form) is PropertyGrid grid)
                {
                    grid.HelpVisible = true;
                    grid.ToolbarVisible = false;
                }
            }
 
            return form;
        }
 
        public override object EditValue(ITypeDescriptorContext context, IServiceProvider provider, object value)
        {
            if (value is List<IInitialConfig> list)
            {
                for (int i = 0; i < list.Count; i++)
                {
                    string driverType = list[i].DriverType;
 
                    if (!string.IsNullOrWhiteSpace(driverType))
                    {
                        IInitialConfig initial = ConfigFactory.GetInitialConfig(driverType);
                        initial.DataFrom(list[i]);
                        list[i] = initial;
                    }
                }
 
                return base.EditValue(context, provider, list);
            }
 
            return base.EditValue(context, provider, value);
        }
 
        public InitialConfigCollectionEditor(Type type) : base(type)
        {
        }
 
        /// <summary> 
        /// 限制一次选一个实例 
        /// </summary> 
        /// <returns></returns> 
        protected override bool CanSelectMultipleInstances()
        {
            return false;
        }
 
        /// <summary> 
        /// 指定创建的对象类型 
        /// </summary> 
        /// <returns></returns> 
        protected override Type CreateCollectionItemType()
        {
            return typeof(T);
        }
 
        protected override string GetDisplayText(object value)
        {
            if (value is IComplexDisplay)
            {
                return (value as IComplexDisplay).GetDisplayText();
            }
 
            return base.GetDisplayText(value);
        }
 
        protected override void DestroyInstance(object instance)
        {
            base.DestroyInstance(instance);//重要!自动删除组件的设计时代码! 
        }
    }
 
    public class DeviceTypeConverter : StringConverter
    {
        public override bool GetStandardValuesSupported(ITypeDescriptorContext context)
        {
            return true;
        }
 
        public override bool GetStandardValuesExclusive(ITypeDescriptorContext context)
        {
            return true;
        }
 
        public override StandardValuesCollection GetStandardValues(ITypeDescriptorContext context)
        {
            List<string> devices = DeviceFactory.GetAllSupportDeviceTypeNames();
            devices.Insert(0, "");
 
            return new StandardValuesCollection(devices);
        }
    }
 
    public class DeviceTypeConverter<T> : DeviceTypeConverter where T : IDevice
    {
        public override StandardValuesCollection GetStandardValues(ITypeDescriptorContext context)
        {
            List<string> devices = DeviceFactory.GetAllSupportDeviceTypeNames(typeof(T));
            devices.Insert(0, "");
 
            return new StandardValuesCollection(devices);
        }
    }
 
    public class DeviceInitialConfigEditor<T> : UITypeEditor where T : class, IInitialConfig
    {
        public override UITypeEditorEditStyle GetEditStyle(System.ComponentModel.ITypeDescriptorContext context)
        {
            return UITypeEditorEditStyle.Modal;
        }
 
        public override object EditValue(ITypeDescriptorContext context, IServiceProvider provider, object value)
        {
            IWindowsFormsEditorService edSvc = (IWindowsFormsEditorService)provider.GetService(typeof(IWindowsFormsEditorService));
 
            if (edSvc != null)
            {
                Form form = new Form
                {
                    FormBorderStyle = FormBorderStyle.SizableToolWindow,
                    StartPosition = FormStartPosition.CenterParent,
                    Text = context.PropertyDescriptor.DisplayName + "--" + context.PropertyDescriptor.Description
                };
 
                PropertyGrid pg = new PropertyGrid
                {
                    Dock = DockStyle.Fill,
                    ToolbarVisible = false
                };
 
                string driverType = (value as T).DriverType;
 
                if (!string.IsNullOrWhiteSpace(driverType))
                {
                    IInitialConfig initial = ConfigFactory.GetInitialConfig(driverType);
                    initial.DataFrom(value);
                    value = initial;
                }
 
                pg.SelectedObject = value;
 
                form.Controls.Add(pg);
 
                form.ShowDialog();
 
                value = pg.SelectedObject;
                return value;
            }
 
            return base.EditValue(context, provider, value);
        }
    }
    #endregion
 
}