我认为标题解释了我的要求。
我需要SendKeys
在DoMouseClick
方法之前完成发送密钥,否则我的整个程序都无用。
// Simulate the keyboard typing the value of 'i'
SendKeys.SendWait(i.ToString());
// Simulate mouse click so the Accept button in-game is clicked
DoMouseClick();
我尝试使用Thread.Sleep
,但我希望你们能就如何解决问题找到更好的建议。
答案 0 :(得分:5)
使用Input Simulator。它比SendKeys
好得多,并在内部处理边缘情况。
Install-Package InputSimulator
var simulator = new InputSimulator();
//simulate what you need
simulator.Keyboard.KeyPress(VirtualKeyCode.VK_I);
simulator.Keyboard.TextEntry(i.ToString());
simulator.Mouse.LeftButtonDoubleClick();
答案 1 :(得分:-1)
我不确定这是否有帮助,但如果不批评这篇文章,那么我可以尝试帮助你的情况。
private void Form1_DoubleClick(object sender, MouseEventArgs e)
{
// Send the enter key; since the tab stop of Button1 is 0, this
// will trigger the click event.
SendKeys.SendWait("{ENTER}");
CallAfterSend();
}
private void CallAfterSend()
{
MessageBox.Show("Had to hit enter first");
}
private void button1_Click_1(object sender, EventArgs e)
{
MessageBox.Show("Click here!");
}