如题 this.Dispatcher.Invoke(delegate { MessageBox.Show("ok"); this.pb1.Value = 0; }); 现在两句话如何隔离 this.Dispatcher.Invoke(()=> MessageBox.Show("ok") this.pb1.Value = 0 ); |
|
20分 |
this.Dispatcher.Invoke(()=>{ MessageBox.Show("ok"); this.pb1.Value = 0;} ); 这是送分题么…… |
百度不到吗 也只能送分了。 我怎么就没想到用大括号呢 逗号 圆括号都试过了 。。。 |