How to simulate a key press in C++(如何在 C++ 中模拟按键按下)
问题描述
我想知道如何在 C++ 中模拟按键凹陷.例如,当我运行程序时,它按下字母W"键的代码.我不想在控制台窗口中显示它,我只想在每次单击文本字段时显示W"键.谢谢!
I was wondering how can I simulate a key depression in C++. Such as having code that when I run the program it presses the letter "W" key. I don't want to be displaying it in a console window I just want it to display the "W" key every time I click on a text field. Thanks!
注意:我不是想成为垃圾邮件发送者.
Note: I am not trying to make a spammer.
推荐答案
您似乎想要使用 SendInput()
或 keybd_event()
(这是做同样事情的旧方法).
It looks like you want to use either SendInput()
or keybd_event()
(which is an older way of doing the same thing).
这篇关于如何在 C++ 中模拟按键按下的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何在 C++ 中模拟按键按下


- 如何对自定义类的向量使用std::find()? 2022-11-07
- 一起使用 MPI 和 OpenCV 时出现分段错误 2022-01-01
- 使用/clr 时出现 LNK2022 错误 2022-01-01
- STL 中有 dereference_iterator 吗? 2022-01-01
- 静态初始化顺序失败 2022-01-01
- Stroustrup 的 Simple_window.h 2022-01-01
- 近似搜索的工作原理 2021-01-01
- C++ 协变模板 2021-01-01
- 从python回调到c++的选项 2022-11-16
- 与 int by int 相比,为什么执行 float by float 矩阵乘法更快? 2021-01-01