開通VIP,暢享免費(fèi)電子書等14項(xiàng)超值服
首頁
好書
留言交流
下載APP
聯(lián)系客服
2013.07.16
測(cè)試示例
網(wǎng)上的資料很多,這里直接摘抄。
1、關(guān)閉跨線程檢查。
2、通過委托的方式,在控件的線程上執(zhí)行。
具體的代碼如下:
using System;using System.Threading;using System.Windows.Forms;namespace WindowsFormsApplication1{ public partial class Form2 : Form { public Form2() { InitializeComponent(); //方法一:不進(jìn)行跨線程安全檢查 CheckForIllegalCrossThreadCalls = false; } private void button1_Click(object sender, EventArgs e) { Thread th1 = new Thread(new ThreadStart(CalNum)); th1.Start(); } private void CalNum() { SetCalResult(DateTime.Now.Second); } //方法二:檢查是否跨線程,然后將方法加入委托,調(diào)用委托 public delegate void SetTextHandler(int result); private void SetCalResult(int result) { if (label2.InvokeRequired == true) { SetTextHandler set = new SetTextHandler(SetCalResult);//委托的方法參數(shù)應(yīng)和SetCalResult一致 label2.Invoke(set, new object[] { result }); //此方法第二參數(shù)用于傳入方法,代替形參result } else { label2.Text = result.ToString(); } } }}
在我的Winform程序中,子線程涉及到對(duì)多個(gè)控件的更改,于是封裝了一下,我這里使用的是拓展方法,只有在.net 3.5上才能支持,如果是.net2.0的環(huán)境,需要添加
namespace System.Runtime.CompilerServices{ [AttributeUsage(AttributeTargets.Method | AttributeTargets.Class | AttributeTargets.Assembly)] public class ExtensionAttribute : Attribute { }}
封裝如下:
using System.Threading;using System.Windows.Forms;namespace WindowsFormsApplication1{ public static class Class1 { /// <summary> /// 跨線程訪問控件 在控件上執(zhí)行委托 /// </summary> /// <param name="ctl">控件</param> /// <param name="del">執(zhí)行的委托</param> public static void CrossThreadCalls(this Control ctl, ThreadStart del) { if (del == null) return; if (ctl.InvokeRequired) ctl.Invoke(del, null); else del(); } }}
具體的測(cè)試如下:
using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Text;using System.Threading;using System.Windows.Forms;namespace WindowsFormsApplication1{ public partial class Form1 : Form { public Form1() { InitializeComponent(); } private void button1_Click(object sender, EventArgs e) { var th = new Thread(() => { //label1.Enabled = false; label1.CrossThreadCalls(() => { label1.Enabled = !label1.Enabled; }); WriteMessage(DateTime.Now.ToString()); }); th.IsBackground = true; th.Start(); } public void WriteMessage(string msg) { label1.CrossThreadCalls(() => { label1.Text = msg; }); } }}
這樣一行代碼就可以完成跨線程訪問啦。
微信登錄中...請(qǐng)勿關(guān)閉此頁面