Class AutoComplete
public static class AutoComplete
- Inheritance
-
AutoComplete
- Inherited Members
Fields
AutoCompleteIndicator
What string should indicate that we should start giving auto-completion suggestions. For example: @ If this is null or empty, auto-completion suggestions will begin at the beginning of the textbox's text.
public static readonly DependencyProperty AutoCompleteIndicator
Field Value
AutoCompleteItemsSource
The collection to search for matches from.
public static readonly DependencyProperty AutoCompleteItemsSource
Field Value
AutoCompleteStringComparison
Whether or not to ignore case when searching for matches.
public static readonly DependencyProperty AutoCompleteStringComparison
Field Value
Methods
GetAutoCompleteIndicator(DependencyObject)
public static string GetAutoCompleteIndicator(DependencyObject obj)
Parameters
obj
DependencyObject
Returns
GetAutoCompleteItemsSource(DependencyObject)
public static IEnumerable<string> GetAutoCompleteItemsSource(DependencyObject obj)
Parameters
obj
DependencyObject
Returns
GetAutoCompleteStringComparison(DependencyObject)
public static StringComparison GetAutoCompleteStringComparison(DependencyObject obj)
Parameters
obj
DependencyObject
Returns
SetAutoCompleteIndicator(DependencyObject, string)
public static void SetAutoCompleteIndicator(DependencyObject obj, string value)
Parameters
obj
DependencyObjectvalue
string
SetAutoCompleteItemsSource(DependencyObject, IEnumerable<string>)
public static void SetAutoCompleteItemsSource(DependencyObject obj, IEnumerable<string> value)
Parameters
obj
DependencyObjectvalue
IEnumerable<string>
SetAutoCompleteStringComparison(DependencyObject, StringComparison)
public static void SetAutoCompleteStringComparison(DependencyObject obj, StringComparison value)
Parameters
obj
DependencyObjectvalue
StringComparison