首页 > 代码库 > winform 跨线程访问控件
winform 跨线程访问控件
using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Forms; namespace WindowsFormsApplication1 { public partial class Form1 : Form { delegate void DelShow(string strInput); DelShow delShow = null; public Form1() { InitializeComponent(); delShow =new DelShow(MyShow); //Control.CheckForIllegalCrossThreadCalls = false; } private void btnTest_Click(object sender, EventArgs e) { System.Threading.Thread t1 = new System.Threading.Thread(() => { if(this.InvokeRequired) { #region 方式一 //this.Invoke(new Action<string>(s => { this.label1.Text = s; }),"bbb"); #endregion #region 方式二 this.Invoke(delShow, "ccc"); #endregion } else { this.label1.Text = "aaa"; } }); t1.IsBackground = true; t1.Start(); } private void MyShow(string strInput) { this.label1.Text = strInput; } } }
winform 跨线程访问控件
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。