tags:

views:

23

answers:

1

I Need to implement zoom same as in office 2010.

The content can be any UI element including a third party grid(probably telerik)

I know 4 ways to implement zoom.

What the best way(performance) to implement zoom in this case?

A: 

Usually the simplest, fastest way to zoom is to set the RenderTransform on the element to be zoomed as a ScaleTransform, and set the ScaleX and ScaleY properties of the transform.

robertos
RenderTransform Not good for complex windows, need to use LayoutTransform
Chen Kinnrot
RenderTransform is certainly the most performant way. Why do you need LayoutTransform?
robertos