winform软件盘实现可以使用SendKeys
private void btn_Click( object sender, EventArgs e )
{
Control control = (Control)sender;
SendKeys.Send ( control.Text );
System.Threading.Thread.Sleep ( 50 );
SendKeys.Flush ();
}
注意:如果使用的是label,需要绑定将click和doubleclick同时绑定此事件,label双击时会先触发单击事件