我通过以下代码调用屏幕键盘:
showKeyboard()
{
string progFiles = @"C:\Program Files\Common Files\Microsoft Shared\ink";
string keyboardPath = Path.Combine(progFiles, "TabTip.exe");
Process.Start(keyboardPath);
}
现在我想将键盘锁定(冻结?)在默认位置,这样用户就无法移动它。