The default WPF button we have in Visual Studio: when mouse hover on it, the button background will glow from grey to blue. The speed is too slow. How to speed up the glowing effect in XAML?
Is there something like below?:
<Style TargetType="{x:Type Button}" BasedOn="{StaticResource {x:Type Button}}">
<Setter Property="GlowSpeed" Value="0.01" />
</Style>
Of course, this property doesn’t exist. What property is that suppose to be? Is that some sort of Animation?
This animation is embedded in the default
Templateof the button, you would need to change the default template which can be found on MSDN (Default WPF Themeslink).