1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- using System;
- using System.ComponentModel;
- using System.ComponentModel.Design.Serialization;
- using System.Globalization;
- using System.Reflection;
- namespace LYFZ.ComponentLibrary.ChatListControl
- {
- public class ChatListItemConverter : ExpandableObjectConverter
- {
- public override bool CanConvertTo(ITypeDescriptorContext context, Type destinationType)
- {
- return destinationType == typeof(InstanceDescriptor) || base.CanConvertTo(context, destinationType);
- }
- public override object ConvertTo(ITypeDescriptorContext context, CultureInfo culture, object value, Type destinationType)
- {
- if (destinationType == null)
- {
- throw new ArgumentNullException("DestinationType cannot be null");
- }
- if (destinationType == typeof(InstanceDescriptor) && value is ChatListItem)
- {
- ConstructorInfo constructor = null;
- ChatListItem item = (ChatListItem)value;
- ChatListSubItem[] subItems = null;
- if (item.SubItems.Count > 0)
- {
- subItems = new ChatListSubItem[item.SubItems.Count];
- item.SubItems.CopyTo(subItems, 0);
- }
- if (item.Text != null && subItems != null)
- {
- constructor = typeof(ChatListItem).GetConstructor(new Type[]
- {
- typeof(string),
- typeof(ChatListSubItem[])
- });
- }
- if (constructor != null)
- {
- return new InstanceDescriptor(constructor, new object[]
- {
- item.Text,
- subItems
- }, false);
- }
- if (subItems != null)
- {
- constructor = typeof(ChatListItem).GetConstructor(new Type[]
- {
- typeof(ChatListSubItem[])
- });
- }
- if (constructor != null)
- {
- return new InstanceDescriptor(constructor, new object[]
- {
- subItems
- }, false);
- }
- if (item.Text != null)
- {
- constructor = typeof(ChatListItem).GetConstructor(new Type[]
- {
- typeof(string),
- typeof(bool)
- });
- }
- if (constructor != null)
- {
- return new InstanceDescriptor(constructor, new object[]
- {
- item.Text,
- item.IsOpen
- });
- }
- }
- return base.ConvertTo(context, culture, value, destinationType);
- }
- }
- }
|