Winform Socket Receive Textbox Value Assignment Not Work
C#/Winform 2021. 8. 10. 09:35Winform 외부에서 textBox 값 변경할때
값 안 바뀌고 가만히 있으면
this.textBox.Text = msg;//이렇게 쓰지말고
this.textBox.Invoke(new Action(() => textBox.Text = msg));//이렇게써
https://bufferover.tistory.com/3
'C# > Winform' 카테고리의 다른 글
C# Socket Class (0) | 2021.10.13 |
---|