Updating RenderTransform
-
How can I update the transform values of a RenderTransform without making a new RenderTransform, i.e. doing this:
myElement.RenderTransform = new ...
The reason is I want to avoid a new layout pass in order to optimize animations. Is there a way to update the values of the transform directly? Thx
-
How can I update the transform values of a RenderTransform without making a new RenderTransform, i.e. doing this:
myElement.RenderTransform = new ...
The reason is I want to avoid a new layout pass in order to optimize animations. Is there a way to update the values of the transform directly? Thx
Shouldn't be difficult, you just have to cast the value of the RenderTransform property in the type of the transform you're using.
-
Shouldn't be difficult, you just have to cast the value of the RenderTransform property in the type of the transform you're using.