windowsforms-devexpress-dot-xtrabars-dot-navigation-dot-navigationbaritem-2a4cf2c5.md
Gets or sets the ICommand whose Execute(Object) method will be called when the Click event is invoked.
Namespace : DevExpress.XtraBars.Navigation
Assembly : DevExpress.XtraBars.v25.2.dll
NuGet Package : DevExpress.Win.Navigation
[Bindable(true)]
[Browsable(false)]
[DXCategory("Action")]
public object Command { get; set; }
<Bindable(True)>
<Browsable(False)>
<DXCategory("Action")>
Public Property Command As Object
| Type | Description |
|---|---|
| Object |
The command.
|
// 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;
' 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