Exception: 'IValueConverter' type does not have a public TypeConverter class

David Veeneman picture David Veeneman · Jan 25, 2010 · Viewed 7.6k times · Source

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.

Answer

David Veeneman picture David Veeneman · Jan 25, 2010

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.