Is there any effect in WPF I could Make an image shiny etc.? (I want to use it for a hovered image)
A mask or something like this would be great.
Is there any effect in WPF I could Make an image shiny etc.? (I want to use it for a hovered image)
A mask or something like this would be great.
It depends on what do you mean by "shiny". A simple way is to have each image opacity set to 0.5 and change it to 1 when mouse is in.
Try applying a BitmapEffect to the image, just keep in mind that they can be expensive to use.
OuterGlowBitmapEffect might help you.