线程间操作无效: 从不是创建控件的线程访问它
摘要:public Form1() { InitializeComponent(); } private void button1_Click(object sender, EventArgs e) { Thread t = new Thread(SetTextBox); t.Start(); } private void SetTextBox() { //textBox1.Text = @"smart";//exc...
阅读全文
posted @ 2011-09-27 15:13