BindingList<T>.FindCore(PropertyDescriptor, Object) Metoda

Definicja

Wyszukuje indeks elementu, który ma określony deskryptor właściwości z określoną wartością, jeśli wyszukiwanie jest implementowane w klasie pochodnej; w przeciwnym razie wartość NotSupportedException.

protected:
 virtual int FindCore(System::ComponentModel::PropertyDescriptor ^ prop, System::Object ^ key);
protected virtual int FindCore (System.ComponentModel.PropertyDescriptor prop, object key);
abstract member FindCore : System.ComponentModel.PropertyDescriptor * obj -> int
override this.FindCore : System.ComponentModel.PropertyDescriptor * obj -> int
Protected Overridable Function FindCore (prop As PropertyDescriptor, key As Object) As Integer

Parametry

prop
PropertyDescriptor

Element do wyszukania PropertyDescriptor .

key
Object

Wartość do prop dopasowania.

Zwraca

Indeks zerowy elementu, który pasuje do deskryptora właściwości i zawiera określoną wartość.

Wyjątki

FindCore(PropertyDescriptor, Object) nie jest zastępowany w klasie pochodnej.

Przykłady

W poniższym przykładzie kodu pokazano, jak używać FindCore elementu członkowskiego.

    public class MyFontList : BindingList<Font>
    {

        protected override bool SupportsSearchingCore
        {
            get { return true; }
        }
        protected override int FindCore(PropertyDescriptor prop, object key)
        {
            // Ignore the prop value and search by family name.
            for (int i = 0; i < Count; ++i)
            {
                if (Items[i].FontFamily.Name.ToLower() == ((string)key).ToLower())
                    return i;
            }
            return -1;
        }
    }
}
Public Class MyFontList
    Inherits BindingList(Of Font)

    Protected Overrides ReadOnly Property SupportsSearchingCore() As Boolean
        Get
            Return True
        End Get
    End Property
    
    Protected Overrides Function FindCore(ByVal prop As PropertyDescriptor, _
        ByVal key As Object) As Integer
        ' Ignore the prop value and search by family name.
        Dim i As Integer
        While i < Count
            If Items(i).FontFamily.Name.ToLower() = CStr(key).ToLower() Then
                Return i
            End If
            i += 1
        End While

        Return -1
    End Function
End Class

Uwagi

Klasa BindingList<T> nie zapewnia podstawowej implementacji wyszukiwania, dlatego FindCore zawsze zgłasza wartość NotSupportedException domyślnie. Aby włączyć wyszukiwanie, należy uzyskać i BindingList<T> wykonać następujące zadania:

Dotyczy