I want my WP7 app controls and to have a certain font which is not in Visual studio font selection, how can I add the font to the font list of Visual studio or directly into my controls?

link|improve this question

69% accept rate
feedback

2 Answers

up vote 2 down vote accepted

Here's a post showing how to embed fonts in a silverlight project (see the section 'Custom Fonts'): http://blogs.silverlight.net/blogs/msnow/archive/2009/09/09/97060.aspx

I haven't tested this in a windows phone project but it should work.

link|improve this answer
feedback

This can be easily done using Expression Blend.

In your project, select a TextBlock and go to the Properties panel, under Text section, there is a Font Manager button (see below), click it and then you can select the font you want in a popup window.

Expression Blend will automatically create a Fonts folder and put all the embedded fonts in there, really easy to use. :)

enter image description here

link|improve this answer
1  
Blend font embedding is the way to go. You can create glyph subsets, etc. and then compress everything into a single zip file for you. VS won't do any of that. – Mike Post Nov 10 '11 at 22:56
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.