私はこれを持っています:
private void AssociatedObject_KeyDown(object sender, System.Windows.Input.KeyEventArgs e)
{
TextBox textBox = sender as TextBox;
if (textBox != null)
{
if (e.Key == Key.Return)
{
if (e.Key == Key.Enter)
{
textBox.SelectAll();
e.Handled = true;
}
}
}
}
私はできるようにしたい:
- 入力値をバインドされた変数に送信します。
- の入力値を強調表示し
TextBox
ます。
このコードは、入力値を強調表示するだけで、バインドされた変数に入力値を送信しません。