您能为每种后备字体指定不同的字体大小吗?
在 Silverlight 中指定后备字体时,是否可以将其与字体大小配对?
问题在于,不同的字体在给定的字体大小下占用不同的空间量。我希望能够为每种后备字体提供字体大小,以使它们在空间消耗方面更加兼容。
When specifying a fallback font in Silverlight, is it possible to pair it with a font size?
The problem is that different fonts take different amount of space at a given font size. I'd like to be able to provide font size for each fallback font to make them more compatible in terms of space consumption.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
从 Silverlight 4 开始,答案是否定的。这是一个好主意,您应该推动它! (请前往此处请求)
fallbackFontFamilyName 值仅帮助 Silverlight 查找字体,而不能使用它。
是 FontFamily 和 字体源。
XAML 允许您指定 PT 或 PX 作为每个 字体大小。然而,Silverlight 并不关心,并且默认所有字体大小为 PX。如果您能为字体的每次使用提供特定的大小,那就太好了。
+1 表示 WPF,-1 表示一致性
As of Silverlight 4, the answer is No. This is a great idea, and you should push for it! (Go here to request it)
fallbackFontFamilyName value only helps Silverlight FIND a font, not use it.
Here are the docs for FontFamily and FontSource.
XAML allows you to specify PT, or PX as the measurement for every FontSize. However, Silverlight doesn't care, and defaults all font sizes to PX. It would be nice if you could give a specific size for each USE of a font.
+1 for WPF, -1 to consistency