Reputation: 9915
I am looking for way to implement multi selection enabled list box in windows forms C#. Any suggestions? Thanks.
Upvotes: 20
Views: 30210
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