EventToCommandBase.CommandParameter Property
Gets or sets a parameter to pass to the EventToCommandBase.Command. This is a dependency property.
Namespace: DevExpress.Mvvm.UI
Assembly: DevExpress.Xpf.Core.v24.1.dll
NuGet Package: DevExpress.Wpf.Core
Declaration
Property Value
Type | Description |
---|---|
Object | Specifies a parameter to pass to the EventToCommandBase.Command. |
Remarks
The EventToCommand behavior allows you to pass a parameter to a command. Specify the CommandParameter property as follows:
<ListBox x:Name="list">
<dxmvvm:Interaction.Behaviors>
<dxmvvm:EventToCommand EventName="MouseDoubleClick" Command="{Binding EditCommand}" CommandParameter="{Binding ElementName=list, Path=SelectedItem}"/>
</dxmvvm:Interaction.Behaviors>
</ListBox>
See Also