I have wxDialog where I open wxFrame. Now I want to know when wxFrame is closed, so I can do something in the calling dialog [in the frame I change the list that is present in the dialog and I need to update it (using the function provided by me)].
Any ideas? I am using C ++ with wxWidgets 2.8-10
Here is the function code that calls the frame:
OK=false;
password dialog(this,&OK);
dialog.ShowModal();
if (OK){
GestionFrame* Frame = new GestionFrame(0,listaGlobal);
Frame->Show();
reload();
source
share