Ejemplo n.º 1
0
 public EffectScreenshot(Fullscreen fs, FindWindows.Window window, int x, int y, int width, int height)
 {
     _fs = fs;
     _window = window;
     _x = x;
     _y = y;
     _width = width;
     _height = height;
 }
Ejemplo n.º 2
0
 public EffectTransparentScreenshot(Fullscreen fs, FindWindows.Window window, int x, int y, int width, int height, EffectBackground background)
 {
     _fs = fs;
     _window = window;
     _x = x;
     _y = y;
     _width = width;
     _height = height;
     _effectBackground = background;
 }
Ejemplo n.º 3
0
 public EffectScreenshot(Fullscreen fs, FindWindows.Window window, int x, int y, int width, int height, EffectBackground background)
     : this(fs, window, x, y, width, height)
 {
     _effectBackground = background;
 }