I am a decent winforms programmer and I have done a little programming in XNA, I am trying to learn WPF.
I have a bunch of greyscale images that I want to add color to dynamically. to do this in XNA is easy simply indicate the color you want to use in the SpriteBatch.Draw method
SpriteBatch.Draw(Image,0,0,Color.blue)
Or something like that. That would draw my greyscale image with a blue hue to it. The purpose of this is to change the look of an Item, without having to draw them all manually.
I can't seem to find a good option in WPF