6 instantiations of 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)) :
5 references to DataColumnPropertyDescriptor
System.Data (5)
fx\src\data\System\Data\DataColumnPropertyDescriptor.cs (3)
62if (other is DataColumnPropertyDescriptor) { 63DataColumnPropertyDescriptor descriptor = (DataColumnPropertyDescriptor) other;
fx\src\data\System\Data\DataView.cs (2)
1191DataColumnPropertyDescriptor columnProperty = new DataColumnPropertyDescriptor(index.IndexFields[i].Column); 1654DataColumnPropertyDescriptor NullProp = null;