■ 크로스 스레드(Cross Thread)를 처리하는 방법을 보여준다.
▶ 예제 코드 (C#)
1 2 3 4 5 6 7 8 9 |
using System.Windows.Forms; private TextBox textBox; ... this.textBox.Invoke(new Action(() => { this.textBox.Text = "SOME MESSAGE"; })); |
■ 크로스 스레드(Cross Thread)를 처리하는 방법을 보여준다.
▶ 예제 코드 (C#)
1 2 3 4 5 6 7 8 9 |
using System.Windows.Forms; private TextBox textBox; ... this.textBox.Invoke(new Action(() => { this.textBox.Text = "SOME MESSAGE"; })); |