How do you get a submit button in the Windows Phone keyboard?

前端 未结 2 805
-上瘾入骨i
-上瘾入骨i 2021-01-12 00:35

I want the white arrow to appear in my text input boxes so users have a way of forward other than tapping away from the keyboard or using the hardware Back button.

T

2条回答
  •  生来不讨喜
    2021-01-12 00:46

    Instead of handling the TextChanged method, handle the KeyUp method of the Textbox:

    private void InputBox_KeyUp(object sender, System.Windows.Input.KeyEventArgs e)
    {
          if (e.Key == Key.Enter)
          {
               //enter has been pressed
          }
    }
    

提交回复
热议问题