ScreenToGif.Modern.timerCaptureFull_Tick C# (CSharp) Method

timerCaptureFull_Tick() private method

Takes a screenshot of the entire area and add to the list.
private timerCaptureFull_Tick ( object sender, EventArgs e ) : void
sender object
e EventArgs
return void
        private void timerCaptureFull_Tick(object sender, EventArgs e)
        {
            //Take a screenshot of the entire.
            _gr.CopyFromScreen(0, 0, 0, 0, _sizeResolution, CopyPixelOperation.SourceCopy);
            //Add the bitmap to a list

            _addDel.BeginInvoke(String.Format("{0}{1}.bmp", _pathTemp, _frameCount), new Bitmap(_bt), CallBack, null);

            this.Invoke((Action)(() => this.Text = String.Format("Screen To Gif • {0}", _frameCount)));

            _frameCount++;
        }
Modern