Table of Contents

Class AutoComplete

Namespace
HeBianGu.Base.WpfBase
Assembly
HeBianGu.Base.WpfBase.dll
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

DependencyProperty

AutoCompleteItemsSource

The collection to search for matches from.

public static readonly DependencyProperty AutoCompleteItemsSource

Field Value

DependencyProperty

AutoCompleteStringComparison

Whether or not to ignore case when searching for matches.

public static readonly DependencyProperty AutoCompleteStringComparison

Field Value

DependencyProperty

Methods

GetAutoCompleteIndicator(DependencyObject)

public static string GetAutoCompleteIndicator(DependencyObject obj)

Parameters

obj DependencyObject

Returns

string

GetAutoCompleteItemsSource(DependencyObject)

public static IEnumerable<string> GetAutoCompleteItemsSource(DependencyObject obj)

Parameters

obj DependencyObject

Returns

IEnumerable<string>

GetAutoCompleteStringComparison(DependencyObject)

public static StringComparison GetAutoCompleteStringComparison(DependencyObject obj)

Parameters

obj DependencyObject

Returns

StringComparison

SetAutoCompleteIndicator(DependencyObject, string)

public static void SetAutoCompleteIndicator(DependencyObject obj, string value)

Parameters

obj DependencyObject
value string

SetAutoCompleteItemsSource(DependencyObject, IEnumerable<string>)

public static void SetAutoCompleteItemsSource(DependencyObject obj, IEnumerable<string> value)

Parameters

obj DependencyObject
value IEnumerable<string>

SetAutoCompleteStringComparison(DependencyObject, StringComparison)

public static void SetAutoCompleteStringComparison(DependencyObject obj, StringComparison value)

Parameters

obj DependencyObject
value StringComparison