Hi Miroslav,
Thank you for your response.
It works great with window opening animation.
I was wondering, if i could get the same reversed animation on closing the window.
I have tried setting "From=1.0 To=0.0" and start animation on Closed event.
However, it doesnt seem to work for closing window.
Can you see why ??
Here is the animation, i "begin" on closed event
<Storyboard x:Key="ClosingAnimation" Storyboard.TargetName="Transform" >
<DoubleAnimation From="1.0" To="0.0" By="-0.01" Storyboard.TargetProperty="ScaleY" Duration="0:0:1.000" />
<DoubleAnimation From="1.0" To="0.0" By="-0.01" Storyboard.TargetProperty="ScaleX" Duration="0:0:1.000" />
</Storyboard>
Regards,
James