windowsforms-devexpress-dot-xtrabars-dot-baritem-7433b540.md
Specifies the bar item’s regular hint.
Namespace : DevExpress.XtraBars
Assembly : DevExpress.XtraBars.v25.2.dll
NuGet Package : DevExpress.Win.Navigation
[DefaultValue("")]
[DXCategory("Appearance")]
public virtual string Hint { get; set; }
<DefaultValue("")>
<DXCategory("Appearance")>
Public Overridable Property Hint As String
| Type | Default | Description |
|---|---|---|
| String | String.Empty |
A string that specifies the bar item’s regular hint.
|
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 BarItem.SuperTip property allows you to assign a SuperToolTip object to the bar item. The Hint property specifies a regular hint shown. It is displayed in the following image:
To enable hints, ensure that the BarManager.ShowScreenTipsInToolbars property is set to true (the default value). If the BarManager.ShowShortcutInScreenTips property is also set to true , the shortcut key combination of a specific item link is displayed in the hint.
See Also