奇怪的行为!当我点击地铁应用程序上的按钮时,一切正常,但是当我点击进入(KB 上的按钮)时,唯一发生的事情就是一切都被清除了!
这失败了
private void TextBox_KeyDown_1(object sender, KeyRoutedEventArgs e)
{
if (e.Key == VirtualKey.Enter)
{
textBlock.Text = textBox1.Text;
// textBox1.Text = "";
}
}
这按预期工作
private void Send_Click(object sender, RoutedEventArgs e)
{
textBlock.Text = textBox1.Text;
textBox1.Text = "";
}
我究竟做错了什么 ?
谢谢