ListViewGroup.Items 属性

定义

获取一个包含与此组相关联的所有项的集合。

public:
 property System::Windows::Forms::ListView::ListViewItemCollection ^ Items { System::Windows::Forms::ListView::ListViewItemCollection ^ get(); };
[System.ComponentModel.Browsable(false)]
public System.Windows.Forms.ListView.ListViewItemCollection Items { get; }
[<System.ComponentModel.Browsable(false)>]
member this.Items : System.Windows.Forms.ListView.ListViewItemCollection
Public ReadOnly Property Items As ListView.ListViewItemCollection

属性值

包含组中所有项的 ListView.ListViewItemCollection。 如果组中没有项,将返回一个空 ListView.ListViewItemCollection 对象。

属性

注解

可以通过在构造函数中 ListViewItem 指定组、设置 ListViewItem.Group 属性或直接将项添加到组的集合,将项分配给 Items 组。 在显示所有项之前,应将其分配给组。 未分配给组的任何项都将显示在默认组中,该组的标题标签为“DefaultGroup{0}”。 默认组不包含在集合中 ListView.Groups ,并且无法更改。 它主要用于调试,以确保所有项都已正确添加到组。

一个项一次只能位于一个组中。 可以通过在运行时设置 ListViewItem.Group 属性或将其添加到 Items 另一个组的集合(这会自动将其从上一个组中删除)来更改项所属的组。

注意

项可以存在于组的集合中Items,但如果它不在控件本身的ListView集合中ListView.Items,它将不会显示在控件中。

适用于

另请参阅