WPF - 布局设计

时间:2017-09-04 18:25:04

标签: wpf xaml layout

我试图在WPF窗口中设计一个布局,但我遇到了一些麻烦。 enter image description here

这就是我之后的布局。我尝试过网格,堆叠面板等等。但是我无法进行正确的对接或重叠。

任何想法?谢谢!

1 个答案:

答案 0 :(得分:0)

首先制作2行,然后第2行制作3列

<Grid>
    <Grid.RowDefinitions>
        <RowDefinition Height="20*"/>
        <RowDefinition Height="80*"/>
    </Grid.RowDefinitions>
    <Grid Grid.Row="1">
        <Grid.ColumnDefinitions>
            <ColumnDefinition Width="20*"/>
            <ColumnDefinition Width="60*"/>
            <ColumnDefinition Width="20*"/>
        </Grid.ColumnDefinitions>
    </Grid>
</Grid>