Is there a way to zoom a viewbox content, excpet for one control? I have a viewbox with a grid, and in this grid I have some controls and I'm trying to zoom all the controls in the viewbox except one, is it possible?
Many thanks, Paulo
|
feedback
|
|
You can use a grid to add layers to your layout. That way, you can zoom one set of items, and leave another set un-zoomed.
The order of the view box and the other controls in XAML will depend upon which layer appears on top. If that doesn't quite do what you want, leave a comment and I'll revisit the answer. EDIT You want the unzoomed control to be positioned relative to the (0,0) of the Here's some XAML to try:
That gives a layout like this:
But note that when the height is reduced, the grid becomes wider than the view box, and so the content is layed out like this:
I guess that's not what you want. In that case, you use a canvas and go for something like this:
Which looks like this:
| ||||
|
feedback
|