I have ListView and few columns of fixed size
the text lenghth i fill in the column may exceed the fixed length of column
so when user rests the mouse on that ListviewItem, a tooltip should be shown expanding the item
I tried
ListViewItem iListView = new ListViewItem("add");
iListView.ToolTipText = "Add Expanded";
myListView.Items.Add(iListView);
But no Use