WPF Groupbox高度需要动态改变?

发布于 2024-11-02 05:40:35 字数 194 浏览 0 评论 0原文

我正在 WPF 中使用组框,组框的内部是一个堆栈面板。堆栈面板中的项目已被删除并添加到其子项中。

我遇到的问题是组框中的 Stackpanel 正在更改高度,但 GroupBox 没有,因此它会切断 stackpanel 中添加的其余项目。

如何让组框将其高度调整为堆栈面板的高度。

这必须在代码中完成,而不是在 XAML 中

I am working with a groupbox in WPF, and Inside of the groupbox is a stackpanel. The stackpanel has items that are removed, and added to its children.

The problem I am experiencing is that Stackpanel within the groupbox is changing height, but the GroupBox is not, and so it is cutting off the rest of the added items within in the stackpanel.

How can I get the groupbox to adjust its height to the height of the stackpanel.

This must be done in code, not in XAML

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

咽泪装欢 2024-11-09 05:40:35

尝试将 StackPanel 的 Horizo​​ntalAlignmentVerticalAlignment 设置为 Stretch 并确保 StackPanel 没有明确设置宽度和高度。

<StackPanel x:Name="stackPanel1" HorizontalAlignment="Stretch" VerticalAlignment="Strech">
...
</StackPanel>

或在代码中:

stackPanel1.HorizontalAlignment = HorzontalAlignment.Stretch;
stackPanel1.VerticalAlignment = VerticalAlignment.Stretch;

粘贴您的代码/xaml 以帮助我们做出更少的假设。

Try setting the HorizontalAlignment and VerticalAlignment of the StackPanel to Stretch and ensure that the StackPanel doesn't have explicit Width and Height set.

<StackPanel x:Name="stackPanel1" HorizontalAlignment="Stretch" VerticalAlignment="Strech">
...
</StackPanel>

or in code:

stackPanel1.HorizontalAlignment = HorzontalAlignment.Stretch;
stackPanel1.VerticalAlignment = VerticalAlignment.Stretch;

Paste your code/xaml to help us make lesser assumptions.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文