Back to Devexpress

ContextButtonBase.Command Property

windowsforms-devexpress-dot-utils-dot-contextbuttonbase-94506dbe.md

latest2.6 KB
Original Source

ContextButtonBase.Command Property

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

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

CommandParameter

CommandChanged

ContextButtonBase Class

ContextButtonBase Members

DevExpress.Utils Namespace