每当我尝试创建一个属性表时,我得到一个“Debug Assertion failed”,这是我的第一个,我将它从“MFC编程从头开始”复制它。
这是属性表类:
class CSamplePropSheet : public CPropertySheet
{
CPropDialog1 page1; //first page
CPropDialog2 page2; //second page
CPropDialog3 page3; //third page
public:
CSamplePropSheet() : CPropertySheet(){
Construct("Sample Property Sheet", this);
page1.Construct("PropDialog1", 0);
page2.Construct("PropDialog2", 0);
page3.Construct("PropDialog3", 0);
AddPage(&page1);
AddPage(&page2);
AddPage(&page3);
}
};
我在主窗口中声明了Property Sheet变量:
class CMainWin : public CFrameWnd
{
CSamplePropSheet m_PropSheet;
public:
CMainWin();
afx_msg void OnActivate();
afx_msg void OnExit();
afx_msg void OnHelp();
DECLARE_MESSAGE_MAP()
};
然后我在这里打电话:
afx_msg void CMainWin::OnActivate()
{
m_PropSheet.DoModal(); //activate modal property sheet
}
当弹出错误时,它指向此部分代码:
int AFXAPI AfxMessageBox(UINT nIDPrompt, UINT nType, UINT nIDHelp)
{
CString string;
if (!string.LoadString(nIDPrompt))
{
TRACE(traceAppMsg, 0, "Error: failed to load message box prompt string 0x%04x.\n",
nIDPrompt);
ASSERT(FALSE);
}
if (nIDHelp == (UINT)-1)
nIDHelp = nIDPrompt;
return AfxMessageBox(string, nType, nIDHelp);
}
错过了什么?其余的程序菜单选项有效,但激活按钮以显示属性表。
答案 0 :(得分:1)
您似乎错误地使用了属性页Construct
,page1
和page2
的{{1}}方法。您可能在本声明中假设page3
" PropDialog1"是页面的标题。但是,它是资源模板的名称。请阅读here有关如何使用资源模板的信息。
我建议您使用不同的Construct方法重载:
Construct("PropDialog1", 0);
使用此重载,您可以将与属性页关联的对话框资源的ID指定为第一个参数,将页面标题的字符串资源ID指定为第二个参数。 E.g:
void Construct(
UINT nIDTemplate,
UINT nIDCaption = 0
);