C# - Thread에서 Progressbar 값을 변경하기

Thread 안에서 ProgressBar 의 값을 바꿔도.. 값은 바뀌어 있지만 UI에는 바뀌지 않습니다. 이때는 아래와 같이 delegate를 사용하시기 바랍니다.// Delegate function void UpdateProgressSafe(int value) { this.progressBar1.Value = value; } // The…

Thread 안에서 ProgressBar 의 값을 바꿔도.. 값은 바뀌어 있지만 UI에는 바뀌지 않습니다. 이때는 아래와 같이 delegate를 사용하시기 바랍니다.// Delegate function void UpdateProgressSafe(int value) { this.progressBar1.Value = value; } // The…