我对Sendkeys有一个奇怪的问题,我的应用基本上应该做的是,当我按 ALT + J 时,它会模拟 CTRL + C 操作(在任何窗口上)复制一些突出显示的文本,但 CTRL + C 模拟不起作用。
[DllImport("user32.dll", SetLastError = true)]
[return: MarshalAs(UnmanagedType.Bool)]
static extern bool RegisterHotKey(IntPtr hWnd, int id, uint fsModifiers, uint vk);
private void Form1_Load(object sender, EventArgs e)
{
RegisterHotKey(this.Handle,
this.GetType().GetHashCode(), 1, (int)'J'); // Here it's waiting for the ALT+J
}
protected override void WndProc(ref Message m) // Function to c
{
if (m.Msg == 0x0312) // If ALT+J pressed
{
Copier(); // .. Simulate CTRL+C (but doesn't work)
}
base.WndProc(ref m);
}
public void Copier() // Function to simulate the CTRL+C
{
Debug.WriteLine("Ok ");
InputSimulator.SimulateModifiedKeyStroke(VirtualKeyCode.CONTROL, VirtualKeyCode.VK_C); // First way
SendKeys.Send("^(c)"); // Second way
}
答案 0 :(得分:6)
我认为这种情况正在发生,因为当您发送 CTRL + C 时,您已经按下 ALT的 ALT 修饰符 + Ĵ
如果你把
Thread.Sleep(1000);
在发送密钥之前,您将有时间释放 ALT + J 然后 CTRL + C 会工作。
另外,如果您打算检查热键的发布时间,请检查this。