将 WPF 控件的大小调整为精确的百分比
在 WPF 中,我想将控件宽度设置为其父控件 ActualWidth
属性的 97%。我该怎么做?
In WPF, I want set a controls width to be, say, 97% of it's Parent controls ActualWidth
property. How can I do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用网格面板。例如:
网格将占据可用边框大小的 100%。第一列将使用其中的 97%。剩下的 3% 分配给第二列的边框。
希望这有帮助。
干杯,安瓦卡
You can use Grid panel. E.g:
Grid will occupy 100% of available border's size. First column will use 97% of it. And the rest 3% are given to border in the second column.
Hope this helps.
Cheers, Anvaka