ListView ToolTip only in First Cell - VB.NET
Posted
by Louise
on Stack Overflow
See other posts from Stack Overflow
or by Louise
Published on 2010-04-15T19:17:29Z
Indexed on
2010/04/16
9:13 UTC
Read the original article
Hit count: 279
I'm adding a ToolTip to a ListViewItem. However, the ToolTip only shows up when the user hovers over the first cell in the row to which the ToolTip has been applied.
MyListViewItem.ToolTipText = "Important Message"
The only other code I have related to ToolTips is this:
MyListView.ShowItemToolTips = True
Any idea how I can make the ToolTip show up on a specific cell in a row, or even the entire row? Thanks.
© Stack Overflow or respective owner