Suggestions
The RadAIPrompt
control allows you to define suggestions for the user prior to initiating a request. To do so, set the AreSuggestionsVisible
property to True of RadAIPrompt and add entries of the type of string to its Suggestions
collection. The Suggestions property expects a collection that implements the IEnumerable
interface.
Showing Suggestions in the RadAIPrompt
Customizing the Appearance of the Suggestions
RadAIPrompt control exposes properties that will allow you to customize the appearance of each suggestion. They are as follows:
-
SuggestionItemTemplate
—Allows you to set a custom DataTemplate that will be applied to each suggestion. -
SuggestionHeaderContent
—Provides the functionality to specify a header for the element that displays the suggestions. -
SuggestionHeaderContentTemplate
—Allows you to specify a custom DataTemplate for the header of the element that visualizes the suggestions. -
SuggestionsExpanderStyle
—This property lets you set a custom Style for the RadExpander element that displays the suggestions.
The following example showscases the RadAIPrompt when the above properties are used: