0

I CAN ALREADY add names to a listView box. When I click the add button the first name appear, when I add a new name it adds it to the SAME LINE (ex. "john bob greg"). WHAT I WANT TO DO IS have every new name added appear on a new line. Any suggestions as to what might need changing on the listView??

4

2 回答 2

1

as your problem you can try this..

listView1.Items.Add(textbox1.text); // ask a run time value
于 2013-02-28T06:36:32.827 回答
0

listView has a property called "View" which has 5 different views to choose from. Choose "List".

于 2013-02-28T15:28:42.863 回答