强制 WPF ContentControls 具有最大宽度
我在 Grid 或 StackPanel 中有 ContentControls,例如 ComboBox 和 TextBox。我希望它们具有最大可能的宽度。我该如何实现这一目标?我注意到 Button 添加到 StackPanel 时无论如何都有最大宽度,但 ComboBox 和 TextBox 没有。我尝试设置 ContentControls' Width="*",但这不起作用。
I have ContentControls like ComboBox and TextBox inside of a Grid or a StackPanel. I want them to have the maximum possible width. How do I achieve that? I've noticed that Button has maximum width any way when it is added to a StackPanel, but ComboBox and TextBox do not. I've tried setting ContentControls' Width="*", but that doesn't work.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您尝试过 HorizontalAlignment="Stretch" 吗?
Did you try HorizontalAlignment="Stretch"?