將表單事件滯留在另一表單中。如何以其他形式正確收聽表單事件
當我嘗試關閉Form2時,Form1上沒有任何反應。當Form2關閉時,我想在Form1中做些什麼。
這是我爲Form1
代碼public partial class Form1: Form
{
public Form1()
{
InitializeComponent();
Form2 frm2= new Form2();
frm2.FormClosing += new FormClosingEventHandler(frm2_FormClosing);
}
void frm2_FormClosing(object sender, FormClosingEventArgs e)
{
throw new NotImplementedException();
}