Function open/close for GUI

25 visualizzazioni (ultimi 30 giorni)
Nico
Nico il 11 Apr 2016
Risposto: Nico il 14 Apr 2016
Hello In the GUI, does it exist a function which is read only one, at the opening and the close (to declare variable or resize GUI...)? I have tried "*_OutputFcn" and "*_InputFcn" but these functions are called each time the figure is updated. Thank you

Risposta accettata

Adam
Adam il 11 Apr 2016
OpeningFcn
is called on GUI creation and
CloseRequestFcn
is called when the GUI closes, but you have to explicitly add this in GUIDE by right-clicking on the figure in GUIDE and choosing the callback. Then you can put code in it.
DeleteFcn
is also called when the window closes. I forget the differences between this and CloseRequestFcn now, but off the top of my head the CloseRequestFcn should delete the gui (which will call DeleteFcn) otherwise it will not get deleted.

Più risposte (1)

Nico
Nico il 14 Apr 2016
Thanks a lot Adam for your response and your reactivity, it helps me a lot.

Categorie

Scopri di più su Creating, Deleting, and Querying Graphics Objects in Help Center e File Exchange

Tag

Prodotti

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by