Example #1
0
        public void DrawImage(GraphicsHandler graphics, float x, float y, float width, float height)
        {
            var image = Widget.GetFrame(1f, Size.Ceiling(new SizeF(width, height)));

            graphics.Control.DrawImage(image.Bitmap.ToSD(), x, y, width, height);
        }
Example #2
0
 public void DrawImage(GraphicsHandler graphics, float x, float y, float width, float height)
 {
     graphics.Control.DrawImage(Control, x, y, width, height);
 }
Example #3
0
        public void DrawImage(GraphicsHandler graphics, RectangleF source, RectangleF destination)
        {
            var image = Widget.GetFrame(1f, Size.Ceiling(destination.Size));

            graphics.Control.DrawImage(image.Bitmap.ToSD(), destination.ToSD(), source.ToSD(), sd.GraphicsUnit.Pixel);
        }
Example #4
0
 public void DrawImage(GraphicsHandler graphics, RectangleF source, RectangleF destination)
 {
     graphics.Control.DrawImage(Control, destination.ToSD(), source.ToSD(), SD.GraphicsUnit.Pixel);
 }
Example #5
0
 public void DrawImage(GraphicsHandler graphics, float x, float y)
 {
     graphics.Control.DrawImage(Control, x, y);
 }
Example #6
0
 public void Create(int width, int height, Graphics graphics)
 {
     Control = new SD.Bitmap(width, height, GraphicsHandler.GetControl(graphics));
 }
Example #7
0
        public void DrawImage(GraphicsHandler graphics, float x, float y, float width, float height)
        {
            var image = GetImageWithSize((int)Math.Max(width, height));

            graphics.Control.DrawImage(image, x, y, width, height);
        }
Example #8
0
        public void DrawImage(GraphicsHandler graphics, float x, float y)
        {
            var image = GetLargestIcon().ToBitmap();

            graphics.Control.DrawImage(image, x, y);
        }
Example #9
0
        public void DrawImage(GraphicsHandler graphics, RectangleF source, RectangleF destination)
        {
            var image = GetImageWithSize((int)Math.Max(destination.Width, destination.Height));

            graphics.Control.DrawImage(image, destination.ToSD(), source.ToSD(), SD.GraphicsUnit.Pixel);
        }
Example #10
0
        public void DrawImage(GraphicsHandler graphics, float x, float y)
        {
            var image = GetIdealIcon().Bitmap;

            graphics.DrawImage(image, x, y);
        }