共用方式為


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,包含群組中所有的項目。 如果群組中沒有項目,則會傳回空的 ListView.ListViewItemCollection 物件。

屬性

備註

您可以藉由在建構函式中 ListViewItem 指定群組、設定 ListViewItem.Group 屬性,或直接將專案新增至群組的集合,將專案指派給 Items 群組。 所有專案都應該在顯示之前指派給群組。 未指派給群組的任何專案都會出現在預設群組中,其中包含標題標籤 「DefaultGroup {0} 」。 預設群組不包含在集合中 ListView.Groups ,而且無法改變。 它主要用於偵錯,以確保所有專案都已正確新增至群組。

專案一次只能位於一個群組中。 您可以藉由在執行時間設定 ListViewItem.Group 屬性,或將它新增至 Items 另一個群組的集合,以變更專案所屬的群組,以自動將它從上一個群組中移除。

注意

專案可以存在於群組的集合內 Items ,但如果它不在控制項本身的 ListView 集合中 ListView.Items ,它就不會出現在 控制項中。

適用於

另請參閱