protected override void OnClosing(CancelEventArgs e)
{
base.OnClosing(e); // here?
if (cancelCondition)
{
base.OnClosing(e); // or here?
e.Cancel = true;
base.OnClosing(e); // or here?
}
base.OnClosing(e); // or here?
}
我尝试了几个不同的地方,它似乎在任何地方都可以工作,只是想知道它是否重要。base.OnClosing(e);
实际上有什么作用吗?