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.
Just add a ListBox
control and set the Property: SelectionMode = SelectionMode.MultiExtended
Then you can get the selected items in: ListBox1.SelectedItems
精彩评论