Skip to main content

NavElement.SuperTip Property

Gets or sets a SuperToolTip for the current navigation element.

Namespace: DevExpress.XtraBars.Navigation

Assembly: DevExpress.XtraBars.v23.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 current navigation element.

Remarks

Navigation elements (tiles in drop-down tile bars, buttons and custom categories in the nav bar) support SuperToolTip objects to provide hints to end-users. To specify a SuperToolTip for the current NavElement, use the SuperTip property. The NavElement.ResetSuperTip method allows you to remove the SuperToolTip assigned to the current NavElement.

The SuperTip property specifies a common hint that is shown for the current NavElement when it is rendered either as a nav bar item or as a tile in a drop-down tile bar. To provide a different hint for a tile in a drop-down tile bar, use the TileItem.SuperTip property. It can be accessed via the TileNavElement.Tile property.

The TileNavPane.ToolTipShowMode property allows you to specify navigation elements for which tooltips are shown.

Be default, tooltips are managed by the DefaultToolTipController. Use the TileNavPane.ToolTipController property to specify a custom ToolTipController.

Refer to the Hints and Tooltips topic, for more information.

See Also