Why should i not use msgbox in App Designer?

8 Ansichten (letzte 30 Tage)
Christian Tieber
Christian Tieber am 26 Jun. 2019
Kommentiert: Waffiq Aziz am 9 Jun. 2021
Why should i not use msgbox in App Designer?
The site is saying:
If you are using App Designer or creating apps with the uifigure function, then use uialert instead. For more information, see Migrating GUIDE Apps to App Designer.
msgbox is a tool that i know and it works fine for me. Why should i not use it?
thanks!

Akzeptierte Antwort

Adam Danz
Adam Danz am 26 Jun. 2019
uialert() was designed to work will app designer and has several nice features. For example,
  • the first input to uialert is the handle to your app figure (app.UIFigure) so that the alert appears on top of the app no matter where its postion is on the screen.
  • The default 'modal' value for uialert is 'true' which means your app is disabled until the user interacts with the alert. For msgbox, the default create-mode is non-modal which means the msgbox will not prevent further user interaction.
  • There's also some nice built-in icons available with uialert and its general aesthetic matches app designer better than msgbox.
  • uialert has an optional close request callback function that you can define and it executes when the alert window is closed.
  5 Kommentare
Christian Tieber
Christian Tieber am 28 Jun. 2019
Alright. Thanks for your help guys!
Waffiq Aziz
Waffiq Aziz am 9 Jun. 2021
i try msgbox() on R2021a and still works, thanks

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Introduction to Installation and Licensing finden Sie in Help Center und File Exchange

Produkte


Version

R2019a

Community Treasure Hunt

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

Start Hunting!

Translated by