c#多線程操作Windows Forms控制項

來源:互聯網
上載者:User

在Windows Forms編程中涉及到的多線程操作,多個線程來更新Forms上的控制項,比如textbox等。但是如果你直接線上程中更新textbox的text屬性是會報錯的。因為textbox是主線程建立的,子線程訪問的時候就會報錯。

 

解決方案如下,建立一個Windows Forms項目,拖拉一個textbox和button就可以。

點擊button來啟動線程,線上程中修改textbox的值。

這需要使用委託類

//啟動線程

private void button1_Click(object sender, EventArgs e)
        {
            Thread thread = new Thread(new ThreadStart(Test));
            thread.Start();
        }

delegate void add();//委託

public void Test()
        {
            this.BeginInvoke(new add(dd));
        }

public void dd();//委託方法
        {
            this.textBox1.Text = "AA";
        }

這樣就可以實現。

 

當然委託和委託方法可以再設計一下,可以輸入一個參數。修改後的代碼如下:

delegate void add(string input);

        private void button1_Click(object sender, EventArgs e)
        {
            Thread thread = new Thread(new ThreadStart(Test));
            thread.Start();
        }
        public void Test()
        {
            this.BeginInvoke(new add(dd),new object[]{"我暈死了,原來這樣啊"});//注意第二個參數,委託方法的參數就是在這個地方輸入。委託方法中不用轉換就直接是字串了
        }

        public void dd(string input)
        {
            this.textBox1.Text = input;
        }

 

再附加一個寫listbox的例子。就是開啟一個線程以後在listbox中寫入累加的數字

//聲明線程對象

 System.Threading.Thread thread1 = null;

//建立線程並開啟

thread1 = new Thread(startThread1);
            thread1.IsBackground = true;
            thread1.Start();

//建立委派物件

delegate void AddList(object o);
//委託用的方法
        public void AddListMethod(object o)
        {
            this.listBox1.Items.Add(o.ToString());
        }
//線程調用的方法
        public void startThread1()
        {
            for (int n = 0; n < 10000; n++)
            {

                this.textBox1.BeginInvoke(new AddList(AddListMethod),new object[]{n});
                System.Threading.Thread.Sleep(100);//這個地方只是為了防止線程運行太快,數字會慢慢在listbox上顯示
            }
        }

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.