I have lots of icons in black & white color. My goal is to make a converter that receives those icons and blend the icon bitmap with another color, specified as a converter parameter. For example:
<Window Icon="{Binding Path=MyBlackAndWhiteIcon,
Converter={StaticResource myColorConverter},
ConverterParameter=FFCC00"/>
Can someone give me a clue on how do I properly build this converter?
PS: I knwo how to make converters. The question is about this specific converter, since "MyBlackAndWhiteIcon" is typically a string pointing to an resource image.