ListBox.SelectedObjectCollection.Count 属性

定义

获取集合中的项数。

public:
 property int Count { int get(); };
public int Count { get; }
member this.Count : int
Public ReadOnly Property Count As Integer

属性值

集合中项的数目。

实现

注解

此属性使你能够确定 中 ListBox所选项的数目。 然后,可以在循环访问集合的值时使用此值,并且需要提供一些迭代来执行循环。 除非 的 SelectionModeListBox 属性设置为 SelectionMode.MultiSimpleSelectionMode.MultiExtended,否则此属性始终返回值 0 (0) 或 1 (1) 具体取决于是否具有选定项。

适用于