CCT.NUI.Samples.ImageManipulation.InteractiveImage.InteractiveImage C# (CSharp) Method

InteractiveImage() public method

public InteractiveImage ( Bitmap image, int x, int y ) : System
image System.Drawing.Bitmap
x int
y int
return System
        public InteractiveImage(Bitmap image, int x, int y)
            : this(image)
        {
            this.position = new Point(x, y, 0);
            this.originalPosition = new Point(x, y, 0);
            this.originalSize = new Size(image.Width / 3, image.Height / 3);
            this.SetSize(this.originalSize);
        }

Same methods

InteractiveImage::InteractiveImage ( Bitmap image ) : System