Ejemplo n.º 1
0
 public void DrawImage(GraphicsHandler graphics, float x, float y)
 {
     graphics.Control.DrawBitmap(Control, x, y, paint: null);
 }
Ejemplo n.º 2
0
 public void DrawImage(GraphicsHandler graphics, float x, float y, float width, float height)
 {
     graphics.Control.DrawBitmap(Control, null, new RectangleF(x, y, width, height).ToAndroid(), paint: null);
 }
Ejemplo n.º 3
0
 public void DrawImage(GraphicsHandler graphics, RectangleF source, RectangleF destination)
 {
     graphics.Control.DrawBitmap(Control, new Rectangle(source).ToAndroid(), destination.ToAndroid(), paint: null);
 }