I saw online 2 different approaches to enhancing an IValueConverter. One of them extended a ValueConverter from MarkupExtension, the other from DependencyObject. I can't extend from both, so I'm wondering if any one is better than the other?
feedback
|
|
Deriving from each gives you different kind of power and flexibility:
@crazyarabian commented that:
That is true. But then that is not bindable; that is, when you derive from
The target property must be a
| |||||||||||
feedback
|
|
Since it's my library you're citing as an example of converters that extend I actually started out by simply implementing Suppose you want to do something like this:
This won't work because resources are not part of the visual tree, and so the binding will fail. Virtual branching hacks around this little dilemma, enabling you to perform such a binding. However, it still relies - like any other WPF binding - on the target being a Now, if I'm completely honest, I'm not sure I'd still do this if I had my time again. I've never actually had to use a virtual branch myself - I just wanted to enable the scenario. I may even change this in a future version of my library. So my advice would be stick to a base class of | |||
|
feedback
|