Is there a way to use ClearType text in an application using the .NET Compact Framework?
+3
A:
Simply enable ClearType for the platform by setting the following registry entry:
[HKEY_LOCAL_MACHINE\SYSTEM\GDI\Cleartype]
"Default"=dword:00000001
ctacke
2010-01-09 01:27:19
+4
A:
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()
.
Johann Gerell
2010-01-09 23:38:47
Thanks, that is exactly what I was looking for. I appreciate both of you guys help.
CJCraft.com
2010-01-11 15:50:18