Skip to main content
A newer version of this page is available. .
Bar

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.v19.1.dll

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