ScreenToGif.Modern.FinishState C# (CSharp) Method

FinishState() private method

Do all the work to set the controls to the finished state. (i.e. Finished encoding)
private FinishState ( ) : void
return void
        private void FinishState()
        {
            this.Cursor = Cursors.Default;
            //panelTransparent.Visible = true;
            panelBottom.Visible = true;
            _stage = Stage.Stopped;
            this.MinimumSize = new Size(100, 100);
            this.Size = _lastSize;

            numMaxFps.Enabled = true;
            tbHeight.Enabled = true;
            tbWidth.Enabled = true;
            btnMaximize.Enabled = true;
            btnMinimize.Enabled = true;

            btnRecordPause.Text = Resources.btnRecordPause_Record;
            btnRecordPause.Image = Resources.Record;
            btnRecordPause.ImageAlign = ContentAlignment.MiddleLeft;

            AutoFitButtons();

            this.Invalidate(this.DisplayRectangle);
        }
Modern