我正在使用Windows窗体应用程序中的Visual Studio 2010设计一个程序,我想要一个在我的窗体关闭时运行的函数。如何添加正确的事件处理程序?
我想要一个像这样的事件处理程序:
this-> Resize + = gcnew System :: EventHandler(this,& Main :: Main_Resize);
答案 0 :(得分:0)
您的表单类中有Closing
或Closed
个事件,您可以在其中调用您的函数。
示例(C#):
Form1 f;
f.Closing += new FormClosingEventHandler(f_Closing);
和你的职能:
private void f_closing(object sender, EventArgs e)
{
// your function
}