To Create Button Template Storyboard
-
Hai all I am new to silverlight , I am using silverlight Beta2 version, I need to create animated cursor when i click the button ,how to apply the storyboard. Can anyone help me
-
Hai all I am new to silverlight , I am using silverlight Beta2 version, I need to create animated cursor when i click the button ,how to apply the storyboard. Can anyone help me
Here is an example of animating on mouseover:
<Trigger Property="IsMouseOver" Value="True">
<Trigger.EnterActions>
<BeginStoryboard>
<Storyboard>
<DoubleAnimation
Storyboard.TargetName="Border"
Storyboard.TargetProperty="Opacity"
To="1"
Duration="0:0:0.1" />
</Storyboard>
</BeginStoryboard>
</Trigger.EnterActions>
</Trigger>Also, check out this link Storyboard Class[^]
Regards, Lev