Back to Devexpress

EventToCommand.ModifierKeys Property

wpf-devexpress-dot-mvvm-dot-ui-dot-eventtocommand-55eb992d.md

latest1.7 KB
Original Source

EventToCommand.ModifierKeys Property

Gets or sets modifier keys that need to be pressed to call the command. This is a dependency property.

Namespace : DevExpress.Mvvm.UI

Assembly : DevExpress.Xpf.Core.v25.2.dll

NuGet Package : DevExpress.Wpf.Core

Declaration

csharp
public ModifierKeys? ModifierKeys { get; set; }
vb
Public Property ModifierKeys As ModifierKeys?

Property Value

TypeDescription
Nullable<ModifierKeys>

A ModifierKeys enumeration value that specifies the set of modifier keys.

|

Remarks

In the code sample below, the bound EditCommand is invoked when a user clicks a ListBoxItem and presses the Ctrl and Alt keys.

xaml
<ListBox ItemsSource="{Binding Persons}">
    <dxmvvm:Interaction.Behaviors>
        <dxmvvm:EventToCommand EventName="MouseLeftButtonUp" Command="{Binding EditCommand}" 
            EventArgsConverter="{dxmvvm:ItemsControlMouseEventArgsConverter}" ModifierKeys="Ctrl+Alt"/>
    </dxmvvm:Interaction.Behaviors>
</ListBox>

See Also

EventToCommand Class

EventToCommand Members

DevExpress.Mvvm.UI Namespace