Click here to Skip to main content
15,904,023 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
hi all!
i have listview , i load data on listview , but in cell display "..." , i want show all data ??
Tks
Posted
Comments
kumar2413 20-May-13 23:24pm    
Did you bind the data???

1 solution

Hi you can use "Add Expand" value for the ToolTipText property of ListViewItem it can be use-able for your purpose ;)

C#
ListViewItem itemlv = new ListViewItem("add");
itemlv.ToolTipText = "Add Expanded";
myListView.Items.Add(itemlv);


Best Regards.
 
Share this answer
 
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900