VC++按键退出循环(对话框类中)

bool flag = true;

tagMSG msg;

while (flag)

{

  if (::PeekMessage(&msg, m_hWnd, WM_KEYFIRST,WM_KEYLAST, PM_REMOVE)) 

  { 

    if (msg.message == WM_KEYDOWN && msg.wParam == VK_ESCAPE) 

      break;

  } 

}

你可能感兴趣的:(VC++按键退出循环(对话框类中))