我正在用 C# 为 Windows 8 开发我的应用程序,一件非常烦人的事情是,即使所有文本框都失去焦点,触摸键盘有时也会停留在屏幕上。
我阅读了文章键盘解除逻辑白皮书,其中解释了从控件切换到控件时,即使控件可能不接受键盘输入,键盘也可以保持打开状态。这就是我的情况,因为我的所有内容都托管在 GridView 或 ListView 中。当用户点击屏幕上的任何项目时,点击会落在这些控件上。这很烦人,因为键盘占了半个屏幕,而且没有办法关闭键盘。
我试图将文本框设置为禁用,但它没有影响。删除键盘的唯一方法是将焦点设置在按钮上,这非常hacky。
我以为我需要用“AutomationPeer”做点什么,但我不清楚具体要做什么。有没有办法覆盖这种行为?
编辑: 我想通了。目标是更改为白皮书中未列出的 GridView 和 GridView 项的控件类型。这是我所做的允许我关闭键盘的网格代码:
public class KeyboardUnfocusableGridView : GridView
{
private class KeyboardUnfocusableGridViewAutomationPeer : GridViewAutomationPeer
{
public KeyboardUnfocusableGridViewAutomationPeer(GridView owner)
: base(owner)
{
}
protected override AutomationControlType GetAutomationControlTypeCore()
{
return AutomationControlType.Custom;
}
}
private class KeyboardUnfocusableGridViewItemAutomationPeer : GridViewItemAutomationPeer
{
public KeyboardUnfocusableGridViewItemAutomationPeer(GridViewItem owner)
: base(owner)
{ }
protected override AutomationControlType GetAutomationControlTypeCore()
{
return AutomationControlType.Custom;
}
}
private class KeyboardUnfocusableGridViewItem : GridViewItem
{
protected override AutomationPeer OnCreateAutomationPeer()
{
var baseItem = base.OnCreateAutomationPeer();
return new KeyboardUnfocusableGridViewItemAutomationPeer(this);
}
}
protected override AutomationPeer OnCreateAutomationPeer()
{
var baseItem = base.OnCreateAutomationPeer();
return new KeyboardUnfocusableGridViewAutomationPeer(this);
}
protected override Windows.UI.Xaml.DependencyObject GetContainerForItemOverride()
{
return new KeyboardUnfocusableGridViewItem();
}
}
不幸的是,我需要编写这么多代码来做一件简单的事情。这绝对不是最优的,因为我需要为ItemsControl
我需要使用的每一个都这样做。