I have a WPF application where I use icons from the font "Segoe UI Symbol". But when deploying to Windows 7 I realize the icons are missing because the font is updated in Windows 8.
I tried to embed font in WPF application as a resource following these instructions: http://msdn.microsoft.com/en-us/library/ms753303.aspx But it does not work.
Initially I had:
<TextBlock FontFamily="Segoe UI Symbol">
which works fine on Windows 8 computer. Then I added seguisym.ttf to directory "_Resources" and then use:
<TextBlock FontFamily="./_Resources/#Segoe UI Symbol">
This does not work on neither Windows 8 or Windows 7! I tried different settings for BuildAction: Resource, Embedded Resource and Content, but none of them work.