继承CListView类的cs.style设置LVS_REPORT

来源:互联网 发布:mac os 最新的版本号 编辑:程序博客网 时间:2024/05/21 19:22
class CMyDAODemoView : public CListViewBOOL CMyDAODemoView::PreCreateWindow(CREATESTRUCT& cs){// TODO: Modify the Window class or styles here by modifying//  the CREATESTRUCT cscs.style |= LVS_REPORT;return CListView::PreCreateWindow(cs);}void CMyDAODemoView::EraseList(){CListCtrl& ctlList = (CListCtrl&) GetListCtrl();ctlList.DeleteAllItems();while(ctlList.DeleteColumn(0));UpdateWindow();}