Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
70
Indexer Binding not working after install WPF 7.2 Hot Fix
posted

I have a object that expose data with Indexer property.

 Es.

public object this[string name]

get { .... set { ...} }

and field binding is

UnboundField field = new UnboundField();

field.BindingPath = new PropertyPath("[Cod]"); In the set accessor of indexer throw :

PropertyChanged(this, new PropertyChangedEventArgs("Item["));

Before install Hot fix , the grid refresh correctly when change value, but after hot fix the refresh of grid not working.

Thanks

Ivan