29 lines
770 B
C#
29 lines
770 B
C#
|
using System.Windows.Interactivity;
|
|||
|
using System.Windows.Controls;
|
|||
|
using System.Windows.Input;
|
|||
|
|
|||
|
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();
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
}
|