Reputation: 54300
I'm using the standard .NET FontDialog to allows users to select fonts, but it's not showing all available fonts. For example, we have installed Helvetica and that's not showing. The Helvetica is a TTF if that makes a difference.
Is there any way I can get it show all available fonts?
Thanks in advance.
P.S. I'm using .NET 3.5
Upvotes: 2
Views: 849
Reputation: 942408
The dialog filters fonts that won't work in GDI+. Device fonts and OpenType fonts won't show up, only TrueType fonts are supported. The Helvetica font is published by Adobe, that would make it highly likely to be an OpenType font. You would have to switch to WPF to be able to use this font.
Upvotes: 3