ScreenToGif.Modern.DelayUpdate C# (CSharp) Method

DelayUpdate() private method

Updates the label that shows the delay of the current frame
private DelayUpdate ( ) : void
return void
        private void DelayUpdate()
        {
            #region Delay Display

            _delay = _listDelayEdit[trackBar.Value];
            lblDelay.Text = _delay + " ms";

            #endregion
        }
Modern