我正在使用带有 CPropertyPages 的 MFC 向导。
页面显示后有什么方法可以调用函数吗?
目前,当我点击上一页的“下一步”按钮时,该功能启动。
我试图从 OnShowWindow、OnCreate、OnSetActive、DoModal 调用该函数,但它们都不起作用。
谢谢你的帮助!
最佳答案
通常覆盖 OnSetActive() 就足够了。但是,此方法在 CPropertyPage 可见并聚焦之前调用。如果您必须在页面显示后执行任务,则必须在 OnSetActive 中发布您自己的消息:
// This message will be received after CMyPropertyPage is shown
#define WM_SHOWPAGE WM_APP+2
BOOL CMyPropertyPage::OnSetActive() {
if(CPropertyPage::OnSetActive()) {
PostMessage(WM_SHOWPAGE, 0, 0L); // post the message
return TRUE;
}
return FALSE;
}
LRESULT CMyPropertyPage::OnShowPage(UINT wParam, LONG lParam) {
MessageBox(TEXT("Page is visible. [TODO: your code]"));
return 0L;
}
BEGIN_MESSAGE_MAP(CMyPropertyPage,CPropertyPage)
ON_MESSAGE(WM_SHOWPAGE, OnShowPage) // add message handler
// ...
END_MESSAGE_MAP()
关于c++ - 显示对话框后运行功能,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/13192167/