C#
2020.08.02 21:26
textBox InvokeRequired
조회 수 3250 추천 수 0 댓글 0
if (txt_Output.InvokeRequired == true)
{
txt_Output.Invoke(new MethodInvoker(delegate () { txt_Output.AppendText(msg); }));
}
else
{
txt_Output.AppendText(msg);
}