Wpf 布局设计

Wpf 布局设计,wpf,xaml,layout,Wpf,Xaml,Layout,我正试图在WPF窗口中设计布局,但遇到了一些麻烦 这就是我想要的布局。我试过网格、堆叠面板等。。但是我不能得到正确的对接,或者它们重叠 有什么想法吗??谢谢 先做两行,然后第二行做三列 <Grid> <Grid.RowDefinitions> <RowDefinition Height="20*"/> <RowDefinition Height="80*"/> </Grid.RowDefinit

我正试图在WPF窗口中设计布局,但遇到了一些麻烦

这就是我想要的布局。我试过网格、堆叠面板等。。但是我不能得到正确的对接,或者它们重叠


有什么想法吗??谢谢

先做两行,然后第二行做三列

<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>

你应该买一本WPF手册,学习基础知识。