Anti-alised text in Windows Forms

  • Thread starter Thread starter aagarwal8
  • Start date Start date
A

aagarwal8

Hi,

My requirement is to display anit-aliased text across my application.
The technique that MSDN provides for rendering anti-aliased text, can
be used when drawing individual text strings. However, i want that
which ever label, button text i set, it should be rendered anit-
aliased.

Any info on how this can be done suing C# / VB.Net

Regards,
Ankit!!
 
Hi,

My requirement is to display anit-aliased text across my application.
The technique that MSDN provides for rendering anti-aliased text, can
be used when drawing individual text strings. However, i want that
which ever label, button text i set, it should be rendered anit-
aliased.

By default, WinForms controls will use system-wide font antialiasing
setting - if you set it to "ClearType" (in Display Properties ->
Effects), they will be antialiased.
 
Back
Top