MyView.xaml:
<TextBox Text=”{Binding StringSample, Mode=TwoWay}”
TextChanged=”UpdateBinding”/>
MyView.xaml.cs
private void UpdateBinding(object sender, System.Windows.Controls.TextChangedEventArgs e)
{
var binding = (sender as TextBox).GetBindingExpression(TextBox.TextProperty);
binding.UpdateSource();
}