奇妙な行動!Metro アプリのボタンをクリックするとすべて正常に動作しますが、enter (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 = "";
}
私は何を間違っていますか?
ありがとう