我在Windows窗体中有一个用户控件(父窗体)。在父表单关闭时,我需要在UserControl
中显示网格。用户控件没有关闭按钮。在Form关闭时,usercontrol正在处理,我无法再获取datagridview。
在form_closing
事件中处理之前,是否有办法获取用户控件?或者在父表单关闭时,usercontrol中的任何事件都会触发?
尝试过这一次......但没有用?
void UserControl1_Load(object sender, EventArgs e)
{
this.ParentForm.FormClosing += new FormClosingEventHandler(ParentForm_FormClosing);
}