windowsforms-devexpress-dot-utils-dot-contextbuttonbase-94506dbe.md
Gets or sets the ICommand whose Execute(Object) method will be called when the Click event is invoked.
Namespace : DevExpress.Utils
Assembly : DevExpress.Utils.v25.2.dll
NuGet Packages : DevExpress.Utils, DevExpress.Wpf.Core
[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