如何在EditText软键盘上隐藏8个Metro应用程序?

时间:2012-05-23 06:13:00

标签: c# xaml windows-8 windows-runtime winrt-xaml

我使用C#在我的Frame中有一个EditText和一个Button。在编辑字段内写入并单击按钮后,我想隐藏虚拟软键盘。

7 个答案:

答案 0 :(得分:7)

添加一个虚拟按钮并将焦点设置到它,键盘将被隐藏。

答案 1 :(得分:3)

感谢您的提问。 我已经为这个问题找到了更好的解决方案。像这样

首先我们可以在xaml中添加处理程序

<Grid x:Name= Tapped="Grid_Tapped_1">
  ......
 </Grid >

然后我们关注当前页面,如下。它运作良好。

private void Grid_Tapped_1(object sender, TappedRoutedEventArgs e)
        {
            this.Focus(FocusState.Programmatic);
        }

答案 2 :(得分:2)

你做不到。有关Input Hosting Manager and Soft Keyboard行为的更多信息,您可以register to know when it shows or becomes hidden。但是,您无法以编程方式控制它是向上还是向下。

答案 3 :(得分:2)

当显示虚拟键盘的文本框将其功能IsEnabled设置为false时,虚拟键盘将消失。之后我们可以立即设置为true,虚拟键盘将保持隐藏状态。就像这样:

MyTextBox.KeyDown += (s, a) => {
    if (a.Key == VirtualKey.Enter) {
        MyTextBox.IsEnabled = false;
        MyTextBox.IsEnabled = true;
    }
};

答案 4 :(得分:0)

尝试设置文本框的IsReadOnly属性。

我正在做“类似”的事情

    private void textbox_input_LostFocus(object sender, RoutedEventArgs e)
    {
        textbox_input.IsReadOnly = false;
    }

    private void textbox_input_Tapped(object sender, TappedRoutedEventArgs e)
    {
        if(e.PointerDeviceType != Windows.Devices.Input.PointerDeviceType.Mouse)
            textbox_input.IsReadOnly = true;
        else
            textbox_input.IsReadOnly = false;
    }

如果用户没有使用鼠标,我会抑制键盘...

同样,文本框只读时会触发KeyDown事件,因此您可以直接使用数据设置视图模型并通过它更新文本框;)

答案 5 :(得分:0)

There是一种解决方案,可以通过在点击按钮后自动设置容器IsTabStop=true来隐藏触摸键盘&#34;提交&#34;。

但是,顺便说一句,我注意到下次进入该页面时,EditText(应该是TextBox)会自动聚焦,并具有触摸键盘显示。也许你最好在提交后禁用EditText。 (似乎完成并阻止输入操作)

答案 6 :(得分:0)

我遇到了同样的问题,只是略有不同。 当我从文本框切换到日期选择器时,软键盘不会消失。

我尝试了你所有的建议,但没有任何效果。每次我的datepicker有一个奇怪的行为,在我尝试上述解决方案之一(或其他一些stackoverflow线程)。

过了一段时间,我通过谷歌找到了一些东西,就像一个魅力。 HERE

在评论部分Dusher16写了一个非常干净的解决方案,它也适用于WinRT / Win8 / Win8.1 / Metro,或者你将如何调用它。

创建一个新类:

using System.Runtime.InteropServices;
using Windows.Devices.Input;

namespace Your.Namespace
{
    public static class TouchKeyboardHelper
    {
        #region < Attributes >

        private const int WmSyscommand = 0x0112; // Flag to received/send messages to the system.
        private const int ScClose = 0xF060; // Param to indicate we want to close a system window.

        #endregion < Attributes >

        #region < Properties >

        public static bool KeyboardAttached
        {
            get { return IsKeyboardAttached(); }
        }

        #endregion < Properties >

        #region < Methods >

        [DllImport("user32.dll")]
        private static extern int FindWindow(string lpClassName, string lpWindowName); // To obtain an active system window handler.

        [DllImport("user32.dll")]
        private static extern int SendMessage(int hWnd, uint Msg, int wParam, int lParam); // To send a message to the system.

        /// <summary>
        /// To detect if a real keyboard is attached to the dispositive.
        /// </summary>
        /// <returns></returns>
        private static bool IsKeyboardAttached()
        {
            KeyboardCapabilities keyboardCapabilities = new KeyboardCapabilities(); // To obtain the properties for the real keyboard attached.
            return keyboardCapabilities.KeyboardPresent != 0 ? true : false;
        }

        /// <summary>
        /// To close the soft keyboard
        /// </summary>
        public static void CloseOnscreenKeyboard()
        {
            // Retrieve the handler of the window 
            int iHandle = FindWindow("IPTIP_Main_Window", ""); // To find the soft keyboard window.
            if (iHandle > 0)
            {
                SendMessage(iHandle, WmSyscommand, ScClose, 0); // Send a close message to the soft keyboard window.
            }
        }

        #endregion < Methods >
    }
}

例如,在某些XAML.cs文件中添加以下行:

private void DatePicker_GotFocus(object sender, RoutedEventArgs e)
{
    if (TouchKeyboardHelper.KeyboardAttached)
        TouchKeyboardHelper.CloseOnscreenKeyboard();
}