revolutionkpi
revolutionkpi

Reputation: 2682

Zoom control to SilverLight Form

I still have not found the answer: How can I implement a zoom control to my SilverLight Form? I hope you will help me with this question) I am looking to zoom the controls inside the zoom control, not zoom on an image.

Upvotes: 0

Views: 1629

Answers (3)

N_A
N_A

Reputation: 19897

This is a WPF control that zooms the child controls. Should be fairly easy to convert to Silverlight.

Here is a silverlight control that does the same thing:

Upvotes: 1

meziantou
meziantou

Reputation: 21337

With ScaleTransform in RenderTransform

<Grid.RenderTransform>
    <TransformGroup>
        <ScaleTransform ScaleX="1"/>
    </TransformGroup>
</Grid.RenderTransform>

http://ganshani.com/2009/08/14/zoom-in-and-out-in-silverlight/

Edit: the other link doesn't work. Here is the internet archive version.

Upvotes: 1

Related Questions