Version

Hide ToolTips in a Specific Toolbar

By default, WinToolbarsManager™ is set to display ToolTips on a toolbar. You can turn ToolTips off by setting the ShowToolTips property of ToolbarSettings to False. However, what if you would like to turn ToolTips off for one particular toolbar but leave ToolTips on for other toolbars? Since there is a ShowToolTips property in the SettingsBase class as well as ToolbarSettings, this is possible. In the Properties window, expand Toolbars, UltraToolbar1 (or whatever you named the toolbar), and then Settings. Under Settings is the ShowToolTips property. Selecting False will turn ToolTips off for that specific toolbar. If you would like to achieve the same affect at run time, follow the code below.

In Visual Basic:

Imports Infragistics.Win
...
Me.UltraToolbarsManager1.Toolbars("UltraToolbar1").Settings.ShowToolTips = _
  DefaultableBoolean.False
Me.UltraToolbarsManager1.Toolbars("UltraToolbar2").Settings.ShowToolTips = _
  DefaultableBoolean.True

In C#:

using Infragistics.Win;
...
this.ultraToolbarsManager1.Toolbars["UltraToolbar1"].Settings.ShowToolTips =
  DefaultableBoolean.False;
this.ultraToolbarsManager1.Toolbars["UltraToolbar2"].Settings.ShowToolTips =
  DefaultableBoolean.True;