MFC 비모드, 메모리 누출 없음 대화 상자를 만드는 방법

257 단어 deleteClassmfc
//                  ,   PostNcDestroy(         )    delete this;        
class CMessageDlg:public CDialog
{
public:
	void PostNcDestroy();
};

void CMessageDlg::PostNcDestroy()
{
	CDialog::PostNcDestroy();
	delete this;
}

좋은 웹페이지 즐겨찾기