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

BarItem.SuperTip Property

Gets or sets a SuperToolTip for the current bar item.

Namespace: DevExpress.XtraBars

Assembly: DevExpress.XtraBars.v24.2.dll

NuGet Package: DevExpress.Win.Navigation

#Declaration

[DXCategory("Appearance")]
public virtual SuperToolTip SuperTip { get; set; }

#Property Value

Type Description
SuperToolTip

A SuperToolTip object associated with the item.

#Remarks

Bar items support regular(simple) tooltips and SuperToolTip objects (tooltips that support multiple text and image regions) . The type of tooltips displayed for bar items is determined by a ToolTipController object (by default, by the DefaultToolTipController). The SuperTip property allows you to assign a SuperToolTip object to the bar item. A regular hint is specified by the BarItem.Hint property.

If a bar button item displays a separate dropdown button, you can display a different SuperToolTip for this button via the BarItem.DropDownSuperTip property.

The BarManager’s ToolTipController property (ComponentEditorContainer.ToolTipController) determines the ToolTipController which manages tooltips for bar items.

The RibbonGalleryBarItem object inherits but does not support the SuperTip property. You can however, specify tooltips for individual gallery items within the RibbonGalleryBarItem. Use the GalleryItem.Hint or GalleryItem.SuperTip property to accomplish this.

See Hints and Tooltips for more information.

See Also