本文介绍了以一种形式创建并以另一种形式进入的线程.的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

以form2编写的代码:-

code written in form2:-

private void Form2_Load(object sender, EventArgs e)
       {
           for (int i = 0; i < 1000; i++)
           {
               str=i.ToString();
               object o = (object)str;
               listBox1.Items.Add(i.ToString());
               Thread t = new Thread(new ParameterizedThreadStart(Form1.MyMethod));
               t.Start(o);
           }
       }


以form1编写的代码:-


code written in form1:-

public static void MyMethod(object o)
       {
           string str = (string)o;
           listBox1.Items.Add(str);
       }


我如何并行运行这两种形式并以两种形式并行显示i值.


how can i run these two forms in parallel and display the i values paralelly in two forms.

推荐答案


这篇关于以一种形式创建并以另一种形式进入的线程.的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

05-16 01:35