I have a listview with multiple columns. I would like to display a tooltip (UltraToolTipInfo) on a separate subitem.
I created some code but the tooltip only shows up if I move my mouse on the ListViewItem, not on the SubItem (the text is form the subviewitem so that seems correct).
Private Sub ulvFiles_MouseMove(sender As Object, e As System.Windows.Forms.MouseEventArgs) Handles ulvFiles.MouseMove
Dim subItem As UltraListViewSubItem = ulvFiles.SubItemFromPoint(New Point(e.X, e.Y)) If (subItem IsNot Nothing) Then tip = New UltraToolTipInfo tip.ToolTipText = subItem.Text tipManager.SetUltraToolTip(ulvFiles, tip) tipManager.ShowToolTip(ulvFiles) End If End Sub
Hi Erik,
I have constructed and attached a sample to demonstrate the required behavior for both Item and SubItem text, using the UltraToolTipManager.
Please find the sample attached.
If you have any questions at all regarding this approach, please let me know.
Sincerely,Chris KDeveloper Support EngineerInfragistics, Inc.www.infragistics.com/support