codematrix
codematrix

Reputation: 1611

WPF Storyboard flicker issue

With the code below, the control flickers whenever the image is changed for MouseOver/MousePressed? I am using Storyboard and Double animation.The image display for the button borderis very smooth with WPF Triggers but not with Storyboard. Can anyone help me to fix this issue?

Upvotes: 1

Views: 749

Answers (1)

Danny Varod
Danny Varod

Reputation: 18068

It could be a thread priority issue, try showing the window with ShowDialog() (modular window) instead of Show() and see if it still happens.

Upvotes: 1

Related Questions