c# sleep1 Thread.Sleep 시 UI 멈추는 현상 해결 private static DateTime Delay(int MS){DateTime ThisMoment = DateTime.Now;TimeSpan duration = new TimeSpan(0, 0, 0, 0, MS);DateTime AfterWards = ThisMoment.Add(duration);while (AfterWards >= ThisMoment){System.Windows.Forms.Application.DoEvents();ThisMoment = DateTime.Now;}return DateTime.Now;} 위 함수로 대신사용 출처 : http://bananamandoo.tistory.com/27 2015. 11. 8. 이전 1 다음