vote up 1 vote down star

I have a listbox(detailed view).My question is how do I get the index of the selected item?

Eventually,how to get the text at the index,but that should be easy.

flag

3 Answers

vote up 3 vote down check

ListBox.SelectedItem Property:

Gets or sets the currently selected item in the ListBox.

Or, naturally, ListBox.SelectedItems Propery:

Gets a collection containing the currently selected items in the ListBox.

... Remarks

For a multiple-selection ListBox, this property returns a collection containing all items that are selected in the ListBox. For a single-selection ListBox, this property returns a collection containing a single element containing the only selected item in the ListBox. For more information about how to manipulate the items of the collection, see ListBox..::.SelectedObjectCollection.

The ListBox class provides a number of ways to reference selected items. Instead of using the SelectedItems property to obtain the currently selected item in a single-selection ListBox, you can use the SelectedItem property. If you want to obtain the index position of an item that is currently selected in the ListBox, instead of the item itself, use the SelectedIndex property. In addition, you can use the SelectedIndices property if you want to obtain the index positions of all selected items in a multiple-selection ListBox.

link|flag
I'm with .NET 3.5.I don't have it,I have Listbox.SelectedItems – John Apr 25 at 17:37
Listbox.SelectedItems.ToString() returns "System.Windows.Forms.ListView+SelectedListViewItemCollection" – John Apr 25 at 17:41
Try 1st element in collection, Listbox.SelectedItems[0].ToString() – gimel Apr 25 at 17:44
vote up 0 vote down

I think you mean ListView (not ListBox) so use SelectedItems and SelectedIndices properties.

link|flag
vote up 2 vote down

The selected index is in the SelectedIndex property.

The selected text is in the Text property.

link|flag
1  
There's no such thing listview1.SelectedIndex. – John Apr 25 at 17:36

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.