作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我希望我的程序无需我亲自操作即可按下键盘上的某些键。
我该怎么做?
编辑: 找到了这个 keybd_event() 函数。似乎在工作 http://www.codeproject.com/KB/cpp/sendkeys_cpp_Article.aspx
最佳答案
有SendInput可以生成击键和其他类型输入的函数。我曾经创建过类似于虚拟键盘的应用程序。
使用 Unicode 的示例:
// This may be needed
// #define _WIN32_WINNT 0x0501
#include <windows.h>
#include <winuser.h>
void pressKey(WORD a_unicode)
{
KEYBDINPUT kbinput;
ZeroMemory(&kbinput, sizeof(kbinput));
kbinput.wScan = a_unicode;
kbinput.dwFlags = KEYEVENTF_UNICODE;
kbinput.time = 0;
INPUT input;
ZeroMemory(&input, sizeof(input));
input.type = INPUT_KEYBOARD;
input.ki = kbinput;
SendInput(1, &input, sizeof(input));
}
关于c++ - 如何在不使用键盘的情况下按键盘上的键?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2659841/
我是一名优秀的程序员,十分优秀!