如何在WPF中设置可调整字体大小的文本块或标签?
在WPF中,如果我将任何控件放入网格中,如果我调整网格大小,它会自动调整其中所有控件的大小。但是在标签或文本块或任何其他文本元素中,所有控件大小都会改变,但字体大小保持不变,它不会改变。
如果字体必须根据网格大小进行更改,应该怎么办?
In WPF, if i put any controls in grid, if i resize the grid, it automatically resizes all the controls in it.But in label or textblock or any other text elements, all the control sizes will change but font size remains same, it will not change.
If font has to change as per grid size, What should be done?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用
ViewBox
来实现此目的。它将根据控件大小转换(而不是调整大小)您的字体(以及控件)。请参阅此处了解更多信息;
You can achieve this by using a
ViewBox
. It will transform (not resize) your font (well, the control) depending on the control size.Look at this here for more information;
以下几行也给出了预期的结果。
The following lines also give the expected result.