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

DropDownButton.ShowArrowButton Property

OBSOLETE

Use the DropDownArrowStyle property instead

Gets or sets whether the drop-down arrow is displayed as a part of the DropDownButton control.

Namespace: DevExpress.XtraEditors

Assembly: DevExpress.XtraEditors.v24.2.dll

NuGet Package: DevExpress.Win.Navigation

#Declaration

[Browsable(false)]
[DXCategory("Behavior")]
[EditorBrowsable(EditorBrowsableState.Never)]
[Obsolete("Use the DropDownArrowStyle property instead")]
public bool ShowArrowButton { get; set; }

#Property Value

Type Description
Boolean

true if the drop-down arrow is visible; otherwise,false.

#Remarks

Clicking the drop-down arrow opens the popup control associated with the current control. If the ShowArrowButton property is set to false, the drop-down arrow is hidden. In this mode, the availability of the dropdown control is controlled by the DropDownButton.ActAsDropDown property.

To open the dropdown control in code, use the DropDownButton.ShowDropDown method.

See Also