Whether the tooltip is displayed can be controlled by setting the ShowToolTips property.
Note: If the ToolTipText property is explicitly set, the tooltip is displayed even when the UltraExplorerBarGroup’s text is fully visible.
Otherwise, the tooltip is displayed only when the Group's text is not fully displayed by its header.
Imports System.Diagnostics Imports Infragistics.Win Imports Infragistics.Win.UltraWinExplorerBar Private Sub Button30_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles button30.Click ' For every Group that has a Key of "Options" and no tooltip text, set the tooltip text to "Drawing Options" Dim group As UltraExplorerBarGroup For Each group In Me.ultraExplorerBar1.Groups If (group.Key = "Options" AndAlso group.ToolTipText.Length = 0) Then group.ToolTipText = "Drawing Options" End If Next End Sub
using System.Diagnostics; using Infragistics.Win; using Infragistics.Win.UltraWinExplorerBar; private void button30_Click(object sender, System.EventArgs e) { // For every Group that has a Key of "Options" and no tooltip text, set the tooltip text to "Drawing Options" foreach(UltraExplorerBarGroup group in this.ultraExplorerBar1.Groups) { if (group.Key == "Options" && group.ToolTipText.Length == 0) group.ToolTipText = "Drawing Options"; } }
Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2