委托作用:把任务托付于某个方法。
实例:
public delegate void ShowMSG();//定义委托获取线程内返回内容
ShowMSG showmsg = new ShowMSG(BindShop);
this.Invoke(showmsg);//刷新shoptree
public void BindShop() { this.shoptreeview.ShopBind(); eventargs.messageName = ""; BindComboxCase(); }
本文共 252 字,大约阅读时间需要 1 分钟。
委托作用:把任务托付于某个方法。
实例:
public delegate void ShowMSG();//定义委托获取线程内返回内容
ShowMSG showmsg = new ShowMSG(BindShop);
this.Invoke(showmsg);//刷新shoptree
public void BindShop() { this.shoptreeview.ShopBind(); eventargs.messageName = ""; BindComboxCase(); }
转载地址:http://ttzwa.baihongyu.com/