5 implementations of Find
System (1)
compmod\system\componentmodel\BindingList.cs (1)
519
int IBindingList.
Find
(PropertyDescriptor prop, object key) {
System.Data (2)
fx\src\data\System\Data\DataView.cs (1)
1085
int IBindingList.
Find
(PropertyDescriptor property, object key) { // NOTE: this function had keepIndex previosely
fx\src\data\System\Data\DataViewManager.cs (1)
282
int IBindingList.
Find
(PropertyDescriptor property, object key) {
System.Data.Entity (1)
System\Data\Objects\ObjectView.cs (1)
246
int IBindingList.
Find
(PropertyDescriptor property, object key)
System.Windows.Forms (1)
winforms\Managed\System\WinForms\BindingSource.cs (1)
1977
public virtual int
Find
(PropertyDescriptor prop, object key) {
4 references to Find
System.Windows.Forms (4)
winforms\Managed\System\WinForms\BindingSource.cs (2)
804
return (this as IBindingList).
Find
(pd, key);
1979
return ((IBindingList) List).
Find
(prop, key);
winforms\Managed\System\WinForms\CurrencyManager.cs (1)
536
return ((IBindingList)list).
Find
(property, key);
winforms\Managed\System\WinForms\DataGridViewComboBoxCell.cs (1)
1673
int index = ((IBindingList)this.DataManager.List).
Find
(property, key);