vote up 0 vote down star
<Window ... >
    <StackPanel>
        <Button>b1</Button>
        <Button>b2</Button>
    </StackPanel>
</Window>

how to make this look like this:

<Window ...>
    <Grid>
        <Grid.RowDefinitions>
            <RowDefinition></RowDefinition>
            <RowDefinition></RowDefinition>
        </Grid.RowDefinitions>

        <Button>b1</Button>
        <Button Grid.Row="1">b2</Button>
    </Grid>
</Window>

without using a grid

flag

1  
A stack panel doesn't behave like a grid because its not meant to be a grid. Its meant to be a stack panel. If it was meant to act like a grid it would be a grid. Sorta like how buttons behave differently than text boxes and birds don't tunnel under my lawn. – Will Aug 14 at 13:02
What do you mean make it look like that? In what way? – Carlo Aug 14 at 15:49
i meant for the stackpanel to occupy the whole window, jut like the grid – Omu Aug 17 at 5:57

2 Answers

vote up 2 vote down check

Short answer: You can't.

Long answer: Write a custom Panel and override ArrangeOverride and MeasureOverride to simulate Grid behaviour.

StackPanel arranges each of its child elements to use minimal height (or minimal width if Orientation == Horizontal). StackPanel offers no properties to alter this behaviour. Grid on the other hand, unless indicated otherwise, will divide all available space evenly across each child (or rather row/column).

link|flag
vote up 4 vote down

You could try that :

<Window ... >
    <UniformGrid Rows="2" Columns="1">
        <Button>b1</Button>
        <Button>b2</Button>
    </UniformGrid>
</Window>

Not as flexible as a full blown Grid, but simpler to use...

link|flag
Damn. It. – Will Aug 14 at 13:05
Seconded. Can't believe i missed that. – Bubblewrap Aug 14 at 13:08
Solved my problem, thanks! – Si Nov 6 at 9:42

Your Answer

Get an OpenID
or

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