R – Compact Framework and ClearType text

cleartypecompact-frameworkwindows-mobile

Is there a way to use ClearType text in an application using the .NET Compact Framework?

Best Answer

To add to ctacke's answer: You can create a font with ClearType quality on a need-to basis by setting the Quality property of Microsoft.WindowsCE.Forms.LogFont to LogFontQuality.ClearType and use it to create the font with Font.FromLogFont().

Related Topic