Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. General Programming
  3. C#
  4. Force ClearType Text Rendering for TextBox Control

Force ClearType Text Rendering for TextBox Control

Scheduled Pinned Locked Moved C#
graphicsquestion
2 Posts 2 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • O Offline
    O Offline
    occcy
    wrote on last edited by
    #1

    Hi! Is there any way to force ClearType text rendering (regardless of the current windows settings) for a System.Windows.Forms.TextBox control? Custom drawing of a textbox (OnPaint, Message Handling etc.) doesn't work. Thanks in advance!

    E 1 Reply Last reply
    0
    • O occcy

      Hi! Is there any way to force ClearType text rendering (regardless of the current windows settings) for a System.Windows.Forms.TextBox control? Custom drawing of a textbox (OnPaint, Message Handling etc.) doesn't work. Thanks in advance!

      E Offline
      E Offline
      eonsimi
      wrote on last edited by
      #2

      the post it's rather old but i'll write an answer anyway for others to see it .. so here it is: by overriding the OnPaint method should work just fine, subclass the textbox class and in the constructor add the UserPaint style like this:

      this.SetStyle(ControlStyles.UserPaint, true);

      after that, override the OnPaint method and add the following line:

      e.Graphics.TextRenderingHint = TextRenderingHint.ClearTypeGridFit;

      now you may use e.Graphics.DrawString(this.Text, ...) to paint the text.

      NO. Layers. Onions have layers. Ogres have layers. Onions have layers. You get it? We both have layers.

      1 Reply Last reply
      0
      Reply
      • Reply as topic
      Log in to reply
      • Oldest to Newest
      • Newest to Oldest
      • Most Votes


      • Login

      • Don't have an account? Register

      • Login or register to search.
      • First post
        Last post
      0
      • Categories
      • Recent
      • Tags
      • Popular
      • World
      • Users
      • Groups