返回> 网站首页
非模态对话框退出
yoours2007-04-20 19:46:43
简介一边听听音乐,一边写写文章。
//非模态对话框退出
void CInformation::PostNcDestroy()
{
delete this;
CDialog::PostNcDestroy();
}
void CInformation::OnCancel()
{
DestroyWindow();
}
或者直接调用DestroyWindow
void CInformation::PostNcDestroy()
{
delete this;
CDialog::PostNcDestroy();
}
void CInformation::OnCancel()
{
DestroyWindow();
}
或者直接调用DestroyWindow
文章评论
1386人参与,0条评论