Reputation: 1611
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
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