Silverlight 中的应用程序范围字体资源
我想看看是否可以在 Silverlight 控件中使用应用程序范围的字体,这些字体可以在 application.resources 中设置,然后在整个应用程序中使用。他们不需要指定字体的其他内容,例如粗体或斜体,只需指定名称即可。
大多数情况下,这适用于需要嵌入到应用程序中的自定义字体。例如,我正在寻找简单的东西(不是任何特定的控件或控件类型)...
<Setter x:Key="My First Font"
Property="FontFamily"
Value="VINERTIC.TTF#Viner Hand ITC" />
然后在任何给定的控件中我会键入...
<TextBlock FontFamily="{StaticResource "My First Font"}"
x:Name="ApplicationTitle"
Text="NEXT PAGE" Foreground="Red"/>
...或...
FontFamily="{Binding "My First Font"}"
或类似的东西。
我知道我所做的不起作用,但这就是我想要的效果。
我似乎找不到任何有关如何设置应用程序范围的字体系列的文档。有什么建议吗?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为这里有一些信息可以帮助您入门。
首先,我知道将字体嵌入共享库(例如:Silverlight 类库)的最简单方法是执行以下操作:
执行这些步骤后,您可以在任何地方引用字体,包括样式,其语法类似于下面的文本块:
请注意,上面的
FontFamily
表达式在容器项目中工作并且在参考项目中。我没有使用字体的 zip 存档来测试这个过程,但我敢打赌,它仍然可以工作。这应该可以帮助你开始。如果您有兴趣执行在样式中声明字体并在控件上使用该样式的额外(且有用)步骤,请考虑查看此资源:
http://www.silverlight.net/learn/quickstarts/control-styles/
Here is some information I think will get you started.
First off, the easiest way I know to embed a font in a shared library (ex: a Silverlight Class library), is to do the following:
After following these steps, you can refer to the font wherever you please, including styles, with syntax similar to the text block below:
Note that the
FontFamily
expression above worked within the container project and within a referencing project. I didn't test this process with a zip archive of fonts, but I'd bet a fancy rock out of the garden that it would still work.That should get you started. If you are interested in going the extra (and useful) step of declaring the font in a style, and using the style on your controls, consider taking a look at this resource:
http://www.silverlight.net/learn/quickstarts/control-styles/