IPaintBackground.cs 168 B

123456789
  1. using System.Drawing;
  2. namespace PaintDotNet
  3. {
  4. public interface IPaintBackground
  5. {
  6. void PaintBackground(Graphics graphics, Rectangle clipRect);
  7. }
  8. }