WPF UIElements 中的动态 TextSize
正如建议的那样,我允许所有 WPF UIElement
具有动态大小,以便可以轻松调整它们的大小,但是,在 TextBlock
中,我必须指定 的大小>字体
。 这意味着当元素的大小增加或减少时,字体大小保持不变。 有没有办法让 Font
大小是动态的?
As suggested I allow all of my WPF UIElement
s to have a dynamic size so they can be resized easily however, in TextBlock
s I have to specify the size of the Font
. This means when the element's size increases or decreases the Font size stays the same. Is there a way for the Font
size to be dynamic?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试将控件内的文本放入
Viewbox
中:Try putting the text inside the control into a
Viewbox
: