MATLAB 2018b App Designer

11 views (last 30 days)
Wael Wanis
Wael Wanis on 11 Aug 2019
Commented: Wael Wanis on 14 Aug 2019
Hello everyone,
I want to design a GUI that asks the user to insert some inputs then click on a pushbutton to go to the next page where the user is asked to insert some parameters then click on a puch button to run a code.
I read that I can do that by creating multiple GUIs, where clicking on the push button in GUI1 opens GUI2 and so on, however, that's not what i want, i want in the same GUI, when the button is pushed, the contents of the GUI change to the new contents, can this be done?
If not, then I want to ask how can I close GUI1 after clicking the button and GUI2 opens?
the command close(GUI1) doesn't work with me. I am using MATLAB 2018b.
Thank you

Accepted Answer

Navya Seelam
Navya Seelam on 14 Aug 2019
Hi,
To change the contents of GUI on a click of pushbutton, the visibility of existing components can be turned off and the visibility of new components that appear on click of pushbutton can be turned on. For example,
app.Slider.Visible='off';
app.UITable.Visible='on';
To close GUI1 after clicking the pushbutton use the following command in the callback of pushbutton
app.delete

More Answers (0)

Categories

Find more on Develop Apps Using App Designer in Help Center and File Exchange

Products


Release

R2018b

Community Treasure Hunt

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

Start Hunting!