问题描述
- mfc 属性表单 主界面 主程序 1C
- #include ""myprop.h""
#include ""page.h""
#include ""page1.h""myprop my(_T(""我""));
myprop::myprop(UINT nIDCaption CWnd* pParentWnd UINT iSelectPage) :CPropertySheet(nIDCaption pParentWnd iSelectPage)
{
AddPage(&mypage);AddPage(&mypage1);
}
myprop::myprop(LPCTSTR pszCaption CWnd* pParentWnd UINT iSelectPage):CPropertySheet(pszCaption pParentWnd iSelectPage)
{
AddPage(&mypage);AddPage(&mypage1);
}
bool init()
{
return false;
}这样的思路对吗?还要写什么 代码?
时间: 2024-09-28 04:24:55