GetImage() public method

public GetImage ( ) : System.Windows.Media.Imaging.BitmapSource
return System.Windows.Media.Imaging.BitmapSource
 public void setTool(GenericWindow gen)
 {
     this.DataContext = current = gen;
     current.Disposing += Current_Disposing;
     BitmapSource bitmap = gen.GetImage();
     double scale = screenShot.Width / (bitmap.Width > bitmap.Height ? bitmap.Width : bitmap.Height);
     screenShot.Source = new TransformedBitmap(bitmap, new ScaleTransform(scale, scale));
 }
        public void setTool(GenericWindow gen)
        {
            this.DataContext   = current = gen;
            current.Disposing += Current_Disposing;
            BitmapSource bitmap = gen.GetImage();
            double       scale  = screenShot.Width / (bitmap.Width > bitmap.Height ? bitmap.Width : bitmap.Height);

            screenShot.Source = new TransformedBitmap(bitmap, new ScaleTransform(scale, scale));
        }