标签:style blog io color os 使用 sp on div
主窗体创建的控件相当于主线程管理,在分线程使用的时候会产生跨线程访问的问题,这时需要如下判断写法,即可解决
if (lblNum2.InvokeRequired) { lblNum2.Invoke(new Action<string>(s => { this.lblNum2.Text = s; }), Thread.CurrentThread.ManagedThreadId.ToString()); } else { this.lblNum2.Text = Guid.NewGuid().ToString("N"); }
标签:style blog io color os 使用 sp on div
原文地址:http://www.cnblogs.com/llcdbk/p/4128065.html