C# 模拟按键

发布于 2024-12-02 21:24:38 字数 108 浏览 0 评论 0原文

我正在寻找一种方法来模拟按 C# 中的右 Ctrl 键,它必须是正确的。我知道左边的可以这样做,但右边的我找不到任何东西。这样我就可以模拟手动触发蓝屏的按键。

谢谢

I was looking for a way to simulate pressing the right Ctrl key in C#, it must be the right one. I know this can be done for the left one but I couldn't find anything on the right one. It is so I can simulate the key press for the manually triggered bsod.

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

时光病人 2024-12-09 21:24:38

您可以使用 keybd_event 事件来模拟右键 Ctrl 按键。

[DllImport("user32.dll", SetLastError = true)]
static extern void keybd_event(byte bVk, byte bScan, int dwFlags, int dwExtraInfo); 

public const int KEYEVENTF_EXTENDEDKEY = 0x0001; //Key down flag
public const int KEYEVENTF_KEYUP = 0x0002; //Key up flag
public const int VK_RCONTROL = 0xA3; //Right Control key code

用法:

keybd_event(VK_RCONTROL, 0, KEYEVENTF_EXTENDEDKEY, 0);
keybd_event(VK_RCONTROL, 0, KEYEVENTF_KEYUP, 0); 

对于其他按键模拟 这里是虚拟按键代码列表

You can use keybd_event event to simulate right Ctrl key press.

[DllImport("user32.dll", SetLastError = true)]
static extern void keybd_event(byte bVk, byte bScan, int dwFlags, int dwExtraInfo); 

public const int KEYEVENTF_EXTENDEDKEY = 0x0001; //Key down flag
public const int KEYEVENTF_KEYUP = 0x0002; //Key up flag
public const int VK_RCONTROL = 0xA3; //Right Control key code

Usage:

keybd_event(VK_RCONTROL, 0, KEYEVENTF_EXTENDEDKEY, 0);
keybd_event(VK_RCONTROL, 0, KEYEVENTF_KEYUP, 0); 

For other key simulation here is virtual key codes list.

北恋 2024-12-09 21:24:38

您可能会对 Windows 输入模拟器 http://inputsimulator.codeplex.com/ 有一些运气

You might have some luck with the Windows Input Simulator http://inputsimulator.codeplex.com/

拥抱我好吗 2024-12-09 21:24:38

如果您正在使用 AutoHotKey,请尝试查看此处。使用 {RControl} 你应该得到你想要的

更新:对于.NET,请尝试查看this 了解更多信息,但据我所知,您无法发送正确的 Ctrl 钥匙。我猜你必须使用 win32 来完成它

If you are usign AutoHotKey try looking here. with {RControl} you should get what you want

Update: For .NET try looking at this for more info, but AFAIK you can't send right Ctrl key. guess you must use win32 to accomplish it

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文