2013年4月21日
摘要: public void SetText<T>(T control, string text) where T : Control{if (control.InvokeRequired)control.Invoke(new Action<Control, String>(SetText), new Object[] { control, text });elsecontrol.Text = text;}/////////////////委托delegate void SetEnableCallback(System.Windows.Forms.Control objCtr 阅读全文
posted @ 2013-04-21 08:08 武胜-阿伟 阅读(224) 评论(0) 推荐(0) 编辑