2011年9月27日

线程间操作无效: 从不是创建控件的线程访问它

摘要: 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 雨渐渐 阅读(220) 评论(0) 推荐(0) 编辑

导航