NativePaintArgs.cs 515 B

123456789101112131415161718192021
  1. namespace IndexFormula.Finance
  2. {
  3. using System;
  4. using System.Drawing;
  5. public class NativePaintArgs
  6. {
  7. public System.Drawing.Graphics Graphics;
  8. public Bitmap NativeBitmap;
  9. public Bitmap NewBitmap;
  10. public Rectangle Rect;
  11. public NativePaintArgs(System.Drawing.Graphics graphics, Rectangle Rect, Bitmap NativeBitmap)
  12. {
  13. this.Graphics = graphics;
  14. this.Rect = Rect;
  15. this.NativeBitmap = NativeBitmap;
  16. }
  17. }
  18. }