MATLAB 2018b App Designer

14 次查看(过去 30 天)
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

采纳的回答

Navya Seelam
Navya Seelam 2019-8-14
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

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Develop Apps Using App Designer 的更多信息

产品


版本

R2018b

Community Treasure Hunt

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

Start Hunting!

Translated by