Skip to main content
Bar

BarItem.KeyGesture Property

Gets or sets a keyboard combination that can be used to invoke the current bar item’s functionality. This is a dependency property.

Namespace: DevExpress.Xpf.Bars

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

NuGet Package: DevExpress.Wpf.Core

Declaration

public KeyGesture KeyGesture { get; set; }

Property Value

Type Description
KeyGesture

A KeyGesture object.

Remarks

When a key combination defined by the KeyGesture property is invoked, the item’s functionality is invoked as follows:

Example

This example shows how to specify a command and custom short cut for a bar item. A command and short cut are assigned to the item via the Command and KeyGesture properties, respectively. In the example, a bar is docked to the BarContainerControl which is created manually.

<dxb:BarManager.Items>                
    <dxb:BarButtonItem Name="btnCut" 
                       Command="ApplicationCommands.Cut" 
                       KeyGesture="CTRL+1" 
                       CommandTarget="{Binding ElementName=textBox}" 
                       Content="{Binding Command.Text, RelativeSource={RelativeSource Self}}"/>
</dxb:BarManager.Items>

The following code snippet (auto-collected from DevExpress Examples) contains a reference to the KeyGesture 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.

See Also