OnClosing and OnClosed events

Started by
1 comment, last by remigius 13 years, 6 months ago
I'm using C# .NET in VS 2008.
I'm creating a Windows.Form.
Plz tell me the difference between OnClosed and OnClosing event.
Advertisement
Not DirectX related; moving to General Programming.

The OnClosing is fired when the form is in the process of closing (after clicking on the Close button for example) but before the form is actually closed. This gives applications a chance to for example ask if the user wants to save the current document and cancel the closing of the form if the program requires it. OnClosed fires when the form is actually closed, which can be useful to do some cleanup.

You might want to read up on the obsolescence notice regarding these events though.
Rim van Wersch [ MDXInfo ] [ XNAInfo ] [ YouTube ] - Do yourself a favor and bookmark this excellent free online D3D/shader book!

This topic is closed to new replies.

Advertisement