Hide gui at start and show it once it is ready
Mostrar comentarios más antiguos
Dear all, I've built a gui with quite a number of elements. Now, it shows a little bit of delay in the elements creation at start generating a wavy glitter.
I was thinking of creating the GUI as hidden, let matlab draw everything and then, once it is ready, show it. No problem in generating an hidden GUI but then how do I show it? Where do I have to put the set(myGUI,'Visible','on') bit?
Thanks!
Respuestas (1)
Titus Edelhofer
el 17 de En. de 2014
0 votos
Hi Lorenzo,
you created you application "by hand", i.e., using uicontrol commands? Or using guide? In the first case, as you wrote, create your figure invisible ('visible', 'off'), and at the very end set it to 'visible', 'on'.
GUIDE should do this automatically, though.
Titus
1 comentario
Lorenzo
el 17 de En. de 2014
Categorías
Más información sobre Function Creation en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!