Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

So I've been making a Windows Store app. For now, it simply has a bunch of Buttons in a Grid. I want to make it so these Buttons (along with their font size) will scale up/down to accommodate its entire parent. I've tried messing around with http://code.msdn.microsoft.com/windowsapps/Scaling-sample-cf072f4f and while it helped me do some scaling, it didn't help me do what I wanted to. I came from an Android background and am used to easily being able to do this. Can I easily accomplish this on C#/XAML applications?

share|improve this question

1 Answer

up vote 1 down vote accepted

You can use Viewbox class.

 <Grid>
    <Grid.RowDefinitions>
        <RowDefinition Height="*" />
        <RowDefinition Height="*" />
        <RowDefinition Height="*" />
    </Grid.RowDefinitions>

    <Button Grid.Row="0">
        <Button.Content>
            <Viewbox>
                <TextBlock Text="First button..." />
            </Viewbox>
        </Button.Content>
    </Button>
    <Button Grid.Row="1">
        <Button.Content>
            <Viewbox>
                <TextBlock Text="Second button..." />
            </Viewbox>
        </Button.Content>
    </Button>
    <Button Grid.Row="2">
        <Button.Content>
            <Viewbox>
                <TextBlock Text="Third button..." />
            </Viewbox>
        </Button.Content>
    </Button>        
</Grid>
share|improve this answer
Does this scale the FontSize as well? – BackpackOnHead Jan 13 at 20:13
Yes, of course :) – kmatyaszek Jan 13 at 20:14
Awesome. I'll try this out and let you know! – BackpackOnHead Jan 13 at 20:17
OK, I added you some more code :) – kmatyaszek Jan 13 at 20:22
It works. Thanks! – BackpackOnHead Jan 13 at 21:43

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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