6 references to DataColumnPropertyDescriptor
System.Data (6)
fx\src\data\System\Data\DataTable.cs (1)
4400props[i] = new DataColumnPropertyDescriptor(Columns[i]);
fx\src\data\System\Data\DataView.cs (5)
1025return new DataColumnPropertyDescriptor(index.IndexFields[0].Column); 1191DataColumnPropertyDescriptor columnProperty = new DataColumnPropertyDescriptor(index.IndexFields[i].Column); 1429ListChangedEventArgs newEventArg = new ListChangedEventArgs(e.ListChangedType, e.NewIndex, new DataColumnPropertyDescriptor(col)); 1656e.Action == CollectionChangeAction.Add ? new ListChangedEventArgs(ListChangedType.PropertyDescriptorAdded, new DataColumnPropertyDescriptor((System.Data.DataColumn)e.Element)) : 1658e.Action == CollectionChangeAction.Remove ? new ListChangedEventArgs(ListChangedType.PropertyDescriptorDeleted, new DataColumnPropertyDescriptor((System.Data.DataColumn)e.Element)) :