ChatListItemConverter.cs 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. using System;
  2. using System.ComponentModel;
  3. using System.ComponentModel.Design.Serialization;
  4. using System.Globalization;
  5. using System.Reflection;
  6. namespace LYFZ.ComponentLibrary.ChatListControl
  7. {
  8. public class ChatListItemConverter : ExpandableObjectConverter
  9. {
  10. public override bool CanConvertTo(ITypeDescriptorContext context, Type destinationType)
  11. {
  12. return destinationType == typeof(InstanceDescriptor) || base.CanConvertTo(context, destinationType);
  13. }
  14. public override object ConvertTo(ITypeDescriptorContext context, CultureInfo culture, object value, Type destinationType)
  15. {
  16. if (destinationType == null)
  17. {
  18. throw new ArgumentNullException("DestinationType cannot be null");
  19. }
  20. if (destinationType == typeof(InstanceDescriptor) && value is ChatListItem)
  21. {
  22. ConstructorInfo constructor = null;
  23. ChatListItem item = (ChatListItem)value;
  24. ChatListSubItem[] subItems = null;
  25. if (item.SubItems.Count > 0)
  26. {
  27. subItems = new ChatListSubItem[item.SubItems.Count];
  28. item.SubItems.CopyTo(subItems, 0);
  29. }
  30. if (item.Text != null && subItems != null)
  31. {
  32. constructor = typeof(ChatListItem).GetConstructor(new Type[]
  33. {
  34. typeof(string),
  35. typeof(ChatListSubItem[])
  36. });
  37. }
  38. if (constructor != null)
  39. {
  40. return new InstanceDescriptor(constructor, new object[]
  41. {
  42. item.Text,
  43. subItems
  44. }, false);
  45. }
  46. if (subItems != null)
  47. {
  48. constructor = typeof(ChatListItem).GetConstructor(new Type[]
  49. {
  50. typeof(ChatListSubItem[])
  51. });
  52. }
  53. if (constructor != null)
  54. {
  55. return new InstanceDescriptor(constructor, new object[]
  56. {
  57. subItems
  58. }, false);
  59. }
  60. if (item.Text != null)
  61. {
  62. constructor = typeof(ChatListItem).GetConstructor(new Type[]
  63. {
  64. typeof(string),
  65. typeof(bool)
  66. });
  67. }
  68. if (constructor != null)
  69. {
  70. return new InstanceDescriptor(constructor, new object[]
  71. {
  72. item.Text,
  73. item.IsOpen
  74. });
  75. }
  76. }
  77. return base.ConvertTo(context, culture, value, destinationType);
  78. }
  79. }
  80. }