CListCtrl::SetItemCount
清單檢視控制項提供加入大量項目的準備工作。
void SetItemCount(
int nItems
);
參數
- nItems
控制項最後會包含項目的數目。
備註
若要設定虛擬清單檢視控制項中的項目計數,請參閱 CListCtrl::SetItemCountEx。
備註
此成員函式實作 Win32 巨集, ListView_SetItemCount的行為 Windows SDK,如中所述。
範例
CString str;
// Add 1024 items to the list view control.
m_myListCtrl.SetItemCount(1024);
for (int i = 0; i < 1024; i++)
{
str.Format(TEXT("item %d"), i);
m_myListCtrl.InsertItem(i, str);
}
需求
Header: afxcmn.h