不指定主窗口,程序不能退出消息泵

 下面是InitInstance() 中的一段代码
 MyWnd tWnd;   //自定义的一个窗口类
 CRect rc(100,100,600,550);
 tWnd.CreateEx(0,_T("Button"),_T("my name is button"),WS_POPUP,rc,NULL,0);
 tWnd.ShowWindow(SW_SHOW);
 this->m_pMainWnd = &tWnd; //1)程序可以正常退出
 //this->m_pMainWnd = new CWnd; //2)无法正常退出
 CWinApp::Run(); 
 return FALSE;

MyWnd是自己定义窗口,直接从CWnd继承而来。并用DestroyWindow()响应WM_LBUTTONUP。
下面代码说明了为什么1) 可以正常退出,且无需使用PostQuitMessage,而2)却不行。

//D:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\atlmfc\src\mfc\appcore.cpp(800)
//MSDN: the last member function called when the Windows window is destroyed.
//当DestroyWindow被调用时,WM_NCDESTROY被激发,调用下面这个函数
void CWnd::OnNcDestroy()
{
 // cleanup main and active windows
 CWinThread* pThread = AfxGetThread();
 if (pThread != NULL)
 {
  if (pThread->m_pMainWnd == this)
  {
   //2)不可能进入这里,就不可能调用AfxPostQuitMessage,所有程序无法退出
   if (!afxContextIsDLL)
   {
    // shut down current thread if possible
    if (pThread != AfxGetApp() || AfxOleCanExitApp())
     AfxPostQuitMessage(0);
   }
   pThread->m_pMainWnd = NULL;
  }
  ...

 

 

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值