EventToCommand.PassEventArgsToCommand Property
Gets or sets whether the event arguments are passed to the command. This is a dependency property.
Namespace: DevExpress.Mvvm.UI
Assembly: DevExpress.Xpf.Core.v22.1.dll
Declaration
Property Value
Type | Description |
---|---|
Nullable<Boolean> | true to pass the event arguments to the command; otherwise, false. The default is false. |
Remarks
The EventToCommand behavior allows you to pass event arguments to a command. Set the PassEventArgsToCommand property to true:
<ListBox x:Name="list">
<dxmvvm:Interaction.Behaviors>
<dxmvvm:EventToCommand EventName="MouseDoubleClick" Command="{Binding EditCommand}" PassEventArgsToCommand="True"/>
</dxmvvm:Interaction.Behaviors>
</ListBox>
You can also use the EventArgsConverter if you need to maintain a clean MVVM pattern.
See Also