Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

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.v24.2.dll

NuGet Package: DevExpress.Wpf.Core

#Declaration

public ModifierKeys? ModifierKeys { get; set; }

#Property Value

Type Description
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.

<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