In WPF: how to disable the animation when the button after be pressed?
This thing above solves the problem, but it changes whole template, is there any more elegant solution, for example something like this:
<Style.Triggers>
<Trigger Property="IsFocused" Value="True">
<Setter Property="StoryBoard" Value="Disable" />
</Trigger>
<Trigger Property="IsMouseOver" Value="True">
<Setter Property="StoryBoard" Value="Disable" />
</Trigger>
</Style.Triggers>