How add the string in listview and strech it in row?
Create one listview and add the item in listview like
开发者_如何学Golistview1.Items.Add(new ListViewItem("hello i am working in C#");
I would like to output like this:
hello i am working in C#
Instead of this i am getting like this:
hello.....
When click that I got like this:
hello i
am working in
C#
How can I solve this?
set listView1.View=View.List;
For more information: ListView.View Property
精彩评论