.NET MAUI Button Command
The Telerik .NET MAUI Button allows you to attach a command that executes when the button is clicked.
-
Command
(ICommand
)—Defines the command which executes when the button is clicked. -
CommandParameter
(object
)—Specifies the parameter of the command which executes when the button is clicked.
Using the Command
The following example demonstrates how to use the Command
.
1. Define the Button in XAML:
2. Add the telerik
namespace:
3. Execute the Command
:
This is the result on WinUI:
For a runnable example demonstrating the Button Command, see the SDKBrowser Demo Application and go to the Button > Features category.