Ejemplo n.º 1
0
        private void Capture()
        {
            Bitmap bmp = ScreenSnap.ScreenSnapshot();

            if (this.CaptureMouse)
            {
                bmp = ScreenSnap.PlaceCursor(bmp);
            }
            //this.screenLog.Enqueue(bmp);
            this.screenLog = bmp;
        }
Ejemplo n.º 2
0
        private void Capture()
        {
            Bitmap bmp = ScreenSnap.ScreenSnapshot();

            if (this.CaptureMouse)
            {
                bmp = ScreenSnap.PlaceCursor(bmp);
                IntPtr hCursor = ScreenSnap.CheckCursorChanged();
                if (hCursor != IntPtr.Zero)
                {
                    this.CursorChanged(hCursor);
                }
            }
            //this.screenLog.Enqueue(bmp);
            this.screenLog = bmp;
        }