System.Drawing.BufferedGraphics
Provides a graphics buffer for double buffering.
namespace System.Drawing
{
public sealed class BufferedGraphics : IDisposable
{
public Graphics Graphics { get; }
public void Dispose();
public void Render(Graphics target);
public void Render();
public void Render(IntPtr targetDC);
}
}