windows form 在其他執行緒更新 UI

例如要更新label1
this.label1.Invoke((MethodInvoker)delegate {
  label1.Text = "123";
});
 

留言

熱門文章