windowsforms-devexpress-dot-xtraeditors-dot-repository-dot-repositoryitempopupbase-1ccc0d75.md
Gets or sets the key combination used to open and close the pop-up window.
Namespace : DevExpress.XtraEditors.Repository
Assembly : DevExpress.XtraEditors.v25.2.dll
NuGet Package : DevExpress.Win.Navigation
[DXCategory("Behavior")]
public virtual KeyShortcut CloseUpKey { get; set; }
<DXCategory("Behavior")>
Public Overridable Property CloseUpKey As KeyShortcut
| Type | Description |
|---|---|
| KeyShortcut |
A KeyShortcut object specifying the key combination used to open and close the popup window.
|
When the editor is focused, users can press F4 to open or close the pop-up window. The CloseUpKey property allows you to customize the shortcut: you can select a predefined key combination, provide a custom shortcut, or disable the shortcut.
Tip
When you specify a custom shortcut, press the key combination on the keyboard.
The QueryPopUp and QueryCloseUp events fire before the pop-up window is opened or closed and allow you to prevent the action.
Note
Users can also press Alt+Down to show the pop-up window regardless of the CloseUpKey property value.
The following example assigns the Ctrl+Enter shortcut to the RepositoryItemPopupBase.CloseUpKey property. This allows the end-user to press this key combination in order to open and close the dropdown window while accepting the selected value.
popupContainerEdit1.Properties.CloseUpKey = new KeyShortcut(Keys.Control | Keys.Enter);
PopupContainerEdit1.Properties.CloseUpKey = New KeyShortcut(Keys.Control Or Keys.Enter)
See Also