The title is pretty much self-explaining, but to add to the facts, I'm using a large Canvas inside my ViewBox and my ViewBox is placed inside a ScrollViewer. I've set the event handlers for the MouseMove and MouseWheel, and I'm using myViewbox.Width and myViewbox.Height to change the zoom level (which I'm not sure is the proper way). Now I'm stuck on how to set the zoom origin to my mouse pointer location.

Thanks in advance.

link|improve this question

60% accept rate
feedback

1 Answer

up vote 1 down vote accepted

better way is to use the RenderTransform property (particularly ScaleTransform in your case). Have a read here

this could be useful: WPF - Pan & Zoom Image

link|improve this answer
how is it done with a scrollview, a viewbox and a canvas nested in each other? which one must have its RenderTransform property set? – iXed Jul 13 '11 at 8:19
feedback

Your Answer

 
or
required, but never shown

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