开发者

Multi selection list box in WinForms

开发者 https://www.devze.com 2022-12-17 09:24 出处:网络
I am looking for way to implement multi selection enabled list box开发者_开发知识库 in windows forms C#.

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

0

精彩评论

暂无评论...
验证码 换一张
取 消