deployed app exit when GUI appeared

2 Ansichten (letzte 30 Tage)
raym
raym am 27 Dez. 2020
Bearbeitet: raym am 27 Dez. 2020
Hi,
I have a function that shows a GUI with buttons and callbacks.
When running in matlab, it create the gui figure and release the command window, but callback still works when I click on GUI.
However, when I compiled it into exe, the GUI appears and immediately go sway and program exited.
Is there a way to hold the gui?
Thanks.

Akzeptierte Antwort

Walter Roberson
Walter Roberson am 27 Dez. 2020
Your flow of control does not waitfor() or uiwait() after creating the graphics, so you get to the bottom of the initialization loop and exit the program.
When you do not compile, then the graphics objects all keep existing because you have the keyboard to go back to for more interaction.
If you are using GUIDE, then look in the code generated for the GUI OpenFcn callback, and you will see a commented-out call to wait for the graphics window to close. Remove the comment marker so that wait becomes active.
  1 Kommentar
raym
raym am 27 Dez. 2020
Bearbeitet: raym am 27 Dez. 2020
Dear Roberson,
I did not used the GUIDE, but only a f = figure(...).
I add a bottom line
uiwait(f)
and found that the GUI is now stablized.
But when I test a simple function with only one line:
function test
f = figure;
end
I found that there is no problem with this function. The figure is stable, so the uiwait is not necessary from this point.
What could be the discrepancy between such similar scenarios?
Thanks.

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Migrate GUIDE Apps finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by