I'm new in WPF(c#). I need make a glow effect around image control using triggers
. How can I do make glow effect on mouse-enter
event?
I want to use your answer i my style.
My effect is:
<DropShadowEffect x:Key="MyEffect" ShadowDepth="0" Color="Blue" Opacity="1" BlurRadius="20"/>
I see many links but they don't work.
To add glow to
Image
control you need to setEffect
to yourDropShadowEffect
whenIsMouseOver=True
, something like this: