C# Класс System.Windows.Controls.AutoCompleteSearch

A predefined set of filter functions for the known, built-in AutoCompleteFilterMode enumeration values.
Показать файл Открыть проект

Открытые методы

Метод Описание
Contains ( string text, string value ) : bool

Check if the prefix is contained in the string value. The current culture's case insensitive string comparison operator is used.

ContainsCaseSensitive ( string text, string value ) : bool

Check if the prefix is contained in the string value.

ContainsOrdinal ( string text, string value ) : bool

Check if the prefix is contained in the string value.

ContainsOrdinalCaseSensitive ( string text, string value ) : bool

Check if the prefix is contained in the string value.

Equals ( string text, string value ) : bool

Check if the string values are equal.

EqualsCaseSensitive ( string text, string value ) : bool

Check if the string values are equal.

EqualsOrdinal ( string text, string value ) : bool

Check if the string values are equal.

EqualsOrdinalCaseSensitive ( string text, string value ) : bool

Check if the string values are equal.

GetFilter ( AutoCompleteFilterMode FilterMode ) : AutoCompleteFilterPredicate

Index function that retrieves the filter for the provided AutoCompleteFilterMode.

StartsWith ( string text, string value ) : bool

Check if the string value begins with the text.

StartsWithCaseSensitive ( string text, string value ) : bool

Check if the string value begins with the text.

StartsWithOrdinal ( string text, string value ) : bool

Check if the string value begins with the text.

StartsWithOrdinalCaseSensitive ( string text, string value ) : bool

Check if the string value begins with the text.

Описание методов

Contains() публичный статический Метод

Check if the prefix is contained in the string value. The current culture's case insensitive string comparison operator is used.
public static Contains ( string text, string value ) : bool
text string The AutoCompleteBox prefix text.
value string The item's string value.
Результат bool

ContainsCaseSensitive() публичный статический Метод

Check if the prefix is contained in the string value.
public static ContainsCaseSensitive ( string text, string value ) : bool
text string The AutoCompleteBox prefix text.
value string The item's string value.
Результат bool

ContainsOrdinal() публичный статический Метод

Check if the prefix is contained in the string value.
public static ContainsOrdinal ( string text, string value ) : bool
text string The AutoCompleteBox prefix text.
value string The item's string value.
Результат bool

ContainsOrdinalCaseSensitive() публичный статический Метод

Check if the prefix is contained in the string value.
public static ContainsOrdinalCaseSensitive ( string text, string value ) : bool
text string The AutoCompleteBox prefix text.
value string The item's string value.
Результат bool

Equals() публичный статический Метод

Check if the string values are equal.
public static Equals ( string text, string value ) : bool
text string The AutoCompleteBox prefix text.
value string The item's string value.
Результат bool

EqualsCaseSensitive() публичный статический Метод

Check if the string values are equal.
public static EqualsCaseSensitive ( string text, string value ) : bool
text string The AutoCompleteBox prefix text.
value string The item's string value.
Результат bool

EqualsOrdinal() публичный статический Метод

Check if the string values are equal.
public static EqualsOrdinal ( string text, string value ) : bool
text string The AutoCompleteBox prefix text.
value string The item's string value.
Результат bool

EqualsOrdinalCaseSensitive() публичный статический Метод

Check if the string values are equal.
public static EqualsOrdinalCaseSensitive ( string text, string value ) : bool
text string The AutoCompleteBox prefix text.
value string The item's string value.
Результат bool

GetFilter() публичный статический Метод

Index function that retrieves the filter for the provided AutoCompleteFilterMode.
public static GetFilter ( AutoCompleteFilterMode FilterMode ) : AutoCompleteFilterPredicate
FilterMode AutoCompleteFilterMode The built-in search mode.
Результат AutoCompleteFilterPredicate

StartsWith() публичный статический Метод

Check if the string value begins with the text.
public static StartsWith ( string text, string value ) : bool
text string The AutoCompleteBox prefix text.
value string The item's string value.
Результат bool

StartsWithCaseSensitive() публичный статический Метод

Check if the string value begins with the text.
public static StartsWithCaseSensitive ( string text, string value ) : bool
text string The AutoCompleteBox prefix text.
value string The item's string value.
Результат bool

StartsWithOrdinal() публичный статический Метод

Check if the string value begins with the text.
public static StartsWithOrdinal ( string text, string value ) : bool
text string The AutoCompleteBox prefix text.
value string The item's string value.
Результат bool

StartsWithOrdinalCaseSensitive() публичный статический Метод

Check if the string value begins with the text.
public static StartsWithOrdinalCaseSensitive ( string text, string value ) : bool
text string The AutoCompleteBox prefix text.
value string The item's string value.
Результат bool