restart GUI with code
10 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Hello!
I am writing a GUI programmatically (not with GUIDE). Is it possible to close and re-open the GUI with a pushbutton callback within that very GUI? If so, how do I code it? I have been looking everywhere, I cannot find anything.
Thanks so much for any help!
0 Commenti
Risposta accettata
Jan
il 2 Feb 2012
If the GUI creator function is called OpenGUI:
function PushButtonCallback(ObjH, EventData)
OrigDlgH = ancestor(ObjH, 'figure');
delete(OrigDlgH);
OpenGUI;
end
So simply close the existing dialog and create a new one. Or do it the other way around.
2 Commenti
Dani Tormo
il 17 Dic 2012
That works, but how to get the original uicontrol settings?
I am using GUIDE and I set some settings before start: some texts hiden, buttons and edits disabled; the data of edits to a certain value; axes without data, etc.
Do I have to do it manually in OpenGUI?
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Interactive Control and Callbacks in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!