eomeroff
eomeroff

Reputation: 9915

Multi selection list box in WinForms

I am looking for way to implement multi selection enabled list box in windows forms C#. Any suggestions? Thanks.

Upvotes: 20

Views: 30210

Answers (1)

Burnsys
Burnsys

Reputation: 914

Just add a ListBox control and set the Property: SelectionMode = SelectionMode.MultiExtended

Then you can get the selected items in: ListBox1.SelectedItems

Upvotes: 37

Related Questions