william007
william007

Reputation: 18547

To make grid in List View appeared in IDE

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.

enter image description here

I wish that I can have something like below display in the IDE, what attributes should I change?

enter image description here

Upvotes: 1

Views: 68

Answers (1)

KreepN
KreepN

Reputation: 8598

Change the following (assuming you are adding the columns at design time):

listView1.View = View.Details;

enter image description here

Upvotes: 1

Related Questions