windowsforms-devexpress-dot-xtraeditors-321c39e7.md
Contains values that specify whether and how a dropdown arrow is displayed within the DropDownButton control.
Namespace : DevExpress.XtraEditors
Assembly : DevExpress.XtraEditors.v25.2.dll
NuGet Package : DevExpress.Win.Navigation
public enum DropDownArrowStyle
Public Enum DropDownArrowStyle
| Name | Description |
|---|---|
Default |
Identical to the DropDownArrowStyle.SplitButton option.
|
| SplitButton |
The dropdown arrow is displayed as a separate button.
A dropdown control is invoked on clicking the dropdown arrow button unless the DropDownButton.ActAsDropDown is set to false.
|
| Hide |
The dropdown arrow is hidden.
A dropdown control is invoked on clicking the button unless the DropDownButton.ActAsDropDown is set to false.
|
| Show |
The dropdown arrow is merged into the button.
A dropdown control is invoked on clicking the button unless the DropDownButton.ActAsDropDown is set to false.
|
The following properties accept/return DropDownArrowStyle values:
Use the DropDownButton.DropDownArrowStyle property to specify whether and how a dropdown arrow is displayed within the DropDownButton control.
See Also