I have opened childwindow from parentWindow (non-modal) – what’s the best approach to achieving a ‘wait’ so that parentWindow will know when childWindow has closed? For a couple of reasons I cannot use showDialog(). I have tried a while loop (testing the childWindow’s visibility property) but it just breaks (no exception – but just doesn’t open childWindow). Is it a case of multi-threading??
I have opened childwindow from parentWindow (non-modal) – what’s the best approach to achieving
Share
You could use events so the parent window is notified when the child window closes. For instance, there is the Closed event.