Skip to main content
Bar

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

BarButtonItemLink.DropDownKeyTip Property

If the button acts as a dropdown, this property gets or sets the Key Tip used to activate the dropdown.

Namespace: DevExpress.XtraBars

Assembly: DevExpress.XtraBars.v24.2.dll

NuGet Package: DevExpress.Win.Navigation

#Declaration

[XtraSerializableProperty]
public string DropDownKeyTip { get; set; }

#Property Value

Type Description
String

A string that specifies the Key Tip used to activate the button’s dropdown, if any.

#Remarks

It’s possible to associate a dropdown control with a bar button item. Links that correspond to this bar button item will display dropdown arrows, which can be clicked to invoke the dropdown. The DropDownKeyTip property specfies the Key Tip used to activate the dropdown using the keyboard.

To associate a dropdown control with a bar button item, use the BarButtonItem.DropDownControl property. The BarButtonItem.ButtonStyle property must be set to BarButtonStyle.DropDown and the BarButtonItem.DropDownEnabled property must be set to true.

See Also