我正在使用Windows 8.1 metro应用程序,这个应用程序正在使用Kiosk机器,没有物理键盘连接到机器。我有一些文本框,我想在用户触摸文本框时自动弹出屏幕键盘。
答案 0 :(得分:-1)
尝试这样的事情
TextBox1.GotFocus += PopupKeyBoard();
protected void PopupKeyBoard(object sender, EventArgs e)
{
System.Diagnostics.Process.Start(@"C:\Program Files\Common Files\microsoft shared\ink\TabTip.exe");
if (sender is TextBox) { (sender as TextBox).SelectAll(); }
}