337b617b46
Migrate from System.Windows.Interactivity.WPF to Microsoft.Xaml.Behaviors.Wpf
29 lines
766 B
C#
29 lines
766 B
C#
using System.Windows.Controls;
|
|
using System.Windows.Input;
|
|
using Microsoft.Xaml.Behaviors;
|
|
|
|
namespace CefSharp.MinimalExample.Wpf.Behaviours
|
|
{
|
|
public class TextBoxBindingUpdateOnEnterBehaviour : Behavior<TextBox>
|
|
{
|
|
protected override void OnAttached()
|
|
{
|
|
AssociatedObject.KeyDown += OnTextBoxKeyDown;
|
|
}
|
|
|
|
protected override void OnDetaching()
|
|
{
|
|
AssociatedObject.KeyDown -= OnTextBoxKeyDown;
|
|
}
|
|
|
|
private void OnTextBoxKeyDown(object sender, KeyEventArgs e)
|
|
{
|
|
if (e.Key == Key.Enter)
|
|
{
|
|
var txtBox = sender as TextBox;
|
|
txtBox.GetBindingExpression(TextBox.TextProperty).UpdateSource();
|
|
}
|
|
}
|
|
}
|
|
}
|