Questions regarding GUI inside another GUI (built in GUIDE)
3 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
chlor thanks
il 4 Ago 2016
Commentato: chlor thanks
il 5 Ago 2016
1. If to build a second GUI inside the first GUI, is it as simple as building them seprately in different files and call the second GUI inside the first GUI?
2. If use deploytool to convert this to .exe, do you put both GUIs under "main files", or do you put the first GUI under "main file" and put the second GUI under "Shared Resources and Help Files"?
I have been confused on this topic, please guide me with a more direct answer :) Thank you for reading my concern!!
2 Commenti
Walter Roberson
il 4 Ago 2016
GUIDE guides or your own code or appdesigner ?
Do the GUIs need to communicate at all? Does the first need to get results from the second, or does the second need to get parameters from the first?
Risposta accettata
Walter Roberson
il 4 Ago 2016
Put the first one under main file. Make sure it has a %#function pragma reference to the second; see http://www.mathworks.com/help/compiler/function.html
2 Commenti
Walter Roberson
il 4 Ago 2016
If you have two GUIDE GUIs then you can just place a function call to the second from the first. This will result in the figure being created for the GUI, and unless you configure the second GUI specially, the first GUI will continue executing after the second GUI is created. If you need to have the first GUI wait until the second exits, you will need to configure for that.
In particular, GUIDE GUIs return their figure handle when they are first invoked. You can uiwait() on the figure handle to cause the first GUI to wait until the second GUI exits.
uiwait( MySecondGUI() )
Più risposte (0)
Vedere anche
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!