I have used the following syntax to apply tooltip on a list view item :-
listViewSample.ShowItemToolTips = true;
listViewitem.ToolTipText = sItemToolTip;
here
listViewSample is listview name listViewitem is listview item name sItemToolTip is tooltip string
But it shows tooltip on only on first subitem.
How can I show it on all subitems of a item.