App Designer - confirm exit when application is closed from Windows bar

47 vues (au cours des 30 derniers jours)
Mario Malic
Mario Malic le 12 Sep 2020
Commenté : Adam Danz le 29 Avr 2025
Hi guys,
I have a simple question regarding App Designer.
Sometimes I accidentally click the close button which exits the application (obviously). Is there a way to implement the confirmation dialog?

Réponse acceptée

Adam Danz
Adam Danz le 12 Sep 2020
Modifié(e) : Stefanie Schwarz le 30 Jan 2024
Add a close request function to your app that requires confirmation.
1. From AppDesigner > Design View, right click the figure background, go down to "Callbacks", and select "Add CloseRequestFcn function callback".
2. A UIFigureCloseRequest() function will be added in Code View. Add this to the function where app.UIFigure is the handle to your app figure.
YN = uiconfirm(app.UIFigure,'Do you want to close the app?', 'Close request');
if strcmpi(YN,'OK')
delete(app)
end
  11 commentaires
dpb
dpb le 26 Avr 2025
Yeah, @Image Analyst, that's what I've done for the moment with further amplification in the other thread on the callbacks in the particular app being confounded by my prior actions, not knowing better at the time...
Adam Danz
Adam Danz le 29 Avr 2025
This was such a great question that I wrote an article about it this morning.

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur App Building dans Help Center et File Exchange

Produits


Version

R2020a

Community Treasure Hunt

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

Start Hunting!

Translated by