Я не могу конвертировать мои textBox6
в ключи. Я хочу, чтобы пользователь выбрал свою собственную клавишу и кнопку мыши, например, XButton1, XButton2 или «a».
private void checkBox1_CheckedChanged(object sender, EventArgs e)
{
if (checkBox1.Checked)
timer1.Start();
else
timer1.Stop();
}
private void timer1_Tick(object sender, EventArgs e)
{
if (IsKeyPushedDown(Keys.textBox6.Text))// there is not working
{
mouse_event(MOUSEEVENTF_LEFTDOWN, Control.MousePosition.X,
Control.MousePosition.Y, 0, 0);
mouse_event(MOUSEEVENTF_LEFTUP, Control.MousePosition.X,
Control.MousePosition.Y, 0, 0);
}
else
timer1.Start();
}