如果在另一个 Silverlight 库中添加字体,如何指定 FontFamily?

发布于 2024-09-11 12:59:28 字数 558 浏览 0 评论 0原文

我创建了一个 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

别把无礼当个性 2024-09-18 12:59:28

您需要将其指定为组件,并且不带“LM.TTF”,如下所示:

<TextBlock x:Name="tDisplay" FontFamily="YourAppName;component/HindiFont.zip;#MyName"/>

如果您的字体位于名为“Fonts”的子目录中,则只需在其中使用该字体:

"/YourAppName;component /Fonts/HindiFont.zip;#MyName"

You need to specify it as a component and without the "LM.TTF", like this:

<TextBlock x:Name="tDisplay" FontFamily="YourAppName;component/HindiFont.zip;#MyName"/>

If you have your fonts in a sub-directory like one named "Fonts", just use that inside:

"/YourAppName;component/Fonts/HindiFont.zip;#MyName"

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文