ButtonToolbarItem
Class
Represents a button in the RadToolbar control.
Definition
Namespace:Telerik.Maui.Controls
Assembly:Telerik.Maui.Controls.dll
Syntax:
C#
public class ButtonToolbarItem : LabelToolbarItem
Inheritance: objectToolbarItemLabelToolbarItemButtonToolbarItem
Derived Classes:
Inherited Members
Constructors
C#
public ButtonToolbarItem()
Fields
CommandParameterProperty
BindableProperty
Identifies the CommandParameter property.
C#
public static readonly BindableProperty CommandParameterProperty
CommandProperty
BindableProperty
Identifies the Command property.
C#
public static readonly BindableProperty CommandProperty
Properties
Gets or sets the command to execute when the button is clicked.
C#
public ICommand Command { get; set; }
Gets or sets the parameter of the command, which is executed when the button is clicked.
C#
public object CommandParameter { get; set; }
Events
Raised when the button is clicked.
C#
public event EventHandler Clicked