WPF、WinForm(C#)マルチスレッドプログラミングとインタフェースの更新(UI)
ここ数日またマルチスレッドを振り回し始めて、長い間忘れないで、忘れないようにするために、特に1つの精典の例を所蔵して、原文はフォーラムから出て、WinFormに適用します.しかし、WPFは少し異なり、特に本文に1行追加され、注記されている.
原文:http://topic.csdn.net/u/20101206/18/2bc62315-2e58-47a9-97be-107710592ab8.html?r=70399587
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Drawing;
using System.Linq;
using System.Windows.Forms;
using System.Threading;
namespace doWorker
{
public partial class Form1 : Form
{
delegate void MyDelegate(int value);
Thread t;
int i = 0;
public Form1()
{
InitializeComponent();
}
// “ ”
private void button1_Click(object sender, EventArgs e)
{
t = new Thread(doWork);
t.Start();
}
//
void doWork()
{
MyDelegate d = new MyDelegate(setValue);
while (true)
{
++i;
//---WinForm--
this.Invoke(d, i);
//----WPF---added by wonsoft.cn---
this.Dispatcher.Invoke(d, i);
Thread.Sleep(100);
}
}
//
void setValue(int value)
{
label1.Text = value.ToString();
}
//
private void button2_Click(object sender, EventArgs e)
{
t.Abort();
}
}
}
原文:http://topic.csdn.net/u/20101206/18/2bc62315-2e58-47a9-97be-107710592ab8.html?r=70399587