Commands View
The Commands View displays a set of predefined commands, which the user can browse and execute. The commands are passed to the component through the Commands
property, which expects a collection of AIPromptCommandBase
objects.
The Commands View is represented by the AIPromptCommandView
class and provides the following properties:
-
Commands
(IList<AIPromptCommandBase>
)—Defines a list of AIPrompt commands. -
CommandTappedCommand
(ICommand
)—Defines a command that is executed an AIPrompt command is pressed.
For more details on how you can define a
AIPromptCommand
, go to the Commands topic.
Here is an example of a simple AIPromptCommandView
:
and the referenced ViewModel
class: