Destroying Frame Windows

OverviewHow Do ITutorial

The MFC framework manages window destruction as well as creation for those windows associated with framework documents and views. If you create additional windows, you are responsible for destroying them.

In the framework, when the user closes the frame window, the window’s default handler calls . The last member function called when the Windows window is destroyed is , which does some cleanup, calls the member function to perform Windows cleanup, and lastly calls the virtual member function . The implementation of PostNcDestroy deletes the C++ window object. You should never use the C++ delete operator on a frame window. Use DestroyWindow instead.

When the main window closes, the application closes. If there are modified unsaved documents, the framework displays a message box to ask if the documents should be saved and ensures that the appropriate documents are saved if necessary.

What do you want to know more about?