示例#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);
        }
示例#2
0
 public void DrawImage(GraphicsHandler graphics, float x, float y, float width, float height)
 {
     graphics.Control.DrawImage(Control, x, y, width, height);
 }
示例#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);
        }
示例#4
0
 public void DrawImage(GraphicsHandler graphics, RectangleF source, RectangleF destination)
 {
     graphics.Control.DrawImage(Control, destination.ToSD(), source.ToSD(), SD.GraphicsUnit.Pixel);
 }
示例#5
0
 public void DrawImage(GraphicsHandler graphics, float x, float y)
 {
     graphics.Control.DrawImage(Control, x, y);
 }
示例#6
0
 public void Create(int width, int height, Graphics graphics)
 {
     Control = new SD.Bitmap(width, height, GraphicsHandler.GetControl(graphics));
 }
示例#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);
        }
示例#8
0
        public void DrawImage(GraphicsHandler graphics, float x, float y)
        {
            var image = GetLargestIcon().ToBitmap();

            graphics.Control.DrawImage(image, x, y);
        }
示例#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);
        }
示例#10
0
        public void DrawImage(GraphicsHandler graphics, float x, float y)
        {
            var image = GetIdealIcon().Bitmap;

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