WPF storyboard object access.
- by Guru
Hey,
I'm new to silverlight and wpf programming
I've just created a simple storyboard in silverlight which increases height and width of a button.
As I wanted, I wrote this code so that whenever I move cursor on the button storyboard begins.
here is the code used for silverlight.
private void button_MouseEnter(object sender, System.Windows.Input.MouseEventArgs e)
{
if(Storyboard1.GetCurrentState()!=ClockState.Active)
Storyboard1.Begin();
}
Everything is fine in above scenario as far as I use silverlight.
But now I wanted to use the same functionality in WPF.
But the problem I faced is that in WPF button click event handler I can't access the Storyboard1 object.
Please help me to access the storyboard object in event handler.