ツールヒントが表示されるかどうかは、ShowToolTips プロパティを設定することで制御できます。
注: ToolTipText プロパティを明示的に設定した場合は、UltraExplorerBarItem のテキストが完全に表示されているときでも、ツールヒントが表示されます。
それ以外は、ツールチップは、項目のテキストが完全に表示されない場合に限って表示されます。
Imports System.Diagnostics Imports Infragistics.Win Imports Infragistics.Win.UltraWinExplorerBar Private Sub Button17_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles button17.Click ' Add some Groups and Items to the control. Turn off drawing while we do so. Me.ultraExplorerBar1.BeginUpdate() Dim i As Integer For i = 0 To 4 Dim group As UltraExplorerBarGroup = Me.ultraExplorerBar1.Groups.Add() group.Text = "Group " + i.ToString() Dim j As Integer For j = 0 To 4 Dim item As UltraExplorerBarItem = group.Items.Add() item.Text = "Group " + i.ToString() + " - Item " + j.ToString() item.ToolTipText = item.Text Next Next ' Turn drawing back on. Me.ultraExplorerBar1.EndUpdate()
using System.Diagnostics; using Infragistics.Win; using Infragistics.Win.UltraWinExplorerBar; private void button17_Click(object sender, System.EventArgs e) { // Add some Groups and Items to the control. Turn off drawing while we do so. this.ultraExplorerBar1.BeginUpdate(); for(int i = 0; i < 5; i++) { UltraExplorerBarGroup group = this.ultraExplorerBar1.Groups.Add(); group.Text = "Group " + i.ToString(); for (int j = 0; j < 5; j++) { UltraExplorerBarItem item = group.Items.Add(); item.Text = "Group " + i.ToString() + " - Item " + j.ToString(); item.ToolTipText = item.Text; } } // Turn drawing back on. this.ultraExplorerBar1.EndUpdate(); }