码迷,mamicode.com
首页 > 其他好文 > 详细

CPropertySheet标签页 实现各个CPropertyPage页面之间的切换

时间:2015-01-20 18:12:59      阅读:130      评论:0      收藏:0      [点我收藏+]

标签:cpropertypage   cpropertysheet   页面切换   

来源:http://bbs.csdn.net/topics/390973895

有三种方法:

第一种

是你的CPropertyPage在create的时候把原来的那个CPropertySheet 类对象指针作为父窗口传进去

CPropertyPage::Create(UINT nIDTemplate, CWnd* pParentWnd = NULL)

然后在菜单command消息处理中采用

CPropertySheet *pParent = (CPropertySheet *)GetParent();

pParent->SetActivePage(iPage);

第二种

是在你的CPropertyPage类中保存CPropertySheet 对象指针,CPropertyPage对象构造的时候传进去,然后在菜单command消息处理中直接通过这个指针SetActivePage


第三种

是在你的CPropertyPage类中保存CPropertySheet 对象的窗口句柄,CPropertyPage对象构造的时候传进去,然后在菜单command消息处理中通过这个句柄给CPropertySheet 发送自定义消息,CPropertySheet 收到这个消息的时候再SetActivePage

CPropertySheet标签页 实现各个CPropertyPage页面之间的切换

标签:cpropertypage   cpropertysheet   页面切换   

原文地址:http://blog.csdn.net/u013147600/article/details/42918865

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!