C# 클래스 System.Windows.Controls.AutoCompleteSearch

A predefined set of filter functions for the known, built-in AutoCompleteFilterMode enumeration values.
파일 보기 프로젝트 열기: Warewolf-ESB/Warewolf

공개 메소드들

메소드 설명
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