如果在另一个 Silverlight 库中添加字体,如何指定 FontFamily?
我创建了一个 Silverlight 类库“HindiFont”,并在其中添加了“LM.ttf”字体(指定 BuildAction=Resource
)。现在我想在我的主应用程序“main.xap”中使用这种字体。我也使用应用程序库缓存,因此创建了HindiFont.zip。那么我如何使用我在 HindiFont.zip 中指定的字体。
我尝试过以下组合,但没有人工作。
<TextBlock x:Name="tDisplay" FontFamily="LM.TTF#MyName" ></TextBlock>
<TextBlock x:Name="tDisplay" FontFamily="HindiFont.dll;LM.TTF#MyName" ></TextBlock>
<TextBlock x:Name="tDisplay" FontFamily="HindiFont.zip;LM.TTF#MyName" ></TextBlock>
所以请让我知道如何解决这个问题。
I have created a Silverlight Class Library "HindiFont" and added a "LM.ttf" font in it (specified BuildAction=Resource
) . Now I want to use this font in my main application "main.xap". I am aslo using Application library caching so there are HindiFont.zip created. So how I use the font which I have specified in HindiFont.zip.
I have tried below combinations but no one are working.
<TextBlock x:Name="tDisplay" FontFamily="LM.TTF#MyName" ></TextBlock>
<TextBlock x:Name="tDisplay" FontFamily="HindiFont.dll;LM.TTF#MyName" ></TextBlock>
<TextBlock x:Name="tDisplay" FontFamily="HindiFont.zip;LM.TTF#MyName" ></TextBlock>
So please let me know how to resolve this issue.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要将其指定为组件,并且不带“LM.TTF”,如下所示:
如果您的字体位于名为“Fonts”的子目录中,则只需在其中使用该字体:
"/YourAppName;component /Fonts/HindiFont.zip;#MyName"
You need to specify it as a component and without the "LM.TTF", like this:
If you have your fonts in a sub-directory like one named "Fonts", just use that inside:
"/YourAppName;component/Fonts/HindiFont.zip;#MyName"