在Winform中實現多線程操作可以通過以下步驟:
以下是一個簡單的示例代碼:
using System;
using System.Threading;
using System.Windows.Forms;
namespace MultiThreadDemo
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
Thread thread = new Thread(new ThreadStart(DoWork));
thread.Start();
}
private void DoWork()
{
for (int i = 0; i < 10; i++)
{
// 模擬耗時操作
Thread.Sleep(1000);
// 更新UI界面
this.Invoke((MethodInvoker)delegate
{
label1.Text = $"Count: {i}";
});
}
}
}
}
在上面的示例中,當點擊button1按鈕時會創建一個新的線程來執行DoWork方法,該方法會在循環中模擬耗時操作并更新UI界面的label控件。通過使用Invoke方法來在主線程中更新UI控件,確保UI操作的線程安全性。