1个回答
展开全部
这个是MSDN上的:
// pParentWnd is a pointer to the parent window.
extern CWnd* pParentWnd;
// The pointer to my list view control.
extern CListCtrl* pmyListCtrl;
pmyListCtrl->Create(
WS_CHILD|WS_VISIBLE|WS_BORDER|LVS_REPORT,
CRect(10,10,400,200), pParentWnd, 1);
要在单文档上使用的话,要在View类的.h中加入CListCtrl Lc;这句声明一个列表控件的变量,然后再View类的.cpp文件中响应ON_CREATE的消息,在OnCreate
函数中添加Lc.Create(
WS_CHILD|WS_VISIBLE|WS_BORDER|LVS_REPORT,
CRect(10,10,400,200), pParentWnd, 1);
运行下就OK了。不行可以联系我
// pParentWnd is a pointer to the parent window.
extern CWnd* pParentWnd;
// The pointer to my list view control.
extern CListCtrl* pmyListCtrl;
pmyListCtrl->Create(
WS_CHILD|WS_VISIBLE|WS_BORDER|LVS_REPORT,
CRect(10,10,400,200), pParentWnd, 1);
要在单文档上使用的话,要在View类的.h中加入CListCtrl Lc;这句声明一个列表控件的变量,然后再View类的.cpp文件中响应ON_CREATE的消息,在OnCreate
函数中添加Lc.Create(
WS_CHILD|WS_VISIBLE|WS_BORDER|LVS_REPORT,
CRect(10,10,400,200), pParentWnd, 1);
运行下就OK了。不行可以联系我
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询