zoukankan      html  css  js  c++  java
  • C#委托直接执行方法

    委托作用:把任务托付于某个方法。

    实例:   

      public delegate void ShowMSG();//定义委托获取线程内返回内容

      ShowMSG showmsg = new ShowMSG(BindShop);
      this.Invoke(showmsg);

            //刷新shoptree
            public void BindShop()
            {
                this.shoptreeview.ShopBind();
                eventargs.messageName = "";
                BindComboxCase();
            }

  • 相关阅读:
    Java自学
    java自学
    Java自学
    每日总结
    每日总结
    每日总结
    每日总结
    每日总结
    每日总结
    每日总结
  • 原文地址:https://www.cnblogs.com/YangBinChina/p/2754561.html
Copyright © 2011-2022 走看看