ListBox.SelectedItems 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取包含 ListBox 中当前选定项的集合。
public:
property System::Windows::Forms::ListBox::SelectedObjectCollection ^ SelectedItems { System::Windows::Forms::ListBox::SelectedObjectCollection ^ get(); };
[System.ComponentModel.Browsable(false)]
public System.Windows.Forms.ListBox.SelectedObjectCollection SelectedItems { get; }
[<System.ComponentModel.Browsable(false)>]
member this.SelectedItems : System.Windows.Forms.ListBox.SelectedObjectCollection
Public ReadOnly Property SelectedItems As ListBox.SelectedObjectCollection
属性值
ListBox.SelectedObjectCollection,包含控件中的当前选定项。
- 属性
注解
For a multiple-selection ListBox, this property returns a collection containing all items that are selected in the ListBox. 对于单选 ListBox,此属性返回一个集合,该集合包含包含其中唯一选定项的 ListBox单个元素。 有关如何操作集合项的详细信息,请参阅 ListBox.SelectedObjectCollection。
该 ListBox 类提供了多种引用所选项的方法。 可以使用SelectedItem该属性,而不是使用SelectedItems属性在单选ListBox中获取当前选定的项。 如果要获取当前在项目中选择 ListBox的项的索引位置,而不是项本身,请使用该 SelectedIndex 属性。 此外,如果要在多选ListBox中获取所有选定项的索引位置,可以使用SelectedIndices该属性。