PLEASE HELP!! Matlab AppDesigner Putting a certain number of panels

3 views (last 30 days)
Hello,
I have a problem with matlab app designer. I want to do something; when I select the amount in the list box and then click the button, that amount of panels are shown. How can I do that? I wrote function to get able to visibility of panel after push the button. But I cannot define the number of panels.
Thanks for help!
% Callbacks that handle component events
methods (Access = private)
% Code that executes after component creation
function startupFcn(app)
app.Panel.Visible = "off";
end
% Callback function
function ButtonGroupSelectionChange(app, event)
end
% Button pushed function: Button
function ButtonPushed(app, event)
app.Panel.Visible="on";
end
end
  3 Comments
Georgiana Cristea
Georgiana Cristea on 19 Oct 2021
Hello!
I am currently trying to handle the same issue, and as an answer to your question, I would like the panels to be shown on top of each other and then add some additional two buttons to help me switch through them.
Please respond asap.
Thank you in advance for the help!
Kind Regards,
G
Yongjian Feng
Yongjian Feng on 24 Oct 2021
Why not tabs? Then you don't need to worry about how to position them, and what happens if there are too many.

Sign in to comment.

Answers (0)

Categories

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

Products


Release

R2020b

Community Treasure Hunt

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

Start Hunting!