[]
The auto-complete control is an editable input control that shows completion suggestions automatically while the user is typing. The list of suggestions is displayed in a drop down menu.
public class C1AutoComplete<T> : C1ComboBox<T>, IComponent, IHandleAfterRender, IHandleEvent, IDisposable, IDependencyObject
| Name | Description |
|---|---|
| T |
| Name | Description |
|---|---|
| C1AutoComplete() | Initializes a new instance of the C1AutoComplete<T> class. |
| Name | Description |
|---|---|
| AutoCompleteModeProperty | Identifies the AutoCompleteMode dependency property. |
| HighlightStyleProperty | Identifies the HighlightStyle dependency property. |
| MinLengthProperty | Identifies the MinLength dependency property. |
| Name | Description |
|---|---|
| AutoCompleteMode | Gets or sets the mode that the DropDown uses to display the DropDownView. |
| FilterString | Gets the filter string used to show auto-complete suggestions. |
| Filtering | Event raised when the control is about to apply a filter to the list of items. |
| HighlightStyle | Gets or sets the matched text highlight style. |
| MinLength | Gets or sets the minimum input length to trigger auto-complete suggestions. |
| Name | Description |
|---|---|
| Dispose(bool) | |
| OnAfterRender(bool) | |
| OnFiltering(AutoCompleteFilteringEventArgs) | Handle Filtering event. |
| OnIsDropDownOpenChanged() | Called when IsDropDownOpen changed. |