码迷,mamicode.com
首页 > Windows程序 > 详细

winform使用委托和事件在窗体之间传值

时间:2019-05-18 21:15:38      阅读:185      评论:0      收藏:0      [点我收藏+]

标签:使用   gate   out   res   info   toc   style   目标   obj   

定义委托和事件,并且触发这个事件

     //定义委托
        public delegate void ShowOutStockDelegate(List<OutStockResultDto> outStockResultDto);
        //定义事件
        public event ShowOutStockDelegate ShowOutStockEvent;
        private void btnConfirm_Click(object sender, EventArgs e)
        {
             ShowOutStockEvent(outStockResultDtos);
        }

在目标窗体上,实例化上述窗体

FrmEndTask frmEndTask = new FrmEndTask();
//触发这个事件
frmEndTask.ShowOutStockEvent += new FrmEndTask.ShowOutStockDelegate(EndTask_ShowOutStockEvent);
protected void EndTask_ShowOutStockEvent(List<OutStockResultDto> outStockResultDtos)
{
 //这里就能拿到你想要的数据了
_outStockResultDtos = outStockResultDtos;
}

 

  

winform使用委托和事件在窗体之间传值

标签:使用   gate   out   res   info   toc   style   目标   obj   

原文地址:https://www.cnblogs.com/siyunianhua/p/10886746.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!