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);
実際に何かをしますか?