gpt4 book ai didi

c# - 如何在 WindowsPhone/Windows 8.1 上按下 Enter 键时隐藏软键盘?

转载 作者:行者123 更新时间:2023-11-30 18:50:26 26 4
gpt4 key购买 nike

我想在编辑文本框时按下输入/返回键时隐藏软键盘。这是我到目前为止在 c# 中的内容:

private void SearchBox_KeyUp(object sender, KeyRoutedEventArgs e)
{
TextBox textBox = sender as TextBox;
if(e.Key == VirtualKey.Enter)
{
this.Focus(FocusState.Programmatic); // sending focus to Page to hide keyboard
}
}

最佳答案

尝试暂时禁用然后启用 TextBox。

if(e.Key == VirtualKey.Enter)
{
textBox.IsEnabled = false;
textBox.IsEnabled = true;
}

关于c# - 如何在 WindowsPhone/Windows 8.1 上按下 Enter 键时隐藏软键盘?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25668659/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com