Nick
Nick

Reputation: 10499

How to specify the ListView SelectionMode property?

I have a ListView and I want to specify the selection (item) mode. In the equivalent WPF control there is the ListView.SelectionMode property. Is there the same property for Windows Forms?

Upvotes: 3

Views: 1913

Answers (1)

John Arlen
John Arlen

Reputation: 6708

ListView.MultiSelect: Gets or sets a value indicating whether multiple items can be selected.

Upvotes: 2

Related Questions