如题

解决方案 »

  1.   

    if((wParam==0x56)&&GetAsyncKeyState(VK_CONTROL))
    {
    ....
    }
      

  2.   

    我试了一下,好像应该是GetKeyState
      

  3.   

    GetAsyncKeyState( VK_CONTROL) && GetAsyncKeyState( VK_V) 这样可以在如何函数中检测,而不需要在KeyDown 中!!!
      

  4.   

    GetAsyncKeyState( VK_CONTROL) && GetAsyncKeyState( VK_V) 这样可以在如何函数中检测,而不需要在KeyDown 中!!!
      

  5.   

    只要判断一下就可以了
    OnKeyDown()
    (要判断系统键的)
      

  6.   

    只要判断一下就可以了
    OnKeyDown()
    (要判断系统键的)