gpt4 book ai didi

c# - float 面板(与对齐重叠)

转载 作者:太空宇宙 更新时间:2023-11-03 11:20:52 24 4
gpt4 key购买 nike

是否有可能在 wpf 的面板中 float (与对齐重叠)子项?我有 4 个相互重叠的按钮。它们需要向左、右、顶部和底部对齐,并与父容器一起增长。请查看图片了解更多信息。

enter image description here

最佳答案

这个怎么样?

<Grid>
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="1*"/>
<RowDefinition Height="2*"/>
<RowDefinition Height="1*"/>
</Grid.RowDefinitions>
<Grid.ColumnDefinitions>
<ColumnDefinition/>
<ColumnDefinition/>
</Grid.ColumnDefinitions>

<Button Grid.Row="1" Grid.Column="0" Content="Left"/>
<Button Grid.Row="1" Grid.Column="1" Content="Right"/>
</Grid>
<Grid>
<Grid.RowDefinitions>
<RowDefinition/>
<RowDefinition />
</Grid.RowDefinitions>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="1*"/>
<ColumnDefinition Width="2*"/>
<ColumnDefinition Width="1*"/>
</Grid.ColumnDefinitions>

<Button Grid.Row="0" Grid.Column="1" Content="Top"/>
<Button Grid.Row="1" Grid.Column="1" Content="Bottom"/>
</Grid>
</Grid>

结果是

enter image description here

关于c# - float 面板(与对齐重叠),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11064187/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com