点击Enter键关闭键盘

本文关键字:键盘 Enter 点击 | 更新日期: 2023-09-27 18:06:17

我使用Windows Phone 8工具包,并且有一个带有AutoCompleteBox的页面。

现在,如果用户在没有选择当前项目的情况下(要求用户键入不同的文本(向自动完成框中写入内容,并用"Return"提交文本,我想关闭键盘。

如何做到这一点?

点击Enter键关闭键盘

,你可以这样做

<AutoCompleteBox Name="Input" KeyUp="Input_KeyUp" FontSize="40">
        <AutoCompleteBox .InputScope>
            <InputScope>
                <InputScopeName />
            </InputScope>
         </AutoCompleteBox .InputScope>
  </AutoCompleteBox >

在事件中,

private void Input_KeyUp(object sender, KeyEventArgs e)
{
    if (e.Key == Key.Enter)
    {
        this.Focus();
    }
}

在此处阅读全文:Dismiss the SIP (keyboard) in WP8

您可以使用KeyUp事件处理程序关闭键盘,然后选择当前页面的Focus((:

void textBox_KeyUp(object sender, KeyEventArgs e)
{
    // if the enter key is pressed
    if (e.Key == Key.Enter)
    {
        // focus the page in order to remove focus from the text box
        // and hide the soft keyboard
        this.Focus();
    }
}