Back to Devexpress

BarButtonItem.Command Property

windowsforms-devexpress-dot-xtrabars-dot-barbuttonitem-67fb94a0.md

latest2.4 KB
Original Source

BarButtonItem.Command Property

Gets or sets the ICommand whose Execute(Object) method will be called when the Click event is invoked.

Namespace : DevExpress.XtraBars

Assembly : DevExpress.XtraBars.v25.2.dll

NuGet Package : DevExpress.Win.Navigation

Declaration

csharp
[Bindable(true)]
[Browsable(false)]
[DXCategory("Action")]
public object Command { get; set; }
vb
<Bindable(True)>
<Browsable(False)>
<DXCategory("Action")>
Public Property Command As Object

Property Value

TypeDescription
Object

The command.

|

Remarks

csharp
// Creates a simple command that displays a message.
DelegateCommand command = new DelegateCommand(() => {
    XtraMessageBox.Show("Hello World!");
});
// Binds the Command property of a button.
commandButton.Command = command;
vb
' This is a simple command that displays a message.
Dim command As DelegateCommand = New DelegateCommand(Sub()
    XtraMessageBox.Show("Hello! I'm running!")
End Sub)
' Binds the Command property of a button.
commandButton.Command = command

Run Demo: Simple Command Run Demo: Parameterized Command

Read the following topics for additional information:

See Also

BarButtonItem Class

BarButtonItem Members

DevExpress.XtraBars Namespace