我希望白色的箭头出现在我的文本输入框中,所以用户有一个方向,而不是敲击键盘或使用硬件后退按钮.
搜索字段在系统UI中执行此操作.我如何?
这是我的代码
XAML:
<TextBox x:Name="InputBox" InputScope="Text" AcceptsReturn="True" TextChanged="InputBox_TextChanged"/>
CS:
void InputBox_TextChanged(object sender,KeyEventArgs e) { // e does not have Key property for capturing enter - ?? }
一个快速的说明,我已经尝试接受回调为False.