SHORT cap_state = ::GetKeyState(VK_CAPITAL); char str[10]; sprintf(str, "%d", cap_state); AfxMessageBox( CString(str) , MB_OK ); |
会弹出0或者1
本文共 192 字,大约阅读时间需要 1 分钟。
SHORT cap_state = ::GetKeyState(VK_CAPITAL); char str[10]; sprintf(str, "%d", cap_state); AfxMessageBox( CString(str) , MB_OK ); |
会弹出0或者1
转载于:https://www.cnblogs.com/time-is-life/p/4348660.html