I have a parent window create a child window. When the child window closes, I want to have the parent window receive notification so that it can be refreshed. The child window cannot be modal. The user needs to be able to interact with the rest of the application.
Share
In the parent window create a handler for the
Closedevent on the child window object. When the child window is closed, your handler will be called and the parent window will be notified.