如何通过我的程序发送Numpad Keys

时间:2013-09-03 03:25:50

标签: c#

我只想创建一个按程序按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。谢谢(是的,我已经用Google搜索了,但由于某些原因,这很难找到)。

1 个答案:

答案 0 :(得分:0)

根据我的经验,你应该有一些像Input Simulator这样的包装器。它易于使用并具有许多预定义的枚举,因此您无需传递String参数。