在ListView中怎么使用自定义的ListCtrl
一、使用工具:ListView
二、使用方法:
1、在视图里定义CMyListCtrl最成员对象,在OnInitUpdate函数里
CRect rect;
GetClientRect(&rect);
MoveWindow()函数把你自己的控件占满整个客户区就可以了。
2、(1)此处是针对ListView,如果是dialog中的listctrl,那就很简单的用CMyListCtrl替换即可;
(2)CListView中隐含GetListCtrl();最关键是此句:The call to GetListCtrl() actually
returns a pointer to the CListView object after casting it to a pointer to
CListCtrl. So the return value from GetListCtrl() doesn't really point to a
CListCtrl but instead it points to the ClistView.
(3)所谓自定义listctrl无非就是界面的操作,而且往往是window的消息函数,所以解决方法是 :不要加derived
listctrl了,直接将其特殊操作部分移到listview中来:
三、注意事项:也可以试试重载一个CListView,然后在这个CListView重载上面的函数,一样有效。这个时候,就有一个通过CMyListCtrl来控制的CListView了。