App Designer: How to open a second GUI or a new window with panels, lamps, edit fields, etc. by a ButtonPush callback ?
Show older comments
Hey, I think my Problem sounds simple. But I am new to the matlab app designer.
I have an already existing GUI where I shall make some changes. When I click a button I want to open a second GUI or window. In that window I want to use some components of the component library.
1 Comment
Nitin Phadkule
on 16 Jun 2021
you can insert hyperlink component and give adress of second app as input to hypertext component.
Accepted Answer
More Answers (3)
RobF
on 1 Aug 2018
Have you tried to create a button, its callback and modify the callback?
You could try
fig = figure();
assignin('base','fig',fig);
within the callback to create a new figure.
1 Comment
Theodor Middeldorf
on 1 Aug 2018
Kristoffer Walker
on 21 Oct 2020
0 votes
This should get you 99% of the way there.
Best,
Kris
Trishia May
on 28 Nov 2022
0 votes
Hi! I have the same issue here. I just want a new window to show some details, then have a button to back to main window. How can I dot it? I'm new in MatLab.
Categories
Find more on Develop Apps Using App Designer in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!