maui-devexpress-dot-maui-dot-editors-dot-editbase-f33bd80b.md
Gets or sets the command executed when a user taps the leading icon. This is a bindable property.
Namespace : DevExpress.Maui.Editors
Assembly : DevExpress.Maui.Editors.dll
NuGet Package : DevExpress.Maui.Editors
public ICommand StartIconCommand { get; set; }
| Type | Description |
|---|---|
| ICommand |
The command that exposes the ICommand interface.
|
Use the StartIconCommand property to set the action that occurs when a user taps the start icon. The StartIconCommandParameter property allows you to pass data to StartIconCommand.
You can also use the StartIconClicked event to define the action on start icon tap.
This example shows how to create a custom command with a parameter and execute it when a user taps the start icon.
In a view model, create a command that implements the ICommand interface:
Bind the specified command to the StartIconCommand property and define the StartIconCommandParameter value:
See Also