Handler for the Graphics.IHandler
Inheritance: Eto.Drawing.Graphics.Eto.Mac.Forms.MacBase, Graphics.IHandler
Ejemplo n.º 1
0
 public abstract void DrawImage(GraphicsHandler graphics, RectangleF source, RectangleF destination);
Ejemplo n.º 2
0
 public virtual void DrawImage(GraphicsHandler graphics, float x, float y)
 {
     DrawImage(graphics, x, y, Size.Width, Size.Height);
 }
Ejemplo n.º 3
0
 public virtual void DrawImage(GraphicsHandler graphics, float x, float y, float width, float height)
 {
     DrawImage(graphics, new RectangleF(Size), new RectangleF(x, y, width, height));
 }
Ejemplo n.º 4
0
 public override void DrawImage(GraphicsHandler graphics, RectangleF source, RectangleF destination)
 {
     UpdateBitmap();
     bmp.DrawImage(graphics, source, destination);
 }