I am looking for way to implement multi selection enabled list box in windows forms C#. Any suggestions? Thanks.
Asked
Active
Viewed 2.6k times
1 Answers
33
Just add a ListBox
control and set the Property: SelectionMode = SelectionMode.MultiExtended
Then you can get the selected items in: ListBox1.SelectedItems

Kanagawa Marcos
- 100
- 1
- 9

Burnsys
- 854
- 1
- 8
- 11
-
Is there a way to make this work without pressing `Ctrl`? I mean to select a row by just clicking on the item – Ozkan Jul 07 '15 at 13:38
-
2
-
3