首页
学习
活动
专区
工具
TVP
发布
社区首页 >问答首页 >如何将网格行拆分为两列?

如何将网格行拆分为两列?
EN

Stack Overflow用户
提问于 2012-01-28 05:49:06
回答 1查看 36.2K关注 0票数 19

我有3个rows.How的网格布局,我是否将第3行拆分为2列。

<Grid.RowDefinitions>
    <RowDefinition Height="0.75*"/>
    <RowDefinition Height="0.25*"/>
    <RowDefinition Height="36"/>
</Grid.RowDefinitions>
EN

回答 1

Stack Overflow用户

发布于 2020-06-07 21:11:23

<Grid>
        <Grid.RowDefinitions >
            <RowDefinition Height="0.75"/>
            <RowDefinition Height="0.25"/>
            <RowDefinition Height="36"/>
        </Grid.RowDefinitions>

        <Grid Grid.Row="2">
            <Grid.ColumnDefinitions>
                <ColumnDefinition Width="*"/>
                <ColumnDefinition Width="*"/>
            </Grid.ColumnDefinitions>       
        </Grid>
</Grid>
票数 0
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/9040535

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档