In WPF, the ScaleTransform has an event calls Changed which raises whenever the scale X/Y is changed. But this event is not exist in Silverlight. Is there any way we can implement the same thing in Silverlight?

link|improve this question

feedback

1 Answer

up vote 0 down vote accepted

I found a workaround for this. Actually, we can hook CompositionTarget.Rendering event when the storyboard begins. After the storyboard is completed, we need unhook the event too to save the performance. In the Rendering event, we can get the dynamical value of the ScaleTransform's scale x/y and it solves my issue. Hope it helps if you have the same requirement.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.