Winform跨線程操作控制項,採用擴充方法適配.NET 2.0,C#封裝委託方法__.net

來源:互聯網
上載者:User

備忘。

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 System.Runtime.CompilerServices{    [AttributeUsageAttribute(AttributeTargets.Assembly | AttributeTargets.Class | AttributeTargets.Method)]    public sealed class ExtensionAttribute : Attribute { }}namespace 無響應進程{    public partial class Form1 : Form    {        public Form1()        {            InitializeComponent();        }        private void Form1_Load(object sender, EventArgs e)        {            button1.MyInvoke(() => { button1.Text = ""; });        }    }    /// <summary>    /// 擴充方法必須在非泛型靜態類中定義    /// </summary>    static class MyExtension    {        /// <summary>        /// 跨線程操作控制項,在控制項上執行委託。調用方法樣本:button1.MyInvoke(() => { button1.Text = ""; });        /// </summary>        /// <param name="ctl">控制項</param>        /// <param name="dlg">委託</param>        public static void MyInvoke(this Control ctl, ThreadStart dlg)        {            if (dlg == null) return;            if (!ctl.IsHandleCreated || ctl.IsDisposed || ctl.Disposing) return;            if (ctl.InvokeRequired)                ctl.Invoke(dlg, null);            else                dlg();        }    }}


聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.