csharp 单击文本框的返回键时关闭键盘

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了csharp 单击文本框的返回键时关闭键盘相关的知识,希望对你有一定的参考价值。

// In Page class
public sealed partial class CustomPage : Page
{
  public CustomPage()
  {
    this.InitializeComponent();
  
    //...
  
    // This will give input focus capability to page
    this.IsTabStop = true;
  
  }
  
  private void textbox1_KeyUp(object sender, KeyRoutedEventArgs e)
  {
      if (e.Key == VirtualKey.Enter)
      {
          // This will move focus from textbox to the page
          this.Focus(FocusState.Programmatic);
      }
  }
  ...
  ...
  ...
}

以上是关于csharp 单击文本框的返回键时关闭键盘的主要内容,如果未能解决你的问题,请参考以下文章

按下返回键时如何通过多个文本字段输入进行选项卡?

当根据文本框的焦点按下 Enter 键时,如何触发 Button Click 事件?

按下返回键时隐藏软键盘

按下键盘中的返回键时,UITextView 不记得字体样式

android:按下完成键时软键盘执行动作

如何将焦点返回到浏览器中的文本输入