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; using System.Threading;//引用线程的命名空间 namespace WindowsFormsApplication1 { public partial class Form1 : Form { public Form1() { InitializeComponent(); } private void Form1_Load(object sender, EventArgs e) { Thread th = new Thread(new ThreadStart(aa)); th.Start(); } //创建委托 private delegate void SetBut(); void aa() { SetBut sb = new SetBut(weituo); this.Invoke(sb); } void weituo() { button1.Text = "成功了"; } } }
c#在线程中调用窗口控件
原创1473348968 博主文章分类:C#技术 ©著作权
文章标签 c#在线程中调用窗口控件 c#线程 调用窗口控件 文章分类 后端开发
上一篇:js对象
-
C#中跨线程操作控件c# listview 工作 winform 程序开发
-
在线程中操作界面控件
先定义一个委托:public delegate voi
thread object 控件 获取数据 数据