解决 Warning: calling DestroyWindow in CWnd::~CWnd OnDestroy or PostNcDestroy in derived class will not
出现上面Warning,原因是,调用窗口类析构的时候,窗口对象还没有销毁.具体表现在,当在一个窗口中生成另外一个窗口CTestDlg时:CTestDlg*pTd=newCTestDlg();pTd->Create(IDD_DIALOG_TEST,this);pTd->ShowWindow(TREU)://结束时deletepTd;pTd=NULL;这样的写法就会出现上面的warning,正确的做法