Binding dont refresh, even when explicitly calling UpdateTarget
- by Erik
My ListView does not refresh its bindings when i call OnPropertyChanged. I have tried to force it to refresh by:
NestedArguments.GetBindingExpression(ItemsControl.ItemsSourceProperty).UpdateTarget();
But still, no luck!
YES, it does get updated. I have set a breakpoint and checked.
What is going on?
Other bindings seem to work without a…