如何停止我的程序检测不到它的外部按键

时间:2019-06-05 08:40:44

标签: c++

我想知道如何阻止程序检测程序外部的按键。

            if (GetAsyncKeyState(VK_UP) != 0)
            {
 // code that's irrelevant
            }
            else if (GetAsyncKeyState(VK_DOWN) != 0)
            {
 // code that's irrelevant
            }
            else if (GetAsyncKeyState(VK_RETURN) != 0)
 // code that's irrelevant
            }

我目前有一个控制台应用程序,我希望它仅在程序正在使用时/在前台时才检测到键盘输入。 我该怎么办?

0 个答案:

没有答案