Anti-alised text in Windows Forms

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • aagarwal8@gmail.com

    Anti-alised text in Windows Forms

    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!!
  • Pavel Minaev

    #2
    Re: Anti-alised text in Windows Forms

    On Jul 18, 11:37 am, aagarw...@gmail .com wrote:
    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.

    Comment

    Working...