登录  
 加关注
   显示下一条  |  关闭
温馨提示!由于新浪微博认证机制调整,您的新浪微博帐号绑定已过期,请重新绑定!立即重新绑定新浪微博》  |  关闭

面包会有的

... ...

 
 
 

日志

 
 

2009年6月2日  

2009-06-02 09:30:28|  分类: VC++ |  标签: |举报 |字号 订阅

  下载LOFTER 我的照片书  |

动态创建CListCtrl控件

新建一基于对话框的应用程序

BOOL CADlg::OnInitDialog()
{
 CDialog::OnInitDialog();

 // Set the icon for this dialog.  The framework does this automatically
 //  when the application's main window is not a dialog
 SetIcon(m_hIcon, TRUE);   // Set big icon
 SetIcon(m_hIcon, FALSE);  // Set small icon
 
 // TODO: Add extra initialization here
 
 CListCtrl* pmyListCtrl = new CListCtrl;
 pmyListCtrl->Create(WS_CHILD|WS_VISIBLE|WS_BORDER|LVS_REPORT,CRect(10,10,300,200), this, 1);


 return TRUE;  // return TRUE  unless you set the focus to a control
}

 

 MSDN 上的说明:

BOOL Create( DWORD dwStyle, const RECT& rect, CWnd* pParentWnd, UINT nID );

 

Example

// 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);

如果照搬MSDN上的这个例子,将得不到想要的结果,

CListCtrl* pmyListCtrl = new CListCtrl;  //这是正确的

CListCtrl* pmyListCtrl //这样会提示出错:warning C4700: local variable 'pmyListCtrl' used without having been initialized,意思是变量没有被初始化.

 

 

  评论这张
 
阅读(537)| 评论(0)

历史上的今天

评论

<#--最新日志,群博日志--> <#--推荐日志--> <#--引用记录--> <#--博主推荐--> <#--随机阅读--> <#--首页推荐--> <#--历史上的今天--> <#--被推荐日志--> <#--上一篇,下一篇--> <#-- 热度 --> <#-- 网易新闻广告 --> <#--右边模块结构--> <#--评论模块结构--> <#--引用模块结构--> <#--博主发起的投票-->
 
 
 
 
 
 
 
 
 
 
 
 
 
 

页脚

网易公司版权所有 ©1997-2018