ScreenToGif.Modern.DelayUpdate C# (CSharp) 메소드

DelayUpdate() 개인적인 메소드

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

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

            #endregion
        }
Modern