从另一个类和线程更新UI项

从另一个类和线程更新UI项

private void UpdateChat(string message){ if(this.InvokeRequired) { this.Invoke(new MethodInvoker(delegate { lstChat.Items.Insert(lstChat.Items.Count, message); lstChat.SelectedIndex = lstChat.Items.Count - 1; lstCat.Refresh(); })); } else { lstChat.Items.Insert(lstChat.Items.Count, message); lstChat.SelectedIndex = lstChat.Items.Count - 1; lstCat.Refresh(); }} 这篇关于从另一个类和线程更新UI项的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持! 上岸,阿里云!
07-29 12:56