如何通过我的程序发送数字键盘密钥
本文关键字:数字 键盘 密钥 何通过 我的 程序 | 更新日期: 2023-09-27 18:30:07
我只是想创建一个程序,每隔几秒钟在程序中按下Numpad 0。这就是我到目前为止所拥有的。
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace WindowsFormsApplication2
{
public partial class Form1 : Form
{
int enabled = 0;
public Form1()
{
InitializeComponent();
}
private void Start_Click(object sender, EventArgs e)
{
if (enabled == 0)
{
Start.Text = "Stop";
Timer.Enabled = true;
enabled = 1;
}
else
{
Start.Text = "Start";
Timer.Enabled = false;
enabled = 0;
label2.Text = "0";
}
}
private void Timer_Tick(object sender, EventArgs e)
{
SendKeys.Send("{NumpadIns}");
label2.Text = Convert.ToString(Convert.ToInt32(label2.Text) + 1);
}
}
}
到目前为止,我已经尝试过这个
{NumpadIns}
{NumIns}
{Num0}
{INS}
似乎什么都不起作用,我使用的程序绑定到Num Zero,所以它必须是Num Zero,而不是顶行的0,或者Insert。谢谢(是的,我已经在谷歌上搜索过了,但由于某种原因,这真的很难找到)。
根据我的经验,您应该使用一些像Input Simulator这样的包装器。它很容易使用,并且有许多预定义的枚举,因此不需要传递String参数。