C# Socket Class
C#/Winform 2021. 10. 13. 10:58
'C# > Winform' 카테고리의 다른 글
Winform Socket Receive Textbox Value Assignment Not Work (0) | 2021.08.10 |
---|
'C#/Winform'에 해당되는 글 2건C# Socket ClassC#/Winform 2021. 10. 13. 10:58
'C# > Winform' 카테고리의 다른 글
Winform Socket Receive Textbox Value Assignment Not WorkC#/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' 카테고리의 다른 글
|