Search code examples
c#wpfxamldata-bindingmultibinding

Why ever use a multi binding converter?


Couldn't I just use a single binding converter and as a parameter pass in the DataContext and from there pick what properties I want to use?


Solution

  • If you pass the whole object instead of the individual properties, then the binding expression will not be re-evaluated when the individual properties change. You will be losing the benefit of the INotifyPropertyChanged mechanism.