vote up 1 vote down star
1

I have a Viewbox that is using Stretch=Uniform in order to not distort the content. However... when the frame window is wider or taller than the content, the Viewbox content is always centered.

I cannot seem to find any content alignment options on the Viewbox.

Is there a way to do this?

flag

33% accept rate

2 Answers

vote up 1 vote down

According to MSDN the Viewbox is used to stretch the child elements. Since the child elements would be stretched, you would have to set the content alignment of the children.

You may want to look at this for more information on the Viewbox: http://stackoverflow.com/questions/288954/how-do-i-keep-aspect-ratio-on-scalable-scrollable-content-in-wpf

link|flag
I can set HorizontalAlignment and VerticalAlignment on the child object and it still centers when the Viewbox scales it. – Jeff B Dec 4 '08 at 21:31
vote up 1 vote down

Try VerticalAlignment and HorizontalAlignment. VerticalAlignment="Top" HorizontalAlignment="Left" on your viewbox will cause it to be anchored to the Top and left side.

<Grid>
    <Viewbox VerticalAlignment="Top" HorizontalAlignment="Left">

If you want it to completely fill (but keep it uniform) you can use Stretch="UniformToFill".

link|flag

Your Answer

Get an OpenID
or

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