|
|
От: | maximoff | |
| Дата: | 27.02.07 06:04 | ||
| Оценка: | +1 | ||
Сама сущность и её конвертор
... public override PropertyDescriptorCollection GetProperties(ITypeDescriptorContext context, object value, Attribute[] attributes) { PropertyDescriptorCollection collection; string[] props = new string[]{"Color", "Width"}; collection = TypeDescriptor.GetProperties(typeof(Line), attributes); return collection.Sort(array); } ...
...
public override PropertyDescriptorCollection GetProperties(ITypeDescriptorContext context, object value, Attribute[] attributes)
{
PropertyDescriptorCollection collection;
string[] props = new string[]{"Color", "Width"};
collection = TypeDescriptor.GetProperties(typeof(Line), attributes);
return collection.Sort(props);
}
...