Info

此问题已关闭。 请重新打开它进行编辑或回答。

Creating a GUI which contains another GUI

2 次查看(过去 30 天)
Katharina
Katharina 2014-7-11
关闭: MATLAB Answer Bot 2021-8-20
I want to create a GUI which contains another GUI.
Imagine any installation programm. At the left side there are the installation steps which do not change, on the right side the figures change by pressing a button.
So I want one GUI which is "fix" and in this GUI, I want a kind of panel in which i can open other GUI's. I hope you understand my question.
Thanks.

回答(1 个)

Nir Rattner
Nir Rattner 2014-8-4
The best way to create a dynamic GUI is to change the “Visible” property of uicontrol elements to display and hide them as needed. Using uipanel elements not only organizes the appearance of the GUI, but also makes the code cleaner because changing the “Visible” property of a uipanel will propagate down to its child uicontrols.
Alternatively, you can create and delete uipanel and uicontrol elements. If you want to remove a uipanel full of uicontrol elements, you can just call the “delete” function on the uipanel. If you want to add a uipanel full of uicontrol elements, you can call the functions to create them. This is less recommended, especially if you plan on going back and forth between views, because it involves creating and deleting elements on the fly.
Attached are short examples of each approach.

此问题已关闭。

标签

Community Treasure Hunt

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

Start Hunting!

Translated by