gpt4 book ai didi

wpf - 为堆栈面板内的控件赋予相等的宽度

转载 作者:行者123 更新时间:2023-12-04 16:29:18 25 4
gpt4 key购买 nike

我需要两个 RadChart s 在水平线内 StackPanel并希望两个图表的宽度相等。我不想为图表的宽度提供明确的长度。这可以通过使用 Grid 轻松实现。控制,但我的方案需要 StackPanel .

最佳答案

通常,文档不能很快被理解,因为它要么以令人困惑的方式编写,要么需要的信息隐藏在大量其他对特定情况没有帮助的信息中。因此,在我看来,即使它是“基本的东西”,快速回答也没有什么坏处(或者如果有人认为它太原始,他/她应该什么都不张贴)。

        <StackPanel Orientation="Horizontal" Grid.IsSharedSizeScope="True">
<Grid>
<Grid.ColumnDefinitions>
<ColumnDefinition SharedSizeGroup="MySizeGroup" />
</Grid.ColumnDefinitions>
<Button Height="23" Content="Reset" Padding="5,1" />
</Grid>
<Grid>
<Grid.ColumnDefinitions>
<ColumnDefinition SharedSizeGroup="MySizeGroup" />
</Grid.ColumnDefinitions>
<Button Height="23" Content="Set" Padding="5,1" />
</Grid>
<Grid>
<Grid.ColumnDefinitions>
<ColumnDefinition SharedSizeGroup="MySizeGroup" />
</Grid.ColumnDefinitions>
<Button Height="23" Content="Import" Padding="5,1" />
</Grid>
<Grid>
<Grid.ColumnDefinitions>
<ColumnDefinition SharedSizeGroup="MySizeGroup" />
</Grid.ColumnDefinitions>
<Button Height="23" Content="Export" Padding="5,1" />
</Grid>
<Grid>
<Grid.ColumnDefinitions>
<ColumnDefinition SharedSizeGroup="MySizeGroup" />
</Grid.ColumnDefinitions>
<Button Height="23" Content="Create new" Padding="5,1" />
</Grid>
</StackPanel>

希望这可以帮助 :)

关于wpf - 为堆栈面板内的控件赋予相等的宽度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16899803/

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