Is it possible to have a valid HWND with a valid parent, and then the parent become invalid without the child becoming invalid?

link|improve this question

60% accept rate
feedback

2 Answers

up vote 2 down vote accepted

No, see the documentation for DestroyWindow:

If the specified window is a parent or owner window, DestroyWindow automatically destroys the associated child or owned windows when it destroys the parent or owner window. The function first destroys child or owned windows, and then it destroys the parent or owner window.

link|improve this answer
1  
Thank you very much. – James Feder Nov 8 '10 at 4:30
feedback

Only if you'd first call SetParent on the child window. DestroyWindow will destoy a window and all its current child windows.

Since windows have thread affinity, and children have the same thread affinity as their parents, there's no risk of a race condition between SetParent and DestroyWindow.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.