Skip to content

Latest commit

 

History

History
23 lines (16 loc) · 1.88 KB

destroying-frame-windows.md

File metadata and controls

23 lines (16 loc) · 1.88 KB
description title ms.date f1_keywords helpviewer_keywords ms.assetid
Learn more about: Destroying Frame Windows
Destroying Frame Windows
11/04/2016
PostNcDestroy
Default method [MFC]
DestroyWindow method [MFC]
frame windows [MFC], destroying
OnNcDestroy method, and frame windows
document frame windows [MFC], destroying
destroying frame windows
MFC, frame windows
windows [MFC], destroying
OnClose method [MFC]
PostNcDestroy method [MFC]
5affca77-1999-4507-a2b2-9aa226611b4b

Destroying Frame Windows

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 OnClose handler calls DestroyWindow. The last member function called when the Windows window is destroyed is OnNcDestroy, which does some cleanup, calls the Default member function to perform Windows cleanup, and lastly calls the virtual member function PostNcDestroy. The CFrameWnd 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

See also

Using Frame Windows