Tool Tip Text on Mouse Over Particular ListView Sub Item in C# . What is the code for it ?
protected void mouse_over(object sender , Eventargs e)
{
ToolTip tooltp = new ToolTip();
ListViewItem lsvItem = ListView1.GetItemAt(e.Location.X , e.Location.Y);
if (lsvItem .subItems[0].Text = "XXX")
{
tooltp.SetToolTip(ListView1 , "HI");
}
}
But the problem I am facing is that the Entire ListView row is showing the Tool Tip instead of particaular ListView sub item ?