Which is faster to use binding using converter or update in a property changed callback?

205 Views Asked by At

I need fast updates, so I was wondering which one is faster and more efficient.

1

There are 1 best solutions below

0
On

I performed some measurements, and can proclaim, that using a converter in a binding is cheaper than not using it. We're talking about 9% time saving. Probably, finding / creating a default converter takes more time than taking an instance of a converter from a resource...