Function of the toolbar-cross
2 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Gerrit
le 4 Fév 2014
Modifié(e) : Sean de Wolski
le 4 Fév 2014
Hey everyone, does anyone know how/where to edit a GUI's closing function (if there even is one)? I'm not talking about commands like close but the X-button in the top right corner of the window. By hitting the X-button I want my GUI to call a certain function. Any ideas?
0 commentaires
Réponse acceptée
Sean de Wolski
le 4 Fév 2014
Modifié(e) : Sean de Wolski
le 4 Fév 2014
function exampleCloseReq
figure('CloseRequestFcn',@closeme)
function closeme(src,evt);
disp('I''m closing');
delete(src)
Save this as exampleCloseReq.m
0 commentaires
Plus de réponses (0)
Voir également
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!