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

RepositoryItemBaseSpinEdit.ShowDropDown Property

Gets or sets whether the popup window can be opened by clicking the edit box and whether a single or double click is required.

Namespace: DevExpress.XtraEditors.Repository

Assembly: DevExpress.XtraEditors.v24.2.dll

NuGet Package: DevExpress.Win.Navigation

#Declaration

[Browsable(false)]
[EditorBrowsable(EditorBrowsableState.Never)]
public override ShowDropDown ShowDropDown { get; set; }

#Property Value

Type Description
ShowDropDown

A value that specifies whether the RepositoryItemBaseSpinEdit‘s pop-up window can be invoked by clicking the edit box.

Available values:

Name Description
Never

Clicking within the text region does not activate the popup window. A popup window appears only when pressing the RepositoryItemPopupBase.CloseUpKey key or Alt + DownArrow key, or calling the editor’s PopupBaseEdit.ShowPopup method.

SingleClick

A popup window is activated when a user clicks within the text region of a control.

DoubleClick

A popup window is activated when a user double-clicks within the text region of a control.

Note: the value is in effect when the RepositoryItemButtonEdit.TextEditStyle property is set to TextEditStyles.Standard as well.

See Also