Styling Options
RadAutoCompleteView control provides the following Style properties for customizing its look:
- Font Options(FontAttributes, FontFamily, FontSize): Define the font options to the text of the RadAutoCompleteView.
- TextColor: Defines the textcolor of the component.
- SuggestionItemTextColor: Defines the highlightcolor of the selection items.
Here is an example how to use the SuggestionItemTextColor property:
First, create the needed business objects, for example type Client with the following properties:
Then create a ViewModel with a collection of Client objects:
Where the telerikInput namespace is the following:
Finally, use the following snippet to declare a RadAutoCompleteView in XAML with SuggestionItemTextColor property:
Highlight Customization
In case a custom template is used, the user can achieve text highlighting inside the RadAutoCompleteView.SuggestionItemTemplate using SuggestionItemLabel and the following namespace:
The AutoCompleteView SuggestionItemLabel exposes the following properties:
- HighlightTextColor
- HighlightText
- UnformattedText
Example
First, create the needed business objects, for example type Client with the following properties:
Then create a ViewModel with a collection of Client objects:
Where the telerikInput namespace is the following:
and the autoCompleteView namespace is the following:
Finally, use the following snippet to declare a RadAutoCompleteView in XAML with SuggestionItemLabel property:
Here is the result:
A sample HighlightText example can be found on the AutoCompleteView/Features folder of the SDK Samples Browser application.