I have just run into this exception on an IValueConverter I am implementing:
IValueConverter type does not have a public TypeConverter class
Has anyone else come across this? What's the cause, and how do I fix? Thanks.
Simple solution, as it turns out. I had referenced my value converter like this:
<Binding Path="Foreground" Converter="StaticResource BrushToRgbConverter" ConverterParameter="B" />
instead of this:
<Binding Path="Foreground" Converter="{StaticResource BrushToRgbConverter}" ConverterParameter="B" />
In other words, I had omitted the braces from my Converter
reference.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With