关闭父窗体时获取用户控件

时间:2016-03-15 11:22:52

标签: c# winforms user-controls

我在Windows窗体中有一个用户控件(父窗体)。在父表单关闭时,我需要在UserControl中显示网格。用户控件没有关闭按钮。在Form关闭时,usercontrol正在处理,我无法再获取datagridview。

form_closing事件中处理之前,是否有办法获取用户控件?或者在父表单关闭时,usercontrol中的任何事件都会触发?

尝试过这一次......但没有用?

void UserControl1_Load(object sender, EventArgs e) 
{
    this.ParentForm.FormClosing += new  FormClosingEventHandler(ParentForm_FormClosing);
}

0 个答案:

没有答案