Methods
RadAutoCompleteView exposes the ability to explicitly show/hide the popup containing all items through the following methods:
- ShowSuggesstions: Shows all items when the control recieves focus.
- HideSuggestions: Hide all items when the focus of the control is lost.
Example
The example below uses ShowSuggesstions method to display all items as soon as the AutoCompleteView receives the focus.
First, create the needed business objects, for example type Client with the following properties:
Then create a ViewModel with a collection of Client objects:
Declare the RadAutoCompleteView in XAML:
Use the following code to attach the focused event to the control:
and call the ShowSuggestions method inside the event:
Here is the result: