I tried to add a custom font into my application. I need it for the page title. I copied the font to a folder named \"Fonts\" and changed the build action to Content. In the pro
If the font is located in your main WP8 project, you don't need to use the /AppName;component path. Also make sure the Dekers_Bold is actually name of the font, you should maybe try DekersBold or just Dekers:
FontFamily="/Assets/Fonts/Dekers_Bold.ttf#DekersBold"
If this is not working, try to add your font as resources first:
/Assets/Fonts/Dekers_Bold.ttf#DekersBold
...