如何在 Expression Blend 3 中制作自动调整大小的文本块?
我正在尝试在窗口中制作一个具有固定大小(高度和宽度)的文本块控件 使用 Expression Blend,但文本块的内容将以编程方式更改,所以我想要文本以尽可能大的字体大小进行查看,而不会超出矩形的大小。
怎么做呢?
I'm trying to make a textblock control with a fixed size (height and width) in a window
using Expression Blend, but the content of the textblock will be changed programatically, so I want the text to be viewed by the largest possible font size without going outside the size of the rectangle.
How to do that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不要更改字体大小,而是使用
ViewBox
- WPF 教程 。它似乎更适合您想要实现的目标,因为它使其中的控件能够无限地调整大小以适应您放置它的区域的大小。Rather than changing the font size, use a
ViewBox
- WPF Tutorial. It seems to be better equipped for what you are trying to achieve as it gives the control within it the ability to resize indefinitely to the size of the area in which you place it.