I have a grid in a Viewbox. If shrink the width of my window the grid getting smaller.. but if I shrink the height, nothing happened.

link|improve this question

feedback

1 Answer

up vote 2 down vote accepted

Sounds Like the parent container is the problem! I have solved this changing the parent container to Grid (from the default StackPanel in for instance ItemsControl.ItemsPanelTemplate).

Lets see the complete xaml!

link|improve this answer
The parent cotainer is already a grid. – rakete Jan 22 '10 at 11:25
And the height is set to *? – code-zoop Jan 22 '10 at 11:27
I didn't set any width or height? – rakete Jan 22 '10 at 12:35
You can also try and use DockPanel with LastChildFill set to True: <DockPanel LastChildFill="True"> If the ViewBox is in the last child, it should scale in the height as well as width! – code-zoop Jan 22 '10 at 13:07
feedback

Your Answer

 
or
required, but never shown

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