请教怎样实现。
Code Snippet
private void button1_Click(object sender, EventArgs e)
{
Thread t1 = new Thread(new ThreadStart(testa));
t1.IsBackground = true;
t1.Start();
}
private void testa()
{
Invoke(new MethodInvoker(Setmsg()));
}
private void Setmsg()
{
label1.Text = "显示内容";
}
WINDOWS下可以象上面那样实现,但在WINCE下没有MethodInvoker?不知道如何实现。