WINFORM调用子窗体确认后刷新父窗体

父窗体调用子窗体事件后操作: 

 if (new DrugSendSet().ShowDialog() == DialogResult.OK)
            {

       刷新事件--------

     }

子窗体完成事件后确认后操作:

     this.DialogResult = DialogResult.OK;

原文地址:https://www.cnblogs.com/leischen/p/2278565.html