博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
如何判断CapsLock键是否按下
阅读量:6825 次
发布时间:2019-06-26

本文共 136 字,大约阅读时间需要 1 分钟。

    SHORT cap_state = ::GetKeyState(VK_CAPITAL);

    char str[10];

    sprintf(str, "%d", cap_state);

    AfxMessageBox( CString(str) , MB_OK );

 

会弹出0或者1

转载地址:http://bhezl.baihongyu.com/

你可能感兴趣的文章