资源文件中有:
IDD_MAIN DIALOG 0, 0, 186, 95 ... { ... CONTROL "", IDC_LSTMAIN, WC_LISTVIEW, WS_TABSTOP | WS_BORDER | LVS_ALIGNLEFT | LVS_REPORT, 7, 7, 118, 81, WS_EX_LEFTSCROLLBAR }另有 Dialog :
class CMainDialog : public CDialog { ... private: CListView m_lsvMain; };则,在:
BOOL CMainDialog::OnInitDialog()
{
// 加上下面这行:
m_lsvMain.AttachDlgItem(IDC_LSTMAIN, this);
// 用 AttachDlgItem(UINT nID, CWnd* pParent) 将Dialog的控件附加到CListView对象。
...
// 添加列
m_lsvMain.InsertColumn(0, _T("Column 0"), LVCFMT_LEFT, 60);
//m_lsvMain.InsertColumn(1, _T("Column 1"), LVCFMT_LEFT, 60);
// 添加项
m_lsvMain.InsertItem(0, _T("Item 0"));
m_lsvMain.InsertItem(1, _T("Item 1"));
m_lsvMain.InsertItem(2, _T("Item 2"));
m_lsvMain.InsertItem(3, _T("Item 3"));
}
注:
另外 641 中的
InsertColumn(int iCol, LPCTSTR pszColumnHeading, int iFormat, int iWidth, int iSubItem)
和 InsertItem(int iItem, LPCTSTR pszText)
是有 BUG 的。将 listview.h 更新到 SVN 里面最新的 749 后正常。
//EOF Read More...