TextRenderingHintGraphics.cs 706 B

123456789101112131415161718192021222324
  1. using System;
  2. using System.Drawing;
  3. using System.Drawing.Text;
  4. namespace LYFZ.OtherExpansion.SkinClass
  5. {
  6. public class TextRenderingHintGraphics : IDisposable
  7. {
  8. private Graphics _graphics;
  9. private TextRenderingHint _oldTextRenderingHint;
  10. public TextRenderingHintGraphics(Graphics graphics) : this(graphics, TextRenderingHint.AntiAlias)
  11. {
  12. }
  13. public TextRenderingHintGraphics(Graphics graphics, TextRenderingHint newTextRenderingHint)
  14. {
  15. this._graphics = graphics;
  16. this._oldTextRenderingHint = graphics.TextRenderingHint;
  17. this._graphics.TextRenderingHint = newTextRenderingHint;
  18. }
  19. public void Dispose()
  20. {
  21. this._graphics.TextRenderingHint = this._oldTextRenderingHint;
  22. }
  23. }
  24. }