WPF Groupbox高度需要动态改变?
我正在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试将 StackPanel 的
HorizontalAlignment
和VerticalAlignment
设置为Stretch
并确保 StackPanel 没有明确设置宽度和高度。或在代码中:
粘贴您的代码/xaml 以帮助我们做出更少的假设。
Try setting the
HorizontalAlignment
andVerticalAlignment
of the StackPanel toStretch
and ensure that the StackPanel doesn't have explicit Width and Height set.or in code:
Paste your code/xaml to help us make lesser assumptions.