WPF - 调整子级的大小以填充父级
在 WPF 中,我只想拥有一个包含 3 个文本块的“容器”。我希望调整这 3 个文本块的大小,以便它们各自占据父级宽度的 1/3。我注意到堆栈面板会自动调整最后一个子项的大小,但是有没有办法自动调整每个子项的大小?
In WPF, I simply want to have a 'container' which has 3 textblocks. I would like these 3 textblocks to be sized so they each take up 1/3 of the parent's width. I noticed that the stackpanel sizes the last child automatically, but is there a way to size each child automatically?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用网格或UniformGrid
网格非常常见,在每个 WPF 应用程序中都大量使用。然而,UniformGrid 也非常方便,但并不那么出名。
Use a Grid or a UniformGrid
The grid is very common and in every WPF-App used a lot. However also the UniformGrid is very handy but not so well known.