I have a control whose bindin开发者_如何转开发g is set as OneWay.
How can I force the value to be re-evaluated in code?
Get the binding expression and call UpdateTarget:
BindingExpression binding = Control.GetBindingExpression(TextBox.TextProperty)
binding.UpdateTarget()
Of course, if you implement the INotifyPropertyChanged interface on the class that holds the source property for your binding then WPF will handle the updating for you automatically.
精彩评论