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.v24.1.dll
NuGet Package: DevExpress.Wpf.Core
Declaration
Property Value
Type | Default | Description |
---|---|---|
Nullable<Boolean> | false |
|
Remarks
The EventToCommand behavior allows you to pass event arguments to a command. Set the PassEventArgsToCommand
property to true
:
<ListBox>
<dxmvvm:Interaction.Behaviors>
<dxmvvm:EventToCommand EventName="MouseDoubleClick"
Command="{Binding EditCommand}"
PassEventArgsToCommand="True"/>
</dxmvvm:Interaction.Behaviors>
</ListBox>
public class MainViewModel : ViewModelBase {
[Command]
public void Edit(MouseButtonEventArgs parameter) {
// ...
}
}
You can also use the EventArgsConverter if you need to maintain a clean MVVM pattern.
Related GitHub Examples
The following code snippets (auto-collected from DevExpress Examples) contain references to the PassEventArgsToCommand property.
Note
The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.