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

GalleryItem.Hint Property

Gets or sets the object that represents the Hint portion within the item’s regular tooltip window. This is a dependency property.

Namespace: DevExpress.Xpf.Bars

Assembly: DevExpress.Xpf.Core.v24.2.dll

NuGet Package: DevExpress.Wpf.Core

#Declaration

public object Hint { get; set; }

#Property Value

Type Description
Object

An object that represents the Hint portion within the regular tooltip.

#Remarks

Tooltips are enabled for gallery items if the Gallery.AllowToolTips and BarManager.ShowScreenTips properties are set to true.

Gallery items support regular hints and SuperTips. A SuperTip, if specified, has a higher priority than a regular hint.

A regular hint displays a gallery item’s caption (GalleryItem.Caption), glyph (GalleryItem.Glyph), and the Hint object. If the Hint property is not specified, a regular hint is not displayed. To specify a template used to present the Hint object within the tooltip window, use the Gallery.HintTemplate property.

A SuperTip is an expandable tooltip that supports multiple regions. Tooltip regions are arranged one under another, and each can display specific object and graphics. To specify a SuperTip for an item, use the GalleryItem.SuperTip property.

See Also