This probably seems like a strange question, but I'm having trouble seeing a custom true-type font that I've loaded as a resource in my WPF application, and I'm wondering if it may have to do with the space in the font name.
As described elsewhere (one of hundreds of examples), I've added the font to a folder Fonts
in my application, and set it to Build Action
= Resource
. I'm able to reference the font (e.g., in a TextBlock
) with a simple FontFamily="Fonts\#My Font"
.
Unfortunately, the font only shows up at run time, not in the XAML designer (contrary to most people's problems). However, as explained here, this author had a similar problem with the font Open Sans
, and if I install the font on my system, as he did, I can see it at design time.
But I'd rather not force developers to install the font on their system. I noticed that, like the author above, I don't have this problem with a few custom fonts that have names without spaces. So I'm wonder if this is perhaps a bug in Visual Studio (I'm using Community 2013). Has anyone been able to get this to work with a font whose name contains a space? Or has anyone found a more satisfying workaround (e.g., way to reference the font without the space akin to Windows short files names)?