sooprise
sooprise

Reputation: 23187

Adding Items To A ListView Through A WinForm?

If I have a ListView embedded in a WinForm, is there any way I can simply click in the ListView and start typing in new items when the form is running?

Upvotes: 0

Views: 174

Answers (2)

Hans Passant
Hans Passant

Reputation: 941495

At runtime, no. The only edit option it has is the LabelEdit property. Set it to true to allow the user to edit the ListViewItem.Text property of existing items.

Upvotes: 1

Kyra
Kyra

Reputation: 5407

In visual studio when you click on the listview a small triangle in the top right appears. When you click on it you can edit columns, etc.

Upvotes: 0

Related Questions