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?
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?
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.