Reputation: 18547
I am using VS2010 Windows Form
Here's the list view after I dropped it to the windows form, and after adding the column, using columns attribute in the IDE.
I wish that I can have something like below display in the IDE, what attributes should I change?
Upvotes: 1
Views: 68
Reputation: 8598
Change the following (assuming you are adding the columns at design time):
listView1.View = View.Details;
Upvotes: 1