I am working on a Silverlight application and my problem is like this: I have a StackPanel and inside the stackpanel I have a ViewBox. Inside the viewbox I am adding images and rotating them 90 and/or -90 degrees.

When rotated, my images go out of the viewbox. How can I fix this?

link|improve this question

Does (viewbox).UpdateLayout or (viewbox).InvalidateArrange or (viewbox).InvalidateMeasure work at all? – Brad Christie Feb 15 '11 at 14:50
1  
Is it possible that you are rotaing the image somewhere else than in the middle of it? – David Brunelle Feb 15 '11 at 15:29
feedback

2 Answers

up vote 0 down vote accepted

Use something other than StackPanel, it doesn't resize.

link|improve this answer
feedback

There's a control in the Silverlight Toolkit that addresses this problem called the LayoutTransformer. It ensures that when you change the transform, the bounds of the control are within the LayoutTransformer bounds.

You can see this at work in the Silverlight Toolkit demo. Just scroll down the tree on the left to the Layout section.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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