I'm working on my Pivot header (UWP-Project) and wanted to add a custom glyph: From here:
<FontIcon FontFamily="Segoe MDL2 Assets" Glyph="" RenderTransformOrigin="0.5,0.5">
Now I want to use custom (or other Glyphs) for example from Fontawesome.
Here the steps:
- Added fontawesome.ttf to my project
- Changed
FontFamily="Segoe.."
toFontFamily="../Resources/#FontAwesome"
- Changed Glyph to
Glyph=""
But instead of the Glyph I'm getting just a empty rectangle. What did I do wrong? Is it maybe not possible in UWP-Projects? This solution here did not help me.