123456789101112131415161718192021222324 |
- using System;
- using System.Drawing;
- using System.Drawing.Drawing2D;
- namespace LYFZ.OtherExpansion.SkinClass
- {
- public class SmoothingModeGraphics : IDisposable
- {
- private SmoothingMode _oldMode;
- private Graphics _graphics;
- public SmoothingModeGraphics(Graphics graphics) : this(graphics, SmoothingMode.AntiAlias)
- {
- }
- public SmoothingModeGraphics(Graphics graphics, SmoothingMode newMode)
- {
- this._graphics = graphics;
- this._oldMode = graphics.SmoothingMode;
- graphics.SmoothingMode = newMode;
- }
- public void Dispose()
- {
- this._graphics.SmoothingMode = this._oldMode;
- }
- }
- }
|