开发者

How add the string in listview and strech it in row?

开发者 https://www.devze.com 2023-03-09 13:37 出处:网络
Create one listview and add the item in listview like 开发者_如何学Golistview1.Items.Add(new ListViewItem(\"hello i am working in C#\");

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

0

精彩评论

暂无评论...
验证码 换一张
取 消