我怎样才能使用这种字体?

How can I use this font?

我想在我的通用 Windows 应用程序中使用自定义 otf 字体,但我无法使用它。

我目前正在 xaml:

中使用它
<TextBlock
    FontSize="16"
    Text="Question"
    FontFamily="../Assets/Fonts/NeoSansStdMedium.otf#Neo Sans Std Medium"/>

字体位于Assets/Fonts,像这样:

Project.Windows (Windows 8.1)
  > Assets
      > Fonts
          > NeoSansStdMedium.otf

而Windows Fontviewer显示字体名称为:

Neo Sans Std Medium

那我做错了什么?

# 之后的字体名称必须与字体名称匹配,在这种情况下显然 Medium 不是名称的一部分...

更多信息:我将 .otf 文件的属性设置为 Build Action: ContentCopy to Output Directory: Do not Copy

XAML 摘录现在看起来像这样:

<TextBlock
    FontSize="16"
    Text="Question"
    FontFamily="../Assets/Fonts/NeoSansStdMedium.otf#Neo Sans Std"/>