winform使用委托和事件在窗体之间传值
2021-06-03 23:07
标签:使用 gate out res info toc style 目标 obj 定义委托和事件,并且触发这个事件 在目标窗体上,实例化上述窗体 winform使用委托和事件在窗体之间传值 标签:使用 gate out res info toc style 目标 obj 原文地址:https://www.cnblogs.com/siyunianhua/p/10886746.html //定义委托
public delegate void ShowOutStockDelegate(List
FrmEndTask frmEndTask = new FrmEndTask();
//触发这个事件
frmEndTask.ShowOutStockEvent += new FrmEndTask.ShowOutStockDelegate(EndTask_ShowOutStockEvent);
protected void EndTask_ShowOutStockEvent(List
文章标题:winform使用委托和事件在窗体之间传值
文章链接:http://soscw.com/index.php/essay/90165.html