I have a ListBox in a WinForm with multiselect enabled.
The selected items appear to be stored in an object, how to I get their values?
|
|
|
Easy, depending on what type you stored:
Because this is an older, non-generic collection it is better not to use You can also use other properties like:
|
||||
|
|
|
Try the SelectedItems property.
|
|||
|
|
|
The selected items are found in the
|
|||||||||||
|
|
Just use the following code to display the selected item from the listbox - for WinForm app... string s = listbox1.Text; //replace listbox1 with your listbox control |
|||
|
|