上传者: 38629303
|
上传时间: 2022-02-27 11:34:55
|
文件大小: 22KB
|
文件类型: -
本文实例讲述了C#中WPF使用多线程调用窗体组件的方法。分享给大家供大家参考。具体如下:
Thread thread=new Thread(new ThreadStart(TestThread));
thread.Start();
private void TestThread()
{
for (int i = 0; i { this.listBox1.Items.Add(this is a test!!!); }